Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[project-description] Fix extraction of the ns-3 version.
[simgrid.git] / src / mc / explo / UdporChecker.hpp
1 /* Copyright (c) 2007-2022. 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/explo/Exploration.hpp"
11 #include "src/mc/mc_record.hpp"
12
13 namespace simgrid::mc {
14
15 class XBT_PRIVATE UdporChecker : public Exploration {
16 public:
17   explicit UdporChecker(Session* session);
18   void run() override;
19   RecordTrace get_record_trace() override;
20   std::vector<std::string> get_textual_trace() override;
21   void log_state() override;
22 };
23
24 } // namespace simgrid::mc
25
26 #endif