lemon/dijkstra.h
changeset 157 2ccc1afc2c52
parent 100 4f754b4cf82b
child 169 5b507a86ad72
     1.1 --- a/lemon/dijkstra.h	Sat May 17 06:30:02 2008 +0100
     1.2 +++ b/lemon/dijkstra.h	Sat May 24 23:20:49 2008 +0200
     1.3 @@ -77,8 +77,8 @@
     1.4    ///Default traits class of Dijkstra class.
     1.5  
     1.6    ///Default traits class of Dijkstra class.
     1.7 -  ///\param GR Digraph type.
     1.8 -  ///\param LM Type of length map.
     1.9 +  ///\tparam GR Digraph type.
    1.10 +  ///\tparam LM Type of length map.
    1.11    template<class GR, class LM>
    1.12    struct DijkstraDefaultTraits
    1.13    {
    1.14 @@ -194,23 +194,22 @@
    1.15    ///
    1.16    ///It is also possible to change the underlying priority heap.
    1.17    ///
    1.18 -  ///\param GR The digraph type the algorithm runs on. The default value
    1.19 +  ///\tparam GR The digraph type the algorithm runs on. The default value
    1.20    ///is \ref ListDigraph. The value of GR is not used directly by
    1.21    ///Dijkstra, it is only passed to \ref DijkstraDefaultTraits.
    1.22 -  ///\param LM This read-only ArcMap determines the lengths of the
    1.23 +  ///\tparam LM This read-only ArcMap determines the lengths of the
    1.24    ///arcs. It is read once for each arc, so the map may involve in
    1.25    ///relatively time consuming process to compute the arc length if
    1.26    ///it is necessary. The default map type is \ref
    1.27    ///concepts::Digraph::ArcMap "Digraph::ArcMap<int>".  The value
    1.28    ///of LM is not used directly by Dijkstra, it is only passed to \ref
    1.29 -  ///DijkstraDefaultTraits.  \param TR Traits class to set
    1.30 +  ///DijkstraDefaultTraits.  
    1.31 +  ///\tparam TR Traits class to set
    1.32    ///various data types used by the algorithm.  The default traits
    1.33    ///class is \ref DijkstraDefaultTraits
    1.34    ///"DijkstraDefaultTraits<GR,LM>".  See \ref
    1.35    ///DijkstraDefaultTraits for the documentation of a Dijkstra traits
    1.36    ///class.
    1.37 -  ///
    1.38 -  ///\author Jacint Szabo and Alpar Juttner
    1.39  
    1.40  #ifdef DOXYGEN
    1.41    template <typename GR, typename LM, typename TR>
    1.42 @@ -875,8 +874,8 @@
    1.43    ///Default traits class of Dijkstra function.
    1.44  
    1.45    ///Default traits class of Dijkstra function.
    1.46 -  ///\param GR Digraph type.
    1.47 -  ///\param LM Type of length map.
    1.48 +  ///\tparam GR Digraph type.
    1.49 +  ///\tparam LM Type of length map.
    1.50    template<class GR, class LM>
    1.51    struct DijkstraWizardDefaultTraits
    1.52    {