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.

308 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
25 years ago
  1. // Public single float operations.
  2. #ifndef _CL_FFLOAT_H
  3. #define _CL_FFLOAT_H
  4. #include "cln/number.h"
  5. #include "cln/ffloat_class.h"
  6. #include "cln/integer_class.h"
  7. #include "cln/float.h"
  8. namespace cln {
  9. CL_DEFINE_AS_CONVERSION(cl_FF)
  10. // Liefert zu einem Single-Float x : (- x), ein FF.
  11. extern const cl_FF operator- (const cl_FF& x);
  12. // compare(x,y) vergleicht zwei Single-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_FF& x, const cl_FF& y);
  15. // equal_hashcode(x) liefert einen equal-invarianten Hashcode f�r x.
  16. extern uint32 equal_hashcode (const cl_FF& x);
  17. inline bool operator== (const cl_FF& x, const cl_FF& y)
  18. { return compare(x,y)==0; }
  19. inline bool operator!= (const cl_FF& x, const cl_FF& y)
  20. { return compare(x,y)!=0; }
  21. inline bool operator<= (const cl_FF& x, const cl_FF& y)
  22. { return compare(x,y)<=0; }
  23. inline bool operator< (const cl_FF& x, const cl_FF& y)
  24. { return compare(x,y)<0; }
  25. inline bool operator>= (const cl_FF& x, const cl_FF& y)
  26. { return compare(x,y)>=0; }
  27. inline bool operator> (const cl_FF& x, const cl_FF& y)
  28. { return compare(x,y)>0; }
  29. // minusp(x) == (< x 0)
  30. extern cl_boolean minusp (const cl_FF& x);
  31. // zerop(x) stellt fest, ob ein Single-Float x = 0.0 ist.
  32. extern cl_boolean zerop (const cl_FF& x);
  33. // plusp(x) == (> x 0)
  34. extern cl_boolean plusp (const cl_FF& x);
  35. // Liefert zu zwei Single-Float x und y : (+ x y), ein FF.
  36. extern const cl_FF operator+ (const cl_FF& x, const cl_FF& y);
  37. // Liefert zu zwei Single-Float x und y : (- x y), ein FF.
  38. extern const cl_FF operator- (const cl_FF& x, const cl_FF& y);
  39. // Liefert zu zwei Single-Float x und y : (* x y), ein FF.
  40. extern const cl_FF operator* (const cl_FF& x, const cl_FF& y);
  41. // Liefert zu einem Single-Float x : (* x x), ein FF.
  42. inline const cl_FF square (const cl_FF& x) { return x*x; }
  43. // Liefert zu zwei Single-Float x und y : (/ x y), ein FF.
  44. extern const cl_FF operator/ (const cl_FF& x, const cl_FF& y);
  45. // Liefert zu einem Single-Float x>=0 : (sqrt x), ein FF.
  46. extern const cl_FF sqrt (const cl_FF& x);
  47. // recip(x) liefert (/ x), wo x ein Single-Float ist.
  48. extern const cl_FF recip (const cl_FF& x);
  49. // abs(x) liefert (abs x), wo x ein Single-Float ist.
  50. extern const cl_FF abs (const cl_FF& x);
  51. // (1+ x), wo x ein Single-Float ist.
  52. inline const cl_FF plus1 (const cl_FF& x)
  53. {
  54. extern const cl_FF cl_I_to_FF (const cl_I&);
  55. return x + cl_I_to_FF(cl_I(1));
  56. }
  57. // (1- x), wo x ein Single-Float ist.
  58. inline const cl_FF minus1 (const cl_FF& x)
  59. {
  60. extern const cl_FF cl_I_to_FF (const cl_I&);
  61. return x + cl_I_to_FF(cl_I(-1));
  62. }
  63. // ffloor(x) liefert (ffloor x), wo x ein FF ist.
  64. extern const cl_FF ffloor (const cl_FF& x);
  65. // fceiling(x) liefert (fceiling x), wo x ein FF ist.
  66. extern const cl_FF fceiling (const cl_FF& x);
  67. // ftruncate(x) liefert (ftruncate x), wo x ein FF ist.
  68. extern const cl_FF ftruncate (const cl_FF& x);
  69. // fround(x) liefert (fround x), wo x ein FF ist.
  70. extern const cl_FF fround (const cl_FF& x);
  71. // Return type for frounding operators.
  72. // x / y --> (q,r) with x = y*q+r.
  73. struct cl_FF_fdiv_t {
  74. cl_FF quotient;
  75. cl_FF remainder;
  76. // Constructor.
  77. cl_FF_fdiv_t () {}
  78. cl_FF_fdiv_t (const cl_FF& q, const cl_FF& r) : quotient(q), remainder(r) {}
  79. };
  80. // ffloor2(x) liefert (ffloor x), wo x ein FF ist.
  81. inline const cl_FF_fdiv_t ffloor2 (const cl_FF& x)
  82. { cl_FF q = ffloor(x); return cl_FF_fdiv_t(q,x-q); }
  83. // fceiling2(x) liefert (fceiling x), wo x ein FF ist.
  84. inline const cl_FF_fdiv_t fceiling2 (const cl_FF& x)
  85. { cl_FF q = fceiling(x); return cl_FF_fdiv_t(q,x-q); }
  86. // ftruncate2(x) liefert (ftruncate x), wo x ein FF ist.
  87. inline const cl_FF_fdiv_t ftruncate2 (const cl_FF& x)
  88. { cl_FF q = ftruncate(x); return cl_FF_fdiv_t(q,x-q); }
  89. // fround2(x) liefert (fround x), wo x ein FF ist.
  90. inline const cl_FF_fdiv_t fround2 (const cl_FF& x)
  91. { cl_FF q = fround(x); return cl_FF_fdiv_t(q,x-q); }
  92. // Return type for rounding operators.
  93. // x / y --> (q,r) with x = y*q+r.
  94. struct cl_FF_div_t {
  95. cl_I quotient;
  96. cl_FF remainder;
  97. // Constructor.
  98. cl_FF_div_t () {}
  99. cl_FF_div_t (const cl_I& q, const cl_FF& r) : quotient(q), remainder(r) {}
  100. };
  101. // floor2(x) liefert (floor x), wo x ein FF ist.
  102. inline const cl_FF_div_t floor2 (const cl_FF& x)
  103. {
  104. extern const cl_I cl_FF_to_I (const cl_FF& x);
  105. cl_FF q = ffloor(x);
  106. return cl_FF_div_t(cl_FF_to_I(q),x-q);
  107. }
  108. inline const cl_I floor1 (const cl_FF& x)
  109. {
  110. extern const cl_I cl_FF_to_I (const cl_FF& x);
  111. return cl_FF_to_I(ffloor(x));
  112. }
  113. // ceiling2(x) liefert (ceiling x), wo x ein FF ist.
  114. inline const cl_FF_div_t ceiling2 (const cl_FF& x)
  115. {
  116. extern const cl_I cl_FF_to_I (const cl_FF& x);
  117. cl_FF q = fceiling(x);
  118. return cl_FF_div_t(cl_FF_to_I(q),x-q);
  119. }
  120. inline const cl_I ceiling1 (const cl_FF& x)
  121. {
  122. extern const cl_I cl_FF_to_I (const cl_FF& x);
  123. return cl_FF_to_I(fceiling(x));
  124. }
  125. // truncate2(x) liefert (truncate x), wo x ein FF ist.
  126. inline const cl_FF_div_t truncate2 (const cl_FF& x)
  127. {
  128. extern const cl_I cl_FF_to_I (const cl_FF& x);
  129. cl_FF q = ftruncate(x);
  130. return cl_FF_div_t(cl_FF_to_I(q),x-q);
  131. }
  132. inline const cl_I truncate1 (const cl_FF& x)
  133. {
  134. extern const cl_I cl_FF_to_I (const cl_FF& x);
  135. return cl_FF_to_I(ftruncate(x));
  136. }
  137. // round2(x) liefert (round x), wo x ein FF ist.
  138. inline const cl_FF_div_t round2 (const cl_FF& x)
  139. {
  140. extern const cl_I cl_FF_to_I (const cl_FF& x);
  141. cl_FF q = fround(x);
  142. return cl_FF_div_t(cl_FF_to_I(q),x-q);
  143. }
  144. inline const cl_I round1 (const cl_FF& x)
  145. {
  146. extern const cl_I cl_FF_to_I (const cl_FF& x);
  147. return cl_FF_to_I(fround(x));
  148. }
  149. // floor2(x,y) liefert (floor x y).
  150. extern const cl_FF_div_t floor2 (const cl_FF& x, const cl_FF& y);
  151. inline const cl_I floor1 (const cl_FF& x, const cl_FF& y) { return floor1(x/y); }
  152. // ceiling2(x,y) liefert (ceiling x y).
  153. extern const cl_FF_div_t ceiling2 (const cl_FF& x, const cl_FF& y);
  154. inline const cl_I ceiling1 (const cl_FF& x, const cl_FF& y) { return ceiling1(x/y); }
  155. // truncate2(x,y) liefert (truncate x y).
  156. extern const cl_FF_div_t truncate2 (const cl_FF& x, const cl_FF& y);
  157. inline const cl_I truncate1 (const cl_FF& x, const cl_FF& y) { return truncate1(x/y); }
  158. // round2(x,y) liefert (round x y).
  159. extern const cl_FF_div_t round2 (const cl_FF& x, const cl_FF& y);
  160. inline const cl_I round1 (const cl_FF& x, const cl_FF& y) { return round1(x/y); }
  161. // Return type for decode_float:
  162. struct decoded_ffloat {
  163. cl_FF mantissa;
  164. cl_I exponent;
  165. cl_FF sign;
  166. // Constructor.
  167. decoded_ffloat () {}
  168. decoded_ffloat (const cl_FF& m, const cl_I& e, const cl_FF& 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_ffloat decode_float (const cl_FF& 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_FF& x);
  179. // float_radix(x) liefert (float-radix x), wo x ein Float ist.
  180. inline sintL float_radix (const cl_FF& 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_FF float_sign (const cl_FF& 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_FF& 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_FF& 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_FF& x);
  198. // scale_float(x,delta) liefert x*2^delta, wo x ein FF ist.
  199. extern const cl_FF scale_float (const cl_FF& x, sintL delta);
  200. extern const cl_FF scale_float (const cl_FF& x, const cl_I& delta);
  201. // max(x,y) liefert (max x y), wo x und y Floats sind.
  202. extern const cl_FF max (const cl_FF& x, const cl_FF& y);
  203. // min(x,y) liefert (min x y), wo x und y Floats sind.
  204. extern const cl_FF min (const cl_FF& x, const cl_FF& y);
  205. // signum(x) liefert (signum x), wo x ein Float ist.
  206. extern const cl_FF signum (const cl_FF& x);
  207. // Konversion zu einem C "float".
  208. extern float float_approx (const cl_FF& x);
  209. // Konversion zu einem C "double".
  210. extern double double_approx (const cl_FF& x);
  211. #ifdef WANT_OBFUSCATING_OPERATORS
  212. // This could be optimized to use in-place operations.
  213. inline cl_FF& operator+= (cl_FF& x, const cl_FF& y) { return x = x + y; }
  214. inline cl_FF& operator++ /* prefix */ (cl_FF& x) { return x = plus1(x); }
  215. inline void operator++ /* postfix */ (cl_FF& x, int dummy) { (void)dummy; x = plus1(x); }
  216. inline cl_FF& operator-= (cl_FF& x, const cl_FF& y) { return x = x - y; }
  217. inline cl_FF& operator-- /* prefix */ (cl_FF& x) { return x = minus1(x); }
  218. inline void operator-- /* postfix */ (cl_FF& x, int dummy) { (void)dummy; x = minus1(x); }
  219. inline cl_FF& operator*= (cl_FF& x, const cl_FF& y) { return x = x * y; }
  220. inline cl_FF& operator/= (cl_FF& x, const cl_FF& y) { return x = x / y; }
  221. #endif
  222. CL_REQUIRE(cl_ieee)
  223. /* */
  224. // Runtime typing support.
  225. extern cl_class cl_class_ffloat;
  226. #ifdef CL_WIDE_POINTERS
  227. CL_FORCE_LINK(cl_FF_classes_dummy, cl_class_ffloat)
  228. #endif
  229. // Debugging support.
  230. #ifdef CL_DEBUG
  231. extern int cl_FF_debug_module;
  232. CL_FORCE_LINK(cl_FF_debug_dummy, cl_FF_debug_module)
  233. #endif
  234. } // namespace cln
  235. #endif /* _CL_FFLOAT_H */