Click or drag to resize
gmp_libmpz_cdiv_r_ui Method
Set the remainder r to n - q * d where q = ceiling(n / d), and return | r |.

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_cdiv_r_ui(
	mpz_t r,
	mpz_t n,
	uint d
)

Parameters

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

Return Value

Type: UInt32
Return | r |.
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);

// Create, initialize, and set the value of r to 0.
mpz_t r = new mpz_t();
gmp_lib.mpz_init(r);

// Set r = n - 3 * ceiling(n / 3), and return |r|.
Assert.IsTrue(gmp_lib.mpz_cdiv_r_ui(r, n, 3U) == 2U);

// Assert that r is -2.
Assert.IsTrue(gmp_lib.mpz_get_si(r) == -2);

// Release unmanaged memory allocated for n and r.
gmp_lib.mpz_clears(n, r, null);
See Also