Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add/update copyright notices.
[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                 /* initialize the MSG simulation. Must be done before anything else (even logging). */
14                 Msg.init(args);
15         if(args.length < 2) {
16                 Msg.info("Usage   : Chord platform_file deployment_file");
17                 Msg.info("example : Chord platform.xml deployment.xml");
18                 System.exit(1);
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 }