Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename mc::Checker to mc::Exploration as it defines an exploration algo
[simgrid.git] / src / mc / checker / UdporChecker.hpp
diff --git a/src/mc/checker/UdporChecker.hpp b/src/mc/checker/UdporChecker.hpp
deleted file mode 100644 (file)
index 514c7f4..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/* Copyright (c) 2007-2022. 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. */
-
-#ifndef SIMGRID_MC_UDPOR_CHECKER_HPP
-#define SIMGRID_MC_UDPOR_CHECKER_HPP
-
-#include "src/mc/checker/Checker.hpp"
-#include "src/mc/mc_record.hpp"
-
-namespace simgrid {
-namespace mc {
-
-class XBT_PRIVATE UdporChecker : public Checker {
-public:
-  explicit UdporChecker(Session* session);
-  void run() override;
-  RecordTrace get_record_trace() override;
-  std::vector<std::string> get_textual_trace() override;
-  void log_state() override;
-};
-
-} // namespace mc
-} // namespace simgrid
-
-#endif