diff -r 75c97c3786d6 -r cc9e0c15d747 lemon/karp.h --- a/lemon/karp.h Wed Feb 10 19:05:20 2010 +0100 +++ b/lemon/karp.h Fri Feb 12 22:24:26 2010 +0100 @@ -104,6 +104,11 @@ /// \tparam GR The type of the digraph the algorithm runs on. /// \tparam LEN The type of the length map. The default /// map type is \ref concepts::Digraph::ArcMap "GR::ArcMap". + /// \tparam TR The traits class that defines various types used by the + /// algorithm. By default, it is \ref KarpDefaultTraits + /// "KarpDefaultTraits". + /// In most cases, this parameter should not be set directly, + /// consider to use the named template parameters instead. #ifdef DOXYGEN template #else @@ -125,8 +130,7 @@ /// \brief The large value type /// /// The large value type used for internal computations. - /// Using the \ref KarpDefaultTraits "default traits class", - /// it is \c long \c long if the \c Value type is integer, + /// By default, it is \c long \c long if the \c Value type is integer, /// otherwise it is \c double. typedef typename TR::LargeValue LargeValue;