mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +00:00
fix proof for extended GCD rule
This commit is contained in:
parent
caa616f11b
commit
13a3bdd7a3
|
@ -777,8 +777,8 @@ namespace smt {
|
|||
// u += ncoeff * lower_bound(v).get_rational();
|
||||
u.addmul(ncoeff, lower_bound(v).get_rational());
|
||||
}
|
||||
lower(v)->push_justification(ante, numeral::zero(), coeffs_enabled());
|
||||
upper(v)->push_justification(ante, numeral::zero(), coeffs_enabled());
|
||||
lower(v)->push_justification(ante, it->m_coeff, coeffs_enabled());
|
||||
upper(v)->push_justification(ante, it->m_coeff, coeffs_enabled());
|
||||
}
|
||||
else if (gcds.is_zero()) {
|
||||
gcds = abs_ncoeff;
|
||||
|
|
Loading…
Reference in a new issue