X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2376a01092173679830310f4d57b267445959f97..67592b097ee1e3d2bc4c1e79d8401732d8d6f869:/src/mc/CommunicationDeterminismChecker.hpp diff --git a/src/mc/CommunicationDeterminismChecker.hpp b/src/mc/CommunicationDeterminismChecker.hpp index 5fe0011d5e..bd30d0435e 100644 --- a/src/mc/CommunicationDeterminismChecker.hpp +++ b/src/mc/CommunicationDeterminismChecker.hpp @@ -5,9 +5,13 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include +#include +#include +#include #include "src/mc/mc_forward.hpp" #include "src/mc/Checker.hpp" +#include "src/mc/VisitedState.hpp" #ifndef SIMGRID_MC_COMMUNICATION_DETERMINISM_CHECKER_HPP #define SIMGRID_MC_COMMUNICATION_DETERMINISM_CHECKER_HPP @@ -15,7 +19,7 @@ namespace simgrid { namespace mc { -class CommunicationDeterminismChecker : public Checker { +class XBT_PRIVATE CommunicationDeterminismChecker : public Checker { public: CommunicationDeterminismChecker(Session& session); ~CommunicationDeterminismChecker(); @@ -27,7 +31,8 @@ private: int main(); private: /** Stack representing the position in the exploration graph */ - std::list stack_; + std::list> stack_; + simgrid::mc::VisitedStates visitedStates_; }; #endif