You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

305 lines
9.3 KiB

25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
  1. // Public double float operations.
  2. #ifndef _CL_DFLOAT_H
  3. #define _CL_DFLOAT_H
  4. #include "cln/number.h"
  5. #include "cln/dfloat_class.h"
  6. #include "cln/integer_class.h"
  7. #include "cln/float.h"
  8. namespace cln {
  9. CL_DEFINE_AS_CONVERSION(cl_DF)
  10. // Liefert zu einem Double-Float x : (- x), ein DF.
  11. extern const cl_DF operator- (const cl_DF& x);
  12. // compare(x,y) vergleicht zwei Double-Floats x und y.
  13. // Ergebnis: 0 falls x=y, +1 falls x>y, -1 falls x<y.
  14. extern cl_signean compare (const cl_DF& x, const cl_DF& y);
  15. // equal_hashcode(x) liefert einen equal-invarianten Hashcode f�r x.
  16. extern uint32 equal_hashcode (const cl_DF& x);
  17. inline bool operator== (const cl_DF& x, const cl_DF& y)
  18. { return compare(x,y)==0; }
  19. inline bool operator!= (const cl_DF& x, const cl_DF& y)
  20. { return compare(x,y)!=0; }
  21. inline bool operator<= (const cl_DF& x, const cl_DF& y)
  22. { return compare(x,y)<=0; }
  23. inline bool operator< (const cl_DF& x, const cl_DF& y)
  24. { return compare(x,y)<0; }
  25. inline bool operator>= (const cl_DF& x, const cl_DF& y)
  26. { return compare(x,y)>=0; }
  27. inline bool operator> (const cl_DF& x, const cl_DF& y)
  28. { return compare(x,y)>0; }
  29. // minusp(x) == (< x 0)
  30. extern cl_boolean minusp (const cl_DF& x);
  31. // zerop(x) stellt fest, ob ein Double-Float x = 0.0 ist.
  32. extern cl_boolean zerop (const cl_DF& x);
  33. // plusp(x) == (> x 0)
  34. extern cl_boolean plusp (const cl_DF& x);
  35. // Liefert zu zwei Double-Float x und y : (+ x y), ein DF.
  36. extern const cl_DF operator+ (const cl_DF& x, const cl_DF& y);
  37. // Liefert zu zwei Double-Float x und y : (- x y), ein DF.
  38. extern const cl_DF operator- (const cl_DF& x, const cl_DF& y);
  39. // Liefert zu zwei Double-Float x und y : (* x y), ein DF.
  40. extern const cl_DF operator* (const cl_DF& x, const cl_DF& y);
  41. // Liefert zu einem Double-Float x : (* x x), ein DF.
  42. inline const cl_DF square (const cl_DF& x) { return x*x; }
  43. // Liefert zu zwei Double-Float x und y : (/ x y), ein DF.
  44. extern const cl_DF operator/ (const cl_DF& x, const cl_DF& y);
  45. // Liefert zu einem Double-Float x>=0 : (sqrt x), ein DF.
  46. extern const cl_DF sqrt (const cl_DF& x);
  47. // recip(x) liefert (/ x), wo x ein Double-Float ist.
  48. extern const cl_DF recip (const cl_DF& x);
  49. // abs(x) liefert (abs x), wo x ein Double-Float ist.
  50. extern const cl_DF abs (const cl_DF& x);
  51. // (1+ x), wo x ein Double-Float ist.
  52. inline const cl_DF plus1 (const cl_DF& x)
  53. {
  54. extern const cl_DF cl_I_to_DF (const cl_I&);
  55. return x + cl_I_to_DF(cl_I(1));
  56. }
  57. // (1- x), wo x ein Double-Float ist.
  58. inline const cl_DF minus1 (const cl_DF& x)
  59. {
  60. extern const cl_DF cl_I_to_DF (const cl_I&);
  61. return x + cl_I_to_DF(cl_I(-1));
  62. }
  63. // ffloor(x) liefert (ffloor x), wo x ein DF ist.
  64. extern const cl_DF ffloor (const cl_DF& x);
  65. // fceiling(x) liefert (fceiling x), wo x ein DF ist.
  66. extern const cl_DF fceiling (const cl_DF& x);
  67. // ftruncate(x) liefert (ftruncate x), wo x ein DF ist.
  68. extern const cl_DF ftruncate (const cl_DF& x);
  69. // fround(x) liefert (fround x), wo x ein DF ist.
  70. extern const cl_DF fround (const cl_DF& x);
  71. // Return type for frounding operators.
  72. // x / y --> (q,r) with x = y*q+r.
  73. struct cl_DF_fdiv_t {
  74. cl_DF quotient;
  75. cl_DF remainder;
  76. // Constructor.
  77. cl_DF_fdiv_t () {}
  78. cl_DF_fdiv_t (const cl_DF& q, const cl_DF& r) : quotient(q), remainder(r) {}
  79. };
  80. // ffloor2(x) liefert (ffloor x), wo x ein DF ist.
  81. inline const cl_DF_fdiv_t ffloor2 (const cl_DF& x)
  82. { cl_DF q = ffloor(x); return cl_DF_fdiv_t(q,x-q); }
  83. // fceiling2(x) liefert (fceiling x), wo x ein DF ist.
  84. inline const cl_DF_fdiv_t fceiling2 (const cl_DF& x)
  85. { cl_DF q = fceiling(x); return cl_DF_fdiv_t(q,x-q); }
  86. // ftruncate2(x) liefert (ftruncate x), wo x ein DF ist.
  87. inline const cl_DF_fdiv_t ftruncate2 (const cl_DF& x)
  88. { cl_DF q = ftruncate(x); return cl_DF_fdiv_t(q,x-q); }
  89. // fround2(x) liefert (fround x), wo x ein DF ist.
  90. inline const cl_DF_fdiv_t fround2 (const cl_DF& x)
  91. { cl_DF q = fround(x); return cl_DF_fdiv_t(q,x-q); }
  92. // Return type for rounding operators.
  93. // x / y --> (q,r) with x = y*q+r.
  94. struct cl_DF_div_t {
  95. cl_I quotient;
  96. cl_DF remainder;
  97. // Constructor.
  98. cl_DF_div_t () {}
  99. cl_DF_div_t (const cl_I& q, const cl_DF& r) : quotient(q), remainder(r) {}
  100. };
  101. // floor2(x) liefert (floor x), wo x ein DF ist.
  102. inline const cl_DF_div_t floor2 (const cl_DF& x)
  103. {
  104. extern const cl_I cl_DF_to_I (const cl_DF& x);
  105. cl_DF q = ffloor(x);
  106. return cl_DF_div_t(cl_DF_to_I(q),x-q);
  107. }
  108. inline const cl_I floor1 (const cl_DF& x)
  109. {
  110. extern const cl_I cl_DF_to_I (const cl_DF& x);
  111. return cl_DF_to_I(ffloor(x));
  112. }
  113. // ceiling2(x) liefert (ceiling x), wo x ein DF ist.
  114. inline const cl_DF_div_t ceiling2 (const cl_DF& x)
  115. {
  116. extern const cl_I cl_DF_to_I (const cl_DF& x);
  117. cl_DF q = fceiling(x);
  118. return cl_DF_div_t(cl_DF_to_I(q),x-q);
  119. }
  120. inline const cl_I ceiling1 (const cl_DF& x)
  121. {
  122. extern const cl_I cl_DF_to_I (const cl_DF& x);
  123. return cl_DF_to_I(fceiling(x));
  124. }
  125. // truncate2(x) liefert (truncate x), wo x ein DF ist.
  126. inline const cl_DF_div_t truncate2 (const cl_DF& x)
  127. {
  128. extern const cl_I cl_DF_to_I (const cl_DF& x);
  129. cl_DF q = ftruncate(x);
  130. return cl_DF_div_t(cl_DF_to_I(q),x-q);
  131. }
  132. inline const cl_I truncate1 (const cl_DF& x)
  133. {
  134. extern const cl_I cl_DF_to_I (const cl_DF& x);
  135. return cl_DF_to_I(ftruncate(x));
  136. }
  137. // round2(x) liefert (round x), wo x ein DF ist.
  138. inline const cl_DF_div_t round2 (const cl_DF& x)
  139. {
  140. extern const cl_I cl_DF_to_I (const cl_DF& x);
  141. cl_DF q = fround(x);
  142. return cl_DF_div_t(cl_DF_to_I(q),x-q);
  143. }
  144. inline const cl_I round1 (const cl_DF& x)
  145. {
  146. extern const cl_I cl_DF_to_I (const cl_DF& x);
  147. return cl_DF_to_I(fround(x));
  148. }
  149. // floor2(x,y) liefert (floor x y).
  150. extern const cl_DF_div_t floor2 (const cl_DF& x, const cl_DF& y);
  151. inline const cl_I floor1 (const cl_DF& x, const cl_DF& y) { return floor1(x/y); }
  152. // ceiling2(x,y) liefert (ceiling x y).
  153. extern const cl_DF_div_t ceiling2 (const cl_DF& x, const cl_DF& y);
  154. inline const cl_I ceiling1 (const cl_DF& x, const cl_DF& y) { return ceiling1(x/y); }
  155. // truncate2(x,y) liefert (truncate x y).
  156. extern const cl_DF_div_t truncate2 (const cl_DF& x, const cl_DF& y);
  157. inline const cl_I truncate1 (const cl_DF& x, const cl_DF& y) { return truncate1(x/y); }
  158. // round2(x,y) liefert (round x y).
  159. extern const cl_DF_div_t round2 (const cl_DF& x, const cl_DF& y);
  160. inline const cl_I round1 (const cl_DF& x, const cl_DF& y) { return round1(x/y); }
  161. // Return type for decode_float:
  162. struct decoded_dfloat {
  163. cl_DF mantissa;
  164. cl_I exponent;
  165. cl_DF sign;
  166. // Constructor.
  167. decoded_dfloat () {}
  168. decoded_dfloat (const cl_DF& m, const cl_I& e, const cl_DF& s) : mantissa(m), exponent(e), sign(s) {}
  169. };
  170. // decode_float(x) liefert zu einem Float x: (decode-float x).
  171. // x = 0.0 liefert (0.0, 0, 1.0).
  172. // x = (-1)^s * 2^e * m liefert ((-1)^0 * 2^0 * m, e als Integer, (-1)^s).
  173. extern const decoded_dfloat decode_float (const cl_DF& x);
  174. // float_exponent(x) liefert zu einem Float x:
  175. // den Exponenten von (decode-float x).
  176. // x = 0.0 liefert 0.
  177. // x = (-1)^s * 2^e * m liefert e.
  178. extern sintL float_exponent (const cl_DF& x);
  179. // float_radix(x) liefert (float-radix x), wo x ein Float ist.
  180. inline sintL float_radix (const cl_DF& x)
  181. {
  182. (void)x; // unused x
  183. return 2;
  184. }
  185. // float_sign(x) liefert (float-sign x), wo x ein Float ist.
  186. extern const cl_DF float_sign (const cl_DF& x);
  187. // float_digits(x) liefert (float-digits x), wo x ein Float ist.
  188. // < ergebnis: ein uintL >0
  189. extern uintL float_digits (const cl_DF& x);
  190. // float_precision(x) liefert (float-precision x), wo x ein Float ist.
  191. // < ergebnis: ein uintL >=0
  192. extern uintL float_precision (const cl_DF& x);
  193. // integer_decode_float(x) liefert zu einem Float x: (integer-decode-float x).
  194. // x = 0.0 liefert (0, 0, 1).
  195. // x = (-1)^s * 2^e * m bei Float-Precision p liefert
  196. // (Mantisse 2^p * m als Integer, e-p als Integer, (-1)^s als Fixnum).
  197. extern const cl_idecoded_float integer_decode_float (const cl_DF& x);
  198. // scale_float(x,delta) liefert x*2^delta, wo x ein DF ist.
  199. extern const cl_DF scale_float (const cl_DF& x, sintL delta);
  200. extern const cl_DF scale_float (const cl_DF& x, const cl_I& delta);
  201. // max(x,y) liefert (max x y), wo x und y Floats sind.
  202. extern const cl_DF max (const cl_DF& x, const cl_DF& y);
  203. // min(x,y) liefert (min x y), wo x und y Floats sind.
  204. extern const cl_DF min (const cl_DF& x, const cl_DF& y);
  205. // signum(x) liefert (signum x), wo x ein Float ist.
  206. extern const cl_DF signum (const cl_DF& x);
  207. // Konversion zu einem C "float".
  208. extern float float_approx (const cl_DF& x);
  209. // Konversion zu einem C "double".
  210. extern double double_approx (const cl_DF& x);
  211. #ifdef WANT_OBFUSCATING_OPERATORS
  212. // This could be optimized to use in-place operations.
  213. inline cl_DF& operator+= (cl_DF& x, const cl_DF& y) { return x = x + y; }
  214. inline cl_DF& operator++ /* prefix */ (cl_DF& x) { return x = plus1(x); }
  215. inline void operator++ /* postfix */ (cl_DF& x, int dummy) { (void)dummy; x = plus1(x); }
  216. inline cl_DF& operator-= (cl_DF& x, const cl_DF& y) { return x = x - y; }
  217. inline cl_DF& operator-- /* prefix */ (cl_DF& x) { return x = minus1(x); }
  218. inline void operator-- /* postfix */ (cl_DF& x, int dummy) { (void)dummy; x = minus1(x); }
  219. inline cl_DF& operator*= (cl_DF& x, const cl_DF& y) { return x = x * y; }
  220. inline cl_DF& operator/= (cl_DF& x, const cl_DF& y) { return x = x / y; }
  221. #endif
  222. /* */
  223. CL_REQUIRE(cl_ieee)
  224. // Runtime typing support.
  225. extern cl_class cl_class_dfloat;
  226. // Debugging support.
  227. #ifdef CL_DEBUG
  228. extern int cl_DF_debug_module;
  229. CL_FORCE_LINK(cl_DF_debug_dummy, cl_DF_debug_module)
  230. #endif
  231. } // namespace cln
  232. #endif /* _CL_DFLOAT_H */