3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 00:55:31 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-01-13 12:19:54 -08:00
parent 366cd9b16d
commit 4b6679e8e0
2 changed files with 43 additions and 13 deletions

View file

@ -62,6 +62,8 @@ public:
void operator()(expr_ref& fml, proof_ref& pr);
void operator()(expr* fml, expr_ref& result, proof_ref& pr) { result = fml; (*this)(result, pr); }
void operator()(expr_ref& fml) { proof_ref pr(fml.m()); (*this)(fml, pr); }
};
tactic * mk_qe_lite_tactic(ast_manager & m, params_ref const & p = params_ref());