mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
check for integrality when adding an equality
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
c4fbe05a96
commit
115ae8fe14
|
@ -356,6 +356,7 @@ public:
|
|||
if (table.find(val(v), k)) {
|
||||
TRACE("cheap_eq", tout << "found k " ; k->print(tout) << "\n";);
|
||||
if (k->column() != v->column() &&
|
||||
is_int(k->column()) == is_int(v->column()) &&
|
||||
!is_equal(k->column(), v->column()))
|
||||
report_eq(k, v);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue