Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill tracing-gtnets examples
[simgrid.git] / examples / java / pingPong / PingPongTest.java
1 /* Copyright (c) 2006-2014, 2016. 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 pingPong;
8 import org.simgrid.msg.Msg;
9 import org.simgrid.msg.NativeException;
10  
11 public class PingPongTest {
12   public static void main(String[] args) throws NativeException {
13     Msg.init(args);
14     if(args.length < 2) {
15       Msg.info("Usage   : PingPongTest platform_file deployment_file");
16       Msg.info("example : PingPongTest ../platforms/platform.xml pingPongDeployment.xml");
17       System.exit(1);
18     }
19
20     /* construct the platform and deploy the application */
21     Msg.createEnvironment(args[0]);
22     Msg.deployApplication(args[1]);
23     
24     /*  execute the simulation. */
25     Msg.run();
26   }
27 }