# HG changeset patch # User alpar # Date 1107700680 0 # Node ID 2dea256cb9884b669eeb06e0ea7b984f150f8ed6 # Parent 04e1cb315951c7f8614d5cb1cb7f96afc263d2a8 Document state_enum diff -r 04e1cb315951 -r 2dea256cb988 src/lemon/fib_heap.h --- a/src/lemon/fib_heap.h Sat Feb 05 20:17:15 2005 +0000 +++ b/src/lemon/fib_heap.h Sun Feb 06 14:38:00 2005 +0000 @@ -78,9 +78,13 @@ int num_items; public: + ///Status of the nodes enum state_enum { + ///The node is in the heap IN_HEAP = 0, + ///The node has never been in the heap PRE_HEAP = -1, + ///The node was in the heap but it got out of it POST_HEAP = -2 };