/*
Copyright (C) 2007, 2008 William Hart
Copyright (C) 2011 Sebastian Pancratz
Copyright (C) 2014 William Hart
This file is part of FLINT.
FLINT is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version. See .
*/
#include
#include
#include "flint.h"
#include "fmpz_vec.h"
#include "fmpz_mod_poly.h"
void
_fmpz_mod_poly_resultant_euclidean(fmpz_t res, const fmpz *poly1, slong len1,
const fmpz *poly2, slong len2, const fmpz_t mod)
{
if (poly1 == poly2)
{
fmpz_zero(res);
}
else if (len2 == 1)
{
if (len1 == 1)
{
fmpz_set_ui(res, 1);
}
else if (len1 == 2)
{
fmpz_set(res, poly2 + 0);
}
else
{
fmpz_powm_ui(res, poly2 + 0, len1 - 1, mod);
}
}
else /* len1 >= len2 >= 2 */
{
fmpz *u, *v, *r, *t, *w;
slong l0, l1, l2;
fmpz_t lc, invB;
TMP_INIT;
TMP_START;
fmpz_init(lc);
fmpz_init(invB);
fmpz_set_ui(res, 1);
FMPZ_VEC_TMP_INIT(w, 3*len1);
u = w;
v = w + len1;
r = v + len1;
_fmpz_vec_set(u, poly1, len1);
_fmpz_vec_set(v, poly2, len2);
l1 = len1;
l2 = len2;
do
{
l0 = l1;
l1 = l2;
fmpz_set(lc, v + l1 - 1);
fmpz_invmod(invB, v + l1 - 1, mod);
_fmpz_mod_poly_rem(r, u, l0, v, l1, invB, mod);
l2 = l1 - 1;
FMPZ_VEC_NORM(r, l2);
{
t = u;
u = v;
v = r;
r = t;
}
if (l2 >= 1)
{
fmpz_powm_ui(lc, lc, l0 - l2, mod);
fmpz_mul(res, res, lc);
fmpz_mod(res, res, mod);
if (((l0 | l1) & 1) == 0)
{
fmpz_negmod(res, res, mod);
}
}
else
{
if (l1 == 1)
{
fmpz_powm_ui(lc, lc, l0 - 1, mod);
fmpz_mul(res, res, lc);
fmpz_mod(res, res, mod);
}
else
{
fmpz_zero(res);
}
}
}
while (l2 > 0);
FMPZ_VEC_TMP_CLEAR(w, 3*len1);
fmpz_clear(invB);
fmpz_clear(lc);
TMP_END;
}
}
void fmpz_mod_poly_resultant_euclidean(fmpz_t r, const fmpz_mod_poly_t f,
const fmpz_mod_poly_t g, const fmpz_mod_ctx_t ctx)
{
const slong len1 = f->length;
const slong len2 = g->length;
if (len1 == 0 || len2 == 0)
{
fmpz_zero(r);
}
else
{
if (len1 >= len2)
{
_fmpz_mod_poly_resultant_euclidean(r, f->coeffs, len1,
g->coeffs, len2, fmpz_mod_ctx_modulus(ctx));
}
else
{
_fmpz_mod_poly_resultant_euclidean(r, g->coeffs, len2,
f->coeffs, len1, fmpz_mod_ctx_modulus(ctx));
if (((len1 | len2) & WORD(1)) == WORD(0))
fmpz_mod_neg(r, r, ctx);
}
}
}