Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make the RemoteApp a field of the Exploration, and sanitize initialization
[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::mc {
12
13 UdporChecker::UdporChecker(const std::vector<char*>& args) : Exploration(args) {}
14
15 void UdporChecker::run() {}
16
17 RecordTrace UdporChecker::get_record_trace()
18 {
19   RecordTrace res;
20   return res;
21 }
22
23 std::vector<std::string> UdporChecker::get_textual_trace()
24 {
25   std::vector<std::string> trace;
26   return trace;
27 }
28
29 void UdporChecker::log_state()
30 {
31   Exploration::log_state();
32 }
33
34 Exploration* create_udpor_checker(const std::vector<char*>& args)
35 {
36   return new UdporChecker(args);
37 }
38
39 } // namespace simgrid::mc