X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/403af5e6247ce6452b721f418a5b41e4548efac4..c1194401ce4a41ff54a7591f4cf33c9ce2756978:/src/mc/checker/simgrid_mc.cpp diff --git a/src/mc/checker/simgrid_mc.cpp b/src/mc/checker/simgrid_mc.cpp index 277deadf9d..e8c0ca82b2 100644 --- a/src/mc/checker/simgrid_mc.cpp +++ b/src/mc/checker/simgrid_mc.cpp @@ -1,35 +1,17 @@ -/* Copyright (c) 2015-2017. The SimGrid Team. +/* Copyright (c) 2015-2019. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include - -#include -#include -#include - -#include - -#include - -#include - -#include "simgrid/sg_config.h" -#include "src/xbt_modinter.h" - -#include "src/mc/Session.hpp" +#include "simgrid/sg_config.hpp" #include "src/mc/checker/Checker.hpp" -#include "src/mc/mc_base.h" -#include "src/mc/mc_comm_pattern.hpp" #include "src/mc/mc_exit.hpp" -#include "src/mc/mc_private.hpp" -#include "src/mc/mc_safety.hpp" -#include "src/mc/remote/mc_protocol.h" + +#include +#include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_main, mc, "Entry point for simgrid-mc"); -extern std::string _sg_mc_property_file; static inline char** argvdup(int argc, char** argv) @@ -44,7 +26,7 @@ static std::unique_ptr createChecker(simgrid::mc::Session& { if (_sg_mc_comms_determinism || _sg_mc_send_determinism) return std::unique_ptr(simgrid::mc::createCommunicationDeterminismChecker(session)); - else if (_sg_mc_property_file.empty()) + else if (_sg_mc_property_file.get().empty()) return std::unique_ptr(simgrid::mc::createSafetyChecker(session)); else return std::unique_ptr(simgrid::mc::createLivenessChecker(session)); @@ -53,7 +35,6 @@ static std::unique_ptr createChecker(simgrid::mc::Session& int main(int argc, char** argv) { using simgrid::mc::Session; - XBT_LOG_CONNECT(mc_main); try { if (argc < 2)