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)
Syntaxpublic static int mpfr_get_z(
mpz_t rop,
mpfr_t op,
mpfr_rnd_t rnd
)
Public Shared Function mpfr_get_z (
rop As mpz_t,
op As mpfr_t,
rnd As mpfr_rnd_t
) As Integer
public:
static int mpfr_get_z(
mpz_t^ rop,
mpfr_t^ op,
mpfr_rnd_t rnd
)
static member mpfr_get_z :
rop : mpz_t *
op : mpfr_t *
rnd : mpfr_rnd_t -> int
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:
Int32Return 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
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);
mpz_t rop = new mpz_t();
gmp_lib.mpz_init(rop);
Assert.IsTrue(mpfr_lib.mpfr_get_z(rop, op, mpfr_rnd_t.MPFR_RNDN) == 2);
Assert.IsTrue(gmp_lib.mpz_get_ui(rop) == 11);
gmp_lib.mpz_clear(rop);
mpfr_lib.mpfr_clear(op);
Dim op As mpfr_t = 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)
Dim rop As mpz_t = New mpz_t()
gmp_lib.mpz_init(rop)
Assert.IsTrue(mpfr_lib.mpfr_get_z(rop, op, mpfr_rnd_t.MPFR_RNDN) = 2)
Assert.IsTrue(gmp_lib.mpz_get_ui(rop) = 11)
gmp_lib.mpz_clear(rop)
mpfr_lib.mpfr_clear(op)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also