COIN-OR::LEMON - Graph Library

Changeset 2259:da142c310d02 in lemon-0.x


Ignore:
Timestamp:
10/24/06 18:49:41 (17 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3015
Message:

Spellcheck

Location:
lemon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/kruskal.h

    r2206 r2259  
    6060  ///
    6161  /// \retval out Here we also have a choise.
    62   /// - Is can be a writable \c bool edge map.
     62  /// - It can be a writable \c bool edge map.
    6363  /// After running the algorithm
    6464  /// this will contain the found minimum cost spanning tree: the value of an
     
    7070  /// For example, if we know that the spanning tree of the graph \c g has
    7171  /// say 53 edges, then
    72   /// we can put its edges into a STL vector \c tree with a code like this.
     72  /// we can put its edges into an STL vector \c tree with a code like this.
    7373  ///\code
    7474  /// std::vector<Edge> tree(53);
     
    8383  /// \return The cost of the found tree.
    8484  ///
    85   /// \warning If kruskal is run on an
     85  /// \warning If kruskal runs on an
    8686  /// \ref lemon::concept::UGraph "undirected graph", be sure that the
    8787  /// map storing the tree is also undirected
     
    392392//   For example, if we know that the spanning tree of the graph \c g has
    393393//   say 53 edges, then
    394 //   we can put its edges into a STL vector \c tree with a code like this.
     394//   we can put its edges into an STL vector \c tree with a code like this.
    395395//\code
    396396//   std::vector<Edge> tree(53);
  • lemon/min_cost_arborescence.h

    r2151 r2259  
    5959    /// The type of the map that stores which edges are in the arborescence.
    6060    /// It must meet the \ref concept::WriteMap "WriteMap" concept.
    61     /// Initially it will be setted to false on each edge. After it
     61    /// Initially it will be set to false on each edge. After it
    6262    /// will set all arborescence edges once.
    6363    typedef typename Graph::template EdgeMap<bool> ArborescenceMap;
Note: See TracChangeset for help on using the changeset viewer.