mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
parent
901d8a9f5b
commit
31e78cd178
2 changed files with 8 additions and 8 deletions
|
@ -1099,10 +1099,10 @@ void mpf_manager::rem(mpf const & x, mpf const & y, mpf & o) {
|
|||
mk_nan(x.ebits, x.sbits, o);
|
||||
else if (is_inf(y))
|
||||
set(o, x);
|
||||
else if (is_zero(x))
|
||||
set(o, x);
|
||||
else if (is_zero(y))
|
||||
mk_nan(x.ebits, x.sbits, o);
|
||||
else if (is_zero(x))
|
||||
set(o, x);
|
||||
else {
|
||||
o.ebits = x.ebits;
|
||||
o.sbits = x.sbits;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue