[Lemon-commits] [lemon_svn] marci: r646 - in hugo/trunk: doc src/work/jacint
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:40:45 CET 2006
Author: marci
Date: Thu Apr 29 21:38:53 2004
New Revision: 646
Modified:
hugo/trunk/doc/Doxyfile
hugo/trunk/src/work/jacint/max_flow.h
Log:
misc
Modified: hugo/trunk/doc/Doxyfile
==============================================================================
--- hugo/trunk/doc/Doxyfile (original)
+++ hugo/trunk/doc/Doxyfile Thu Apr 29 21:38:53 2004
@@ -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
Modified: hugo/trunk/src/work/jacint/max_flow.h
==============================================================================
--- hugo/trunk/src/work/jacint/max_flow.h (original)
+++ hugo/trunk/src/work/jacint/max_flow.h Thu Apr 29 21:38:53 2004
@@ -49,10 +49,14 @@
#include <maps.h>
#include <for_each_macros.h>
+/// \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 Graph, typename Num,
typename CapMap=typename Graph::template EdgeMap<Num>,
typename FlowMap=typename Graph::template EdgeMap<Num> >
@@ -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();
}
More information about the Lemon-commits
mailing list