| 211 | } |
| 212 | |
| 213 | forceinline bool |
| 214 | TupleSet::operator ==(const TupleSet& t) const { |
| 215 | if (tuples() != t.tuples()) |
| 216 | return false; |
| 217 | if (arity() != t.arity()) |
| 218 | return false; |
| 219 | if (min() != t.min()) |
| 220 | return false; |
| 221 | if (max() != t.max()) |
| 222 | return false; |
| 223 | return equal(t); |
| 224 | } |
| 225 | |
| 226 | forceinline std::size_t |
| 227 | TupleSet::hash(void) const { |