lemon/capacity_scaling.h
changeset 825 75e6020b19b1
parent 821 072ec8120958
child 831 cc9e0c15d747
     1.1 --- a/lemon/capacity_scaling.h	Tue Feb 09 23:29:51 2010 +0100
     1.2 +++ b/lemon/capacity_scaling.h	Fri Feb 12 11:00:20 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.