| 75 | |
| 76 | template<typename ValueType> |
| 77 | bool ContiguousDisjointSet<ValueType>::sameSubset(value_type const _x, value_type const _y) const |
| 78 | { |
| 79 | return find(_x) == find(_y); |
| 80 | } |
| 81 | |
| 82 | template<typename ValueType> |
| 83 | typename ContiguousDisjointSet<ValueType>::size_type ContiguousDisjointSet<ValueType>::sizeOfSubset(value_type const _x) const |
no outgoing calls
no test coverage detected