gmp_libmpz_abs Method |
Namespace: Math.Gmp.Native
public static void mpz_abs( mpz_t rop, mpz_t op )
Public Shared Sub mpz_abs ( rop As mpz_t, op As mpz_t )
public: static void mpz_abs( mpz_t^ rop, mpz_t^ op )
static member mpz_abs : rop : mpz_t * op : mpz_t -> unit
// 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);
' Create, initialize, and set the value of x to -10000. Dim x As New mpz_t() gmp_lib.mpz_init_set_si(x, -10000) ' Create, initialize, and set the value of z to 0. Dim z As 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, Nothing)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.