Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename mc::Checker to mc::Exploration as it defines an exploration algo
[simgrid.git] / src / mc / explo / UdporChecker.cpp
1 /* Copyright (c) 2016-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "src/mc/explo/UdporChecker.hpp"
7 #include <xbt/log.h>
8
9 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_udpor, mc, "Logging specific to MC safety verification ");
10
11 namespace simgrid {
12 namespace mc {
13
14 UdporChecker::UdporChecker(Session* session) : Exploration(session) {}
15
16 void UdporChecker::run() {}
17
18 RecordTrace UdporChecker::get_record_trace()
19 {
20   RecordTrace res;
21   return res;
22 }
23
24 std::vector<std::string> UdporChecker::get_textual_trace()
25 {
26   std::vector<std::string> trace;
27   return trace;
28 }
29
30 void UdporChecker::log_state() {}
31
32 Exploration* create_udpor_checker(Session* session)
33 {
34   return new UdporChecker(session);
35 }
36
37 } // namespace mc
38 } // namespace simgrid