Click or drag to resize
mpfr_libmpfr_cmp_si_2exp Method
Compare op1 and op2 * 2^e.

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_cmp_si_2exp(
	mpfr_t op1,
	int op2,
	mpfr_exp_t e
)

Parameters

op1
Type: Math.Mpfr.Nativempfr_t
The first operand floating-point number.
op2
Type: SystemInt32
The second operand floating-point number.
e
Type: Math.Mpfr.Nativempfr_exp_t
The exponent.

Return Value

Type: Int32
Return a positive value if op1 > op2 * 2^e, zero if op1 = op2 * 2^e, and a negative value if op1 < op2 * 2^e.
Remarks

Similar as mpfr_cmp.

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

// Assert that op1 = 128 * 2^2.
Assert.IsTrue(mpfr_lib.mpfr_cmp_si_2exp(op1, 128, 2) == 0);

// Release unmanaged memory allocated for op1.
mpfr_lib.mpfr_clear(op1);
See Also