Set to the initial state (no tracker).
(self)
| 152 | self.seeds_ = set() |
| 153 | |
| 154 | def reset(self): |
| 155 | """Set to the initial state (no tracker).""" |
| 156 | self.states_ = {} |
| 157 | self.seeds_ = set() |
| 158 | |
| 159 | def get_states(self): |
| 160 | """Get rng states. Copy the dictionary so we have direct |
no outgoing calls
no test coverage detected