mirror of
https://github.com/Z3Prover/z3
synced 2025-08-04 02:10:23 +00:00
add context::internalize() API that takes multiple expressions at once (#4488)
This commit is contained in:
parent
e634f2987c
commit
e079af9d0d
5 changed files with 60 additions and 49 deletions
|
@ -398,7 +398,7 @@ namespace smt {
|
|||
if (!is_default(n) && !is_select(n) && !is_map(n) && !is_const(n) && !is_as_array(n)){
|
||||
return;
|
||||
}
|
||||
if (!ctx.e_internalized(n)) ctx.internalize(n, false);;
|
||||
ctx.ensure_internalized(n);
|
||||
enode* node = ctx.get_enode(n);
|
||||
if (is_select(n)) {
|
||||
enode * arg = ctx.get_enode(n->get_arg(0));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue