[Lemon-commits] [lemon_svn] deba: r2931 - hugo/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 21:51:19 CET 2006


Author: deba
Date: Wed Sep  6 13:39:22 2006
New Revision: 2931

Modified:
   hugo/trunk/lemon/kruskal.h

Log:
I forgot to remove the benchmarking part of code



Modified: hugo/trunk/lemon/kruskal.h
==============================================================================
--- hugo/trunk/lemon/kruskal.h	(original)
+++ hugo/trunk/lemon/kruskal.h	Wed Sep  6 13:39:22 2006
@@ -24,8 +24,6 @@
 #include <lemon/unionfind.h>
 #include <lemon/bits/utility.h>
 #include <lemon/bits/traits.h>
-#include <lemon/time_measure.h>
-#include <iostream>
 
 ///\ingroup spantree
 ///\file
@@ -119,7 +117,6 @@
     typedef typename GR::template NodeMap<int> NodeIntMap;
     typedef typename GR::Node Node;
 
-    Timer timer;
     NodeIntMap comp(g);
     UnionFind<Node,NodeIntMap> uf(comp);
     for (typename GR::NodeIt it(g); it != INVALID; ++it) {
@@ -138,7 +135,6 @@
 	out.set((*p).first, false);
       }
     }
-    std::cout << timer << std::endl;
     return tot_cost;
   }
 



More information about the Lemon-commits mailing list