Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill src/include
[simgrid.git] / src / mc / mc_private.hpp
index f51b0e9..facb90d 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2007-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. */
@@ -6,54 +6,18 @@
 #ifndef SIMGRID_MC_PRIVATE_HPP
 #define SIMGRID_MC_PRIVATE_HPP
 
-#include "mc/mc.h"
+#include "src/mc/mc.h"
 #include "xbt/automaton.h"
 
 #include "src/mc/mc_forward.hpp"
 #include "src/xbt/memory_map.hpp"
 
-namespace simgrid {
-namespace mc {
-
-struct DerefAndCompareByActorsCountAndUsedHeap {
-  template <class X, class Y> bool operator()(X const& a, Y const& b)
-  {
-    return std::make_pair(a->actors_count, a->heap_bytes_used) < std::make_pair(b->actors_count, b->heap_bytes_used);
-  }
-};
-}
-}
-
-extern "C" {
-
-/********************************* MC Global **********************************/
-
-XBT_PRIVATE void MC_init_dot_output();
-
-XBT_PRIVATE extern FILE* dot_output;
-
-XBT_PRIVATE void MC_show_deadlock(void);
-
-/********************************** Snapshot comparison **********************************/
-
-//#define MC_DEBUG 1
-#define MC_VERBOSE 1
-
 /********************************** Miscellaneous **********************************/
-}
-
-namespace simgrid {
-namespace mc {
+namespace simgrid::mc {
 
 XBT_PRIVATE void find_object_address(std::vector<simgrid::xbt::VmMap> const& maps,
                                      simgrid::mc::ObjectInformation* result);
 
-XBT_PRIVATE
-int snapshot_compare(int num1, simgrid::mc::Snapshot* s1, int num2, simgrid::mc::Snapshot* s2);
-
-// Move is somewhere else (in the LivenessChecker class, in the Session class?):
-extern XBT_PRIVATE xbt_automaton_t property_automaton;
-}
-}
+} // namespace simgrid::mc
 
 #endif