diff -r 0dade87d013b -r 7ac0d4e8a31c src/work/marci/edmonds_karp_demo.cc --- a/src/work/marci/edmonds_karp_demo.cc Thu Apr 15 08:06:43 2004 +0000 +++ b/src/work/marci/edmonds_karp_demo.cc Thu Apr 15 14:41:20 2004 +0000 @@ -104,7 +104,7 @@ ts.reset(); MaxFlow, Graph::EdgeMap > - max_flow_test(G, s, t, flow, cap); + max_flow_test(G, s, t, cap, flow); int i=0; while (max_flow_test.augmentOnBlockingFlow()) { // for(EdgeIt e=G.template first(); e.valid(); ++e) { @@ -132,7 +132,7 @@ ts.reset(); MaxFlow, Graph::EdgeMap > - max_flow_test(G, s, t, flow, cap); + max_flow_test(G, s, t, cap, flow); int i=0; while (max_flow_test.augmentOnBlockingFlow1()) { // for(EdgeIt e=G.template first(); e.valid(); ++e) { @@ -160,7 +160,7 @@ ts.reset(); MaxFlow, Graph::EdgeMap > - max_flow_test(G, s, t, flow, cap); + max_flow_test(G, s, t, cap, flow); int i=0; while (max_flow_test.augmentOnBlockingFlow2()) { // for(EdgeIt e=G.template first(); e.valid(); ++e) { @@ -188,7 +188,7 @@ ts.reset(); MaxFlow, Graph::EdgeMap > - max_flow_test(G, s, t, flow, cap); + max_flow_test(G, s, t, cap, flow); int i=0; while (max_flow_test.augmentOnShortestPath()) { // for(EdgeIt e=G.template first(); e.valid(); ++e) {