X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1747902010b7fc57b15c2e88473c5bb118d362d1..c972ddd5a74b83c183357f707e7dfba87d48e750:/teshsuite/surf/surf_usage2/surf_usage2.cpp diff --git a/teshsuite/surf/surf_usage2/surf_usage2.cpp b/teshsuite/surf/surf_usage2/surf_usage2.cpp index 27a6e782ef..e52a0e4b03 100644 --- a/teshsuite/surf/surf_usage2/surf_usage2.cpp +++ b/teshsuite/surf/surf_usage2/surf_usage2.cpp @@ -38,8 +38,8 @@ int main(int argc, char** argv) hostB->pimpl_cpu->execution_start(1000.0); hostB->pimpl_cpu->sleep(7.32); - sg_netzone_t as_zone = sg_zone_get_by_name("AS0"); - simgrid::kernel::resource::NetworkModel* net_model = as_zone->get_impl()->get_network_model(); + const_sg_netzone_t as_zone = sg_zone_get_by_name("AS0"); + auto net_model = as_zone->get_impl()->get_network_model(); net_model->communicate(hostA, hostB, 150.0, -1.0); surf_solve(-1.0); /* Takes traces into account. Returns 0.0 */ @@ -51,7 +51,7 @@ int main(int argc, char** argv) XBT_INFO("Next Event : %g", now); for (auto const& model : simgrid::kernel::EngineImpl::get_instance()->get_all_models()) { - if (model->get_started_action_set()->size() != 0) { + if (not model->get_started_action_set()->empty()) { XBT_DEBUG("\t Running that model"); running = 1; }