(int[] bitset, int c)
| 81 | } |
| 82 | |
| 83 | private boolean exists(int[] bitset, int c) { |
| 84 | int q = c >> 5; |
| 85 | int r = c & 0x1f; |
| 86 | return (bitset[q] & (1 << r)) != 0x00; |
| 87 | } |
| 88 | |
| 89 | private void setBit(int[] bitset, int c) { |
| 90 | int q = c >> 5; |
no outgoing calls
no test coverage detected