diff -r 765619b7cbb2 -r 81cfc04531e8 lemon/bfs.h --- a/lemon/bfs.h Sun Jul 13 19:51:02 2008 +0100 +++ b/lemon/bfs.h Sun Jul 13 20:09:47 2008 +0100 @@ -103,7 +103,8 @@ ///Instantiates a DistMap. ///This function instantiates a \ref DistMap. - ///\param G is the digraph, to which we would like to define the \ref DistMap + ///\param G is the digraph, to which we would like to define + ///the \ref DistMap static DistMap *createDistMap(const GR &G) { return new DistMap(G); @@ -825,7 +826,8 @@ ///Instantiates a DistMap. ///This function instantiates a \ref DistMap. - ///\param g is the digraph, to which we would like to define the \ref DistMap + ///\param g is the digraph, to which we would like to define + ///the \ref DistMap #ifdef DOXYGEN static DistMap *createDistMap(const GR &g) #else @@ -1199,7 +1201,8 @@ /// class. It works with callback mechanism, the BfsVisit object calls /// on every bfs event the \c Visitor class member functions. /// - /// \tparam _Digraph The digraph type the algorithm runs on. The default value is + /// \tparam _Digraph The digraph type the algorithm runs on. + /// The default value is /// \ref ListDigraph. The value of _Digraph is not used directly by Bfs, it /// is only passed to \ref BfsDefaultTraits. /// \tparam _Visitor The Visitor object for the algorithm. The