| 272 | |
| 273 | template <typename T1, typename T2> |
| 274 | void appendIf(const char *probe, T1 &&then, T2 &&els) { |
| 275 | tactics.appendIf(probe, std::move(then), std::move(els)); |
| 276 | } |
| 277 | |
| 278 | void add(Z3_ast ast) { goal.add(ast); } |
| 279 | void reset_solver() { goal.reset(); } |