Changeset 271:951cd01495e7 in lemon-0.x for src/work/marci
- Timestamp:
- 03/31/04 18:39:42 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@377
- Location:
- src/work/marci
- Files:
-
- 2 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; -
src/work/marci/makefile
r259 r271 11 11 12 12 LEDABINARIES = lg_vs_sg leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo 13 BINARIES = edmonds_karp_demo 13 BINARIES = edmonds_karp_demo gw_vs_not 14 14 #preflow_demo_boost edmonds_karp_demo_boost preflow_demo_jacint preflow_demo_athos edmonds_karp_demo_alpar preflow_demo_leda 15 15 … … 47 47 # $(CXX3) $(CXXFLAGS) -pg -o edmonds_karp_demo_prof edmonds_karp_demo.cc 48 48 49 gw_vs_not: 50 $(CXX3) $(CXXFLAGS) -o gw_vs_not gw_vs_not.cc 51 49 52 lg_vs_sg: 50 53 $(CXX3) $(CXXFLAGS) -g -I. -I.. -o lg_vs_sg lg_vs_sg.cc
Note: See TracChangeset
for help on using the changeset viewer.