X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a9a21312483780dd659eba21102f79f207984f7c..d9c66df6160daf502cdc849b68e9882529a4353d:/src/mc/explo/odpor/WakeupTreeIterator.hpp diff --git a/src/mc/explo/odpor/WakeupTreeIterator.hpp b/src/mc/explo/odpor/WakeupTreeIterator.hpp index 9254829867..0ccc6bc0ea 100644 --- a/src/mc/explo/odpor/WakeupTreeIterator.hpp +++ b/src/mc/explo/odpor/WakeupTreeIterator.hpp @@ -14,7 +14,19 @@ namespace simgrid::mc::odpor { -struct WakeupTreeIterator +/** + * @brief A forward-iterator that performs a postorder traversal + * of the nodes of a WakeupTree + * + * Inserting a sequence `w` into a wakeup tree `B` with respect to + * some execution `E` requires determining the "<-minimal" node `N` + * with sequence `v` in the tree such that `v ~_[E] w`. The "<" relation + * over a wakeup tree orders its nodes by first recursively ordering all + * children of a node `N` followed by the node `N` itself, viz. a postorder. + * This iterator provides such a postorder traversal over the nodes in the + * wakeup tree. + */ +class WakeupTreeIterator : public boost::iterator_facade { public: WakeupTreeIterator() = default; @@ -23,13 +35,26 @@ public: private: using node_handle = std::list::iterator; + /** + * @brief A list which is used to "store" the root node of the traversed + * wakeup tree + * + * The root node is, by definition, not the child of any other node. This + * means that the root node also is contained in any list into which the + * iterator can generate a pointer (iterator). This list takes the role + * of allowing the iterator to treat the root node like any other. + */ + std::list root_list; + /** * @brief The current "view" of the iteration in post-order traversal */ std::stack post_order_iteration; /** - * + * @brief Search the wakeup tree until a leaf node appears at the front + * of the iteration, pushing all children towards the top of the stack + * as the search progresses */ void push_until_left_most_found();