lemon/bfs.h
changeset 258 0310c8984732
parent 257 8d76a7bf9961
parent 252 66644b9cd9eb
child 278 931190050520
child 280 e7f8647ce760
equal deleted inserted replaced
9:f6e2bf9fe60a 10:8b8b64daffd7
  1259   ///
  1259   ///
  1260   /// The %BfsVisit class provides an alternative interface to the Bfs
  1260   /// The %BfsVisit class provides an alternative interface to the Bfs
  1261   /// class. It works with callback mechanism, the BfsVisit object calls
  1261   /// class. It works with callback mechanism, the BfsVisit object calls
  1262   /// the member functions of the \c Visitor class on every BFS event.
  1262   /// the member functions of the \c Visitor class on every BFS event.
  1263   ///
  1263   ///
       
  1264   /// This interface of the BFS algorithm should be used in special cases
       
  1265   /// when extra actions have to be performed in connection with certain
       
  1266   /// events of the BFS algorithm. Otherwise consider to use Bfs or bfs()
       
  1267   /// instead.
       
  1268   ///
  1264   /// \tparam _Digraph The type of the digraph the algorithm runs on.
  1269   /// \tparam _Digraph The type of the digraph the algorithm runs on.
  1265   /// The default value is
  1270   /// The default value is
  1266   /// \ref ListDigraph. The value of _Digraph is not used directly by
  1271   /// \ref ListDigraph. The value of _Digraph is not used directly by
  1267   /// \ref BfsVisit, it is only passed to \ref BfsVisitDefaultTraits.
  1272   /// \ref BfsVisit, it is only passed to \ref BfsVisitDefaultTraits.
  1268   /// \tparam _Visitor The Visitor type that is used by the algorithm.
  1273   /// \tparam _Visitor The Visitor type that is used by the algorithm.