X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/090f69e16fc2256292aa7ca819b9d80a2a51d8d4..9ddb923a5a0f5b7be3ae99cdda787f47a9d83ee7:/src/surf/ptask_L07.cpp diff --git a/src/surf/ptask_L07.cpp b/src/surf/ptask_L07.cpp index 5af0e52831..cc27a24688 100644 --- a/src/surf/ptask_L07.cpp +++ b/src/surf/ptask_L07.cpp @@ -24,8 +24,9 @@ void surf_host_model_init_ptask_L07() XBT_CINFO(xbt_cfg, "Switching to the L07 model to handle parallel tasks."); auto host_model = std::make_shared("Host_Ptask"); - simgrid::kernel::EngineImpl::get_instance()->add_model(host_model); - simgrid::s4u::Engine::get_instance()->get_netzone_root()->get_impl()->set_host_model(host_model); + auto* engine = simgrid::kernel::EngineImpl::get_instance(); + engine->add_model(host_model); + engine->get_netzone_root()->set_host_model(host_model); } namespace simgrid { @@ -39,11 +40,11 @@ HostL07Model::HostL07Model(const std::string& name) : HostModel(name) auto net_model = std::make_shared("Network_Ptask", this, maxmin_system); auto engine = simgrid::kernel::EngineImpl::get_instance(); engine->add_model(net_model); - simgrid::s4u::Engine::get_instance()->get_netzone_root()->get_impl()->set_network_model(net_model); + engine->get_netzone_root()->set_network_model(net_model); auto cpu_model = std::make_shared("Cpu_Ptask", this, maxmin_system); engine->add_model(cpu_model); - simgrid::s4u::Engine::get_instance()->get_netzone_root()->get_impl()->set_cpu_pm_model(cpu_model); + engine->get_netzone_root()->set_cpu_pm_model(cpu_model); } CpuL07Model::CpuL07Model(const std::string& name, HostL07Model* hmodel, kernel::lmm::System* sys)