Changeset 1570:da93692e6537 in lemon-0.x for lemon/kruskal.h
- Timestamp:
- 07/20/05 10:01:16 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2069
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/kruskal.h
r1557 r1570 93 93 /// people would expect. So, one should be careful not to add both of the 94 94 /// <tt>Edge</tt>s belonging to a certain <tt>UndirEdge</tt>. 95 /// (\ref kruskal EdgeMap() and \ref KruskalMapInput are kind enough to do so.)95 /// (\ref kruskal() and \ref KruskalMapInput are kind enough to do so.) 96 96 97 97 #ifdef DOXYGEN … … 188 188 /// Kruskal's input source. 189 189 /// 190 /// In most cases you possibly want to use the \ref kruskal EdgeMap() instead.190 /// In most cases you possibly want to use the \ref kruskal() instead. 191 191 /// 192 192 /// \sa makeKruskalMapInput() … … 255 255 /// 256 256 /// In most cases you possibly 257 /// want to use the function kruskalEdgeMap() instead.257 /// want to use \ref kruskal() instead. 258 258 /// 259 259 ///\param g The type of the graph the algorithm runs on. … … 392 392 // \code 393 393 // std::vector<Edge> tree(53); 394 // kruskal EdgeMap_IteratorOut(g,cost,tree.begin());394 // kruskal(g,cost,tree.begin()); 395 395 // \endcode 396 396 // Or if we don't know in advance the size of the tree, we can write this. 397 397 // \code 398 398 // std::vector<Edge> tree; 399 // kruskal EdgeMap_IteratorOut(g,cost,std::back_inserter(tree));399 // kruskal(g,cost,std::back_inserter(tree)); 400 400 // \endcode 401 401 //
Note: See TracChangeset
for help on using the changeset viewer.