Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / mc / CommunicationDeterminismChecker.hpp
1 /* Copyright (c) 2016. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "src/mc/mc_forward.hpp"
8 #include "src/mc/Checker.hpp"
9
10 #ifndef SIMGRID_MC_COMMUNICATION_DETERMINISM_CHECKER_HPP
11 #define SIMGRID_MC_COMMUNICATION_DETERMINISM_CHECKER_HPP
12
13 namespace simgrid {
14 namespace mc {
15
16 class CommunicationDeterminismChecker : public Checker {
17 public:
18   CommunicationDeterminismChecker(Session& session);
19   ~CommunicationDeterminismChecker();
20   int run() override;
21   RecordTrace getRecordTrace() override;
22   std::vector<std::string> getTextualTrace() override;
23 private:
24   void prepare();
25   int main();
26 };
27
28 #endif
29
30 }
31 }