]> www.ginac.de Git - cln.git/blob - src/float/lfloat/elem/cl_LF_globals.cc
Extend the exponent range from 32 bits to 64 bits on selected platforms.
[cln.git] / src / float / lfloat / elem / cl_LF_globals.cc
1 // Global variables for cl_LF.
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 CL_PROVIDE(cl_LF_globals)
7
8 // Specification.
9 #include "cln/number.h"
10
11
12 // Implementation.
13
14 #include "cl_LF.h"
15 #include "cl_LF_impl.h"
16
17 namespace cln {
18
19 // Only needed for the default constructor of cl_LF.
20 const cl_LF cl_LF_0 = encode_LF0(LF_minlen); // 0.0L0
21
22 }  // namespace cln
23
24 CL_PROVIDE_END(cl_LF_globals)