]> www.ginac.de Git - cln.git/blob - include/cln/integer.h
Finalize CLN 1.3.7 release.
[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 inline const cl_I operator+ (const long long x, const cl_I& y)
222         { return cl_I(x) + y; }
223 inline const cl_I operator+ (const unsigned long long x, const cl_I& y)
224         { return cl_I(x) + y; }
225 inline const cl_I operator+ (const cl_I& x, const int y)
226         { return x + cl_I(y); }
227 inline const cl_I operator+ (const cl_I& x, const unsigned int y)
228         { return x + cl_I(y); }
229 inline const cl_I operator+ (const cl_I& x, const long y)
230         { return x + cl_I(y); }
231 inline const cl_I operator+ (const cl_I& x, const unsigned long y)
232         { return x + cl_I(y); }
233 inline const cl_I operator+ (const cl_I& x, const long long y)
234         { return x + cl_I(y); }
235 inline const cl_I operator+ (const cl_I& x, const unsigned long long y)
236         { return x + cl_I(y); }
237
238 // (- x), wenn x ein Integer ist. Ergebnis Integer.
239 extern const cl_I operator- (const cl_I& x);
240
241 // (- x y), wo x und y Integers sind. Ergebnis Integer.
242 extern const cl_I operator- (const cl_I& x, const cl_I& y);
243 // Dem C++-Compiler muß man auch das Folgende sagen:
244 inline const cl_I operator- (const int x, const cl_I& y)
245         { return cl_I(x) - y; }
246 inline const cl_I operator- (const unsigned int x, const cl_I& y)
247         { return cl_I(x) - y; }
248 inline const cl_I operator- (const long x, const cl_I& y)
249         { return cl_I(x) - y; }
250 inline const cl_I operator- (const unsigned long x, const cl_I& y)
251         { return cl_I(x) - y; }
252 inline const cl_I operator- (const long long x, const cl_I& y)
253         { return cl_I(x) - y; }
254 inline const cl_I operator- (const unsigned long long x, const cl_I& y)
255         { return cl_I(x) - y; }
256 inline const cl_I operator- (const cl_I& x, const int y)
257         { return x - cl_I(y); }
258 inline const cl_I operator- (const cl_I& x, const unsigned int y)
259         { return x - cl_I(y); }
260 inline const cl_I operator- (const cl_I& x, const long y)
261         { return x - cl_I(y); }
262 inline const cl_I operator- (const cl_I& x, const unsigned long y)
263         { return x - cl_I(y); }
264 inline const cl_I operator- (const cl_I& x, const long long y)
265         { return x - cl_I(y); }
266 inline const cl_I operator- (const cl_I& x, const unsigned long long y)
267         { return x - cl_I(y); }
268
269 // (abs x), wenn x ein Integer ist. Ergebnis Integer.
270 extern const cl_I abs (const cl_I& x);
271
272 // Shifts.
273 inline const cl_I operator<< (const cl_I& x, sintC y) // assume 0 <= y < 2^(intCsize-1)
274         { return ash(x,y); }
275 inline const cl_I operator<< (const cl_I& x, const cl_I& y) // assume y >= 0
276         { return ash(x,y); }
277 inline const cl_I operator>> (const cl_I& x, sintC y) // assume 0 <= y < 2^(intCsize-1)
278         { return ash(x,-y); }
279 inline const cl_I operator>> (const cl_I& x, const cl_I& y) // assume y >= 0
280         { return ash(x,-y); }
281
282
283 // Vergleich von Integers
284
285 // equal(x,y) vergleicht zwei Integers x und y auf Gleichheit.
286 extern bool equal (const cl_I& x, const cl_I& y);
287 // equal_hashcode(x) liefert einen equal-invarianten Hashcode für x.
288 extern uint32 equal_hashcode (const cl_I& x);
289
290 // compare(x,y) vergleicht zwei Integers x und y.
291 // Ergebnis: 0 falls x=y, +1 falls x>y, -1 falls x<y.
292 extern cl_signean compare (const cl_I& x, const cl_I& y);
293
294 inline bool operator== (const cl_I& x, const cl_I& y)
295         { return equal(x,y); }
296 inline bool operator!= (const cl_I& x, const cl_I& y)
297         { return !equal(x,y); }
298 inline bool operator<= (const cl_I& x, const cl_I& y)
299         { return compare(x,y)<=0; }
300 inline bool operator< (const cl_I& x, const cl_I& y)
301         { return compare(x,y)<0; }
302 inline bool operator>= (const cl_I& x, const cl_I& y)
303         { return compare(x,y)>=0; }
304 inline bool operator> (const cl_I& x, const cl_I& y)
305         { return compare(x,y)>0; }
306
307 // minusp(x) == (< x 0)
308 extern bool minusp (const cl_I& x);
309
310 // plusp(x) == (> x 0)
311 extern bool plusp (const cl_I& x);
312
313 // zerop(x) stellt fest, ob ein Integer = 0 ist.
314 extern bool zerop (const cl_I& x);
315
316
317 // BYTE-Operationen auf Integers
318
319 struct cl_byte {
320         uintC size;
321         uintC position;
322 // Konstruktor:
323         cl_byte (uintC s, uintC p) : size (s), position (p) {}
324 };
325
326 // (LDB byte n), wo n ein Integer ist.
327 extern const cl_I ldb (const cl_I& n, const cl_byte& b);
328
329 // ldb_test(n,byte) führt (LDB-TEST byte n) aus, wobei n ein Integer ist.
330 // Ergebnis: false wenn nein (also alle fraglichen Bits =0), true wenn ja.
331 extern bool ldb_test (const cl_I& n, const cl_byte& b);
332
333 // (MASK-FIELD byte n), wo n ein Integer ist.
334 extern const cl_I mask_field (const cl_I& n, const cl_byte& b);
335
336 // (DEPOSIT-FIELD newbyte byte n), wo n und newbyte Integers sind.
337 extern const cl_I deposit_field (const cl_I& newbyte, const cl_I& n, const cl_byte& b);
338
339 // (DPB newbyte byte n), wo n und newbyte Integers sind.
340 extern const cl_I dpb (const cl_I& newbyte, const cl_I& n, const cl_byte& b);
341
342
343 // Multiplikation ganzer Zahlen
344
345 // (* x y), wo x und y Integers sind. Ergebnis Integer.
346 extern const cl_I operator* (const cl_I& x, const cl_I& y);
347 // Dem C++-Compiler muß man auch das Folgende sagen:
348 inline const cl_I operator* (const int x, const cl_I& y)
349         { return cl_I(x) * y; }
350 inline const cl_I operator* (const unsigned int x, const cl_I& y)
351         { return cl_I(x) * y; }
352 inline const cl_I operator* (const long x, const cl_I& y)
353         { return cl_I(x) * y; }
354 inline const cl_I operator* (const unsigned long x, const cl_I& y)
355         { return cl_I(x) * y; }
356 inline const cl_I operator* (const long long x, const cl_I& y)
357         { return cl_I(x) * y; }
358 inline const cl_I operator* (const unsigned long long x, const cl_I& y)
359         { return cl_I(x) * y; }
360 inline const cl_I operator* (const cl_I& x, const int y)
361         { return x * cl_I(y); }
362 inline const cl_I operator* (const cl_I& x, const unsigned int y)
363         { return x * cl_I(y); }
364 inline const cl_I operator* (const cl_I& x, const long y)
365         { return x * cl_I(y); }
366 inline const cl_I operator* (const cl_I& x, const unsigned long y)
367         { return x * cl_I(y); }
368 inline const cl_I operator* (const cl_I& x, const long long y)
369         { return x * cl_I(y); }
370 inline const cl_I operator* (const cl_I& x, const unsigned long long y)
371         { return x * cl_I(y); }
372
373 // (EXPT x 2), wo x Integer ist.
374 extern const cl_I square (const cl_I& x);
375
376 // (EXPT x y), wo x Integer, y Integer >0 ist.
377 extern const cl_I expt_pos (const cl_I& x, uintL y);
378 extern const cl_I expt_pos (const cl_I& x, const cl_I& y);
379
380 // Fakultät (! n), wo n Fixnum >=0 ist. Ergebnis Integer.
381 extern const cl_I factorial (uintL n);
382
383 // Double factorial (!! n), with n Fixnum >=0.  Returns integer.
384 extern const cl_I doublefactorial (uintL n);
385
386 // Binomialkoeffizient (n \choose k) = n! / k! (n-k)!, wo n,k >= 0 sind.
387 extern const cl_I binomial (uintL n, uintL k);
388
389
390 // Division ganzer Zahlen
391
392 // Return type for division operators.
393 // x / y  --> (q,r) with x = y*q+r.
394 struct cl_I_div_t {
395         cl_I quotient;
396         cl_I remainder;
397 // Constructor.
398         cl_I_div_t () {}
399         cl_I_div_t (const cl_I& q, const cl_I& r) : quotient(q), remainder(r) {}
400 };
401
402 // Dividiert zwei Integers x,y >=0 und liefert den Quotienten x/y >=0.
403 // Bei y=0 Error. Die Division muß aufgehen, sonst Error.
404 // exquopos(x,y)
405 // > x,y: Integers >=0
406 // < ergebnis: Quotient x/y, ein Integer >=0
407   extern const cl_I exquopos (const cl_I& x, const cl_I& y);
408
409 // Dividiert zwei Integers x,y und liefert den Quotienten x/y.
410 // Bei y=0 Error. Die Division muß aufgehen, sonst Error.
411 // exquo(x,y)
412 // > x,y: Integers
413 // < ergebnis: Quotient x/y, ein Integer
414   extern const cl_I exquo (const cl_I& x, const cl_I& y);
415
416 // Thrown when quotient is no integer.
417 class exquo_exception : public runtime_exception {
418 public:
419         exquo_exception (const cl_I& x, const cl_I& y);
420 };
421
422 // mod(x,y) = (mod x y), wo x,y Integers sind.
423   extern const cl_I mod (const cl_I& x, const cl_I& y);
424
425 // rem(x,y) = (rem x y), wo x,y Integers sind.
426   extern const cl_I rem (const cl_I& x, const cl_I& y);
427
428 // Dividiert zwei Integers x,y und liefert Quotient und Rest
429 // (q,r) := (floor x y)
430 // floor2(x,y)
431 // > x,y: Integers
432 // < q,r: Quotient q, Rest r
433   extern const cl_I_div_t floor2 (const cl_I& x, const cl_I& y);
434   extern const cl_I floor1 (const cl_I& x, const cl_I& y);
435
436 // Dividiert zwei Integers x,y und liefert Quotient und Rest
437 // (q,r) := (ceiling x y)
438 // ceiling2(x,y)
439 // > x,y: Integers
440 // < q,r: Quotient q, Rest r
441   extern const cl_I_div_t ceiling2 (const cl_I& x, const cl_I& y);
442   extern const cl_I ceiling1 (const cl_I& x, const cl_I& y);
443
444 // Dividiert zwei Integers x,y und liefert Quotient und Rest
445 // (q,r) := (truncate x y)
446 // truncate2(x,y)
447 // > x,y: Integers
448 // < q,r: Quotient q, Rest r
449   extern const cl_I_div_t truncate2 (const cl_I& x, const cl_I& y);
450   extern const cl_I truncate1 (const cl_I& x, const cl_I& y);
451
452 // Dividiert zwei Integers x,y und liefert Quotient und Rest
453 // (q,r) := (round x y)
454 // round2(x,y)
455 // > x,y: Integers
456 // < q,r: Quotient q, Rest r
457   extern const cl_I_div_t round2 (const cl_I& x, const cl_I& y);
458   extern const cl_I round1 (const cl_I& x, const cl_I& y);
459
460
461 // ggT und kgV von Integers
462
463 // Liefert den ggT zweier Integers.
464 // gcd(a,b)
465 // > a,b: zwei Integers
466 // < ergebnis: (gcd a b), ein Integer >=0
467   extern const cl_I gcd (const cl_I& a, const cl_I& b);
468   extern uintV gcd (uintV a, uintV b);
469
470 // Liefert den ggT zweier Integers samt Beifaktoren.
471 // g = xgcd(a,b,&u,&v)
472 // > a,b: zwei Integers
473 // < u, v, g: Integers mit u*a+v*b = g >= 0
474   extern const cl_I xgcd (const cl_I& a, const cl_I& b, cl_I* u, cl_I* v);
475 // Im Fall A/=0, B/=0 genügt das Ergebnis (g,u,v) den Ungleichungen:
476 //   Falls |A| = |B| : g = |A|, u = (signum A), v = 0.
477 //   Falls |B| | |A|, |B| < |A| : g = |B|, u = 0, v = (signum B).
478 //   Falls |A| | |B|, |A| < |B| : g = |A|, u = (signum A), v = 0.
479 //   Sonst: |u| <= |B| / (2*g), |v| <= |A| / (2*g).
480 //   In jedem Fall |u| <= |B|/g, |v| < |A|/g.
481 // (Beweis: Im Prinzip macht man ja mehrere Euklid-Schritte auf einmal. Im
482 // letzten Fall - oBdA |A| > |B| - braucht man mindestens zwei Euklid-Schritte,
483 // also gilt im Euklid-Tableau
484 //                 i         |A|            |B|         Erg.
485 //                --------------------------------------------
486 //                 0          1              0          |A|
487 //                 1          0              1          |B|
488 //                ...        ...            ...         ...
489 //                n-1  -(-1)^n*x[n-1]  (-1)^n*y[n-1]   z[n-1]
490 //                 n    (-1)^n*x[n]    -(-1)^n*y[n]     z[n]
491 //                n+1  -(-1)^n*x[n+1]  (-1)^n*y[n+1]   z[n+1] = 0
492 //                --------------------------------------------
493 //                       g = z[n], |u|=x[n], |v|=y[n]
494 // n>=2, z[0] > ... > z[n-1] > z[n] = g, g | z[n-1], also z[n-1] >= 2*g.
495 // Da aber mit  (-1)^i*x[i]*|A| - (-1)^i*y[i]*|B| = z[i]  für i=0..n+1
496 // und            x[i]*y[i+1] - x[i+1]*y[i] = (-1)^i  für i=0..n,
497 //                x[i]*z[i+1] - x[i+1]*z[i] = (-1)^i*|B|  für i=0..n,
498 //                y[i]*z[i+1] - y[i+1]*z[i] = -(-1)^i*|A|  für i=0..n
499 // auch |A| = y[i+1]*z[i] + y[i]*z[i+1], |B| = x[i+1]*z[i] + x[i]*z[i+1]
500 // für i=0..n (Cramersche Regel), folgt
501 // |A| = y[n]*z[n-1] + y[n-1]*z[n] >= y[n]*2*g + 0 = |v|*2*g,
502 // |B| = x[n]*z[n-1] + x[n-1]*z[n] >= x[n]*2*g + 0 = |u|*2*g.)
503
504 // Liefert den kgV zweier Integers.
505 // lcm(a,b)
506 // > a,b: zwei Integers
507 // < ergebnis: (lcm a b), ein Integer >=0
508   extern const cl_I lcm (const cl_I& a, const cl_I& b);
509
510
511 // Wurzel aus ganzen Zahlen
512
513 // Zieht die Wurzel (ISQRT x) aus einem Integer.
514 // isqrt(x,&w)
515 // > x: Integer (sollte >=0 sein)
516 // < w: (isqrt x)
517 // < ergebnis: true falls x Quadratzahl, false sonst
518   extern bool isqrt (const cl_I& x, cl_I* w);
519 // Wenn das boolesche Ergebnis uninteressant ist:
520   inline const cl_I isqrt (const cl_I& x) { cl_I w; isqrt(x,&w); return w; }
521
522 // Stellt fest, ob ein Integer >=0 eine Quadratzahl ist.
523 // sqrtp(x,&w)
524 // > x: ein Integer >=0
525 // < w: Integer (sqrt x) falls x Quadratzahl
526 // < ergebnis: true      ..................., false sonst
527   extern bool sqrtp (const cl_I& x, cl_I* w);
528
529 // Stellt fest, ob ein Integer >=0 eine n-te Potenz ist.
530 // rootp(x,n,&w)
531 // > x: ein Integer >=0
532 // > n: ein Integer >0
533 // < w: Integer (expt x (/ n)) falls x eine n-te Potenz
534 // < ergebnis: true            ........................, false sonst
535   extern bool rootp (const cl_I& x, uintL n, cl_I* w);
536   extern bool rootp (const cl_I& x, const cl_I& n, cl_I* w);
537
538
539 // max(x,y) liefert (max x y), wo x und y ganze Zahlen sind.
540 extern const cl_I max (const cl_I& x, const cl_I& y);
541
542 // min(x,y) liefert (min x y), wo x und y ganze Zahlen sind.
543 extern const cl_I min (const cl_I& x, const cl_I& y);
544
545 // signum(x) liefert (signum x), wo x eine ganze Zahl ist.
546 extern const cl_I signum (const cl_I& x);
547
548
549 // Multipliziert ein Integer mit 10 und addiert eine weitere Ziffer.
550 // mul_10_plus_x(y,x)
551 // > y: Integer Y (>=0)
552 // > x: Ziffernwert X (>=0,<10)
553 // < ergebnis: Integer Y*10+X (>=0)
554 extern const cl_I mul_10_plus_x (const cl_I& y, unsigned char x);
555
556
557 // 2-adische Inverse.
558 // cl_recip2adic(n,x)
559 // > n: >0
560 // > x: Integer, ungerade
561 // < ergebnis: n-Bit-Zahl y == (x mod 2^n)^-1, d.h. y*x == 1 mod 2^n
562 extern const cl_I cl_recip2adic (uintL n, const cl_I& x);
563
564 // 2-adische Division.
565 // cl_div2adic(n,x,y)
566 // > n: >0
567 // > x: Integer
568 // > y: Integer, ungerade
569 // < ergebnis: n-Bit-Zahl z == (x mod 2^n)/(y mod 2^n), d.h. z*y == x mod 2^n
570 extern const cl_I cl_div2adic (uintL n, const cl_I& x, const cl_I& y);
571
572
573 // numerator(r) liefert den Zähler des Integer r.
574 inline const cl_I numerator (const cl_I& r)
575         { return r; }
576 // denominator(r) liefert den Nenner (> 0) des Integer r.
577 inline const cl_I denominator (const cl_I& r)
578         { (void)r; return 1; }
579
580
581 // Konversion zu einem C "float".
582 extern float float_approx (const cl_I& x);
583
584 // Konversion zu einem C "double".
585 extern double double_approx (const cl_I& x);
586
587
588 // random_I(randomstate,n) liefert zu einem Integer n>0 ein zufälliges
589 // Integer x mit 0 <= x < n.
590 // > randomstate: ein Random-State, wird verändert
591 extern const cl_I random_I (random_state& randomstate, const cl_I& n);
592
593 inline const cl_I random_I (const cl_I& n)
594         { return random_I(default_random_state,n); }
595
596 // testrandom_I(randomstate) liefert ein zufälliges Integer zum Testen.
597 // > randomstate: ein Random-State, wird verändert
598 extern const cl_I testrandom_I (random_state& randomstate);
599
600 inline const cl_I testrandom_I ()
601         { return testrandom_I(default_random_state); }
602
603
604 // This could be optimized to use in-place operations.
605 inline cl_I& operator+= (cl_I& x, const cl_I& y) { return x = x + y; }
606 inline cl_I& operator+= (cl_I& x, const int y) { return x = x + y; }
607 inline cl_I& operator+= (cl_I& x, const unsigned int y) { return x = x + y; }
608 inline cl_I& operator+= (cl_I& x, const long y) { return x = x + y; }
609 inline cl_I& operator+= (cl_I& x, const unsigned long y) { return x = x + y; }
610 inline cl_I& operator++ /* prefix */ (cl_I& x) { return x = plus1(x); }
611 inline void operator++ /* postfix */ (cl_I& x, int dummy) { (void)dummy; x = plus1(x); }
612 inline cl_I& operator-= (cl_I& x, const cl_I& y) { return x = x - y; }
613 inline cl_I& operator-= (cl_I& x, const int y) { return x = x - y; }
614 inline cl_I& operator-= (cl_I& x, const unsigned int y) { return x = x - y; }
615 inline cl_I& operator-= (cl_I& x, const long y) { return x = x - y; }
616 inline cl_I& operator-= (cl_I& x, const unsigned long y) { return x = x - y; }
617 inline cl_I& operator-- /* prefix */ (cl_I& x) { return x = minus1(x); }
618 inline void operator-- /* postfix */ (cl_I& x, int dummy) { (void)dummy; x = minus1(x); }
619 inline cl_I& operator*= (cl_I& x, const cl_I& y) { return x = x * y; }
620 inline cl_I& operator<<= (cl_I& x, sintC y) // assume 0 <= y < 2^(intCsize-1)
621         { return x = x << y; }
622 inline cl_I& operator<<= (cl_I& x, const cl_I& y) // assume y >= 0
623         { return x = x << y; }
624 inline cl_I& operator>>= (cl_I& x, sintC y) // assume 0 <= y < 2^(intCsize-1)
625         { return x = x >> y; }
626 inline cl_I& operator>>= (cl_I& x, const cl_I& y) // assume y >= 0
627         { return x = x >> y; }
628 #if 0 // Defining operator/ collides with the operator/ (cl_RA, cl_RA).
629 // operator/ should perform exquo(x,y), but people believe in the C semantics.
630 // And it would be wiser to use floor1 and mod instead of truncate1 and rem,
631 // but again, many C compilers implement / and % like this and people believe
632 // in it.
633 inline const cl_I operator/ (const cl_I& x, const cl_I& y) { return truncate1(x,y); }
634 inline const cl_I operator% (const cl_I& x, const cl_I& y) { return rem(x,y); }
635 inline cl_I& operator/= (cl_I& x, const cl_I& y) { return x = x / y; }
636 inline cl_I& operator%= (cl_I& x, const cl_I& y) { return x = x % y; }
637 #endif
638
639
640 // Runtime typing support.
641 extern cl_class cl_class_fixnum;
642 extern cl_class cl_class_bignum;
643 CL_FORCE_LINK(cl_I_classes_dummy, cl_class_fixnum)
644
645
646 // Debugging support.
647 #ifdef CL_DEBUG
648 extern int cl_I_debug_module;
649 CL_FORCE_LINK(cl_I_debug_dummy, cl_I_debug_module)
650 #endif
651
652 }  // namespace cln
653
654 #endif /* _CL_INTEGER_H */