GMP Native Interface for .NET
gmp_libmpz_tdiv_ui Method |
Return the remainder | r | where r = n - q * d, and where q = trunc(n / d).
Namespace: Math.Gmp.Native
Assembly: Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static uint mpz_tdiv_ui( mpz_t n, uint d )
Public Shared Function mpz_tdiv_ui ( n As mpz_t, d As UInteger ) As UInteger
public: static unsigned int mpz_tdiv_ui( mpz_t^ n, unsigned int d )
static member mpz_tdiv_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 = trunc(n / d).
Examples
// 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 * trunc(n / 3)|. Assert.IsTrue(gmp_lib.mpz_tdiv_ui(n, 3U) == 1U); // 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 * trunc(n / 3)|. Assert.IsTrue(gmp_lib.mpz_tdiv_ui(n, 3UI) = 1UI) ' 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.
See Also