COIN-OR::LEMON - Graph Library

Changeset 2476:059dcdda37c5 in lemon-0.x for lemon/bellman_ford.h


Ignore:
Timestamp:
09/27/07 15:04:06 (17 years ago)
Author:
Peter Kovacs
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3315
Message:

Bug fixes in the documentation (mainly bad references).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/bellman_ford.h

    r2408 r2476  
    433433    /// easily with \ref path() or \ref predEdge() functions. If you
    434434    /// need the shortest path and not just the distance you should store
    435     /// after each iteration the \ref predEdgeMap() map and manually build
     435    /// after each iteration the \ref predMap() map and manually build
    436436    /// the path.
    437437    ///
     
    546546    /// easily with \ref path() or \ref predEdge() functions. If you
    547547    /// need the shortest path and not just the distance you should store
    548     /// after each iteration the \ref predEdgeMap() map and manually build
     548    /// after each iteration the \ref predMap() map and manually build
    549549    /// the path.
    550550    ///
     
    952952    ///
    953953    /// Runs BellmanFord algorithm from the given node.
    954     /// \param source is the given source.
     954    /// \param src is the given source.
    955955    void run(Node src) {
    956956      Base::_source = src;
     
    10171017    ///
    10181018    /// Sets the source node, from which the BellmanFord algorithm runs.
    1019     /// \param source is the source node.
     1019    /// \param src is the source node.
    10201020    BellmanFordWizard<_Traits>& source(Node src) {
    10211021      Base::_source = src;
Note: See TracChangeset for help on using the changeset viewer.