mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
change the return type of ival.var() to tv
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
119a491b17
commit
f5b62015fc
10 changed files with 57 additions and 56 deletions
|
@ -86,7 +86,7 @@ namespace lp {
|
|||
bool seen_minus = false;
|
||||
bool seen_plus = false;
|
||||
for(const auto & p : t) {
|
||||
if (!lia.column_is_int(p.var()))
|
||||
if (!lia.column_is_int(p.var().index()))
|
||||
goto usual_delta;
|
||||
const mpq & c = p.coeff();
|
||||
if (c == one_of_type<mpq>()) {
|
||||
|
@ -104,7 +104,7 @@ namespace lp {
|
|||
usual_delta:
|
||||
mpq delta = zero_of_type<mpq>();
|
||||
for (const auto & p : t)
|
||||
if (lia.column_is_int(p.var()))
|
||||
if (lia.column_is_int(p.var().index()))
|
||||
delta += abs(p.coeff());
|
||||
|
||||
delta *= mpq(1, 2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue