equal
deleted
inserted
replaced
11 |
11 |
12 #include <vector> |
12 #include <vector> |
13 //#include <map> |
13 //#include <map> |
14 |
14 |
15 |
15 |
16 namespace hugo { |
16 namespace lemon { |
17 |
17 |
18 template <typename KeyType, typename KeyIntMap> |
18 template <typename KeyType, typename KeyIntMap> |
19 class UnionFind { |
19 class UnionFind { |
20 KeyIntMap& pointmap; |
20 KeyIntMap& pointmap; |
21 struct VectorElementType { |
21 struct VectorElementType { |
88 mergeInto(b1,b2); |
88 mergeInto(b1,b2); |
89 } |
89 } |
90 }//unio |
90 }//unio |
91 }; |
91 }; |
92 |
92 |
93 }//namespace hugo |
93 }//namespace lemon |
94 #endif |
94 #endif |