X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/88fad0aaff9eb463f048bfdfe4ad6218aba44ddb..d5c5c81b80995b117219aa475399de9aaeef5763:/src/kernel/resource/Model.cpp diff --git a/src/kernel/resource/Model.cpp b/src/kernel/resource/Model.cpp index 5e73044f95..f73ee9865e 100644 --- a/src/kernel/resource/Model.cpp +++ b/src/kernel/resource/Model.cpp @@ -12,25 +12,17 @@ namespace simgrid { namespace kernel { namespace resource { -Model::Model() = default; +Model::Model(Model::UpdateAlgo algo) : update_algorithm_(algo) {} Model::~Model() { - delete ready_action_set_; + delete inited_action_set_; delete running_action_set_; delete failed_action_set_; delete done_action_set_; delete maxmin_system_; } -Action* Model::actionHeapPop() -{ - Action* action = action_heap_.top().second; - action_heap_.pop(); - action->clearHeapHandle(); - return action; -} - Action::ModifiedSet* Model::get_modified_set() const { return maxmin_system_->modified_set_; @@ -39,9 +31,9 @@ Action::ModifiedSet* Model::get_modified_set() const double Model::next_occuring_event(double now) { // FIXME: set the good function once and for all - if (update_mechanism_ == Model::UpdateAlgo::Lazy) + if (update_algorithm_ == Model::UpdateAlgo::Lazy) return next_occuring_event_lazy(now); - else if (update_mechanism_ == Model::UpdateAlgo::Full) + else if (update_algorithm_ == Model::UpdateAlgo::Full) return next_occuring_event_full(now); else xbt_die("Invalid cpu update mechanism!"); @@ -62,7 +54,7 @@ double Model::next_occuring_event_lazy(double now) continue; /* bogus priority, skip it */ - if (action->get_priority() <= 0 || action->get_type() == Action::Type::LATENCY) + if (action->get_priority() <= 0 || action->get_type() == ActionHeap::Type::latency) continue; action->update_remains_lazy(now); @@ -93,15 +85,15 @@ double Model::next_occuring_event_lazy(double now) action->get_start_time(), min, share, action->get_max_duration()); if (min > -1) { - action->heapUpdate(min, max_duration_flag ? Action::Type::MAX_DURATION : Action::Type::NORMAL); + action_heap_.update(action, min, max_duration_flag ? ActionHeap::Type::max_duration : ActionHeap::Type::normal); XBT_DEBUG("Insert at heap action(%p) min %f now %f", action, min, now); } else DIE_IMPOSSIBLE; } // hereafter must have already the min value for this resource model - if (not actionHeapIsEmpty()) { - double min = actionHeapTopDate() - now; + if (not action_heap_.empty()) { + double min = action_heap_.top_date() - now; XBT_DEBUG("minimum with the HEAP %f", min); return min; } else { @@ -140,9 +132,9 @@ double Model::next_occuring_event_full(double /*now*/) void Model::update_actions_state(double now, double delta) { - if (update_mechanism_ == Model::UpdateAlgo::Full) + if (update_algorithm_ == Model::UpdateAlgo::Full) update_actions_state_full(now, delta); - else if (update_mechanism_ == Model::UpdateAlgo::Lazy) + else if (update_algorithm_ == Model::UpdateAlgo::Lazy) update_actions_state_lazy(now, delta); else xbt_die("Invalid cpu update mechanism!");