Changeset 465:d72e56f1730d in lemon-0.x for src/work/jacint
- Timestamp:
- 04/29/04 11:08:14 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@616
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/jacint/preflow.h
r451 r465 63 63 Node s; 64 64 Node t; 65 CapMap* capacity;65 const CapMap* capacity; 66 66 FlowMap* flow; 67 67 int n; //the number of nodes of G … … 78 78 }; 79 79 80 Preflow( Graph& _G, Node _s, Node _t,CapMap& _capacity,80 Preflow(const Graph& _G, Node _s, Node _t, const CapMap& _capacity, 81 81 FlowMap& _flow) : 82 82 G(_G), s(_s), t(_t), capacity(&_capacity), … … 154 154 break; 155 155 } 156 // default: 157 // break; 158 // ZERO_FLOW ize kell 159 156 160 } 157 161
Note: See TracChangeset
for help on using the changeset viewer.