3
0
Fork 0
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:
Christoph M. Wintersteiger 2015-09-10 11:37:06 +01:00
parent 44105b7aeb
commit 25f75b60fe
3 changed files with 16 additions and 7 deletions

View file

@ -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);