Skip to content

Commit 7e4a1f2

Browse files
fix crash in elim_constr2
1 parent 93cf989 commit 7e4a1f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ast/simplifiers/elim_unconstrained.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ elim_unconstrained::node& elim_unconstrained::get_node(expr* t) {
243243
node& ch = get_node(arg);
244244
SASSERT(ch.is_root());
245245
ch.add_parent(*n);
246-
if (is_uninterp_const(arg))
246+
if (is_uninterp_const(arg) && m_heap.contains(arg->get_id()))
247247
m_heap.increased(arg->get_id());
248248
}
249249
}

0 commit comments

Comments
 (0)