X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/59d7d4f62ea2f1d8e88aa15c3186c1dbc5bfcc0a..99af2be2b061257ef72e44066e6257e4a5d84a02:/src/mc/mc_config.cpp diff --git a/src/mc/mc_config.cpp b/src/mc/mc_config.cpp index 663961d2b2..f219a1175a 100644 --- a/src/mc/mc_config.cpp +++ b/src/mc/mc_config.cpp @@ -60,14 +60,13 @@ simgrid::config::Flag _sg_mc_sleep_set{ "model-check/sleep-set", "Whether to enable the use of sleep-set in the reduction algorithm", false, [](bool) { _mc_cfg_cb_check("value to enable/disable the use of sleep-set in the reduction algorithm"); }}; -simgrid::config::Flag _sg_mc_guided{ - "model-check/guided-mc", "Specify the the kind of heuristic to use for guided model-checking", "none", +simgrid::config::Flag _sg_mc_strategy{ + "model-check/strategy", "Specify the the kind of heuristic to use for guided model-checking", "none", [](std::string_view value) { if (value != "none" && value != "nb_wait") - xbt_die("configuration option 'model-check/reduction' can only take 'none' or 'dpor' as a value"); + xbt_die("configuration option 'model-check/guided-mc' can only take 'none' or 'nb_wait' as a value"); }}; - simgrid::config::Flag _sg_mc_checkpoint{ "model-check/checkpoint", "Specify the amount of steps between checkpoints during stateful model-checking " "(default: 0 => stateless verification). If value=1, one checkpoint is saved for each "