X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c5309c7efaf73d81f7aa8cb7908348d0db5677fe..2376a01092173679830310f4d57b267445959f97:/src/mc/SafetyChecker.hpp diff --git a/src/mc/SafetyChecker.hpp b/src/mc/SafetyChecker.hpp index 48edb7b23e..b2aa1387cc 100644 --- a/src/mc/SafetyChecker.hpp +++ b/src/mc/SafetyChecker.hpp @@ -7,6 +7,8 @@ #ifndef SIMGRID_MC_SAFETY_CHECKER_HPP #define SIMGRID_MC_SAFETY_CHECKER_HPP +#include + #include "src/mc/mc_forward.hpp" #include "src/mc/Checker.hpp" @@ -24,6 +26,10 @@ public: private: // Temp void init(); + bool is_exploration_stack_state(simgrid::mc::State* current_state); +private: + /** Stack representing the position in the exploration graph */ + std::list stack_; }; }