Click or drag to resize
mpfr_libmpfr_get_q Method
Convert op to a mpq_t.

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void mpfr_get_q(
	mpq_t rop,
	mpfr_t op
)

Parameters

rop
Type: Math.Gmp.Nativempq_t
The result rational number.
op
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
Remarks

If op is NaN or an infinity, the erange flag is set, rop is set to 0, and 0 is returned. Otherwise the conversion is always exact.

Examples
// Create, initialize, and set a new floating-point number op to 10.6.
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_d(op, 10.6, mpfr_rnd_t.MPFR_RNDN) == 0);

// Create and initialize a new rational rop.
mpq_t rop = new mpq_t();
gmp_lib.mpq_init(rop);

// Set rop = op.
mpfr_lib.mpfr_get_q(rop, op);

// Assert the value of rop.
Assert.IsTrue(rop.ToString() == "5967269506265907/562949953421312");

// Release unmanaged memory allocated for rop and op.
gmp_lib.mpq_clear(rop);
mpfr_lib.mpfr_clear(op);
See Also