]> www.ginac.de Git - cln.git/blobdiff - include/cln/ffloat.h
* */*: Convert encoding from ISO 8859-1 to UTF-8.
[cln.git] / include / cln / ffloat.h
index a9ade1c02bd0379ddce90428246fa494766b8cbe..1e98cfcb61cb30fbfdd4bd94e3699fad07176279 100644 (file)
@@ -20,7 +20,7 @@ extern const cl_FF operator- (const cl_FF& x);
 // Ergebnis: 0 falls x=y, +1 falls x>y, -1 falls x<y.
 extern cl_signean compare (const cl_FF& x, const cl_FF& y);
 
-// equal_hashcode(x) liefert einen equal-invarianten Hashcode für x.
+// equal_hashcode(x) liefert einen equal-invarianten Hashcode für x.
 extern uint32 equal_hashcode (const cl_FF& x);
 
 inline bool operator== (const cl_FF& x, const cl_FF& y)
@@ -37,13 +37,13 @@ inline bool operator> (const cl_FF& x, const cl_FF& y)
        { return compare(x,y)>0; }
 
 // minusp(x) == (< x 0)
-extern cl_boolean minusp (const cl_FF& x);
+extern bool minusp (const cl_FF& x);
 
 // zerop(x) stellt fest, ob ein Single-Float x = 0.0 ist.
-extern cl_boolean zerop (const cl_FF& x);
+extern bool zerop (const cl_FF& x);
 
 // plusp(x) == (> x 0)
-extern cl_boolean plusp (const cl_FF& x);
+extern bool plusp (const cl_FF& x);
 
 // Liefert zu zwei Single-Float x und y : (+ x y), ein FF.
 extern const cl_FF operator+ (const cl_FF& x, const cl_FF& y);