mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
follow on fix from #5528
the same bug is also undetected in the main solver
This commit is contained in:
parent
6907d30717
commit
968717a532
|
@ -807,10 +807,10 @@ class theory_lra::imp {
|
|||
return st.vars()[0];
|
||||
}
|
||||
else if (is_one(st) && a.is_numeral(term)) {
|
||||
return get_one(a.is_int(term));
|
||||
return lp().local_to_external(get_one(a.is_int(term)));
|
||||
}
|
||||
else if (is_zero(st) && a.is_numeral(term)) {
|
||||
return get_zero(a.is_int(term));
|
||||
return lp().local_to_external(get_zero(a.is_int(term)));
|
||||
}
|
||||
else {
|
||||
init_left_side(st);
|
||||
|
|
Loading…
Reference in a new issue