gmp_libmpz_set_d Method |
Namespace: Math.Gmp.Native
public static void mpz_set_d( mpz_t rop, double op )
Public Shared Sub mpz_set_d ( rop As mpz_t, op As Double )
public: static void mpz_set_d( mpz_t^ rop, double op )
static member mpz_set_d : rop : mpz_t * op : float -> unit
mpz_set_d truncate op to make it an integer.
// Create and initialize a new integer x. mpz_t x = new mpz_t(); gmp_lib.mpz_init(x); // Set the value of x to the truncation of 10.7. gmp_lib.mpz_set_d(x, 10.7D); // Assert that the value of x is 10. Assert.IsTrue(gmp_lib.mpz_get_si(x) == 10); // Release unmanaged memory allocated for x. gmp_lib.mpz_clear(x);
' Create and initialize a new integer x. Dim x As New mpz_t() gmp_lib.mpz_init(x) ' Set the value of x to the truncation of 10.7. gmp_lib.mpz_set_d(x, 10.7) ' Assert that the value of x is 10. Assert.IsTrue(gmp_lib.mpz_get_si(x) = 10) ' Release unmanaged memory allocated for x. gmp_lib.mpz_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.