Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
java: kill obscure NativeException
[simgrid.git] / examples / java / task / priority / Main.java
1 /* Copyright (c) 2006-2014, 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 task.priority;
8 import org.simgrid.msg.Msg;
9
10 /* Demonstrates the use of Task.setPriority to change the computation priority of a task */ 
11 public class Main {
12   private Main() {
13     throw new IllegalAccessError("Utility class");
14   }
15
16   public static void main(String[] args) {
17     Msg.init(args);
18     if(args.length < 2) {
19       Msg.info("Usage   : Priority platform_file deployment_file");
20       Msg.info("example : Priority ../platforms/platform.xml priorityDeployment.xml");
21       System.exit(1);
22     }
23
24     /* construct the platform and deploy the application */
25     Msg.createEnvironment(args[0]);
26     Msg.deployApplication(args[1]);
27
28     /*  execute the simulation. */
29     Msg.run();
30   }
31 }