/*============================================================================= This file is part of FLINT. FLINT is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. FLINT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FLINT; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA =============================================================================*/ /****************************************************************************** Copyright (C) 2010, 2011 Sebastian Pancratz ******************************************************************************/ #include #include #include "flint.h" #include "fmpz.h" #include "fmpz_vec.h" #include "fmpz_poly.h" void _fmpz_poly_inv_series_newton(fmpz * Qinv, const fmpz * Q, slong n) { if (n == 1) /* Q is +-1 */ { fmpz_set(Qinv, Q); } else { const slong alloc = FLINT_MAX(n, 3 * FMPZ_POLY_INV_NEWTON_CUTOFF); slong *a, i, m; fmpz *W; W = _fmpz_vec_init(alloc); for (i = 1; (WORD(1) << i) < n; i++) ; a = (slong *) flint_malloc(i * sizeof(slong)); a[i = 0] = n; while (n >= FMPZ_POLY_INV_NEWTON_CUTOFF) a[++i] = (n = (n + 1) / 2); /* Base case */ { fmpz *Qrev = W + 2 * FMPZ_POLY_INV_NEWTON_CUTOFF; _fmpz_poly_reverse(Qrev, Q, n, n); _fmpz_vec_zero(W, 2*n - 2); fmpz_one(W + (2*n - 2)); _fmpz_poly_div_basecase(Qinv, W, W, 2*n - 1, Qrev, n); _fmpz_poly_reverse(Qinv, Qinv, n, n); } for (i--; i >= 0; i--) { m = n; n = a[i]; _fmpz_poly_mullow(W, Q, n, Qinv, m, n); _fmpz_poly_mullow(Qinv + m, Qinv, m, W + m, n - m, n - m); _fmpz_vec_neg(Qinv + m, Qinv + m, n - m); } _fmpz_vec_clear(W, alloc); flint_free(a); } } void fmpz_poly_inv_series_newton(fmpz_poly_t Qinv, const fmpz_poly_t Q, slong n) { fmpz *Qcopy; int Qalloc; if (Q->length >= n) { Qcopy = Q->coeffs; Qalloc = 0; } else { slong i; Qcopy = (fmpz *) flint_malloc(n * sizeof(fmpz)); for (i = 0; i < Q->length; i++) Qcopy[i] = Q->coeffs[i]; flint_mpn_zero((mp_ptr) Qcopy + i, n - i); Qalloc = 1; } if (Qinv != Q) { fmpz_poly_fit_length(Qinv, n); _fmpz_poly_inv_series_newton(Qinv->coeffs, Qcopy, n); } else { fmpz_poly_t t; fmpz_poly_init2(t, n); _fmpz_poly_inv_series_newton(t->coeffs, Qcopy, n); fmpz_poly_swap(Qinv, t); fmpz_poly_clear(t); } _fmpz_poly_set_length(Qinv, n); _fmpz_poly_normalise(Qinv); if (Qalloc) flint_free(Qcopy); }