Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use true/false for boolean variable (Sonar).
[simgrid.git] / src / mc / mc_config.cpp
1 /* Copyright (c) 2008-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "src/mc/mc_config.hpp"
7 #include "src/mc/mc_replay.hpp"
8 #include <simgrid/modelchecker.h>
9 #include <simgrid/sg_config.hpp>
10
11 #if SIMGRID_HAVE_MC
12 #include <string_view>
13 #endif
14
15 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_cfg);
16
17 bool simgrid::mc::cfg_do_model_check = false;
18
19 static void _mc_cfg_cb_check(const char* spec, bool more_check = true)
20 {
21 #if SIMGRID_HAVE_MC
22   xbt_assert(_sg_cfg_init_status == 0 || MC_is_active() || not more_check,
23              "Specifying a %s is only allowed within the model-checker. Please use simgrid-mc.", spec);
24 #else
25   xbt_die("Specifying a %s is only allowed within the model-checker. Please enable it before the compilation.", spec);
26 #endif
27 }
28
29 /* Replay (this part is enabled even if MC it disabled) */
30 simgrid::config::Flag<std::string> _sg_mc_record_path{
31     "model-check/replay", "Model-check path to replay (as reported by SimGrid when a violation is reported)", "",
32     [](std::string_view value) { MC_record_path() = value; }};
33
34 #if SIMGRID_HAVE_MC
35 simgrid::config::Flag<bool> _sg_mc_timeout{
36     "model-check/timeout", "Whether to enable timeouts for wait requests", false, [](bool) {
37       _mc_cfg_cb_check("value to enable/disable timeout for wait requests", not MC_record_replay_is_active());
38     }};
39
40 int _sg_mc_max_visited_states = 0;
41
42 static simgrid::config::Flag<std::string> cfg_mc_reduction{
43     "model-check/reduction", "Specify the kind of exploration reduction (either none or DPOR)", "dpor",
44     [](std::string_view value) {
45       if (value != "none" && value != "dpor")
46         xbt_die("configuration option 'model-check/reduction' can only take 'none' or 'dpor' as a value");
47     }};
48
49 simgrid::config::Flag<int> _sg_mc_checkpoint{
50     "model-check/checkpoint", "Specify the amount of steps between checkpoints during stateful model-checking "
51                               "(default: 0 => stateless verification). If value=1, one checkpoint is saved for each "
52                               "step => faster verification, but huge memory consumption; higher values are good "
53                               "compromises between speed and memory consumption.",
54     0, [](int) { _mc_cfg_cb_check("checkpointing value"); }};
55
56 simgrid::config::Flag<std::string> _sg_mc_property_file{
57     "model-check/property", "Name of the file containing the property, as formatted by the ltl2ba program.", "",
58     [](const std::string&) { _mc_cfg_cb_check("property"); }};
59
60 simgrid::config::Flag<bool> _sg_mc_comms_determinism{
61     "model-check/communications-determinism",
62     "Whether to enable the detection of communication determinism",
63     false,
64     [](bool) {
65       _mc_cfg_cb_check("value to enable/disable the detection of determinism in the communications schemes");
66     }};
67
68 simgrid::config::Flag<bool> _sg_mc_send_determinism{
69     "model-check/send-determinism",
70     "Enable/disable the detection of send-determinism in the communications schemes",
71     false,
72     [](bool) {
73       _mc_cfg_cb_check("value to enable/disable the detection of send-determinism in the communications schemes");
74     }};
75
76 simgrid::config::Flag<bool> _sg_mc_unfolding_checker{
77     "model-check/unfolding-checker",
78     "Whether to enable the unfolding-based dynamic partial order reduction to MPI programs", false, [](bool) {
79       _mc_cfg_cb_check("value to to enable/disable the unfolding-based dynamic partial order reduction to MPI programs");
80     }};
81
82 simgrid::config::Flag<std::string> _sg_mc_buffering{
83     "smpi/buffering",
84     "Buffering semantic to use for MPI (only used in MC)",
85     "infty",
86     {{"zero", "No system buffering: MPI_Send is blocking"},
87      {"infty", "Infinite system buffering: MPI_Send returns immediately"}},
88     [](std::string_view) { _mc_cfg_cb_check("buffering mode"); }};
89
90 simgrid::config::Flag<int> _sg_mc_max_depth{"model-check/max-depth",
91                                             "Maximal exploration depth (default: 1000)",
92                                             1000,
93                                             [](int) { _mc_cfg_cb_check("max depth value"); }};
94
95 static simgrid::config::Flag<int> _sg_mc_max_visited_states__{
96     "model-check/visited",
97     "Specify the number of visited state stored for state comparison reduction: any branch leading to a state that is "
98     "already stored is cut.\n"
99     "If value=5, the last 5 visited states are stored. If value=0 (the default), no state is stored and this reduction "
100     "technique is disabled.",
101     0, [](int value) {
102       _mc_cfg_cb_check("number of stored visited states");
103       _sg_mc_max_visited_states = value;
104     }};
105
106 simgrid::config::Flag<std::string> _sg_mc_dot_output_file{
107     "model-check/dot-output",
108     "Name of dot output file corresponding to graph state",
109     "",
110     [](const std::string&) { _mc_cfg_cb_check("file name for a dot output of graph state"); }};
111
112 simgrid::config::Flag<bool> _sg_mc_termination{
113     "model-check/termination", "Whether to enable non progressive cycle detection", false,
114     [](bool) { _mc_cfg_cb_check("value to enable/disable the detection of non progressive cycles"); }};
115
116 bool simgrid::mc::cfg_use_DPOR()
117 {
118   if (cfg_mc_reduction.get() == "dpor" && _sg_mc_max_visited_states__ > 0) {
119     XBT_INFO("Disabling DPOR since state-equality reduction is activated with 'model-check/visited'");
120     return false;
121   }
122   return cfg_mc_reduction.get() == "dpor";
123 }
124
125 #endif