Clean the state of the solver
(&self)
| 288 | |
| 289 | /// Clean the state of the solver |
| 290 | pub fn reset(&self) { |
| 291 | unsafe { |
| 292 | let _guard = Z3_MUTEX.lock().unwrap(); |
| 293 | z3_sys::Z3_solver_reset(self.z3_context, self.z3_solver); |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | // The following are private |
| 298 |
no outgoing calls
no test coverage detected