/*
Copyright (C) 2010 Sebastian Pancratz
Copyright (C) 2011 Fredrik Johansson
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 "flint.h"
#include "nmod_vec.h"
#include "nmod_poly.h"
#include "ulong_extras.h"
void
_nmod_poly_revert_series(mp_ptr Qinv, mp_srcptr Q, slong n, nmod_t mod)
{
_nmod_poly_revert_series_lagrange_fast(Qinv, Q, n, mod);
}
void
nmod_poly_revert_series(nmod_poly_t Qinv,
const nmod_poly_t Q, slong n)
{
mp_ptr Qinv_coeffs, Q_coeffs;
nmod_poly_t t1;
slong Qlen;
Qlen = Q->length;
if (Qlen < 2 || Q->coeffs[0] != 0 || Q->coeffs[1] == 0)
{
flint_printf("Exception (nmod_poly_revert_series). Input must have \n"
"zero constant and an invertible coefficient of x^1.\n");
flint_abort();
}
if (Qlen < n)
{
Q_coeffs = _nmod_vec_init(n);
flint_mpn_copyi(Q_coeffs, Q->coeffs, Qlen);
flint_mpn_zero(Q_coeffs + Qlen, n - Qlen);
}
else
Q_coeffs = Q->coeffs;
if (Q == Qinv && Qlen >= n)
{
nmod_poly_init2(t1, Q->mod.n, n);
Qinv_coeffs = t1->coeffs;
}
else
{
nmod_poly_fit_length(Qinv, n);
Qinv_coeffs = Qinv->coeffs;
}
_nmod_poly_revert_series(Qinv_coeffs, Q_coeffs, n, Q->mod);
if (Q == Qinv && Qlen >= n)
{
nmod_poly_swap(Qinv, t1);
nmod_poly_clear(t1);
}
Qinv->length = n;
if (Qlen < n)
_nmod_vec_clear(Q_coeffs);
_nmod_poly_normalise(Qinv);
}