lemon/bellman_ford.h
changeset 825 75e6020b19b1
parent 804 4db8d5ccd26b
child 844 a6eb9698c321
     1.1 --- a/lemon/bellman_ford.h	Tue Feb 09 23:29:51 2010 +0100
     1.2 +++ b/lemon/bellman_ford.h	Fri Feb 12 11:00:20 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;