Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
1a439c1855e3248190314de3108d016cb0d10b70
[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 <simgrid/forward.h>
16
17 namespace simgrid::mc::odpor {
18
19 class Event;
20 class Execution;
21 class ExecutionView;
22 class WakeupTree;
23
24 } // namespace simgrid::mc::odpor
25
26 namespace simgrid::mc {
27
28 // Permit ODPOR or SDPOR to be used as namespaces
29 // Many of the structures overlap, so it doesn't
30 // make sense to some in one and not the other.
31 // Having one for each algorithm makes the corresponding
32 // code easier to read
33 namespace sdpor = simgrid::mc::odpor;
34
35 } // namespace simgrid::mc
36
37 #endif