[Lemon-commits] [lemon_svn] alpar: r1526 - hugo/trunk/src/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:46:02 CET 2006
Author: alpar
Date: Sun Feb 6 15:38:00 2005
New Revision: 1526
Modified:
hugo/trunk/src/lemon/fib_heap.h
Log:
Document state_enum
Modified: hugo/trunk/src/lemon/fib_heap.h
==============================================================================
--- hugo/trunk/src/lemon/fib_heap.h (original)
+++ hugo/trunk/src/lemon/fib_heap.h Sun Feb 6 15:38:00 2005
@@ -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
};
More information about the Lemon-commits
mailing list