]> AND Public Git Repository - simgrid.git/blobdiff - examples/java/app/bittorrent/Main.java
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[doc] De-Ostern-ization (typo)
[simgrid.git] / examples / java / app / bittorrent / Main.java
index 021b1c54a834a4e606fed25061580889d154eda8..b9185058bbc88db50055a8b7d03df4c666511e48 100644 (file)
@@ -8,6 +8,7 @@ package app.bittorrent;
 
 import org.simgrid.msg.Msg;
 import org.simgrid.msg.MsgException;
+import org.simgrid.msg.RngStream;
 
 class Main{
   private Main() {
@@ -15,10 +16,13 @@ class Main{
   }
 
   public static void main(String[] args) throws MsgException {
+    int[] seed = { 12345, 12345, 12345, 12345, 12345, 12345 };
+    RngStream.setPackageSeed(seed);
+
     Msg.init(args);
     if(args.length < 2) {
       Msg.info("Usage   : Bittorrent platform_file deployment_file");
-      Msg.info("example : Bittorrent ../platforms/platform.xml bittorrent.xml");
+      Msg.info("example : Bittorrent ../platforms/cluster.xml bittorrent.xml");
       System.exit(1);
     }
 
@@ -27,6 +31,6 @@ class Main{
     Msg.deployApplication(args[1]);
 
     /*  execute the simulation. */
-        Msg.run();
+    Msg.run();
   }
 }