This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
includes.h
79 lines (73 loc) · 2.16 KB
/
includes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#ifndef MAIN_INCLUDE_FILE
#define MAIN_INCLUDE_FILE
#include "xcode_jlcxx_workaround.h"
#include <string>
#include <cstring>
#include <iostream>
#include <tuple>
#include "jlcxx/jlcxx.hpp"
#include "jlcxx/const_array.hpp"
#include "jlcxx/array.hpp"
#include "jlcxx/tuple.hpp"
#include <gmp.h>
#include <omalloc/omalloc.h>
#include <misc/intvec.h>
#include <misc/auxiliary.h>
#include <reporter/reporter.h>
#include <resources/feFopen.h>
#include <coeffs/coeffs.h>
#include <coeffs/longrat.h>
#include <coeffs/numbers.h>
#include <coeffs/bigintmat.h>
#include <coeffs/rmodulon.h>
#include <polys/clapsing.h>
#include <polys/monomials/ring.h>
#include <polys/monomials/p_polys.h>
#include <polys/prCopy.h>
#include <polys/simpleideals.h>
#include "polys/ext_fields/algext.h"
#include "polys/ext_fields/transext.h"
#include <kernel/fglm/fglm.h>
#include <kernel/GBEngine/kstd1.h>
#include <kernel/GBEngine/nc.h>
#include <kernel/GBEngine/syz.h>
#include <kernel/GBEngine/tgb.h>
#include <kernel/ideals.h>
#include <kernel/polys.h>
#include <kernel/combinatorics/stairc.h>
#include <kernel/combinatorics/hilb.h>
#include <Singular/grammar.h>
#include <Singular/libsingular.h>
#include <Singular/fevoices.h>
#include <Singular/ipshell.h>
#include <Singular/ipid.h>
#include <Singular/subexpr.h>
#include <Singular/lists.h>
#include "Singular/maps_ip.h"
#include <Singular/idrec.h>
#include <Singular/tok.h>
#include <Singular/links/silink.h>
#include <Singular/fehelp.h>
namespace jlcxx {
template <> struct IsMirroredType<n_coeffType> : std::true_type {
};
template <> struct IsMirroredType<rRingOrder_t> : std::true_type {
};
template <> struct IsMirroredType<n_Procs_s> : std::false_type {
};
template <> struct IsMirroredType<snumber> : std::false_type {
};
template <> struct IsMirroredType<sip_smap> : std::false_type {
};
template <> struct IsMirroredType<ssyStrategy> : std::false_type {
};
template <> struct IsMirroredType<ip_smatrix> : std::false_type {
};
template <> struct IsMirroredType<sip_sideal> : std::false_type {
};
template <> struct IsMirroredType<spolyrec> : std::false_type {
};
template <> struct IsMirroredType<__mpz_struct> : std::false_type {
};
} // namespace jlcxx
#endif