/*
Copyright (C) 2017 - 2020 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 3 of the License, or
(at your option) any later version. See <https://www.gnu.org/licenses/>.
*/
#include "mpoly.h"
#include "nmod_mpoly.h"
int nmod_mpoly_term_exp_fits_ui(const nmod_mpoly_t A, slong i, const nmod_mpoly_ctx_t ctx)
{
return A->bits <= FLINT_BITS ? 1
: mpoly_term_exp_fits_ui(A->exps, A->bits, i, ctx->minfo);
}
int nmod_mpoly_term_exp_fits_si(const nmod_mpoly_t A, slong i, const nmod_mpoly_ctx_t ctx)
{
return A->bits <= FLINT_BITS ? 1
: mpoly_term_exp_fits_si(A->exps, A->bits, i, ctx->minfo);
}