equal
deleted
inserted
replaced
1260 /// |
1260 /// |
1261 /// The %BfsVisit class provides an alternative interface to the Bfs |
1261 /// The %BfsVisit class provides an alternative interface to the Bfs |
1262 /// class. It works with callback mechanism, the BfsVisit object calls |
1262 /// class. It works with callback mechanism, the BfsVisit object calls |
1263 /// the member functions of the \c Visitor class on every BFS event. |
1263 /// the member functions of the \c Visitor class on every BFS event. |
1264 /// |
1264 /// |
|
1265 /// This interface of the BFS algorithm should be used in special cases |
|
1266 /// when extra actions have to be performed in connection with certain |
|
1267 /// events of the BFS algorithm. Otherwise consider to use Bfs or bfs() |
|
1268 /// instead. |
|
1269 /// |
1265 /// \tparam _Digraph The type of the digraph the algorithm runs on. |
1270 /// \tparam _Digraph The type of the digraph the algorithm runs on. |
1266 /// The default value is |
1271 /// The default value is |
1267 /// \ref ListDigraph. The value of _Digraph is not used directly by |
1272 /// \ref ListDigraph. The value of _Digraph is not used directly by |
1268 /// \ref BfsVisit, it is only passed to \ref BfsVisitDefaultTraits. |
1273 /// \ref BfsVisit, it is only passed to \ref BfsVisitDefaultTraits. |
1269 /// \tparam _Visitor The Visitor type that is used by the algorithm. |
1274 /// \tparam _Visitor The Visitor type that is used by the algorithm. |