X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/77221c1956de0a119f6dbb04cf81231d6d035203..19dd38aef18645f2a1bf079a043351ad95db7640:/examples/java/app/bittorrent/Main.java diff --git a/examples/java/app/bittorrent/Main.java b/examples/java/app/bittorrent/Main.java index 7443a7eb3a..091b6ec391 100644 --- a/examples/java/app/bittorrent/Main.java +++ b/examples/java/app/bittorrent/Main.java @@ -1,5 +1,4 @@ -/* Copyright (c) 2012-2014,2016. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2012-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -8,13 +7,21 @@ package app.bittorrent; import org.simgrid.msg.Msg; import org.simgrid.msg.MsgException; +import org.simgrid.msg.RngStream; + +class Main{ + private Main() { + throw new IllegalAccessError("Utility class"); + } + + public static void main(String[] args) { + int[] seed = { 12345, 12345, 12345, 12345, 12345, 12345 }; + RngStream.setPackageSeed(seed); -public class Main{ - public static void main(String[] args) throws MsgException { 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); } @@ -23,6 +30,6 @@ public class Main{ Msg.deployApplication(args[1]); /* execute the simulation. */ - Msg.run(); + Msg.run(); } }