3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 12:07:52 +00:00
This commit is contained in:
Jakob Rath 2022-07-21 11:57:27 +02:00
parent 8d871bf8b5
commit d4592f2abf
5 changed files with 32 additions and 34 deletions

View file

@ -150,7 +150,7 @@ namespace polysat {
// b ≠ 0 ==> r < b
// b = 0 ==> q = -1
add_eq(a, b * q + r);
add_noovfl(b, q);
add_umul_noovfl(b, q);
add_ule(r, b*q+r);
auto c_eq = eq(b);