isl_convex_hull.c: move initial hull construction into separate function
[platform/upstream/isl.git] / isl_convex_hull.c
1 #include "isl_lp.h"
2 #include "isl_map.h"
3 #include "isl_map_private.h"
4 #include "isl_mat.h"
5 #include "isl_set.h"
6 #include "isl_seq.h"
7 #include "isl_equalities.h"
8 #include "isl_tab.h"
9
10 static struct isl_basic_set *uset_convex_hull_wrap_bounded(struct isl_set *set);
11
12 static void swap_ineq(struct isl_basic_map *bmap, unsigned i, unsigned j)
13 {
14         isl_int *t;
15
16         if (i != j) {
17                 t = bmap->ineq[i];
18                 bmap->ineq[i] = bmap->ineq[j];
19                 bmap->ineq[j] = t;
20         }
21 }
22
23 /* Return 1 if constraint c is redundant with respect to the constraints
24  * in bmap.  If c is a lower [upper] bound in some variable and bmap
25  * does not have a lower [upper] bound in that variable, then c cannot
26  * be redundant and we do not need solve any lp.
27  */
28 int isl_basic_map_constraint_is_redundant(struct isl_basic_map **bmap,
29         isl_int *c, isl_int *opt_n, isl_int *opt_d)
30 {
31         enum isl_lp_result res;
32         unsigned total;
33         int i, j;
34
35         if (!bmap)
36                 return -1;
37
38         total = isl_basic_map_total_dim(*bmap);
39         for (i = 0; i < total; ++i) {
40                 int sign;
41                 if (isl_int_is_zero(c[1+i]))
42                         continue;
43                 sign = isl_int_sgn(c[1+i]);
44                 for (j = 0; j < (*bmap)->n_ineq; ++j)
45                         if (sign == isl_int_sgn((*bmap)->ineq[j][1+i]))
46                                 break;
47                 if (j == (*bmap)->n_ineq)
48                         break;
49         }
50         if (i < total)
51                 return 0;
52
53         res = isl_solve_lp(*bmap, 0, c+1, (*bmap)->ctx->one, opt_n, opt_d);
54         if (res == isl_lp_unbounded)
55                 return 0;
56         if (res == isl_lp_error)
57                 return -1;
58         if (res == isl_lp_empty) {
59                 *bmap = isl_basic_map_set_to_empty(*bmap);
60                 return 0;
61         }
62         if (opt_d)
63                 isl_int_addmul(*opt_n, *opt_d, c[0]);
64         else
65                 isl_int_add(*opt_n, *opt_n, c[0]);
66         return !isl_int_is_neg(*opt_n);
67 }
68
69 int isl_basic_set_constraint_is_redundant(struct isl_basic_set **bset,
70         isl_int *c, isl_int *opt_n, isl_int *opt_d)
71 {
72         return isl_basic_map_constraint_is_redundant(
73                         (struct isl_basic_map **)bset, c, opt_n, opt_d);
74 }
75
76 /* Compute the convex hull of a basic map, by removing the redundant
77  * constraints.  If the minimal value along the normal of a constraint
78  * is the same if the constraint is removed, then the constraint is redundant.
79  *
80  * Alternatively, we could have intersected the basic map with the
81  * corresponding equality and the checked if the dimension was that
82  * of a facet.
83  */
84 struct isl_basic_map *isl_basic_map_convex_hull(struct isl_basic_map *bmap)
85 {
86         struct isl_tab *tab;
87
88         if (!bmap)
89                 return NULL;
90
91         bmap = isl_basic_map_gauss(bmap, NULL);
92         if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
93                 return bmap;
94         if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NO_REDUNDANT))
95                 return bmap;
96         if (bmap->n_ineq <= 1)
97                 return bmap;
98
99         tab = isl_tab_from_basic_map(bmap);
100         tab = isl_tab_detect_equalities(bmap->ctx, tab);
101         tab = isl_tab_detect_redundant(bmap->ctx, tab);
102         bmap = isl_basic_map_update_from_tab(bmap, tab);
103         isl_tab_free(bmap->ctx, tab);
104         ISL_F_SET(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
105         ISL_F_SET(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
106         return bmap;
107 }
108
109 struct isl_basic_set *isl_basic_set_convex_hull(struct isl_basic_set *bset)
110 {
111         return (struct isl_basic_set *)
112                 isl_basic_map_convex_hull((struct isl_basic_map *)bset);
113 }
114
115 /* Check if the set set is bound in the direction of the affine
116  * constraint c and if so, set the constant term such that the
117  * resulting constraint is a bounding constraint for the set.
118  */
119 static int uset_is_bound(struct isl_ctx *ctx, struct isl_set *set,
120         isl_int *c, unsigned len)
121 {
122         int first;
123         int j;
124         isl_int opt;
125         isl_int opt_denom;
126
127         isl_int_init(opt);
128         isl_int_init(opt_denom);
129         first = 1;
130         for (j = 0; j < set->n; ++j) {
131                 enum isl_lp_result res;
132
133                 if (ISL_F_ISSET(set->p[j], ISL_BASIC_SET_EMPTY))
134                         continue;
135
136                 res = isl_solve_lp((struct isl_basic_map*)set->p[j],
137                                 0, c+1, ctx->one, &opt, &opt_denom);
138                 if (res == isl_lp_unbounded)
139                         break;
140                 if (res == isl_lp_error)
141                         goto error;
142                 if (res == isl_lp_empty) {
143                         set->p[j] = isl_basic_set_set_to_empty(set->p[j]);
144                         if (!set->p[j])
145                                 goto error;
146                         continue;
147                 }
148                 if (!isl_int_is_one(opt_denom))
149                         isl_seq_scale(c, c, opt_denom, len);
150                 if (first || isl_int_lt(opt, c[0]))
151                         isl_int_set(c[0], opt);
152                 first = 0;
153         }
154         isl_int_clear(opt);
155         isl_int_clear(opt_denom);
156         isl_int_neg(c[0], c[0]);
157         return j >= set->n;
158 error:
159         isl_int_clear(opt);
160         isl_int_clear(opt_denom);
161         return -1;
162 }
163
164 /* Check if "c" is a direction that is independent of the previously found "n"
165  * bounds in "dirs".
166  * If so, add it to the list, with the negative of the lower bound
167  * in the constant position, i.e., such that c corresponds to a bounding
168  * hyperplane (but not necessarily a facet).
169  * Assumes set "set" is bounded.
170  */
171 static int is_independent_bound(struct isl_ctx *ctx,
172         struct isl_set *set, isl_int *c,
173         struct isl_mat *dirs, int n)
174 {
175         int is_bound;
176         int i = 0;
177
178         isl_seq_cpy(dirs->row[n]+1, c+1, dirs->n_col-1);
179         if (n != 0) {
180                 int pos = isl_seq_first_non_zero(dirs->row[n]+1, dirs->n_col-1);
181                 if (pos < 0)
182                         return 0;
183                 for (i = 0; i < n; ++i) {
184                         int pos_i;
185                         pos_i = isl_seq_first_non_zero(dirs->row[i]+1, dirs->n_col-1);
186                         if (pos_i < pos)
187                                 continue;
188                         if (pos_i > pos)
189                                 break;
190                         isl_seq_elim(dirs->row[n]+1, dirs->row[i]+1, pos,
191                                         dirs->n_col-1, NULL);
192                         pos = isl_seq_first_non_zero(dirs->row[n]+1, dirs->n_col-1);
193                         if (pos < 0)
194                                 return 0;
195                 }
196         }
197
198         is_bound = uset_is_bound(ctx, set, dirs->row[n], dirs->n_col);
199         if (is_bound != 1)
200                 return is_bound;
201         if (i < n) {
202                 int k;
203                 isl_int *t = dirs->row[n];
204                 for (k = n; k > i; --k)
205                         dirs->row[k] = dirs->row[k-1];
206                 dirs->row[i] = t;
207         }
208         return 1;
209 }
210
211 /* Compute and return a maximal set of linearly independent bounds
212  * on the set "set", based on the constraints of the basic sets
213  * in "set".
214  */
215 static struct isl_mat *independent_bounds(struct isl_ctx *ctx,
216         struct isl_set *set)
217 {
218         int i, j, n;
219         struct isl_mat *dirs = NULL;
220         unsigned dim = isl_set_n_dim(set);
221
222         dirs = isl_mat_alloc(ctx, dim, 1+dim);
223         if (!dirs)
224                 goto error;
225
226         n = 0;
227         for (i = 0; n < dim && i < set->n; ++i) {
228                 int f;
229                 struct isl_basic_set *bset = set->p[i];
230
231                 for (j = 0; n < dim && j < bset->n_eq; ++j) {
232                         f = is_independent_bound(ctx, set, bset->eq[j],
233                                                 dirs, n);
234                         if (f < 0)
235                                 goto error;
236                         if (f)
237                                 ++n;
238                 }
239                 for (j = 0; n < dim && j < bset->n_ineq; ++j) {
240                         f = is_independent_bound(ctx, set, bset->ineq[j],
241                                                 dirs, n);
242                         if (f < 0)
243                                 goto error;
244                         if (f)
245                                 ++n;
246                 }
247         }
248         dirs->n_row = n;
249         return dirs;
250 error:
251         isl_mat_free(ctx, dirs);
252         return NULL;
253 }
254
255 static struct isl_basic_set *isl_basic_set_set_rational(
256         struct isl_basic_set *bset)
257 {
258         if (!bset)
259                 return NULL;
260
261         if (ISL_F_ISSET(bset, ISL_BASIC_MAP_RATIONAL))
262                 return bset;
263
264         bset = isl_basic_set_cow(bset);
265         if (!bset)
266                 return NULL;
267
268         ISL_F_SET(bset, ISL_BASIC_MAP_RATIONAL);
269
270         return isl_basic_set_finalize(bset);
271 }
272
273 static struct isl_set *isl_set_set_rational(struct isl_set *set)
274 {
275         int i;
276
277         set = isl_set_cow(set);
278         if (!set)
279                 return NULL;
280         for (i = 0; i < set->n; ++i) {
281                 set->p[i] = isl_basic_set_set_rational(set->p[i]);
282                 if (!set->p[i])
283                         goto error;
284         }
285         return set;
286 error:
287         isl_set_free(set);
288         return NULL;
289 }
290
291 static struct isl_basic_set *isl_basic_set_add_equality(struct isl_ctx *ctx,
292         struct isl_basic_set *bset, isl_int *c)
293 {
294         int i;
295         unsigned total;
296         unsigned dim;
297
298         if (ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY))
299                 return bset;
300
301         isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
302         isl_assert(ctx, bset->n_div == 0, goto error);
303         dim = isl_basic_set_n_dim(bset);
304         bset = isl_basic_set_extend(bset, 0, dim, 0, 1, 0);
305         i = isl_basic_set_alloc_equality(bset);
306         if (i < 0)
307                 goto error;
308         isl_seq_cpy(bset->eq[i], c, 1 + dim);
309         return bset;
310 error:
311         isl_basic_set_free(bset);
312         return NULL;
313 }
314
315 static struct isl_set *isl_set_add_equality(struct isl_ctx *ctx,
316         struct isl_set *set, isl_int *c)
317 {
318         int i;
319
320         set = isl_set_cow(set);
321         if (!set)
322                 return NULL;
323         for (i = 0; i < set->n; ++i) {
324                 set->p[i] = isl_basic_set_add_equality(ctx, set->p[i], c);
325                 if (!set->p[i])
326                         goto error;
327         }
328         return set;
329 error:
330         isl_set_free(set);
331         return NULL;
332 }
333
334 /* Given a union of basic sets, construct the constraints for wrapping
335  * a facet around one of its ridges.
336  * In particular, if each of n the d-dimensional basic sets i in "set"
337  * contains the origin, satisfies the constraints x_1 >= 0 and x_2 >= 0
338  * and is defined by the constraints
339  *                                  [ 1 ]
340  *                              A_i [ x ]  >= 0
341  *
342  * then the resulting set is of dimension n*(1+d) and has as contraints
343  *
344  *                                  [ a_i ]
345  *                              A_i [ x_i ] >= 0
346  *
347  *                                    a_i   >= 0
348  *
349  *                      \sum_i x_{i,1} = 1
350  */
351 static struct isl_basic_set *wrap_constraints(struct isl_set *set)
352 {
353         struct isl_basic_set *lp;
354         unsigned n_eq;
355         unsigned n_ineq;
356         int i, j, k;
357         unsigned dim, lp_dim;
358
359         if (!set)
360                 return NULL;
361
362         dim = 1 + isl_set_n_dim(set);
363         n_eq = 1;
364         n_ineq = set->n;
365         for (i = 0; i < set->n; ++i) {
366                 n_eq += set->p[i]->n_eq;
367                 n_ineq += set->p[i]->n_ineq;
368         }
369         lp = isl_basic_set_alloc(set->ctx, 0, dim * set->n, 0, n_eq, n_ineq);
370         if (!lp)
371                 return NULL;
372         lp_dim = isl_basic_set_n_dim(lp);
373         k = isl_basic_set_alloc_equality(lp);
374         isl_int_set_si(lp->eq[k][0], -1);
375         for (i = 0; i < set->n; ++i) {
376                 isl_int_set_si(lp->eq[k][1+dim*i], 0);
377                 isl_int_set_si(lp->eq[k][1+dim*i+1], 1);
378                 isl_seq_clr(lp->eq[k]+1+dim*i+2, dim-2);
379         }
380         for (i = 0; i < set->n; ++i) {
381                 k = isl_basic_set_alloc_inequality(lp);
382                 isl_seq_clr(lp->ineq[k], 1+lp_dim);
383                 isl_int_set_si(lp->ineq[k][1+dim*i], 1);
384
385                 for (j = 0; j < set->p[i]->n_eq; ++j) {
386                         k = isl_basic_set_alloc_equality(lp);
387                         isl_seq_clr(lp->eq[k], 1+dim*i);
388                         isl_seq_cpy(lp->eq[k]+1+dim*i, set->p[i]->eq[j], dim);
389                         isl_seq_clr(lp->eq[k]+1+dim*(i+1), dim*(set->n-i-1));
390                 }
391
392                 for (j = 0; j < set->p[i]->n_ineq; ++j) {
393                         k = isl_basic_set_alloc_inequality(lp);
394                         isl_seq_clr(lp->ineq[k], 1+dim*i);
395                         isl_seq_cpy(lp->ineq[k]+1+dim*i, set->p[i]->ineq[j], dim);
396                         isl_seq_clr(lp->ineq[k]+1+dim*(i+1), dim*(set->n-i-1));
397                 }
398         }
399         return lp;
400 }
401
402 /* Given a facet "facet" of the convex hull of "set" and a facet "ridge"
403  * of that facet, compute the other facet of the convex hull that contains
404  * the ridge.
405  *
406  * We first transform the set such that the facet constraint becomes
407  *
408  *                      x_1 >= 0
409  *
410  * I.e., the facet lies in
411  *
412  *                      x_1 = 0
413  *
414  * and on that facet, the constraint that defines the ridge is
415  *
416  *                      x_2 >= 0
417  *
418  * (This transformation is not strictly needed, all that is needed is
419  * that the ridge contains the origin.)
420  *
421  * Since the ridge contains the origin, the cone of the convex hull
422  * will be of the form
423  *
424  *                      x_1 >= 0
425  *                      x_2 >= a x_1
426  *
427  * with this second constraint defining the new facet.
428  * The constant a is obtained by settting x_1 in the cone of the
429  * convex hull to 1 and minimizing x_2.
430  * Now, each element in the cone of the convex hull is the sum
431  * of elements in the cones of the basic sets.
432  * If a_i is the dilation factor of basic set i, then the problem
433  * we need to solve is
434  *
435  *                      min \sum_i x_{i,2}
436  *                      st
437  *                              \sum_i x_{i,1} = 1
438  *                                  a_i   >= 0
439  *                                [ a_i ]
440  *                              A [ x_i ] >= 0
441  *
442  * with
443  *                                  [  1  ]
444  *                              A_i [ x_i ] >= 0
445  *
446  * the constraints of each (transformed) basic set.
447  * If a = n/d, then the constraint defining the new facet (in the transformed
448  * space) is
449  *
450  *                      -n x_1 + d x_2 >= 0
451  *
452  * In the original space, we need to take the same combination of the
453  * corresponding constraints "facet" and "ridge".
454  *
455  * If a = -infty = "-1/0", then we just return the original facet constraint.
456  * This means that the facet is unbounded, but has a bounded intersection
457  * with the union of sets.
458  */
459 static isl_int *wrap_facet(struct isl_set *set, isl_int *facet, isl_int *ridge)
460 {
461         int i;
462         struct isl_mat *T = NULL;
463         struct isl_basic_set *lp = NULL;
464         struct isl_vec *obj;
465         enum isl_lp_result res;
466         isl_int num, den;
467         unsigned dim;
468
469         set = isl_set_copy(set);
470
471         dim = 1 + isl_set_n_dim(set);
472         T = isl_mat_alloc(set->ctx, 3, dim);
473         if (!T)
474                 goto error;
475         isl_int_set_si(T->row[0][0], 1);
476         isl_seq_clr(T->row[0]+1, dim - 1);
477         isl_seq_cpy(T->row[1], facet, dim);
478         isl_seq_cpy(T->row[2], ridge, dim);
479         T = isl_mat_right_inverse(set->ctx, T);
480         set = isl_set_preimage(set, T);
481         T = NULL;
482         if (!set)
483                 goto error;
484         lp = wrap_constraints(set);
485         obj = isl_vec_alloc(set->ctx, dim*set->n);
486         if (!obj)
487                 goto error;
488         for (i = 0; i < set->n; ++i) {
489                 isl_seq_clr(obj->block.data+dim*i, 2);
490                 isl_int_set_si(obj->block.data[dim*i+2], 1);
491                 isl_seq_clr(obj->block.data+dim*i+3, dim-3);
492         }
493         isl_int_init(num);
494         isl_int_init(den);
495         res = isl_solve_lp((struct isl_basic_map *)lp, 0,
496                                     obj->block.data, set->ctx->one, &num, &den);
497         if (res == isl_lp_ok) {
498                 isl_int_neg(num, num);
499                 isl_seq_combine(facet, num, facet, den, ridge, dim);
500         }
501         isl_int_clear(num);
502         isl_int_clear(den);
503         isl_vec_free(set->ctx, obj);
504         isl_basic_set_free(lp);
505         isl_set_free(set);
506         isl_assert(set->ctx, res == isl_lp_ok || res == isl_lp_unbounded, 
507                    return NULL);
508         return facet;
509 error:
510         isl_basic_set_free(lp);
511         isl_mat_free(set->ctx, T);
512         isl_set_free(set);
513         return NULL;
514 }
515
516 /* Given a set of d linearly independent bounding constraints of the
517  * convex hull of "set", compute the constraint of a facet of "set".
518  *
519  * We first compute the intersection with the first bounding hyperplane
520  * and remove the component corresponding to this hyperplane from
521  * other bounds (in homogeneous space).
522  * We then wrap around one of the remaining bounding constraints
523  * and continue the process until all bounding constraints have been
524  * taken into account.
525  * The resulting linear combination of the bounding constraints will
526  * correspond to a facet of the convex hull.
527  */
528 static struct isl_mat *initial_facet_constraint(struct isl_ctx *ctx,
529         struct isl_set *set, struct isl_mat *bounds)
530 {
531         struct isl_set *slice = NULL;
532         struct isl_basic_set *face = NULL;
533         struct isl_mat *m, *U, *Q;
534         int i;
535         unsigned dim = isl_set_n_dim(set);
536
537         isl_assert(ctx, set->n > 0, goto error);
538         isl_assert(ctx, bounds->n_row == dim, goto error);
539
540         while (bounds->n_row > 1) {
541                 slice = isl_set_copy(set);
542                 slice = isl_set_add_equality(ctx, slice, bounds->row[0]);
543                 face = isl_set_affine_hull(slice);
544                 if (!face)
545                         goto error;
546                 if (face->n_eq == 1) {
547                         isl_basic_set_free(face);
548                         break;
549                 }
550                 m = isl_mat_alloc(ctx, 1 + face->n_eq, 1 + dim);
551                 if (!m)
552                         goto error;
553                 isl_int_set_si(m->row[0][0], 1);
554                 isl_seq_clr(m->row[0]+1, dim);
555                 for (i = 0; i < face->n_eq; ++i)
556                         isl_seq_cpy(m->row[1 + i], face->eq[i], 1 + dim);
557                 U = isl_mat_right_inverse(ctx, m);
558                 Q = isl_mat_right_inverse(ctx, isl_mat_copy(ctx, U));
559                 U = isl_mat_drop_cols(ctx, U, 1 + face->n_eq,
560                                                 dim - face->n_eq);
561                 Q = isl_mat_drop_rows(ctx, Q, 1 + face->n_eq,
562                                                 dim - face->n_eq);
563                 U = isl_mat_drop_cols(ctx, U, 0, 1);
564                 Q = isl_mat_drop_rows(ctx, Q, 0, 1);
565                 bounds = isl_mat_product(ctx, bounds, U);
566                 bounds = isl_mat_product(ctx, bounds, Q);
567                 while (isl_seq_first_non_zero(bounds->row[bounds->n_row-1],
568                                               bounds->n_col) == -1) {
569                         bounds->n_row--;
570                         isl_assert(ctx, bounds->n_row > 1, goto error);
571                 }
572                 if (!wrap_facet(set, bounds->row[0],
573                                           bounds->row[bounds->n_row-1]))
574                         goto error;
575                 isl_basic_set_free(face);
576                 bounds->n_row--;
577         }
578         return bounds;
579 error:
580         isl_basic_set_free(face);
581         isl_mat_free(ctx, bounds);
582         return NULL;
583 }
584
585 /* Given the bounding constraint "c" of a facet of the convex hull of "set",
586  * compute a hyperplane description of the facet, i.e., compute the facets
587  * of the facet.
588  *
589  * We compute an affine transformation that transforms the constraint
590  *
591  *                        [ 1 ]
592  *                      c [ x ] = 0
593  *
594  * to the constraint
595  *
596  *                         z_1  = 0
597  *
598  * by computing the right inverse U of a matrix that starts with the rows
599  *
600  *                      [ 1 0 ]
601  *                      [  c  ]
602  *
603  * Then
604  *                      [ 1 ]     [ 1 ]
605  *                      [ x ] = U [ z ]
606  * and
607  *                      [ 1 ]     [ 1 ]
608  *                      [ z ] = Q [ x ]
609  *
610  * with Q = U^{-1}
611  * Since z_1 is zero, we can drop this variable as well as the corresponding
612  * column of U to obtain
613  *
614  *                      [ 1 ]      [ 1  ]
615  *                      [ x ] = U' [ z' ]
616  * and
617  *                      [ 1  ]      [ 1 ]
618  *                      [ z' ] = Q' [ x ]
619  *
620  * with Q' equal to Q, but without the corresponding row.
621  * After computing the facets of the facet in the z' space,
622  * we convert them back to the x space through Q.
623  */
624 static struct isl_basic_set *compute_facet(struct isl_set *set, isl_int *c)
625 {
626         struct isl_mat *m, *U, *Q;
627         struct isl_basic_set *facet;
628         unsigned dim;
629
630         set = isl_set_copy(set);
631         dim = isl_set_n_dim(set);
632         m = isl_mat_alloc(set->ctx, 2, 1 + dim);
633         if (!m)
634                 goto error;
635         isl_int_set_si(m->row[0][0], 1);
636         isl_seq_clr(m->row[0]+1, dim);
637         isl_seq_cpy(m->row[1], c, 1+dim);
638         U = isl_mat_right_inverse(set->ctx, m);
639         Q = isl_mat_right_inverse(set->ctx, isl_mat_copy(set->ctx, U));
640         U = isl_mat_drop_cols(set->ctx, U, 1, 1);
641         Q = isl_mat_drop_rows(set->ctx, Q, 1, 1);
642         set = isl_set_preimage(set, U);
643         facet = uset_convex_hull_wrap_bounded(set);
644         facet = isl_basic_set_preimage(facet, Q);
645         return facet;
646 error:
647         isl_set_free(set);
648         return NULL;
649 }
650
651 /* Given an initial facet constraint, compute the remaining facets.
652  * We do this by running through all facets found so far and computing
653  * the adjacent facets through wrapping, adding those facets that we
654  * hadn't already found before.
655  *
656  * This function can still be significantly optimized by checking which of
657  * the facets of the basic sets are also facets of the convex hull and
658  * using all the facets so far to help in constructing the facets of the
659  * facets
660  * and/or
661  * using the technique in section "3.1 Ridge Generation" of
662  * "Extended Convex Hull" by Fukuda et al.
663  */
664 static struct isl_basic_set *extend(struct isl_basic_set *hull,
665         struct isl_set *set)
666 {
667         int i, j, f;
668         int k;
669         struct isl_basic_set *facet = NULL;
670         unsigned total;
671         unsigned dim;
672
673         isl_assert(set->ctx, set->n > 0, goto error);
674
675         dim = isl_set_n_dim(set);
676
677         for (i = 0; i < hull->n_ineq; ++i) {
678                 facet = compute_facet(set, hull->ineq[i]);
679                 if (!facet)
680                         goto error;
681                 if (facet->n_ineq + hull->n_ineq > hull->c_size)
682                         hull = isl_basic_set_extend_dim(hull,
683                                 isl_dim_copy(hull->dim), 0, 0, facet->n_ineq);
684                 for (j = 0; j < facet->n_ineq; ++j) {
685                         k = isl_basic_set_alloc_inequality(hull);
686                         if (k < 0)
687                                 goto error;
688                         isl_seq_cpy(hull->ineq[k], hull->ineq[i], 1+dim);
689                         if (!wrap_facet(set, hull->ineq[k], facet->ineq[j]))
690                                 goto error;
691                         for (f = 0; f < k; ++f)
692                                 if (isl_seq_eq(hull->ineq[f], hull->ineq[k],
693                                                 1+dim))
694                                         break;
695                         if (f < k)
696                                 isl_basic_set_free_inequality(hull, 1);
697                 }
698                 isl_basic_set_free(facet);
699         }
700         hull = isl_basic_set_simplify(hull);
701         hull = isl_basic_set_finalize(hull);
702         return hull;
703 error:
704         isl_basic_set_free(facet);
705         isl_basic_set_free(hull);
706         return NULL;
707 }
708
709 /* Special case for computing the convex hull of a one dimensional set.
710  * We simply collect the lower and upper bounds of each basic set
711  * and the biggest of those.
712  */
713 static struct isl_basic_set *convex_hull_1d(struct isl_ctx *ctx,
714         struct isl_set *set)
715 {
716         struct isl_mat *c = NULL;
717         isl_int *lower = NULL;
718         isl_int *upper = NULL;
719         int i, j, k;
720         isl_int a, b;
721         struct isl_basic_set *hull;
722
723         for (i = 0; i < set->n; ++i) {
724                 set->p[i] = isl_basic_set_simplify(set->p[i]);
725                 if (!set->p[i])
726                         goto error;
727         }
728         set = isl_set_remove_empty_parts(set);
729         if (!set)
730                 goto error;
731         isl_assert(ctx, set->n > 0, goto error);
732         c = isl_mat_alloc(ctx, 2, 2);
733         if (!c)
734                 goto error;
735
736         if (set->p[0]->n_eq > 0) {
737                 isl_assert(ctx, set->p[0]->n_eq == 1, goto error);
738                 lower = c->row[0];
739                 upper = c->row[1];
740                 if (isl_int_is_pos(set->p[0]->eq[0][1])) {
741                         isl_seq_cpy(lower, set->p[0]->eq[0], 2);
742                         isl_seq_neg(upper, set->p[0]->eq[0], 2);
743                 } else {
744                         isl_seq_neg(lower, set->p[0]->eq[0], 2);
745                         isl_seq_cpy(upper, set->p[0]->eq[0], 2);
746                 }
747         } else {
748                 for (j = 0; j < set->p[0]->n_ineq; ++j) {
749                         if (isl_int_is_pos(set->p[0]->ineq[j][1])) {
750                                 lower = c->row[0];
751                                 isl_seq_cpy(lower, set->p[0]->ineq[j], 2);
752                         } else {
753                                 upper = c->row[1];
754                                 isl_seq_cpy(upper, set->p[0]->ineq[j], 2);
755                         }
756                 }
757         }
758
759         isl_int_init(a);
760         isl_int_init(b);
761         for (i = 0; i < set->n; ++i) {
762                 struct isl_basic_set *bset = set->p[i];
763                 int has_lower = 0;
764                 int has_upper = 0;
765
766                 for (j = 0; j < bset->n_eq; ++j) {
767                         has_lower = 1;
768                         has_upper = 1;
769                         if (lower) {
770                                 isl_int_mul(a, lower[0], bset->eq[j][1]);
771                                 isl_int_mul(b, lower[1], bset->eq[j][0]);
772                                 if (isl_int_lt(a, b) && isl_int_is_pos(bset->eq[j][1]))
773                                         isl_seq_cpy(lower, bset->eq[j], 2);
774                                 if (isl_int_gt(a, b) && isl_int_is_neg(bset->eq[j][1]))
775                                         isl_seq_neg(lower, bset->eq[j], 2);
776                         }
777                         if (upper) {
778                                 isl_int_mul(a, upper[0], bset->eq[j][1]);
779                                 isl_int_mul(b, upper[1], bset->eq[j][0]);
780                                 if (isl_int_lt(a, b) && isl_int_is_pos(bset->eq[j][1]))
781                                         isl_seq_neg(upper, bset->eq[j], 2);
782                                 if (isl_int_gt(a, b) && isl_int_is_neg(bset->eq[j][1]))
783                                         isl_seq_cpy(upper, bset->eq[j], 2);
784                         }
785                 }
786                 for (j = 0; j < bset->n_ineq; ++j) {
787                         if (isl_int_is_pos(bset->ineq[j][1]))
788                                 has_lower = 1;
789                         if (isl_int_is_neg(bset->ineq[j][1]))
790                                 has_upper = 1;
791                         if (lower && isl_int_is_pos(bset->ineq[j][1])) {
792                                 isl_int_mul(a, lower[0], bset->ineq[j][1]);
793                                 isl_int_mul(b, lower[1], bset->ineq[j][0]);
794                                 if (isl_int_lt(a, b))
795                                         isl_seq_cpy(lower, bset->ineq[j], 2);
796                         }
797                         if (upper && isl_int_is_neg(bset->ineq[j][1])) {
798                                 isl_int_mul(a, upper[0], bset->ineq[j][1]);
799                                 isl_int_mul(b, upper[1], bset->ineq[j][0]);
800                                 if (isl_int_gt(a, b))
801                                         isl_seq_cpy(upper, bset->ineq[j], 2);
802                         }
803                 }
804                 if (!has_lower)
805                         lower = NULL;
806                 if (!has_upper)
807                         upper = NULL;
808         }
809         isl_int_clear(a);
810         isl_int_clear(b);
811
812         hull = isl_basic_set_alloc(ctx, 0, 1, 0, 0, 2);
813         hull = isl_basic_set_set_rational(hull);
814         if (!hull)
815                 goto error;
816         if (lower) {
817                 k = isl_basic_set_alloc_inequality(hull);
818                 isl_seq_cpy(hull->ineq[k], lower, 2);
819         }
820         if (upper) {
821                 k = isl_basic_set_alloc_inequality(hull);
822                 isl_seq_cpy(hull->ineq[k], upper, 2);
823         }
824         hull = isl_basic_set_finalize(hull);
825         isl_set_free(set);
826         isl_mat_free(ctx, c);
827         return hull;
828 error:
829         isl_set_free(set);
830         isl_mat_free(ctx, c);
831         return NULL;
832 }
833
834 /* Project out final n dimensions using Fourier-Motzkin */
835 static struct isl_set *set_project_out(struct isl_ctx *ctx,
836         struct isl_set *set, unsigned n)
837 {
838         return isl_set_remove_dims(set, isl_set_n_dim(set) - n, n);
839 }
840
841 static struct isl_basic_set *convex_hull_0d(struct isl_set *set)
842 {
843         struct isl_basic_set *convex_hull;
844
845         if (!set)
846                 return NULL;
847
848         if (isl_set_is_empty(set))
849                 convex_hull = isl_basic_set_empty(isl_dim_copy(set->dim));
850         else
851                 convex_hull = isl_basic_set_universe(isl_dim_copy(set->dim));
852         isl_set_free(set);
853         return convex_hull;
854 }
855
856 /* Compute the convex hull of a pair of basic sets without any parameters or
857  * integer divisions using Fourier-Motzkin elimination.
858  * The convex hull is the set of all points that can be written as
859  * the sum of points from both basic sets (in homogeneous coordinates).
860  * We set up the constraints in a space with dimensions for each of
861  * the three sets and then project out the dimensions corresponding
862  * to the two original basic sets, retaining only those corresponding
863  * to the convex hull.
864  */
865 static struct isl_basic_set *convex_hull_pair(struct isl_basic_set *bset1,
866         struct isl_basic_set *bset2)
867 {
868         int i, j, k;
869         struct isl_basic_set *bset[2];
870         struct isl_basic_set *hull = NULL;
871         unsigned dim;
872
873         if (!bset1 || !bset2)
874                 goto error;
875
876         dim = isl_basic_set_n_dim(bset1);
877         hull = isl_basic_set_alloc(bset1->ctx, 0, 2 + 3 * dim, 0,
878                                 1 + dim + bset1->n_eq + bset2->n_eq,
879                                 2 + bset1->n_ineq + bset2->n_ineq);
880         bset[0] = bset1;
881         bset[1] = bset2;
882         for (i = 0; i < 2; ++i) {
883                 for (j = 0; j < bset[i]->n_eq; ++j) {
884                         k = isl_basic_set_alloc_equality(hull);
885                         if (k < 0)
886                                 goto error;
887                         isl_seq_clr(hull->eq[k], (i+1) * (1+dim));
888                         isl_seq_clr(hull->eq[k]+(i+2)*(1+dim), (1-i)*(1+dim));
889                         isl_seq_cpy(hull->eq[k]+(i+1)*(1+dim), bset[i]->eq[j],
890                                         1+dim);
891                 }
892                 for (j = 0; j < bset[i]->n_ineq; ++j) {
893                         k = isl_basic_set_alloc_inequality(hull);
894                         if (k < 0)
895                                 goto error;
896                         isl_seq_clr(hull->ineq[k], (i+1) * (1+dim));
897                         isl_seq_clr(hull->ineq[k]+(i+2)*(1+dim), (1-i)*(1+dim));
898                         isl_seq_cpy(hull->ineq[k]+(i+1)*(1+dim),
899                                         bset[i]->ineq[j], 1+dim);
900                 }
901                 k = isl_basic_set_alloc_inequality(hull);
902                 if (k < 0)
903                         goto error;
904                 isl_seq_clr(hull->ineq[k], 1+2+3*dim);
905                 isl_int_set_si(hull->ineq[k][(i+1)*(1+dim)], 1);
906         }
907         for (j = 0; j < 1+dim; ++j) {
908                 k = isl_basic_set_alloc_equality(hull);
909                 if (k < 0)
910                         goto error;
911                 isl_seq_clr(hull->eq[k], 1+2+3*dim);
912                 isl_int_set_si(hull->eq[k][j], -1);
913                 isl_int_set_si(hull->eq[k][1+dim+j], 1);
914                 isl_int_set_si(hull->eq[k][2*(1+dim)+j], 1);
915         }
916         hull = isl_basic_set_set_rational(hull);
917         hull = isl_basic_set_remove_dims(hull, dim, 2*(1+dim));
918         hull = isl_basic_set_convex_hull(hull);
919         isl_basic_set_free(bset1);
920         isl_basic_set_free(bset2);
921         return hull;
922 error:
923         isl_basic_set_free(bset1);
924         isl_basic_set_free(bset2);
925         isl_basic_set_free(hull);
926         return NULL;
927 }
928
929 /* Compute the convex hull of a set without any parameters or
930  * integer divisions using Fourier-Motzkin elimination.
931  * In each step, we combined two basic sets until only one
932  * basic set is left.
933  */
934 static struct isl_basic_set *uset_convex_hull_elim(struct isl_set *set)
935 {
936         struct isl_basic_set *convex_hull = NULL;
937
938         convex_hull = isl_set_copy_basic_set(set);
939         set = isl_set_drop_basic_set(set, convex_hull);
940         if (!set)
941                 goto error;
942         while (set->n > 0) {
943                 struct isl_basic_set *t;
944                 t = isl_set_copy_basic_set(set);
945                 if (!t)
946                         goto error;
947                 set = isl_set_drop_basic_set(set, t);
948                 if (!set)
949                         goto error;
950                 convex_hull = convex_hull_pair(convex_hull, t);
951         }
952         isl_set_free(set);
953         return convex_hull;
954 error:
955         isl_set_free(set);
956         isl_basic_set_free(convex_hull);
957         return NULL;
958 }
959
960 /* Compute an initial hull for wrapping containing a single initial
961  * facet by first computing bounds on the set and then using these
962  * bounds to construct an initial facet.
963  * This function is a remnant of an older implementation where the
964  * bounds were also used to check whether the set was bounded.
965  * Since this function will now only be called when we know the
966  * set to be bounded, the initial facet should probably be constructed 
967  * by simply using the coordinate directions instead.
968  */
969 static struct isl_basic_set *initial_hull(struct isl_basic_set *hull,
970         struct isl_set *set)
971 {
972         struct isl_mat *bounds = NULL;
973         unsigned dim;
974         int k;
975
976         if (!hull)
977                 goto error;
978         bounds = independent_bounds(set->ctx, set);
979         if (!bounds)
980                 goto error;
981         isl_assert(set->ctx, bounds->n_row == isl_set_n_dim(set), goto error);
982         bounds = initial_facet_constraint(set->ctx, set, bounds);
983         if (!bounds)
984                 goto error;
985         k = isl_basic_set_alloc_inequality(hull);
986         if (k < 0)
987                 goto error;
988         dim = isl_set_n_dim(set);
989         isl_assert(set->ctx, 1 + dim == bounds->n_col, goto error);
990         isl_seq_cpy(hull->ineq[k], bounds->row[0], bounds->n_col);
991         isl_mat_free(set->ctx, bounds);
992
993         return hull;
994 error:
995         isl_basic_set_free(hull);
996         isl_mat_free(set->ctx, bounds);
997         return NULL;
998 }
999
1000 static struct isl_basic_set *uset_convex_hull_wrap(struct isl_set *set)
1001 {
1002         struct isl_basic_set *hull = NULL;
1003         unsigned n_ineq;
1004         int i;
1005
1006         n_ineq = 1;
1007         for (i = 0; i < set->n; ++i) {
1008                 n_ineq += set->p[i]->n_eq;
1009                 n_ineq += set->p[i]->n_ineq;
1010         }
1011         hull = isl_basic_set_alloc_dim(isl_dim_copy(set->dim), 0, 0, n_ineq);
1012         hull = isl_basic_set_set_rational(hull);
1013         hull = initial_hull(hull, set);
1014         hull = extend(hull, set);
1015         isl_set_free(set);
1016
1017         return hull;
1018 error:
1019         isl_set_free(set);
1020         return NULL;
1021 }
1022
1023 static int isl_basic_set_is_bounded(struct isl_basic_set *bset)
1024 {
1025         struct isl_tab *tab;
1026         int bounded;
1027
1028         tab = isl_tab_from_recession_cone((struct isl_basic_map *)bset);
1029         bounded = isl_tab_cone_is_bounded(bset->ctx, tab);
1030         isl_tab_free(bset->ctx, tab);
1031         return bounded;
1032 }
1033
1034 static int isl_set_is_bounded(struct isl_set *set)
1035 {
1036         int i;
1037
1038         for (i = 0; i < set->n; ++i) {
1039                 int bounded = isl_basic_set_is_bounded(set->p[i]);
1040                 if (!bounded || bounded < 0)
1041                         return bounded;
1042         }
1043         return 1;
1044 }
1045
1046 /* Compute the convex hull of a set without any parameters or
1047  * integer divisions.  Depending on whether the set is bounded,
1048  * we pass control to the wrapping based convex hull or
1049  * the Fourier-Motzkin elimination based convex hull.
1050  * We also handle a few special cases before checking the boundedness.
1051  */
1052 static struct isl_basic_set *uset_convex_hull(struct isl_set *set)
1053 {
1054         int i;
1055         struct isl_basic_set *convex_hull = NULL;
1056
1057         if (isl_set_n_dim(set) == 0)
1058                 return convex_hull_0d(set);
1059
1060         set = isl_set_set_rational(set);
1061
1062         if (!set)
1063                 goto error;
1064         set = isl_set_normalize(set);
1065         if (!set)
1066                 return NULL;
1067         if (set->n == 1) {
1068                 convex_hull = isl_basic_set_copy(set->p[0]);
1069                 isl_set_free(set);
1070                 return convex_hull;
1071         }
1072         if (isl_set_n_dim(set) == 1)
1073                 return convex_hull_1d(set->ctx, set);
1074
1075         if (!isl_set_is_bounded(set))
1076                 return uset_convex_hull_elim(set);
1077
1078         return uset_convex_hull_wrap(set);
1079 error:
1080         isl_set_free(set);
1081         isl_basic_set_free(convex_hull);
1082         return NULL;
1083 }
1084
1085 /* This is the core procedure, where "set" is a "pure" set, i.e.,
1086  * without parameters or divs and where the convex hull of set is
1087  * known to be full-dimensional.
1088  */
1089 static struct isl_basic_set *uset_convex_hull_wrap_bounded(struct isl_set *set)
1090 {
1091         int i;
1092         struct isl_basic_set *convex_hull = NULL;
1093
1094         if (isl_set_n_dim(set) == 0) {
1095                 convex_hull = isl_basic_set_universe(isl_dim_copy(set->dim));
1096                 isl_set_free(set);
1097                 convex_hull = isl_basic_set_set_rational(convex_hull);
1098                 return convex_hull;
1099         }
1100
1101         set = isl_set_set_rational(set);
1102
1103         if (!set)
1104                 goto error;
1105         set = isl_set_normalize(set);
1106         if (!set)
1107                 goto error;
1108         if (set->n == 1) {
1109                 convex_hull = isl_basic_set_copy(set->p[0]);
1110                 isl_set_free(set);
1111                 return convex_hull;
1112         }
1113         if (isl_set_n_dim(set) == 1)
1114                 return convex_hull_1d(set->ctx, set);
1115
1116         return uset_convex_hull_wrap(set);
1117 error:
1118         isl_set_free(set);
1119         return NULL;
1120 }
1121
1122 /* Compute the convex hull of set "set" with affine hull "affine_hull",
1123  * We first remove the equalities (transforming the set), compute the
1124  * convex hull of the transformed set and then add the equalities back
1125  * (after performing the inverse transformation.
1126  */
1127 static struct isl_basic_set *modulo_affine_hull(struct isl_ctx *ctx,
1128         struct isl_set *set, struct isl_basic_set *affine_hull)
1129 {
1130         struct isl_mat *T;
1131         struct isl_mat *T2;
1132         struct isl_basic_set *dummy;
1133         struct isl_basic_set *convex_hull;
1134
1135         dummy = isl_basic_set_remove_equalities(
1136                         isl_basic_set_copy(affine_hull), &T, &T2);
1137         if (!dummy)
1138                 goto error;
1139         isl_basic_set_free(dummy);
1140         set = isl_set_preimage(set, T);
1141         convex_hull = uset_convex_hull(set);
1142         convex_hull = isl_basic_set_preimage(convex_hull, T2);
1143         convex_hull = isl_basic_set_intersect(convex_hull, affine_hull);
1144         return convex_hull;
1145 error:
1146         isl_basic_set_free(affine_hull);
1147         isl_set_free(set);
1148         return NULL;
1149 }
1150
1151 /* Compute the convex hull of a map.
1152  *
1153  * The implementation was inspired by "Extended Convex Hull" by Fukuda et al.,
1154  * specifically, the wrapping of facets to obtain new facets.
1155  */
1156 struct isl_basic_map *isl_map_convex_hull(struct isl_map *map)
1157 {
1158         struct isl_basic_set *bset;
1159         struct isl_basic_map *model = NULL;
1160         struct isl_basic_set *affine_hull = NULL;
1161         struct isl_basic_map *convex_hull = NULL;
1162         struct isl_set *set = NULL;
1163         struct isl_ctx *ctx;
1164
1165         if (!map)
1166                 goto error;
1167
1168         ctx = map->ctx;
1169         if (map->n == 0) {
1170                 convex_hull = isl_basic_map_empty_like_map(map);
1171                 isl_map_free(map);
1172                 return convex_hull;
1173         }
1174
1175         map = isl_map_align_divs(map);
1176         model = isl_basic_map_copy(map->p[0]);
1177         set = isl_map_underlying_set(map);
1178         if (!set)
1179                 goto error;
1180
1181         affine_hull = isl_set_affine_hull(isl_set_copy(set));
1182         if (!affine_hull)
1183                 goto error;
1184         if (affine_hull->n_eq != 0)
1185                 bset = modulo_affine_hull(ctx, set, affine_hull);
1186         else {
1187                 isl_basic_set_free(affine_hull);
1188                 bset = uset_convex_hull(set);
1189         }
1190
1191         convex_hull = isl_basic_map_overlying_set(bset, model);
1192
1193         ISL_F_CLR(convex_hull, ISL_BASIC_MAP_RATIONAL);
1194         return convex_hull;
1195 error:
1196         isl_set_free(set);
1197         isl_basic_map_free(model);
1198         return NULL;
1199 }
1200
1201 struct isl_basic_set *isl_set_convex_hull(struct isl_set *set)
1202 {
1203         return (struct isl_basic_set *)
1204                 isl_map_convex_hull((struct isl_map *)set);
1205 }
1206
1207 /* Compute a superset of the convex hull of map that is described
1208  * by only translates of the constraints in the constituents of map.
1209  *
1210  * The implementation is not very efficient.  In particular, if
1211  * constraints with the same normal appear in more than one
1212  * basic map, they will be (re)examined each time.
1213  */
1214 struct isl_basic_map *isl_map_simple_hull(struct isl_map *map)
1215 {
1216         struct isl_set *set = NULL;
1217         struct isl_basic_map *model = NULL;
1218         struct isl_basic_map *hull;
1219         struct isl_basic_set *bset = NULL;
1220         int i, j;
1221         unsigned n_ineq;
1222         unsigned dim;
1223
1224         if (!map)
1225                 return NULL;
1226         if (map->n == 0) {
1227                 hull = isl_basic_map_empty_like_map(map);
1228                 isl_map_free(map);
1229                 return hull;
1230         }
1231         if (map->n == 1) {
1232                 hull = isl_basic_map_copy(map->p[0]);
1233                 isl_map_free(map);
1234                 return hull;
1235         }
1236
1237         map = isl_map_align_divs(map);
1238         model = isl_basic_map_copy(map->p[0]);
1239
1240         n_ineq = 0;
1241         for (i = 0; i < map->n; ++i) {
1242                 if (!map->p[i])
1243                         goto error;
1244                 n_ineq += map->p[i]->n_ineq;
1245         }
1246
1247         set = isl_map_underlying_set(map);
1248         if (!set)
1249                 goto error;
1250
1251         bset = isl_set_affine_hull(isl_set_copy(set));
1252         if (!bset)
1253                 goto error;
1254         dim = isl_basic_set_n_dim(bset);
1255         bset = isl_basic_set_extend(bset, 0, dim, 0, 0, n_ineq);
1256         if (!bset)
1257                 goto error;
1258
1259         for (i = 0; i < set->n; ++i) {
1260                 for (j = 0; j < set->p[i]->n_ineq; ++j) {
1261                         int k;
1262                         int is_bound;
1263
1264                         k = isl_basic_set_alloc_inequality(bset);
1265                         if (k < 0)
1266                                 goto error;
1267                         isl_seq_cpy(bset->ineq[k], set->p[i]->ineq[j], 1 + dim);
1268                         is_bound = uset_is_bound(set->ctx, set, bset->ineq[k],
1269                                                         1 + dim);
1270                         if (is_bound < 0)
1271                                 goto error;
1272                         if (!is_bound)
1273                                 isl_basic_set_free_inequality(bset, 1);
1274                 }
1275         }
1276
1277         bset = isl_basic_set_simplify(bset);
1278         bset = isl_basic_set_finalize(bset);
1279         bset = isl_basic_set_convex_hull(bset);
1280
1281         hull = isl_basic_map_overlying_set(bset, model);
1282
1283         isl_set_free(set);
1284         return hull;
1285 error:
1286         isl_basic_set_free(bset);
1287         isl_set_free(set);
1288         isl_basic_map_free(model);
1289         return NULL;
1290 }
1291
1292 struct isl_basic_set *isl_set_simple_hull(struct isl_set *set)
1293 {
1294         return (struct isl_basic_set *)
1295                 isl_map_simple_hull((struct isl_map *)set);
1296 }