()
| 43 | NUM_LOOPS = 1000 |
| 44 | |
| 45 | def read_set(): |
| 46 | barrier.wait() |
| 47 | while not done.is_set(): |
| 48 | for i in range(self.SET_SIZE): |
| 49 | item = i >> 1 |
| 50 | result = item in s |
| 51 | |
| 52 | def mutate_set(): |
| 53 | barrier.wait() |
nothing calls this directly
no test coverage detected