X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/20bbf9b0608d4ab29fb25ab4f795001d0cdca5b5..1bdbe2db10271b1d1948e1ee0382abcfe622a991:/src/mc/simgrid_mc.cpp diff --git a/src/mc/simgrid_mc.cpp b/src/mc/simgrid_mc.cpp index a0e727231b..1d19bc56e3 100644 --- a/src/mc/simgrid_mc.cpp +++ b/src/mc/simgrid_mc.cpp @@ -12,6 +12,7 @@ #include +#include #include #include @@ -27,6 +28,7 @@ #endif #include +#include #include #include "simgrid/sg_config.h" @@ -172,9 +174,9 @@ int main(int argc, char** argv) if (_sg_mc_comms_determinism || _sg_mc_send_determinism) res = MC_modelcheck_comm_determinism(); else if (!_sg_mc_property_file || _sg_mc_property_file[0] == '\0') - res = MC_modelcheck_safety(); + res = simgrid::mc::modelcheck_safety(); else - res = MC_modelcheck_liveness(); + res = simgrid::mc::modelcheck_liveness(); mc_model_checker->shutdown(); return res; }