lemon/concepts/heap.h
changeset 631 33c6b6e755cd
parent 606 c5fd2d996909
child 756 0747f332c478
child 1125 b873350e6258
     1.1 --- a/lemon/concepts/heap.h	Tue Apr 14 10:40:33 2009 +0100
     1.2 +++ b/lemon/concepts/heap.h	Wed Apr 15 02:04:37 2009 +0200
     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.