Changeset 157:2ccc1afc2c52 in lemon for lemon/dfs.h
- Timestamp:
- 05/24/08 23:20:49 (17 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/dfs.h
r100 r157 39 39 40 40 ///Default traits class of Dfs class. 41 ///\ param GR Digraph type.41 ///\tparam GR Digraph type. 42 42 template<class GR> 43 43 struct DfsDefaultTraits … … 118 118 ///This class provides an efficient implementation of the %DFS algorithm. 119 119 /// 120 ///\ param GR The digraph type the algorithm runs on. The default value is120 ///\tparam GR The digraph type the algorithm runs on. The default value is 121 121 ///\ref ListDigraph. The value of GR is not used directly by Dfs, it 122 122 ///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. 124 124 ///The default traits class is 125 125 ///\ref DfsDefaultTraits "DfsDefaultTraits<GR>". 126 126 ///See \ref DfsDefaultTraits for the documentation of 127 127 ///a Dfs traits class. 128 ///129 ///\author Jacint Szabo and Alpar Juttner130 128 #ifdef DOXYGEN 131 129 template <typename GR, … … 740 738 741 739 ///Default traits class of Dfs function. 742 ///\ param GR Digraph type.740 ///\tparam GR Digraph type. 743 741 template<class GR> 744 742 struct DfsWizardDefaultTraits … … 1161 1159 /// 1162 1160 /// Default traits class of DfsVisit class. 1163 /// \ param _Digraph Digraph type.1161 /// \tparam _Digraph Digraph type. 1164 1162 template<class _Digraph> 1165 1163 struct DfsVisitDefaultTraits { … … 1196 1194 /// on every dfs event the \c Visitor class member functions. 1197 1195 /// 1198 /// \ param _Digraph The digraph type the algorithm runs on. The default value is1196 /// \tparam _Digraph The digraph type the algorithm runs on. The default value is 1199 1197 /// \ref ListDigraph. The value of _Digraph is not used directly by Dfs, it 1200 1198 /// is only passed to \ref DfsDefaultTraits. 1201 /// \ param _Visitor The Visitor object for the algorithm. The1199 /// \tparam _Visitor The Visitor object for the algorithm. The 1202 1200 /// \ref DfsVisitor "DfsVisitor<_Digraph>" is an empty Visitor which 1203 1201 /// does not observe the Dfs events. If you want to observe the dfs 1204 1202 /// events you should implement your own Visitor class. 1205 /// \ param _Traits Traits class to set various data types used by the1203 /// \tparam _Traits Traits class to set various data types used by the 1206 1204 /// algorithm. The default traits class is 1207 1205 /// \ref DfsVisitDefaultTraits "DfsVisitDefaultTraits<_Digraph>".
Note: See TracChangeset
for help on using the changeset viewer.