X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cb495f2fff67af8d686bc9e78b83828bb114c50c..7a1d9713c8dd8a96686f75acb428b2e4dcb08c1f:/src/mc/explo/simgrid_mc.cpp diff --git a/src/mc/explo/simgrid_mc.cpp b/src/mc/explo/simgrid_mc.cpp index f1525fee99..4e3fc12eae 100644 --- a/src/mc/explo/simgrid_mc.cpp +++ b/src/mc/explo/simgrid_mc.cpp @@ -35,14 +35,16 @@ int main(int argc, char** argv) std::unique_ptr explo; +#if SIMGRID_HAVE_MC if (_sg_mc_comms_determinism || _sg_mc_send_determinism) explo = std::unique_ptr(create_communication_determinism_checker(argv_copy, cfg_use_DPOR())); else if (_sg_mc_unfolding_checker) explo = std::unique_ptr(create_udpor_checker(argv_copy)); - else if (_sg_mc_property_file.get().empty()) - explo = std::unique_ptr(create_dfs_exploration(argv_copy, cfg_use_DPOR())); - else + else if (not _sg_mc_property_file.get().empty()) explo = std::unique_ptr(create_liveness_checker(argv_copy)); + else +#endif + explo = std::unique_ptr(create_dfs_exploration(argv_copy, cfg_use_DPOR())); try { explo->run();