| 47 | n(n0) {} |
| 48 | |
| 49 | forceinline bool |
| 50 | SymBitMatrix::get(int x, int y) const { |
| 51 | assert(x != y); |
| 52 | if (x > y) std::swap(x,y); |
| 53 | return Support::BitSet<Region>::get(static_cast<unsigned int>(pos(x,y))); |
| 54 | } |
| 55 | |
| 56 | forceinline void |
| 57 | SymBitMatrix::set(int x, int y) { |