mirror of
https://github.com/Z3Prover/z3
synced 2025-08-08 04:01:22 +00:00
Bugfix for fp.mul and fp.fma for small numbers of e/s bits.
Fixes #215.
This commit is contained in:
parent
44105b7aeb
commit
25f75b60fe
3 changed files with 16 additions and 7 deletions
|
@ -121,7 +121,7 @@ public:
|
|||
void mul(mpf_rounding_mode rm, mpf const & x, mpf const & y, mpf & o);
|
||||
void div(mpf_rounding_mode rm, mpf const & x, mpf const & y, mpf & o);
|
||||
|
||||
void fused_mul_add(mpf_rounding_mode rm, mpf const & x, mpf const & y, mpf const &z, mpf & o);
|
||||
void fma(mpf_rounding_mode rm, mpf const & x, mpf const & y, mpf const &z, mpf & o);
|
||||
|
||||
void sqrt(mpf_rounding_mode rm, mpf const & x, mpf & o);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue