X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c0f3756528127131a1947179f56871657a084259..eecf563b3a3a0333dac9f754fe11f047c99cd27d:/include/simgrid/kernel/resource/Model.hpp diff --git a/include/simgrid/kernel/resource/Model.hpp b/include/simgrid/kernel/resource/Model.hpp index 9a614ca37f..16e9a4fb60 100644 --- a/include/simgrid/kernel/resource/Model.hpp +++ b/include/simgrid/kernel/resource/Model.hpp @@ -43,6 +43,9 @@ public: /** @brief Get the set of [actions](@ref Action) in *finished* state */ Action::StateSet* get_finished_action_set() const { return finished_action_set_; } + /** @brief Get the set of [actions](@ref Action) in *ignored* state */ + Action::StateSet* get_ignored_action_set() const { return ignored_action_set_; } + /** @brief Get the set of modified [actions](@ref Action) */ Action::ModifiedSet* get_modified_set() const; @@ -92,6 +95,8 @@ private: Action::StateSet* started_action_set_ = new Action::StateSet(); /**< Started not done */ Action::StateSet* failed_action_set_ = new Action::StateSet(); /**< Done with failure */ Action::StateSet* finished_action_set_ = new Action::StateSet(); /**< Done successful */ + Action::StateSet* ignored_action_set_ = new Action::StateSet(); /**< not considered (failure detectors?) */ + ActionHeap action_heap_; };