Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
The checker now have a reference to the session
[simgrid.git] / src / mc / checker / UdporChecker.hpp
1 /* Copyright (c) 2007-2021. 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 #ifndef SIMGRID_MC_UDPOR_CHECKER_HPP
8 #define SIMGRID_MC_UDPOR_CHECKER_HPP
9
10 #include "src/mc/checker/Checker.hpp"
11 #include "src/mc/mc_record.hpp"
12
13 namespace simgrid {
14 namespace mc {
15
16 class XBT_PRIVATE UdporChecker : public Checker {
17 public:
18   explicit UdporChecker(Session* session);
19   void run() override;
20   RecordTrace get_record_trace() override;
21   std::vector<std::string> get_textual_trace() override;
22   void log_state() override;
23 };
24
25 } // namespace mc
26 } // namespace simgrid
27
28 #endif