COIN-OR::LEMON - Graph Library

Changeset 1946:17eb3eaad9f8 in lemon-0.x for lemon/kruskal.h


Ignore:
Timestamp:
02/02/06 18:43:24 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2521
Message:
  • workaround for a Doxygen 1.4.6 bug
  • other doc fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/kruskal.h

    r1942 r1946  
    7878  /// say 53 edges, then
    7979  /// we can put its edges into a STL vector \c tree with a code like this.
    80   /// \code
     80  ///\code
    8181  /// std::vector<Edge> tree(53);
    8282  /// kruskal(g,cost,tree.begin());
    83   /// \endcode
     83  ///\endcode
    8484  /// Or if we don't know in advance the size of the tree, we can write this.
    85   /// \code
     85  ///\code
    8686  /// std::vector<Edge> tree;
    8787  /// kruskal(g,cost,std::back_inserter(tree));
    88   /// \endcode
     88  ///\endcode
    8989  ///
    9090  /// \return The cost of the found tree.
     
    301301  ///
    302302  /// A typical usage:
    303   /// \code
     303  ///\code
    304304  /// std::vector<Graph::Edge> v;
    305305  /// kruskal(g, input, makeKruskalSequenceOutput(back_inserter(v)));
    306   /// \endcode
     306  ///\endcode
    307307  ///
    308308  /// For the most common case, when the input is given by a simple edge
     
    397397//   say 53 edges, then
    398398//   we can put its edges into a STL vector \c tree with a code like this.
    399 //   \code
     399//\code
    400400//   std::vector<Edge> tree(53);
    401401//   kruskal(g,cost,tree.begin());
    402 //   \endcode
     402//\endcode
    403403//   Or if we don't know in advance the size of the tree, we can write this.
    404 //   \code
     404//\code
    405405//   std::vector<Edge> tree;
    406406//   kruskal(g,cost,std::back_inserter(tree));
    407 //   \endcode
     407//\endcode
    408408// 
    409409//   \return The cost of the found tree.
Note: See TracChangeset for help on using the changeset viewer.