Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / src / mc / mc_config.cpp
index 8460a91..9253c04 100644 (file)
@@ -68,9 +68,9 @@ simgrid::config::Flag<std::string> _sg_mc_strategy{
     "none",
     {{"none", "No specific strategy: simply pick the first available transition and act as a DFS."},
      {"max_match_comm", "Try to minimize the number of in-fly communication by appairing matching send and receive."},
-     {"min_match_comm", "Try to maximize the number of in-fly communication by not appairing matching send and receive."},
-     {"uniform", "No specific strategy: choices are made randomly based on a uniform sampling."}
-    }};
+     {"min_match_comm",
+      "Try to maximize the number of in-fly communication by not appairing matching send and receive."},
+     {"uniform", "No specific strategy: choices are made randomly based on a uniform sampling."}}};
 
 simgrid::config::Flag<int> _sg_mc_random_seed{"model-check/rand-seed",
                                               "give a specific random seed to initialize the uniform distribution", 0,