Click or drag to resize
gmp_libmpz_divexact Method
Set q to n / d when it is known in advance that d divides n.

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 void mpz_divexact(
	mpz_t q,
	mpz_t n,
	mpz_t d
)

Parameters

q
Type: Math.Gmp.Nativempz_t
The result quotient integer.
n
Type: Math.Gmp.Nativempz_t
The numerator integer.
d
Type: Math.Gmp.Nativempz_t
The denominator integer.
Examples
// Create, initialize, and set the value of x to 10000.
mpz_t x = new mpz_t();
gmp_lib.mpz_init_set_ui(x, 10000U);

// Create, initialize, and set the value of y to 5.
mpz_t y = new mpz_t();
gmp_lib.mpz_init_set_ui(y, 5U);

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

// Set z = x / y.
gmp_lib.mpz_divexact(z, x, y);

// Assert that z is 2000.
Assert.IsTrue(gmp_lib.mpz_get_si(z) == 2000);

// Release unmanaged memory allocated for x, y, and z.
gmp_lib.mpz_clears(x, y, z, null);
See Also