diff -r 91fb4372688f -r 02f4d5d9bfd7 test/kruskal_test.cc --- a/test/kruskal_test.cc Sun Jun 15 22:03:33 2008 +0200 +++ b/test/kruskal_test.cc Sun Jun 15 22:05:23 2008 +0200 @@ -28,7 +28,6 @@ #include #include - using namespace std; using namespace lemon; @@ -57,7 +56,6 @@ kruskal(g, r, ws.begin()); kruskal(ug, ur, uws.begin()); - } int main() { @@ -97,7 +95,7 @@ //Test with const map. check(kruskal(G, ConstMap(2), tree_map)==10, "Total cost should be 10"); - //Test with a edge map (filled with uniform costs). + //Test with an edge map (filled with uniform costs). check(kruskal(G, edge_cost_map, tree_map)==10, "Total cost should be 10");