1 /*
2     Copyright (C) 2017 Luca De Feo
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 "fq_embed.h"
13 #include "fq_poly.h"
14 
15 #ifdef T
16 #undef T
17 #endif
18 #ifdef B
19 #undef B
20 #endif
21 
22 #define T fq
23 #define CAP_T FQ
24 #define B fmpz_mod
25 #include "fq_embed_templates/embed.c"
26 #undef B
27 #undef CAP_T
28 #undef T
29