Changeset 719:cb9efd4cc9db in lemon-0.x for src
- Timestamp:
- 07/21/04 15:03:11 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@973
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/jacint/max_flow_no_stack.h
r714 r719 157 157 ///\todo Document, please. 158 158 /// 159 MaxFlowNoStack(const Graph& _G, Node _s, Node _t, const CapMap& _capacity,160 159 MaxFlowNoStack(const Graph& _G, Node _s, Node _t, 160 const CapMap& _capacity, FlowMap& _flow) : 161 161 g(&_G), s(_s), t(_t), capacity(&_capacity), 162 162 flow(&_flow), n(_G.nodeNum()), level(_G), excess(_G,0), … … 414 414 /// Resets the edge map of the capacities to _cap. 415 415 /// 416 void resetCap(const CapMap& _cap) { capacity=&_cap; status=AFTER_NOTHING; } 416 void resetCap(const CapMap& _cap) 417 { capacity=&_cap; status=AFTER_NOTHING; } 417 418 418 419 /// Resets the edge map of the flows to _flow.
Note: See TracChangeset
for help on using the changeset viewer.