Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
shrinking cmake in java examples
[simgrid.git] / examples / java / commTime / CommTimeTest.java
index 417aa27..46bf24c 100644 (file)
@@ -9,28 +9,21 @@ import org.simgrid.msg.Msg;
 import org.simgrid.msg.NativeException;
 
 public class CommTimeTest {
-       
-   /* 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
-    */
-   
-    public static void main(String[] args) throws NativeException {
-       
-       /* initialize the MSG simulation. Must be done before anything else (even logging). */
-       Msg.init(args);
+  public static void main(String[] args) throws NativeException {
 
-       if(args.length < 2) {                   
-         Msg.info("Usage   : CommTime platform_file deployment_file");
-         Msg.info("example : CommTime comm_time_platform.xml comm_time_deployment.xml");
-         System.exit(1);
-       }
-       
-       /* construct the platform and deploy the application */
-       Msg.createEnvironment(args[0]);
-       Msg.deployApplication(args[1]);
-               
-       /*  execute the simulation. */
-        Msg.run();
+    Msg.init(args);
+
+    if(args.length < 2) {
+      Msg.info("Usage   : CommTime platform_file deployment_file");
+      Msg.info("example : CommTime ../platforms/platform.xml commTimeDeployment.xml");
+      System.exit(1);
     }
+
+    /* construct the platform and deploy the application */
+    Msg.createEnvironment(args[0]);
+    Msg.deployApplication(args[1]);
+
+    /*  execute the simulation. */
+    Msg.run();
+  }
 }