#include "fmpz_poly.h"
#include "fq.h"
#include "fq_poly.h"
void
_fq_poly_mul_classical(fq_struct * rop,
const fq_struct * op1, slong len1,
const fq_struct * op2, slong len2,
const fq_ctx_t ctx)
{
if (len1 == 1 && len2 == 1)
{
fq_mul(rop, op1, op2, ctx);
}
else
{
slong i, j;
fmpz_poly_t t;
fmpz_poly_init(t);
for (j = 0; j < len1; j++)
fmpz_poly_mul(rop + j, op1 + j, op2 + 0);
for (j = 0; j < len2 - 1; j++)
fmpz_poly_mul(rop + len1 + j, op2 + j + 1, op1 + len1 - 1);
for (i = 0; i < len1 - 1; i++)
{
for (j = 0; j < len2 - 1; j++)
{
fmpz_poly_mul(t, op2 + j + 1, op1 + i);
fmpz_poly_add(rop + i + j + 1, rop + i + j + 1, t);
}
}
for (i = 0; i < len1 + len2 - 1; i++)
fq_reduce(rop + i, ctx);
fmpz_poly_clear(t);
}
}
void
fq_poly_mul_classical(fq_poly_t rop, const fq_poly_t op1,
const fq_poly_t op2, const fq_ctx_t ctx)
{
const slong len = op1->length + op2->length - 1;
if (op1->length == 0 || op2->length == 0)
{
fq_poly_zero(rop, ctx);
return;
}
if (rop == op1 || rop == op2)
{
fq_poly_t t;
fq_poly_init2(t, len, ctx);
_fq_poly_mul_classical(t->coeffs, op1->coeffs, op1->length,
op2->coeffs, op2->length, ctx);
fq_poly_swap(rop, t, ctx);
fq_poly_clear(t, ctx);
}
else
{
fq_poly_fit_length(rop, len, ctx);
_fq_poly_mul_classical(rop->coeffs, op1->coeffs,
op1->length, op2->coeffs,
op2->length, ctx);
}
_fq_poly_set_length(rop, len, ctx);
}