# HG changeset patch # User alpar # Date 1090414991 0 # Node ID cb9efd4cc9db520c42dfa2131a450e7ae4eb1a6c # Parent 75d36edc6bc4ad9636aa355ecd491dbbb0a04b07 Indenting diff -r 75d36edc6bc4 -r cb9efd4cc9db src/work/jacint/max_flow_no_stack.h --- a/src/work/jacint/max_flow_no_stack.h Wed Jul 21 07:03:20 2004 +0000 +++ b/src/work/jacint/max_flow_no_stack.h Wed Jul 21 13:03:11 2004 +0000 @@ -156,8 +156,8 @@ ///\todo Document, please. /// - MaxFlowNoStack(const Graph& _G, Node _s, Node _t, const CapMap& _capacity, - FlowMap& _flow) : + MaxFlowNoStack(const Graph& _G, Node _s, Node _t, + const CapMap& _capacity, FlowMap& _flow) : g(&_G), s(_s), t(_t), capacity(&_capacity), flow(&_flow), n(_G.nodeNum()), level(_G), excess(_G,0), status(AFTER_NOTHING), number_of_augmentations(0) { } @@ -413,7 +413,8 @@ /// Resets the edge map of the capacities to _cap. /// - void resetCap(const CapMap& _cap) { capacity=&_cap; status=AFTER_NOTHING; } + void resetCap(const CapMap& _cap) + { capacity=&_cap; status=AFTER_NOTHING; } /// Resets the edge map of the flows to _flow.