]> www.ginac.de Git - cln.git/blobdiff - src/float/transcendental/cl_LF_ln10.cc
* */*: Convert encoding from ISO 8859-1 to UTF-8.
[cln.git] / src / float / transcendental / cl_LF_ln10.cc
index 1473e1e3daf5730259c292e427ad860794f7969e..ae57e3321189bb61c5f3008c77bb70b6378bc88f 100644 (file)
@@ -48,20 +48,20 @@ static inline const cl_LF compute_ln10_p2357 (uintC len)
 
 const cl_LF cl_ln10 (uintC len)
 {
-       var uintC oldlen = TheLfloat(cl_LF_ln10)->len; // vorhandene Länge
+       var uintC oldlen = TheLfloat(cl_LF_ln10)->len; // vorhandene Länge
        if (len < oldlen)
                return shorten(cl_LF_ln10,len);
        if (len == oldlen)
                return cl_LF_ln10;
 
        // TheLfloat(cl_LF_ln10)->len um mindestens einen konstanten Faktor
-       // > 1 wachsen lassen, damit es nicht zu häufig nachberechnet wird:
+       // > 1 wachsen lassen, damit es nicht zu häufig nachberechnet wird:
        var uintC newlen = len;
        oldlen += floor(oldlen,2); // oldlen * 3/2
        if (newlen < oldlen)
                newlen = oldlen;
 
-       // gewünschte > vorhandene Länge -> muß nachberechnen:
+       // gewünschte > vorhandene Länge -> muß nachberechnen:
        cl_LF_ln10 = compute_ln10(newlen);
        return (len < newlen ? shorten(cl_LF_ln10,len) : cl_LF_ln10);
 }