/* Copyright (C) 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 2.1 of the License, or (at your option) any later version. See . */ #include "n_poly.h" void n_fq_poly_pow( n_fq_poly_t A, const n_fq_poly_t B, ulong e, const fq_nmod_ctx_t ctx) { fq_nmod_poly_t a, b; fq_nmod_poly_init(a, ctx); fq_nmod_poly_init(b, ctx); n_fq_poly_get_fq_nmod_poly(a, A, ctx); n_fq_poly_get_fq_nmod_poly(b, B, ctx); fq_nmod_poly_pow(a, b, e, ctx); n_fq_poly_set_fq_nmod_poly(A, a, ctx); fq_nmod_poly_clear(a, ctx); fq_nmod_poly_clear(b, ctx); }