src/hugo/dfs.h
changeset 911 89a4fbb99cad
parent 906 17f31d280385
     1.1 --- a/src/hugo/dfs.h	Mon Sep 27 18:11:27 2004 +0000
     1.2 +++ b/src/hugo/dfs.h	Tue Sep 28 07:00:58 2004 +0000
     1.3 @@ -48,13 +48,13 @@
     1.4    public:
     1.5      ///The type of the underlying graph.
     1.6      typedef GR Graph;
     1.7 -    /// .
     1.8 +    ///\e
     1.9      typedef typename Graph::Node Node;
    1.10 -    /// .
    1.11 +    ///\e
    1.12      typedef typename Graph::NodeIt NodeIt;
    1.13 -    /// .
    1.14 +    ///\e
    1.15      typedef typename Graph::Edge Edge;
    1.16 -    /// .
    1.17 +    ///\e
    1.18      typedef typename Graph::OutEdgeIt OutEdgeIt;
    1.19      
    1.20      ///\brief The type of the map that stores the last
    1.21 @@ -107,6 +107,7 @@
    1.22      ///Constructor.
    1.23      
    1.24      ///\param _G the graph the algorithm will run on.
    1.25 +    ///
    1.26      Dfs(const Graph& _G) :
    1.27        G(&_G),
    1.28        predecessor(NULL), local_predecessor(false),