mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
parent
3de5af3cb0
commit
8a4e857294
2 changed files with 16 additions and 7 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue