Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Aug 3, 2024
1 parent bc8fa67 commit 52f8eb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smt/smt_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1117,7 +1117,7 @@ namespace smt {
*/
bool context::is_diseq(enode * n1, enode * n2) const {
SASSERT(n1->get_sort() == n2->get_sort());
if (m.are_distinct(n1->get_expr(), n2->get_expr()))
if (m.are_distinct(n1->get_root()->get_expr(), n2->get_root()->get_expr()))
return true;
context * _this = const_cast<context*>(this);
if (!m_is_diseq_tmp) {
Expand Down

0 comments on commit 52f8eb2

Please sign in to comment.