X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/997b2f3f37f1b2ee77b2dfbf82c70e183a5ed5f3..f35266523c599068c264085705e4d3a5b01b75ca:/src/surf/surf_config.c diff --git a/src/surf/surf_config.c b/src/surf/surf_config.c index 1c0da25434..24cc5e48d9 100644 --- a/src/surf/surf_config.c +++ b/src/surf/surf_config.c @@ -12,6 +12,7 @@ #include "surf/surf_private.h" #include "surf/surf_routing.h" /* COORD_HOST_LEVEL and COORD_ASR_LEVEL */ #include "simgrid/simix.h" +#include "mc/mc.h" /* configuration callbacks of model-checking */ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_config, surf, "About the configuration of surf (and the rest of the simulation)"); @@ -231,19 +232,15 @@ static void _surf_cfg_cb_model_check(const char *name, int pos) _surf_do_model_check = xbt_cfg_get_int(_surf_cfg_set, name); if (_surf_do_model_check) { +#ifndef HAVE_MC + xbt_die("You tried to activate the model-checking from the command line, but it was not compiled in. Change your settings in cmake, recompile and try again"); +#endif /* Tell modules using mallocators that they shouldn't. MC don't like them */ xbt_fifo_preinit(); xbt_dict_preinit(); } } -extern int _surf_do_mc_checkpoint; - -static void _surf_cfg_cb_mc_checkpoint(const char *name, int pos) -{ - _surf_do_mc_checkpoint = xbt_cfg_get_int(_surf_cfg_set, name); -} - extern int _surf_do_verbose_exit; static void _surf_cfg_cb_verbose_exit(const char *name, int pos) @@ -252,8 +249,7 @@ static void _surf_cfg_cb_verbose_exit(const char *name, int pos) } -static void _surf_cfg_cb_context_factory(const char *name, int pos) -{ +static void _surf_cfg_cb_context_factory(const char *name, int pos) { smx_context_factory_name = xbt_cfg_get_string(_surf_cfg_set, name); } @@ -341,8 +337,6 @@ void surf_config_init(int *argc, char **argv) /* Create the configuration support */ if (_surf_init_status == 0) { /* Only create stuff if not already inited */ - _surf_init_status = 1; - sprintf(description, "The model to use for the CPU. Possible values: "); p = description; @@ -478,26 +472,36 @@ void surf_config_init(int *argc, char **argv) xbt_cfgelm_int, &default_value_int, 0, 1, NULL, NULL); - /* do model-check */ +#ifdef HAVE_MC + /* do model-checking */ default_value_int = 0; xbt_cfg_register(&_surf_cfg_set, "model-check", - "Activate the model-checking of the \"simulated\" system (EXPERIMENTAL -- msg only for now)", + "Verify the system through model-checking instead of simulating it (EXPERIMENTAL)", xbt_cfgelm_int, &default_value_int, 0, 1, _surf_cfg_cb_model_check, NULL); - - /* - FIXME: this function is not setting model-check to it's default value because - internally it calls to variable->cb_set that in this case is the function - _surf_cfg_cb_model_check which sets it's value to 1 (instead of the default value 0) - xbt_cfg_set_int(_surf_cfg_set, "model-check", default_value_int); */ - /* do stateful model-check */ + /* do stateful model-checking */ default_value_int = 0; - xbt_cfg_register(&_surf_cfg_set, "mc-checkpoint", - "Activate the stateful model-checking of the \"simulated\" system (EXPERIMENTAL -- msg only for now), value corresponding to steps between each checkpoint", + xbt_cfg_register(&_surf_cfg_set, "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 step => faster verification, but huge memory consumption; higher values are good compromises between speed and memory consumption.", xbt_cfgelm_int, &default_value_int, 0, 1, - _surf_cfg_cb_model_check, NULL); + _mc_cfg_cb_checkpoint, NULL); + /* do liveness model-checking */ + default_value = xbt_strdup(""); + xbt_cfg_register(&_surf_cfg_set, "model-check/property", + "Specify the name of the file containing the property. It must be the result of the ltl2ba program.", + xbt_cfgelm_string, &default_value, 0, 1, + _mc_cfg_cb_property, NULL); + + /* Specify the kind of model-checking reduction */ + default_value = xbt_strdup("unset"); + xbt_cfg_register(&_surf_cfg_set, "model-check/reduction", + "Specify the kind of exploration reduction (either none or DPOR)", + xbt_cfgelm_string, &default_value, 0, 1, + _mc_cfg_cb_reduce, NULL); +#endif /* do verbose-exit */ default_value_int = 1; @@ -637,6 +641,8 @@ void surf_config_init(int *argc, char **argv) surf_config_cmd_line(argc, argv); + + _surf_init_status = 1; } else { XBT_WARN("Call to surf_config_init() after initialization ignored"); }