X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8dd808086ae468a139f4577abf7efbdfbe8d4ada..ecd5f7562caf1d443bf22788fa5f4fac408776ec:/src/surf/surf_interface.cpp diff --git a/src/surf/surf_interface.cpp b/src/surf/surf_interface.cpp index 4381f7cb74..cb5ed0e386 100644 --- a/src/surf/surf_interface.cpp +++ b/src/surf/surf_interface.cpp @@ -416,7 +416,7 @@ double Model::nextOccuringEventLazy(double now) action->updateRemainingLazy(now); double min = -1; - double share = lmm_variable_getvalue(action->getVariable()); + double share = action->getVariable()->get_value(); if (share > 0) { double time_to_completion; @@ -465,7 +465,7 @@ double Model::nextOccuringEventFull(double /*now*/) { double min = -1; for (Action& action : *getRunningActionSet()) { - double value = lmm_variable_getvalue(action.getVariable()); + double value = action.getVariable()->get_value(); if (value > 0) { if (action.getRemains() > 0) value = action.getRemainsNoUpdate() / value; @@ -646,7 +646,7 @@ void Action::setState(Action::State state) double Action::getBound() const { - return (variable_) ? lmm_variable_getbound(variable_) : 0; + return variable_ ? variable_->get_bound() : 0; } void Action::setBound(double bound)