/* Copyright (C) 2011 Fredrik Johansson Copyright (C) 2015 Kushagra Singh 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 #include "flint.h" #include "fmpz.h" #include "fmpz_poly.h" #include "fmpz_mod_poly.h" #include "ulong_extras.h" void _fmpz_mod_poly_product_roots_fmpz_vec(fmpz * poly, const fmpz * xs, slong n, const fmpz_t mod) { if (n == 0) { if (fmpz_is_one(mod)) fmpz_zero(poly); else fmpz_one(poly); } else if (n < 20) { slong i, j; if (fmpz_is_one(mod)) fmpz_zero(poly + n); else fmpz_one(poly + n); fmpz_negmod(poly + n - 1, xs, mod); for (i = 1; i < n; i++) { fmpz_mul(poly + n - i - 1, poly + n - i, xs + i); fmpz_mod(poly + n - i - 1, poly + n - i - 1, mod); fmpz_negmod(poly + n - i - 1, poly + n - i - 1, mod); for (j = 0; j < i - 1; j++) { fmpz_submul(poly + n - i + j, poly + n - i + j + 1, xs + i); fmpz_mod(poly + n - i + j, poly + n - i + j, mod); } fmpz_sub(poly + n - 1, poly + n - 1, xs + i); fmpz_mod(poly + n - 1, poly + n - 1, mod); } } else { slong m; fmpz * tmp; m = (n + 1) / 2; tmp = _fmpz_vec_init(n + 2); _fmpz_mod_poly_product_roots_fmpz_vec(tmp, xs, m, mod); _fmpz_mod_poly_product_roots_fmpz_vec(tmp + m + 1, xs + m, n - m, mod); _fmpz_mod_poly_mul(poly, tmp, m + 1, tmp + m + 1, n - m + 1, mod); _fmpz_vec_clear(tmp, n + 2); } } void fmpz_mod_poly_product_roots_fmpz_vec( fmpz_mod_poly_t poly, const fmpz * xs, slong xlen, const fmpz_mod_ctx_t ctx) { fmpz_mod_poly_fit_length(poly, xlen + 1, ctx); _fmpz_mod_poly_product_roots_fmpz_vec(poly->coeffs, xs, xlen, fmpz_mod_ctx_modulus(ctx)); _fmpz_mod_poly_set_length(poly, xlen + 1); }