equal
deleted
inserted
replaced
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. |