]> www.ginac.de Git - cln.git/blob - src/float/lfloat/elem/cl_LF_plusp.cc
* */*: Remove cl_boolean, cl_true, and cl_false in favor of built-in
[cln.git] / src / float / lfloat / elem / cl_LF_plusp.cc
1 // plusp().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/lfloat.h"
8
9
10 // Implementation.
11
12 #include "cl_LF.h"
13 #include "cl_LF_impl.h"
14
15 #undef MAYBE_INLINE
16 #define MAYBE_INLINE inline
17 #include "cl_LF_minusp.cc"
18 #include "cl_LF_zerop.cc"
19
20 namespace cln {
21
22 MAYBE_INLINE2
23 bool plusp (const cl_LF& x)
24 {
25         if (minusp(x))
26                 return false; // x<0 -> nein
27         elif (zerop(x))
28                 return false; // x=0 -> nein
29         else
30                 return true; // sonst ist x>0.
31 }
32
33 }  // namespace cln