mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +00:00
bugfix for hwf::fma
This commit is contained in:
parent
705ace6f0a
commit
759d9f2dda
|
@ -315,11 +315,8 @@ void hwf_manager::fma(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf co
|
|||
set_rounding_mode(rm);
|
||||
o.value = x.value * y.value + z.value;
|
||||
#else
|
||||
// NOT_IMPLEMENTED_YET();
|
||||
// Just a dummy for now:
|
||||
hwf t;
|
||||
mul(rm, x, y, t);
|
||||
add(rm, t, z, o);
|
||||
set_rounding_mode(rm);
|
||||
o.value = ::fma(x.value, y.value, z.value);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue