COIN-OR::LEMON - Graph Library

Changeset 760:4ac30454f1c1 in lemon for lemon/preflow.h


Ignore:
Timestamp:
07/24/09 10:27:40 (15 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Small doc improvements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/preflow.h

    r688 r760  
    5353    /// The type of the map that stores the flow values.
    5454    /// It must meet the \ref concepts::ReadWriteMap "ReadWriteMap" concept.
     55#ifdef DOXYGEN
     56    typedef GR::ArcMap<Value> FlowMap;
     57#else
    5558    typedef typename Digraph::template ArcMap<Value> FlowMap;
     59#endif
    5660
    5761    /// \brief Instantiates a FlowMap.
     
    6872    /// The elevator type used by Preflow algorithm.
    6973    ///
    70     /// \sa Elevator
    71     /// \sa LinkedElevator
    72     typedef LinkedElevator<Digraph, typename Digraph::Node> Elevator;
     74    /// \sa Elevator, LinkedElevator
     75#ifdef DOXYGEN
     76    typedef lemon::Elevator<GR, GR::Node> Elevator;
     77#else
     78    typedef lemon::Elevator<Digraph, typename Digraph::Node> Elevator;
     79#endif
    7380
    7481    /// \brief Instantiates an Elevator.
     
    390397    /// The simplest way to execute the preflow algorithm is to use
    391398    /// \ref run() or \ref runMinCut().\n
    392     /// If you need more control on the initial solution or the execution,
    393     /// first you have to call one of the \ref init() functions, then
     399    /// If you need better control on the initial solution or the execution,
     400    /// you have to call one of the \ref init() functions first, then
    394401    /// \ref startFirstPhase() and if you need it \ref startSecondPhase().
    395402
Note: See TracChangeset for help on using the changeset viewer.