[Lemon-commits] deba: r3082 - hugo/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Tue Nov 21 19:29:31 CET 2006


Author: deba
Date: Tue Nov 21 19:29:31 2006
New Revision: 3082

Modified:
   hugo/trunk/lemon/bfs.h

Log:
Some doc fix



Modified: hugo/trunk/lemon/bfs.h
==============================================================================
--- hugo/trunk/lemon/bfs.h	(original)
+++ hugo/trunk/lemon/bfs.h	Tue Nov 21 19:29:31 2006
@@ -587,9 +587,9 @@
       while ( !emptyQueue() ) processNextNode();
     }
     
-    ///Executes the algorithm until \c dest is the next node to processed.
+    ///Executes the algorithm until \c dest is reached.
 
-    ///Executes the algorithm until \c dest is the next node to processed.
+    ///Executes the algorithm until \c dest is reached.
     ///
     ///\pre init() must be called and at least one node should be added
     ///with addSource() before using this function.
@@ -615,7 +615,7 @@
     ///with addSource() before using this function.
     ///
     ///\param nm must be a bool (or convertible) node map. The
-    ///algorithm will stop when for the next processable node \c v is
+    ///algorithm will stop when it reached a node \c v with
     ///<tt>nm[v]</tt> true.
     ///\todo query the reached target
     template<class NM>
@@ -1502,9 +1502,9 @@
       while ( !emptyQueue() ) processNextNode();
     }
     
-    /// \brief Executes the algorithm until \c dest will be next processed.
+    /// \brief Executes the algorithm until \c dest is reached.
     ///
-    /// Executes the algorithm until \c dest will be next processed.
+    /// Executes the algorithm until \c dest is reached.
     ///
     /// \pre init() must be called and at least one node should be added
     /// with addSource() before using this function.
@@ -1523,7 +1523,7 @@
     /// with addSource() before using this function.
     ///
     ///\param nm must be a bool (or convertible) node map. The
-    ///algorithm will stop when it reaches a node \c v with
+    ///algorithm will stop when it reached a node \c v with
     ///<tt>nm[v]</tt> true.
     template <typename NM>
     void start(const NM &nm) {



More information about the Lemon-commits mailing list