Logo AND Algorithmique Numérique Distribuée

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