]> www.ginac.de Git - cln.git/blob - include/cln/integer.h
Remove CL_REQUIRE/CL_PROVIDE(cl_I_factorial) as it's not really necessary.
[cln.git] / include / cln / integer.h
1 // Public integer operations.
2
3 #ifndef _CL_INTEGER_H
4 #define _CL_INTEGER_H
5
6 #include "cln/number.h"
7 #include "cln/integer_class.h"
8 #include "cln/exception.h"
9 #include "cln/random.h"
10
11 namespace cln {
12
13 CL_DEFINE_AS_CONVERSION(cl_I)
14
15
16 // Konversion Integer >=0, <2^32 nach uintL.
17 // Wandelt Integer >=0 in Unsigned Longword um.
18 // cl_I_to_UL(obj)
19 // > obj: Integer, sollte >=0, <2^32 sein
20 // < ergebnis: der Wert des Integer als 32-Bit-Zahl.
21   extern uint32 cl_I_to_UL (const cl_I& obj);
22
23 // Konversion Integer >=-2^31, <2^31 nach sintL.
24 // Wandelt Integer in Signed Longword um.
25 // cl_I_to_L(obj)
26 // > obj: Integer, sollte >=-2^31, <2^31 sein
27 // < ergebnis: der Wert des Integer als 32-Bit-Zahl.
28   extern sint32 cl_I_to_L (const cl_I& obj);
29
30 // Convert an integer to a C `int' or `unsigned int'.
31 #if (int_bitsize==32)
32   inline int          cl_I_to_int  (const cl_I& x) { return cl_I_to_L(x);  }
33   inline unsigned int cl_I_to_uint (const cl_I& x) { return cl_I_to_UL(x); }
34 #endif
35
36 // Convert an integer to a 64-bit 'quad' type.
37 #ifdef intQsize
38  extern uint64 cl_I_to_UQ (const cl_I& obj);
39  extern sint64 cl_I_to_Q (const cl_I& obj);
40 #endif
41
42 // Convert an integer to a C `long' or `unsigned long'.
43 #if (long_bitsize==32)
44   inline long          cl_I_to_long  (const cl_I& x) { return cl_I_to_L(x);  }
45   inline unsigned long cl_I_to_ulong (const cl_I& x) { return cl_I_to_UL(x); }
46 #elif (long_bitsize==64)
47   inline long          cl_I_to_long  (const cl_I& x) { return cl_I_to_Q(x);  }
48   inline unsigned long cl_I_to_ulong (const cl_I& x) { return cl_I_to_UQ(x); }
49 #endif
50
51 // Convert an integer to a counter type.
52 #if (intCsize==long_bitsize)
53   inline uintC cl_I_to_UC (const cl_I& x) { return cl_I_to_ulong(x); }
54   inline sintC cl_I_to_C  (const cl_I& x) { return cl_I_to_long(x);  }
55 #elif (intCsize==int_bitsize)
56   inline uintC cl_I_to_UC (const cl_I& x) { return cl_I_to_uint(x); }
57   inline sintC cl_I_to_C  (const cl_I& x) { return cl_I_to_int(x);  }
58 #endif
59
60 // Convert an integer to an exponent type.
61 #if (intEsize==intLsize)
62   inline uintE cl_I_to_UE (const cl_I& x) { return cl_I_to_UL(x); }
63   inline sintE cl_I_to_E  (const cl_I& x) { return cl_I_to_L(x);  }
64 #elif (intEsize==intQsize)
65   inline uintE cl_I_to_UE (const cl_I& x) { return cl_I_to_UQ(x); }
66   inline sintE cl_I_to_E  (const cl_I& x) { return cl_I_to_Q(x);  }
67 #endif
68
69
70 // Logische Operationen auf Integers:
71
72 // (LOGIOR x y), wenn x, y Integers sind.
73 // Ergebnis Integer.
74 extern const cl_I logior (const cl_I& x, const cl_I& y);
75
76 // (LOGXOR x y), wenn x, y Integers sind.
77 // Ergebnis Integer.
78 extern const cl_I logxor (const cl_I& x, const cl_I& y);
79
80 // (LOGAND x y), wenn x, y Integers sind.
81 // Ergebnis Integer.
82 extern const cl_I logand (const cl_I& x, const cl_I& y);
83
84 // (LOGEQV x y), wenn x, y Integers sind.
85 // Ergebnis Integer.
86 extern const cl_I logeqv (const cl_I& x, const cl_I& y);
87
88 // (LOGNAND x y), wenn x, y Integers sind.
89 // Ergebnis Integer.
90 extern const cl_I lognand (const cl_I& x, const cl_I& y);
91
92 // (LOGNOR x y), wenn x, y Integers sind.
93 // Ergebnis Integer.
94 extern const cl_I lognor (const cl_I& x, const cl_I& y);
95
96 // (LOGANDC2 x y), wenn x, y Integers sind.
97 // Ergebnis Integer.
98 extern const cl_I logandc2 (const cl_I& x, const cl_I& y);
99
100 // (LOGANDC1 x y), wenn x, y Integers sind.
101 // Ergebnis Integer.
102 inline const cl_I logandc1 (const cl_I& x, const cl_I& y)
103 {
104         return logandc2(y,x);
105 }
106
107 // (LOGORC2 x y), wenn x, y Integers sind.
108 // Ergebnis Integer.
109 extern const cl_I logorc2 (const cl_I& x, const cl_I& y);
110
111 // (LOGORC1 x y), wenn x, y Integers sind.
112 // Ergebnis Integer.
113 inline const cl_I logorc1 (const cl_I& x, const cl_I& y)
114 {
115         return logorc2(y,x);
116 }
117
118 // (LOGNOT x), wenn x ein Integer sind.
119 // Ergebnis Integer.
120 extern const cl_I lognot (const cl_I& x);
121
122 // Konstanten für BOOLE:
123 typedef enum {
124         boole_clr,
125         boole_set,
126         boole_1,
127         boole_2,
128         boole_c1,
129         boole_c2,
130         boole_and,
131         boole_ior,
132         boole_xor,
133         boole_eqv,
134         boole_nand,
135         boole_nor,
136         boole_andc1,
137         boole_andc2,
138         boole_orc1,
139         boole_orc2
140 } cl_boole;
141
142 // (BOOLE op x y), wenn x und y Integers und op ein Objekt sind.
143 // Ergebnis Integer.
144 extern const cl_I boole (cl_boole op, const cl_I& x, const cl_I& y);
145
146 // Prüft, ob (LOGTEST x y), wo x und y Integers sind.
147 // (LOGTEST x y) = (NOT (ZEROP (LOGAND x y))).
148 // < ergebnis: /=0, falls ja; =0, falls nein.
149 extern bool logtest (const cl_I& x, const cl_I& y);
150
151 // Prüft, ob (LOGBITP x y), wo x und y Integers sind.
152 // Ergebnis: /=0, wenn ja; =0, wenn nein.
153 extern bool logbitp (uintC x, const cl_I& y);
154 extern bool logbitp (const cl_I& x, const cl_I& y);
155
156 // Prüft, ob (ODDP x), wo x ein Integer ist.
157 // Ergebnis: /=0, falls ja; =0, falls nein.
158 extern bool oddp (const cl_I& x);
159
160 // Prüft, ob (EVENP x), wo x ein Integer ist.
161 // Ergebnis: /=0, falls ja; =0, falls nein.
162 inline bool evenp (const cl_I& x)
163         { return !oddp(x); }
164
165 // (ASH x y), wo x und y Integers sind. Ergebnis Integer.
166 extern const cl_I ash (const cl_I& x, sintC y);
167 extern const cl_I ash (const cl_I& x, const cl_I& y);
168
169 // Thrown when shift amount is too large.
170 class ash_exception : public runtime_exception {
171 public:
172         explicit ash_exception (const cl_I& badamount);
173 };
174
175 // (LOGCOUNT x), wo x ein Integer ist. Ergebnis uintC.
176 extern uintC logcount (const cl_I& x);
177
178 // (INTEGER-LENGTH x), wo x ein Integer ist. Ergebnis uintC.
179 extern uintC integer_length (const cl_I& x);
180
181 // (ORD2 x) = max{n>=0: 2^n | x }, wo x ein Integer /=0 ist. Ergebnis uintC.
182 extern uintC ord2 (const cl_I& x);
183
184 // power2p(x) stellt fest, ob ein Integer x>0 eine Zweierpotenz ist.
185 // Ergebnis: n>0, wenn x=2^(n-1), 0 sonst.
186 extern uintC power2p (const cl_I& x);
187
188 inline const cl_I operator| (const cl_I& x, const cl_I& y)
189         { return logior(x,y); }
190 inline const cl_I operator^ (const cl_I& x, const cl_I& y)
191         { return logxor(x,y); }
192 inline const cl_I operator& (const cl_I& x, const cl_I& y)
193         { return logand(x,y); }
194 inline const cl_I operator~ (const cl_I& x)
195         { return lognot(x); }
196 // This could be optimized to use in-place operations.
197 inline cl_I& operator|= (cl_I& x, const cl_I& y) { return x = x | y; }
198 inline cl_I& operator^= (cl_I& x, const cl_I& y) { return x = x ^ y; }
199 inline cl_I& operator&= (cl_I& x, const cl_I& y) { return x = x & y; }
200
201
202 // Addition/Subtraktion von Integers
203
204 // (1+ x), wo x ein Integer ist. Ergebnis Integer.
205 extern const cl_I plus1 (const cl_I& x);
206
207 // (1- x), wo x ein Integer ist. Ergebnis Integer.
208 extern const cl_I minus1 (const cl_I& x);
209
210 // (+ x y), wo x und y Integers sind. Ergebnis Integer.
211 extern const cl_I operator+ (const cl_I& x, const cl_I& y);
212 // Dem C++-Compiler muß man auch das Folgende sagen:
213 inline const cl_I operator+ (const int x, const cl_I& y)
214         { return cl_I(x) + y; }
215 inline const cl_I operator+ (const unsigned int x, const cl_I& y)
216         { return cl_I(x) + y; }
217 inline const cl_I operator+ (const long x, const cl_I& y)
218         { return cl_I(x) + y; }
219 inline const cl_I operator+ (const unsigned long x, const cl_I& y)
220         { return cl_I(x) + y; }
221 #ifdef HAVE_LONGLONG
222 inline const cl_I operator+ (const long long x, const cl_I& y)
223         { return cl_I(x) + y; }
224 inline const cl_I operator+ (const unsigned long long x, const cl_I& y)
225         { return cl_I(x) + y; }
226 #endif
227 inline const cl_I operator+ (const cl_I& x, const int y)
228         { return x + cl_I(y); }
229 inline const cl_I operator+ (const cl_I& x, const unsigned int y)
230         { return x + cl_I(y); }
231 inline const cl_I operator+ (const cl_I& x, const long y)
232         { return x + cl_I(y); }
233 inline const cl_I operator+ (const cl_I& x, const unsigned long y)
234         { return x + cl_I(y); }
235 #ifdef HAVE_LONGLONG
236 inline const cl_I operator+ (const cl_I& x, const long long y)
237         { return x + cl_I(y); }
238 inline const cl_I operator+ (const cl_I& x, const unsigned long long y)
239         { return x + cl_I(y); }
240 #endif
241
242 // (- x), wenn x ein Integer ist. Ergebnis Integer.
243 extern const cl_I operator- (const cl_I& x);
244
245 // (- x y), wo x und y Integers sind. Ergebnis Integer.
246 extern const cl_I operator- (const cl_I& x, const cl_I& y);
247 // Dem C++-Compiler muß man auch das Folgende sagen:
248 inline const cl_I operator- (const int x, const cl_I& y)
249         { return cl_I(x) - y; }
250 inline const cl_I operator- (const unsigned int x, const cl_I& y)
251         { return cl_I(x) - y; }
252 inline const cl_I operator- (const long x, const cl_I& y)
253         { return cl_I(x) - y; }
254 inline const cl_I operator- (const unsigned long x, const cl_I& y)
255         { return cl_I(x) - y; }
256 #ifdef HAVE_LONGLONG
257 inline const cl_I operator- (const long long x, const cl_I& y)
258         { return cl_I(x) - y; }
259 inline const cl_I operator- (const unsigned long long x, const cl_I& y)
260         { return cl_I(x) - y; }
261 #endif
262 inline const cl_I operator- (const cl_I& x, const int y)
263         { return x - cl_I(y); }
264 inline const cl_I operator- (const cl_I& x, const unsigned int y)
265         { return x - cl_I(y); }
266 inline const cl_I operator- (const cl_I& x, const long y)
267         { return x - cl_I(y); }
268 inline const cl_I operator- (const cl_I& x, const unsigned long y)
269         { return x - cl_I(y); }
270 #ifdef HAVE_LONGLONG
271 inline const cl_I operator- (const cl_I& x, const long long y)
272         { return x - cl_I(y); }
273 inline const cl_I operator- (const cl_I& x, const unsigned long long y)
274         { return x - cl_I(y); }
275 #endif
276
277 // (abs x), wenn x ein Integer ist. Ergebnis Integer.
278 extern const cl_I abs (const cl_I& x);
279
280 // Shifts.
281 inline const cl_I operator<< (const cl_I& x, sintC y) // assume 0 <= y < 2^(intCsize-1)
282         { return ash(x,y); }
283 inline const cl_I operator<< (const cl_I& x, const cl_I& y) // assume y >= 0
284         { return ash(x,y); }
285 inline const cl_I operator>> (const cl_I& x, sintC y) // assume 0 <= y < 2^(intCsize-1)
286         { return ash(x,-y); }
287 inline const cl_I operator>> (const cl_I& x, const cl_I& y) // assume y >= 0
288         { return ash(x,-y); }
289
290
291 // Vergleich von Integers
292
293 // equal(x,y) vergleicht zwei Integers x und y auf Gleichheit.
294 extern bool equal (const cl_I& x, const cl_I& y);
295 // equal_hashcode(x) liefert einen equal-invarianten Hashcode für x.
296 extern uint32 equal_hashcode (const cl_I& x);
297
298 // compare(x,y) vergleicht zwei Integers x und y.
299 // Ergebnis: 0 falls x=y, +1 falls x>y, -1 falls x<y.
300 extern cl_signean compare (const cl_I& x, const cl_I& y);
301
302 inline bool operator== (const cl_I& x, const cl_I& y)
303         { return equal(x,y); }
304 inline bool operator!= (const cl_I& x, const cl_I& y)
305         { return !equal(x,y); }
306 inline bool operator<= (const cl_I& x, const cl_I& y)
307         { return compare(x,y)<=0; }
308 inline bool operator< (const cl_I& x, const cl_I& y)
309         { return compare(x,y)<0; }
310 inline bool operator>= (const cl_I& x, const cl_I& y)
311         { return compare(x,y)>=0; }
312 inline bool operator> (const cl_I& x, const cl_I& y)
313         { return compare(x,y)>0; }
314
315 // minusp(x) == (< x 0)
316 extern bool minusp (const cl_I& x);
317
318 // plusp(x) == (> x 0)
319 extern bool plusp (const cl_I& x);
320
321 // zerop(x) stellt fest, ob ein Integer = 0 ist.
322 extern bool zerop (const cl_I& x);
323
324
325 // BYTE-Operationen auf Integers
326
327 struct cl_byte {
328         uintC size;
329         uintC position;
330 // Konstruktor:
331         cl_byte (uintC s, uintC p) : size (s), position (p) {}
332 };
333
334 // (LDB byte n), wo n ein Integer ist.
335 extern const cl_I ldb (const cl_I& n, const cl_byte& b);
336
337 // ldb_test(n,byte) führt (LDB-TEST byte n) aus, wobei n ein Integer ist.
338 // Ergebnis: false wenn nein (also alle fraglichen Bits =0), true wenn ja.
339 extern bool ldb_test (const cl_I& n, const cl_byte& b);
340
341 // (MASK-FIELD byte n), wo n ein Integer ist.
342 extern const cl_I mask_field (const cl_I& n, const cl_byte& b);
343
344 // (DEPOSIT-FIELD newbyte byte n), wo n und newbyte Integers sind.
345 extern const cl_I deposit_field (const cl_I& newbyte, const cl_I& n, const cl_byte& b);
346
347 // (DPB newbyte byte n), wo n und newbyte Integers sind.
348 extern const cl_I dpb (const cl_I& newbyte, const cl_I& n, const cl_byte& b);
349
350
351 // Multiplikation ganzer Zahlen
352
353 // (* x y), wo x und y Integers sind. Ergebnis Integer.
354 extern const cl_I operator* (const cl_I& x, const cl_I& y);
355 // Dem C++-Compiler muß man auch das Folgende sagen:
356 inline const cl_I operator* (const int x, const cl_I& y)
357         { return cl_I(x) * y; }
358 inline const cl_I operator* (const unsigned int x, const cl_I& y)
359         { return cl_I(x) * y; }
360 inline const cl_I operator* (const long x, const cl_I& y)
361         { return cl_I(x) * y; }
362 inline const cl_I operator* (const unsigned long x, const cl_I& y)
363         { return cl_I(x) * y; }
364 #ifdef HAVE_LONGLONG
365 inline const cl_I operator* (const long long x, const cl_I& y)
366         { return cl_I(x) * y; }
367 inline const cl_I operator* (const unsigned long long x, const cl_I& y)
368         { return cl_I(x) * y; }
369 #endif
370 inline const cl_I operator* (const cl_I& x, const int y)
371         { return x * cl_I(y); }
372 inline const cl_I operator* (const cl_I& x, const unsigned int y)
373         { return x * cl_I(y); }
374 inline const cl_I operator* (const cl_I& x, const long y)
375         { return x * cl_I(y); }
376 inline const cl_I operator* (const cl_I& x, const unsigned long y)
377         { return x * cl_I(y); }
378 #ifdef HAVE_LONGLONG
379 inline const cl_I operator* (const cl_I& x, const long long y)
380         { return x * cl_I(y); }
381 inline const cl_I operator* (const cl_I& x, const unsigned long long y)
382         { return x * cl_I(y); }
383 #endif
384
385 // (EXPT x 2), wo x Integer ist.
386 extern const cl_I square (const cl_I& x);
387
388 // (EXPT x y), wo x Integer, y Integer >0 ist.
389 extern const cl_I expt_pos (const cl_I& x, uintL y);
390 extern const cl_I expt_pos (const cl_I& x, const cl_I& y);
391
392 // Fakultät (! n), wo n Fixnum >=0 ist. Ergebnis Integer.
393 extern const cl_I factorial (uintL n);
394
395 // Double factorial (!! n), with n Fixnum >=0.  Returns integer.
396 extern const cl_I doublefactorial (uintL n);
397
398 // Binomialkoeffizient (n \choose k) = n! / k! (n-k)!, wo n,k >= 0 sind.
399 extern const cl_I binomial (uintL n, uintL k);
400
401
402 // Division ganzer Zahlen
403
404 // Return type for division operators.
405 // x / y  --> (q,r) with x = y*q+r.
406 struct cl_I_div_t {
407         cl_I quotient;
408         cl_I remainder;
409 // Constructor.
410         cl_I_div_t () {}
411         cl_I_div_t (const cl_I& q, const cl_I& r) : quotient(q), remainder(r) {}
412 };
413
414 // Dividiert zwei Integers x,y >=0 und liefert den Quotienten x/y >=0.
415 // Bei y=0 Error. Die Division muß aufgehen, sonst Error.
416 // exquopos(x,y)
417 // > x,y: Integers >=0
418 // < ergebnis: Quotient x/y, ein Integer >=0
419   extern const cl_I exquopos (const cl_I& x, const cl_I& y);
420
421 // Dividiert zwei Integers x,y und liefert den Quotienten x/y.
422 // Bei y=0 Error. Die Division muß aufgehen, sonst Error.
423 // exquo(x,y)
424 // > x,y: Integers
425 // < ergebnis: Quotient x/y, ein Integer
426   extern const cl_I exquo (const cl_I& x, const cl_I& y);
427
428 // Thrown when quotient is no integer.
429 class exquo_exception : public runtime_exception {
430 public:
431         exquo_exception (const cl_I& x, const cl_I& y);
432 };
433
434 // mod(x,y) = (mod x y), wo x,y Integers sind.
435   extern const cl_I mod (const cl_I& x, const cl_I& y);
436
437 // rem(x,y) = (rem x y), wo x,y Integers sind.
438   extern const cl_I rem (const cl_I& x, const cl_I& y);
439
440 // Dividiert zwei Integers x,y und liefert Quotient und Rest
441 // (q,r) := (floor x y)
442 // floor2(x,y)
443 // > x,y: Integers
444 // < q,r: Quotient q, Rest r
445   extern const cl_I_div_t floor2 (const cl_I& x, const cl_I& y);
446   extern const cl_I floor1 (const cl_I& x, const cl_I& y);
447
448 // Dividiert zwei Integers x,y und liefert Quotient und Rest
449 // (q,r) := (ceiling x y)
450 // ceiling2(x,y)
451 // > x,y: Integers
452 // < q,r: Quotient q, Rest r
453   extern const cl_I_div_t ceiling2 (const cl_I& x, const cl_I& y);
454   extern const cl_I ceiling1 (const cl_I& x, const cl_I& y);
455
456 // Dividiert zwei Integers x,y und liefert Quotient und Rest
457 // (q,r) := (truncate x y)
458 // truncate2(x,y)
459 // > x,y: Integers
460 // < q,r: Quotient q, Rest r
461   extern const cl_I_div_t truncate2 (const cl_I& x, const cl_I& y);
462   extern const cl_I truncate1 (const cl_I& x, const cl_I& y);
463
464 // Dividiert zwei Integers x,y und liefert Quotient und Rest
465 // (q,r) := (round x y)
466 // round2(x,y)
467 // > x,y: Integers
468 // < q,r: Quotient q, Rest r
469   extern const cl_I_div_t round2 (const cl_I& x, const cl_I& y);
470   extern const cl_I round1 (const cl_I& x, const cl_I& y);
471
472
473 // ggT und kgV von Integers
474
475 // Liefert den ggT zweier Integers.
476 // gcd(a,b)
477 // > a,b: zwei Integers
478 // < ergebnis: (gcd a b), ein Integer >=0
479   extern const cl_I gcd (const cl_I& a, const cl_I& b);
480   extern uintV gcd (uintV a, uintV b);
481
482 // Liefert den ggT zweier Integers samt Beifaktoren.
483 // g = xgcd(a,b,&u,&v)
484 // > a,b: zwei Integers
485 // < u, v, g: Integers mit u*a+v*b = g >= 0
486   extern const cl_I xgcd (const cl_I& a, const cl_I& b, cl_I* u, cl_I* v);
487 // Im Fall A/=0, B/=0 genügt das Ergebnis (g,u,v) den Ungleichungen:
488 //   Falls |A| = |B| : g = |A|, u = (signum A), v = 0.
489 //   Falls |B| | |A|, |B| < |A| : g = |B|, u = 0, v = (signum B).
490 //   Falls |A| | |B|, |A| < |B| : g = |A|, u = (signum A), v = 0.
491 //   Sonst: |u| <= |B| / (2*g), |v| <= |A| / (2*g).
492 //   In jedem Fall |u| <= |B|/g, |v| < |A|/g.
493 // (Beweis: Im Prinzip macht man ja mehrere Euklid-Schritte auf einmal. Im
494 // letzten Fall - oBdA |A| > |B| - braucht man mindestens zwei Euklid-Schritte,
495 // also gilt im Euklid-Tableau
496 //                 i         |A|            |B|         Erg.
497 //                --------------------------------------------
498 //                 0          1              0          |A|
499 //                 1          0              1          |B|
500 //                ...        ...            ...         ...
501 //                n-1  -(-1)^n*x[n-1]  (-1)^n*y[n-1]   z[n-1]
502 //                 n    (-1)^n*x[n]    -(-1)^n*y[n]     z[n]
503 //                n+1  -(-1)^n*x[n+1]  (-1)^n*y[n+1]   z[n+1] = 0
504 //                --------------------------------------------
505 //                       g = z[n], |u|=x[n], |v|=y[n]
506 // n>=2, z[0] > ... > z[n-1] > z[n] = g, g | z[n-1], also z[n-1] >= 2*g.
507 // Da aber mit  (-1)^i*x[i]*|A| - (-1)^i*y[i]*|B| = z[i]  für i=0..n+1
508 // und            x[i]*y[i+1] - x[i+1]*y[i] = (-1)^i  für i=0..n,
509 //                x[i]*z[i+1] - x[i+1]*z[i] = (-1)^i*|B|  für i=0..n,
510 //                y[i]*z[i+1] - y[i+1]*z[i] = -(-1)^i*|A|  für i=0..n
511 // auch |A| = y[i+1]*z[i] + y[i]*z[i+1], |B| = x[i+1]*z[i] + x[i]*z[i+1]
512 // für i=0..n (Cramersche Regel), folgt
513 // |A| = y[n]*z[n-1] + y[n-1]*z[n] >= y[n]*2*g + 0 = |v|*2*g,
514 // |B| = x[n]*z[n-1] + x[n-1]*z[n] >= x[n]*2*g + 0 = |u|*2*g.)
515
516 // Liefert den kgV zweier Integers.
517 // lcm(a,b)
518 // > a,b: zwei Integers
519 // < ergebnis: (lcm a b), ein Integer >=0
520   extern const cl_I lcm (const cl_I& a, const cl_I& b);
521
522
523 // Wurzel aus ganzen Zahlen
524
525 // Zieht die Wurzel (ISQRT x) aus einem Integer.
526 // isqrt(x,&w)
527 // > x: Integer (sollte >=0 sein)
528 // < w: (isqrt x)
529 // < ergebnis: true falls x Quadratzahl, false sonst
530   extern bool isqrt (const cl_I& x, cl_I* w);
531 // Wenn das boolesche Ergebnis uninteressant ist:
532   inline const cl_I isqrt (const cl_I& x) { cl_I w; isqrt(x,&w); return w; }
533
534 // Stellt fest, ob ein Integer >=0 eine Quadratzahl ist.
535 // sqrtp(x,&w)
536 // > x: ein Integer >=0
537 // < w: Integer (sqrt x) falls x Quadratzahl
538 // < ergebnis: true      ..................., false sonst
539   extern bool sqrtp (const cl_I& x, cl_I* w);
540
541 // Stellt fest, ob ein Integer >=0 eine n-te Potenz ist.
542 // rootp(x,n,&w)
543 // > x: ein Integer >=0
544 // > n: ein Integer >0
545 // < w: Integer (expt x (/ n)) falls x eine n-te Potenz
546 // < ergebnis: true            ........................, false sonst
547   extern bool rootp (const cl_I& x, uintL n, cl_I* w);
548   extern bool rootp (const cl_I& x, const cl_I& n, cl_I* w);
549
550
551 // max(x,y) liefert (max x y), wo x und y ganze Zahlen sind.
552 extern const cl_I max (const cl_I& x, const cl_I& y);
553
554 // min(x,y) liefert (min x y), wo x und y ganze Zahlen sind.
555 extern const cl_I min (const cl_I& x, const cl_I& y);
556
557 // signum(x) liefert (signum x), wo x eine ganze Zahl ist.
558 extern const cl_I signum (const cl_I& x);
559
560
561 // Multipliziert ein Integer mit 10 und addiert eine weitere Ziffer.
562 // mul_10_plus_x(y,x)
563 // > y: Integer Y (>=0)
564 // > x: Ziffernwert X (>=0,<10)
565 // < ergebnis: Integer Y*10+X (>=0)
566 extern const cl_I mul_10_plus_x (const cl_I& y, unsigned char x);
567
568
569 // 2-adische Inverse.
570 // cl_recip2adic(n,x)
571 // > n: >0
572 // > x: Integer, ungerade
573 // < ergebnis: n-Bit-Zahl y == (x mod 2^n)^-1, d.h. y*x == 1 mod 2^n
574 extern const cl_I cl_recip2adic (uintL n, const cl_I& x);
575
576 // 2-adische Division.
577 // cl_div2adic(n,x,y)
578 // > n: >0
579 // > x: Integer
580 // > y: Integer, ungerade
581 // < ergebnis: n-Bit-Zahl z == (x mod 2^n)/(y mod 2^n), d.h. z*y == x mod 2^n
582 extern const cl_I cl_div2adic (uintL n, const cl_I& x, const cl_I& y);
583
584
585 // numerator(r) liefert den Zähler des Integer r.
586 inline const cl_I numerator (const cl_I& r)
587         { return r; }
588 // denominator(r) liefert den Nenner (> 0) des Integer r.
589 inline const cl_I denominator (const cl_I& r)
590         { (void)r; return 1; }
591
592
593 // Konversion zu einem C "float".
594 extern float float_approx (const cl_I& x);
595
596 // Konversion zu einem C "double".
597 extern double double_approx (const cl_I& x);
598
599
600 // random_I(randomstate,n) liefert zu einem Integer n>0 ein zufälliges
601 // Integer x mit 0 <= x < n.
602 // > randomstate: ein Random-State, wird verändert
603 extern const cl_I random_I (random_state& randomstate, const cl_I& n);
604
605 inline const cl_I random_I (const cl_I& n)
606         { return random_I(default_random_state,n); }
607
608 // testrandom_I(randomstate) liefert ein zufälliges Integer zum Testen.
609 // > randomstate: ein Random-State, wird verändert
610 extern const cl_I testrandom_I (random_state& randomstate);
611
612 inline const cl_I testrandom_I ()
613         { return testrandom_I(default_random_state); }
614
615
616 // This could be optimized to use in-place operations.
617 inline cl_I& operator+= (cl_I& x, const cl_I& y) { return x = x + y; }
618 inline cl_I& operator+= (cl_I& x, const int y) { return x = x + y; }
619 inline cl_I& operator+= (cl_I& x, const unsigned int y) { return x = x + y; }
620 inline cl_I& operator+= (cl_I& x, const long y) { return x = x + y; }
621 inline cl_I& operator+= (cl_I& x, const unsigned long y) { return x = x + y; }
622 inline cl_I& operator++ /* prefix */ (cl_I& x) { return x = plus1(x); }
623 inline void operator++ /* postfix */ (cl_I& x, int dummy) { (void)dummy; x = plus1(x); }
624 inline cl_I& operator-= (cl_I& x, const cl_I& y) { return x = x - y; }
625 inline cl_I& operator-= (cl_I& x, const int y) { return x = x - y; }
626 inline cl_I& operator-= (cl_I& x, const unsigned int y) { return x = x - y; }
627 inline cl_I& operator-= (cl_I& x, const long y) { return x = x - y; }
628 inline cl_I& operator-= (cl_I& x, const unsigned long y) { return x = x - y; }
629 inline cl_I& operator-- /* prefix */ (cl_I& x) { return x = minus1(x); }
630 inline void operator-- /* postfix */ (cl_I& x, int dummy) { (void)dummy; x = minus1(x); }
631 inline cl_I& operator*= (cl_I& x, const cl_I& y) { return x = x * y; }
632 inline cl_I& operator<<= (cl_I& x, sintC y) // assume 0 <= y < 2^(intCsize-1)
633         { return x = x << y; }
634 inline cl_I& operator<<= (cl_I& x, const cl_I& y) // assume y >= 0
635         { return x = x << y; }
636 inline cl_I& operator>>= (cl_I& x, sintC y) // assume 0 <= y < 2^(intCsize-1)
637         { return x = x >> y; }
638 inline cl_I& operator>>= (cl_I& x, const cl_I& y) // assume y >= 0
639         { return x = x >> y; }
640 #if 0 // Defining operator/ collides with the operator/ (cl_RA, cl_RA).
641 // operator/ should perform exquo(x,y), but people believe in the C semantics.
642 // And it would be wiser to use floor1 and mod instead of truncate1 and rem,
643 // but again, many C compilers implement / and % like this and people believe
644 // in it.
645 inline const cl_I operator/ (const cl_I& x, const cl_I& y) { return truncate1(x,y); }
646 inline const cl_I operator% (const cl_I& x, const cl_I& y) { return rem(x,y); }
647 inline cl_I& operator/= (cl_I& x, const cl_I& y) { return x = x / y; }
648 inline cl_I& operator%= (cl_I& x, const cl_I& y) { return x = x % y; }
649 #endif
650
651
652 // Runtime typing support.
653 extern cl_class cl_class_fixnum;
654 extern cl_class cl_class_bignum;
655 CL_FORCE_LINK(cl_I_classes_dummy, cl_class_fixnum)
656
657
658 // Debugging support.
659 #ifdef CL_DEBUG
660 extern int cl_I_debug_module;
661 CL_FORCE_LINK(cl_I_debug_dummy, cl_I_debug_module)
662 #endif
663
664 }  // namespace cln
665
666 #endif /* _CL_INTEGER_H */