lemon/dfs.h
changeset 1536 308150155bb5
parent 1529 c914e7ec2b7b
child 1540 7d028a73d7f2
     1.1 --- a/lemon/dfs.h	Mon Jul 04 16:18:11 2005 +0000
     1.2 +++ b/lemon/dfs.h	Mon Jul 04 16:27:54 2005 +0000
     1.3 @@ -84,9 +84,13 @@
     1.4      ///Instantiates a ProcessedMap.
     1.5   
     1.6      ///This function instantiates a \ref ProcessedMap. 
     1.7 -    ///\param G is the graph, to which
     1.8 +    ///\param g is the graph, to which
     1.9      ///we would like to define the \ref ProcessedMap
    1.10 +#ifdef DOXYGEN
    1.11 +    static ProcessedMap *createProcessedMap(const GR &g)
    1.12 +#else
    1.13      static ProcessedMap *createProcessedMap(const GR &)
    1.14 +#endif
    1.15      {
    1.16        return new ProcessedMap();
    1.17      }
    1.18 @@ -779,9 +783,13 @@
    1.19      ///Instantiates a PredMap.
    1.20   
    1.21      ///This function instantiates a \ref PredMap. 
    1.22 -    ///\param G is the graph, to which we would like to define the PredMap.
    1.23 +    ///\param g is the graph, to which we would like to define the PredMap.
    1.24      ///\todo The graph alone may be insufficient to initialize
    1.25 +#ifdef DOXYGEN
    1.26 +    static PredMap *createPredMap(const GR &g) 
    1.27 +#else
    1.28      static PredMap *createPredMap(const GR &) 
    1.29 +#endif
    1.30      {
    1.31        return new PredMap();
    1.32      }
    1.33 @@ -812,9 +820,13 @@
    1.34      ///Instantiates a ProcessedMap.
    1.35   
    1.36      ///This function instantiates a \ref ProcessedMap. 
    1.37 -    ///\param G is the graph, to which
    1.38 +    ///\param g is the graph, to which
    1.39      ///we would like to define the \ref ProcessedMap
    1.40 +#ifdef DOXYGEN
    1.41 +    static ProcessedMap *createProcessedMap(const GR &g)
    1.42 +#else
    1.43      static ProcessedMap *createProcessedMap(const GR &)
    1.44 +#endif
    1.45      {
    1.46        return new ProcessedMap();
    1.47      }
    1.48 @@ -842,8 +854,12 @@
    1.49      ///Instantiates a DistMap.
    1.50   
    1.51      ///This function instantiates a \ref DistMap. 
    1.52 -    ///\param G is the graph, to which we would like to define the \ref DistMap
    1.53 +    ///\param g is the graph, to which we would like to define the \ref DistMap
    1.54 +#ifdef DOXYGEN
    1.55 +    static DistMap *createDistMap(const GR &g)
    1.56 +#else
    1.57      static DistMap *createDistMap(const GR &)
    1.58 +#endif
    1.59      {
    1.60        return new DistMap();
    1.61      }