X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4aea7e49e47243417f094ee62b8e43de066e56d2..35ae873aa3a5bab42f9c14d8d032d87abc5ea82b:/examples/java/cloud/migration/XVM.java diff --git a/examples/java/cloud/migration/XVM.java b/examples/java/cloud/migration/XVM.java index eb3994aef0..756b7535a2 100644 --- a/examples/java/cloud/migration/XVM.java +++ b/examples/java/cloud/migration/XVM.java @@ -19,11 +19,10 @@ public class XVM extends VM { private Daemon daemon; - public XVM(Host host, String name, - int nbCores, int ramsize, int netBW, String diskPath, int diskSize, int migNetBW, int dpIntensity){ - super(host, name, nbCores, ramsize, netBW, diskPath, diskSize, (int)(migNetBW*0.9), dpIntensity); + public XVM(Host host, String name, int ramsize, int migNetBW, int dpIntensity){ + super(host, name, ramsize, (int)(migNetBW*0.9), dpIntensity); this.currentLoad = 0; - this. dpIntensity = dpIntensity ; + this.dpIntensity = dpIntensity ; this.ramsize= ramsize; this.daemon = new Daemon(this, 100); }