Click or drag to resize
gmp_libmpq_set Method
Assign 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 mpq_set(
	mpq_t rop,
	mpq_t op
)

Parameters

rop
Type: Math.Gmp.Nativempq_t
The result rational.
op
Type: Math.Gmp.Nativempq_t
The operand rational.
Examples
// Create, initialize, and set a new rational x to 10 / 11.
mpq_t x = new mpq_t();
gmp_lib.mpq_init(x);
gmp_lib.mpq_set_si(x, 10, 11);

// Create, initialize, and set a new rational y to -210 / 13.
mpq_t y = new mpq_t();
gmp_lib.mpq_init(y);
gmp_lib.mpq_set_si(y, -210, 13);

// Assign the value of y to x.
gmp_lib.mpq_set(x, y);

// Assert that the value of x is -210 / 13.
Assert.IsTrue(gmp_lib.mpq_cmp_si(x, -210, 13) == 0);

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