lemon/capacity_scaling.h
changeset 899 cc9e0c15d747
parent 898 75c97c3786d6
parent 891 75e6020b19b1
child 911 2914b6f0fde0
     1.1 --- a/lemon/capacity_scaling.h	Wed Feb 10 19:05:20 2010 +0100
     1.2 +++ b/lemon/capacity_scaling.h	Fri Feb 12 22:24:26 2010 +0100
     1.3 @@ -77,9 +77,14 @@
     1.4    ///
     1.5    /// \tparam GR The digraph type the algorithm runs on.
     1.6    /// \tparam V The number type used for flow amounts, capacity bounds
     1.7 -  /// and supply values in the algorithm. By default it is \c int.
     1.8 +  /// and supply values in the algorithm. By default, it is \c int.
     1.9    /// \tparam C The number type used for costs and potentials in the
    1.10 -  /// algorithm. By default it is the same as \c V.
    1.11 +  /// algorithm. By default, it is the same as \c V.
    1.12 +  /// \tparam TR The traits class that defines various types used by the
    1.13 +  /// algorithm. By default, it is \ref CapacityScalingDefaultTraits
    1.14 +  /// "CapacityScalingDefaultTraits<GR, V, C>".
    1.15 +  /// In most cases, this parameter should not be set directly,
    1.16 +  /// consider to use the named template parameters instead.
    1.17    ///
    1.18    /// \warning Both number types must be signed and all input data must
    1.19    /// be integer.