]> www.ginac.de Git - cln.git/commitdiff
* Fix typos in dead code introduced in CLN 1.1.0.
authorRichard Kreckel <kreckel@ginac.de>
Thu, 10 Jan 2008 17:22:54 +0000 (17:22 +0000)
committerRichard Kreckel <kreckel@ginac.de>
Thu, 10 Jan 2008 17:22:54 +0000 (17:22 +0000)
src/float/transcendental/cl_F_cosh.cc
src/float/transcendental/cl_F_coshsinh.cc
src/float/transcendental/cl_F_sinh.cc

index b6af726e0bf0f08c78d6148cbf74980a358f3ad1..2d79b89c112b1e9b455664a2e6911ef70669ee6c 100644 (file)
@@ -44,7 +44,7 @@ const cl_F cosh (const cl_F& x)
                        if (TheLfloat(x)->len >= infty) {
                                var cl_LF xx = extend(x,TheLfloat(x)->len+1);
                                var cl_LF_cosh_sinh_t hyp = cl_coshsinh_ratseries(xx);
-                               return cln/float.hyp.cosh,x);
+                               return cl_float(hyp.cosh,x);
                        } else
                        #endif
                        if (TheLfloat(x)->len >= 600) {
index f0df7b7c5cc4993c4292a1c96b34ac2927dcc435..a23b75685559bbd97a47a4269b2ce89f7b3f44cb 100644 (file)
@@ -47,8 +47,8 @@ const cosh_sinh_t cosh_sinh (const cl_F& x)
                                var cl_LF xx = extend(x,TheLfloat(x)->len+1);
                                var cl_LF_cosh_sinh_t hyp = cl_coshsinh_ratseries(xx);
                                return cosh_sinh_t(
-                                       cln/float.hyp.cosh,x),
-                                       cln/float.hyp.sinh,x)
+                                       cl_float(hyp.cosh,x),
+                                       cl_float(hyp.sinh,x)
                                       );
                        } else
                        #endif
index 21c9d4cd2ac65dd4575490f2ea1c8a079c6a00d8..a490271f1cc6167e23a0372bb85989fadf600afb 100644 (file)
@@ -33,7 +33,7 @@ const cl_F sinh (const cl_F& x)
                        if (TheLfloat(x)->len >= infty) {
                                var cl_LF xx = extend(x,TheLfloat(x)->len+1);
                                var cl_LF_cosh_sinh_t hyp = cl_coshsinh_ratseries(xx);
-                               return cln/float.hyp.sinh,x);
+                               return cl_float(hyp.sinh,x);
                        } else
                        #endif
                        if ((TheLfloat(x)->len >= 500)