Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Let the Checker give us the current record trace
[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 private:
23   void prepare();
24   int main();
25 };
26
27 #endif
28
29 }
30 }