diff -r e561aa7675de -r 2ccc1afc2c52 lemon/dijkstra.h --- a/lemon/dijkstra.h Sat May 17 06:30:02 2008 +0100 +++ b/lemon/dijkstra.h Sat May 24 23:20:49 2008 +0200 @@ -77,8 +77,8 @@ ///Default traits class of Dijkstra class. ///Default traits class of Dijkstra class. - ///\param GR Digraph type. - ///\param LM Type of length map. + ///\tparam GR Digraph type. + ///\tparam LM Type of length map. template struct DijkstraDefaultTraits { @@ -194,23 +194,22 @@ /// ///It is also possible to change the underlying priority heap. /// - ///\param GR The digraph type the algorithm runs on. The default value + ///\tparam GR The digraph type the algorithm runs on. The default value ///is \ref ListDigraph. The value of GR is not used directly by ///Dijkstra, it is only passed to \ref DijkstraDefaultTraits. - ///\param LM This read-only ArcMap determines the lengths of the + ///\tparam LM This read-only ArcMap determines the lengths of the ///arcs. It is read once for each arc, so the map may involve in ///relatively time consuming process to compute the arc length if ///it is necessary. The default map type is \ref ///concepts::Digraph::ArcMap "Digraph::ArcMap". The value ///of LM is not used directly by Dijkstra, it is only passed to \ref - ///DijkstraDefaultTraits. \param TR Traits class to set + ///DijkstraDefaultTraits. + ///\tparam TR Traits class to set ///various data types used by the algorithm. The default traits ///class is \ref DijkstraDefaultTraits ///"DijkstraDefaultTraits". See \ref ///DijkstraDefaultTraits for the documentation of a Dijkstra traits ///class. - /// - ///\author Jacint Szabo and Alpar Juttner #ifdef DOXYGEN template @@ -875,8 +874,8 @@ ///Default traits class of Dijkstra function. ///Default traits class of Dijkstra function. - ///\param GR Digraph type. - ///\param LM Type of length map. + ///\tparam GR Digraph type. + ///\tparam LM Type of length map. template struct DijkstraWizardDefaultTraits {