1.1 --- a/lemon/kruskal.h Wed Sep 06 11:17:12 2006 +0000
1.2 +++ b/lemon/kruskal.h Wed Sep 06 11:39:22 2006 +0000
1.3 @@ -24,8 +24,6 @@
1.4 #include <lemon/unionfind.h>
1.5 #include <lemon/bits/utility.h>
1.6 #include <lemon/bits/traits.h>
1.7 -#include <lemon/time_measure.h>
1.8 -#include <iostream>
1.9
1.10 ///\ingroup spantree
1.11 ///\file
1.12 @@ -119,7 +117,6 @@
1.13 typedef typename GR::template NodeMap<int> NodeIntMap;
1.14 typedef typename GR::Node Node;
1.15
1.16 - Timer timer;
1.17 NodeIntMap comp(g);
1.18 UnionFind<Node,NodeIntMap> uf(comp);
1.19 for (typename GR::NodeIt it(g); it != INVALID; ++it) {
1.20 @@ -138,7 +135,6 @@
1.21 out.set((*p).first, false);
1.22 }
1.23 }
1.24 - std::cout << timer << std::endl;
1.25 return tot_cost;
1.26 }
1.27