Click or drag to resize
gmp_libmpz_fdiv_ui Method
Return the remainder | r | where r = n - q * d, and where q = floor(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 long mpz_fdiv_ui(
	mpz_t n,
	uint d
)

Parameters

n
Type: Math.Gmp.Nativempz_t
The numerator integer.
d
Type: SystemUInt32
The denominator integer.

Return Value

Type: Int64
The remainder | r | where r = n - q * d, and where q = floor(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 * floor(n / 3)|.
Assert.IsTrue(gmp_lib.mpz_fdiv_ui(n, 3U) == 1U);

// Release unmanaged memory allocated for n.
gmp_lib.mpz_clear(n);
See Also