COIN-OR::LEMON - Graph Library

Ticket #192: cace3206223b.patch

File cace3206223b.patch, 2.1 KB (added by Balazs Dezso, 16 years ago)
  • lemon/connectivity.h

    # HG changeset patch
    # User Balazs Dezso <deba@inf.elte.hu>
    # Date 1228730799 -3600
    # Node ID cace3206223b3ca3bb5b0c3731e8c7c2cf718f98
    # Parent  62c1ed05e83f8ae5835fef413cf897c6c75b777c
    Fix typos (ticket #192)
    
    diff -r 62c1ed05e83f -r cace3206223b lemon/connectivity.h
    a b  
    295295  /// the same class if they are connected with directed paths in both
    296296  /// direction.
    297297  ///
    298   /// \param graph The graph.
     298  /// \param digraph The graph.
    299299  /// \return The number of components
    300300  /// \note By definition, the empty graph has zero
    301301  /// strongly connected components.
     
    12251225  /// Sort the nodes of a DAG into topolgical order. It also checks
    12261226  /// that the given graph is DAG.
    12271227  ///
    1228   /// \param graph The graph. It must be directed and acyclic.
     1228  /// \param digraph The graph. It must be directed and acyclic.
    12291229  /// \retval order A readable - writable node map. The values will be set
    12301230  /// from 0 to the number of the nodes in the graph minus one. Each values
    12311231  /// of the map will be set exactly once, the values will be set descending
  • lemon/max_matching.h

    diff -r 62c1ed05e83f -r cace3206223b lemon/max_matching.h
    a b  
    416416    /// If you need better control on the execution, you must call
    417417    /// \ref init(), \ref greedyInit() or \ref matchingInit()
    418418    /// functions first, then you can start the algorithm with the \ref
    419     /// startParse() or startDense() functions.
     419    /// startSparse() or startDense() functions.
    420420
    421421    ///@{
    422422
  • lemon/suurballe.h

    diff -r 62c1ed05e83f -r cace3206223b lemon/suurballe.h
    a b  
    5151  /// \warning Length values should be \e non-negative \e integers.
    5252  ///
    5353  /// \note For finding node-disjoint paths this algorithm can be used
    54   /// with \ref SplitDigraphAdaptor.
     54  /// with \ref SplitNodes.
    5555#ifdef DOXYGEN
    5656  template <typename Digraph, typename LengthMap>
    5757#else