Click or drag to resize
mpfr_libmpfr_get_z Method
Convert op to a mpz_t, after rounding it with respect to rnd.

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 int mpfr_get_z(
	mpz_t rop,
	mpfr_t op,
	mpfr_rnd_t rnd
)

Parameters

rop
Type: Math.Gmp.Nativempz_t
The result floating-point number.
op
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.

Return Value

Type: Int32
Return zero, a positive, or a negative value if rop is respectively equal to, greater than, or lower than the exact result. See GNU MPFR - Rounding Modes for details.
Remarks

If op is NaN or an infinity, the erange flag is set, rop is set to 0, and 0 is returned. Otherwise the return value is zero when rop is equal to op (i.e., when op is an integer), positive when it is greater than op, and negative when it is smaller than op; moreover, if rop differs from op, i.e., if op is not an integer, the inexact flag is set.

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 integer rop.
mpz_t rop = new mpz_t();
gmp_lib.mpz_init(rop);

// Set rop = op.
Assert.IsTrue(mpfr_lib.mpfr_get_z(rop, op, mpfr_rnd_t.MPFR_RNDN) == 2);

// Assert that the value of rop is 11.
Assert.IsTrue(gmp_lib.mpz_get_ui(rop) == 11);

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