3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-10 16:12:03 +00:00

beta redex check is used in array theory to filter out safe as-arrays

This commit is contained in:
Nikolaj Bjorner 2022-09-11 05:44:11 -07:00
parent 3900c03b72
commit 7a55bd5687
2 changed files with 5 additions and 3 deletions

View file

@ -777,8 +777,6 @@ namespace smt {
bool has_lambda();
bool is_beta_redex(enode* p, enode* n) const;
void internalize_lambda(quantifier * q);
void internalize_formula_core(app * n, bool gate_ctx);
@ -1035,6 +1033,8 @@ namespace smt {
bool is_shared(enode * n) const;
bool is_beta_redex(enode* p, enode* n) const;
void assign_eq(enode * lhs, enode * rhs, eq_justification const & js) {
push_eq(lhs, rhs, js);
}