COIN-OR::LEMON - Graph Library

Changeset 2037:32e4bebee616 in lemon-0.x for lemon/edmonds_karp.h


Ignore:
Timestamp:
04/04/06 19:43:23 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2676
Message:

Doxygen log corrections

doc of ResGraphAdaptor? has a bug in graph_adaptor.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/edmonds_karp.h

    r2036 r2037  
    102102    ///
    103103    /// The constructor of the class.
    104     /// \param _graph The directed graph the algorithm runs on.
    105     /// \param _source The source node.
    106     /// \param _target The target node.
    107     /// \param _capacity The capacity of the edges.
    108     /// \param _flow The flow of the edges.
    109     /// \param _tolerance Tolerance class.
     104    /// \param graph The directed graph the algorithm runs on.
     105    /// \param source The source node.
     106    /// \param target The target node.
     107    /// \param capacity The capacity of the edges.
     108    /// \param flow The flow of the edges.
     109    /// \param tolerance Tolerance class.
    110110    /// Except the graph, all of these parameters can be reset by
    111111    /// calling \ref source, \ref target, \ref capacityMap and \ref
     
    253253    /// Sets \c cut to the characteristic vector of a minimum value cut
    254254    /// It simply calls the minMinCut member.
     255    /// \retval cut Write node bool map.
    255256    template <typename CutMap>
    256257    void minCut(CutMap& cut) const {
     
    263264    /// which is inclusionwise minimum. It is computed by processing a
    264265    /// bfs from the source node \c source in the residual graph. 
     266    /// \retval cut Write node bool map.
    265267    template <typename CutMap>
    266268    void minMinCut(CutMap& cut) const {
     
    284286    /// which is inclusionwise minimum. It is computed by processing a
    285287    /// bfs from the source node \c source in the residual graph. 
     288    /// \retval cut Write node bool map.
    286289    template <typename CutMap>
    287290    void maxMinCut(CutMap& cut) const {
Note: See TracChangeset for help on using the changeset viewer.