Indenting
authoralpar
Wed, 21 Jul 2004 13:03:11 +0000
changeset 719cb9efd4cc9db
parent 718 75d36edc6bc4
child 720 193d881b23ad
Indenting
src/work/jacint/max_flow_no_stack.h
     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