1.1 --- a/src/work/jacint/max_flow.h Mon Jul 19 13:31:47 2004 +0000
1.2 +++ b/src/work/jacint/max_flow.h Mon Jul 19 13:32:28 2004 +0000
1.3 @@ -151,6 +151,10 @@
1.4 }
1.5 };
1.6
1.7 + ///Constructor
1.8 +
1.9 + ///\todo Document, please.
1.10 + ///
1.11 MaxFlow(const Graph& _G, Node _s, Node _t, const CapMap& _capacity,
1.12 FlowMap& _flow) :
1.13 g(&_G), s(_s), t(_t), capacity(&_capacity),
1.14 @@ -180,6 +184,8 @@
1.15 /// - an arbitary flow if \c fe is \c GEN_FLOW,
1.16 /// - an arbitary preflow if \c fe is \c PRE_FLOW,
1.17 /// - any map if \c fe is NO_FLOW.
1.18 + ///
1.19 + ///\todo NO_FLOW should be the default flow.
1.20 void preflow(FlowEnum fe) {
1.21 preflowPhase1(fe);
1.22 preflowPhase2();