3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00
regressions from changes inside math/lp/int_solver
This commit is contained in:
Nikolaj Bjorner 2023-11-13 14:28:03 -08:00
parent 3de5af3cb0
commit 8a4e857294
2 changed files with 16 additions and 7 deletions

View file

@ -323,6 +323,10 @@ namespace arith {
return false;
theory_var uv = lp().local_to_external(u); // variables that are returned should have external representations
theory_var vv = lp().local_to_external(v); // so maybe better to have them already transformed to external form
if (uv == euf::null_theory_var)
return false;
if (vv == euf::null_theory_var)
return false;
if (is_equal(uv, vv))
return false;
enode* n1 = var2enode(uv);