From f0628d9c3730884cfbeede51586f2c8561f4fac2 Mon Sep 17 00:00:00 2001 From: Marion Guthmuller Date: Wed, 21 Nov 2012 15:42:24 +0100 Subject: [PATCH] model-checker : remove automatic activation of MC if a value of cfg flag about MC is modified --- src/mc/mc_global.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/mc/mc_global.c b/src/mc/mc_global.c index 72c537af44..924592a45e 100644 --- a/src/mc/mc_global.c +++ b/src/mc/mc_global.c @@ -37,7 +37,6 @@ void _mc_cfg_cb_reduce(const char *name, int pos) { } else { xbt_die("configuration option %s can only take 'none' or 'dpor' as a value",name); } - xbt_cfg_set_int(_surf_cfg_set,"model-check",1); } void _mc_cfg_cb_checkpoint(const char *name, int pos) { @@ -45,14 +44,12 @@ void _mc_cfg_cb_checkpoint(const char *name, int pos) { xbt_die("You are specifying a checkpointing value after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry."); } _surf_mc_checkpoint = xbt_cfg_get_int(_surf_cfg_set, name); - xbt_cfg_set_int(_surf_cfg_set,"model-check",1); } void _mc_cfg_cb_property(const char *name, int pos) { if (_surf_init_status && !_surf_do_model_check) { xbt_die("You are specifying a property after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry."); } _surf_mc_property_file= xbt_cfg_get_string(_surf_cfg_set, name); - xbt_cfg_set_int(_surf_cfg_set,"model-check",1); } void _mc_cfg_cb_timeout(const char *name, int pos) { @@ -60,7 +57,6 @@ void _mc_cfg_cb_timeout(const char *name, int pos) { xbt_die("You are specifying a value to enable/disable timeout for wait requests after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry."); } _surf_mc_timeout= xbt_cfg_get_int(_surf_cfg_set, name); - xbt_cfg_set_int(_surf_cfg_set,"model-check",1); } void _mc_cfg_cb_max_depth(const char *name, int pos) { @@ -68,7 +64,6 @@ void _mc_cfg_cb_max_depth(const char *name, int pos) { xbt_die("You are specifying a max depth value after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry."); } _surf_mc_max_depth= xbt_cfg_get_int(_surf_cfg_set, name); - xbt_cfg_set_int(_surf_cfg_set,"model-check",1); } void _mc_cfg_cb_visited(const char *name, int pos) { @@ -76,7 +71,6 @@ void _mc_cfg_cb_visited(const char *name, int pos) { xbt_die("You are specifying a number of stored visited states after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry."); } _surf_mc_visited= xbt_cfg_get_int(_surf_cfg_set, name); - xbt_cfg_set_int(_surf_cfg_set,"model-check",1); } -- 2.20.1