]> www.ginac.de Git - cln.git/blob - src/float/transcendental/cl_F_exp1.cc
96fe892d2fd868a75882b6c5aa978b66a9c8b8d4
[cln.git] / src / float / transcendental / cl_F_exp1.cc
1 // exp1().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/float.h"
8
9
10 // Implementation.
11
12 #include "cl_F_tran.h"
13 #include "cl_F.h"
14 #include "cl_LF.h"
15
16 namespace cln {
17
18 const cl_F exp1 (const cl_F& y)
19 {
20         floattypecase(y
21         ,       return cl_SF_exp1;
22         ,       return cl_FF_exp1;
23         ,       return cl_DF_exp1;
24         ,       return exp1(TheLfloat(y)->len);
25         );
26 }
27
28 }  // namespace cln