# HG changeset patch # User alpar # Date 1090243948 0 # Node ID 7a518df798923c17198c2eeec91a57c17d789d54 # Parent 429dfcbbf47d4e7b402d99cf2cab33d5fcdc73fe docfix diff -r 429dfcbbf47d -r 7a518df79892 src/work/jacint/max_flow.h --- a/src/work/jacint/max_flow.h Mon Jul 19 13:31:47 2004 +0000 +++ b/src/work/jacint/max_flow.h Mon Jul 19 13:32:28 2004 +0000 @@ -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();