3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 01:24:08 +00:00

avoid crash from #4772

To take care of "When I use options fp.xform.slice=false fp.xform.inline_eager=false Z3 actually seg-faults."
This commit is contained in:
Nikolaj Bjorner 2020-11-27 14:41:28 -08:00
parent 67a8492bd0
commit 35900ee8ea

View file

@ -451,10 +451,12 @@ expr_ref model::cleanup_expr(top_sort& ts, expr* e, unsigned current_partition)
// only expand auxiliary definitions that occur once.
if (can_inline_def(ts, f)) {
fi = get_func_interp(f);
if (fi) {
new_t = fi->get_array_interp(f);
TRACE("model", tout << "array interpretation:" << new_t << "\n";);
}
}
}
if (new_t) {
// noop