void mpff_clear(mpff_t r)Free the space occupied by r. Call this function for all `mpff_t' variables when you are done with them.
void mpff_field_clear(mpff_field ff)Free the space occupied by ff. This invalidate all `mpff_t' variables that reference ff.
void mpff_field_init(mpff_field ff, mpz_t p, mpz_t pol)Initialize ff as the finite field
e=mpz_size(p)*mp_bits_per_limb
.
The current implementation require P to be monic.
void mpff_field_init_unpack(mpff_field ff, mpz_t p, mpz_t pol, mp_size_t e)Initialize ff as the finite field
void mpff_init(mpff_t r, mpff_field ff)Initialize r as an element of the finite field ff, and set its value to 0.