COIN-OR::LEMON - Graph Library

Changeset 1270:806451fd084b in lemon-0.x for src/lemon/fib_heap.h


Ignore:
Timestamp:
03/29/05 09:35:09 (19 years ago)
Author:
jacint
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1698
Message:

bugfixes in doc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/fib_heap.h

    r1204 r1270  
    8989    };
    9090   
     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    */
    9197    explicit FibHeap(ItemIntMap &_iimap)
    9298      : 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    */
    93107    FibHeap(ItemIntMap &_iimap, const Compare &_comp) : minimum(0),
    94       iimap(_iimap), comp(_comp), num_items() {}
     108                  iimap(_iimap), comp(_comp), num_items() {}
    95109   
    96110    ///The number of items stored in the heap.
Note: See TracChangeset for help on using the changeset viewer.