mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 14:13:23 +00:00
partial fix to make computed term integer well-formed for solve_for functionality
This commit is contained in:
parent
bcb61ee12c
commit
1ab0962d43
2 changed files with 14 additions and 0 deletions
|
@ -619,6 +619,7 @@ namespace lp {
|
||||||
|
|
||||||
bool lar_solver::solve_for(unsigned j, lar_term& t, mpq& coeff) {
|
bool lar_solver::solve_for(unsigned j, lar_term& t, mpq& coeff) {
|
||||||
t.clear();
|
t.clear();
|
||||||
|
IF_VERBOSE(10, verbose_stream() << column_is_fixed(j) << " " << is_base(j) << "\n");
|
||||||
if (column_is_fixed(j)) {
|
if (column_is_fixed(j)) {
|
||||||
coeff = get_value(j);
|
coeff = get_value(j);
|
||||||
return true;
|
return true;
|
||||||
|
@ -626,6 +627,7 @@ namespace lp {
|
||||||
if (!is_base(j)) {
|
if (!is_base(j)) {
|
||||||
for (const auto & c : A_r().m_columns[j]) {
|
for (const auto & c : A_r().m_columns[j]) {
|
||||||
lpvar basic_in_row = r_basis()[c.var()];
|
lpvar basic_in_row = r_basis()[c.var()];
|
||||||
|
IF_VERBOSE(10, verbose_stream() << "c.var() = " << c.var() << " basic_in_row = " << basic_in_row << "\n");
|
||||||
pivot(j, basic_in_row);
|
pivot(j, basic_in_row);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3638,9 +3638,21 @@ public:
|
||||||
rational coeff;
|
rational coeff;
|
||||||
if (!lp().solve_for(vi, t, coeff))
|
if (!lp().solve_for(vi, t, coeff))
|
||||||
return false;
|
return false;
|
||||||
|
rational lc(1);
|
||||||
|
if (is_int(v)) {
|
||||||
|
lc = denominator(coeff);
|
||||||
|
for (auto const& cv : t)
|
||||||
|
lc = lcm(denominator(cv.coeff()), lc);
|
||||||
|
if (lc != 1) {
|
||||||
|
coeff *= lc;
|
||||||
|
t *= lc;
|
||||||
|
}
|
||||||
|
}
|
||||||
term = mk_term(t, is_int(v));
|
term = mk_term(t, is_int(v));
|
||||||
if (coeff != 0)
|
if (coeff != 0)
|
||||||
term = a.mk_add(a.mk_numeral(coeff, is_int(v)), term);
|
term = a.mk_add(a.mk_numeral(coeff, is_int(v)), term);
|
||||||
|
if (lc != 1)
|
||||||
|
term = a.mk_idiv(term, a.mk_numeral(lc, true));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue