-
Notifications
You must be signed in to change notification settings - Fork 2
/
lrslong.c
657 lines (576 loc) · 14 KB
/
lrslong.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
/* lrslong.c library code for lrs extended precision arithmetic */
/* Version 4.0, April 13, 2000 */
/* Copyright: David Avis 1999, [email protected] */
/* Derived from prs_single.c ( rational arithmetic for lrs and prs) */
/* authored by Ambros Marzetta Revision 1.2 1998/05/27 */
#ifdef PLRS
#include <sstream>
#include <iostream>
#endif
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "lrslong.h"
long lrs_digits; /* max permitted no. of digits */
long lrs_record_digits; /* this is the biggest acheived so far. */
#define MAXINPUT 1000 /*max length of any input rational */
void
gcd (lrs_mp u, lrs_mp v)
/* Returns u=gcd(u,v) using classic Euclid's algorithm.
v is destroyed. Knuth, II, p.320 */
{
#ifndef B128
unsigned long ul, vl, r;
ul = labs (*u);
vl = labs (*v);
#else
__int128 ul, vl, r;
ul = abs128 (*u);
vl = abs128 (*v);
#endif
if (ul == 0)
{
*u = vl;
return;
}
while (vl != 0)
{
r= ul % vl;
ul = vl;
vl = r;
}
*u = ul;
} /* gcd */
void
lcm (lrs_mp a, lrs_mp b) /* a = least common multiple of a, b; b is preserved */
{
lrs_mp u, v;
copy (u, a);
copy (v, b);
gcd (u, v);
exactdivint (a, u, v); /* v=a/u a contains remainder = 0 */
mulint (v, b, a);
} /* end of lcm */
/***************************************************************/
/* */
/* Package of routines for rational arithmetic */
/* (Built on top of package for multiprecision arithmetic */
/* */
/***************************************************************/
void
reduce (lrs_mp Na, lrs_mp Da) /* reduces Na/Da by gcd(Na,Da) */
{
lrs_mp Nb, Db, Nc, Dc;
copy (Nb, Na);
copy (Db, Da);
storesign (Nb, POS);
storesign (Db, POS);
copy (Nc, Na);
copy (Dc, Da);
gcd (Nb, Db); /* Nb is the gcd(Na,Da) */
exactdivint (Nc, Nb, Na);
exactdivint (Dc, Nb, Da);
}
void
reduceint (lrs_mp Na, lrs_mp Da) /* divide Na by Da and return */
{
lrs_mp Temp;
copy (Temp, Na);
exactdivint (Temp, Da, Na);
}
long
comprod (lrs_mp Na, lrs_mp Nb, lrs_mp Nc, lrs_mp Nd) /* +1 if Na*Nb > Nc*Nd */
/* -1 if Na*Nb < Nc*Nd */
/* 0 if Na*Nb = Nc*Nd */
{
lrs_mp mc, md;
itomp(ZERO,mc); itomp(ZERO,md); /*just to please some compilers */
mulint (Na, Nb, mc);
mulint (Nc, Nd, md);
if (mp_greater(mc,md))
return (1);
if (mp_greater(md,mc))
return (-1);
return (0);
}
void
linrat (lrs_mp Na, lrs_mp Da, long ka, lrs_mp Nb, lrs_mp Db, long kb, lrs_mp Nc, lrs_mp Dc)
/* computes Nc/Dc = ka*Na/Da +kb* Nb/Db and reduces answer by gcd(Nc,Dc) */
{
lrs_mp c;
itomp(ZERO,c); /*just to please some compilers */
mulint (Na, Db, Nc);
mulint (Da, Nb, c);
linint (Nc, ka, c, kb); /* Nc = (ka*Na*Db)+(kb*Da*Nb) */
mulint (Da, Db, Dc); /* Dc = Da*Db */
reduce (Nc, Dc);
}
void
divrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc)
/* computes Nc/Dc = (Na/Da) / ( Nb/Db ) and reduces answer by gcd(Nc,Dc) */
{
mulint (Na, Db, Nc);
mulint (Da, Nb, Dc);
reduce (Nc, Dc);
}
void
mulrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc)
/* computes Nc/Dc = Na/Da * Nb/Db and reduces answer by gcd(Nc,Dc) */
{
mulint (Na, Nb, Nc);
mulint (Da, Db, Dc);
reduce (Nc, Dc);
}
/***************************************************************/
/* */
/* Conversion and I/O functions */
/* */
/***************************************************************/
void
atomp (const char *s, lrs_mp a) /*convert string to lrs_mp integer */
/* based on atoi KR p.58 */
{
long diff, ten, i, sig;
lrs_mp mpone;
itomp (ONE, mpone);
ten = 10L;
for (i = 0; s[i] == ' ' || s[i] == '\n' || s[i] == '\t'; i++);
/*skip white space */
sig = POS;
if (s[i] == '+' || s[i] == '-') /* sign */
sig = (s[i++] == '+') ? POS : NEG;
itomp (0L, a);
while (s[i] >= '0' && s[i] <= '9')
{
diff = s[i] - '0';
linint (a, ten, mpone, diff);
i++;
}
storesign (a, sig);
if (s[i])
{
fprintf (stderr, "\nIllegal character in number: '%s'\n", s + i);
exit (1);
}
} /* end of atomp */
void
atoaa (const char *in, char *num, char *den)
/* convert rational string in to num/den strings */
{
long i, j;
for (i = 0; in[i] != '\0' && in[i] != '/'; i++)
num[i] = in[i];
num[i] = '\0';
den[0] = '\0';
if (in[i] == '/')
{
for (j = 0; in[j + i + 1] != '\0'; j++)
den[j] = in[i + j + 1];
den[j] = '\0';
}
} /* end of atoaa */
void
mptodouble (lrs_mp a, double *x) /* convert lrs_mp to double */
{
(*x) = (*a);
}
long
mptoi (lrs_mp a) /* convert lrs_mp to long */
{
return (*a);
}
void
rattodouble (lrs_mp a, lrs_mp b, double *x) /* convert lrs_mp rati
onal to double */
{
double y;
mptodouble (a, &y);
mptodouble (b, x);
*x = y / (*x);
}
long
readrat (lrs_mp Na, lrs_mp Da) /* read a rational or integer and convert to lrs_mp */
/* returns true if denominator is not one */
{
char in[MAXINPUT], num[MAXINPUT], den[MAXINPUT];
if(fscanf (lrs_ifp, "%s", in)==EOF)
{
fprintf (lrs_ofp, "\nInvalid input: check you have entered enough data!\n");
exit(1);
}
if(!strcmp(in,"end")) /*premature end of input file */
{
return (999L);
}
atoaa (in, num, den); /*convert rational to num/dem strings */
atomp (num, Na);
if (den[0] == '\0')
{
itomp (1L, Da);
return (FALSE);
}
atomp (den, Da);
return (TRUE);
}
#ifdef PLRS
/* read a rational or integer and convert to lrs_mp with base BASE */
/* returns true if denominator is not one */
long plrs_readrat (lrs_mp Na, lrs_mp Da, const char* rat)
{
char in[MAXINPUT], num[MAXINPUT], den[MAXINPUT];
strcpy(in, rat);
atoaa (in, num, den); /*convert rational to num/dem strings */
atomp (num, Na);
if (den[0] == '\0')
{
itomp (1L, Da);
return (FALSE);
}
atomp (den, Da);
return (TRUE);
}
#endif
void
readmp (lrs_mp a) /* read an integer and convert to lrs_mp */
{
long in;
if(fscanf (lrs_ifp, "%ld", &in)==EOF)
{
fprintf (lrs_ofp, "\nInvalid integer input");
exit(1);
}
itomp (in, a);
}
#ifdef PLRS
string sprat (char name[], lrs_mp Nin, lrs_mp Din) /*reduce and print Nin/Din */
{
//create stream to collect output
stringstream ss;
string str;
lrs_mp Nt, Dt;
copy (Nt, Nin);
copy (Dt, Din);
reduce (Nt, Dt);
if (sign (Nt) != NEG)
ss<<" ";
#ifndef B128
ss<<name<<*Nt;
if (*Dt != 1)
ss<<"/"<<*Dt;
#else
__int128 a = *Nt;
char buf[64]; /* more than enough for 2^128 */
buf[63] = '\0';
int i;
if (a < 0)
ss << '-';
a = abs128(a);
for (i=62; a!=0 && i>=0; a=a/10, i--)
buf[i] = '0' + a%10;
if (i == 62) /* *Nt == 0 */
ss << '0';
else
ss << buf+i+1;
if (*Dt != 1)
{
ss << '/';
a = *Dt;
if (a < 0)
ss<< '-';
a = abs128(a);
for (i=62; a!=0 && i>=0; a=a/10, i--)
buf[i] = '0' + a%10;
if (i == 62) /* *Dt == 0, uh oh */
ss << '0';
else
ss << buf+i+1;
}
#endif
ss<<" ";
//pipe stream to single string
str = ss.str();
return str;
}
char *cprat (char name[], lrs_mp Nin, lrs_mp Din)
{
char *ret;
unsigned long len;
int i, offset=0;
string s;
const char *cstr;
s = sprat(name,Nin,Din);
cstr = s.c_str();
len = strlen(cstr);
ret = (char *)malloc(sizeof(char)*(len+1));
for (i=0; i+offset<len+1;)
{
if (cstr[i+offset]!=' ')
{
ret[i] = cstr[i+offset];
i++;
}
else /* skip whitespace */
offset++;
}
return ret;
}
string spmp (char name[], lrs_mp Nt) /*print the long precision integer a */
{
//create stream to collect output
stringstream ss;
string str;
ss<<name;
if(sign(Nt) != NEG)
ss<<" ";
#ifndef B128
ss<<*Nt<<" ";
#else
{
__int128 a = *Nt;
char buf[64]; /* more than enough for 2^128 */
buf[63] = '\0';
int i;
if (a < 0)
ss << '-';
a = abs128(a);
for (i=62; a!=0 && i>=0; a=a/10, i--)
buf[i] = '0' + a%10;
if (i == 62) /* *Nt == 0 */
ss << '0';
else
ss << buf+i+1;
}
ss << " ";
#endif
//pipe stream to single string
str = ss.str();
return str;
}
#endif
void
pmp (char name[], lrs_mp Nt)
{
lrs_printf (lrs_ofp, "%s", name);
if (sign (Nt) != NEG)
lrs_printf (lrs_ofp, " ");
#ifndef B128
lrs_printf (lrs_ofp, "%lld", *Nt);
#else
{
long long lower = *Nt % P10_INT64;
long long upper = *Nt / P10_INT64;
if (upper != 0)
lrs_printf(lrs_ofp, "%lld", upper);
else if (lower < 0)
lrs_printf(lrs_ofp, "-");
lrs_printf(lrs_ofp, "%lld", abs128(lower));
}
#endif
lrs_printf (lrs_ofp, " ");
}
void
prat (char name[], lrs_mp Nin, lrs_mp Din)
/*print the long precision rational Nt/Dt */
{
lrs_mp Nt, Dt;
copy (Nt, Nin);
copy (Dt, Din);
reduce (Nt, Dt);
if (sign (Nt) != NEG)
lrs_printf (lrs_ofp, " ");
#ifndef B128
lrs_printf (lrs_ofp, "%s%lld", name, *Nt);
if (*Dt != 1)
lrs_printf (lrs_ofp, "/%lld", *Dt);
#else
{
long long lower = *Nt % P10_INT64;
long long upper = *Nt / P10_INT64;
lrs_printf(lrs_ofp, "%s", name);
if (upper != 0)
lrs_printf(lrs_ofp, "%lld", upper);
else if (lower < 0)
lrs_printf(lrs_ofp, "-");
lrs_printf(lrs_ofp, "%lld", abs128(lower));
if (*Dt != 1)
{
lower = *Dt % P10_INT64;
upper = *Dt / P10_INT64;
lrs_printf(lrs_ofp, "/");
if (upper != 0)
lrs_printf(lrs_ofp, "%lld", upper);
if (lower < 0)
lrs_printf(lrs_ofp, "-");
lrs_printf(lrs_ofp, "%lld", abs128(lower));
}
}
#endif
lrs_printf (lrs_ofp, " ");
} /* prat */
/***************************************************************/
/* */
/* Memory allocation functions */
/* */
/***************************************************************/
lrs_mp_t
lrs_alloc_mp_t ()
/* dynamic allocation of lrs_mp number */
{
lrs_mp_t p;
p=(lrs_mp_t)calloc (1, sizeof (lrs_mp));
return p;
}
lrs_mp_vector
lrs_alloc_mp_vector (long n)
/* allocate lrs_mp_vector for n+1 lrs_mp numbers */
{
lrs_mp_vector p;
long i;
p = (lrs_mp_t *) CALLOC ((n + 1), sizeof (lrs_mp_t));
for (i = 0; i <= n; i++)
p[i] = (lrs_mp_t) CALLOC (1, sizeof (lrs_mp));
return p;
}
void
lrs_clear_mp_vector (lrs_mp_vector p, long n)
/* free space allocated to p */
{
long i;
for (i = 0; i <= n; i++)
free (p[i]);
free (p);
}
lrs_mp_matrix
lrs_alloc_mp_matrix (long m, long n)
/* allocate lrs_mp_matrix for m+1 x n+1 lrs_mp numbers */
{
lrs_mp_matrix a;
lrs_mp_t araw;
int mp_width, row_width;
int i, j;
mp_width = lrs_digits + 1;
row_width = (n + 1) * mp_width;
araw = (lrs_mp_t) calloc ((m + 1) * row_width, sizeof (lrs_mp));
a = (lrs_mp_t **) calloc ((m + 1), sizeof (lrs_mp_vector));
for (i = 0; i < m + 1; i++)
{
a[i] = (lrs_mp_t *) calloc ((n + 1), sizeof (lrs_mp_t));
for (j = 0; j < n + 1; j++)
a[i][j] = (araw + i * row_width + j * mp_width);
}
return a;
}
void
lrs_clear_mp_matrix (lrs_mp_matrix p, long m, long n)
/* free space allocated to lrs_mp_matrix p */
{
long i;
/* p[0][0] is araw, the actual matrix storage address */
free(p[0][0]);
for (i = 0; i < m + 1; i++)
free (p[i]);
/* 2015.9.9 memory leak fix */
free(p);
}
void
lrs_getdigits (long *a, long *b)
{
/* send digit information to user */
*a = DIG2DEC (ZERO);
*b = DIG2DEC (ZERO);
return;
}
void *
xcalloc (long n, long s, long l, char *f)
{
void *tmp;
tmp = calloc (n, s);
if (tmp == 0)
{
char buf[200];
sprintf (buf, "\n\nFatal error on line %ld of %s", l, f);
perror (buf);
exit (1);
}
return tmp;
}
long
lrs_mp_init (long dec_digits, FILE * fpin, FILE * fpout)
/* max number of decimal digits for the computation */
/* long int version */
{
#ifndef PLRS
lrs_ifp = fpin;
lrs_ofp = fpout;
#endif
lrs_record_digits = 0;
lrs_digits = 0; /* max permitted no. of digits */
return TRUE;
}
void
notimpl (char s[])
{
fflush (stdout);
fprintf (stderr, "\nAbnormal Termination %s\n", s);
exit (1);
}
/***************************************************************/
/* */
/* Misc. functions */
/* */
/***************************************************************/
void
reducearray (lrs_mp_vector p, long n)
/* find largest gcd of p[0]..p[n-1] and divide through */
{
lrs_mp divisor;
lrs_mp Temp;
long i = 0L;
while ((i < n) && zero (p[i]))
i++;
if (i == n)
return;
copy (divisor, p[i]);
storesign (divisor, POS);
i++;
while (i < n)
{
if (!zero (p[i]))
{
copy (Temp, p[i]);
storesign (Temp, POS);
gcd (divisor, Temp);
}
i++;
}
/* reduce by divisor */
for (i = 0; i < n; i++)
if (!zero (p[i]))
reduceint (p[i], divisor);
} /* end of reducearray */
long
myrandom (long num, long nrange)
/* return a random number in range 0..nrange-1 */
{
long i;
i = (num * 401 + 673) % nrange;
return (i);
}
void
getfactorial (lrs_mp factorial, long k) /* compute k factorial
in lrs_mp */
{
lrs_mp temp;
long i;
itomp (ONE, factorial);
for (i = 2; i <= k; i++)
{
itomp (i, temp);
mulint (temp, factorial, factorial);
}
} /* end of getfactorial */
void
stringcpy (char *s, char *t) /*copy t to s pointer version */
{
while (((*s++) = (*t++)) != '\0');
}