1.1 --- a/lemon/concepts/heap.h Sat Apr 18 21:54:30 2009 +0200
1.2 +++ b/lemon/concepts/heap.h Tue Apr 21 10:34:49 2009 +0100
1.3 @@ -71,9 +71,9 @@
1.4 /// The item-int map must be initialized in such way that it assigns
1.5 /// \c PRE_HEAP (<tt>-1</tt>) to any element to be put in the heap.
1.6 enum State {
1.7 - IN_HEAP = 0, ///< The "in heap" state constant.
1.8 - PRE_HEAP = -1, ///< The "pre heap" state constant.
1.9 - POST_HEAP = -2 ///< The "post heap" state constant.
1.10 + IN_HEAP = 0, ///< = 0. The "in heap" state constant.
1.11 + PRE_HEAP = -1, ///< = -1. The "pre heap" state constant.
1.12 + POST_HEAP = -2 ///< = -2. The "post heap" state constant.
1.13 };
1.14
1.15 /// \brief The constructor.