lemon/prim.h
changeset 1953 d4f411003580
parent 1912 d9205a711324
child 1956 a055123339d5
     1.1 --- a/lemon/prim.h	Fri Feb 03 14:22:45 2006 +0000
     1.2 +++ b/lemon/prim.h	Fri Feb 03 15:58:24 2006 +0000
     1.3 @@ -56,7 +56,7 @@
     1.4      ///Instantiates a HeapCrossRef.
     1.5  
     1.6      ///This function instantiates a \ref HeapCrossRef. 
     1.7 -    /// \param G is the graph, to which we would like to define the 
     1.8 +    /// \param _graph is the graph, to which we would like to define the 
     1.9      /// HeapCrossRef.
    1.10      static HeapCrossRef *createHeapCrossRef(const GR &_graph){
    1.11        return new HeapCrossRef(_graph);
    1.12 @@ -86,7 +86,7 @@
    1.13      ///Instantiates a PredMap.
    1.14   
    1.15      ///This function instantiates a \ref PredMap. 
    1.16 -    ///\param G is the graph, to which we would like to define the PredMap.
    1.17 +    ///\param _graph is the graph, to which we would like to define the PredMap.
    1.18      static PredMap *createPredMap(const GR &_graph){
    1.19        return new PredMap(_graph);
    1.20      }
    1.21 @@ -101,7 +101,8 @@
    1.22      ///Instantiates a TreeMap.
    1.23  
    1.24      ///This function instantiates a \ref TreeMap.
    1.25 -    ///\param g is the graph, to which
    1.26 +    ///
    1.27 +    ///The first parameter is the graph, to which
    1.28      ///we would like to define the \ref TreeMap
    1.29      static TreeMap *createTreeMap(const GR &){
    1.30        return new TreeMap();
    1.31 @@ -116,7 +117,7 @@
    1.32      ///Instantiates a ProcessedMap.
    1.33   
    1.34      ///This function instantiates a \ref ProcessedMap. 
    1.35 -    ///\param g is the graph, to which
    1.36 +    ///\param _graph is the graph, to which
    1.37      ///we would like to define the \ref ProcessedMap
    1.38  #ifdef DOXYGEN
    1.39      static ProcessedMap *createProcessedMap(const GR &_graph)
    1.40 @@ -703,7 +704,7 @@
    1.41  
    1.42      ///Sets the TreeMap of the edges of the minimum spanning tree.
    1.43      ///The map values belonging to the edges of the minimum
    1.44 -    ///spanning tree are set to \param tree_edge_value or \c true by default,
    1.45 +    ///spanning tree are set to \c tree_edge_value or \c true by default,
    1.46      ///the other map values remain untouched.
    1.47      ///
    1.48      ///\pre \ref run() or \ref start() must be called before using this function.
    1.49 @@ -721,9 +722,9 @@
    1.50  
    1.51      ///Sets the TreeMap of the edges of the minimum spanning tree.
    1.52      ///The map values belonging to the edges of the minimum
    1.53 -    ///spanning tree are set to \param tree_edge_value or \c true by default while
    1.54 +    ///spanning tree are set to \c tree_edge_value or \c true by default while
    1.55      ///the edge values not belonging to the minimum spanning tree are set to
    1.56 -    ///\param tree_default_value or \c false by default.
    1.57 +    ///\c tree_default_value or \c false by default.
    1.58      ///
    1.59      ///\pre \ref run() or \ref start() must be called before using this function.
    1.60