| 78 | void flip(uint8_t pos) { occupation ^= uint64_t{1} << (pos); } |
| 79 | |
| 80 | bool test(uint8_t pos) const { return occupation & (uint64_t{1} << pos); } |
| 81 | |
| 82 | int num_set_until(uint8_t pos) const { |
| 83 | return HighsHashHelpers::popcnt(occupation >> pos); |
no outgoing calls
no test coverage detected