lemon/min_cost_arborescence.h
changeset 825 75e6020b19b1
parent 713 4ac30454f1c1
child 877 141f9c0db4a3
     1.1 --- a/lemon/min_cost_arborescence.h	Tue Feb 09 23:29:51 2010 +0100
     1.2 +++ b/lemon/min_cost_arborescence.h	Fri Feb 12 11:00:20 2010 +0100
     1.3 @@ -112,17 +112,18 @@
     1.4    /// relatively time consuming process to compute the arc costs if
     1.5    /// it is necessary. The default map type is \ref
     1.6    /// concepts::Digraph::ArcMap "Digraph::ArcMap<int>".
     1.7 -  /// \param TR Traits class to set various data types used
     1.8 -  /// by the algorithm. The default traits class is
     1.9 -  /// \ref MinCostArborescenceDefaultTraits
    1.10 +  /// \tparam TR The traits class that defines various types used by the
    1.11 +  /// algorithm. By default, it is \ref MinCostArborescenceDefaultTraits
    1.12    /// "MinCostArborescenceDefaultTraits<GR, CM>".
    1.13 +  /// In most cases, this parameter should not be set directly,
    1.14 +  /// consider to use the named template parameters instead.
    1.15  #ifndef DOXYGEN
    1.16    template <typename GR,
    1.17              typename CM = typename GR::template ArcMap<int>,
    1.18              typename TR =
    1.19                MinCostArborescenceDefaultTraits<GR, CM> >
    1.20  #else
    1.21 -  template <typename GR, typename CM, typedef TR>
    1.22 +  template <typename GR, typename CM, typename TR>
    1.23  #endif
    1.24    class MinCostArborescence {
    1.25    public: