forked from Meinersbur/isl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
isl_convex_hull.c
3148 lines (2852 loc) · 86.4 KB
/
isl_convex_hull.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
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright 2008-2009 Katholieke Universiteit Leuven
* Copyright 2014 INRIA Rocquencourt
*
* Use of this software is governed by the MIT license
*
* Written by Sven Verdoolaege, K.U.Leuven, Departement
* Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
* and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
* B.P. 105 - 78153 Le Chesnay, France
*/
#include <isl_ctx_private.h>
#include <isl_map_private.h>
#include <isl_lp_private.h>
#include <isl/map.h>
#include <isl_mat_private.h>
#include <isl_vec_private.h>
#include <isl/set.h>
#include <isl_seq.h>
#include <isl_options_private.h>
#include "isl_equalities.h"
#include "isl_tab.h"
#include <isl_sort.h>
#include <bset_to_bmap.c>
#include <bset_from_bmap.c>
#include <set_to_map.c>
static __isl_give isl_basic_set *uset_convex_hull_wrap_bounded(
__isl_take isl_set *set);
/* Remove redundant
* constraints. If the minimal value along the normal of a constraint
* is the same if the constraint is removed, then the constraint is redundant.
*
* Since some constraints may be mutually redundant, sort the constraints
* first such that constraints that involve existentially quantified
* variables are considered for removal before those that do not.
* The sorting is also needed for the use in map_simple_hull.
*
* Note that isl_tab_detect_implicit_equalities may also end up
* marking some constraints as redundant. Make sure the constraints
* are preserved and undo those marking such that isl_tab_detect_redundant
* can consider the constraints in the sorted order.
*
* Alternatively, we could have intersected the basic map with the
* corresponding equality and then checked if the dimension was that
* of a facet.
*/
__isl_give isl_basic_map *isl_basic_map_remove_redundancies(
__isl_take isl_basic_map *bmap)
{
struct isl_tab *tab;
if (!bmap)
return NULL;
bmap = isl_basic_map_gauss(bmap, NULL);
if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
return bmap;
if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NO_REDUNDANT))
return bmap;
if (bmap->n_ineq <= 1)
return bmap;
bmap = isl_basic_map_sort_constraints(bmap);
tab = isl_tab_from_basic_map(bmap, 0);
if (!tab)
goto error;
tab->preserve = 1;
if (isl_tab_detect_implicit_equalities(tab) < 0)
goto error;
if (isl_tab_restore_redundant(tab) < 0)
goto error;
tab->preserve = 0;
if (isl_tab_detect_redundant(tab) < 0)
goto error;
bmap = isl_basic_map_update_from_tab(bmap, tab);
isl_tab_free(tab);
if (!bmap)
return NULL;
ISL_F_SET(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
ISL_F_SET(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
return bmap;
error:
isl_tab_free(tab);
isl_basic_map_free(bmap);
return NULL;
}
__isl_give isl_basic_set *isl_basic_set_remove_redundancies(
__isl_take isl_basic_set *bset)
{
return bset_from_bmap(
isl_basic_map_remove_redundancies(bset_to_bmap(bset)));
}
/* Remove redundant constraints in each of the basic maps.
*/
__isl_give isl_map *isl_map_remove_redundancies(__isl_take isl_map *map)
{
return isl_map_inline_foreach_basic_map(map,
&isl_basic_map_remove_redundancies);
}
__isl_give isl_set *isl_set_remove_redundancies(__isl_take isl_set *set)
{
return isl_map_remove_redundancies(set);
}
/* Check if the set set is bound in the direction of the affine
* constraint c and if so, set the constant term such that the
* resulting constraint is a bounding constraint for the set.
*/
static isl_bool uset_is_bound(__isl_keep isl_set *set, isl_int *c, unsigned len)
{
int first;
int j;
isl_int opt;
isl_int opt_denom;
isl_int_init(opt);
isl_int_init(opt_denom);
first = 1;
for (j = 0; j < set->n; ++j) {
enum isl_lp_result res;
if (ISL_F_ISSET(set->p[j], ISL_BASIC_SET_EMPTY))
continue;
res = isl_basic_set_solve_lp(set->p[j],
0, c, set->ctx->one, &opt, &opt_denom, NULL);
if (res == isl_lp_unbounded)
break;
if (res == isl_lp_error)
goto error;
if (res == isl_lp_empty) {
set->p[j] = isl_basic_set_set_to_empty(set->p[j]);
if (!set->p[j])
goto error;
continue;
}
if (first || isl_int_is_neg(opt)) {
if (!isl_int_is_one(opt_denom))
isl_seq_scale(c, c, opt_denom, len);
isl_int_sub(c[0], c[0], opt);
}
first = 0;
}
isl_int_clear(opt);
isl_int_clear(opt_denom);
return isl_bool_ok(j >= set->n);
error:
isl_int_clear(opt);
isl_int_clear(opt_denom);
return isl_bool_error;
}
static __isl_give isl_set *isl_set_add_basic_set_equality(
__isl_take isl_set *set, isl_int *c)
{
int i;
set = isl_set_cow(set);
if (!set)
return NULL;
for (i = 0; i < set->n; ++i) {
set->p[i] = isl_basic_set_add_eq(set->p[i], c);
if (!set->p[i])
goto error;
}
return set;
error:
isl_set_free(set);
return NULL;
}
/* Given a union of basic sets, construct the constraints for wrapping
* a facet around one of its ridges.
* In particular, if each of n the d-dimensional basic sets i in "set"
* contains the origin, satisfies the constraints x_1 >= 0 and x_2 >= 0
* and is defined by the constraints
* [ 1 ]
* A_i [ x ] >= 0
*
* then the resulting set is of dimension n*(1+d) and has as constraints
*
* [ a_i ]
* A_i [ x_i ] >= 0
*
* a_i >= 0
*
* \sum_i x_{i,1} = 1
*/
static __isl_give isl_basic_set *wrap_constraints(__isl_keep isl_set *set)
{
struct isl_basic_set *lp;
unsigned n_eq;
unsigned n_ineq;
int i, j, k;
isl_size dim, lp_dim;
dim = isl_set_dim(set, isl_dim_set);
if (dim < 0)
return NULL;
dim += 1;
n_eq = 1;
n_ineq = set->n;
for (i = 0; i < set->n; ++i) {
n_eq += set->p[i]->n_eq;
n_ineq += set->p[i]->n_ineq;
}
lp = isl_basic_set_alloc(set->ctx, 0, dim * set->n, 0, n_eq, n_ineq);
lp = isl_basic_set_set_rational(lp);
if (!lp)
return NULL;
lp_dim = isl_basic_set_dim(lp, isl_dim_set);
if (lp_dim < 0)
return isl_basic_set_free(lp);
k = isl_basic_set_alloc_equality(lp);
isl_int_set_si(lp->eq[k][0], -1);
for (i = 0; i < set->n; ++i) {
isl_int_set_si(lp->eq[k][1+dim*i], 0);
isl_int_set_si(lp->eq[k][1+dim*i+1], 1);
isl_seq_clr(lp->eq[k]+1+dim*i+2, dim-2);
}
for (i = 0; i < set->n; ++i) {
k = isl_basic_set_alloc_inequality(lp);
isl_seq_clr(lp->ineq[k], 1+lp_dim);
isl_int_set_si(lp->ineq[k][1+dim*i], 1);
for (j = 0; j < set->p[i]->n_eq; ++j) {
k = isl_basic_set_alloc_equality(lp);
isl_seq_clr(lp->eq[k], 1+dim*i);
isl_seq_cpy(lp->eq[k]+1+dim*i, set->p[i]->eq[j], dim);
isl_seq_clr(lp->eq[k]+1+dim*(i+1), dim*(set->n-i-1));
}
for (j = 0; j < set->p[i]->n_ineq; ++j) {
k = isl_basic_set_alloc_inequality(lp);
isl_seq_clr(lp->ineq[k], 1+dim*i);
isl_seq_cpy(lp->ineq[k]+1+dim*i, set->p[i]->ineq[j], dim);
isl_seq_clr(lp->ineq[k]+1+dim*(i+1), dim*(set->n-i-1));
}
}
return lp;
}
/* Given a facet "facet" of the convex hull of "set" and a facet "ridge"
* of that facet, compute the other facet of the convex hull that contains
* the ridge.
*
* We first transform the set such that the facet constraint becomes
*
* x_1 >= 0
*
* I.e., the facet lies in
*
* x_1 = 0
*
* and on that facet, the constraint that defines the ridge is
*
* x_2 >= 0
*
* (This transformation is not strictly needed, all that is needed is
* that the ridge contains the origin.)
*
* Since the ridge contains the origin, the cone of the convex hull
* will be of the form
*
* x_1 >= 0
* x_2 >= a x_1
*
* with this second constraint defining the new facet.
* The constant a is obtained by settting x_1 in the cone of the
* convex hull to 1 and minimizing x_2.
* Now, each element in the cone of the convex hull is the sum
* of elements in the cones of the basic sets.
* If a_i is the dilation factor of basic set i, then the problem
* we need to solve is
*
* min \sum_i x_{i,2}
* st
* \sum_i x_{i,1} = 1
* a_i >= 0
* [ a_i ]
* A [ x_i ] >= 0
*
* with
* [ 1 ]
* A_i [ x_i ] >= 0
*
* the constraints of each (transformed) basic set.
* If a = n/d, then the constraint defining the new facet (in the transformed
* space) is
*
* -n x_1 + d x_2 >= 0
*
* In the original space, we need to take the same combination of the
* corresponding constraints "facet" and "ridge".
*
* If a = -infty = "-1/0", then we just return the original facet constraint.
* This means that the facet is unbounded, but has a bounded intersection
* with the union of sets.
*/
isl_int *isl_set_wrap_facet(__isl_keep isl_set *set,
isl_int *facet, isl_int *ridge)
{
int i;
isl_ctx *ctx;
struct isl_mat *T = NULL;
struct isl_basic_set *lp = NULL;
struct isl_vec *obj;
enum isl_lp_result res;
isl_int num, den;
isl_size dim;
dim = isl_set_dim(set, isl_dim_set);
if (dim < 0)
return NULL;
ctx = set->ctx;
set = isl_set_copy(set);
set = isl_set_set_rational(set);
dim += 1;
T = isl_mat_alloc(ctx, 3, dim);
if (!T)
goto error;
isl_int_set_si(T->row[0][0], 1);
isl_seq_clr(T->row[0]+1, dim - 1);
isl_seq_cpy(T->row[1], facet, dim);
isl_seq_cpy(T->row[2], ridge, dim);
T = isl_mat_right_inverse(T);
set = isl_set_preimage(set, T);
T = NULL;
if (!set)
goto error;
lp = wrap_constraints(set);
obj = isl_vec_alloc(ctx, 1 + dim*set->n);
if (!obj)
goto error;
isl_int_set_si(obj->block.data[0], 0);
for (i = 0; i < set->n; ++i) {
isl_seq_clr(obj->block.data + 1 + dim*i, 2);
isl_int_set_si(obj->block.data[1 + dim*i+2], 1);
isl_seq_clr(obj->block.data + 1 + dim*i+3, dim-3);
}
isl_int_init(num);
isl_int_init(den);
res = isl_basic_set_solve_lp(lp, 0,
obj->block.data, ctx->one, &num, &den, NULL);
if (res == isl_lp_ok) {
isl_int_neg(num, num);
isl_seq_combine(facet, num, facet, den, ridge, dim);
isl_seq_normalize(ctx, facet, dim);
}
isl_int_clear(num);
isl_int_clear(den);
isl_vec_free(obj);
isl_basic_set_free(lp);
isl_set_free(set);
if (res == isl_lp_error)
return NULL;
isl_assert(ctx, res == isl_lp_ok || res == isl_lp_unbounded,
return NULL);
return facet;
error:
isl_basic_set_free(lp);
isl_mat_free(T);
isl_set_free(set);
return NULL;
}
/* Compute the constraint of a facet of "set".
*
* We first compute the intersection with a bounding constraint
* that is orthogonal to one of the coordinate axes.
* If the affine hull of this intersection has only one equality,
* we have found a facet.
* Otherwise, we wrap the current bounding constraint around
* one of the equalities of the face (one that is not equal to
* the current bounding constraint).
* This process continues until we have found a facet.
* The dimension of the intersection increases by at least
* one on each iteration, so termination is guaranteed.
*/
static __isl_give isl_mat *initial_facet_constraint(__isl_keep isl_set *set)
{
struct isl_set *slice = NULL;
struct isl_basic_set *face = NULL;
int i;
isl_size dim = isl_set_dim(set, isl_dim_set);
isl_bool is_bound;
isl_mat *bounds = NULL;
if (dim < 0)
return NULL;
isl_assert(set->ctx, set->n > 0, goto error);
bounds = isl_mat_alloc(set->ctx, 1, 1 + dim);
if (!bounds)
return NULL;
isl_seq_clr(bounds->row[0], dim);
isl_int_set_si(bounds->row[0][1 + dim - 1], 1);
is_bound = uset_is_bound(set, bounds->row[0], 1 + dim);
if (is_bound < 0)
goto error;
isl_assert(set->ctx, is_bound, goto error);
isl_seq_normalize(set->ctx, bounds->row[0], 1 + dim);
bounds->n_row = 1;
for (;;) {
slice = isl_set_copy(set);
slice = isl_set_add_basic_set_equality(slice, bounds->row[0]);
face = isl_set_affine_hull(slice);
if (!face)
goto error;
if (face->n_eq == 1) {
isl_basic_set_free(face);
break;
}
for (i = 0; i < face->n_eq; ++i)
if (!isl_seq_eq(bounds->row[0], face->eq[i], 1 + dim) &&
!isl_seq_is_neg(bounds->row[0],
face->eq[i], 1 + dim))
break;
isl_assert(set->ctx, i < face->n_eq, goto error);
if (!isl_set_wrap_facet(set, bounds->row[0], face->eq[i]))
goto error;
isl_seq_normalize(set->ctx, bounds->row[0], bounds->n_col);
isl_basic_set_free(face);
}
return bounds;
error:
isl_basic_set_free(face);
isl_mat_free(bounds);
return NULL;
}
/* Given the bounding constraint "c" of a facet of the convex hull of "set",
* compute a hyperplane description of the facet, i.e., compute the facets
* of the facet.
*
* We compute an affine transformation that transforms the constraint
*
* [ 1 ]
* c [ x ] = 0
*
* to the constraint
*
* z_1 = 0
*
* by computing the right inverse U of a matrix that starts with the rows
*
* [ 1 0 ]
* [ c ]
*
* Then
* [ 1 ] [ 1 ]
* [ x ] = U [ z ]
* and
* [ 1 ] [ 1 ]
* [ z ] = Q [ x ]
*
* with Q = U^{-1}
* Since z_1 is zero, we can drop this variable as well as the corresponding
* column of U to obtain
*
* [ 1 ] [ 1 ]
* [ x ] = U' [ z' ]
* and
* [ 1 ] [ 1 ]
* [ z' ] = Q' [ x ]
*
* with Q' equal to Q, but without the corresponding row.
* After computing the facets of the facet in the z' space,
* we convert them back to the x space through Q.
*/
static __isl_give isl_basic_set *compute_facet(__isl_keep isl_set *set,
isl_int *c)
{
struct isl_mat *m, *U, *Q;
struct isl_basic_set *facet = NULL;
struct isl_ctx *ctx;
isl_size dim;
dim = isl_set_dim(set, isl_dim_set);
if (dim < 0)
return NULL;
ctx = set->ctx;
set = isl_set_copy(set);
m = isl_mat_alloc(set->ctx, 2, 1 + dim);
if (!m)
goto error;
isl_int_set_si(m->row[0][0], 1);
isl_seq_clr(m->row[0]+1, dim);
isl_seq_cpy(m->row[1], c, 1+dim);
U = isl_mat_right_inverse(m);
Q = isl_mat_right_inverse(isl_mat_copy(U));
U = isl_mat_drop_cols(U, 1, 1);
Q = isl_mat_drop_rows(Q, 1, 1);
set = isl_set_preimage(set, U);
facet = uset_convex_hull_wrap_bounded(set);
facet = isl_basic_set_preimage(facet, Q);
if (facet && facet->n_eq != 0)
isl_die(ctx, isl_error_internal, "unexpected equality",
return isl_basic_set_free(facet));
return facet;
error:
isl_basic_set_free(facet);
isl_set_free(set);
return NULL;
}
/* Given an initial facet constraint, compute the remaining facets.
* We do this by running through all facets found so far and computing
* the adjacent facets through wrapping, adding those facets that we
* hadn't already found before.
*
* For each facet we have found so far, we first compute its facets
* in the resulting convex hull. That is, we compute the ridges
* of the resulting convex hull contained in the facet.
* We also compute the corresponding facet in the current approximation
* of the convex hull. There is no need to wrap around the ridges
* in this facet since that would result in a facet that is already
* present in the current approximation.
*
* This function can still be significantly optimized by checking which of
* the facets of the basic sets are also facets of the convex hull and
* using all the facets so far to help in constructing the facets of the
* facets
* and/or
* using the technique in section "3.1 Ridge Generation" of
* "Extended Convex Hull" by Fukuda et al.
*/
static __isl_give isl_basic_set *extend(__isl_take isl_basic_set *hull,
__isl_keep isl_set *set)
{
int i, j, f;
int k;
struct isl_basic_set *facet = NULL;
struct isl_basic_set *hull_facet = NULL;
isl_size dim;
dim = isl_set_dim(set, isl_dim_set);
if (dim < 0 || !hull)
return isl_basic_set_free(hull);
isl_assert(set->ctx, set->n > 0, goto error);
for (i = 0; i < hull->n_ineq; ++i) {
facet = compute_facet(set, hull->ineq[i]);
facet = isl_basic_set_add_eq(facet, hull->ineq[i]);
facet = isl_basic_set_gauss(facet, NULL);
facet = isl_basic_set_normalize_constraints(facet);
hull_facet = isl_basic_set_copy(hull);
hull_facet = isl_basic_set_add_eq(hull_facet, hull->ineq[i]);
hull_facet = isl_basic_set_gauss(hull_facet, NULL);
hull_facet = isl_basic_set_normalize_constraints(hull_facet);
if (!facet || !hull_facet)
goto error;
hull = isl_basic_set_cow(hull);
hull = isl_basic_set_extend(hull, 0, 0, facet->n_ineq);
if (!hull)
goto error;
for (j = 0; j < facet->n_ineq; ++j) {
for (f = 0; f < hull_facet->n_ineq; ++f)
if (isl_seq_eq(facet->ineq[j],
hull_facet->ineq[f], 1 + dim))
break;
if (f < hull_facet->n_ineq)
continue;
k = isl_basic_set_alloc_inequality(hull);
if (k < 0)
goto error;
isl_seq_cpy(hull->ineq[k], hull->ineq[i], 1+dim);
if (!isl_set_wrap_facet(set, hull->ineq[k], facet->ineq[j]))
goto error;
}
isl_basic_set_free(hull_facet);
isl_basic_set_free(facet);
}
hull = isl_basic_set_simplify(hull);
hull = isl_basic_set_finalize(hull);
return hull;
error:
isl_basic_set_free(hull_facet);
isl_basic_set_free(facet);
isl_basic_set_free(hull);
return NULL;
}
/* Special case for computing the convex hull of a one dimensional set.
* We simply collect the lower and upper bounds of each basic set
* and the biggest of those.
*/
static __isl_give isl_basic_set *convex_hull_1d(__isl_take isl_set *set)
{
struct isl_mat *c = NULL;
isl_int *lower = NULL;
isl_int *upper = NULL;
int i, j, k;
isl_int a, b;
struct isl_basic_set *hull;
for (i = 0; i < set->n; ++i) {
set->p[i] = isl_basic_set_simplify(set->p[i]);
if (!set->p[i])
goto error;
}
set = isl_set_remove_empty_parts(set);
if (!set)
goto error;
isl_assert(set->ctx, set->n > 0, goto error);
c = isl_mat_alloc(set->ctx, 2, 2);
if (!c)
goto error;
if (set->p[0]->n_eq > 0) {
isl_assert(set->ctx, set->p[0]->n_eq == 1, goto error);
lower = c->row[0];
upper = c->row[1];
if (isl_int_is_pos(set->p[0]->eq[0][1])) {
isl_seq_cpy(lower, set->p[0]->eq[0], 2);
isl_seq_neg(upper, set->p[0]->eq[0], 2);
} else {
isl_seq_neg(lower, set->p[0]->eq[0], 2);
isl_seq_cpy(upper, set->p[0]->eq[0], 2);
}
} else {
for (j = 0; j < set->p[0]->n_ineq; ++j) {
if (isl_int_is_pos(set->p[0]->ineq[j][1])) {
lower = c->row[0];
isl_seq_cpy(lower, set->p[0]->ineq[j], 2);
} else {
upper = c->row[1];
isl_seq_cpy(upper, set->p[0]->ineq[j], 2);
}
}
}
isl_int_init(a);
isl_int_init(b);
for (i = 0; i < set->n; ++i) {
struct isl_basic_set *bset = set->p[i];
int has_lower = 0;
int has_upper = 0;
for (j = 0; j < bset->n_eq; ++j) {
has_lower = 1;
has_upper = 1;
if (lower) {
isl_int_mul(a, lower[0], bset->eq[j][1]);
isl_int_mul(b, lower[1], bset->eq[j][0]);
if (isl_int_lt(a, b) && isl_int_is_pos(bset->eq[j][1]))
isl_seq_cpy(lower, bset->eq[j], 2);
if (isl_int_gt(a, b) && isl_int_is_neg(bset->eq[j][1]))
isl_seq_neg(lower, bset->eq[j], 2);
}
if (upper) {
isl_int_mul(a, upper[0], bset->eq[j][1]);
isl_int_mul(b, upper[1], bset->eq[j][0]);
if (isl_int_lt(a, b) && isl_int_is_pos(bset->eq[j][1]))
isl_seq_neg(upper, bset->eq[j], 2);
if (isl_int_gt(a, b) && isl_int_is_neg(bset->eq[j][1]))
isl_seq_cpy(upper, bset->eq[j], 2);
}
}
for (j = 0; j < bset->n_ineq; ++j) {
if (isl_int_is_pos(bset->ineq[j][1]))
has_lower = 1;
if (isl_int_is_neg(bset->ineq[j][1]))
has_upper = 1;
if (lower && isl_int_is_pos(bset->ineq[j][1])) {
isl_int_mul(a, lower[0], bset->ineq[j][1]);
isl_int_mul(b, lower[1], bset->ineq[j][0]);
if (isl_int_lt(a, b))
isl_seq_cpy(lower, bset->ineq[j], 2);
}
if (upper && isl_int_is_neg(bset->ineq[j][1])) {
isl_int_mul(a, upper[0], bset->ineq[j][1]);
isl_int_mul(b, upper[1], bset->ineq[j][0]);
if (isl_int_gt(a, b))
isl_seq_cpy(upper, bset->ineq[j], 2);
}
}
if (!has_lower)
lower = NULL;
if (!has_upper)
upper = NULL;
}
isl_int_clear(a);
isl_int_clear(b);
hull = isl_basic_set_alloc(set->ctx, 0, 1, 0, 0, 2);
hull = isl_basic_set_set_rational(hull);
if (!hull)
goto error;
if (lower) {
k = isl_basic_set_alloc_inequality(hull);
isl_seq_cpy(hull->ineq[k], lower, 2);
}
if (upper) {
k = isl_basic_set_alloc_inequality(hull);
isl_seq_cpy(hull->ineq[k], upper, 2);
}
hull = isl_basic_set_finalize(hull);
isl_set_free(set);
isl_mat_free(c);
return hull;
error:
isl_set_free(set);
isl_mat_free(c);
return NULL;
}
static __isl_give isl_basic_set *convex_hull_0d(__isl_take isl_set *set)
{
struct isl_basic_set *convex_hull;
if (!set)
return NULL;
if (isl_set_is_empty(set))
convex_hull = isl_basic_set_empty(isl_space_copy(set->dim));
else
convex_hull = isl_basic_set_universe(isl_space_copy(set->dim));
isl_set_free(set);
return convex_hull;
}
/* Compute the convex hull of a pair of basic sets without any parameters or
* integer divisions using Fourier-Motzkin elimination.
* The convex hull is the set of all points that can be written as
* the sum of points from both basic sets (in homogeneous coordinates).
* We set up the constraints in a space with dimensions for each of
* the three sets and then project out the dimensions corresponding
* to the two original basic sets, retaining only those corresponding
* to the convex hull.
*/
static __isl_give isl_basic_set *convex_hull_pair_elim(
__isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
{
int i, j, k;
struct isl_basic_set *bset[2];
struct isl_basic_set *hull = NULL;
isl_size dim;
dim = isl_basic_set_dim(bset1, isl_dim_set);
if (dim < 0 || !bset2)
goto error;
hull = isl_basic_set_alloc(bset1->ctx, 0, 2 + 3 * dim, 0,
1 + dim + bset1->n_eq + bset2->n_eq,
2 + bset1->n_ineq + bset2->n_ineq);
bset[0] = bset1;
bset[1] = bset2;
for (i = 0; i < 2; ++i) {
for (j = 0; j < bset[i]->n_eq; ++j) {
k = isl_basic_set_alloc_equality(hull);
if (k < 0)
goto error;
isl_seq_clr(hull->eq[k], (i+1) * (1+dim));
isl_seq_clr(hull->eq[k]+(i+2)*(1+dim), (1-i)*(1+dim));
isl_seq_cpy(hull->eq[k]+(i+1)*(1+dim), bset[i]->eq[j],
1+dim);
}
for (j = 0; j < bset[i]->n_ineq; ++j) {
k = isl_basic_set_alloc_inequality(hull);
if (k < 0)
goto error;
isl_seq_clr(hull->ineq[k], (i+1) * (1+dim));
isl_seq_clr(hull->ineq[k]+(i+2)*(1+dim), (1-i)*(1+dim));
isl_seq_cpy(hull->ineq[k]+(i+1)*(1+dim),
bset[i]->ineq[j], 1+dim);
}
k = isl_basic_set_alloc_inequality(hull);
if (k < 0)
goto error;
isl_seq_clr(hull->ineq[k], 1+2+3*dim);
isl_int_set_si(hull->ineq[k][(i+1)*(1+dim)], 1);
}
for (j = 0; j < 1+dim; ++j) {
k = isl_basic_set_alloc_equality(hull);
if (k < 0)
goto error;
isl_seq_clr(hull->eq[k], 1+2+3*dim);
isl_int_set_si(hull->eq[k][j], -1);
isl_int_set_si(hull->eq[k][1+dim+j], 1);
isl_int_set_si(hull->eq[k][2*(1+dim)+j], 1);
}
hull = isl_basic_set_set_rational(hull);
hull = isl_basic_set_remove_dims(hull, isl_dim_set, dim, 2*(1+dim));
hull = isl_basic_set_remove_redundancies(hull);
isl_basic_set_free(bset1);
isl_basic_set_free(bset2);
return hull;
error:
isl_basic_set_free(bset1);
isl_basic_set_free(bset2);
isl_basic_set_free(hull);
return NULL;
}
/* Is the set bounded for each value of the parameters?
*/
isl_bool isl_basic_set_is_bounded(__isl_keep isl_basic_set *bset)
{
struct isl_tab *tab;
isl_bool bounded;
if (!bset)
return isl_bool_error;
if (isl_basic_set_plain_is_empty(bset))
return isl_bool_true;
tab = isl_tab_from_recession_cone(bset, 1);
bounded = isl_tab_cone_is_bounded(tab);
isl_tab_free(tab);
return bounded;
}
/* Is the image bounded for each value of the parameters and
* the domain variables?
*/
isl_bool isl_basic_map_image_is_bounded(__isl_keep isl_basic_map *bmap)
{
isl_size nparam = isl_basic_map_dim(bmap, isl_dim_param);
isl_size n_in = isl_basic_map_dim(bmap, isl_dim_in);
isl_bool bounded;
if (nparam < 0 || n_in < 0)
return isl_bool_error;
bmap = isl_basic_map_copy(bmap);
bmap = isl_basic_map_cow(bmap);
bmap = isl_basic_map_move_dims(bmap, isl_dim_param, nparam,
isl_dim_in, 0, n_in);
bounded = isl_basic_set_is_bounded(bset_from_bmap(bmap));
isl_basic_map_free(bmap);
return bounded;
}
/* Is the set bounded for each value of the parameters?
*/
isl_bool isl_set_is_bounded(__isl_keep isl_set *set)
{
int i;
if (!set)
return isl_bool_error;
for (i = 0; i < set->n; ++i) {
isl_bool bounded = isl_basic_set_is_bounded(set->p[i]);
if (!bounded || bounded < 0)
return bounded;
}
return isl_bool_true;
}
/* Compute the lineality space of the convex hull of bset1 and bset2.
*
* We first compute the intersection of the recession cone of bset1
* with the negative of the recession cone of bset2 and then compute
* the linear hull of the resulting cone.
*/
static __isl_give isl_basic_set *induced_lineality_space(
__isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
{
int i, k;
struct isl_basic_set *lin = NULL;
isl_size dim;
dim = isl_basic_set_dim(bset1, isl_dim_all);
if (dim < 0 || !bset2)
goto error;
lin = isl_basic_set_alloc_space(isl_basic_set_get_space(bset1), 0,
bset1->n_eq + bset2->n_eq,
bset1->n_ineq + bset2->n_ineq);
lin = isl_basic_set_set_rational(lin);
if (!lin)
goto error;
for (i = 0; i < bset1->n_eq; ++i) {
k = isl_basic_set_alloc_equality(lin);
if (k < 0)
goto error;
isl_int_set_si(lin->eq[k][0], 0);
isl_seq_cpy(lin->eq[k] + 1, bset1->eq[i] + 1, dim);
}
for (i = 0; i < bset1->n_ineq; ++i) {
k = isl_basic_set_alloc_inequality(lin);
if (k < 0)
goto error;
isl_int_set_si(lin->ineq[k][0], 0);
isl_seq_cpy(lin->ineq[k] + 1, bset1->ineq[i] + 1, dim);
}
for (i = 0; i < bset2->n_eq; ++i) {
k = isl_basic_set_alloc_equality(lin);
if (k < 0)
goto error;
isl_int_set_si(lin->eq[k][0], 0);
isl_seq_neg(lin->eq[k] + 1, bset2->eq[i] + 1, dim);
}
for (i = 0; i < bset2->n_ineq; ++i) {
k = isl_basic_set_alloc_inequality(lin);
if (k < 0)
goto error;
isl_int_set_si(lin->ineq[k][0], 0);
isl_seq_neg(lin->ineq[k] + 1, bset2->ineq[i] + 1, dim);
}
isl_basic_set_free(bset1);
isl_basic_set_free(bset2);
return isl_basic_set_affine_hull(lin);
error:
isl_basic_set_free(lin);
isl_basic_set_free(bset1);
isl_basic_set_free(bset2);
return NULL;
}
static __isl_give isl_basic_set *uset_convex_hull(__isl_take isl_set *set);
/* Given a set and a linear space "lin" of dimension n > 0,
* project the linear space from the set, compute the convex hull
* and then map the set back to the original space.
*
* Let
*
* M x = 0
*
* describe the linear space. We first compute the Hermite normal
* form H = M U of M = H Q, to obtain
*
* H Q x = 0
*
* The last n rows of H will be zero, so the last n variables of x' = Q x
* are the one we want to project out. We do this by transforming each
* basic set A x >= b to A U x' >= b and then removing the last n dimensions.
* After computing the convex hull in x'_1, i.e., A' x'_1 >= b',
* we transform the hull back to the original space as A' Q_1 x >= b',
* with Q_1 all but the last n rows of Q.
*/
static __isl_give isl_basic_set *modulo_lineality(__isl_take isl_set *set,
__isl_take isl_basic_set *lin)
{
isl_size total = isl_basic_set_dim(lin, isl_dim_all);
unsigned lin_dim;
struct isl_basic_set *hull;
struct isl_mat *M, *U, *Q;
if (!set || total < 0)
goto error;
lin_dim = total - lin->n_eq;
M = isl_mat_sub_alloc6(set->ctx, lin->eq, 0, lin->n_eq, 1, total);
M = isl_mat_left_hermite(M, 0, &U, &Q);
if (!M)
goto error;
isl_mat_free(M);
isl_basic_set_free(lin);
Q = isl_mat_drop_rows(Q, Q->n_row - lin_dim, lin_dim);
U = isl_mat_lin_to_aff(U);
Q = isl_mat_lin_to_aff(Q);
set = isl_set_preimage(set, U);
set = isl_set_remove_dims(set, isl_dim_set, total - lin_dim, lin_dim);
hull = uset_convex_hull(set);
hull = isl_basic_set_preimage(hull, Q);
return hull;
error:
isl_basic_set_free(lin);
isl_set_free(set);
return NULL;
}
/* Given two polyhedra with as constraints h_{ij} x >= 0 in homegeneous space,
* set up an LP for solving
*
* \sum_j \alpha_{1j} h_{1j} = \sum_j \alpha_{2j} h_{2j}
*
* \alpha{i0} corresponds to the (implicit) positivity constraint 1 >= 0
* The next \alpha{ij} correspond to the equalities and come in pairs.
* The final \alpha{ij} correspond to the inequalities.
*/
static __isl_give isl_basic_set *valid_direction_lp(
__isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
{
isl_space *space;
struct isl_basic_set *lp;
unsigned d;
int n;
int i, j, k;