]> www.ginac.de Git - cln.git/blob - src/real/elem/cl_R_zerop.cc
* */*: Remove cl_boolean, cl_true, and cl_false in favor of built-in
[cln.git] / src / real / elem / cl_R_zerop.cc
1 // zerop().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/real.h"
8
9
10 // Implementation.
11
12 #include "cl_R.h"
13 #include "cl_RA.h"
14 #include "cl_I.h"
15 #include "cl_F.h"
16
17 #undef MAYBE_INLINE
18 #define MAYBE_INLINE inline
19 #include "cl_SF_zerop.cc"
20 #include "cl_FF_zerop.cc"
21 #include "cl_DF_zerop.cc"
22 #include "cl_LF_zerop.cc"
23
24 namespace cln {
25
26 bool zerop (const cl_R& x)
27 #if 0
28 GEN_R_OP1_2(x, zerop, return)
29 #else // fully inlined, faster
30 GEN_R_OP1_7(x, zerop, return)
31 #endif
32
33 }  // namespace cln