Changeset 2526:b7727edd44f2 in lemon-0.x for lemon/cycle_canceling.h
- Timestamp:
- 11/28/07 18:51:02 (17 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3402
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/cycle_canceling.h
r2509 r2526 324 324 325 325 // Finding a feasible flow 326 Circulation< Graph, Capacity, FlowMap,ConstMap<Edge, Capacity>,327 CapacityRefMap, SupplyMap >326 Circulation< Graph, Capacity, ConstMap<Edge, Capacity>, 327 CapacityRefMap, SupplyMap >::DefFlowMap<FlowMap>::Create 328 328 circulation( graph, constMap<Edge>((Capacity)0), 329 capacity, supply, flow ); 330 return circulation.run() == -1; 329 capacity, supply); 330 circulation.flowMap(flowMap); 331 return circulation.run(); 331 332 } 332 333
Note: See TracChangeset
for help on using the changeset viewer.