GMP Native Interface for .NET
gmp_libmpz_cdiv_ui Method |
Return the remainder | r | where r = n - q * d, and where q = ceiling(n / d).
Namespace: Math.Gmp.Native
Assembly: Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)

public static uint mpz_cdiv_ui( mpz_t n, uint d )
Public Shared Function mpz_cdiv_ui ( n As mpz_t, d As UInteger ) As UInteger
public: static unsigned int mpz_cdiv_ui( mpz_t^ n, unsigned int d )
static member mpz_cdiv_ui : n : mpz_t * d : uint32 -> uint32
Parameters
- n
- Type: Math.Gmp.Nativempz_t
The numerator integer. - d
- Type: SystemUInt32
The denominator integer.
Return Value
Type: UInt32The remainder | r | where r = n - q * d, and where q = ceiling(n / d).

// Create, initialize, and set the value of n to 10000. mpz_t n = new mpz_t(); gmp_lib.mpz_init_set_si(n, 10000); // Assert that returned value is |n - 3 * ceiling(n / 3)|. Assert.IsTrue(gmp_lib.mpz_cdiv_ui(n, 3U) == 2U); // Release unmanaged memory allocated for n. gmp_lib.mpz_clear(n);
' Create, initialize, and set the value of n to 10000. Dim n As New mpz_t() gmp_lib.mpz_init_set_si(n, 10000) ' Assert that returned value is |n - 3 * ceiling(n / 3)|. Assert.IsTrue(gmp_lib.mpz_cdiv_ui(n, 3UI) = 2UI) ' Release unmanaged memory allocated for n. gmp_lib.mpz_clear(n)
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.
