[Lemon-commits] [lemon_svn] alpar: r3015 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 21:51:50 CET 2006
Author: alpar
Date: Tue Oct 24 18:49:41 2006
New Revision: 3015
Modified:
hugo/trunk/lemon/kruskal.h
hugo/trunk/lemon/min_cost_arborescence.h
Log:
Spellcheck
Modified: hugo/trunk/lemon/kruskal.h
==============================================================================
--- hugo/trunk/lemon/kruskal.h (original)
+++ hugo/trunk/lemon/kruskal.h Tue Oct 24 18:49:41 2006
@@ -59,7 +59,7 @@
/// - Any readable Edge map. The values of the map indicate the edge costs.
///
/// \retval out Here we also have a choise.
- /// - Is can be a writable \c bool edge map.
+ /// - It can be a writable \c bool edge map.
/// After running the algorithm
/// this will contain the found minimum cost spanning tree: the value of an
/// edge will be set to \c true if it belongs to the tree, otherwise it will
@@ -69,7 +69,7 @@
/// The algorithm copies the elements of the found tree into this sequence.
/// For example, if we know that the spanning tree of the graph \c g has
/// say 53 edges, then
- /// we can put its edges into a STL vector \c tree with a code like this.
+ /// we can put its edges into an STL vector \c tree with a code like this.
///\code
/// std::vector<Edge> tree(53);
/// kruskal(g,cost,tree.begin());
@@ -82,7 +82,7 @@
///
/// \return The cost of the found tree.
///
- /// \warning If kruskal is run on an
+ /// \warning If kruskal runs on an
/// \ref lemon::concept::UGraph "undirected graph", be sure that the
/// map storing the tree is also undirected
/// (e.g. ListUGraph::UEdgeMap<bool>, otherwise the values of the
@@ -391,7 +391,7 @@
// The algorithm copies the elements of the found tree into this sequence.
// For example, if we know that the spanning tree of the graph \c g has
// say 53 edges, then
-// we can put its edges into a STL vector \c tree with a code like this.
+// we can put its edges into an STL vector \c tree with a code like this.
//\code
// std::vector<Edge> tree(53);
// kruskal(g,cost,tree.begin());
Modified: hugo/trunk/lemon/min_cost_arborescence.h
==============================================================================
--- hugo/trunk/lemon/min_cost_arborescence.h (original)
+++ hugo/trunk/lemon/min_cost_arborescence.h Tue Oct 24 18:49:41 2006
@@ -58,7 +58,7 @@
///
/// The type of the map that stores which edges are in the arborescence.
/// It must meet the \ref concept::WriteMap "WriteMap" concept.
- /// Initially it will be setted to false on each edge. After it
+ /// Initially it will be set to false on each edge. After it
/// will set all arborescence edges once.
typedef typename Graph::template EdgeMap<bool> ArborescenceMap;
More information about the Lemon-commits
mailing list