/* Copyright (C) 2011 Fredrik Johansson Copyright (C) 2012 Lina Kulakova Copyright (C) 2014 Martin Lee Copyright (C) 2020 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 . */ #undef ulong #define ulong ulongxx/* interferes with system includes */ #include #include #undef ulong #include #define ulong mp_limb_t #include "flint.h" #include "fmpz_mod_poly.h" #include "ulong_extras.h" #include "thread_support.h" int main(void) { int i; int tmul = 200; fmpz_mod_ctx_t ctx; FLINT_TEST_INIT(state); #ifdef _WIN32 tmul = 1; #endif flint_printf("compose_mod_brent_kung_vec_preinv_threaded...."); fflush(stdout); fmpz_mod_ctx_init_ui(ctx, 2); for (i = 0; i < tmul * flint_test_multiplier(); i++) { fmpz_mod_poly_t a, ainv, b, c; fmpz_t p; slong l, j, k; fmpz_mod_poly_struct * pow, * res; fmpz_init(p); fmpz_set_ui(p, n_randtest_prime(state, 0)); fmpz_mod_ctx_set_modulus(ctx, p); flint_set_num_threads(1 + n_randint(state, 3)); fmpz_mod_poly_init(a, ctx); fmpz_mod_poly_init(ainv, ctx); fmpz_mod_poly_init(b, ctx); fmpz_mod_poly_init(c, ctx); fmpz_mod_poly_randtest(b, state, n_randint(state, 20) + 1, ctx); fmpz_mod_poly_randtest_not_zero(a, state, n_randint(state, 20) + 1, ctx); l = n_randint(state, 20) + 1; k = n_randint(state, l ) + 1; fmpz_mod_poly_reverse(ainv, a, a->length, ctx); fmpz_mod_poly_inv_series_newton(ainv, ainv, a->length, ctx); pow = (fmpz_mod_poly_struct *) flint_malloc((l + k) * sizeof(fmpz_mod_poly_struct)); res = pow + l; fmpz_mod_poly_rem(b, b, a, ctx); for (j = 0; j < l; j++) { fmpz_mod_poly_init(pow + j, ctx); fmpz_mod_poly_randtest(pow + j, state, n_randint(state, 20) + 1, ctx); fmpz_mod_poly_rem(pow + j, pow + j, a, ctx); } for (j = 0; j < k; j++) fmpz_mod_poly_init(res + j, ctx); fmpz_mod_poly_compose_mod_brent_kung_vec_preinv_threaded(res, pow, l, k, b, a, ainv, ctx); for (j = 0; j < k; j++) { fmpz_mod_poly_compose_mod(c, pow + j, b, a, ctx); if (!fmpz_mod_poly_equal(res + j, c, ctx)) { flint_printf("FAIL (composition):\n"); flint_printf("a:\n"); fmpz_mod_poly_print(a, ctx); flint_printf("\n"); flint_printf("res:\n"); fmpz_mod_poly_print(res + j, ctx); flint_printf("\n"); flint_printf("pow:\n"); fmpz_mod_poly_print(pow + j, ctx); flint_printf("\n"); flint_printf("b:\n"); fmpz_mod_poly_print(b, ctx); flint_printf("\n"); flint_printf("c:\n"); fmpz_mod_poly_print(c, ctx); flint_printf("\n"); flint_printf("j: %wd\n", j); abort(); } } fmpz_clear(p); fmpz_mod_poly_clear(a, ctx); fmpz_mod_poly_clear(ainv, ctx); fmpz_mod_poly_clear(b, ctx); fmpz_mod_poly_clear(c, ctx); for (j = 0; j < l; j++) fmpz_mod_poly_clear(pow + j, ctx); for (j = 0; j < k; j++) fmpz_mod_poly_clear(res + j, ctx); flint_free(pow); } fmpz_mod_ctx_clear(ctx); FLINT_TEST_CLEANUP(state); flint_printf("PASS\n"); return 0; }