mpfr_libmpfr_fmms Method |
Namespace: Math.Mpfr.Native
public static int mpfr_fmms( mpfr_t rop, mpfr_t op1, mpfr_t op2, mpfr_t op3, mpfr_t op4, mpfr_rnd_t rnd )
In case the computation of op1 × op2 overflows or underflows (or that of op3 × op4), the result rop is computed as if the two intermediate products were computed with rounding toward zero.
// Create, initialize, and set a new floating-point number op1 to -210. mpfr_t op1 = new mpfr_t(); mpfr_lib.mpfr_init2(op1, 64U); Assert.IsTrue(mpfr_lib.mpfr_set_si(op1, -210, mpfr_rnd_t.MPFR_RNDN) == 0); // Create, initialize, and set a new floating-point number op2 to 10. mpfr_t op2 = new mpfr_t(); mpfr_lib.mpfr_init2(op2, 64U); Assert.IsTrue(mpfr_lib.mpfr_set_si(op2, 10, mpfr_rnd_t.MPFR_RNDN) == 0); // Create, initialize, and set a new floating-point number op3 to 10. mpfr_t op3 = new mpfr_t(); mpfr_lib.mpfr_init2(op3, 64U); Assert.IsTrue(mpfr_lib.mpfr_set_si(op3, 10, mpfr_rnd_t.MPFR_RNDN) == 0); // Create, initialize, and set a new floating-point number op4 to 10. mpfr_t op4 = new mpfr_t(); mpfr_lib.mpfr_init2(op4, 64U); Assert.IsTrue(mpfr_lib.mpfr_set_si(op4, 10, mpfr_rnd_t.MPFR_RNDN) == 0); // Create and initialize a new floating-point number rop. mpfr_t rop = new mpfr_t(); mpfr_lib.mpfr_init2(rop, 64U); // Set rop = (op1 * op2) - (op3 * op4). Assert.IsTrue(mpfr_lib.mpfr_fmms(rop, op1, op2, op3, op4, mpfr_rnd_t.MPFR_RNDN) == 0); // Assert that the value of rop is -2200. Assert.IsTrue(mpfr_lib.mpfr_get_d(rop, mpfr_rnd_t.MPFR_RNDN) == -2200.0); // Release unmanaged memory allocated for rop, op1, op2, and op3. mpfr_lib.mpfr_clears(rop, op1, op2, op3, op4, null);