COIN-OR::LEMON - Graph Library

Changeset 157:2ccc1afc2c52 in lemon for lemon/dfs.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/dfs.h

    r100 r157  
    3939
    4040  ///Default traits class of Dfs class.
    41   ///\param GR Digraph type.
     41  ///\tparam GR Digraph type.
    4242  template<class GR>
    4343  struct DfsDefaultTraits
     
    118118  ///This class provides an efficient implementation of the %DFS algorithm.
    119119  ///
    120   ///\param GR The digraph type the algorithm runs on. The default value is
     120  ///\tparam GR The digraph type the algorithm runs on. The default value is
    121121  ///\ref ListDigraph. The value of GR is not used directly by Dfs, it
    122122  ///is only passed to \ref DfsDefaultTraits.
    123   ///\param TR Traits class to set various data types used by the algorithm.
     123  ///\tparam TR Traits class to set various data types used by the algorithm.
    124124  ///The default traits class is
    125125  ///\ref DfsDefaultTraits "DfsDefaultTraits<GR>".
    126126  ///See \ref DfsDefaultTraits for the documentation of
    127127  ///a Dfs traits class.
    128   ///
    129   ///\author Jacint Szabo and Alpar Juttner
    130128#ifdef DOXYGEN
    131129  template <typename GR,
     
    740738
    741739  ///Default traits class of Dfs function.
    742   ///\param GR Digraph type.
     740  ///\tparam GR Digraph type.
    743741  template<class GR>
    744742  struct DfsWizardDefaultTraits
     
    11611159  ///
    11621160  /// Default traits class of DfsVisit class.
    1163   /// \param _Digraph Digraph type.
     1161  /// \tparam _Digraph Digraph type.
    11641162  template<class _Digraph>
    11651163  struct DfsVisitDefaultTraits {
     
    11961194  /// on every dfs event the \c Visitor class member functions.
    11971195  ///
    1198   /// \param _Digraph The digraph type the algorithm runs on. The default value is
     1196  /// \tparam _Digraph The digraph type the algorithm runs on. The default value is
    11991197  /// \ref ListDigraph. The value of _Digraph is not used directly by Dfs, it
    12001198  /// is only passed to \ref DfsDefaultTraits.
    1201   /// \param _Visitor The Visitor object for the algorithm. The
     1199  /// \tparam _Visitor The Visitor object for the algorithm. The
    12021200  /// \ref DfsVisitor "DfsVisitor<_Digraph>" is an empty Visitor which
    12031201  /// does not observe the Dfs events. If you want to observe the dfs
    12041202  /// events you should implement your own Visitor class.
    1205   /// \param _Traits Traits class to set various data types used by the
     1203  /// \tparam _Traits Traits class to set various data types used by the
    12061204  /// algorithm. The default traits class is
    12071205  /// \ref DfsVisitDefaultTraits "DfsVisitDefaultTraits<_Digraph>".
Note: See TracChangeset for help on using the changeset viewer.