COIN-OR::LEMON - Graph Library

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

    r100 r157  
    3838
    3939  ///Default traits class of Bfs class.
    40   ///\param GR Digraph type.
     40  ///\tparam GR Digraph type.
    4141  template<class GR>
    4242  struct BfsDefaultTraits
     
    116116  ///This class provides an efficient implementation of the %BFS algorithm.
    117117  ///
    118   ///\param GR The digraph type the algorithm runs on. The default value is
     118  ///\tparam GR The digraph type the algorithm runs on. The default value is
    119119  ///\ref ListDigraph. The value of GR is not used directly by Bfs, it
    120120  ///is only passed to \ref BfsDefaultTraits.
    121   ///\param TR Traits class to set various data types used by the algorithm.
     121  ///\tparam TR Traits class to set various data types used by the algorithm.
    122122  ///The default traits class is
    123123  ///\ref BfsDefaultTraits "BfsDefaultTraits<GR>".
    124124  ///See \ref BfsDefaultTraits for the documentation of
    125125  ///a Bfs traits class.
    126   ///
    127   ///\author Alpar Juttner
    128126
    129127#ifdef DOXYGEN
     
    757755
    758756  ///Default traits class of Bfs function.
    759   ///\param GR Digraph type.
     757  ///\tparam GR Digraph type.
    760758  template<class GR>
    761759  struct BfsWizardDefaultTraits
     
    11661164  ///
    11671165  /// Default traits class of BfsVisit class.
    1168   /// \param _Digraph Digraph type.
     1166  /// \tparam _Digraph Digraph type.
    11691167  template<class _Digraph>
    11701168  struct BfsVisitDefaultTraits {
     
    12021200  /// on every bfs event the \c Visitor class member functions.
    12031201  ///
    1204   /// \param _Digraph The digraph type the algorithm runs on. The default value is
     1202  /// \tparam _Digraph The digraph type the algorithm runs on. The default value is
    12051203  /// \ref ListDigraph. The value of _Digraph is not used directly by Bfs, it
    12061204  /// is only passed to \ref BfsDefaultTraits.
    1207   /// \param _Visitor The Visitor object for the algorithm. The
     1205  /// \tparam _Visitor The Visitor object for the algorithm. The
    12081206  /// \ref BfsVisitor "BfsVisitor<_Digraph>" is an empty Visitor which
    12091207  /// does not observe the Bfs events. If you want to observe the bfs
    12101208  /// events you should implement your own Visitor class.
    1211   /// \param _Traits Traits class to set various data types used by the
     1209  /// \tparam _Traits Traits class to set various data types used by the
    12121210  /// algorithm. The default traits class is
    12131211  /// \ref BfsVisitDefaultTraits "BfsVisitDefaultTraits<_Digraph>".
    12141212  /// See \ref BfsVisitDefaultTraits for the documentation of
    12151213  /// a Bfs visit traits class.
    1216   ///
    1217   /// \author Jacint Szabo, Alpar Juttner and Balazs Dezso
    12181214#ifdef DOXYGEN
    12191215  template <typename _Digraph, typename _Visitor, typename _Traits>
Note: See TracChangeset for help on using the changeset viewer.