[Lemon-commits] [lemon_svn] jacint: r505 - hugo/trunk/src/work/jacint

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:39:49 CET 2006


Author: jacint
Date: Thu Apr 22 17:58:08 2004
New Revision: 505

Modified:
   hugo/trunk/src/work/jacint/preflow.cc

Log:


Modified: hugo/trunk/src/work/jacint/preflow.cc
==============================================================================
--- hugo/trunk/src/work/jacint/preflow.cc	(original)
+++ hugo/trunk/src/work/jacint/preflow.cc	Thu Apr 22 17:58:08 2004
@@ -32,10 +32,10 @@
   std::cout << "preflow demo ..." << std::endl;
   
   Graph::EdgeMap<int> flow2(G);
-  Preflow<Graph, int> max_flow_test2(G, s, t, cap, flow, 1,0);
+  Preflow<Graph, int> 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<bool> cut(G);
   max_flow_test.minCut(cut); 



More information about the Lemon-commits mailing list