diff -r c20b0eb92a33 -r c3ff11b0025c lemon/kruskal.h --- a/lemon/kruskal.h Wed Sep 06 11:17:12 2006 +0000 +++ b/lemon/kruskal.h Wed Sep 06 11:39:22 2006 +0000 @@ -24,8 +24,6 @@ #include #include #include -#include -#include ///\ingroup spantree ///\file @@ -119,7 +117,6 @@ typedef typename GR::template NodeMap NodeIntMap; typedef typename GR::Node Node; - Timer timer; NodeIntMap comp(g); UnionFind 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; }