Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix with full compiler warnings
[simgrid.git] / src / mc / explo / UdporChecker.hpp
index 069c5151658ac98a4894811be895418f68a8ad53..f0262003cb74d0370c958a41797e2663ee56e95c 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2007-2022. The SimGrid Team.
+/* Copyright (c) 2007-2023. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
 #include "src/mc/explo/Exploration.hpp"
 #include "src/mc/mc_record.hpp"
 
-namespace simgrid {
-namespace mc {
+namespace simgrid::mc {
 
 class XBT_PRIVATE UdporChecker : public Exploration {
 public:
-  explicit UdporChecker(Session* session);
+  explicit UdporChecker(const std::vector<char*>& args);
   void run() override;
   RecordTrace get_record_trace() override;
   std::vector<std::string> get_textual_trace() override;
-  void log_state() override;
 };
 
-} // namespace mc
-} // namespace simgrid
+} // namespace simgrid::mc
 
 #endif