COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
07/21/04 15:03:11 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@973
Message:

Indenting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/jacint/max_flow_no_stack.h

    r714 r719  
    157157    ///\todo Document, please.
    158158    ///
    159     MaxFlowNoStack(const Graph& _G, Node _s, Node _t, const CapMap& _capacity,
    160             FlowMap& _flow) :
     159    MaxFlowNoStack(const Graph& _G, Node _s, Node _t,
     160                   const CapMap& _capacity, FlowMap& _flow) :
    161161      g(&_G), s(_s), t(_t), capacity(&_capacity),
    162162      flow(&_flow), n(_G.nodeNum()), level(_G), excess(_G,0),
     
    414414    /// Resets the edge map of the capacities to _cap.
    415415    ///
    416     void resetCap(const CapMap& _cap) { capacity=&_cap; status=AFTER_NOTHING; }
     416    void resetCap(const CapMap& _cap)
     417    { capacity=&_cap; status=AFTER_NOTHING; }
    417418
    418419    /// Resets the edge map of the flows to _flow.
Note: See TracChangeset for help on using the changeset viewer.