equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/test/unionfind_test.cc - Part of HUGOlib, a generic C++ optimization library |
2 * src/test/unionfind_test.cc - Part of LEMON, a generic C++ optimization library |
3 * |
3 * |
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
5 * (Egervary Combinatorial Optimization Research Group, EGRES). |
5 * (Egervary Combinatorial Optimization Research Group, EGRES). |
6 * |
6 * |
7 * Permission to use, modify and distribute this software is granted |
7 * Permission to use, modify and distribute this software is granted |
14 * |
14 * |
15 */ |
15 */ |
16 |
16 |
17 #include <iostream> |
17 #include <iostream> |
18 |
18 |
19 #include <hugo/maps.h> |
19 #include <lemon/maps.h> |
20 #include <hugo/unionfind.h> |
20 #include <lemon/unionfind.h> |
21 #include "test_tools.h" |
21 #include "test_tools.h" |
22 |
22 |
23 using namespace hugo; |
23 using namespace lemon; |
24 using namespace std; |
24 using namespace std; |
25 |
25 |
26 template <typename T> |
26 template <typename T> |
27 class BaseMap : public StdMap<int,T> {}; |
27 class BaseMap : public StdMap<int,T> {}; |
28 |
28 |