#include "nmod_vec.h"
#include "fmpz.h"
#include "fq_nmod.h"
#include "mpoly.h"
#include "fq_nmod_mpoly.h"
void fq_nmod_mpoly_inflate(
fq_nmod_mpoly_t A,
const fq_nmod_mpoly_t B,
const fmpz * shift,
const fmpz * stride,
const fq_nmod_mpoly_ctx_t ctx)
{
slong d = fq_nmod_ctx_degree(ctx->fqctx);
int have_zero_stride;
slong j;
flint_bitcnt_t Abits;
slong nvars = ctx->minfo->nvars;
fmpz * exps;
TMP_INIT;
if (fq_nmod_mpoly_is_zero(B, ctx))
{
fq_nmod_mpoly_zero(A, ctx);
return;
}
TMP_START;
exps = (fmpz *) TMP_ALLOC(nvars*sizeof(fmpz));
for (j = 0; j < nvars; j++)
fmpz_init(exps + j);
mpoly_degrees_ffmpz(exps, B->exps, B->length, B->bits, ctx->minfo);
have_zero_stride = 0;
for (j = 0; j < nvars; j++)
{
have_zero_stride |= fmpz_is_zero(stride + j);
fmpz_mul(exps + j, exps + j, stride + j);
fmpz_add(exps + j, exps + j, shift + j);
}
Abits = mpoly_exp_bits_required_ffmpz(exps, ctx->minfo);
Abits = mpoly_fix_bits(Abits, ctx->minfo);
for (j = 0; j < nvars; j++)
fmpz_clear(exps + j);
if (A == B)
{
slong NA = mpoly_words_per_exp(Abits, ctx->minfo);
slong exps_alloc = NA*B->length;
ulong * texps = flint_malloc(exps_alloc*sizeof(ulong));
mpoly_monomials_inflate(texps, Abits, B->exps, B->bits, B->length,
shift, stride, ctx->minfo);
flint_free(A->exps);
A->exps = texps;
A->bits = Abits;
A->exps_alloc = exps_alloc;
}
else
{
fq_nmod_mpoly_fit_length_reset_bits(A, B->length, Abits, ctx);
_nmod_vec_set(A->coeffs, B->coeffs, d*B->length);
mpoly_monomials_inflate(A->exps, Abits, B->exps, B->bits, B->length,
shift, stride, ctx->minfo);
_fq_nmod_mpoly_set_length(A, B->length, ctx);
}
TMP_END;
if (have_zero_stride || ctx->minfo->ord != ORD_LEX)
{
fq_nmod_mpoly_sort_terms(A, ctx);
if (have_zero_stride)
fq_nmod_mpoly_combine_like_terms(A, ctx);
}
return;
}