Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Correctly disable DPOR when StateEq reduction is enabled
[simgrid.git] / src / mc / mc_private.hpp
1 /* Copyright (c) 2007-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_MC_PRIVATE_HPP
7 #define SIMGRID_MC_PRIVATE_HPP
8
9 #include "mc/mc.h"
10 #include "xbt/automaton.h"
11
12 #include "src/mc/mc_forward.hpp"
13 #include "src/xbt/memory_map.hpp"
14
15 /********************************** Miscellaneous **********************************/
16 namespace simgrid::mc {
17
18 XBT_PRIVATE void find_object_address(std::vector<simgrid::xbt::VmMap> const& maps,
19                                      simgrid::mc::ObjectInformation* result);
20
21 XBT_PRIVATE
22 bool snapshot_equal(const Snapshot* s1, const Snapshot* s2);
23
24 } // namespace simgrid::mc
25
26 #endif