]> www.ginac.de Git - cln.git/blob - src/float/transcendental/cl_F_ln2.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / transcendental / cl_F_ln2.cc
1 // cl_ln2().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_F_tran.h"
8
9
10 // Implementation.
11
12 #include "cl_F.h"
13 #include "cl_LF.h"
14
15 namespace cln {
16
17 const cl_F cl_ln2 (const cl_F& y)
18 {
19         floattypecase(y
20         ,       return cl_SF_ln2;
21         ,       return cl_FF_ln2;
22         ,       return cl_DF_ln2;
23         ,       return cl_ln2(TheLfloat(y)->len);
24         );
25 }
26
27 }  // namespace cln