X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..702d0b8f5973b3f1ce01e0f334842a5279fb17d9:/src/kernel/resource/Model.cpp diff --git a/src/kernel/resource/Model.cpp b/src/kernel/resource/Model.cpp index b27d229ede..6f392e4ca6 100644 --- a/src/kernel/resource/Model.cpp +++ b/src/kernel/resource/Model.cpp @@ -13,20 +13,17 @@ namespace kernel { namespace resource { Model::Model(Model::UpdateAlgo algo) : update_algorithm_(algo) {} +Model::~Model() = default; -Model::~Model() +Action::ModifiedSet* Model::get_modified_set() const { - delete inited_action_set_; - delete started_action_set_; - delete failed_action_set_; - delete finished_action_set_; - delete ignored_action_set_; - delete maxmin_system_; + return maxmin_system_->modified_set_; } -Action::ModifiedSet* Model::get_modified_set() const +void Model::set_maxmin_system(lmm::System* system) { - return maxmin_system_->modified_set_; + maxmin_system_.release(); // ugly... + maxmin_system_.reset(system); } double Model::next_occuring_event(double now) @@ -51,11 +48,11 @@ double Model::next_occuring_event_lazy(double now) maxmin_system_->modified_set_->pop_front(); bool max_duration_flag = false; - if (action->get_state_set() != started_action_set_) + if (action->get_state_set() != &started_action_set_) continue; /* bogus priority, skip it */ - if (action->get_priority() <= 0 || action->get_type() == ActionHeap::Type::latency) + if (action->get_sharing_penalty() <= 0 || action->get_type() == ActionHeap::Type::latency) continue; action->update_remains_lazy(now); @@ -73,14 +70,14 @@ double Model::next_occuring_event_lazy(double now) min = now + time_to_completion; // when the task will complete if nothing changes } - if ((action->get_max_duration() > NO_MAX_DURATION) && + if ((action->get_max_duration() != NO_MAX_DURATION) && (min <= -1 || action->get_start_time() + action->get_max_duration() < min)) { // when the task will complete anyway because of the deadline if any min = action->get_start_time() + action->get_max_duration(); max_duration_flag = true; } - XBT_DEBUG("Action(%p) corresponds to variable %d", action, action->get_variable()->id_int); + XBT_DEBUG("Action(%p) corresponds to variable %d", action, action->get_variable()->rank_); XBT_DEBUG("Action(%p) Start %f. May finish at %f (got a share of %f). Max_duration %f", action, action->get_start_time(), min, share, action->get_max_duration());