3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-26 02:20:58 +00:00

set the auf flag to false in all cases

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-06-24 20:38:15 -07:00
parent 6cc995afef
commit 6fd303c4b9

View file

@ -1413,6 +1413,8 @@ namespace smt {
// add other possible relevant functions such as equality over srt, Boolean operators
ast_mark visited;
tn.add_production(m.mk_true());
tn.add_production(m.mk_false());
for (enode *n : ctx->enodes()) {
if (!ctx->is_relevant(n))
continue;
@ -2187,9 +2189,7 @@ namespace smt {
if (m_array_util.is_array(curr)) {
insert_qinfo(alloc(ho_var, m, to_var(curr)->get_idx()));
}
else {
m_info->m_is_auf = false; // unexpected occurrence of variable.
}
m_info->m_is_auf = false;
}
else {
SASSERT(is_lambda(curr));