Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner authored and hgvk94 committed Mar 27, 2023
1 parent 29520a1 commit 7fc614f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ast/simplifiers/elim_unconstrained.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ void elim_unconstrained::freeze(expr* t) {
if (!n.m_term)
return;
n.m_refcount = UINT_MAX / 2;
m_heap.increased(root(t));
if (m_heap.contains(root(t)))
m_heap.increased(root(t));
}

void elim_unconstrained::gc(expr* t) {
Expand Down

0 comments on commit 7fc614f

Please sign in to comment.