X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3969bc792f09c7ac4ebd5c1e556704b69269d2f7..90a471de6cd70b41223dd16a09fafe6ac3e18269:/src/surf/surf_c_bindings.cpp diff --git a/src/surf/surf_c_bindings.cpp b/src/surf/surf_c_bindings.cpp index b99ded5a68..561b457718 100644 --- a/src/surf/surf_c_bindings.cpp +++ b/src/surf/surf_c_bindings.cpp @@ -27,14 +27,12 @@ static simgrid::surf::VirtualMachine *get_casted_vm(sg_host_t host){ extern double NOW; -void surf_presolve(void) +void surf_presolve() { double next_event_date = -1.0; tmgr_trace_iterator_t event = nullptr; double value = -1.0; simgrid::surf::Resource *resource = nullptr; - simgrid::surf::Model *model = nullptr; - unsigned int iter; XBT_DEBUG ("Consume all trace events occurring before the starting time."); while ((next_event_date = future_evt_set->next_date()) != -1.0) { @@ -49,7 +47,7 @@ void surf_presolve(void) } XBT_DEBUG ("Set every models in the right state by updating them to 0."); - xbt_dynar_foreach(all_existing_models, iter, model) + for (auto model : *all_existing_models) model->updateActionsState(NOW, 0.0); } @@ -60,9 +58,7 @@ double surf_solve(double max_date) double model_next_action_end = -1.0; double value = -1.0; simgrid::surf::Resource *resource = nullptr; - simgrid::surf::Model *model = nullptr; tmgr_trace_iterator_t event = nullptr; - unsigned int iter; if (max_date > 0.0) { xbt_assert(max_date > NOW,"You asked to simulate up to %f, but that's in the past already", max_date); @@ -147,7 +143,7 @@ double surf_solve(double max_date) NOW = NOW + time_delta; // Inform the models of the date change - xbt_dynar_foreach(all_existing_models, iter, model) { + for (auto model : *all_existing_models) { model->updateActionsState(NOW, time_delta); }