Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
leak --(cherry picked from commit dd1330c53beec9c5abb8b23375062e6acf214632)
[simgrid.git] / examples / java / cloud / FinalizeTask.java
1 /*
2  * Copyright (c) 2012-2013. The SimGrid Team.
3  * All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. 
7  */
8 package cloud;
9
10 import org.simgrid.msg.Task;
11
12 public class FinalizeTask extends Task {
13         public FinalizeTask(double compSize, double commSize) {
14                 super("Finalize",compSize,commSize);
15         }
16 }