# HG changeset patch # User alpar # Date 1121846476 0 # Node ID da93692e653714e4299f7bb6e4b6637a8f1b22f4 # Parent 2a455f46f85af9d51f33da1d8116cf3e5127fb37 docfix diff -r 2a455f46f85a -r da93692e6537 lemon/kruskal.h --- a/lemon/kruskal.h Tue Jul 19 12:40:23 2005 +0000 +++ b/lemon/kruskal.h Wed Jul 20 08:01:16 2005 +0000 @@ -92,7 +92,7 @@ /// also require Edges instead of UndirEdges, as some /// people would expect. So, one should be careful not to add both of the /// Edges belonging to a certain UndirEdge. - /// (\ref kruskalEdgeMap() and \ref KruskalMapInput are kind enough to do so.) + /// (\ref kruskal() and \ref KruskalMapInput are kind enough to do so.) #ifdef DOXYGEN template @@ -187,7 +187,7 @@ /// Kruskal's input source. /// - /// In most cases you possibly want to use the \ref kruskalEdgeMap() instead. + /// In most cases you possibly want to use the \ref kruskal() instead. /// /// \sa makeKruskalMapInput() /// @@ -254,7 +254,7 @@ /// to explicitly give the type of the parameters. /// /// In most cases you possibly - /// want to use the function kruskalEdgeMap() instead. + /// want to use \ref kruskal() instead. /// ///\param g The type of the graph the algorithm runs on. ///\param m An edge map containing the cost of the edges. @@ -391,12 +391,12 @@ // we can put its edges into a STL vector \c tree with a code like this. // \code // std::vector tree(53); -// kruskalEdgeMap_IteratorOut(g,cost,tree.begin()); +// kruskal(g,cost,tree.begin()); // \endcode // Or if we don't know in advance the size of the tree, we can write this. // \code // std::vector tree; -// kruskalEdgeMap_IteratorOut(g,cost,std::back_inserter(tree)); +// kruskal(g,cost,std::back_inserter(tree)); // \endcode // // \return The cost of the found tree.