]> www.ginac.de Git - cln.git/blob - src/real/elem/cl_R_zerop.cc
Finalize CLN 1.3.7 release.
[cln.git] / src / real / elem / cl_R_zerop.cc
1 // zerop().
2
3 // General includes.
4 #include "base/cl_sysdep.h"
5
6 // Specification.
7 #include "cln/real.h"
8
9
10 // Implementation.
11
12 #define zerop zerop_inline
13 #include "real/cl_R.h"
14 #include "rational/cl_RA.h"
15 #include "integer/cl_I.h"
16 #undef zerop
17 #include "float/cl_F.h"
18
19 #include "base/cl_inline.h"
20 #include "float/sfloat/elem/cl_SF_zerop.cc"
21 #include "float/ffloat/elem/cl_FF_zerop.cc"
22 #include "float/dfloat/elem/cl_DF_zerop.cc"
23 #include "float/lfloat/elem/cl_LF_zerop.cc"
24
25 namespace cln {
26
27 bool CL_FLATTEN zerop (const cl_R& x)
28 #if 0
29 GEN_R_OP1_2(x, zerop, return)
30 #else // fully inlined, faster
31 GEN_R_OP1_7(x, zerop_inline, return)
32 #endif
33
34 }  // namespace cln