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.

411 lines
13 KiB

25 years ago
  1. // Public long float operations.
  2. #ifndef _CL_LFLOAT_H
  3. #define _CL_LFLOAT_H
  4. #include "cl_number.h"
  5. #include "cl_lfloat_class.h"
  6. #include "cl_integer_class.h"
  7. #include "cl_float.h"
  8. CL_DEFINE_AS_CONVERSION(cl_LF)
  9. // Liefert zu einem Long-Float x : (- x), ein LF.
  10. extern const cl_LF operator- (const cl_LF& x);
  11. // cl_compare(x,y) vergleicht zwei Long-Floats x und y.
  12. // Ergebnis: 0 falls x=y, +1 falls x>y, -1 falls x<y.
  13. extern cl_signean cl_compare (const cl_LF& x, const cl_LF& y);
  14. // cl_equal_hashcode(x) liefert einen cl_equal-invarianten Hashcode f�r x.
  15. extern uint32 cl_equal_hashcode (const cl_LF& x);
  16. inline bool operator== (const cl_LF& x, const cl_LF& y)
  17. { return cl_compare(x,y)==0; }
  18. inline bool operator!= (const cl_LF& x, const cl_LF& y)
  19. { return cl_compare(x,y)!=0; }
  20. inline bool operator<= (const cl_LF& x, const cl_LF& y)
  21. { return cl_compare(x,y)<=0; }
  22. inline bool operator< (const cl_LF& x, const cl_LF& y)
  23. { return cl_compare(x,y)<0; }
  24. inline bool operator>= (const cl_LF& x, const cl_LF& y)
  25. { return cl_compare(x,y)>=0; }
  26. inline bool operator> (const cl_LF& x, const cl_LF& y)
  27. { return cl_compare(x,y)>0; }
  28. // minusp(x) == (< x 0)
  29. extern cl_boolean minusp (const cl_LF& x);
  30. // zerop(x) stellt fest, ob ein Long-Float x = 0.0 ist.
  31. extern cl_boolean zerop (const cl_LF& x);
  32. // plusp(x) == (> x 0)
  33. extern cl_boolean plusp (const cl_LF& x);
  34. // Liefert zu zwei Long-Float x und y : (+ x y), ein LF.
  35. extern const cl_LF operator+ (const cl_LF& x, const cl_LF& y);
  36. // Liefert zu zwei Long-Float x und y : (- x y), ein LF.
  37. extern const cl_LF operator- (const cl_LF& x, const cl_LF& y);
  38. // Liefert zu zwei Long-Float x und y : (* x y), ein LF.
  39. extern const cl_LF operator* (const cl_LF& x, const cl_LF& y);
  40. // Spezialfall x oder y Integer oder rationale Zahl.
  41. inline const cl_R operator* (const cl_LF& x, const cl_I& y)
  42. {
  43. extern const cl_R cl_LF_I_mul (const cl_LF&, const cl_I&);
  44. return cl_LF_I_mul(x,y);
  45. }
  46. inline const cl_R operator* (const cl_I& x, const cl_LF& y)
  47. {
  48. extern const cl_R cl_LF_I_mul (const cl_LF&, const cl_I&);
  49. return cl_LF_I_mul(y,x);
  50. }
  51. inline const cl_R operator* (const cl_LF& x, const cl_RA& y)
  52. {
  53. extern const cl_R cl_LF_RA_mul (const cl_LF&, const cl_RA&);
  54. return cl_LF_RA_mul(x,y);
  55. }
  56. inline const cl_R operator* (const cl_RA& x, const cl_LF& y)
  57. {
  58. extern const cl_R cl_LF_RA_mul (const cl_LF&, const cl_RA&);
  59. return cl_LF_RA_mul(y,x);
  60. }
  61. // Dem C++-Compiler mu� man auch das Folgende sagen (wg. `int * cl_LF' u.�.):
  62. inline const cl_R operator* (const int x, const cl_LF& y)
  63. { return cl_I(x) * y; }
  64. inline const cl_R operator* (const unsigned int x, const cl_LF& y)
  65. { return cl_I(x) * y; }
  66. inline const cl_R operator* (const long x, const cl_LF& y)
  67. { return cl_I(x) * y; }
  68. inline const cl_R operator* (const unsigned long x, const cl_LF& y)
  69. { return cl_I(x) * y; }
  70. inline const cl_R operator* (const cl_LF& x, const int y)
  71. { return x * cl_I(y); }
  72. inline const cl_R operator* (const cl_LF& x, const unsigned int y)
  73. { return x * cl_I(y); }
  74. inline const cl_R operator* (const cl_LF& x, const long y)
  75. { return x * cl_I(y); }
  76. inline const cl_R operator* (const cl_LF& x, const unsigned long y)
  77. { return x * cl_I(y); }
  78. // Spezialfall x = y.
  79. // Liefert zu einem Long-Float x : (* x x), ein LF.
  80. extern const cl_LF square (const cl_LF& x);
  81. // Liefert zu zwei Long-Float x und y : (/ x y), ein LF.
  82. extern const cl_LF operator/ (const cl_LF& x, const cl_LF& y);
  83. // Spezialfall x oder y Integer oder rationale Zahl.
  84. inline const cl_LF operator/ (const cl_LF& x, const cl_I& y)
  85. {
  86. extern const cl_LF cl_LF_I_div (const cl_LF& x, const cl_I& y);
  87. return cl_LF_I_div(x,y);
  88. }
  89. inline const cl_R operator/ (const cl_I& x, const cl_LF& y)
  90. {
  91. extern const cl_R cl_I_LF_div (const cl_I& x, const cl_LF& y);
  92. return cl_I_LF_div(x,y);
  93. }
  94. inline const cl_LF operator/ (const cl_LF& x, const cl_RA& y)
  95. {
  96. extern const cl_LF cl_LF_RA_div (const cl_LF& x, const cl_RA& y);
  97. return cl_LF_RA_div(x,y);
  98. }
  99. inline const cl_R operator/ (const cl_RA& x, const cl_LF& y)
  100. {
  101. extern const cl_R cl_RA_LF_div (const cl_RA& x, const cl_LF& y);
  102. return cl_RA_LF_div(x,y);
  103. }
  104. // Dem C++-Compiler mu� man nun auch das Folgende sagen:
  105. inline const cl_LF operator/ (const cl_LF& x, const int y)
  106. { return x / cl_I(y); }
  107. inline const cl_LF operator/ (const cl_LF& x, const unsigned int y)
  108. { return x / cl_I(y); }
  109. inline const cl_LF operator/ (const cl_LF& x, const long y)
  110. { return x / cl_I(y); }
  111. inline const cl_LF operator/ (const cl_LF& x, const unsigned long y)
  112. { return x / cl_I(y); }
  113. inline const cl_R operator/ (const int x, const cl_LF& y)
  114. { return cl_I(x) / y; }
  115. inline const cl_R operator/ (const unsigned int x, const cl_LF& y)
  116. { return cl_I(x) / y; }
  117. inline const cl_R operator/ (const long x, const cl_LF& y)
  118. { return cl_I(x) / y; }
  119. inline const cl_R operator/ (const unsigned long x, const cl_LF& y)
  120. { return cl_I(x) / y; }
  121. // Liefert zu einem Long-Float x>=0 : (sqrt x), ein LF.
  122. extern const cl_LF sqrt (const cl_LF& x);
  123. // recip(x) liefert (/ x), wo x ein Long-Float ist.
  124. extern const cl_LF recip (const cl_LF& x);
  125. // abs(x) liefert (abs x), wo x ein Long-Float ist.
  126. extern const cl_LF abs (const cl_LF& x);
  127. // (1+ x), wo x ein Long-Float ist.
  128. extern const cl_LF plus1 (const cl_LF& x);
  129. // (1- x), wo x ein Long-Float ist.
  130. extern const cl_LF minus1 (const cl_LF& x);
  131. // ffloor(x) liefert (ffloor x), wo x ein LF ist.
  132. extern const cl_LF ffloor (const cl_LF& x);
  133. // fceiling(x) liefert (fceiling x), wo x ein LF ist.
  134. extern const cl_LF fceiling (const cl_LF& x);
  135. // ftruncate(x) liefert (ftruncate x), wo x ein LF ist.
  136. extern const cl_LF ftruncate (const cl_LF& x);
  137. // fround(x) liefert (fround x), wo x ein LF ist.
  138. extern const cl_LF fround (const cl_LF& x);
  139. // Return type for frounding operators.
  140. // x / y --> (q,r) with x = y*q+r.
  141. struct cl_LF_fdiv_t {
  142. cl_LF quotient;
  143. cl_LF remainder;
  144. // Constructor.
  145. cl_LF_fdiv_t () {}
  146. cl_LF_fdiv_t (const cl_LF& q, const cl_LF& r) : quotient(q), remainder(r) {}
  147. };
  148. // ffloor2(x) liefert (ffloor x), wo x ein LF ist.
  149. inline const cl_LF_fdiv_t ffloor2 (const cl_LF& x)
  150. {
  151. extern const cl_LF LF_LF_minus_LF (const cl_LF&, const cl_LF&);
  152. cl_LF q = ffloor(x);
  153. return cl_LF_fdiv_t(q,LF_LF_minus_LF(x,q));
  154. }
  155. // fceiling2(x) liefert (fceiling x), wo x ein LF ist.
  156. inline const cl_LF_fdiv_t fceiling2 (const cl_LF& x)
  157. {
  158. extern const cl_LF LF_LF_minus_LF (const cl_LF&, const cl_LF&);
  159. cl_LF q = fceiling(x);
  160. return cl_LF_fdiv_t(q,LF_LF_minus_LF(x,q));
  161. }
  162. // ftruncate2(x) liefert (ftruncate x), wo x ein LF ist.
  163. inline const cl_LF_fdiv_t ftruncate2 (const cl_LF& x)
  164. {
  165. extern const cl_LF LF_LF_minus_LF (const cl_LF&, const cl_LF&);
  166. cl_LF q = ftruncate(x);
  167. return cl_LF_fdiv_t(q,LF_LF_minus_LF(x,q));
  168. }
  169. // fround2(x) liefert (fround x), wo x ein LF ist.
  170. inline const cl_LF_fdiv_t fround2 (const cl_LF& x)
  171. {
  172. extern const cl_LF LF_LF_minus_LF (const cl_LF&, const cl_LF&);
  173. cl_LF q = fround(x);
  174. return cl_LF_fdiv_t(q,LF_LF_minus_LF(x,q));
  175. }
  176. // Return type for rounding operators.
  177. // x / y --> (q,r) with x = y*q+r.
  178. struct cl_LF_div_t {
  179. cl_I quotient;
  180. cl_LF remainder;
  181. // Constructor.
  182. cl_LF_div_t () {}
  183. cl_LF_div_t (const cl_I& q, const cl_LF& r) : quotient(q), remainder(r) {}
  184. };
  185. // floor2(x) liefert (floor x), wo x ein LF ist.
  186. inline const cl_LF_div_t floor2 (const cl_LF& x)
  187. {
  188. extern const cl_LF LF_LF_minus_LF (const cl_LF&, const cl_LF&);
  189. extern const cl_I cl_LF_to_I (const cl_LF& x);
  190. cl_LF q = ffloor(x);
  191. return cl_LF_div_t(cl_LF_to_I(q),LF_LF_minus_LF(x,q));
  192. }
  193. inline const cl_I floor1 (const cl_LF& x)
  194. {
  195. extern const cl_I cl_LF_to_I (const cl_LF& x);
  196. return cl_LF_to_I(ffloor(x));
  197. }
  198. // ceiling2(x) liefert (ceiling x), wo x ein LF ist.
  199. inline const cl_LF_div_t ceiling2 (const cl_LF& x)
  200. {
  201. extern const cl_LF LF_LF_minus_LF (const cl_LF&, const cl_LF&);
  202. extern const cl_I cl_LF_to_I (const cl_LF& x);
  203. cl_LF q = fceiling(x);
  204. return cl_LF_div_t(cl_LF_to_I(q),LF_LF_minus_LF(x,q));
  205. }
  206. inline const cl_I ceiling1 (const cl_LF& x)
  207. {
  208. extern const cl_I cl_LF_to_I (const cl_LF& x);
  209. return cl_LF_to_I(fceiling(x));
  210. }
  211. // truncate2(x) liefert (truncate x), wo x ein LF ist.
  212. inline const cl_LF_div_t truncate2 (const cl_LF& x)
  213. {
  214. extern const cl_LF LF_LF_minus_LF (const cl_LF&, const cl_LF&);
  215. extern const cl_I cl_LF_to_I (const cl_LF& x);
  216. cl_LF q = ftruncate(x);
  217. return cl_LF_div_t(cl_LF_to_I(q),LF_LF_minus_LF(x,q));
  218. }
  219. inline const cl_I truncate1 (const cl_LF& x)
  220. {
  221. extern const cl_I cl_LF_to_I (const cl_LF& x);
  222. return cl_LF_to_I(ftruncate(x));
  223. }
  224. // round2(x) liefert (round x), wo x ein LF ist.
  225. inline const cl_LF_div_t round2 (const cl_LF& x)
  226. {
  227. extern const cl_LF LF_LF_minus_LF (const cl_LF&, const cl_LF&);
  228. extern const cl_I cl_LF_to_I (const cl_LF& x);
  229. cl_LF q = fround(x);
  230. return cl_LF_div_t(cl_LF_to_I(q),LF_LF_minus_LF(x,q));
  231. }
  232. inline const cl_I round1 (const cl_LF& x)
  233. {
  234. extern const cl_I cl_LF_to_I (const cl_LF& x);
  235. return cl_LF_to_I(fround(x));
  236. }
  237. // floor2(x,y) liefert (floor x y).
  238. extern const cl_LF_div_t floor2 (const cl_LF& x, const cl_LF& y);
  239. inline const cl_I floor1 (const cl_LF& x, const cl_LF& y) { return floor1(x/y); }
  240. // ceiling2(x,y) liefert (ceiling x y).
  241. extern const cl_LF_div_t ceiling2 (const cl_LF& x, const cl_LF& y);
  242. inline const cl_I ceiling1 (const cl_LF& x, const cl_LF& y) { return ceiling1(x/y); }
  243. // truncate2(x,y) liefert (truncate x y).
  244. extern const cl_LF_div_t truncate2 (const cl_LF& x, const cl_LF& y);
  245. inline const cl_I truncate1 (const cl_LF& x, const cl_LF& y) { return truncate1(x/y); }
  246. // round2(x,y) liefert (round x y).
  247. extern const cl_LF_div_t round2 (const cl_LF& x, const cl_LF& y);
  248. inline const cl_I round1 (const cl_LF& x, const cl_LF& y) { return round1(x/y); }
  249. // cl_float(x,y) returns a long float if y is a long float.
  250. inline const cl_LF cl_float (const cl_F& x, const cl_LF& y)
  251. {
  252. extern const cl_F cl_float (const cl_F& x, const cl_F& y);
  253. return The(cl_LF)(cl_float(x,(const cl_F&)y));
  254. }
  255. inline const cl_LF cl_float (const cl_I& x, const cl_LF& y)
  256. {
  257. extern const cl_F cl_float (const cl_I& x, const cl_F& y);
  258. return The(cl_LF)(cl_float(x,(const cl_F&)y));
  259. }
  260. inline const cl_LF cl_float (const cl_RA& x, const cl_LF& y)
  261. {
  262. extern const cl_F cl_float (const cl_RA& x, const cl_F& y);
  263. return The(cl_LF)(cl_float(x,(const cl_F&)y));
  264. }
  265. inline const cl_LF cl_float (int x, const cl_LF& y)
  266. { return cl_float(cl_I(x),y); }
  267. inline const cl_LF cl_float (unsigned int x, const cl_LF& y)
  268. { return cl_float(cl_I(x),y); }
  269. // Return type for decode_float:
  270. struct cl_decoded_lfloat {
  271. cl_LF mantissa;
  272. cl_I exponent;
  273. cl_LF sign;
  274. // Constructor.
  275. cl_decoded_lfloat () {}
  276. cl_decoded_lfloat (const cl_LF& m, const cl_I& e, const cl_LF& s) : mantissa(m), exponent(e), sign(s) {}
  277. };
  278. // decode_float(x) liefert zu einem Float x: (decode-float x).
  279. // x = 0.0 liefert (0.0, 0, 1.0).
  280. // x = (-1)^s * 2^e * m liefert ((-1)^0 * 2^0 * m, e als Integer, (-1)^s).
  281. extern const cl_decoded_lfloat decode_float (const cl_LF& x);
  282. // float_exponent(x) liefert zu einem Float x:
  283. // den Exponenten von (decode-float x).
  284. // x = 0.0 liefert 0.
  285. // x = (-1)^s * 2^e * m liefert e.
  286. extern sintL float_exponent (const cl_LF& x);
  287. // float_radix(x) liefert (float-radix x), wo x ein Float ist.
  288. inline sintL float_radix (const cl_LF& x)
  289. {
  290. (void)x; // unused x
  291. return 2;
  292. }
  293. // float_sign(x) liefert (float-sign x), wo x ein Float ist.
  294. extern const cl_LF float_sign (const cl_LF& x);
  295. // float_digits(x) liefert (float-digits x), wo x ein Float ist.
  296. // < ergebnis: ein uintL >0
  297. extern uintL float_digits (const cl_LF& x);
  298. // float_precision(x) liefert (float-precision x), wo x ein Float ist.
  299. // < ergebnis: ein uintL >=0
  300. extern uintL float_precision (const cl_LF& x);
  301. // integer_decode_float(x) liefert zu einem Float x: (integer-decode-float x).
  302. // x = 0.0 liefert (0, 0, 1).
  303. // x = (-1)^s * 2^e * m bei Float-Precision p liefert
  304. // (Mantisse 2^p * m als Integer, e-p als Integer, (-1)^s als Fixnum).
  305. extern const cl_idecoded_float integer_decode_float (const cl_LF& x);
  306. // scale_float(x,delta) liefert x*2^delta, wo x ein LF ist.
  307. extern const cl_LF scale_float (const cl_LF& x, sintL delta);
  308. extern const cl_LF scale_float (const cl_LF& x, const cl_I& delta);
  309. // max(x,y) liefert (max x y), wo x und y Floats sind.
  310. extern const cl_LF max (const cl_LF& x, const cl_LF& y);
  311. // min(x,y) liefert (min x y), wo x und y Floats sind.
  312. extern const cl_LF min (const cl_LF& x, const cl_LF& y);
  313. // signum(x) liefert (signum x), wo x ein Float ist.
  314. extern const cl_LF signum (const cl_LF& x);
  315. // Konversion zu einem C "float".
  316. extern float cl_float_approx (const cl_LF& x);
  317. // Konversion zu einem C "double".
  318. extern double cl_double_approx (const cl_LF& x);
  319. #ifdef WANT_OBFUSCATING_OPERATORS
  320. // This could be optimized to use in-place operations.
  321. inline cl_LF& operator+= (cl_LF& x, const cl_LF& y) { return x = x + y; }
  322. inline cl_LF& operator++ /* prefix */ (cl_LF& x) { return x = plus1(x); }
  323. inline void operator++ /* postfix */ (cl_LF& x, int dummy) { (void)dummy; x = plus1(x); }
  324. inline cl_LF& operator-= (cl_LF& x, const cl_LF& y) { return x = x - y; }
  325. inline cl_LF& operator-- /* prefix */ (cl_LF& x) { return x = minus1(x); }
  326. inline void operator-- /* postfix */ (cl_LF& x, int dummy) { (void)dummy; x = minus1(x); }
  327. inline cl_LF& operator*= (cl_LF& x, const cl_LF& y) { return x = x * y; }
  328. inline cl_LF& operator/= (cl_LF& x, const cl_LF& y) { return x = x / y; }
  329. #endif
  330. // Runtime typing support.
  331. extern cl_class cl_class_lfloat;
  332. // Debugging support.
  333. #ifdef CL_DEBUG
  334. extern int cl_LF_debug_module;
  335. static void* const cl_LF_debug_dummy[] = { &cl_LF_debug_dummy,
  336. &cl_LF_debug_module
  337. };
  338. #endif
  339. #endif /* _CL_LFLOAT_H */