1.1 --- a/lemon/bellman_ford.h Wed Feb 10 19:05:20 2010 +0100
1.2 +++ b/lemon/bellman_ford.h Fri Feb 12 22:24:26 2010 +0100
1.3 @@ -171,6 +171,11 @@
1.4 /// \tparam LEN A \ref concepts::ReadMap "readable" arc map that specifies
1.5 /// the lengths of the arcs. The default map type is
1.6 /// \ref concepts::Digraph::ArcMap "GR::ArcMap<int>".
1.7 + /// \tparam TR The traits class that defines various types used by the
1.8 + /// algorithm. By default, it is \ref BellmanFordDefaultTraits
1.9 + /// "BellmanFordDefaultTraits<GR, LEN>".
1.10 + /// In most cases, this parameter should not be set directly,
1.11 + /// consider to use the named template parameters instead.
1.12 #ifdef DOXYGEN
1.13 template <typename GR, typename LEN, typename TR>
1.14 #else
1.15 @@ -933,6 +938,9 @@
1.16 ///
1.17 /// This class should only be used through the \ref bellmanFord()
1.18 /// function, which makes it easier to use the algorithm.
1.19 + ///
1.20 + /// \tparam TR The traits class that defines various types used by the
1.21 + /// algorithm.
1.22 template<class TR>
1.23 class BellmanFordWizard : public TR {
1.24 typedef TR Base;