X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1bfdc9a38c22af6a9becf133be154a2fa2bc6589..b50fb226666093cd35d9f0143e4ac504d3d9ad4c:/examples/java/surfCpuModel/CpuConstantModel.java diff --git a/examples/java/surfCpuModel/CpuConstantModel.java b/examples/java/surfCpuModel/CpuConstantModel.java index 7f7d418e75..60d35dd26e 100644 --- a/examples/java/surfCpuModel/CpuConstantModel.java +++ b/examples/java/surfCpuModel/CpuConstantModel.java @@ -10,16 +10,14 @@ public class CpuConstantModel extends CpuModel { private List cpus = new ArrayList(); public CpuConstantModel() { - super("Cpu Constant"); Msg.info("Initialize Cpu Constant Model"); } - public Cpu createResource(String name, double[] power_peak, int pstate, double power_scale, TmgrTrace power_trace, int core, ResourceState state_initial, TmgrTrace state_trace, XbtDict cpu_properties) { + public Cpu createCpu(String name, double[] power_peak, int pstate, double power_scale, TmgrTrace power_trace, int core, ResourceState state_initial, TmgrTrace state_trace, XbtDict cpu_properties) { Msg.info("New Cpu("+name+", "+power_peak[pstate]+", "+power_scale+")"); CpuConstant res = new CpuConstant(this, name, cpu_properties, core, power_peak[pstate], power_scale); cpus.add(res); - Surf.setCpu(name, res); return res; }