COIN-OR::LEMON - Graph Library

Changeset 1536:308150155bb5 in lemon-0.x for lemon/bfs.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/bfs.h

    r1516 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();
     
    660664   
    661665    ///This function copies the shortest path to \c t into \c p.
    662     ///If it \c \t is a source itself or unreachable, then it does not
     666    ///If \c t is a source itself or unreachable, then it does not
    663667    ///alter \c p.
    664668    ///\todo Is it the right way to handle unreachable nodes?
     
    771775 
    772776    ///This function instantiates a \ref PredMap.
    773     ///\param G is the graph, to which we would like to define the PredMap.
     777    ///\param g is the graph, to which we would like to define the PredMap.
    774778    ///\todo The graph alone may be insufficient to initialize
     779#ifdef DOXYGEN
     780    static PredMap *createPredMap(const GR &g)
     781#else
    775782    static PredMap *createPredMap(const GR &)
     783#endif
    776784    {
    777785      return new PredMap();
     
    804812 
    805813    ///This function instantiates a \ref ProcessedMap.
    806     ///\param G is the graph, to which
     814    ///\param g is the graph, to which
    807815    ///we would like to define the \ref ProcessedMap
     816#ifdef DOXYGEN
     817    static ProcessedMap *createProcessedMap(const GR &g)
     818#else
    808819    static ProcessedMap *createProcessedMap(const GR &)
     820#endif
    809821    {
    810822      return new ProcessedMap();
     
    834846 
    835847    ///This function instantiates a \ref DistMap.
    836     ///\param G is the graph, to which we would like to define the \ref DistMap
     848    ///\param g is the graph, to which we would like to define the \ref DistMap
     849#ifdef DOXYGEN
     850    static DistMap *createDistMap(const GR &g)
     851#else
    837852    static DistMap *createDistMap(const GR &)
     853#endif
    838854    {
    839855      return new DistMap();
Note: See TracChangeset for help on using the changeset viewer.