# HG changeset patch # User marci # Date 1083267533 0 # Node ID 32c3548ecc2a459a5cbc33abc9e1a307320aa420 # Parent 11ad69691d180e732ce0ad5f499a4e14b55df2a7 misc diff -r 11ad69691d18 -r 32c3548ecc2a doc/Doxyfile --- a/doc/Doxyfile Thu Apr 29 19:25:52 2004 +0000 +++ b/doc/Doxyfile Thu Apr 29 19:38:53 2004 +0000 @@ -407,8 +407,8 @@ ../src/work/alpar/list_graph.h \ ../src/work/athos/minlengthpaths.h \ ../src/work/klao/path.h \ - ../src/work/marci/graph_wrapper.h - + ../src/work/marci/graph_wrapper.h \ + ../src/work/jacint/max_flow.h # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp diff -r 11ad69691d18 -r 32c3548ecc2a src/work/jacint/max_flow.h --- a/src/work/jacint/max_flow.h Thu Apr 29 19:25:52 2004 +0000 +++ b/src/work/jacint/max_flow.h Thu Apr 29 19:38:53 2004 +0000 @@ -49,10 +49,14 @@ #include #include +/// \file +/// \brief Dimacs file format reader. namespace hugo { - ///\author Marton Makai, Jacint Szabo + +// ///\author Marton Makai, Jacint Szabo + /// A class for computing max flows and related quantities. template , typename FlowMap=typename Graph::template EdgeMap > @@ -102,7 +106,7 @@ /// A max flow algorithm is run. ///\pre the flow have to be 0 at the beginning. void run() { - preflow( ZERO_FLOW ); + preflow(ZERO_FLOW); } /// A preflow algorithm is run. @@ -110,7 +114,7 @@ /// zero flow if \c fe is \c ZERO_FLOW, /// a flow if \c fe is \c GEN_FLOW, /// and a pre-flow it is \c PREFLOW. - void preflow( flowEnum fe ) { + void preflow(flowEnum fe) { preflowPhase0(fe); preflowPhase1(); }