mirror of
https://github.com/Z3Prover/z3
synced 2025-09-07 18:21:23 +00:00
add destructive equality resolution to existentials
This commit is contained in:
parent
7da91f4313
commit
ba68652c72
2 changed files with 72 additions and 23 deletions
|
@ -131,7 +131,7 @@ class der {
|
|||
ptr_vector<var> m_inx2var;
|
||||
unsigned_vector m_order;
|
||||
expr_ref_vector m_subst_map;
|
||||
expr_ref_buffer m_new_args;
|
||||
expr_ref_vector m_new_args;
|
||||
|
||||
/**
|
||||
\brief Return true if e can be viewed as a variable disequality.
|
||||
|
@ -145,9 +145,11 @@ class der {
|
|||
*/
|
||||
bool is_var_diseq(expr * e, unsigned num_decls, var *& v, expr_ref & t);
|
||||
|
||||
bool is_var_eq(expr* e, unsigned num_decls, var*& v, expr_ref& t);
|
||||
|
||||
void get_elimination_order();
|
||||
void create_substitution(unsigned sz);
|
||||
void apply_substitution(quantifier * q, expr_ref_vector& ors, expr_ref & r);
|
||||
void apply_substitution(quantifier * q, expr_ref_vector& lits, bool is_or, expr_ref & r);
|
||||
|
||||
void reduce1(quantifier * q, expr_ref & r, proof_ref & pr);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue