COIN-OR::LEMON - Graph Library

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

    r1516 r1536  
    109109 
    110110    ///This function instantiates a \ref ProcessedMap.
    111     ///\param G is the graph, to which
     111    ///\param g is the graph, to which
    112112    ///we would like to define the \ref ProcessedMap
     113#ifdef DOXYGEN
     114    static ProcessedMap *createProcessedMap(const GR &g)
     115#else
    113116    static ProcessedMap *createProcessedMap(const GR &)
     117#endif
    114118    {
    115119      return new ProcessedMap();
     
    664668   
    665669    ///This function copies the shortest path to \c t into \c p.
    666     ///If it \c \t is a source itself or unreachable, then it does not
     670    ///If it \c t is a source itself or unreachable, then it does not
    667671    ///alter \c p.
    668672    ///\todo Is it the right way to handle unreachable nodes?
     
    789793 
    790794    ///This function instantiates a \ref PredMap.
    791     ///\param G is the graph, to which we would like to define the PredMap.
     795    ///\param g is the graph, to which we would like to define the PredMap.
    792796    ///\todo The graph alone may be insufficient for the initialization
     797#ifdef DOXYGEN
     798    static PredMap *createPredMap(const GR &g)
     799#else
    793800    static PredMap *createPredMap(const GR &)
     801#endif
    794802    {
    795803      return new PredMap();
     
    807815 
    808816    ///This function instantiates a \ref ProcessedMap.
    809     ///\param G is the graph, to which
     817    ///\param g is the graph, to which
    810818    ///we would like to define the \ref ProcessedMap
     819#ifdef DOXYGEN
     820    static ProcessedMap *createProcessedMap(const GR &g)
     821#else
    811822    static ProcessedMap *createProcessedMap(const GR &)
     823#endif
    812824    {
    813825      return new ProcessedMap();
     
    822834 
    823835    ///This function instantiates a \ref DistMap.
    824     ///\param G is the graph, to which we would like to define the \ref DistMap
     836    ///\param g is the graph, to which we would like to define the \ref DistMap
     837#ifdef DOXYGEN
     838    static DistMap *createDistMap(const GR &g)
     839#else
    825840    static DistMap *createDistMap(const GR &)
     841#endif
    826842    {
    827843      return new DistMap();
Note: See TracChangeset for help on using the changeset viewer.