3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 05:18:44 +00:00

Naming consistency

This commit is contained in:
Christoph M. Wintersteiger 2015-05-22 11:39:08 +01:00
parent 8a34bd2bf1
commit 705ace6f0a
2 changed files with 2 additions and 2 deletions

View file

@ -306,7 +306,7 @@ void hwf_manager::div(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf &
#pragma fp_contract(on)
#endif
void hwf_manager::fused_mul_add(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf const &z, hwf & o) {
void hwf_manager::fma(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf const &z, hwf & o) {
// CMW: fused_mul_add is not available on most CPUs. As of 2012, only Itanium,
// Intel Sandybridge and AMD Bulldozers support that (via AVX).

View file

@ -105,7 +105,7 @@ public:
void mul(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf & o);
void div(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf & o);
void fused_mul_add(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf const &z, hwf & o);
void fma(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf const &z, hwf & o);
void sqrt(mpf_rounding_mode rm, hwf const & x, hwf & o);