Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add dag scheduling lab
[simgrid.git] / src / mc / mc_config.hpp
index f411e7c7060a7292e21e8dc9022a1509e6f04d67..64acccc142cef39f08519ac9aec7089ff4796bb4 100644 (file)
@@ -12,7 +12,8 @@
 namespace simgrid::mc {
 bool cfg_use_DPOR(); // "model-check/reduction" == "DPOR"
 XBT_DECLARE_ENUM_CLASS(ModelCheckingMode, NONE, APP_SIDE, CHECKER_SIDE, REPLAY);
-extern XBT_PUBLIC ModelCheckingMode model_checking_mode;
+XBT_PUBLIC ModelCheckingMode get_model_checking_mode();
+XBT_PUBLIC void set_model_checking_mode(ModelCheckingMode mode);
 };
 
 extern XBT_PUBLIC simgrid::config::Flag<std::string> _sg_mc_buffering;
@@ -27,8 +28,6 @@ extern "C" XBT_PUBLIC int _sg_mc_max_visited_states;
 extern XBT_PRIVATE simgrid::config::Flag<std::string> _sg_mc_dot_output_file;
 extern XBT_PRIVATE simgrid::config::Flag<bool> _sg_mc_termination;
 extern XBT_PUBLIC simgrid::config::Flag<bool> _sg_mc_sleep_set;
-extern XBT_PUBLIC simgrid::config::Flag<std::string> _sg_mc_guided;
-
-
+extern XBT_PUBLIC simgrid::config::Flag<std::string> _sg_mc_strategy;
 
 #endif