Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add/update copyright notices.
[simgrid.git] / examples / java / commTime / CommTimeTest.java
1 /* Copyright (c) 2006-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 package commTime;
8 import org.simgrid.msg.Msg;
9 import org.simgrid.msg.NativeException;
10
11 public class CommTimeTest {
12         
13    /* This only contains the launcher. If you do nothing more than than you can run 
14     *   java simgrid.msg.Msg
15     * which also contains such a launcher
16     */
17    
18     public static void main(String[] args) throws NativeException {
19         
20         /* initialize the MSG simulation. Must be done before anything else (even logging). */
21         Msg.init(args);
22
23        if(args.length < 2) {                    
24           Msg.info("Usage   : CommTime platform_file deployment_file");
25           Msg.info("example : CommTime comm_time_platform.xml comm_time_deployment.xml");
26           System.exit(1);
27         }
28         
29         /* construct the platform and deploy the application */
30         Msg.createEnvironment(args[0]);
31         Msg.deployApplication(args[1]);
32                 
33         /*  execute the simulation. */
34         Msg.run();
35     }
36 }