Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add initial outline of SDPOR implementation
[simgrid.git] / src / mc / explo / odpor / odpor_forward.hpp
index 6581061..1a439c1 100644 (file)
@@ -18,10 +18,20 @@ namespace simgrid::mc::odpor {
 
 class Event;
 class Execution;
-class ExecutionSequence;
 class ExecutionView;
 class WakeupTree;
 
 } // namespace simgrid::mc::odpor
 
+namespace simgrid::mc {
+
+// Permit ODPOR or SDPOR to be used as namespaces
+// Many of the structures overlap, so it doesn't
+// make sense to some in one and not the other.
+// Having one for each algorithm makes the corresponding
+// code easier to read
+namespace sdpor = simgrid::mc::odpor;
+
+} // namespace simgrid::mc
+
 #endif