3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-13 14:40:55 +00:00

use u_dependency in eprime_pair

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2024-09-04 10:57:41 -07:00 committed by Lev Nachmanson
parent 1408fe60ab
commit 5db46c1d81
4 changed files with 43 additions and 20 deletions

View file

@ -300,7 +300,7 @@ private:
int a_sign = is_pos(a) ? 1 : -1;
int sign = j_sign * a_sign;
u_dependency* witness = sign > 0 ? lar->get_column_upper_bound_witness(j) : lar->get_column_lower_bound_witness(j);
ret = lar->join_deps(ret, witness);
ret = lar->mk_join(ret, witness);
}
return ret;
};