Changeset 1270:806451fd084b in lemon-0.x for src/lemon/fib_heap.h
- Timestamp:
- 03/29/05 09:35:09 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1698
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/fib_heap.h
r1204 r1270 89 89 }; 90 90 91 ///The constructor 92 93 /** 94 \c _iimap should be given to the constructor, since it is 95 used internally to handle the cross references. 96 */ 91 97 explicit FibHeap(ItemIntMap &_iimap) 92 98 : minimum(0), iimap(_iimap), num_items() {} 99 100 ///The constructor 101 102 /** 103 \c _iimap should be given to the constructor, since it is used 104 internally to handle the cross references. \c _comp is an 105 object for ordering of the priorities. 106 */ 93 107 FibHeap(ItemIntMap &_iimap, const Compare &_comp) : minimum(0), 94 108 iimap(_iimap), comp(_comp), num_items() {} 95 109 96 110 ///The number of items stored in the heap.
Note: See TracChangeset
for help on using the changeset viewer.