Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Move the (main) safety code as methods of SafetyChecker
[simgrid.git] / src / mc / SafetyChecker.hpp
index 597af14..3c559a7 100644 (file)
@@ -14,10 +14,15 @@ namespace simgrid {
 namespace mc {
 
 class SafetyChecker : public Checker {
+  simgrid::mc::ReductionMode reductionMode_ = simgrid::mc::ReductionMode::unset;
 public:
   SafetyChecker(Session& session);
   ~SafetyChecker();
   int run() override;
+private:
+  // Temp
+  void init();
+  void pre();
 };
 
 }