]> www.ginac.de Git - cln.git/blobdiff - src/float/transcendental/cl_F_ln10_var.cc
Replace unused macro with cl_unused.
[cln.git] / src / float / transcendental / cl_F_ln10_var.cc
index 18b32f4c5f051d586da929bf33ab9027ab96bf8f..579a7ef960dc865cc0ce1803f0fb7fe0399bb4bf 100644 (file)
@@ -1,33 +1,51 @@
 // cl_F_ln10.
 
 // General includes.
-#include "cl_sysdep.h"
-
-CL_PROVIDE(cl_F_ln10_var)
+#include "base/cl_sysdep.h"
 
 // Specification.
-#include "cl_F_tran.h"
+#include "float/transcendental/cl_F_tran.h"
 
 
 // Implementation.
 
-#include "cl_DS.h"
-#include "cl_LF.h"
-#include "cl_LF_impl.h"
-#include "cl_F.h"
+#include "base/digitseq/cl_DS.h"
+#include "float/lfloat/cl_LF.h"
+#include "float/lfloat/cl_LF_impl.h"
+#include "float/cl_F.h"
 
-// Mantisse von ln(10) :
-  static const uintD ln10_mantisse [64/intDsize] =
-    #include "cl_F_ln10_var.h"
+namespace cln {
 
-cl_LF cl_LF_ln10 = encode_LF_array(0,2,ln10_mantisse,64/intDsize);
+cl_LF& cl_LF_ln10()
+{
+       // Mantisse von ln(10) :
+       static const uintD ln10_mantisse [64/intDsize] =
+               #include "cl_F_ln10_var.h"
+       static cl_LF val = encode_LF_array(0,2,ln10_mantisse,64/intDsize);
+       return val;
+}
 
-// Problem: If someone changes cl_free_hook, the destructor of this
+// Problem: If someone changes free_hook, the destructor of this
 // will call the new hook, passing it some pointer obtained by the old
-// cl_malloc_hook. ??
+// malloc_hook. ??
+
+const cl_SF& cl_SF_ln10()
+{
+       static const cl_SF val = cl_LF_to_SF(cl_LF_ln10());
+       return val;
+}
+
+const cl_FF& cl_FF_ln10()
+{
+       static const cl_FF val = cl_LF_to_FF(cl_LF_ln10());
+       return val;
+}
+
+const cl_DF& cl_DF_ln10()
+{
+       static const cl_DF val = cl_LF_to_DF(cl_LF_ln10());
+       return val;
+}
 
-const cl_SF cl_SF_ln10 = cl_LF_to_SF(cl_LF_ln10);
-const cl_FF cl_FF_ln10 = cl_LF_to_FF(cl_LF_ln10);
-const cl_DF cl_DF_ln10 = cl_LF_to_DF(cl_LF_ln10);
+}  // namespace cln
 
-CL_PROVIDE_END(cl_F_ln10_var)