X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b6fc7c2d23e70b645eef83f2b138cc00dcd892d0..3e2e56a1ff8c65d47e0cf4e458eac56e08a2b528:/src/surf/host_clm03.cpp diff --git a/src/surf/host_clm03.cpp b/src/surf/host_clm03.cpp index 0c95e43d7c..ffdf58f54e 100644 --- a/src/surf/host_clm03.cpp +++ b/src/surf/host_clm03.cpp @@ -48,12 +48,12 @@ namespace surf { HostCLM03Model::~HostCLM03Model() {} -double HostCLM03Model::next_occuring_event(double now){ +double HostCLM03Model::nextOccuringEvent(double now){ adjustWeightOfDummyCpuActions(); - double min_by_cpu = surf_cpu_model_pm->next_occuring_event(now); - double min_by_net = surf_network_model->next_occuring_event_isIdempotent() ? surf_network_model->next_occuring_event(now) : -1; - double min_by_sto = surf_storage_model->next_occuring_event(now); + double min_by_cpu = surf_cpu_model_pm->nextOccuringEvent(now); + double min_by_net = surf_network_model->next_occuring_event_isIdempotent() ? surf_network_model->nextOccuringEvent(now) : -1; + double min_by_sto = surf_storage_model->nextOccuringEvent(now); XBT_DEBUG("model %p, %s min_by_cpu %f, %s min_by_net %f, %s min_by_sto %f", this, typeid(surf_cpu_model_pm).name(), min_by_cpu,