lemon/min_cost_arborescence.h
changeset 2260 4274224f8a7d
parent 2259 da142c310d02
child 2263 9273fe7d850c
     1.1 --- a/lemon/min_cost_arborescence.h	Tue Oct 24 16:49:41 2006 +0000
     1.2 +++ b/lemon/min_cost_arborescence.h	Tue Oct 24 17:19:16 2006 +0000
     1.3 @@ -45,7 +45,7 @@
     1.4      /// \brief The type of the map that stores the edge costs.
     1.5      ///
     1.6      /// The type of the map that stores the edge costs.
     1.7 -    /// It must meet the \ref concept::ReadMap "ReadMap" concept.
     1.8 +    /// It must meet the \ref concepts::ReadMap "ReadMap" concept.
     1.9      typedef _CostMap CostMap;
    1.10  
    1.11      /// \brief The value type of the costs.
    1.12 @@ -57,7 +57,7 @@
    1.13      /// in the arborescence.
    1.14      ///
    1.15      /// The type of the map that stores which edges are in the arborescence.
    1.16 -    /// It must meet the \ref concept::WriteMap "WriteMap" concept.
    1.17 +    /// It must meet the \ref concepts::WriteMap "WriteMap" concept.
    1.18      /// Initially it will be set to false on each edge. After it
    1.19      /// will set all arborescence edges once.
    1.20      typedef typename Graph::template EdgeMap<bool> ArborescenceMap; 
    1.21 @@ -110,7 +110,7 @@
    1.22    /// edges. It is read once for each edge, so the map may involve in
    1.23    /// relatively time consuming process to compute the edge cost if
    1.24    /// it is necessary. The default map type is \ref
    1.25 -  /// concept::Graph::EdgeMap "Graph::EdgeMap<int>".  The value
    1.26 +  /// concepts::Graph::EdgeMap "Graph::EdgeMap<int>".  The value
    1.27    /// of _CostMap is not used directly by MinCostArborescence, 
    1.28    /// it is only passed to \ref MinCostArborescenceDefaultTraits.  
    1.29    /// \param _Traits Traits class to set various data types used