]> www.ginac.de Git - cln.git/blob - src/float/transcendental/cl_F_zeta_int_f.cc
78cf29e8edc8ec64654f7f79e537c5be9ac98c84
[cln.git] / src / float / transcendental / cl_F_zeta_int_f.cc
1 // cl_zeta().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_float.h"
8
9
10 // Implementation.
11
12 #include "cl_F.h"
13 #include "cl_F_tran.h"
14 #include "cl_LF.h"
15
16 const cl_F cl_zeta (int s, cl_float_format_t f)
17 {
18         floatformatcase((uintL)f
19         ,       return cl_LF_to_SF(cl_zeta(s,LF_minlen));
20         ,       return cl_LF_to_FF(cl_zeta(s,LF_minlen));
21         ,       return cl_LF_to_DF(cl_zeta(s,LF_minlen));
22         ,       return cl_zeta(s,len);
23         );
24 }