COIN-OR::LEMON - Graph Library

Changeset 1536:308150155bb5 in lemon-0.x for lemon/dfs.h


Ignore:
Timestamp:
07/04/05 18:27:54 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2028
Message:

Kill several doxygen warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/dfs.h

    r1529 r1536  
    8585 
    8686    ///This function instantiates a \ref ProcessedMap.
    87     ///\param G is the graph, to which
     87    ///\param g is the graph, to which
    8888    ///we would like to define the \ref ProcessedMap
     89#ifdef DOXYGEN
     90    static ProcessedMap *createProcessedMap(const GR &g)
     91#else
    8992    static ProcessedMap *createProcessedMap(const GR &)
     93#endif
    9094    {
    9195      return new ProcessedMap();
     
    780784 
    781785    ///This function instantiates a \ref PredMap.
    782     ///\param G is the graph, to which we would like to define the PredMap.
     786    ///\param g is the graph, to which we would like to define the PredMap.
    783787    ///\todo The graph alone may be insufficient to initialize
     788#ifdef DOXYGEN
     789    static PredMap *createPredMap(const GR &g)
     790#else
    784791    static PredMap *createPredMap(const GR &)
     792#endif
    785793    {
    786794      return new PredMap();
     
    813821 
    814822    ///This function instantiates a \ref ProcessedMap.
    815     ///\param G is the graph, to which
     823    ///\param g is the graph, to which
    816824    ///we would like to define the \ref ProcessedMap
     825#ifdef DOXYGEN
     826    static ProcessedMap *createProcessedMap(const GR &g)
     827#else
    817828    static ProcessedMap *createProcessedMap(const GR &)
     829#endif
    818830    {
    819831      return new ProcessedMap();
     
    843855 
    844856    ///This function instantiates a \ref DistMap.
    845     ///\param G is the graph, to which we would like to define the \ref DistMap
     857    ///\param g is the graph, to which we would like to define the \ref DistMap
     858#ifdef DOXYGEN
     859    static DistMap *createDistMap(const GR &g)
     860#else
    846861    static DistMap *createDistMap(const GR &)
     862#endif
    847863    {
    848864      return new DistMap();
Note: See TracChangeset for help on using the changeset viewer.