]> www.ginac.de Git - cln.git/blobdiff - src/float/ffloat/elem/cl_FF_plusp.cc
* */*: Remove cl_boolean, cl_true, and cl_false in favor of built-in
[cln.git] / src / float / ffloat / elem / cl_FF_plusp.cc
index 93aa87bbeb7a9cb558f7d67e55197f7917db5119..46d6a4972e8162095d292cdb4c11b23d3adb9536 100644 (file)
 namespace cln {
 
 MAYBE_INLINE2
-cl_boolean plusp (const cl_FF& x)
+bool plusp (const cl_FF& x)
 {
        if (minusp(x))
-               return cl_false; // x<0 -> nein
+               return false; // x<0 -> nein
        elif (zerop(x))
-               return cl_false; // x=0 -> nein
+               return false; // x=0 -> nein
        else
-               return cl_true; // sonst ist x>0.
+               return true; // sonst ist x>0.
 }
 
 }  // namespace cln