3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 17:45:32 +00:00

no need to handle both x=y and y=x

This commit is contained in:
Jakob Rath 2023-07-20 14:54:21 +02:00
parent 73757e3fa4
commit ec4be975ee

View file

@ -769,6 +769,9 @@ namespace polysat {
// m_disequality_conflict = n;
}
}
// without this check, when p = x - y we would handle both x = y and y = x separately
if (body.is_unary())
break;
}
}