/* Copyright (C) 2017 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" void nmod_mpoly_init3( nmod_mpoly_t A, slong alloc, flint_bitcnt_t bits, const nmod_mpoly_ctx_t ctx) { slong N = mpoly_words_per_exp(bits, ctx->minfo); if (alloc > 0) { A->coeffs_alloc = alloc; A->coeffs = FLINT_ARRAY_ALLOC(A->coeffs_alloc, mp_limb_t); A->exps_alloc = N*alloc; A->exps = FLINT_ARRAY_ALLOC(A->exps_alloc, ulong); } else { A->coeffs = NULL; A->exps = NULL; A->coeffs_alloc = 0; A->exps_alloc = 0; } A->length = 0; A->bits = bits; } void nmod_mpoly_init2(nmod_mpoly_t A, slong alloc, const nmod_mpoly_ctx_t ctx) { flint_bitcnt_t bits = mpoly_fix_bits(MPOLY_MIN_BITS, ctx->minfo); nmod_mpoly_init3(A, alloc, bits, ctx); }