Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Move main communication determinism code in a CommunicationDeterminismChecker...
[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 private:
22   void prepare();
23   int main();
24 };
25
26 #endif
27
28 }
29 }