forked from stengel/ecta2002
-
Notifications
You must be signed in to change notification settings - Fork 0
/
glemke.c
872 lines (797 loc) · 22.8 KB
/
glemke.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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
/* glemke.c
* 14 July 2000
* LCP solver with GNU Multi Precision arithmetic
*/
#include <stdio.h>
#include <stdlib.h>
/* free() */
#include <string.h>
/* strcpy */
#include "alloc.h"
#include "col.h"
#include "rat.h"
#include "lemke.h"
#include "gmp.h"
#include "gmpwrap.h"
long record_digits; /* not in the gmp package */
/* used for tableau: */
#define Z(i) (i)
#define W(i) (i+n)
/* VARS = 0..2n = Z(0) .. Z(n) W(1) .. W(n) */
/* ROWCOL = 0..2n, 0 .. n-1: tabl rows (basic vars) */
/* n .. 2n: tabl cols 0..n (cobasic) */
#define RHS (n+1) /* q-column of tableau */
#define TABCOL(v) (bascobas[v]-n)
/* v in VARS, v cobasic: TABCOL(v) is v's tableau col */
/* v basic: TABCOL(v) < 0, TABCOL(v)+n is v's row */
/* LCP input */
Rat **lcpM;
Rat *rhsq;
Rat *vecd;
int lcpdim = 0; /* set in setlcp */
static int n; /* LCP dimension as used here */
/* LCP result */
Rat *solz;
int pivotcount;
/* tableau: */
static gmpt **A; /* tableau */
static int *bascobas; /* VARS -> ROWCOL */
static int *whichvar; /* ROWCOL -> VARS, inverse of bascobas */
/* scale factors for variables z
* scfa[Z(0)] for d, scfa[RHS] for q
* scfa[Z(1..n)] for cols of M
* result variables to be multiplied with these
*/
static gmpt *scfa;
static gmpt det; /* determinant */
static int *lextested, *lexcomparisons;/* statistics for lexminvar */
static int *leavecand;
/* should be local to lexminvar but defined globally for economy */
/*------------------ error message ----------------*/
void errexit (char *info)
{
fflush(stdout);
fprintf(stderr, "Error: %s\n", info);
fprintf(stderr, "Lemke terminated unsuccessfully.\n");
exit(1);
}
/* declares */
void assertbasic (int v, const char *info);
/*------------------ memory allocation -------------------------*/
void setlcp (int newn)
{
if (newn < 1 || newn > MAXLCPDIM)
{
fprintf(stderr, "Problem dimension n= %d not allowed. ", newn);
fprintf(stderr, "Minimum n is 1, maximum %d.\n", MAXLCPDIM);
exit(1);
}
if (lcpdim > 0) /* free previously used space */
{
FREE2(lcpM, lcpdim);
free(rhsq);
free(vecd);
free(solz);
G2CLEAR(A, lcpdim, lcpdim + 2);
FREE2(A, lcpdim);
GCLEAR(scfa, lcpdim + 2);
free(scfa);
free(bascobas);
free(whichvar);
free(leavecand);
gclear(det);
}
n = lcpdim = newn;
/* LCP input/output data */
T2ALLOC (lcpM, n, n, Rat);
rhsq = TALLOC(n, Rat);
vecd = TALLOC(n, Rat);
solz = TALLOC(n, Rat);
/* tableau */
T2ALLOC (A, n, n+2, gmpt);
G2INIT (A, n, n+2);
scfa = TALLOC (n+2, gmpt);
GINIT (scfa, n+2);
ginit(det);
bascobas = TALLOC(2*n+1, int);
whichvar = TALLOC(2*n+1, int);
lextested = TALLOC(n+1, int);
lexcomparisons = TALLOC(n+1, int);
leavecand = TALLOC(n, int);
/* should be local to lexminvar but allocated here for economy */
/* initialize all LCP entries to zero */
{
int i,j;
Rat nix = ratfromi(0);
for (i=0; i<n; i++)
{
for (j=0; j<n; j++)
lcpM [i] [j] = nix;
vecd [i] = rhsq [i] = nix;
}
}
} /* end of setlcp(newn) */
/* asserts that d >= 0 and not q >= 0 (o/w trivial sol)
* and that q[i] < 0 implies d[i] > 0
*/
void isqdok (void)
{
int i;
int isqpos = 1;
for (i=0; i<n; i++)
{
if (vecd[i].num < 0)
{
fprintf(stderr, "Covering vector d[%d] = %d/%d negative\n",
i+1, vecd[i].num, vecd[i].den);
errexit("Cannot start Lemke.");
}
else if (rhsq[i].num < 0)
{
isqpos = 0;
if (vecd[i].num == 0)
{
fprintf(stderr, "Covering vector d[%d] = 0 ", i+1);
fprintf(stderr, "where q[%d] = %d/%d is negative.\n",
i+1, rhsq[i].num, rhsq[i].den);
errexit("Cannot start Lemke.");
}
}
} /* end of for(i=...) */
if (isqpos)
{
printf("No need to start Lemke since q>=0. ");
printf("Trivial solution z=0.\n");
exit(0);
}
} /* end of isqdok() */
/* ------------------- tableau setup ------------------ */
void inittablvars (void)
/* init tableau variables: */
/* Z(0)...Z(n) nonbasic, W(1)...W(n) basic */
{
int i;
for (i=0; i<=n; i++)
{
bascobas[Z(i)] = n+i;
whichvar[n+i] = Z(i);
}
for (i=1; i<=n; i++)
{
bascobas[W(i)] = i-1;
whichvar[i-1] = W(i);
}
} /* end of inittablvars() */
void filltableau (void)
/* fill tableau from M, q, d */
{
int i,j;
int den, num;
gmpt tmp, tmp2;
ginit(tmp); ginit(tmp2);
for (j=0; j<=n+1; j++)
{
/* compute lcm scfa[j] of denominators for col j of A */
gitomp(1, scfa[j]);
for (i=0; i<n; i++)
{
den = (j==0) ? vecd[i].den :
(j==RHS) ? rhsq[i].den : lcpM[i][j-1].den ;
gitomp(den, tmp);
glcm(scfa[j], tmp);
if (j == 0)
record_digits = mpz_sizeinbase( scfa[j], 10)/4 ;
}
/* fill in col j of A */
for (i=0; i<n; i++)
{
den = (j==0) ? vecd[i].den :
(j==RHS) ? rhsq[i].den : lcpM[i][j-1].den ;
num = (j==0) ? vecd[i].num :
(j==RHS) ? rhsq[i].num : lcpM[i][j-1].num ;
/* cols 0..n of A contain LHS cobasic cols of Ax = b */
/* where the system is here -Iw + dz_0 + Mz = -q */
/* cols of q will be negated after first min ratio test */
/* A[i][j] = num * (scfa[j] / den), fraction is integral */
gitomp (den, tmp);
gexactdivint(scfa[j], tmp, tmp2);
gitomp (num, tmp);
gmulint(tmp2, tmp, A[i][j]);
}
} /* end of for(j=...) */
inittablvars();
gitomp (-1, det);
gclear(tmp); gclear(tmp2);
} /* end of filltableau() */
/* ---------------- output routines ------------------- */
void outlcp (void)
/* output the LCP as given */
{
int i,j ;
Rat a;
char s[LCPSTRL];
printf("LCP dimension: %d\n", n);
colset(n + 2);
for (j=0; j<n; j++)
colpr("");
colpr("d");
colpr("q");
colnl();
for (i=0; i<n; i++)
{
for (j=0; j<n; j++)
{
a = lcpM [i] [j];
if (a.num == 0)
colpr(".");
else
{
rattoa(a, s);
colpr(s);
}
}
rattoa( vecd [i], s);
colpr(s);
rattoa( rhsq [i], s);
colpr(s);
}
colout();
}
int vartoa(int v, char s[])
/* create string s representing v in VARS, e.g. "w2" */
/* return value is length of that string */
{
if (v > n)
return sprintf(s, "w%d", v-n);
else
return sprintf(s, "z%d", v);
}
void outtabl (void)
/* output the current tableau, column-adjusted */
{
int i, j;
char s[INFOSTRINGLENGTH];
char smp [MAXGMPCHARS]; /* string to print mp into */
gmptoa (det, smp);
printf("Determinant: %s\n", smp);
colset(n+3);
colleft(0);
colpr("var"); /* headers describing variables */
for (j=0; j<=n+1; j++)
{
if (j==RHS)
colpr("RHS");
else
{
vartoa(whichvar[j+n], s);
colpr(s);
}
}
colpr("scfa"); /* scale factors */
for (j=0; j<=n+1; j++)
{
if (j==RHS)
gmptoa(scfa[RHS], smp);
else if (whichvar[j+n] > n) /* col j is some W */
sprintf(smp, "1");
else /* col j is some Z: scfa */
gmptoa( scfa[whichvar[j+n]], smp);
colpr(smp);
}
colnl();
for (i=0; i<n; i++) /* print row i */
{
vartoa(whichvar[i], s);
colpr(s);
for (j=0; j<=n+1; j++)
{
gmptoa( A[i][j], smp);
if (strcmp(smp, "0")==0)
colpr(".");
else
colpr(smp);
}
}
colout();
printf("-----------------end of tableau-----------------\n");
} /* end of outtabl() */
/* output the current basic solution */
void outsol (void)
{
char s[INFOSTRINGLENGTH];
char smp [2*MAXGMPCHARS+2]; /* string to print mp into */
/* string to print 2 mp's into */
int i, row, pos;
gmpt num, den;
ginit(num); ginit(den);
colset(n+2); /* column printing to see complementarity of w and z */
colpr("basis=");
for (i=0; i<=n; i++)
{
if (bascobas[Z(i)]<n)
/* Z(i) is a basic variable */
vartoa(Z(i), s);
else if (i>0 && bascobas[W(i)]<n)
/* Z(i) is a basic variable */
vartoa(W(i), s);
else
strcpy (s, " ");
colpr(s);
}
colpr("z=");
for (i=0; i<=2*n; i++)
{
if ( (row = bascobas[i]) < n) /* i is a basic variable */
{
if (i<=n) /* printing Z(i) */
/* value of Z(i): scfa[Z(i)]*rhs[row] / (scfa[RHS]*det) */
gmulint(scfa[Z(i)], A[row][RHS], num);
else /* printing W(i-n) */
/* value of W(i-n) is rhs[row] / (scfa[RHS]*det) */
gset(num, A[row][RHS]);
gmulint(det, scfa[RHS], den);
greduce(num, den);
gmptoa(num, smp);
pos = strlen(smp);
if ( !gone(den)) /* add the denominator */
{
sprintf(&smp[pos], "/");
gmptoa(den, &smp[pos+1]);
}
colpr(smp);
}
else /* i is nonbasic */
colpr("0");
if (i==n) /* new line since printing slack vars w next */
{
colpr("w=");
colpr(""); /* for complementarity in place of W(0) */
}
} /* end of for (i=...) */
colout();
gclear(num); gclear(den);
} /* end of outsol */
/* current basic solution turned into solz [0..n-1]
* note that Z(1)..Z(n) become indices 0..n-1
* gives a warning if conversion to ordinary rational fails
* and returns 1, otherwise 0
*/
Bool notokcopysol (void)
{
Bool notok = 0;
int i, row;
gmpt num, den;
ginit(num); ginit(den);
for (i=1; i<=n; i++)
if ( (row = bascobas[i]) < n) /* i is a basic variable */
{
/* value of Z(i): scfa[Z(i)]*rhs[row] / (scfa[RHS]*det) */
gmulint(scfa[Z(i)], A[row][RHS], num);
gmulint(det, scfa[RHS], den);
greduce(num, den);
if ( gmptoi(num, &(solz[i-1].num), 1) )
{
printf("(Numerator of z%d overflown)\n", i);
notok = 1;
}
if ( gmptoi(den, &(solz[i-1].den), 1) )
{
printf("(Denominator of z%d overflown)\n", i);
notok = 1;
}
}
else /* i is nonbasic */
solz[i-1] = ratfromi(0);
gclear(num); gclear(den);
return notok;
} /* end of copysol */
/* --------------- test output and exception routines ---------------- */
void assertbasic (int v, const char *info)
/* assert that v in VARS is a basic variable */
/* otherwise error printing info where */
{
char s[INFOSTRINGLENGTH];
if (bascobas[v] >= n)
{
vartoa(v, s);
fprintf(stderr, "%s: Cobasic variable %s should be basic.\n", info, s);
errexit("");
}
}
void assertcobasic (int v, char *info)
/* assert that v in VARS is a cobasic variable */
/* otherwise error printing info where */
{
char s[INFOSTRINGLENGTH];
if (TABCOL(v) < 0)
{
vartoa(v, s);
fprintf(stderr, "%s: Basic variable %s should be cobasic.\n", info, s);
errexit("");
}
}
void docupivot (leave, enter)
/* leave, enter in VARS. Documents the current pivot. */
/* Asserts leave is basic and enter is cobasic. */
{
char s[INFOSTRINGLENGTH];
assertbasic(leave, "docupivot");
assertcobasic(enter, "docupivot");
vartoa(leave, s);
printf("leaving: %-4s ", s);
vartoa(enter, s);
printf("entering: %s\n", s);
} /* end of docupivot */
void raytermination (int enter)
{
char s[INFOSTRINGLENGTH];
vartoa(enter, s);
fprintf(stderr, "Ray termination when trying to enter %s\n", s);
outtabl();
printf("Current basis, not an LCP solution:\n");
outsol();
errexit("");
}
void testtablvars(void)
/* test tableau variables: error => msg only, continue */
{
int i, j;
for (i=0; i<=2*n; i++) /* check if somewhere tableauvars wrong */
if (bascobas[whichvar[i]]!=i || whichvar[bascobas[i]]!=i)
/* found an inconsistency, print everything */
{
printf("Inconsistent tableau variables:\n");
for (j=0; j<=2*n; j++)
{
printf("var j:%3d bascobas:%3d whichvar:%3d ",
j, bascobas[j], whichvar[j]);
printf(" b[w[j]]==j: %1d w[b[j]]==j: %1d\n",
bascobas[whichvar[j]]==j, whichvar[bascobas[j]]==j);
}
break;
}
}
/* --------------- pivoting and related routines -------------- */
/* complement of v in VARS, error if v==Z(0).
* this is W(i) for Z(i) and vice versa, i=1...n
*/
int complement (int v)
{
if (v==Z(0))
errexit("Attempt to find complement of z0.");
return (v > n) ? Z(v-n) : W(v) ;
} /* end of complement (v) */
/* initialize statistics for minimum ratio test
*/
void initstatistics(void)
{
int i;
for (i=0; i<=n; i++)
lextested[i] = lexcomparisons[i] = 0;
}
/* output statistics of minimum ratio test
*/
void outstatistics(void)
{
int i;
char s[LCPSTRL];
colset(n+2);
colleft(0);
colpr("lex-column");
for (i=0; i<=n; i++)
colipr(i);
colnl();
colpr("times tested");
for (i=0; i<=n; i++)
colipr(lextested[i]);
colpr("% times tested");
if (lextested[0] > 0)
{
colpr("100");
for (i=1; i<=n; i++)
{
sprintf(s, "%2.0f",
(double) lextested[i] * 100.0 / (double) lextested[0]);
colpr(s);
}
}
else
colnl();
colpr("avg comparisons");
for (i=0; i<=n; i++)
if (lextested[i] > 0)
{
sprintf(s, "%1.1f",
(double) lexcomparisons[i] / (double) lextested[i]);
colpr(s);
}
else
colpr("-");
colout();
}
/* returns the leaving variable in VARS, given by lexmin row,
* when enter in VARS is entering variable
* only positive entries of entering column tested
* boolean *z0leave indicates back that z0 can leave the
* basis, but the lex-minratio test is performed fully,
* so the returned value might not be the index of z0
*/
int lexminvar (int enter, int *z0leave)
{
int col, i, j, testcol;
int numcand;
gmpt tmp1, tmp2;
ginit(tmp1); ginit(tmp2);
assertcobasic(enter, "Lexminvar");
col = TABCOL(enter);
numcand = 0;
/* leavecand [0..numcand-1] = candidates (rows) for leaving var */
/* start with leavecand = { i | A[i][col] > 0 } */
for (i=0; i<n; i++)
if (gpositive (A[i][col]))
leavecand[numcand++] = i;
if (numcand==0)
raytermination(enter);
if (numcand==1)
{
lextested[0] += 1 ;
lexcomparisons[0] += 1 ;
*z0leave = (leavecand[0] == bascobas[Z(0)]);
}
for (j = 0; numcand > 1; j++)
/* as long as there is more than one leaving candidate perform
* a minimum ratio test for the columns of j in RHS, W(1),... W(n)
* in the tableau. That test has an easy known result if
* the test column is basic or equal to the entering variable.
*/
{
if (j>n) /* impossible, perturbed RHS should have full rank */
errexit("lex-minratio test failed");
lextested[j] += 1 ;
lexcomparisons[j] += numcand ;
testcol = (j==0) ? RHS : TABCOL(W(j)) ;
if (testcol != col) /* otherwise nothing will change */
{
if (testcol >= 0)
/* not a basic testcolumn: perform minimum ratio tests */
{
int sgn;
int newnum = 0;
/* leavecand[0..newnum] contains the new candidates */
for (i=1; i < numcand; i++)
/* investigate remaining candidates */
{
gmulint(A[leavecand[0]][testcol], A[leavecand[i]][col], tmp1);
gmulint(A[leavecand[i]][testcol], A[leavecand[0]][col], tmp2);
gsub (tmp1, tmp1, tmp2) ;
sgn = gsgn(tmp1) ;
/* sign of A[l_0,t] / A[l_0,col] - A[l_i,t] / A[l_i,col] */
/* note only positive entries of entering column considered */
if (sgn==0) /* new ratio is the same as before */
leavecand[++newnum] = leavecand[i];
else if (sgn==1) /* new smaller ratio detected */
leavecand[newnum=0] = leavecand[i];
}
numcand = newnum+1;
}
else
/* testcol < 0: W(j) basic, Eliminate its row from leavecand */
/* since testcol is the jth unit column */
for (i=0; i < numcand; i++)
if (leavecand[i] == bascobas[W(j)])
{
leavecand[i] = leavecand[--numcand];
/* shuffling of leavecand allowed */
break;
}
} /* end of if(testcol != col) */
if (j==0)
/* seek z0 among the first-col leaving candidates */
for (i=0; i<numcand; i++)
if ( (*z0leave = (leavecand[i] == bascobas[Z(0)])) )
break;
/* alternative, to force z0 leaving the basis:
* return whichvar[leavecand[i]];
*/
} /* end of for ( ... numcand > 1 ... ) */
gclear(tmp1); gclear(tmp2);
return whichvar[leavecand[0]];
} /* end of lexminvar (col, *z0leave); */
/* returns the leaving variable in VARS as entered by user,
* when enter in VARS is entering variable
* only nonzero entries of entering column admitted
* boolean *z0leave indicates back that z0 has been
* entered as leaving variable, and then
* the returned value is the index of z0
*/
int interactivevar (int enter, int *z0leave)
{
char s[INFOSTRINGLENGTH], instring[2];
int inp, col, var;
int breject = 1;
assertcobasic(enter, "interactivevar");
col = TABCOL(enter);
vartoa(enter, s);
printf(" Entering variable (column): %s\n", s);
while (breject)
{
printf(" Leaving row (basic variable z.. or w..), ");
printf("or 't' for tableau:\n");
strcpy(instring, "?");
if (scanf("%1s", instring)==EOF)
{
printf ("Input terminated too early with EOF\n");
exit(1);
}
if ( instring[0] == 't')
{
printf("\n");
outtabl();
vartoa(enter, s);
printf(" Entering variable (column): %s\n", s);
continue;
}
scanf("%d", &inp);
printf(" You typed %s%d\n", instring, inp);
if ( (inp < 0) || (inp > n))
{
printf("Variable index %d outside 0..n=%d\n",
inp, n);
continue;
}
if ( instring[0] == 'w')
{
if (inp == 0)
{
printf("Variable w0 not allowed\n");
continue;
}
var = inp + n;
}
else if ( instring[0] == 'z')
var = inp;
else
{
printf("Variable not starting with z or w\n");
continue;
}
/* var == variable in VARS giving what has been input */
if ( bascobas[var] >= n)
{
vartoa (var, s);
printf("Variable %s not basic\n", s);
continue;
}
if ( gzero( A [bascobas[var]] [col] ) )
{
vartoa (var, s);
printf("Row %s has zero pivot element, not allowed\n", s);
continue;
}
breject = 0; /* now everything ok */
} /* end of while (breject) for input */
*z0leave = (var == Z(0));
return var;
} /* end of interactivevar (col, *z0leave); */
void negcol(int col)
/* negate tableau column col */
{
int i;
for (i=0; i<n; i++)
gchangesign(A[i][col]);
}
void negrow(int row)
/* negate tableau row. Used in pivot() */
{
int j;
for (j=0; j<=n+1; j++)
if (!gzero(A[row][j]))
gchangesign(A[row][j]);
}
/* leave, enter in VARS defining row, col of A
* pivot tableau on the element A[row][col] which must be nonzero
* afterwards tableau normalized with positive determinant
* and updated tableau variables
*/
void pivot (int leave, int enter)
{
int row, col, i, j;
Bool nonzero, negpiv;
gmpt pivelt, tmp1, tmp2;
ginit(pivelt); ginit(tmp1); ginit(tmp2);
row = bascobas[leave];
col = TABCOL(enter);
gset (pivelt, A[row][col]); /* pivelt anyhow later new determinant */
negpiv = gnegative (pivelt);
if (negpiv)
gchangesign(pivelt);
for (i=0; i<n; i++)
if (i != row) /* A[row][..] remains unchanged */
{
nonzero = !gzero(A[i][col]);
for (j=0; j<=n+1; j++) /* assume here RHS==n+1 */
if (j != col)
/* A[i,j] =
(A[i,j] A[row,col] - A[i,col] A[row,j])/ det */
{
gmulint (A[i][j], pivelt, tmp1);
if (nonzero)
{
gmulint(A[i][col], A[row][j], tmp2);
if (negpiv)
gadd(tmp1, tmp1, tmp2);
else
gsub(tmp1, tmp1, tmp2);
}
gexactdivint (tmp1, det, A[i][j]);
}
/* row i has been dealt with, update A[i][col] safely */
if (nonzero && !negpiv)
gchangesign (A[i][col]);
} /* end of for (i=...) */
gset(A[row][col], det);
if (negpiv)
negrow(row);
gset(det, pivelt); /* by construction always positive */
/* update tableau variables */
bascobas[leave] = col+n; whichvar[col+n] = leave;
bascobas[enter] = row; whichvar[row] = enter;
gclear(pivelt); gclear(tmp1); gclear(tmp2);
} /* end of pivot (leave, enter) */
/* ------------------------------------------------------------ */
void runlemke(Flagsrunlemke flags)
{
int leave, enter, z0leave;
pivotcount = 1;
initstatistics();
isqdok();
/* printf("LCP seems OK.\n"); */
filltableau();
/* printf("Tableau filled.\n"); */
if (flags.binitabl)
{
printf("After filltableau:\n");
outtabl();
}
/* z0 enters the basis to obtain lex-feasible solution */
enter = Z(0);
leave = flags.binteract ? interactivevar(enter, &z0leave) :
lexminvar(enter, &z0leave) ;
/* now give the entering q-col its correct sign */
negcol (RHS);
if (flags.bouttabl)
{
printf("After negcol:\n");
outtabl();
}
while (1) /* main loop of complementary pivoting */
{
testtablvars();
if (flags.bdocupivot)
docupivot (leave, enter);
pivot (leave, enter);
if (z0leave)
break; /* z0 will have value 0 but may still be basic. Amend? */
if (flags.bouttabl)
outtabl();
enter = complement(leave);
leave = flags.binteract ? interactivevar(enter, &z0leave) :
lexminvar(enter, &z0leave) ;
if (pivotcount++ == flags.maxcount)
{
printf("------- stop after %d pivoting steps --------\n",
flags.maxcount);
break;
}
}
if (flags.binitabl)
{
printf("Final tableau:\n");
outtabl();
}
if (flags.boutsol)
outsol();
if (flags.blexstats)
outstatistics();
notokcopysol();
}