1.1 --- a/src/work/jacint/max_flow_no_stack.h Wed Jul 21 07:03:20 2004 +0000
1.2 +++ b/src/work/jacint/max_flow_no_stack.h Wed Jul 21 13:03:11 2004 +0000
1.3 @@ -156,8 +156,8 @@
1.4
1.5 ///\todo Document, please.
1.6 ///
1.7 - MaxFlowNoStack(const Graph& _G, Node _s, Node _t, const CapMap& _capacity,
1.8 - FlowMap& _flow) :
1.9 + MaxFlowNoStack(const Graph& _G, Node _s, Node _t,
1.10 + const CapMap& _capacity, FlowMap& _flow) :
1.11 g(&_G), s(_s), t(_t), capacity(&_capacity),
1.12 flow(&_flow), n(_G.nodeNum()), level(_G), excess(_G,0),
1.13 status(AFTER_NOTHING), number_of_augmentations(0) { }
1.14 @@ -413,7 +413,8 @@
1.15
1.16 /// Resets the edge map of the capacities to _cap.
1.17 ///
1.18 - void resetCap(const CapMap& _cap) { capacity=&_cap; status=AFTER_NOTHING; }
1.19 + void resetCap(const CapMap& _cap)
1.20 + { capacity=&_cap; status=AFTER_NOTHING; }
1.21
1.22 /// Resets the edge map of the flows to _flow.
1.23