Click or drag to resize
gmp_libmpz_abs Method
Set rop to the absolute value of 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_abs(
	mpz_t rop,
	mpz_t op
)

Parameters

rop
Type: Math.Gmp.Nativempz_t
The result integer.
op
Type: Math.Gmp.Nativempz_t
The operand integer.
Examples
// Create, initialize, and set the value of x to -10000.
mpz_t x = new mpz_t();
gmp_lib.mpz_init_set_si(x, -10000);

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

// Set z = |x|.
gmp_lib.mpz_abs(z, x);

// Assert that z is |x|.
Assert.IsTrue(gmp_lib.mpz_get_si(z) == 10000);

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