Click or drag to resize
gmp_libmpz_tdiv_q Method
Set the quotient q to 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 void mpz_tdiv_q(
	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 n to 10000.
mpz_t n = new mpz_t();
gmp_lib.mpz_init_set_si(n, 10000);

// Create, initialize, and set the value of d to 3.
mpz_t d = new mpz_t();
gmp_lib.mpz_init_set_si(d, 3);

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

// Set q = trunc(n / d).
gmp_lib.mpz_tdiv_q(q, n, d);

// Assert that q is trunc(10000 / 3).
Assert.IsTrue(gmp_lib.mpz_get_si(q) == 3333);

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