lemon/dfs.h
changeset 258 0310c8984732
parent 257 8d76a7bf9961
parent 252 66644b9cd9eb
child 278 931190050520
child 280 e7f8647ce760
equal deleted inserted replaced
9:85f219bf17e3 10:f51d64d593c2
  1206   ///
  1206   ///
  1207   /// The %DfsVisit class provides an alternative interface to the Dfs
  1207   /// The %DfsVisit class provides an alternative interface to the Dfs
  1208   /// class. It works with callback mechanism, the DfsVisit object calls
  1208   /// class. It works with callback mechanism, the DfsVisit object calls
  1209   /// the member functions of the \c Visitor class on every DFS event.
  1209   /// the member functions of the \c Visitor class on every DFS event.
  1210   ///
  1210   ///
       
  1211   /// This interface of the DFS algorithm should be used in special cases
       
  1212   /// when extra actions have to be performed in connection with certain
       
  1213   /// events of the DFS algorithm. Otherwise consider to use Dfs or dfs()
       
  1214   /// instead.
       
  1215   ///
  1211   /// \tparam _Digraph The type of the digraph the algorithm runs on.
  1216   /// \tparam _Digraph The type of the digraph the algorithm runs on.
  1212   /// The default value is
  1217   /// The default value is
  1213   /// \ref ListDigraph. The value of _Digraph is not used directly by
  1218   /// \ref ListDigraph. The value of _Digraph is not used directly by
  1214   /// \ref DfsVisit, it is only passed to \ref DfsVisitDefaultTraits.
  1219   /// \ref DfsVisit, it is only passed to \ref DfsVisitDefaultTraits.
  1215   /// \tparam _Visitor The Visitor type that is used by the algorithm.
  1220   /// \tparam _Visitor The Visitor type that is used by the algorithm.