mirror of
https://github.com/Z3Prover/z3
synced 2026-06-12 11:55:37 +00:00
add shortcuts in rewriter, eliminate redundancies in dependent_expr tactic
This commit is contained in:
parent
bfae8b2162
commit
9845c33236
5 changed files with 50 additions and 25 deletions
|
|
@ -51,6 +51,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_eq(expr* a, expr* b);
|
||||
|
||||
bool reduce_quantifier(quantifier * old_q,
|
||||
expr * new_body,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue