1 /*
2     Copyright (C) 2018 Daniel Schultz
3 
4     This file is part of FLINT.
5 
6     FLINT is free software: you can redistribute it and/or modify it under
7     the terms of the GNU Lesser General Public License (LGPL) as published
8     by the Free Software Foundation; either version 2.1 of the License, or
9     (at your option) any later version.  See <http://www.gnu.org/licenses/>.
10 */
11 
12 #include "fmpz_mpoly.h"
13 
fmpz_mpoly_divrem_ideal(fmpz_mpoly_struct ** Q,fmpz_mpoly_t R,const fmpz_mpoly_t A,fmpz_mpoly_struct * const * B,slong len,const fmpz_mpoly_ctx_t ctx)14 void fmpz_mpoly_divrem_ideal(fmpz_mpoly_struct ** Q,
15      fmpz_mpoly_t R, const fmpz_mpoly_t A, fmpz_mpoly_struct * const * B,
16                                         slong len, const fmpz_mpoly_ctx_t ctx)
17 {
18     /* TODO !!! */
19     fmpz_mpoly_divrem_ideal_monagan_pearce(Q, R, A, B, len, ctx);
20 }
21