COIN-OR::LEMON - Graph Library

Changeset 1865:dcefd1d1377f in lemon-0.x


Ignore:
Timestamp:
12/19/05 10:47:10 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2438
Message:

Doc fix

Location:
lemon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/dfs.h

    r1799 r1865  
    560560    ///with addSource() before using this function.
    561561    ///
    562     ///\param nm must be a bool (or convertible) edge map. The algorithm
    563     ///will stop when it reaches an edge \c e with <tt>nm[e]==true</tt>.
     562    ///\param em must be a bool (or convertible) edge map. The algorithm
     563    ///will stop when it reaches an edge \c e with \code em[e]==true \endcode.
    564564    ///
    565565    ///\warning Contrary to \ref Dfs and \ref Dijkstra, \c em is an edge map,
     
    11451145    ///
    11461146    /// This function instantiates a \ref ReachedMap.
    1147     /// \param G is the graph, to which
     1147    /// \param graph is the graph, to which
    11481148    /// we would like to define the \ref ReachedMap.
    11491149    static ReachedMap *createReachedMap(const Graph &graph) {
     
    14281428    /// with addSource() before using this function.
    14291429    ///
    1430     /// \param nm must be a bool (or convertible) edge map. The algorithm
    1431     /// will stop when it reaches an edge \c e with <tt>nm[e]==true</tt>.
     1430    /// \param em must be a bool (or convertible) edge map. The algorithm
     1431    /// will stop when it reaches an edge \c e with \code nm[e]==true \endcode.
    14321432    ///
    14331433    /// \warning Contrary to \ref Dfs and \ref Dijkstra, \c em is an edge map,
  • lemon/floyd_warshall.h

    r1765 r1865  
    9999    typedef typename _LengthMap::Value Value;
    100100
    101     /// \brief Operation traits for belmann-ford algorithm.
     101    /// \brief Operation traits for floyd-warshall algorithm.
    102102    ///
    103103    /// It defines the infinity type on the given Value type
Note: See TracChangeset for help on using the changeset viewer.