X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9a4ec91cc24a9a54ff3a060cc2828ac54d0c0c26..5f5a10db6fc4552782638abb4817041223e17775:/src/mc/explo/simgrid_mc.cpp diff --git a/src/mc/explo/simgrid_mc.cpp b/src/mc/explo/simgrid_mc.cpp index 513c99727e..51871357ee 100644 --- a/src/mc/explo/simgrid_mc.cpp +++ b/src/mc/explo/simgrid_mc.cpp @@ -35,16 +35,12 @@ int main(int argc, char** argv) std::unique_ptr explo; -#if SIMGRID_HAVE_STATEFUL_MC if (_sg_mc_comms_determinism || _sg_mc_send_determinism) explo = std::unique_ptr( create_communication_determinism_checker(argv_copy, get_model_checking_reduction())); else if (_sg_mc_unfolding_checker) explo = std::unique_ptr(create_udpor_checker(argv_copy)); - 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, get_model_checking_reduction())); ExitStatus status;