/* 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_rem( n_fq_poly_t R, const n_fq_poly_t A, const n_fq_poly_t B, const fq_nmod_ctx_t ctx) { fq_nmod_poly_t r, a, b; fq_nmod_poly_init(r, ctx); fq_nmod_poly_init(a, ctx); fq_nmod_poly_init(b, ctx); n_fq_poly_get_fq_nmod_poly(r, R, ctx); n_fq_poly_get_fq_nmod_poly(a, A, ctx); n_fq_poly_get_fq_nmod_poly(b, B, ctx); fq_nmod_poly_rem(r, a, b, ctx); n_fq_poly_set_fq_nmod_poly(R, r, ctx); fq_nmod_poly_clear(r, ctx); fq_nmod_poly_clear(a, ctx); fq_nmod_poly_clear(b, ctx); }