3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-04 22:35:45 +00:00

revert my mess with the ast hashtable

will share results form the experiments later
This commit is contained in:
Nuno Lopes 2021-02-17 14:29:07 +00:00
parent 4f9117a921
commit bcad4d9435
4 changed files with 6 additions and 4 deletions

View file

@ -1667,6 +1667,8 @@ public:
bool are_equal(expr * a, expr * b) const;
bool are_distinct(expr * a, expr * b) const;
bool contains(ast * a) const { return m_ast_table.contains(a); }
bool is_lambda_def(quantifier* q) const { return q->get_qid() == m_lambda_def; }
void add_lambda_def(func_decl* f, quantifier* q);