3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-08-03 09:39:19 -07:00
parent bc8fa67afc
commit 52f8eb21fb

View file

@ -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) {