lemon/bipartite_matching.h
changeset 2263 9273fe7d850c
parent 2151 38ec4a930c05
child 2269 fb1c634fff29
equal deleted inserted replaced
4:9720478dee8c 5:82e6d77ad514
   519     /// The heap type used by weighted matching algorithms. It should
   519     /// The heap type used by weighted matching algorithms. It should
   520     /// minimize the priorities and the heap's key type is the graph's
   520     /// minimize the priorities and the heap's key type is the graph's
   521     /// anode graph's node.
   521     /// anode graph's node.
   522     ///
   522     ///
   523     /// \sa BinHeap
   523     /// \sa BinHeap
   524     typedef BinHeap<typename BpUGraph::Node, Value, HeapCrossRef> Heap;
   524     typedef BinHeap<Value, HeapCrossRef> Heap;
   525     
   525     
   526     /// \brief Instantiates a Heap.
   526     /// \brief Instantiates a Heap.
   527     ///
   527     ///
   528     /// This function instantiates a \ref Heap. 
   528     /// This function instantiates a \ref Heap. 
   529     /// \param crossref The cross reference of the heap.
   529     /// \param crossref The cross reference of the heap.