Skip to content

Commit

Permalink
bug fix for equality solving
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Nov 13, 2022
1 parent ce76e31 commit 196788a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ast/simplifiers/elim_unconstrained.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ void elim_unconstrained::eliminate() {
m_args.reset();
for (expr* arg : *to_app(t))
m_args.push_back(get_node(arg).m_term);
if (!m_inverter(t->get_decl(), m_args.size(), m_args.data(), r, side_cond))
if (!m_inverter(t->get_decl(), m_args.size(), m_args.data(), r, side_cond))
continue;

SASSERT(r->get_sort() == t->get_sort());
m_stats.m_num_eliminated++;
n.m_refcount = 0;
SASSERT(r);
Expand Down

0 comments on commit 196788a

Please sign in to comment.