1 /* fflas_L3_inst.h
2  * Copyright (C) 2015 FFLAS-FFPACK group
3  * Written by Clement Pernet <Clement.Pernet@imag.fr>
4  *
5  *
6  * ========LICENCE========
7  * This file is part of the library FFLAS-FFPACK.
8  *
9  * FFLAS-FFPACK is free software: you can redistribute it and/or modify
10  * it under the terms of the  GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  * ========LICENCE========
23  *.
24  */
25 #include "fflas-ffpack/fflas-ffpack-config.h"
26 
27 #ifndef __FFLAS_L3_INST_C
28 #define __FFLAS_L3_INST_C
29 #include "givaro/modular.h"
30 #include "givaro/modular-balanced.h"
31 #include "fflas-ffpack/fflas/fflas.h"
32 #include "fflas-ffpack/fflas/fflas_helpers.inl"
33 
34 #ifdef INST_OR_DECL
35 #undef INST_OR_DECL
36 #endif
37 #define INST_OR_DECL
38 
39 #define FFLAS_FIELD Givaro::ModularBalanced
40 #define FFLAS_ELT double
41 #include "fflas_L3_inst_implem.inl"
42 #undef FFLAS_ELT
43 #define FFLAS_ELT float
44 #include "fflas_L3_inst_implem.inl"
45 #undef FFLAS_ELT
46 #define FFLAS_ELT int64_t
47 #include "fflas_L3_inst_implem.inl"
48 #undef FFLAS_ELT
49 #undef FFLAS_FIELD
50 
51 #define FFLAS_FIELD Givaro::Modular
52 #define FFLAS_ELT double
53 #include "fflas_L3_inst_implem.inl"
54 #undef FFLAS_ELT
55 #define FFLAS_ELT float
56 #include "fflas_L3_inst_implem.inl"
57 #undef FFLAS_ELT
58 #define FFLAS_ELT int64_t
59 #include "fflas_L3_inst_implem.inl"
60 #undef FFLAS_ELT
61 #undef FFLAS_FIELD
62 
63 #endif // __FFLAS_L3_INST_C
64 /* -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
65 // vim:sts=4:sw=4:ts=4:et:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s
66