# HG changeset patch # User jacint # Date 1082649488 0 # Node ID d9a58896ab431415cb66572dc0ba1a2d413fcdb1 # Parent 0fc9cd9b854a24c3853e13488cfbe29305f5e0e1 diff -r 0fc9cd9b854a -r d9a58896ab43 src/work/jacint/preflow.cc --- a/src/work/jacint/preflow.cc Thu Apr 22 15:56:05 2004 +0000 +++ b/src/work/jacint/preflow.cc Thu Apr 22 15:58:08 2004 +0000 @@ -32,10 +32,10 @@ std::cout << "preflow demo ..." << std::endl; Graph::EdgeMap flow2(G); - Preflow max_flow_test2(G, s, t, cap, flow, 1,0); + Preflow max_flow_test2(G, s, t, cap, flow2, 1,0); ts.reset(); max_flow_test2.run(); - std::cout << "elapsed time: " << ts << std::endl; + std::cout << "elapsed time without res: " << ts << std::endl; Graph::NodeMap cut(G); max_flow_test.minCut(cut);