COIN-OR::LEMON - Graph Library

Changeset 758:49b1a30c4dc4 in lemon-0.x for src/hugo/max_flow.h


Ignore:
Timestamp:
08/05/04 13:38:26 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1018
Message:

New Doxygen module for path/flow algs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/hugo/max_flow.h

    r757 r758  
    1111
    1212/// \file
    13 /// \ingroup galgs
     13/// \ingroup flowalgs
    1414
    1515namespace hugo {
    1616
    17   /// \addtogroup galgs
    18   /// @{                                                                                                                                       
     17  /// \addtogroup flowalgs
     18  /// @{                                                   
     19
    1920  ///Maximum flow algorithms class.
    2021
     
    2728  ///\ref setFlow. Before any subsequent runs of any algorithm of
    2829  ///the class \ref setFlow should be called.
    29 
     30  ///
    3031  ///After running an algorithm of the class, the actual flow value
    3132  ///can be obtained by calling \ref flowValue(). The minimum
     
    3334  ///calling \ref minCut. (\ref minMinCut and \ref maxMinCut writes
    3435  ///the inclusionwise minimum and maximum of the minimum value
    35   ///cuts, resp.)                                                                                                                               
     36  ///cuts, resp.)
     37  ///
    3638  ///\param Graph The directed graph type the algorithm runs on.
    3739  ///\param Num The number type of the capacities and the flow values.
    3840  ///\param CapMap The capacity map type.
    39   ///\param FlowMap The flow map type.                                                                                                           
     41  ///\param FlowMap The flow map type.
     42  ///
    4043  ///\author Marton Makai, Jacint Szabo
    4144  template <typename Graph, typename Num,
Note: See TracChangeset for help on using the changeset viewer.