Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
updated doc
[simgrid.git] / src / mc / explo / UdporChecker.cpp
index 5b4fb8b..812a2e6 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2016-2022. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2016-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -10,7 +10,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_udpor, mc, "Logging specific to MC safety ver
 
 namespace simgrid::mc {
 
-UdporChecker::UdporChecker(RemoteApp& remote_app) : Exploration(remote_app) {}
+UdporChecker::UdporChecker(const std::vector<char*>& args) : Exploration(args) {}
 
 void UdporChecker::run() {}
 
@@ -26,11 +26,9 @@ std::vector<std::string> UdporChecker::get_textual_trace()
   return trace;
 }
 
-void UdporChecker::log_state() {}
-
-Exploration* create_udpor_checker(RemoteApp& remote_app)
+Exploration* create_udpor_checker(const std::vector<char*>& args)
 {
-  return new UdporChecker(remote_app);
+  return new UdporChecker(args);
 }
 
 } // namespace simgrid::mc