COIN-OR::LEMON - Graph Library

Changeset 1946:17eb3eaad9f8 in lemon-0.x for lemon/bellman_ford.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/bellman_ford.h

    r1875 r1946  
    545545    ///
    546546    /// \note d.run(s) is just a shortcut of the following code.
    547     /// \code
     547    ///\code
    548548    ///  d.init();
    549549    ///  d.addSource(s);
    550550    ///  d.start();
    551     /// \endcode
     551    ///\endcode
    552552    void run(Node s) {
    553553      init();
     
    566566    ///
    567567    /// \note d.run(s, len) is just a shortcut of the following code.
    568     /// \code
     568    ///\code
    569569    ///  d.init();
    570570    ///  d.addSource(s);
    571571    ///  d.limitedStart(len);
    572     /// \endcode
     572    ///\endcode
    573573    void run(Node s, int len) {
    574574      init();
     
    929929  /// The following
    930930  /// example shows how to use these parameters.
    931   /// \code
     931  ///\code
    932932  /// bellmanford(g,length,source).predMap(preds).run();
    933   /// \endcode
     933  ///\endcode
    934934  /// \warning Don't forget to put the \ref BellmanFordWizard::run() "run()"
    935935  /// to the end of the parameter list.
Note: See TracChangeset for help on using the changeset viewer.