[Lemon-commits] Alpar Juttner: Merge

Lemon HG hg at lemon.cs.elte.hu
Tue Sep 2 11:23:50 CEST 2008


details:   http://lemon.cs.elte.hu/hg/lemon/rev/43500afd5cb0
changeset: 254:43500afd5cb0
user:      Alpar Juttner <alpar [at] cs.elte.hu>
date:      Sun Aug 31 12:49:16 2008 +0200
description:
	Merge

diffstat:

2 files changed, 10 insertions(+)
lemon/bfs.h |    5 +++++
lemon/dfs.h |    5 +++++

diffs (30 lines):

diff -r dbe309b5e855 -r 43500afd5cb0 lemon/bfs.h
--- a/lemon/bfs.h	Sat Aug 30 22:19:43 2008 +0200
+++ b/lemon/bfs.h	Sun Aug 31 12:49:16 2008 +0200
@@ -1262,6 +1262,11 @@
   /// class. It works with callback mechanism, the BfsVisit object calls
   /// the member functions of the \c Visitor class on every BFS event.
   ///
+  /// This interface of the BFS algorithm should be used in special cases
+  /// when extra actions have to be performed in connection with certain
+  /// events of the BFS algorithm. Otherwise consider to use Bfs or bfs()
+  /// instead.
+  ///
   /// \tparam _Digraph The type of the digraph the algorithm runs on.
   /// The default value is
   /// \ref ListDigraph. The value of _Digraph is not used directly by
diff -r dbe309b5e855 -r 43500afd5cb0 lemon/dfs.h
--- a/lemon/dfs.h	Sat Aug 30 22:19:43 2008 +0200
+++ b/lemon/dfs.h	Sun Aug 31 12:49:16 2008 +0200
@@ -1209,6 +1209,11 @@
   /// class. It works with callback mechanism, the DfsVisit object calls
   /// the member functions of the \c Visitor class on every DFS event.
   ///
+  /// This interface of the DFS algorithm should be used in special cases
+  /// when extra actions have to be performed in connection with certain
+  /// events of the DFS algorithm. Otherwise consider to use Dfs or dfs()
+  /// instead.
+  ///
   /// \tparam _Digraph The type of the digraph the algorithm runs on.
   /// The default value is
   /// \ref ListDigraph. The value of _Digraph is not used directly by



More information about the Lemon-commits mailing list