Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
954b50fa62ecbae8d53ca92525e0ec5d5d5c9674
[simgrid.git] / examples / java / chord / Chord.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 chord;
8
9 import org.simgrid.msg.Msg;
10
11 public class Chord {
12   public static void main(String[] args) {
13     Msg.init(args);
14     if(args.length < 2) {
15       Msg.info("Usage   : Chord platform_file deployment_file");
16       Msg.info("example : Chord ../platforms/platform.xml chord.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 }