X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3203afd846219ef8b41cadda945ea0a98103c46f..3529af6d632ac8a5f36352711acae57b10208c2c:/src/mc/mc_config.hpp diff --git a/src/mc/mc_config.hpp b/src/mc/mc_config.hpp index eaf2e20984..64acccc142 100644 --- a/src/mc/mc_config.hpp +++ b/src/mc/mc_config.hpp @@ -11,7 +11,9 @@ /********************************** Configuration of MC **************************************/ namespace simgrid::mc { bool cfg_use_DPOR(); // "model-check/reduction" == "DPOR" -extern XBT_PUBLIC bool cfg_do_model_check; +XBT_DECLARE_ENUM_CLASS(ModelCheckingMode, NONE, APP_SIDE, CHECKER_SIDE, REPLAY); +XBT_PUBLIC ModelCheckingMode get_model_checking_mode(); +XBT_PUBLIC void set_model_checking_mode(ModelCheckingMode mode); }; extern XBT_PUBLIC simgrid::config::Flag _sg_mc_buffering; @@ -26,5 +28,6 @@ extern "C" XBT_PUBLIC int _sg_mc_max_visited_states; extern XBT_PRIVATE simgrid::config::Flag _sg_mc_dot_output_file; extern XBT_PRIVATE simgrid::config::Flag _sg_mc_termination; extern XBT_PUBLIC simgrid::config::Flag _sg_mc_sleep_set; +extern XBT_PUBLIC simgrid::config::Flag _sg_mc_strategy; #endif