lemon/concepts/heap.h
changeset 584 33c6b6e755cd
parent 559 c5fd2d996909
child 709 0747f332c478
child 953 b873350e6258
equal deleted inserted replaced
9:adc360b39041 10:db5ba83da8bf
    69       /// the user.
    69       /// the user.
    70       ///
    70       ///
    71       /// The item-int map must be initialized in such way that it assigns
    71       /// The item-int map must be initialized in such way that it assigns
    72       /// \c PRE_HEAP (<tt>-1</tt>) to any element to be put in the heap.
    72       /// \c PRE_HEAP (<tt>-1</tt>) to any element to be put in the heap.
    73       enum State {
    73       enum State {
    74         IN_HEAP = 0,    ///< The "in heap" state constant.
    74         IN_HEAP = 0,    ///< = 0. The "in heap" state constant.
    75         PRE_HEAP = -1,  ///< The "pre heap" state constant.
    75         PRE_HEAP = -1,  ///< = -1. The "pre heap" state constant.
    76         POST_HEAP = -2  ///< The "post heap" state constant.
    76         POST_HEAP = -2  ///< = -2. The "post heap" state constant.
    77       };
    77       };
    78 
    78 
    79       /// \brief The constructor.
    79       /// \brief The constructor.
    80       ///
    80       ///
    81       /// The constructor.
    81       /// The constructor.