X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fe6a4a0cfb04cbe8c0bbd93c7bf6c29ec017ddec..ae62510f83c4cd6e7967aa00897bf66671a5923a:/src/mc/explo/UdporChecker.cpp diff --git a/src/mc/explo/UdporChecker.cpp b/src/mc/explo/UdporChecker.cpp index 5b4fb8b7fb..812a2e6e72 100644 --- a/src/mc/explo/UdporChecker.cpp +++ b/src/mc/explo/UdporChecker.cpp @@ -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& args) : Exploration(args) {} void UdporChecker::run() {} @@ -26,11 +26,9 @@ std::vector UdporChecker::get_textual_trace() return trace; } -void UdporChecker::log_state() {} - -Exploration* create_udpor_checker(RemoteApp& remote_app) +Exploration* create_udpor_checker(const std::vector& args) { - return new UdporChecker(remote_app); + return new UdporChecker(args); } } // namespace simgrid::mc