gmp_libmpf_cmp_d Method |
Namespace: Math.Gmp.Native
public static int mpf_cmp_d( mpf_t op1, double op2 )
Public Shared Function mpf_cmp_d ( op1 As mpf_t, op2 As Double ) As Integer
public: static int mpf_cmp_d( mpf_t^ op1, double op2 )
static member mpf_cmp_d : op1 : mpf_t * op2 : float -> int
mpf_cmp_d can be called with an infinity, but results are undefined for a NaN.
// Set default precision to 64 bits. gmp_lib.mpf_set_default_prec(64U); // Create, initialize, and set a new floating-point number x to 512. mpf_t x = new mpf_t(); gmp_lib.mpf_init_set_si(x, 512); // Assert that x > 128.0. Assert.IsTrue(gmp_lib.mpf_cmp_d(x, 128.0) > 0); // Release unmanaged memory allocated for x. gmp_lib.mpf_clear(x);
' Set default precision to 64 bits. gmp_lib.mpf_set_default_prec(64UI) ' Create, initialize, and set a new floating-point number x to 512. Dim x As New mpf_t() gmp_lib.mpf_init_set_si(x, 512) ' Assert that x > 128.0. Assert.IsTrue(gmp_lib.mpf_cmp_d(x, 128.0) > 0) ' Release unmanaged memory allocated for x. gmp_lib.mpf_clear(x)
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.