lemon/dfs.h
changeset 210 81cfc04531e8
parent 209 765619b7cbb2
child 220 a5d8c039f218
child 244 c30731a37f91
     1.1 --- a/lemon/dfs.h	Sun Jul 13 19:51:02 2008 +0100
     1.2 +++ b/lemon/dfs.h	Sun Jul 13 20:09:47 2008 +0100
     1.3 @@ -105,7 +105,8 @@
     1.4      ///Instantiates a DistMap.
     1.5  
     1.6      ///This function instantiates a \ref DistMap.
     1.7 -    ///\param G is the digraph, to which we would like to define the \ref DistMap
     1.8 +    ///\param G is the digraph, to which we would like to define
     1.9 +    ///the \ref DistMap
    1.10      static DistMap *createDistMap(const GR &G)
    1.11      {
    1.12        return new DistMap(G);
    1.13 @@ -808,7 +809,8 @@
    1.14      ///Instantiates a DistMap.
    1.15  
    1.16      ///This function instantiates a \ref DistMap.
    1.17 -    ///\param g is the digraph, to which we would like to define the \ref DistMap
    1.18 +    ///\param g is the digraph, to which we would like to define
    1.19 +    ///the \ref DistMap
    1.20  #ifdef DOXYGEN
    1.21      static DistMap *createDistMap(const GR &g)
    1.22  #else
    1.23 @@ -1193,7 +1195,8 @@
    1.24    /// class. It works with callback mechanism, the DfsVisit object calls
    1.25    /// on every dfs event the \c Visitor class member functions.
    1.26    ///
    1.27 -  /// \tparam _Digraph The digraph type the algorithm runs on. The default value is
    1.28 +  /// \tparam _Digraph The digraph type the algorithm runs on.
    1.29 +  /// The default value is
    1.30    /// \ref ListDigraph. The value of _Digraph is not used directly by Dfs, it
    1.31    /// is only passed to \ref DfsDefaultTraits.
    1.32    /// \tparam _Visitor The Visitor object for the algorithm. The