]> www.ginac.de Git - cln.git/blob - src/float/transcendental/cl_F_catalanconst_var.cc
733bc2ea7d189a89a9c5981129e9211d23bddac3
[cln.git] / src / float / transcendental / cl_F_catalanconst_var.cc
1 // cl_F_catalanconst.
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 CL_PROVIDE(cl_F_catalanconst_var)
7
8 // Specification.
9 #include "cl_F_tran.h"
10
11
12 // Implementation.
13
14 #include "cl_DS.h"
15 #include "cl_LF.h"
16 #include "cl_LF_impl.h"
17 #include "cl_F.h"
18
19 // Mantisse der Catalanschen Konstante :
20   static const uintD catalanconst_mantisse [64/intDsize] =
21     #include "cl_F_catalanconst_var.h"
22
23 cl_LF cl_LF_catalanconst = encode_LF_array(0,0,catalanconst_mantisse,64/intDsize);
24
25 // Problem: If someone changes cl_free_hook, the destructor of this
26 // will call the new hook, passing it some pointer obtained by the old
27 // cl_malloc_hook. ??
28
29 const cl_SF cl_SF_catalanconst = cl_LF_to_SF(cl_LF_catalanconst);
30 const cl_FF cl_FF_catalanconst = cl_LF_to_FF(cl_LF_catalanconst);
31 const cl_DF cl_DF_catalanconst = cl_LF_to_DF(cl_LF_catalanconst);
32
33 CL_PROVIDE_END(cl_F_catalanconst_var)