1.1 --- a/src/work/jacint/preflow.cc Thu Apr 22 15:56:05 2004 +0000
1.2 +++ b/src/work/jacint/preflow.cc Thu Apr 22 15:58:08 2004 +0000
1.3 @@ -32,10 +32,10 @@
1.4 std::cout << "preflow demo ..." << std::endl;
1.5
1.6 Graph::EdgeMap<int> flow2(G);
1.7 - Preflow<Graph, int> max_flow_test2(G, s, t, cap, flow, 1,0);
1.8 + Preflow<Graph, int> max_flow_test2(G, s, t, cap, flow2, 1,0);
1.9 ts.reset();
1.10 max_flow_test2.run();
1.11 - std::cout << "elapsed time: " << ts << std::endl;
1.12 + std::cout << "elapsed time without res: " << ts << std::endl;
1.13
1.14 Graph::NodeMap<bool> cut(G);
1.15 max_flow_test.minCut(cut);