Changeset 1761:896464fe9fbb in lemon-0.x
- Timestamp:
- 11/04/05 14:20:24 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2293
- Location:
- lemon
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/bfs.h
r1755 r1761 123 123 /// 124 124 ///\author Alpar Juttner 125 ///\todo A compare object would be nice.126 125 127 126 #ifdef DOXYGEN -
lemon/dfs.h
r1749 r1761 414 414 ///\n 415 415 ///If you need more control on the execution, 416 ///first you must call \ref init(), then you can add several source nodes416 ///first you must call \ref init(), then you can add a source node 417 417 ///with \ref addSource(). 418 418 ///Finally \ref start() will perform the actual path … … 1296 1296 /// \n 1297 1297 /// If you need more control on the execution, 1298 /// first you must call \ref init(), then you can add several source nodes1298 /// first you must call \ref init(), then you can adda source node 1299 1299 /// with \ref addSource(). 1300 1300 /// Finally \ref start() will perform the actual path -
lemon/dijkstra.h
r1741 r1761 167 167 /// 168 168 ///\author Jacint Szabo and Alpar Juttner 169 ///\todo A compare object would be nice.170 169 171 170 #ifdef DOXYGEN -
lemon/euler.h
r1738 r1761 102 102 103 103 ///\warning This gives back an Edge, not an EulerIt! 104 ///\todo Is this what we want?105 104 Edge operator++(int) 106 105 { … … 132 131 template<class Graph> 133 132 typename disable_if<typename Graph::UndirTag,bool>::type 134 isEuler(const Graph &g)133 euler(const Graph &g) 135 134 { 136 135 for(typename Graph::NodeIt n(g);n!=INVALID;++n)
Note: See TracChangeset
for help on using the changeset viewer.