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