3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

relax an assertion in int_solver::patcher

This commit is contained in:
Lev Nachmanson 2023-07-16 11:55:42 -10:00
parent 305c1c1dc2
commit fd5902f76e
4 changed files with 1215 additions and 7 deletions

View file

@ -1019,7 +1019,7 @@ namespace lp {
SASSERT(get_status() == lp_status::OPTIMAL || get_status() == lp_status::FEASIBLE);
SASSERT(m_columns_with_changed_bounds.empty());
numeric_pair<mpq> const& rp = get_column_value(j);
return rp.x + m_delta * rp.y;
return from_model_in_impq_to_mpq(rp);
}
mpq lar_solver::get_tv_value(tv const& t) const {