Go to the first, previous, next, last section, table of contents.


Exponentiation Functions

Function: void mpz_powm (mpz_t rop, mpz_t base, mpz_t exp, mpz_t mod)
Function: void mpz_powm_ui (mpz_t rop, mpz_t base, unsigned long int exp, mpz_t mod)
@ifnottex Set rop to (base raised to exp) mod mod. If exp is negative, the result is undefined.

Function: void mpz_pow_ui (mpz_t rop, mpz_t base, unsigned long int exp)
Function: void mpz_ui_pow_ui (mpz_t rop, unsigned long int base, unsigned long int exp)
@ifnottex Set rop to base raised to exp. The case of 0^0 yields 1.


Go to the first, previous, next, last section, table of contents.