Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix Manifest.in
[simgrid.git] / src / mc / explo / odpor / odpor_forward.hpp
1 /* Copyright (c) 2007-2023. 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 /** @file odpor_forward.hpp
7  *
8  *  Forward definitions for MC types specific to ODPOR
9  */
10
11 #ifndef SIMGRID_MC_ODPOR_FORWARD_HPP
12 #define SIMGRID_MC_ODPOR_FORWARD_HPP
13
14 #include "src/mc/mc_forward.hpp"
15 #include <list>
16 #include <memory>
17 #include <simgrid/forward.h>
18
19 namespace simgrid::mc::odpor {
20
21 using PartialExecution = std::list<std::shared_ptr<Transition>>;
22
23 class Event;
24 class Execution;
25 class ReversibleRaceCalculator;
26 class WakeupTree;
27 class WakeupTreeNode;
28 struct WakeupTreeIterator;
29
30 } // namespace simgrid::mc::odpor
31
32 namespace simgrid::mc {
33
34 // Permit ODPOR or SDPOR to be used as namespaces
35 // Many of the structures overlap, so it doesn't
36 // make sense to some in one and not the other.
37 // Having one for each algorithm makes the corresponding
38 // code easier to read
39 namespace sdpor = simgrid::mc::odpor;
40
41 } // namespace simgrid::mc
42
43 #endif