Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move parts of the kernel to the right subdir
[simgrid.git] / src / mc / SafetyChecker.hpp
index a9662be..b2dd269 100644 (file)
@@ -33,11 +33,13 @@ private:
   void init();
   bool checkNonTermination(simgrid::mc::State* current_state);
   int backtrack();
+  void restoreState();
 private:
   /** Stack representing the position in the exploration graph */
   std::list<std::unique_ptr<simgrid::mc::State>> stack_;
   simgrid::mc::VisitedStates visitedStates_;
   std::unique_ptr<simgrid::mc::VisitedState> visitedState_;
+  unsigned long expandedStatesCount_ = 0;
 };
 
 }