mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
parent
df8b14d77c
commit
c13e3ce693
|
@ -519,10 +519,10 @@ bool int_solver::shift_var(unsigned j, unsigned range) {
|
|||
if (is_fixed(j) || is_base(j))
|
||||
return false;
|
||||
|
||||
bool inf_l, inf_u;
|
||||
bool inf_l = false, inf_u = false;
|
||||
impq l, u;
|
||||
mpq m;
|
||||
get_freedom_interval_for_column(j, inf_l, l, inf_u, u, m);
|
||||
VERIFY(get_freedom_interval_for_column(j, inf_l, l, inf_u, u, m));
|
||||
const impq & x = get_value(j);
|
||||
// x, the value of j column, might be shifted on a multiple of m
|
||||
if (inf_l && inf_u) {
|
||||
|
|
Loading…
Reference in a new issue