diff -r 974c48bda29e -r 02109e17027f lemon/hartmann_orlin.h --- a/lemon/hartmann_orlin.h Thu Feb 11 16:55:54 2010 +0000 +++ b/lemon/hartmann_orlin.h Fri Feb 12 21:53:15 2010 +0100 @@ -106,6 +106,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 HartmannOrlinDefaultTraits + /// "HartmannOrlinDefaultTraits". + /// In most cases, this parameter should not be set directly, + /// consider to use the named template parameters instead. #ifdef DOXYGEN template #else @@ -127,8 +132,7 @@ /// \brief The large value type /// /// The large value type used for internal computations. - /// Using the \ref HartmannOrlinDefaultTraits "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;