gmpy2.fmma(x, y, z, t, /) → [mpfr](https://gmpy2.readthedocs.io/en/latest/mpfr.html#gmpy2.mpfr)[](https://gmpy2.readthedocs.io/en/latest/mpfr.html#gmpy2.fmma)
Return correctly rounded result of (x * y) + (z + t).
But in mpfr, fmma(a,b,c,d) means a*b+c*d. Does gmpy2 really have a different definition?
The docs say:
But in mpfr, fmma(a,b,c,d) means
a*b+c*d
. Does gmpy2 really have a different definition?