Logo AND Algorithmique Numérique Distribuée

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