Sets the current solver used by the current engine for SMT variable declaration.
| 48 | /// Sets the current solver used by the current engine for |
| 49 | /// SMT variable declaration. |
| 50 | void setSolver(smtutil::SolverInterface* _solver) |
| 51 | { |
| 52 | solAssert(_solver, ""); |
| 53 | m_solver = _solver; |
| 54 | } |
| 55 | |
| 56 | /// Sets whether the context should conjoin assertions in the assertion stack. |
| 57 | void setAssertionAccumulation(bool _acc) { m_accumulateAssertions = _acc; } |
no outgoing calls
no test coverage detected