1.1 --- a/lemon/dijkstra.h Tue Feb 09 23:29:51 2010 +0100
1.2 +++ b/lemon/dijkstra.h Fri Feb 12 11:00:20 2010 +0100
1.3 @@ -192,6 +192,11 @@
1.4 ///relatively time consuming process to compute the arc lengths if
1.5 ///it is necessary. The default map type is \ref
1.6 ///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 DijkstraDefaultTraits
1.9 + ///"DijkstraDefaultTraits<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 @@ -1092,6 +1097,9 @@
1.16 ///
1.17 /// This class should only be used through the \ref dijkstra() function,
1.18 /// 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 DijkstraWizard : public TR
1.24 {