Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Removing RngStream
[simgrid.git] / examples / deprecated / java / app / bittorrent / Main.java
1 /* Copyright (c) 2012-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 package app.bittorrent;
7
8 import org.simgrid.msg.Msg;
9
10 class Main{
11   private Main() {
12     throw new IllegalAccessError("Utility class");
13   }
14
15   public static void main(String[] args) {
16     Msg.init(args);
17     if(args.length < 2) {
18       Msg.info("Usage   : Bittorrent platform_file deployment_file");
19       Msg.info("example : Bittorrent ../platforms/cluster_backbone.xml bittorrent.xml");
20       System.exit(1);
21     }
22
23     /* construct the platform and deploy the application */
24     Msg.createEnvironment(args[0]);
25     Msg.deployApplication(args[1]);
26
27     /*  execute the simulation. */
28     Msg.run();
29   }
30 }