mirror of
https://github.com/Z3Prover/z3
synced 2025-08-07 11:41:22 +00:00
reduce hash table lookups in expr_abstract in half
This commit is contained in:
parent
a6e59ea45e
commit
6f24123f0c
2 changed files with 8 additions and 10 deletions
|
@ -39,6 +39,3 @@ expr_ref mk_forall(ast_manager& m, unsigned num_bound, app* const* bound, expr*
|
|||
expr_ref mk_exists(ast_manager& m, unsigned num_bound, app* const* bound, expr* n);
|
||||
inline expr_ref mk_forall(ast_manager& m, app* b, expr* n) { return mk_forall(m, 1, &b, n); }
|
||||
inline expr_ref mk_forall(ast_manager& m, expr* b, expr* n) { return mk_forall(m, to_app(b), n); }
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue