src/lemon/fib_heap.h
changeset 1270 806451fd084b
parent 1204 c3e29c6ae4e4
child 1332 bf228b5f648f
     1.1 --- a/src/lemon/fib_heap.h	Mon Mar 28 23:34:26 2005 +0000
     1.2 +++ b/src/lemon/fib_heap.h	Tue Mar 29 07:35:09 2005 +0000
     1.3 @@ -88,10 +88,24 @@
     1.4        POST_HEAP = -2
     1.5      };
     1.6      
     1.7 +    ///The constructor
     1.8 +
     1.9 +    /**
    1.10 +       \c _iimap should be given to the constructor, since it is
    1.11 +       used internally to handle the cross references.
    1.12 +    */
    1.13      explicit FibHeap(ItemIntMap &_iimap) 
    1.14        : minimum(0), iimap(_iimap), num_items() {} 
    1.15 + 
    1.16 +    ///The constructor
    1.17 +
    1.18 +    /**
    1.19 +       \c _iimap should be given to the constructor, since it is used
    1.20 +       internally to handle the cross references. \c _comp is an
    1.21 +       object for ordering of the priorities. 
    1.22 +    */
    1.23      FibHeap(ItemIntMap &_iimap, const Compare &_comp) : minimum(0), 
    1.24 -      iimap(_iimap), comp(_comp), num_items() {}
    1.25 +		  iimap(_iimap), comp(_comp), num_items() {}
    1.26      
    1.27      ///The number of items stored in the heap.
    1.28