COIN-OR::LEMON - Graph Library

Changeset 157:2ccc1afc2c52 in lemon-1.2 for lemon/dijkstra.h


Ignore:
Timestamp:
05/24/08 23:20:49 (16 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Using \tparam commands + removing \author commands (ticket #29, #39)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/dijkstra.h

    r100 r157  
    7878
    7979  ///Default traits class of Dijkstra class.
    80   ///\param GR Digraph type.
    81   ///\param LM Type of length map.
     80  ///\tparam GR Digraph type.
     81  ///\tparam LM Type of length map.
    8282  template<class GR, class LM>
    8383  struct DijkstraDefaultTraits
     
    195195  ///It is also possible to change the underlying priority heap.
    196196  ///
    197   ///\param GR The digraph type the algorithm runs on. The default value
     197  ///\tparam GR The digraph type the algorithm runs on. The default value
    198198  ///is \ref ListDigraph. The value of GR is not used directly by
    199199  ///Dijkstra, it is only passed to \ref DijkstraDefaultTraits.
    200   ///\param LM This read-only ArcMap determines the lengths of the
     200  ///\tparam LM This read-only ArcMap determines the lengths of the
    201201  ///arcs. It is read once for each arc, so the map may involve in
    202202  ///relatively time consuming process to compute the arc length if
     
    204204  ///concepts::Digraph::ArcMap "Digraph::ArcMap<int>".  The value
    205205  ///of LM is not used directly by Dijkstra, it is only passed to \ref
    206   ///DijkstraDefaultTraits.  \param TR Traits class to set
     206  ///DijkstraDefaultTraits. 
     207  ///\tparam TR Traits class to set
    207208  ///various data types used by the algorithm.  The default traits
    208209  ///class is \ref DijkstraDefaultTraits
     
    210211  ///DijkstraDefaultTraits for the documentation of a Dijkstra traits
    211212  ///class.
    212   ///
    213   ///\author Jacint Szabo and Alpar Juttner
    214213
    215214#ifdef DOXYGEN
     
    876875
    877876  ///Default traits class of Dijkstra function.
    878   ///\param GR Digraph type.
    879   ///\param LM Type of length map.
     877  ///\tparam GR Digraph type.
     878  ///\tparam LM Type of length map.
    880879  template<class GR, class LM>
    881880  struct DijkstraWizardDefaultTraits
Note: See TracChangeset for help on using the changeset viewer.