Changeset 271:951cd01495e7 in lemon-0.x for src/work/marci/edmonds_karp_demo.cc
- Timestamp:
- 03/31/04 18:39:42 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@377
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/edmonds_karp_demo.cc
r269 r271 94 94 GW gw(G); 95 95 std::cout << "edmonds karp demo (physical blocking flow augmentation)..." << std::endl; 96 GW::EdgeMap<int> flow( G); //0 flow96 GW::EdgeMap<int> flow(gw); //0 flow 97 97 98 98 Timer ts; … … 125 125 GW gw(G); 126 126 std::cout << "edmonds karp demo (physical blocking flow 1 augmentation)..." << std::endl; 127 GW::EdgeMap<int> flow( G); //0 flow127 GW::EdgeMap<int> flow(gw); //0 flow 128 128 129 129 Timer ts; … … 156 156 GW gw(G); 157 157 std::cout << "edmonds karp demo (on-the-fly blocking flow augmentation)..." << std::endl; 158 GW::EdgeMap<int> flow( G); //0 flow158 GW::EdgeMap<int> flow(gw); //0 flow 159 159 160 160 Timer ts;
Note: See TracChangeset
for help on using the changeset viewer.