COIN-OR::LEMON - Graph Library

Changeset 488:32c3548ecc2a in lemon-0.x


Ignore:
Timestamp:
04/29/04 21:38:53 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@646
Message:

misc

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/Doxyfile

    r484 r488  
    408408                         ../src/work/athos/minlengthpaths.h \
    409409                         ../src/work/klao/path.h \
    410                          ../src/work/marci/graph_wrapper.h     
    411                          
     410                         ../src/work/marci/graph_wrapper.h \
     411                         ../src/work/jacint/max_flow.h
    412412
    413413# If the value of the INPUT tag contains directories, you can use the
  • src/work/jacint/max_flow.h

    r487 r488  
    5050#include <for_each_macros.h>
    5151
     52/// \file
     53/// \brief Dimacs file format reader.
    5254
    5355namespace hugo {
    5456
    55   ///\author Marton Makai, Jacint Szabo
     57
     58//  ///\author Marton Makai, Jacint Szabo
     59  /// A class for computing max flows and related quantities.
    5660  template <typename Graph, typename Num,
    5761            typename CapMap=typename Graph::template EdgeMap<Num>,
     
    103107    ///\pre the flow have to be 0 at the beginning.
    104108    void run() {
    105       preflow( ZERO_FLOW );
     109      preflow(ZERO_FLOW);
    106110    }
    107111   
     
    111115    /// a flow if \c fe is \c GEN_FLOW,
    112116    /// and a pre-flow it is \c PREFLOW.
    113     void preflow( flowEnum fe ) {
     117    void preflow(flowEnum fe) {
    114118      preflowPhase0(fe);
    115119      preflowPhase1();
Note: See TracChangeset for help on using the changeset viewer.