[Lemon-commits] [lemon_svn] alpar: r961 - hugo/trunk/src/work/jacint
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:42:27 CET 2006
Author: alpar
Date: Mon Jul 19 15:32:28 2004
New Revision: 961
Modified:
hugo/trunk/src/work/jacint/max_flow.h
Log:
docfix
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 Mon Jul 19 15:32:28 2004
@@ -151,6 +151,10 @@
}
};
+ ///Constructor
+
+ ///\todo Document, please.
+ ///
MaxFlow(const Graph& _G, Node _s, Node _t, const CapMap& _capacity,
FlowMap& _flow) :
g(&_G), s(_s), t(_t), capacity(&_capacity),
@@ -180,6 +184,8 @@
/// - an arbitary flow if \c fe is \c GEN_FLOW,
/// - an arbitary preflow if \c fe is \c PRE_FLOW,
/// - any map if \c fe is NO_FLOW.
+ ///
+ ///\todo NO_FLOW should be the default flow.
void preflow(FlowEnum fe) {
preflowPhase1(fe);
preflowPhase2();
More information about the Lemon-commits
mailing list