Click or drag to resize
gmp_libmpz_set_q Method
Set the value of rop from op.

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_set_q(
	mpz_t rop,
	mpq_t op
)

Parameters

rop
Type: Math.Gmp.Nativempz_t
The destination integer.
op
Type: Math.Gmp.Nativempq_t
The source integer.
Remarks

mpz_set_q truncate op to make it an integer.

Examples
// Create and initialize new integer x, and rational y.
mpz_t x = new mpz_t();
gmp_lib.mpz_init(x);
mpq_t y = "100/3";

// Set the value of x to the truncation of 100/3.
gmp_lib.mpz_set_q(x, y);

// Assert that the value of x is 33.
Assert.IsTrue(gmp_lib.mpz_get_si(x) == 33);

// Release unmanaged memory allocated for x and y.
gmp_lib.mpz_clear(x);
gmp_lib.mpq_clear(y);
See Also