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 committed Aug 3, 2024
1 parent d6040ee commit bc8fa67
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/smt/smt_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1117,6 +1117,8 @@ 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()))
return true;
context * _this = const_cast<context*>(this);
if (!m_is_diseq_tmp) {
app * eq = m.mk_eq(n1->get_expr(), n2->get_expr());
Expand Down

0 comments on commit bc8fa67

Please sign in to comment.