COIN-OR::LEMON - Graph Library

Changeset 1953:d4f411003580 in lemon-0.x for lemon/prim.h


Ignore:
Timestamp:
02/03/06 16:58:24 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2528
Message:

Polish the doc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/prim.h

    r1912 r1953  
    5757
    5858    ///This function instantiates a \ref HeapCrossRef.
    59     /// \param G is the graph, to which we would like to define the
     59    /// \param _graph is the graph, to which we would like to define the
    6060    /// HeapCrossRef.
    6161    static HeapCrossRef *createHeapCrossRef(const GR &_graph){
     
    8787 
    8888    ///This function instantiates a \ref PredMap.
    89     ///\param G is the graph, to which we would like to define the PredMap.
     89    ///\param _graph is the graph, to which we would like to define the PredMap.
    9090    static PredMap *createPredMap(const GR &_graph){
    9191      return new PredMap(_graph);
     
    102102
    103103    ///This function instantiates a \ref TreeMap.
    104     ///\param g is the graph, to which
     104    ///
     105    ///The first parameter is the graph, to which
    105106    ///we would like to define the \ref TreeMap
    106107    static TreeMap *createTreeMap(const GR &){
     
    117118 
    118119    ///This function instantiates a \ref ProcessedMap.
    119     ///\param g is the graph, to which
     120    ///\param _graph is the graph, to which
    120121    ///we would like to define the \ref ProcessedMap
    121122#ifdef DOXYGEN
     
    704705    ///Sets the TreeMap of the edges of the minimum spanning tree.
    705706    ///The map values belonging to the edges of the minimum
    706     ///spanning tree are set to \param tree_edge_value or \c true by default,
     707    ///spanning tree are set to \c tree_edge_value or \c true by default,
    707708    ///the other map values remain untouched.
    708709    ///
     
    722723    ///Sets the TreeMap of the edges of the minimum spanning tree.
    723724    ///The map values belonging to the edges of the minimum
    724     ///spanning tree are set to \param tree_edge_value or \c true by default while
     725    ///spanning tree are set to \c tree_edge_value or \c true by default while
    725726    ///the edge values not belonging to the minimum spanning tree are set to
    726     ///\param tree_default_value or \c false by default.
     727    ///\c tree_default_value or \c false by default.
    727728    ///
    728729    ///\pre \ref run() or \ref start() must be called before using this function.
Note: See TracChangeset for help on using the changeset viewer.