3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00
This commit is contained in:
Christoph M. Wintersteiger 2016-05-14 14:29:13 +01:00
parent 0ddf2d92fe
commit 3fde81aea6

View file

@ -1428,7 +1428,7 @@ void mpf_manager::rem(mpf const & x, mpf const & y, mpf & o) {
const mpf_exp_t B = x.sbits;
mpf_exp_t D;
do {
if (ST0.exponent() < (ST1.exponent()) - 1) {
if (ST0.exponent() < ST1.exponent() - 1) {
D = 0;
}
else {