Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4d42395dae69006df17ac4aff3c0dd2fa821527a
[simgrid.git] / src / mc / checker / UdporChecker.cpp
1 /* Copyright (c) 2016-2021. 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/checker/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() : Checker() {}
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 } // namespace mc
33 } // namespace simgrid