Merge
authorAlpar Juttner <alpar@cs.elte.hu>
Sun, 31 Aug 2008 12:49:16 +0200
changeset 25443500afd5cb0
parent 253 dbe309b5e855
parent 252 66644b9cd9eb
child 255 914c5432be97
Merge
     1.1 --- a/lemon/bfs.h	Sat Aug 30 22:19:43 2008 +0200
     1.2 +++ b/lemon/bfs.h	Sun Aug 31 12:49:16 2008 +0200
     1.3 @@ -1262,6 +1262,11 @@
     1.4    /// class. It works with callback mechanism, the BfsVisit object calls
     1.5    /// the member functions of the \c Visitor class on every BFS event.
     1.6    ///
     1.7 +  /// This interface of the BFS algorithm should be used in special cases
     1.8 +  /// when extra actions have to be performed in connection with certain
     1.9 +  /// events of the BFS algorithm. Otherwise consider to use Bfs or bfs()
    1.10 +  /// instead.
    1.11 +  ///
    1.12    /// \tparam _Digraph The type of the digraph the algorithm runs on.
    1.13    /// The default value is
    1.14    /// \ref ListDigraph. The value of _Digraph is not used directly by
     2.1 --- a/lemon/dfs.h	Sat Aug 30 22:19:43 2008 +0200
     2.2 +++ b/lemon/dfs.h	Sun Aug 31 12:49:16 2008 +0200
     2.3 @@ -1209,6 +1209,11 @@
     2.4    /// class. It works with callback mechanism, the DfsVisit object calls
     2.5    /// the member functions of the \c Visitor class on every DFS event.
     2.6    ///
     2.7 +  /// This interface of the DFS algorithm should be used in special cases
     2.8 +  /// when extra actions have to be performed in connection with certain
     2.9 +  /// events of the DFS algorithm. Otherwise consider to use Dfs or dfs()
    2.10 +  /// instead.
    2.11 +  ///
    2.12    /// \tparam _Digraph The type of the digraph the algorithm runs on.
    2.13    /// The default value is
    2.14    /// \ref ListDigraph. The value of _Digraph is not used directly by