Changeset 243:a85fd87460e3 in lemon-0.x for src/work/marci
- Timestamp:
- 03/25/04 10:42:59 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@342
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/edmonds_karp_demo.cc
r206 r243 35 35 typedef ListGraph MutableGraph; 36 36 37 typedef SmartGraph Graph;38 //typedef ListGraph Graph;37 //typedef SmartGraph Graph; 38 typedef ListGraph Graph; 39 39 typedef Graph::Node Node; 40 40 typedef Graph::EdgeIt EdgeIt; … … 86 86 87 87 { 88 std::cout << "SmartGraph..." << std::endl;88 //std::cout << "SmartGraph..." << std::endl; 89 89 std::cout << "edmonds karp demo (physical blocking flow augmentation)..." << std::endl; 90 90 Graph::EdgeMap<int> flow(G); //0 flow … … 115 115 116 116 { 117 std::cout << "SmartGraph..." << std::endl;117 //std::cout << "SmartGraph..." << std::endl; 118 118 std::cout << "edmonds karp demo (physical blocking flow 1 augmentation)..." << std::endl; 119 119 Graph::EdgeMap<int> flow(G); //0 flow
Note: See TracChangeset
for help on using the changeset viewer.