gmp_libmpz_cdiv_r Method |
Namespace: Math.Gmp.Native
public static void mpz_cdiv_r( mpz_t r, mpz_t n, mpz_t d )
Public Shared Sub mpz_cdiv_r ( r As mpz_t, n As mpz_t, d As mpz_t )
public: static void mpz_cdiv_r( mpz_t^ r, mpz_t^ n, mpz_t^ d )
static member mpz_cdiv_r : r : mpz_t * n : mpz_t * d : mpz_t -> unit
// Create, initialize, and set the value of n to 10000. mpz_t n = new mpz_t(); gmp_lib.mpz_init_set_si(n, 10000); // Create, initialize, and set the value of d to 3. mpz_t d = new mpz_t(); gmp_lib.mpz_init_set_si(d, 3); // Create, initialize, and set the value of r to 0. mpz_t r = new mpz_t(); gmp_lib.mpz_init(r); // Set r = n - d * ceiling(n / d). gmp_lib.mpz_cdiv_r(r, n, d); // Assert that r is -2. Assert.IsTrue(gmp_lib.mpz_get_si(r) == -2); // Release unmanaged memory allocated for n, d, and r. gmp_lib.mpz_clears(n, d, r, null);
' Create, initialize, and set the value of n to 10000. Dim n As New mpz_t() gmp_lib.mpz_init_set_si(n, 10000) ' Create, initialize, and set the value of d to 3. Dim d As New mpz_t() gmp_lib.mpz_init_set_si(d, 3) ' Create, initialize, and set the value of r to 0. Dim r As New mpz_t() gmp_lib.mpz_init(r) ' Set r = n - d * ceiling(n / d). gmp_lib.mpz_cdiv_r(r, n, d) ' Assert that r is -2. Assert.IsTrue(gmp_lib.mpz_get_si(r) = -2) ' Release unmanaged memory allocated for n, d, and r. gmp_lib.mpz_clears(n, d, r, Nothing)
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.