Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rewrite the basic master/slave example to use the send/receive interface instead...
[simgrid.git] / examples / java / basic / BasicTest.java
1 /*
2  * $Id$
3  *
4  * Copyright 2006,2007 Martin Quinson, Malek Cherier         
5  * All rights reserved. 
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. 
9  */
10
11 import simgrid.msg.*;
12
13 public class BasicTest {
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                 
27           Msg.info("Usage   : Basic platform_file deployment_file");
28           Msg.info("example : Basic basic_platform.xml basic_deployment.xml");
29           System.exit(1);
30        }
31                 
32         /* construct the platform and deploy the application */
33         Msg.createEnvironment(args[0]);
34         Msg.deployApplication(args[1]);
35                 
36         /*  execute the simulation. */
37         Msg.run();
38     }
39 }