Skip to content

Commit

Permalink
fix #6488
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Dec 12, 2022
1 parent a3e6885 commit 4598af7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ast/simplifiers/elim_unconstrained.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,8 @@ void elim_unconstrained::freeze(expr* t) {
return;
if (m_nodes.size() <= t->get_id())
return;
if (m_nodes.size() <= root(t))
return;
node& n = get_node(t);
if (!n.m_term)
return;
Expand Down

0 comments on commit 4598af7

Please sign in to comment.