X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/886b7085ea26ae9500f57e065cd6c1cbc2b5a4ec..65fd4e4345d1f26716115119584558ca8e19e2f6:/examples/java/app/masterworker/Main.java diff --git a/examples/java/app/masterworker/Main.java b/examples/java/app/masterworker/Main.java index cc24eed70f..4c051d6f14 100644 --- a/examples/java/app/masterworker/Main.java +++ b/examples/java/app/masterworker/Main.java @@ -9,21 +9,20 @@ package app.masterworker; import java.io.File; import org.simgrid.msg.Msg; -import org.simgrid.msg.NativeException; class Main { public static final int TASK_COMP_SIZE = 10000000; public static final int TASK_COMM_SIZE = 10000000; - /* This only contains the launcher. If you do nothing more than than you can run java simgrid.msg.Msg - * which also contains such a launcher - */ + private Main() { + throw new IllegalAccessError("Utility class"); + } - public static void main(String[] args) throws NativeException { + public static void main(String[] args) { /* initialize the MSG simulation. Must be done before anything else (even logging). */ Msg.init(args); - String platf = args.length > 1 ? args[0] : "examples/java/platform.xml"; - String deploy = args.length > 1 ? args[1] : "examples/java/masterworker/masterworkerDeployment.xml"; + String platf = args.length > 1 ? args[0] : "../platforms/small_platform.xml"; + String deploy = args.length > 1 ? args[1] : "app/masterworker/masterworker.xml"; Msg.verb("Platform: "+platf+"; Deployment:"+deploy+"; Current directory: "+new File(".").getAbsolutePath());