Functions | |
| static void | _fmpq_poly_add_in_place (fmpq_poly_ptr rop, const fmpq_poly_ptr op) |
| void | fmpq_poly_add (fmpq_poly_ptr rop, const fmpq_poly_ptr op1, const fmpq_poly_ptr op2) |
| static void | _fmpq_poly_sub_in_place (fmpq_poly_ptr rop, const fmpq_poly_ptr op) |
| void | fmpq_poly_sub (fmpq_poly_ptr rop, const fmpq_poly_ptr op1, const fmpq_poly_ptr op2) |
| void | fmpq_poly_addmul (fmpq_poly_ptr rop, const fmpq_poly_ptr op1, const fmpq_poly_ptr op2) |
| void | fmpq_poly_submul (fmpq_poly_ptr rop, const fmpq_poly_ptr op1, const fmpq_poly_ptr op2) |
| static void _fmpq_poly_add_in_place | ( | fmpq_poly_ptr | rop, | |
| const fmpq_poly_ptr | op | |||
| ) | [static] |
Sets rop to the sum of rop and op.
| static void _fmpq_poly_sub_in_place | ( | fmpq_poly_ptr | rop, | |
| const fmpq_poly_ptr | op | |||
| ) | [static] |
Sets rop to the difference of rop and op.
| void fmpq_poly_add | ( | fmpq_poly_ptr | rop, | |
| const fmpq_poly_ptr | op1, | |||
| const fmpq_poly_ptr | op2 | |||
| ) |
Sets rop to the sum of op1 and op2.
| void fmpq_poly_addmul | ( | fmpq_poly_ptr | rop, | |
| const fmpq_poly_ptr | op1, | |||
| const fmpq_poly_ptr | op2 | |||
| ) |
Sets rop to rop + op1 * op2.
Currently, this method refers to the methods fmpq_poly_mul() and fmpq_poly_add() to form the result in the naive way.
| void fmpq_poly_sub | ( | fmpq_poly_ptr | rop, | |
| const fmpq_poly_ptr | op1, | |||
| const fmpq_poly_ptr | op2 | |||
| ) |
Sets rop to the difference of op1 and op2.
| void fmpq_poly_submul | ( | fmpq_poly_ptr | rop, | |
| const fmpq_poly_ptr | op1, | |||
| const fmpq_poly_ptr | op2 | |||
| ) |
Sets rop to rop - op1 * op2.
Currently, this method refers to the methods fmpq_poly_mul() and fmpq_poly_sub() to form the result in the naive way.
1.6.3