gmp_libmpz_mul_si Method |
Namespace: Math.Gmp.Native
public static void mpz_mul_si( mpz_t rop, mpz_t op1, int op2 )
Public Shared Sub mpz_mul_si ( rop As mpz_t, op1 As mpz_t, op2 As Integer )
public: static void mpz_mul_si( mpz_t^ rop, mpz_t^ op1, int op2 )
static member mpz_mul_si : rop : mpz_t * op1 : mpz_t * op2 : int -> 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 * 12222. gmp_lib.mpz_mul_si(z, x, 12222); // Assert that z is the product of x and 12222. Assert.IsTrue(gmp_lib.mpz_get_si(z) == -10000 * 12222); // 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 * 12222. gmp_lib.mpz_mul_si(z, x, 12222) ' Assert that z is the product of x and 12222. Assert.IsTrue(gmp_lib.mpz_get_si(z) = -10000 * 12222) ' 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.