3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-19 09:40:20 +00:00

add demodulator simplifier

refactor demodulator-rewriter a bit to separate reusable features.
This commit is contained in:
Nikolaj Bjorner 2022-12-04 09:39:28 -08:00
parent 9acbfa3923
commit 1974c224ab
8 changed files with 624 additions and 155 deletions

View file

@ -52,6 +52,7 @@ public:
expr_ref mk_app(func_decl* f, unsigned num_args, expr* const* args);
expr_ref mk_app(func_decl* f, ptr_vector<expr> const& args) { return mk_app(f, args.size(), args.data()); }
expr_ref mk_app(func_decl* f, expr_ref_vector const& args) { return mk_app(f, args.size(), args.data()); }
expr_ref mk_eq(expr* a, expr* b);
bool reduce_quantifier(quantifier * old_q,