Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
the supernovae exploded: let's split the archive and move bindings to separate packages
[simgrid.git] / examples / java / suspend / SuspendTest.java
diff --git a/examples/java/suspend/SuspendTest.java b/examples/java/suspend/SuspendTest.java
deleted file mode 100644 (file)
index 60acfd1..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier         
- * All rights reserved. 
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. 
- */
-
-
-import simgrid.msg.*;
-
-public class SuspendTest {
-    
-    public static void main(String[] args) throws NativeException {
-       
-       /* initialize the MSG simulation. Must be done before anything else (even logging). */
-       Msg.init(args);
-
-       if(args.length < 2) {
-               
-               Msg.info("Usage   : Suspend platform_file deployment_file");
-               Msg.info("example : Suspend msg_test_suspend_platform.xml msg_test_suspend_deployment.xml");
-               System.exit(1);
-       }
-       
-       /* construct the platform and deploy the application */
-       Msg.createEnvironment(args[0]);
-       Msg.deployApplication(args[1]);
-               
-       /*  execute the simulation. */
-        Msg.run();
-    }
-}