mirror of
https://github.com/Z3Prover/z3
synced 2026-06-23 00:50:29 +00:00
use expr based access to enodes to allow for storing first-class lambas
This commit is contained in:
parent
5f3088f3b5
commit
2cc4422018
54 changed files with 301 additions and 279 deletions
|
|
@ -239,8 +239,9 @@ namespace smt {
|
|||
return true;
|
||||
}
|
||||
|
||||
void theory_finite_set::relevant_eh(app* t) {
|
||||
add_immediate_axioms(t);
|
||||
void theory_finite_set::relevant_eh(expr* t) {
|
||||
if (is_app(t))
|
||||
add_immediate_axioms(to_app(t));
|
||||
}
|
||||
|
||||
void theory_finite_set::apply_sort_cnstr(enode* n, sort* s) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue