/* Copyright (C) 2018 Daniel Schultz 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 "nmod_mpoly.h" /* evaluate B(xbar) at xbar = C */ int nmod_mpoly_compose_nmod_mpoly_geobucket(nmod_mpoly_t A, const nmod_mpoly_t B, nmod_mpoly_struct * const * C, const nmod_mpoly_ctx_t ctxB, const nmod_mpoly_ctx_t ctxAC) { int success = 1; slong i, j; slong Blen = B->length; const mp_limb_t * Bcoeff = B->coeffs; const ulong * Bexp = B->exps; flint_bitcnt_t Bbits = B->bits; slong BN = mpoly_words_per_exp(Bbits, ctxB->minfo); nmod_mpoly_t U, V, W; nmod_mpoly_geobucket_t T; fmpz * e; nmod_mpoly_init(U, ctxAC); nmod_mpoly_init(V, ctxAC); nmod_mpoly_init(W, ctxAC); nmod_mpoly_geobucket_init(T, ctxAC); e = _fmpz_vec_init(ctxB->minfo->nvars); for (i = 0; success && i < Blen; i++) { nmod_mpoly_set_ui(U, Bcoeff[i], ctxAC); mpoly_get_monomial_ffmpz(e, Bexp + BN*i, Bbits, ctxB->minfo); for (j = 0; j < ctxB->minfo->nvars; j++) { success = success && nmod_mpoly_pow_fmpz(V, C[j], e + j, ctxAC); nmod_mpoly_mul(W, U, V, ctxAC); nmod_mpoly_swap(U, W, ctxAC); } nmod_mpoly_geobucket_add(T, U, ctxAC); } if (success) nmod_mpoly_geobucket_empty(A, T, ctxAC); nmod_mpoly_clear(U, ctxAC); nmod_mpoly_clear(V, ctxAC); nmod_mpoly_clear(W, ctxAC); nmod_mpoly_geobucket_clear(T, ctxAC); _fmpz_vec_clear(e, ctxB->minfo->nvars); return success; }