1.1 --- a/lemon/capacity_scaling.h Thu Feb 11 16:55:54 2010 +0000
1.2 +++ b/lemon/capacity_scaling.h Fri Feb 12 21:53:15 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.