scheduler: fix checking conditional validity constraints on compressed domains
[isl.git] / isl_convex_hull.c
blob012af9d2d897f198b44600a22ecb08586baf5366
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2014 INRIA Rocquencourt
5 * Use of this software is governed by the MIT license
7 * Written by Sven Verdoolaege, K.U.Leuven, Departement
8 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
9 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
10 * B.P. 105 - 78153 Le Chesnay, France
13 #include <isl_ctx_private.h>
14 #include <isl_map_private.h>
15 #include <isl_lp_private.h>
16 #include <isl/map.h>
17 #include <isl_mat_private.h>
18 #include <isl_vec_private.h>
19 #include <isl/set.h>
20 #include <isl_seq.h>
21 #include <isl_options_private.h>
22 #include "isl_equalities.h"
23 #include "isl_tab.h"
24 #include <isl_sort.h>
26 #include <bset_to_bmap.c>
27 #include <bset_from_bmap.c>
28 #include <set_to_map.c>
30 static struct isl_basic_set *uset_convex_hull_wrap_bounded(struct isl_set *set);
32 /* Return 1 if constraint c is redundant with respect to the constraints
33 * in bmap. If c is a lower [upper] bound in some variable and bmap
34 * does not have a lower [upper] bound in that variable, then c cannot
35 * be redundant and we do not need solve any lp.
37 int isl_basic_map_constraint_is_redundant(struct isl_basic_map **bmap,
38 isl_int *c, isl_int *opt_n, isl_int *opt_d)
40 enum isl_lp_result res;
41 unsigned total;
42 int i, j;
44 if (!bmap)
45 return -1;
47 total = isl_basic_map_total_dim(*bmap);
48 for (i = 0; i < total; ++i) {
49 int sign;
50 if (isl_int_is_zero(c[1+i]))
51 continue;
52 sign = isl_int_sgn(c[1+i]);
53 for (j = 0; j < (*bmap)->n_ineq; ++j)
54 if (sign == isl_int_sgn((*bmap)->ineq[j][1+i]))
55 break;
56 if (j == (*bmap)->n_ineq)
57 break;
59 if (i < total)
60 return 0;
62 res = isl_basic_map_solve_lp(*bmap, 0, c, (*bmap)->ctx->one,
63 opt_n, opt_d, NULL);
64 if (res == isl_lp_unbounded)
65 return 0;
66 if (res == isl_lp_error)
67 return -1;
68 if (res == isl_lp_empty) {
69 *bmap = isl_basic_map_set_to_empty(*bmap);
70 return 0;
72 return !isl_int_is_neg(*opt_n);
75 int isl_basic_set_constraint_is_redundant(struct isl_basic_set **bset,
76 isl_int *c, isl_int *opt_n, isl_int *opt_d)
78 return isl_basic_map_constraint_is_redundant(
79 (struct isl_basic_map **)bset, c, opt_n, opt_d);
82 /* Remove redundant
83 * constraints. If the minimal value along the normal of a constraint
84 * is the same if the constraint is removed, then the constraint is redundant.
86 * Since some constraints may be mutually redundant, sort the constraints
87 * first such that constraints that involve existentially quantified
88 * variables are considered for removal before those that do not.
89 * The sorting is also needed for the use in map_simple_hull.
91 * Note that isl_tab_detect_implicit_equalities may also end up
92 * marking some constraints as redundant. Make sure the constraints
93 * are preserved and undo those marking such that isl_tab_detect_redundant
94 * can consider the constraints in the sorted order.
96 * Alternatively, we could have intersected the basic map with the
97 * corresponding equality and then checked if the dimension was that
98 * of a facet.
100 __isl_give isl_basic_map *isl_basic_map_remove_redundancies(
101 __isl_take isl_basic_map *bmap)
103 struct isl_tab *tab;
105 if (!bmap)
106 return NULL;
108 bmap = isl_basic_map_gauss(bmap, NULL);
109 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
110 return bmap;
111 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NO_REDUNDANT))
112 return bmap;
113 if (bmap->n_ineq <= 1)
114 return bmap;
116 bmap = isl_basic_map_sort_constraints(bmap);
117 tab = isl_tab_from_basic_map(bmap, 0);
118 if (!tab)
119 goto error;
120 tab->preserve = 1;
121 if (isl_tab_detect_implicit_equalities(tab) < 0)
122 goto error;
123 if (isl_tab_restore_redundant(tab) < 0)
124 goto error;
125 tab->preserve = 0;
126 if (isl_tab_detect_redundant(tab) < 0)
127 goto error;
128 bmap = isl_basic_map_update_from_tab(bmap, tab);
129 isl_tab_free(tab);
130 if (!bmap)
131 return NULL;
132 ISL_F_SET(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
133 ISL_F_SET(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
134 return bmap;
135 error:
136 isl_tab_free(tab);
137 isl_basic_map_free(bmap);
138 return NULL;
141 __isl_give isl_basic_set *isl_basic_set_remove_redundancies(
142 __isl_take isl_basic_set *bset)
144 return bset_from_bmap(
145 isl_basic_map_remove_redundancies(bset_to_bmap(bset)));
148 /* Remove redundant constraints in each of the basic maps.
150 __isl_give isl_map *isl_map_remove_redundancies(__isl_take isl_map *map)
152 return isl_map_inline_foreach_basic_map(map,
153 &isl_basic_map_remove_redundancies);
156 __isl_give isl_set *isl_set_remove_redundancies(__isl_take isl_set *set)
158 return isl_map_remove_redundancies(set);
161 /* Check if the set set is bound in the direction of the affine
162 * constraint c and if so, set the constant term such that the
163 * resulting constraint is a bounding constraint for the set.
165 static int uset_is_bound(struct isl_set *set, isl_int *c, unsigned len)
167 int first;
168 int j;
169 isl_int opt;
170 isl_int opt_denom;
172 isl_int_init(opt);
173 isl_int_init(opt_denom);
174 first = 1;
175 for (j = 0; j < set->n; ++j) {
176 enum isl_lp_result res;
178 if (ISL_F_ISSET(set->p[j], ISL_BASIC_SET_EMPTY))
179 continue;
181 res = isl_basic_set_solve_lp(set->p[j],
182 0, c, set->ctx->one, &opt, &opt_denom, NULL);
183 if (res == isl_lp_unbounded)
184 break;
185 if (res == isl_lp_error)
186 goto error;
187 if (res == isl_lp_empty) {
188 set->p[j] = isl_basic_set_set_to_empty(set->p[j]);
189 if (!set->p[j])
190 goto error;
191 continue;
193 if (first || isl_int_is_neg(opt)) {
194 if (!isl_int_is_one(opt_denom))
195 isl_seq_scale(c, c, opt_denom, len);
196 isl_int_sub(c[0], c[0], opt);
198 first = 0;
200 isl_int_clear(opt);
201 isl_int_clear(opt_denom);
202 return j >= set->n;
203 error:
204 isl_int_clear(opt);
205 isl_int_clear(opt_denom);
206 return -1;
209 __isl_give isl_basic_map *isl_basic_map_set_rational(
210 __isl_take isl_basic_map *bmap)
212 if (!bmap)
213 return NULL;
215 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
216 return bmap;
218 bmap = isl_basic_map_cow(bmap);
219 if (!bmap)
220 return NULL;
222 ISL_F_SET(bmap, ISL_BASIC_MAP_RATIONAL);
224 return isl_basic_map_finalize(bmap);
227 __isl_give isl_basic_set *isl_basic_set_set_rational(
228 __isl_take isl_basic_set *bset)
230 return isl_basic_map_set_rational(bset);
233 __isl_give isl_map *isl_map_set_rational(__isl_take isl_map *map)
235 int i;
237 map = isl_map_cow(map);
238 if (!map)
239 return NULL;
240 for (i = 0; i < map->n; ++i) {
241 map->p[i] = isl_basic_map_set_rational(map->p[i]);
242 if (!map->p[i])
243 goto error;
245 return map;
246 error:
247 isl_map_free(map);
248 return NULL;
251 __isl_give isl_set *isl_set_set_rational(__isl_take isl_set *set)
253 return isl_map_set_rational(set);
256 static struct isl_basic_set *isl_basic_set_add_equality(
257 struct isl_basic_set *bset, isl_int *c)
259 int i;
260 unsigned dim;
262 if (!bset)
263 return NULL;
265 if (ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY))
266 return bset;
268 isl_assert(bset->ctx, isl_basic_set_n_param(bset) == 0, goto error);
269 isl_assert(bset->ctx, bset->n_div == 0, goto error);
270 dim = isl_basic_set_n_dim(bset);
271 bset = isl_basic_set_cow(bset);
272 bset = isl_basic_set_extend(bset, 0, dim, 0, 1, 0);
273 i = isl_basic_set_alloc_equality(bset);
274 if (i < 0)
275 goto error;
276 isl_seq_cpy(bset->eq[i], c, 1 + dim);
277 return bset;
278 error:
279 isl_basic_set_free(bset);
280 return NULL;
283 static struct isl_set *isl_set_add_basic_set_equality(struct isl_set *set, isl_int *c)
285 int i;
287 set = isl_set_cow(set);
288 if (!set)
289 return NULL;
290 for (i = 0; i < set->n; ++i) {
291 set->p[i] = isl_basic_set_add_equality(set->p[i], c);
292 if (!set->p[i])
293 goto error;
295 return set;
296 error:
297 isl_set_free(set);
298 return NULL;
301 /* Given a union of basic sets, construct the constraints for wrapping
302 * a facet around one of its ridges.
303 * In particular, if each of n the d-dimensional basic sets i in "set"
304 * contains the origin, satisfies the constraints x_1 >= 0 and x_2 >= 0
305 * and is defined by the constraints
306 * [ 1 ]
307 * A_i [ x ] >= 0
309 * then the resulting set is of dimension n*(1+d) and has as constraints
311 * [ a_i ]
312 * A_i [ x_i ] >= 0
314 * a_i >= 0
316 * \sum_i x_{i,1} = 1
318 static struct isl_basic_set *wrap_constraints(struct isl_set *set)
320 struct isl_basic_set *lp;
321 unsigned n_eq;
322 unsigned n_ineq;
323 int i, j, k;
324 unsigned dim, lp_dim;
326 if (!set)
327 return NULL;
329 dim = 1 + isl_set_n_dim(set);
330 n_eq = 1;
331 n_ineq = set->n;
332 for (i = 0; i < set->n; ++i) {
333 n_eq += set->p[i]->n_eq;
334 n_ineq += set->p[i]->n_ineq;
336 lp = isl_basic_set_alloc(set->ctx, 0, dim * set->n, 0, n_eq, n_ineq);
337 lp = isl_basic_set_set_rational(lp);
338 if (!lp)
339 return NULL;
340 lp_dim = isl_basic_set_n_dim(lp);
341 k = isl_basic_set_alloc_equality(lp);
342 isl_int_set_si(lp->eq[k][0], -1);
343 for (i = 0; i < set->n; ++i) {
344 isl_int_set_si(lp->eq[k][1+dim*i], 0);
345 isl_int_set_si(lp->eq[k][1+dim*i+1], 1);
346 isl_seq_clr(lp->eq[k]+1+dim*i+2, dim-2);
348 for (i = 0; i < set->n; ++i) {
349 k = isl_basic_set_alloc_inequality(lp);
350 isl_seq_clr(lp->ineq[k], 1+lp_dim);
351 isl_int_set_si(lp->ineq[k][1+dim*i], 1);
353 for (j = 0; j < set->p[i]->n_eq; ++j) {
354 k = isl_basic_set_alloc_equality(lp);
355 isl_seq_clr(lp->eq[k], 1+dim*i);
356 isl_seq_cpy(lp->eq[k]+1+dim*i, set->p[i]->eq[j], dim);
357 isl_seq_clr(lp->eq[k]+1+dim*(i+1), dim*(set->n-i-1));
360 for (j = 0; j < set->p[i]->n_ineq; ++j) {
361 k = isl_basic_set_alloc_inequality(lp);
362 isl_seq_clr(lp->ineq[k], 1+dim*i);
363 isl_seq_cpy(lp->ineq[k]+1+dim*i, set->p[i]->ineq[j], dim);
364 isl_seq_clr(lp->ineq[k]+1+dim*(i+1), dim*(set->n-i-1));
367 return lp;
370 /* Given a facet "facet" of the convex hull of "set" and a facet "ridge"
371 * of that facet, compute the other facet of the convex hull that contains
372 * the ridge.
374 * We first transform the set such that the facet constraint becomes
376 * x_1 >= 0
378 * I.e., the facet lies in
380 * x_1 = 0
382 * and on that facet, the constraint that defines the ridge is
384 * x_2 >= 0
386 * (This transformation is not strictly needed, all that is needed is
387 * that the ridge contains the origin.)
389 * Since the ridge contains the origin, the cone of the convex hull
390 * will be of the form
392 * x_1 >= 0
393 * x_2 >= a x_1
395 * with this second constraint defining the new facet.
396 * The constant a is obtained by settting x_1 in the cone of the
397 * convex hull to 1 and minimizing x_2.
398 * Now, each element in the cone of the convex hull is the sum
399 * of elements in the cones of the basic sets.
400 * If a_i is the dilation factor of basic set i, then the problem
401 * we need to solve is
403 * min \sum_i x_{i,2}
404 * st
405 * \sum_i x_{i,1} = 1
406 * a_i >= 0
407 * [ a_i ]
408 * A [ x_i ] >= 0
410 * with
411 * [ 1 ]
412 * A_i [ x_i ] >= 0
414 * the constraints of each (transformed) basic set.
415 * If a = n/d, then the constraint defining the new facet (in the transformed
416 * space) is
418 * -n x_1 + d x_2 >= 0
420 * In the original space, we need to take the same combination of the
421 * corresponding constraints "facet" and "ridge".
423 * If a = -infty = "-1/0", then we just return the original facet constraint.
424 * This means that the facet is unbounded, but has a bounded intersection
425 * with the union of sets.
427 isl_int *isl_set_wrap_facet(__isl_keep isl_set *set,
428 isl_int *facet, isl_int *ridge)
430 int i;
431 isl_ctx *ctx;
432 struct isl_mat *T = NULL;
433 struct isl_basic_set *lp = NULL;
434 struct isl_vec *obj;
435 enum isl_lp_result res;
436 isl_int num, den;
437 unsigned dim;
439 if (!set)
440 return NULL;
441 ctx = set->ctx;
442 set = isl_set_copy(set);
443 set = isl_set_set_rational(set);
445 dim = 1 + isl_set_n_dim(set);
446 T = isl_mat_alloc(ctx, 3, dim);
447 if (!T)
448 goto error;
449 isl_int_set_si(T->row[0][0], 1);
450 isl_seq_clr(T->row[0]+1, dim - 1);
451 isl_seq_cpy(T->row[1], facet, dim);
452 isl_seq_cpy(T->row[2], ridge, dim);
453 T = isl_mat_right_inverse(T);
454 set = isl_set_preimage(set, T);
455 T = NULL;
456 if (!set)
457 goto error;
458 lp = wrap_constraints(set);
459 obj = isl_vec_alloc(ctx, 1 + dim*set->n);
460 if (!obj)
461 goto error;
462 isl_int_set_si(obj->block.data[0], 0);
463 for (i = 0; i < set->n; ++i) {
464 isl_seq_clr(obj->block.data + 1 + dim*i, 2);
465 isl_int_set_si(obj->block.data[1 + dim*i+2], 1);
466 isl_seq_clr(obj->block.data + 1 + dim*i+3, dim-3);
468 isl_int_init(num);
469 isl_int_init(den);
470 res = isl_basic_set_solve_lp(lp, 0,
471 obj->block.data, ctx->one, &num, &den, NULL);
472 if (res == isl_lp_ok) {
473 isl_int_neg(num, num);
474 isl_seq_combine(facet, num, facet, den, ridge, dim);
475 isl_seq_normalize(ctx, facet, dim);
477 isl_int_clear(num);
478 isl_int_clear(den);
479 isl_vec_free(obj);
480 isl_basic_set_free(lp);
481 isl_set_free(set);
482 if (res == isl_lp_error)
483 return NULL;
484 isl_assert(ctx, res == isl_lp_ok || res == isl_lp_unbounded,
485 return NULL);
486 return facet;
487 error:
488 isl_basic_set_free(lp);
489 isl_mat_free(T);
490 isl_set_free(set);
491 return NULL;
494 /* Compute the constraint of a facet of "set".
496 * We first compute the intersection with a bounding constraint
497 * that is orthogonal to one of the coordinate axes.
498 * If the affine hull of this intersection has only one equality,
499 * we have found a facet.
500 * Otherwise, we wrap the current bounding constraint around
501 * one of the equalities of the face (one that is not equal to
502 * the current bounding constraint).
503 * This process continues until we have found a facet.
504 * The dimension of the intersection increases by at least
505 * one on each iteration, so termination is guaranteed.
507 static __isl_give isl_mat *initial_facet_constraint(__isl_keep isl_set *set)
509 struct isl_set *slice = NULL;
510 struct isl_basic_set *face = NULL;
511 int i;
512 unsigned dim = isl_set_n_dim(set);
513 int is_bound;
514 isl_mat *bounds = NULL;
516 isl_assert(set->ctx, set->n > 0, goto error);
517 bounds = isl_mat_alloc(set->ctx, 1, 1 + dim);
518 if (!bounds)
519 return NULL;
521 isl_seq_clr(bounds->row[0], dim);
522 isl_int_set_si(bounds->row[0][1 + dim - 1], 1);
523 is_bound = uset_is_bound(set, bounds->row[0], 1 + dim);
524 if (is_bound < 0)
525 goto error;
526 isl_assert(set->ctx, is_bound, goto error);
527 isl_seq_normalize(set->ctx, bounds->row[0], 1 + dim);
528 bounds->n_row = 1;
530 for (;;) {
531 slice = isl_set_copy(set);
532 slice = isl_set_add_basic_set_equality(slice, bounds->row[0]);
533 face = isl_set_affine_hull(slice);
534 if (!face)
535 goto error;
536 if (face->n_eq == 1) {
537 isl_basic_set_free(face);
538 break;
540 for (i = 0; i < face->n_eq; ++i)
541 if (!isl_seq_eq(bounds->row[0], face->eq[i], 1 + dim) &&
542 !isl_seq_is_neg(bounds->row[0],
543 face->eq[i], 1 + dim))
544 break;
545 isl_assert(set->ctx, i < face->n_eq, goto error);
546 if (!isl_set_wrap_facet(set, bounds->row[0], face->eq[i]))
547 goto error;
548 isl_seq_normalize(set->ctx, bounds->row[0], bounds->n_col);
549 isl_basic_set_free(face);
552 return bounds;
553 error:
554 isl_basic_set_free(face);
555 isl_mat_free(bounds);
556 return NULL;
559 /* Given the bounding constraint "c" of a facet of the convex hull of "set",
560 * compute a hyperplane description of the facet, i.e., compute the facets
561 * of the facet.
563 * We compute an affine transformation that transforms the constraint
565 * [ 1 ]
566 * c [ x ] = 0
568 * to the constraint
570 * z_1 = 0
572 * by computing the right inverse U of a matrix that starts with the rows
574 * [ 1 0 ]
575 * [ c ]
577 * Then
578 * [ 1 ] [ 1 ]
579 * [ x ] = U [ z ]
580 * and
581 * [ 1 ] [ 1 ]
582 * [ z ] = Q [ x ]
584 * with Q = U^{-1}
585 * Since z_1 is zero, we can drop this variable as well as the corresponding
586 * column of U to obtain
588 * [ 1 ] [ 1 ]
589 * [ x ] = U' [ z' ]
590 * and
591 * [ 1 ] [ 1 ]
592 * [ z' ] = Q' [ x ]
594 * with Q' equal to Q, but without the corresponding row.
595 * After computing the facets of the facet in the z' space,
596 * we convert them back to the x space through Q.
598 static struct isl_basic_set *compute_facet(struct isl_set *set, isl_int *c)
600 struct isl_mat *m, *U, *Q;
601 struct isl_basic_set *facet = NULL;
602 struct isl_ctx *ctx;
603 unsigned dim;
605 ctx = set->ctx;
606 set = isl_set_copy(set);
607 dim = isl_set_n_dim(set);
608 m = isl_mat_alloc(set->ctx, 2, 1 + dim);
609 if (!m)
610 goto error;
611 isl_int_set_si(m->row[0][0], 1);
612 isl_seq_clr(m->row[0]+1, dim);
613 isl_seq_cpy(m->row[1], c, 1+dim);
614 U = isl_mat_right_inverse(m);
615 Q = isl_mat_right_inverse(isl_mat_copy(U));
616 U = isl_mat_drop_cols(U, 1, 1);
617 Q = isl_mat_drop_rows(Q, 1, 1);
618 set = isl_set_preimage(set, U);
619 facet = uset_convex_hull_wrap_bounded(set);
620 facet = isl_basic_set_preimage(facet, Q);
621 if (facet && facet->n_eq != 0)
622 isl_die(ctx, isl_error_internal, "unexpected equality",
623 return isl_basic_set_free(facet));
624 return facet;
625 error:
626 isl_basic_set_free(facet);
627 isl_set_free(set);
628 return NULL;
631 /* Given an initial facet constraint, compute the remaining facets.
632 * We do this by running through all facets found so far and computing
633 * the adjacent facets through wrapping, adding those facets that we
634 * hadn't already found before.
636 * For each facet we have found so far, we first compute its facets
637 * in the resulting convex hull. That is, we compute the ridges
638 * of the resulting convex hull contained in the facet.
639 * We also compute the corresponding facet in the current approximation
640 * of the convex hull. There is no need to wrap around the ridges
641 * in this facet since that would result in a facet that is already
642 * present in the current approximation.
644 * This function can still be significantly optimized by checking which of
645 * the facets of the basic sets are also facets of the convex hull and
646 * using all the facets so far to help in constructing the facets of the
647 * facets
648 * and/or
649 * using the technique in section "3.1 Ridge Generation" of
650 * "Extended Convex Hull" by Fukuda et al.
652 static struct isl_basic_set *extend(struct isl_basic_set *hull,
653 struct isl_set *set)
655 int i, j, f;
656 int k;
657 struct isl_basic_set *facet = NULL;
658 struct isl_basic_set *hull_facet = NULL;
659 unsigned dim;
661 if (!hull)
662 return NULL;
664 isl_assert(set->ctx, set->n > 0, goto error);
666 dim = isl_set_n_dim(set);
668 for (i = 0; i < hull->n_ineq; ++i) {
669 facet = compute_facet(set, hull->ineq[i]);
670 facet = isl_basic_set_add_equality(facet, hull->ineq[i]);
671 facet = isl_basic_set_gauss(facet, NULL);
672 facet = isl_basic_set_normalize_constraints(facet);
673 hull_facet = isl_basic_set_copy(hull);
674 hull_facet = isl_basic_set_add_equality(hull_facet, hull->ineq[i]);
675 hull_facet = isl_basic_set_gauss(hull_facet, NULL);
676 hull_facet = isl_basic_set_normalize_constraints(hull_facet);
677 if (!facet || !hull_facet)
678 goto error;
679 hull = isl_basic_set_cow(hull);
680 hull = isl_basic_set_extend_space(hull,
681 isl_space_copy(hull->dim), 0, 0, facet->n_ineq);
682 if (!hull)
683 goto error;
684 for (j = 0; j < facet->n_ineq; ++j) {
685 for (f = 0; f < hull_facet->n_ineq; ++f)
686 if (isl_seq_eq(facet->ineq[j],
687 hull_facet->ineq[f], 1 + dim))
688 break;
689 if (f < hull_facet->n_ineq)
690 continue;
691 k = isl_basic_set_alloc_inequality(hull);
692 if (k < 0)
693 goto error;
694 isl_seq_cpy(hull->ineq[k], hull->ineq[i], 1+dim);
695 if (!isl_set_wrap_facet(set, hull->ineq[k], facet->ineq[j]))
696 goto error;
698 isl_basic_set_free(hull_facet);
699 isl_basic_set_free(facet);
701 hull = isl_basic_set_simplify(hull);
702 hull = isl_basic_set_finalize(hull);
703 return hull;
704 error:
705 isl_basic_set_free(hull_facet);
706 isl_basic_set_free(facet);
707 isl_basic_set_free(hull);
708 return NULL;
711 /* Special case for computing the convex hull of a one dimensional set.
712 * We simply collect the lower and upper bounds of each basic set
713 * and the biggest of those.
715 static struct isl_basic_set *convex_hull_1d(struct isl_set *set)
717 struct isl_mat *c = NULL;
718 isl_int *lower = NULL;
719 isl_int *upper = NULL;
720 int i, j, k;
721 isl_int a, b;
722 struct isl_basic_set *hull;
724 for (i = 0; i < set->n; ++i) {
725 set->p[i] = isl_basic_set_simplify(set->p[i]);
726 if (!set->p[i])
727 goto error;
729 set = isl_set_remove_empty_parts(set);
730 if (!set)
731 goto error;
732 isl_assert(set->ctx, set->n > 0, goto error);
733 c = isl_mat_alloc(set->ctx, 2, 2);
734 if (!c)
735 goto error;
737 if (set->p[0]->n_eq > 0) {
738 isl_assert(set->ctx, set->p[0]->n_eq == 1, goto error);
739 lower = c->row[0];
740 upper = c->row[1];
741 if (isl_int_is_pos(set->p[0]->eq[0][1])) {
742 isl_seq_cpy(lower, set->p[0]->eq[0], 2);
743 isl_seq_neg(upper, set->p[0]->eq[0], 2);
744 } else {
745 isl_seq_neg(lower, set->p[0]->eq[0], 2);
746 isl_seq_cpy(upper, set->p[0]->eq[0], 2);
748 } else {
749 for (j = 0; j < set->p[0]->n_ineq; ++j) {
750 if (isl_int_is_pos(set->p[0]->ineq[j][1])) {
751 lower = c->row[0];
752 isl_seq_cpy(lower, set->p[0]->ineq[j], 2);
753 } else {
754 upper = c->row[1];
755 isl_seq_cpy(upper, set->p[0]->ineq[j], 2);
760 isl_int_init(a);
761 isl_int_init(b);
762 for (i = 0; i < set->n; ++i) {
763 struct isl_basic_set *bset = set->p[i];
764 int has_lower = 0;
765 int has_upper = 0;
767 for (j = 0; j < bset->n_eq; ++j) {
768 has_lower = 1;
769 has_upper = 1;
770 if (lower) {
771 isl_int_mul(a, lower[0], bset->eq[j][1]);
772 isl_int_mul(b, lower[1], bset->eq[j][0]);
773 if (isl_int_lt(a, b) && isl_int_is_pos(bset->eq[j][1]))
774 isl_seq_cpy(lower, bset->eq[j], 2);
775 if (isl_int_gt(a, b) && isl_int_is_neg(bset->eq[j][1]))
776 isl_seq_neg(lower, bset->eq[j], 2);
778 if (upper) {
779 isl_int_mul(a, upper[0], bset->eq[j][1]);
780 isl_int_mul(b, upper[1], bset->eq[j][0]);
781 if (isl_int_lt(a, b) && isl_int_is_pos(bset->eq[j][1]))
782 isl_seq_neg(upper, bset->eq[j], 2);
783 if (isl_int_gt(a, b) && isl_int_is_neg(bset->eq[j][1]))
784 isl_seq_cpy(upper, bset->eq[j], 2);
787 for (j = 0; j < bset->n_ineq; ++j) {
788 if (isl_int_is_pos(bset->ineq[j][1]))
789 has_lower = 1;
790 if (isl_int_is_neg(bset->ineq[j][1]))
791 has_upper = 1;
792 if (lower && isl_int_is_pos(bset->ineq[j][1])) {
793 isl_int_mul(a, lower[0], bset->ineq[j][1]);
794 isl_int_mul(b, lower[1], bset->ineq[j][0]);
795 if (isl_int_lt(a, b))
796 isl_seq_cpy(lower, bset->ineq[j], 2);
798 if (upper && isl_int_is_neg(bset->ineq[j][1])) {
799 isl_int_mul(a, upper[0], bset->ineq[j][1]);
800 isl_int_mul(b, upper[1], bset->ineq[j][0]);
801 if (isl_int_gt(a, b))
802 isl_seq_cpy(upper, bset->ineq[j], 2);
805 if (!has_lower)
806 lower = NULL;
807 if (!has_upper)
808 upper = NULL;
810 isl_int_clear(a);
811 isl_int_clear(b);
813 hull = isl_basic_set_alloc(set->ctx, 0, 1, 0, 0, 2);
814 hull = isl_basic_set_set_rational(hull);
815 if (!hull)
816 goto error;
817 if (lower) {
818 k = isl_basic_set_alloc_inequality(hull);
819 isl_seq_cpy(hull->ineq[k], lower, 2);
821 if (upper) {
822 k = isl_basic_set_alloc_inequality(hull);
823 isl_seq_cpy(hull->ineq[k], upper, 2);
825 hull = isl_basic_set_finalize(hull);
826 isl_set_free(set);
827 isl_mat_free(c);
828 return hull;
829 error:
830 isl_set_free(set);
831 isl_mat_free(c);
832 return NULL;
835 static struct isl_basic_set *convex_hull_0d(struct isl_set *set)
837 struct isl_basic_set *convex_hull;
839 if (!set)
840 return NULL;
842 if (isl_set_is_empty(set))
843 convex_hull = isl_basic_set_empty(isl_space_copy(set->dim));
844 else
845 convex_hull = isl_basic_set_universe(isl_space_copy(set->dim));
846 isl_set_free(set);
847 return convex_hull;
850 /* Compute the convex hull of a pair of basic sets without any parameters or
851 * integer divisions using Fourier-Motzkin elimination.
852 * The convex hull is the set of all points that can be written as
853 * the sum of points from both basic sets (in homogeneous coordinates).
854 * We set up the constraints in a space with dimensions for each of
855 * the three sets and then project out the dimensions corresponding
856 * to the two original basic sets, retaining only those corresponding
857 * to the convex hull.
859 static struct isl_basic_set *convex_hull_pair_elim(struct isl_basic_set *bset1,
860 struct isl_basic_set *bset2)
862 int i, j, k;
863 struct isl_basic_set *bset[2];
864 struct isl_basic_set *hull = NULL;
865 unsigned dim;
867 if (!bset1 || !bset2)
868 goto error;
870 dim = isl_basic_set_n_dim(bset1);
871 hull = isl_basic_set_alloc(bset1->ctx, 0, 2 + 3 * dim, 0,
872 1 + dim + bset1->n_eq + bset2->n_eq,
873 2 + bset1->n_ineq + bset2->n_ineq);
874 bset[0] = bset1;
875 bset[1] = bset2;
876 for (i = 0; i < 2; ++i) {
877 for (j = 0; j < bset[i]->n_eq; ++j) {
878 k = isl_basic_set_alloc_equality(hull);
879 if (k < 0)
880 goto error;
881 isl_seq_clr(hull->eq[k], (i+1) * (1+dim));
882 isl_seq_clr(hull->eq[k]+(i+2)*(1+dim), (1-i)*(1+dim));
883 isl_seq_cpy(hull->eq[k]+(i+1)*(1+dim), bset[i]->eq[j],
884 1+dim);
886 for (j = 0; j < bset[i]->n_ineq; ++j) {
887 k = isl_basic_set_alloc_inequality(hull);
888 if (k < 0)
889 goto error;
890 isl_seq_clr(hull->ineq[k], (i+1) * (1+dim));
891 isl_seq_clr(hull->ineq[k]+(i+2)*(1+dim), (1-i)*(1+dim));
892 isl_seq_cpy(hull->ineq[k]+(i+1)*(1+dim),
893 bset[i]->ineq[j], 1+dim);
895 k = isl_basic_set_alloc_inequality(hull);
896 if (k < 0)
897 goto error;
898 isl_seq_clr(hull->ineq[k], 1+2+3*dim);
899 isl_int_set_si(hull->ineq[k][(i+1)*(1+dim)], 1);
901 for (j = 0; j < 1+dim; ++j) {
902 k = isl_basic_set_alloc_equality(hull);
903 if (k < 0)
904 goto error;
905 isl_seq_clr(hull->eq[k], 1+2+3*dim);
906 isl_int_set_si(hull->eq[k][j], -1);
907 isl_int_set_si(hull->eq[k][1+dim+j], 1);
908 isl_int_set_si(hull->eq[k][2*(1+dim)+j], 1);
910 hull = isl_basic_set_set_rational(hull);
911 hull = isl_basic_set_remove_dims(hull, isl_dim_set, dim, 2*(1+dim));
912 hull = isl_basic_set_remove_redundancies(hull);
913 isl_basic_set_free(bset1);
914 isl_basic_set_free(bset2);
915 return hull;
916 error:
917 isl_basic_set_free(bset1);
918 isl_basic_set_free(bset2);
919 isl_basic_set_free(hull);
920 return NULL;
923 /* Is the set bounded for each value of the parameters?
925 int isl_basic_set_is_bounded(__isl_keep isl_basic_set *bset)
927 struct isl_tab *tab;
928 int bounded;
930 if (!bset)
931 return -1;
932 if (isl_basic_set_plain_is_empty(bset))
933 return 1;
935 tab = isl_tab_from_recession_cone(bset, 1);
936 bounded = isl_tab_cone_is_bounded(tab);
937 isl_tab_free(tab);
938 return bounded;
941 /* Is the image bounded for each value of the parameters and
942 * the domain variables?
944 int isl_basic_map_image_is_bounded(__isl_keep isl_basic_map *bmap)
946 unsigned nparam = isl_basic_map_dim(bmap, isl_dim_param);
947 unsigned n_in = isl_basic_map_dim(bmap, isl_dim_in);
948 int bounded;
950 bmap = isl_basic_map_copy(bmap);
951 bmap = isl_basic_map_cow(bmap);
952 bmap = isl_basic_map_move_dims(bmap, isl_dim_param, nparam,
953 isl_dim_in, 0, n_in);
954 bounded = isl_basic_set_is_bounded(bset_from_bmap(bmap));
955 isl_basic_map_free(bmap);
957 return bounded;
960 /* Is the set bounded for each value of the parameters?
962 int isl_set_is_bounded(__isl_keep isl_set *set)
964 int i;
966 if (!set)
967 return -1;
969 for (i = 0; i < set->n; ++i) {
970 int bounded = isl_basic_set_is_bounded(set->p[i]);
971 if (!bounded || bounded < 0)
972 return bounded;
974 return 1;
977 /* Compute the lineality space of the convex hull of bset1 and bset2.
979 * We first compute the intersection of the recession cone of bset1
980 * with the negative of the recession cone of bset2 and then compute
981 * the linear hull of the resulting cone.
983 static struct isl_basic_set *induced_lineality_space(
984 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
986 int i, k;
987 struct isl_basic_set *lin = NULL;
988 unsigned dim;
990 if (!bset1 || !bset2)
991 goto error;
993 dim = isl_basic_set_total_dim(bset1);
994 lin = isl_basic_set_alloc_space(isl_basic_set_get_space(bset1), 0,
995 bset1->n_eq + bset2->n_eq,
996 bset1->n_ineq + bset2->n_ineq);
997 lin = isl_basic_set_set_rational(lin);
998 if (!lin)
999 goto error;
1000 for (i = 0; i < bset1->n_eq; ++i) {
1001 k = isl_basic_set_alloc_equality(lin);
1002 if (k < 0)
1003 goto error;
1004 isl_int_set_si(lin->eq[k][0], 0);
1005 isl_seq_cpy(lin->eq[k] + 1, bset1->eq[i] + 1, dim);
1007 for (i = 0; i < bset1->n_ineq; ++i) {
1008 k = isl_basic_set_alloc_inequality(lin);
1009 if (k < 0)
1010 goto error;
1011 isl_int_set_si(lin->ineq[k][0], 0);
1012 isl_seq_cpy(lin->ineq[k] + 1, bset1->ineq[i] + 1, dim);
1014 for (i = 0; i < bset2->n_eq; ++i) {
1015 k = isl_basic_set_alloc_equality(lin);
1016 if (k < 0)
1017 goto error;
1018 isl_int_set_si(lin->eq[k][0], 0);
1019 isl_seq_neg(lin->eq[k] + 1, bset2->eq[i] + 1, dim);
1021 for (i = 0; i < bset2->n_ineq; ++i) {
1022 k = isl_basic_set_alloc_inequality(lin);
1023 if (k < 0)
1024 goto error;
1025 isl_int_set_si(lin->ineq[k][0], 0);
1026 isl_seq_neg(lin->ineq[k] + 1, bset2->ineq[i] + 1, dim);
1029 isl_basic_set_free(bset1);
1030 isl_basic_set_free(bset2);
1031 return isl_basic_set_affine_hull(lin);
1032 error:
1033 isl_basic_set_free(lin);
1034 isl_basic_set_free(bset1);
1035 isl_basic_set_free(bset2);
1036 return NULL;
1039 static struct isl_basic_set *uset_convex_hull(struct isl_set *set);
1041 /* Given a set and a linear space "lin" of dimension n > 0,
1042 * project the linear space from the set, compute the convex hull
1043 * and then map the set back to the original space.
1045 * Let
1047 * M x = 0
1049 * describe the linear space. We first compute the Hermite normal
1050 * form H = M U of M = H Q, to obtain
1052 * H Q x = 0
1054 * The last n rows of H will be zero, so the last n variables of x' = Q x
1055 * are the one we want to project out. We do this by transforming each
1056 * basic set A x >= b to A U x' >= b and then removing the last n dimensions.
1057 * After computing the convex hull in x'_1, i.e., A' x'_1 >= b',
1058 * we transform the hull back to the original space as A' Q_1 x >= b',
1059 * with Q_1 all but the last n rows of Q.
1061 static struct isl_basic_set *modulo_lineality(struct isl_set *set,
1062 struct isl_basic_set *lin)
1064 unsigned total = isl_basic_set_total_dim(lin);
1065 unsigned lin_dim;
1066 struct isl_basic_set *hull;
1067 struct isl_mat *M, *U, *Q;
1069 if (!set || !lin)
1070 goto error;
1071 lin_dim = total - lin->n_eq;
1072 M = isl_mat_sub_alloc6(set->ctx, lin->eq, 0, lin->n_eq, 1, total);
1073 M = isl_mat_left_hermite(M, 0, &U, &Q);
1074 if (!M)
1075 goto error;
1076 isl_mat_free(M);
1077 isl_basic_set_free(lin);
1079 Q = isl_mat_drop_rows(Q, Q->n_row - lin_dim, lin_dim);
1081 U = isl_mat_lin_to_aff(U);
1082 Q = isl_mat_lin_to_aff(Q);
1084 set = isl_set_preimage(set, U);
1085 set = isl_set_remove_dims(set, isl_dim_set, total - lin_dim, lin_dim);
1086 hull = uset_convex_hull(set);
1087 hull = isl_basic_set_preimage(hull, Q);
1089 return hull;
1090 error:
1091 isl_basic_set_free(lin);
1092 isl_set_free(set);
1093 return NULL;
1096 /* Given two polyhedra with as constraints h_{ij} x >= 0 in homegeneous space,
1097 * set up an LP for solving
1099 * \sum_j \alpha_{1j} h_{1j} = \sum_j \alpha_{2j} h_{2j}
1101 * \alpha{i0} corresponds to the (implicit) positivity constraint 1 >= 0
1102 * The next \alpha{ij} correspond to the equalities and come in pairs.
1103 * The final \alpha{ij} correspond to the inequalities.
1105 static struct isl_basic_set *valid_direction_lp(
1106 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
1108 isl_space *dim;
1109 struct isl_basic_set *lp;
1110 unsigned d;
1111 int n;
1112 int i, j, k;
1114 if (!bset1 || !bset2)
1115 goto error;
1116 d = 1 + isl_basic_set_total_dim(bset1);
1117 n = 2 +
1118 2 * bset1->n_eq + bset1->n_ineq + 2 * bset2->n_eq + bset2->n_ineq;
1119 dim = isl_space_set_alloc(bset1->ctx, 0, n);
1120 lp = isl_basic_set_alloc_space(dim, 0, d, n);
1121 if (!lp)
1122 goto error;
1123 for (i = 0; i < n; ++i) {
1124 k = isl_basic_set_alloc_inequality(lp);
1125 if (k < 0)
1126 goto error;
1127 isl_seq_clr(lp->ineq[k] + 1, n);
1128 isl_int_set_si(lp->ineq[k][0], -1);
1129 isl_int_set_si(lp->ineq[k][1 + i], 1);
1131 for (i = 0; i < d; ++i) {
1132 k = isl_basic_set_alloc_equality(lp);
1133 if (k < 0)
1134 goto error;
1135 n = 0;
1136 isl_int_set_si(lp->eq[k][n], 0); n++;
1137 /* positivity constraint 1 >= 0 */
1138 isl_int_set_si(lp->eq[k][n], i == 0); n++;
1139 for (j = 0; j < bset1->n_eq; ++j) {
1140 isl_int_set(lp->eq[k][n], bset1->eq[j][i]); n++;
1141 isl_int_neg(lp->eq[k][n], bset1->eq[j][i]); n++;
1143 for (j = 0; j < bset1->n_ineq; ++j) {
1144 isl_int_set(lp->eq[k][n], bset1->ineq[j][i]); n++;
1146 /* positivity constraint 1 >= 0 */
1147 isl_int_set_si(lp->eq[k][n], -(i == 0)); n++;
1148 for (j = 0; j < bset2->n_eq; ++j) {
1149 isl_int_neg(lp->eq[k][n], bset2->eq[j][i]); n++;
1150 isl_int_set(lp->eq[k][n], bset2->eq[j][i]); n++;
1152 for (j = 0; j < bset2->n_ineq; ++j) {
1153 isl_int_neg(lp->eq[k][n], bset2->ineq[j][i]); n++;
1156 lp = isl_basic_set_gauss(lp, NULL);
1157 isl_basic_set_free(bset1);
1158 isl_basic_set_free(bset2);
1159 return lp;
1160 error:
1161 isl_basic_set_free(bset1);
1162 isl_basic_set_free(bset2);
1163 return NULL;
1166 /* Compute a vector s in the homogeneous space such that <s, r> > 0
1167 * for all rays in the homogeneous space of the two cones that correspond
1168 * to the input polyhedra bset1 and bset2.
1170 * We compute s as a vector that satisfies
1172 * s = \sum_j \alpha_{ij} h_{ij} for i = 1,2 (*)
1174 * with h_{ij} the normals of the facets of polyhedron i
1175 * (including the "positivity constraint" 1 >= 0) and \alpha_{ij}
1176 * strictly positive numbers. For simplicity we impose \alpha_{ij} >= 1.
1177 * We first set up an LP with as variables the \alpha{ij}.
1178 * In this formulation, for each polyhedron i,
1179 * the first constraint is the positivity constraint, followed by pairs
1180 * of variables for the equalities, followed by variables for the inequalities.
1181 * We then simply pick a feasible solution and compute s using (*).
1183 * Note that we simply pick any valid direction and make no attempt
1184 * to pick a "good" or even the "best" valid direction.
1186 static struct isl_vec *valid_direction(
1187 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
1189 struct isl_basic_set *lp;
1190 struct isl_tab *tab;
1191 struct isl_vec *sample = NULL;
1192 struct isl_vec *dir;
1193 unsigned d;
1194 int i;
1195 int n;
1197 if (!bset1 || !bset2)
1198 goto error;
1199 lp = valid_direction_lp(isl_basic_set_copy(bset1),
1200 isl_basic_set_copy(bset2));
1201 tab = isl_tab_from_basic_set(lp, 0);
1202 sample = isl_tab_get_sample_value(tab);
1203 isl_tab_free(tab);
1204 isl_basic_set_free(lp);
1205 if (!sample)
1206 goto error;
1207 d = isl_basic_set_total_dim(bset1);
1208 dir = isl_vec_alloc(bset1->ctx, 1 + d);
1209 if (!dir)
1210 goto error;
1211 isl_seq_clr(dir->block.data + 1, dir->size - 1);
1212 n = 1;
1213 /* positivity constraint 1 >= 0 */
1214 isl_int_set(dir->block.data[0], sample->block.data[n]); n++;
1215 for (i = 0; i < bset1->n_eq; ++i) {
1216 isl_int_sub(sample->block.data[n],
1217 sample->block.data[n], sample->block.data[n+1]);
1218 isl_seq_combine(dir->block.data,
1219 bset1->ctx->one, dir->block.data,
1220 sample->block.data[n], bset1->eq[i], 1 + d);
1222 n += 2;
1224 for (i = 0; i < bset1->n_ineq; ++i)
1225 isl_seq_combine(dir->block.data,
1226 bset1->ctx->one, dir->block.data,
1227 sample->block.data[n++], bset1->ineq[i], 1 + d);
1228 isl_vec_free(sample);
1229 isl_seq_normalize(bset1->ctx, dir->el, dir->size);
1230 isl_basic_set_free(bset1);
1231 isl_basic_set_free(bset2);
1232 return dir;
1233 error:
1234 isl_vec_free(sample);
1235 isl_basic_set_free(bset1);
1236 isl_basic_set_free(bset2);
1237 return NULL;
1240 /* Given a polyhedron b_i + A_i x >= 0 and a map T = S^{-1},
1241 * compute b_i' + A_i' x' >= 0, with
1243 * [ b_i A_i ] [ y' ] [ y' ]
1244 * [ 1 0 ] S^{-1} [ x' ] >= 0 or [ b_i' A_i' ] [ x' ] >= 0
1246 * In particular, add the "positivity constraint" and then perform
1247 * the mapping.
1249 static struct isl_basic_set *homogeneous_map(struct isl_basic_set *bset,
1250 struct isl_mat *T)
1252 int k;
1254 if (!bset)
1255 goto error;
1256 bset = isl_basic_set_extend_constraints(bset, 0, 1);
1257 k = isl_basic_set_alloc_inequality(bset);
1258 if (k < 0)
1259 goto error;
1260 isl_seq_clr(bset->ineq[k] + 1, isl_basic_set_total_dim(bset));
1261 isl_int_set_si(bset->ineq[k][0], 1);
1262 bset = isl_basic_set_preimage(bset, T);
1263 return bset;
1264 error:
1265 isl_mat_free(T);
1266 isl_basic_set_free(bset);
1267 return NULL;
1270 /* Compute the convex hull of a pair of basic sets without any parameters or
1271 * integer divisions, where the convex hull is known to be pointed,
1272 * but the basic sets may be unbounded.
1274 * We turn this problem into the computation of a convex hull of a pair
1275 * _bounded_ polyhedra by "changing the direction of the homogeneous
1276 * dimension". This idea is due to Matthias Koeppe.
1278 * Consider the cones in homogeneous space that correspond to the
1279 * input polyhedra. The rays of these cones are also rays of the
1280 * polyhedra if the coordinate that corresponds to the homogeneous
1281 * dimension is zero. That is, if the inner product of the rays
1282 * with the homogeneous direction is zero.
1283 * The cones in the homogeneous space can also be considered to
1284 * correspond to other pairs of polyhedra by chosing a different
1285 * homogeneous direction. To ensure that both of these polyhedra
1286 * are bounded, we need to make sure that all rays of the cones
1287 * correspond to vertices and not to rays.
1288 * Let s be a direction such that <s, r> > 0 for all rays r of both cones.
1289 * Then using s as a homogeneous direction, we obtain a pair of polytopes.
1290 * The vector s is computed in valid_direction.
1292 * Note that we need to consider _all_ rays of the cones and not just
1293 * the rays that correspond to rays in the polyhedra. If we were to
1294 * only consider those rays and turn them into vertices, then we
1295 * may inadvertently turn some vertices into rays.
1297 * The standard homogeneous direction is the unit vector in the 0th coordinate.
1298 * We therefore transform the two polyhedra such that the selected
1299 * direction is mapped onto this standard direction and then proceed
1300 * with the normal computation.
1301 * Let S be a non-singular square matrix with s as its first row,
1302 * then we want to map the polyhedra to the space
1304 * [ y' ] [ y ] [ y ] [ y' ]
1305 * [ x' ] = S [ x ] i.e., [ x ] = S^{-1} [ x' ]
1307 * We take S to be the unimodular completion of s to limit the growth
1308 * of the coefficients in the following computations.
1310 * Let b_i + A_i x >= 0 be the constraints of polyhedron i.
1311 * We first move to the homogeneous dimension
1313 * b_i y + A_i x >= 0 [ b_i A_i ] [ y ] [ 0 ]
1314 * y >= 0 or [ 1 0 ] [ x ] >= [ 0 ]
1316 * Then we change directoin
1318 * [ b_i A_i ] [ y' ] [ y' ]
1319 * [ 1 0 ] S^{-1} [ x' ] >= 0 or [ b_i' A_i' ] [ x' ] >= 0
1321 * Then we compute the convex hull of the polytopes b_i' + A_i' x' >= 0
1322 * resulting in b' + A' x' >= 0, which we then convert back
1324 * [ y ] [ y ]
1325 * [ b' A' ] S [ x ] >= 0 or [ b A ] [ x ] >= 0
1327 * The polyhedron b + A x >= 0 is then the convex hull of the input polyhedra.
1329 static struct isl_basic_set *convex_hull_pair_pointed(
1330 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
1332 struct isl_ctx *ctx = NULL;
1333 struct isl_vec *dir = NULL;
1334 struct isl_mat *T = NULL;
1335 struct isl_mat *T2 = NULL;
1336 struct isl_basic_set *hull;
1337 struct isl_set *set;
1339 if (!bset1 || !bset2)
1340 goto error;
1341 ctx = isl_basic_set_get_ctx(bset1);
1342 dir = valid_direction(isl_basic_set_copy(bset1),
1343 isl_basic_set_copy(bset2));
1344 if (!dir)
1345 goto error;
1346 T = isl_mat_alloc(ctx, dir->size, dir->size);
1347 if (!T)
1348 goto error;
1349 isl_seq_cpy(T->row[0], dir->block.data, dir->size);
1350 T = isl_mat_unimodular_complete(T, 1);
1351 T2 = isl_mat_right_inverse(isl_mat_copy(T));
1353 bset1 = homogeneous_map(bset1, isl_mat_copy(T2));
1354 bset2 = homogeneous_map(bset2, T2);
1355 set = isl_set_alloc_space(isl_basic_set_get_space(bset1), 2, 0);
1356 set = isl_set_add_basic_set(set, bset1);
1357 set = isl_set_add_basic_set(set, bset2);
1358 hull = uset_convex_hull(set);
1359 hull = isl_basic_set_preimage(hull, T);
1361 isl_vec_free(dir);
1363 return hull;
1364 error:
1365 isl_vec_free(dir);
1366 isl_basic_set_free(bset1);
1367 isl_basic_set_free(bset2);
1368 return NULL;
1371 static struct isl_basic_set *uset_convex_hull_wrap(struct isl_set *set);
1372 static struct isl_basic_set *modulo_affine_hull(
1373 struct isl_set *set, struct isl_basic_set *affine_hull);
1375 /* Compute the convex hull of a pair of basic sets without any parameters or
1376 * integer divisions.
1378 * This function is called from uset_convex_hull_unbounded, which
1379 * means that the complete convex hull is unbounded. Some pairs
1380 * of basic sets may still be bounded, though.
1381 * They may even lie inside a lower dimensional space, in which
1382 * case they need to be handled inside their affine hull since
1383 * the main algorithm assumes that the result is full-dimensional.
1385 * If the convex hull of the two basic sets would have a non-trivial
1386 * lineality space, we first project out this lineality space.
1388 static struct isl_basic_set *convex_hull_pair(struct isl_basic_set *bset1,
1389 struct isl_basic_set *bset2)
1391 isl_basic_set *lin, *aff;
1392 int bounded1, bounded2;
1394 if (bset1->ctx->opt->convex == ISL_CONVEX_HULL_FM)
1395 return convex_hull_pair_elim(bset1, bset2);
1397 aff = isl_set_affine_hull(isl_basic_set_union(isl_basic_set_copy(bset1),
1398 isl_basic_set_copy(bset2)));
1399 if (!aff)
1400 goto error;
1401 if (aff->n_eq != 0)
1402 return modulo_affine_hull(isl_basic_set_union(bset1, bset2), aff);
1403 isl_basic_set_free(aff);
1405 bounded1 = isl_basic_set_is_bounded(bset1);
1406 bounded2 = isl_basic_set_is_bounded(bset2);
1408 if (bounded1 < 0 || bounded2 < 0)
1409 goto error;
1411 if (bounded1 && bounded2)
1412 return uset_convex_hull_wrap(isl_basic_set_union(bset1, bset2));
1414 if (bounded1 || bounded2)
1415 return convex_hull_pair_pointed(bset1, bset2);
1417 lin = induced_lineality_space(isl_basic_set_copy(bset1),
1418 isl_basic_set_copy(bset2));
1419 if (!lin)
1420 goto error;
1421 if (isl_basic_set_plain_is_universe(lin)) {
1422 isl_basic_set_free(bset1);
1423 isl_basic_set_free(bset2);
1424 return lin;
1426 if (lin->n_eq < isl_basic_set_total_dim(lin)) {
1427 struct isl_set *set;
1428 set = isl_set_alloc_space(isl_basic_set_get_space(bset1), 2, 0);
1429 set = isl_set_add_basic_set(set, bset1);
1430 set = isl_set_add_basic_set(set, bset2);
1431 return modulo_lineality(set, lin);
1433 isl_basic_set_free(lin);
1435 return convex_hull_pair_pointed(bset1, bset2);
1436 error:
1437 isl_basic_set_free(bset1);
1438 isl_basic_set_free(bset2);
1439 return NULL;
1442 /* Compute the lineality space of a basic set.
1443 * We currently do not allow the basic set to have any divs.
1444 * We basically just drop the constants and turn every inequality
1445 * into an equality.
1447 struct isl_basic_set *isl_basic_set_lineality_space(struct isl_basic_set *bset)
1449 int i, k;
1450 struct isl_basic_set *lin = NULL;
1451 unsigned dim;
1453 if (!bset)
1454 goto error;
1455 isl_assert(bset->ctx, bset->n_div == 0, goto error);
1456 dim = isl_basic_set_total_dim(bset);
1458 lin = isl_basic_set_alloc_space(isl_basic_set_get_space(bset), 0, dim, 0);
1459 if (!lin)
1460 goto error;
1461 for (i = 0; i < bset->n_eq; ++i) {
1462 k = isl_basic_set_alloc_equality(lin);
1463 if (k < 0)
1464 goto error;
1465 isl_int_set_si(lin->eq[k][0], 0);
1466 isl_seq_cpy(lin->eq[k] + 1, bset->eq[i] + 1, dim);
1468 lin = isl_basic_set_gauss(lin, NULL);
1469 if (!lin)
1470 goto error;
1471 for (i = 0; i < bset->n_ineq && lin->n_eq < dim; ++i) {
1472 k = isl_basic_set_alloc_equality(lin);
1473 if (k < 0)
1474 goto error;
1475 isl_int_set_si(lin->eq[k][0], 0);
1476 isl_seq_cpy(lin->eq[k] + 1, bset->ineq[i] + 1, dim);
1477 lin = isl_basic_set_gauss(lin, NULL);
1478 if (!lin)
1479 goto error;
1481 isl_basic_set_free(bset);
1482 return lin;
1483 error:
1484 isl_basic_set_free(lin);
1485 isl_basic_set_free(bset);
1486 return NULL;
1489 /* Compute the (linear) hull of the lineality spaces of the basic sets in the
1490 * "underlying" set "set".
1492 static struct isl_basic_set *uset_combined_lineality_space(struct isl_set *set)
1494 int i;
1495 struct isl_set *lin = NULL;
1497 if (!set)
1498 return NULL;
1499 if (set->n == 0) {
1500 isl_space *dim = isl_set_get_space(set);
1501 isl_set_free(set);
1502 return isl_basic_set_empty(dim);
1505 lin = isl_set_alloc_space(isl_set_get_space(set), set->n, 0);
1506 for (i = 0; i < set->n; ++i)
1507 lin = isl_set_add_basic_set(lin,
1508 isl_basic_set_lineality_space(isl_basic_set_copy(set->p[i])));
1509 isl_set_free(set);
1510 return isl_set_affine_hull(lin);
1513 /* Compute the convex hull of a set without any parameters or
1514 * integer divisions.
1515 * In each step, we combined two basic sets until only one
1516 * basic set is left.
1517 * The input basic sets are assumed not to have a non-trivial
1518 * lineality space. If any of the intermediate results has
1519 * a non-trivial lineality space, it is projected out.
1521 static __isl_give isl_basic_set *uset_convex_hull_unbounded(
1522 __isl_take isl_set *set)
1524 isl_basic_set_list *list;
1526 list = isl_set_get_basic_set_list(set);
1527 isl_set_free(set);
1529 while (list) {
1530 int n;
1531 struct isl_basic_set *t;
1532 isl_basic_set *bset1, *bset2;
1534 n = isl_basic_set_list_n_basic_set(list);
1535 if (n < 2)
1536 isl_die(isl_basic_set_list_get_ctx(list),
1537 isl_error_internal,
1538 "expecting at least two elements", goto error);
1539 bset1 = isl_basic_set_list_get_basic_set(list, n - 1);
1540 bset2 = isl_basic_set_list_get_basic_set(list, n - 2);
1541 bset1 = convex_hull_pair(bset1, bset2);
1542 if (n == 2) {
1543 isl_basic_set_list_free(list);
1544 return bset1;
1546 bset1 = isl_basic_set_underlying_set(bset1);
1547 list = isl_basic_set_list_drop(list, n - 2, 2);
1548 list = isl_basic_set_list_add(list, bset1);
1550 t = isl_basic_set_list_get_basic_set(list, n - 2);
1551 t = isl_basic_set_lineality_space(t);
1552 if (!t)
1553 goto error;
1554 if (isl_basic_set_plain_is_universe(t)) {
1555 isl_basic_set_list_free(list);
1556 return t;
1558 if (t->n_eq < isl_basic_set_total_dim(t)) {
1559 set = isl_basic_set_list_union(list);
1560 return modulo_lineality(set, t);
1562 isl_basic_set_free(t);
1565 return NULL;
1566 error:
1567 isl_basic_set_list_free(list);
1568 return NULL;
1571 /* Compute an initial hull for wrapping containing a single initial
1572 * facet.
1573 * This function assumes that the given set is bounded.
1575 static struct isl_basic_set *initial_hull(struct isl_basic_set *hull,
1576 struct isl_set *set)
1578 struct isl_mat *bounds = NULL;
1579 unsigned dim;
1580 int k;
1582 if (!hull)
1583 goto error;
1584 bounds = initial_facet_constraint(set);
1585 if (!bounds)
1586 goto error;
1587 k = isl_basic_set_alloc_inequality(hull);
1588 if (k < 0)
1589 goto error;
1590 dim = isl_set_n_dim(set);
1591 isl_assert(set->ctx, 1 + dim == bounds->n_col, goto error);
1592 isl_seq_cpy(hull->ineq[k], bounds->row[0], bounds->n_col);
1593 isl_mat_free(bounds);
1595 return hull;
1596 error:
1597 isl_basic_set_free(hull);
1598 isl_mat_free(bounds);
1599 return NULL;
1602 struct max_constraint {
1603 struct isl_mat *c;
1604 int count;
1605 int ineq;
1608 static int max_constraint_equal(const void *entry, const void *val)
1610 struct max_constraint *a = (struct max_constraint *)entry;
1611 isl_int *b = (isl_int *)val;
1613 return isl_seq_eq(a->c->row[0] + 1, b, a->c->n_col - 1);
1616 static void update_constraint(struct isl_ctx *ctx, struct isl_hash_table *table,
1617 isl_int *con, unsigned len, int n, int ineq)
1619 struct isl_hash_table_entry *entry;
1620 struct max_constraint *c;
1621 uint32_t c_hash;
1623 c_hash = isl_seq_get_hash(con + 1, len);
1624 entry = isl_hash_table_find(ctx, table, c_hash, max_constraint_equal,
1625 con + 1, 0);
1626 if (!entry)
1627 return;
1628 c = entry->data;
1629 if (c->count < n) {
1630 isl_hash_table_remove(ctx, table, entry);
1631 return;
1633 c->count++;
1634 if (isl_int_gt(c->c->row[0][0], con[0]))
1635 return;
1636 if (isl_int_eq(c->c->row[0][0], con[0])) {
1637 if (ineq)
1638 c->ineq = ineq;
1639 return;
1641 c->c = isl_mat_cow(c->c);
1642 isl_int_set(c->c->row[0][0], con[0]);
1643 c->ineq = ineq;
1646 /* Check whether the constraint hash table "table" constains the constraint
1647 * "con".
1649 static int has_constraint(struct isl_ctx *ctx, struct isl_hash_table *table,
1650 isl_int *con, unsigned len, int n)
1652 struct isl_hash_table_entry *entry;
1653 struct max_constraint *c;
1654 uint32_t c_hash;
1656 c_hash = isl_seq_get_hash(con + 1, len);
1657 entry = isl_hash_table_find(ctx, table, c_hash, max_constraint_equal,
1658 con + 1, 0);
1659 if (!entry)
1660 return 0;
1661 c = entry->data;
1662 if (c->count < n)
1663 return 0;
1664 return isl_int_eq(c->c->row[0][0], con[0]);
1667 /* Check for inequality constraints of a basic set without equalities
1668 * such that the same or more stringent copies of the constraint appear
1669 * in all of the basic sets. Such constraints are necessarily facet
1670 * constraints of the convex hull.
1672 * If the resulting basic set is by chance identical to one of
1673 * the basic sets in "set", then we know that this basic set contains
1674 * all other basic sets and is therefore the convex hull of set.
1675 * In this case we set *is_hull to 1.
1677 static struct isl_basic_set *common_constraints(struct isl_basic_set *hull,
1678 struct isl_set *set, int *is_hull)
1680 int i, j, s, n;
1681 int min_constraints;
1682 int best;
1683 struct max_constraint *constraints = NULL;
1684 struct isl_hash_table *table = NULL;
1685 unsigned total;
1687 *is_hull = 0;
1689 for (i = 0; i < set->n; ++i)
1690 if (set->p[i]->n_eq == 0)
1691 break;
1692 if (i >= set->n)
1693 return hull;
1694 min_constraints = set->p[i]->n_ineq;
1695 best = i;
1696 for (i = best + 1; i < set->n; ++i) {
1697 if (set->p[i]->n_eq != 0)
1698 continue;
1699 if (set->p[i]->n_ineq >= min_constraints)
1700 continue;
1701 min_constraints = set->p[i]->n_ineq;
1702 best = i;
1704 constraints = isl_calloc_array(hull->ctx, struct max_constraint,
1705 min_constraints);
1706 if (!constraints)
1707 return hull;
1708 table = isl_alloc_type(hull->ctx, struct isl_hash_table);
1709 if (isl_hash_table_init(hull->ctx, table, min_constraints))
1710 goto error;
1712 total = isl_space_dim(set->dim, isl_dim_all);
1713 for (i = 0; i < set->p[best]->n_ineq; ++i) {
1714 constraints[i].c = isl_mat_sub_alloc6(hull->ctx,
1715 set->p[best]->ineq + i, 0, 1, 0, 1 + total);
1716 if (!constraints[i].c)
1717 goto error;
1718 constraints[i].ineq = 1;
1720 for (i = 0; i < min_constraints; ++i) {
1721 struct isl_hash_table_entry *entry;
1722 uint32_t c_hash;
1723 c_hash = isl_seq_get_hash(constraints[i].c->row[0] + 1, total);
1724 entry = isl_hash_table_find(hull->ctx, table, c_hash,
1725 max_constraint_equal, constraints[i].c->row[0] + 1, 1);
1726 if (!entry)
1727 goto error;
1728 isl_assert(hull->ctx, !entry->data, goto error);
1729 entry->data = &constraints[i];
1732 n = 0;
1733 for (s = 0; s < set->n; ++s) {
1734 if (s == best)
1735 continue;
1737 for (i = 0; i < set->p[s]->n_eq; ++i) {
1738 isl_int *eq = set->p[s]->eq[i];
1739 for (j = 0; j < 2; ++j) {
1740 isl_seq_neg(eq, eq, 1 + total);
1741 update_constraint(hull->ctx, table,
1742 eq, total, n, 0);
1745 for (i = 0; i < set->p[s]->n_ineq; ++i) {
1746 isl_int *ineq = set->p[s]->ineq[i];
1747 update_constraint(hull->ctx, table, ineq, total, n,
1748 set->p[s]->n_eq == 0);
1750 ++n;
1753 for (i = 0; i < min_constraints; ++i) {
1754 if (constraints[i].count < n)
1755 continue;
1756 if (!constraints[i].ineq)
1757 continue;
1758 j = isl_basic_set_alloc_inequality(hull);
1759 if (j < 0)
1760 goto error;
1761 isl_seq_cpy(hull->ineq[j], constraints[i].c->row[0], 1 + total);
1764 for (s = 0; s < set->n; ++s) {
1765 if (set->p[s]->n_eq)
1766 continue;
1767 if (set->p[s]->n_ineq != hull->n_ineq)
1768 continue;
1769 for (i = 0; i < set->p[s]->n_ineq; ++i) {
1770 isl_int *ineq = set->p[s]->ineq[i];
1771 if (!has_constraint(hull->ctx, table, ineq, total, n))
1772 break;
1774 if (i == set->p[s]->n_ineq)
1775 *is_hull = 1;
1778 isl_hash_table_clear(table);
1779 for (i = 0; i < min_constraints; ++i)
1780 isl_mat_free(constraints[i].c);
1781 free(constraints);
1782 free(table);
1783 return hull;
1784 error:
1785 isl_hash_table_clear(table);
1786 free(table);
1787 if (constraints)
1788 for (i = 0; i < min_constraints; ++i)
1789 isl_mat_free(constraints[i].c);
1790 free(constraints);
1791 return hull;
1794 /* Create a template for the convex hull of "set" and fill it up
1795 * obvious facet constraints, if any. If the result happens to
1796 * be the convex hull of "set" then *is_hull is set to 1.
1798 static struct isl_basic_set *proto_hull(struct isl_set *set, int *is_hull)
1800 struct isl_basic_set *hull;
1801 unsigned n_ineq;
1802 int i;
1804 n_ineq = 1;
1805 for (i = 0; i < set->n; ++i) {
1806 n_ineq += set->p[i]->n_eq;
1807 n_ineq += set->p[i]->n_ineq;
1809 hull = isl_basic_set_alloc_space(isl_space_copy(set->dim), 0, 0, n_ineq);
1810 hull = isl_basic_set_set_rational(hull);
1811 if (!hull)
1812 return NULL;
1813 return common_constraints(hull, set, is_hull);
1816 static struct isl_basic_set *uset_convex_hull_wrap(struct isl_set *set)
1818 struct isl_basic_set *hull;
1819 int is_hull;
1821 hull = proto_hull(set, &is_hull);
1822 if (hull && !is_hull) {
1823 if (hull->n_ineq == 0)
1824 hull = initial_hull(hull, set);
1825 hull = extend(hull, set);
1827 isl_set_free(set);
1829 return hull;
1832 /* Compute the convex hull of a set without any parameters or
1833 * integer divisions. Depending on whether the set is bounded,
1834 * we pass control to the wrapping based convex hull or
1835 * the Fourier-Motzkin elimination based convex hull.
1836 * We also handle a few special cases before checking the boundedness.
1838 static struct isl_basic_set *uset_convex_hull(struct isl_set *set)
1840 struct isl_basic_set *convex_hull = NULL;
1841 struct isl_basic_set *lin;
1843 if (isl_set_n_dim(set) == 0)
1844 return convex_hull_0d(set);
1846 set = isl_set_coalesce(set);
1847 set = isl_set_set_rational(set);
1849 if (!set)
1850 goto error;
1851 if (!set)
1852 return NULL;
1853 if (set->n == 1) {
1854 convex_hull = isl_basic_set_copy(set->p[0]);
1855 isl_set_free(set);
1856 return convex_hull;
1858 if (isl_set_n_dim(set) == 1)
1859 return convex_hull_1d(set);
1861 if (isl_set_is_bounded(set) &&
1862 set->ctx->opt->convex == ISL_CONVEX_HULL_WRAP)
1863 return uset_convex_hull_wrap(set);
1865 lin = uset_combined_lineality_space(isl_set_copy(set));
1866 if (!lin)
1867 goto error;
1868 if (isl_basic_set_plain_is_universe(lin)) {
1869 isl_set_free(set);
1870 return lin;
1872 if (lin->n_eq < isl_basic_set_total_dim(lin))
1873 return modulo_lineality(set, lin);
1874 isl_basic_set_free(lin);
1876 return uset_convex_hull_unbounded(set);
1877 error:
1878 isl_set_free(set);
1879 isl_basic_set_free(convex_hull);
1880 return NULL;
1883 /* This is the core procedure, where "set" is a "pure" set, i.e.,
1884 * without parameters or divs and where the convex hull of set is
1885 * known to be full-dimensional.
1887 static struct isl_basic_set *uset_convex_hull_wrap_bounded(struct isl_set *set)
1889 struct isl_basic_set *convex_hull = NULL;
1891 if (!set)
1892 goto error;
1894 if (isl_set_n_dim(set) == 0) {
1895 convex_hull = isl_basic_set_universe(isl_space_copy(set->dim));
1896 isl_set_free(set);
1897 convex_hull = isl_basic_set_set_rational(convex_hull);
1898 return convex_hull;
1901 set = isl_set_set_rational(set);
1902 set = isl_set_coalesce(set);
1903 if (!set)
1904 goto error;
1905 if (set->n == 1) {
1906 convex_hull = isl_basic_set_copy(set->p[0]);
1907 isl_set_free(set);
1908 convex_hull = isl_basic_map_remove_redundancies(convex_hull);
1909 return convex_hull;
1911 if (isl_set_n_dim(set) == 1)
1912 return convex_hull_1d(set);
1914 return uset_convex_hull_wrap(set);
1915 error:
1916 isl_set_free(set);
1917 return NULL;
1920 /* Compute the convex hull of set "set" with affine hull "affine_hull",
1921 * We first remove the equalities (transforming the set), compute the
1922 * convex hull of the transformed set and then add the equalities back
1923 * (after performing the inverse transformation.
1925 static struct isl_basic_set *modulo_affine_hull(
1926 struct isl_set *set, struct isl_basic_set *affine_hull)
1928 struct isl_mat *T;
1929 struct isl_mat *T2;
1930 struct isl_basic_set *dummy;
1931 struct isl_basic_set *convex_hull;
1933 dummy = isl_basic_set_remove_equalities(
1934 isl_basic_set_copy(affine_hull), &T, &T2);
1935 if (!dummy)
1936 goto error;
1937 isl_basic_set_free(dummy);
1938 set = isl_set_preimage(set, T);
1939 convex_hull = uset_convex_hull(set);
1940 convex_hull = isl_basic_set_preimage(convex_hull, T2);
1941 convex_hull = isl_basic_set_intersect(convex_hull, affine_hull);
1942 return convex_hull;
1943 error:
1944 isl_basic_set_free(affine_hull);
1945 isl_set_free(set);
1946 return NULL;
1949 /* Return an empty basic map living in the same space as "map".
1951 static __isl_give isl_basic_map *replace_map_by_empty_basic_map(
1952 __isl_take isl_map *map)
1954 isl_space *space;
1956 space = isl_map_get_space(map);
1957 isl_map_free(map);
1958 return isl_basic_map_empty(space);
1961 /* Compute the convex hull of a map.
1963 * The implementation was inspired by "Extended Convex Hull" by Fukuda et al.,
1964 * specifically, the wrapping of facets to obtain new facets.
1966 struct isl_basic_map *isl_map_convex_hull(struct isl_map *map)
1968 struct isl_basic_set *bset;
1969 struct isl_basic_map *model = NULL;
1970 struct isl_basic_set *affine_hull = NULL;
1971 struct isl_basic_map *convex_hull = NULL;
1972 struct isl_set *set = NULL;
1974 map = isl_map_detect_equalities(map);
1975 map = isl_map_align_divs(map);
1976 if (!map)
1977 goto error;
1979 if (map->n == 0)
1980 return replace_map_by_empty_basic_map(map);
1982 model = isl_basic_map_copy(map->p[0]);
1983 set = isl_map_underlying_set(map);
1984 if (!set)
1985 goto error;
1987 affine_hull = isl_set_affine_hull(isl_set_copy(set));
1988 if (!affine_hull)
1989 goto error;
1990 if (affine_hull->n_eq != 0)
1991 bset = modulo_affine_hull(set, affine_hull);
1992 else {
1993 isl_basic_set_free(affine_hull);
1994 bset = uset_convex_hull(set);
1997 convex_hull = isl_basic_map_overlying_set(bset, model);
1998 if (!convex_hull)
1999 return NULL;
2001 ISL_F_SET(convex_hull, ISL_BASIC_MAP_NO_IMPLICIT);
2002 ISL_F_SET(convex_hull, ISL_BASIC_MAP_ALL_EQUALITIES);
2003 ISL_F_CLR(convex_hull, ISL_BASIC_MAP_RATIONAL);
2004 return convex_hull;
2005 error:
2006 isl_set_free(set);
2007 isl_basic_map_free(model);
2008 return NULL;
2011 struct isl_basic_set *isl_set_convex_hull(struct isl_set *set)
2013 return bset_from_bmap(isl_map_convex_hull(set_to_map(set)));
2016 __isl_give isl_basic_map *isl_map_polyhedral_hull(__isl_take isl_map *map)
2018 isl_basic_map *hull;
2020 hull = isl_map_convex_hull(map);
2021 return isl_basic_map_remove_divs(hull);
2024 __isl_give isl_basic_set *isl_set_polyhedral_hull(__isl_take isl_set *set)
2026 return bset_from_bmap(isl_map_polyhedral_hull(set_to_map(set)));
2029 struct sh_data_entry {
2030 struct isl_hash_table *table;
2031 struct isl_tab *tab;
2034 /* Holds the data needed during the simple hull computation.
2035 * In particular,
2036 * n the number of basic sets in the original set
2037 * hull_table a hash table of already computed constraints
2038 * in the simple hull
2039 * p for each basic set,
2040 * table a hash table of the constraints
2041 * tab the tableau corresponding to the basic set
2043 struct sh_data {
2044 struct isl_ctx *ctx;
2045 unsigned n;
2046 struct isl_hash_table *hull_table;
2047 struct sh_data_entry p[1];
2050 static void sh_data_free(struct sh_data *data)
2052 int i;
2054 if (!data)
2055 return;
2056 isl_hash_table_free(data->ctx, data->hull_table);
2057 for (i = 0; i < data->n; ++i) {
2058 isl_hash_table_free(data->ctx, data->p[i].table);
2059 isl_tab_free(data->p[i].tab);
2061 free(data);
2064 struct ineq_cmp_data {
2065 unsigned len;
2066 isl_int *p;
2069 static int has_ineq(const void *entry, const void *val)
2071 isl_int *row = (isl_int *)entry;
2072 struct ineq_cmp_data *v = (struct ineq_cmp_data *)val;
2074 return isl_seq_eq(row + 1, v->p + 1, v->len) ||
2075 isl_seq_is_neg(row + 1, v->p + 1, v->len);
2078 static int hash_ineq(struct isl_ctx *ctx, struct isl_hash_table *table,
2079 isl_int *ineq, unsigned len)
2081 uint32_t c_hash;
2082 struct ineq_cmp_data v;
2083 struct isl_hash_table_entry *entry;
2085 v.len = len;
2086 v.p = ineq;
2087 c_hash = isl_seq_get_hash(ineq + 1, len);
2088 entry = isl_hash_table_find(ctx, table, c_hash, has_ineq, &v, 1);
2089 if (!entry)
2090 return - 1;
2091 entry->data = ineq;
2092 return 0;
2095 /* Fill hash table "table" with the constraints of "bset".
2096 * Equalities are added as two inequalities.
2097 * The value in the hash table is a pointer to the (in)equality of "bset".
2099 static int hash_basic_set(struct isl_hash_table *table,
2100 struct isl_basic_set *bset)
2102 int i, j;
2103 unsigned dim = isl_basic_set_total_dim(bset);
2105 for (i = 0; i < bset->n_eq; ++i) {
2106 for (j = 0; j < 2; ++j) {
2107 isl_seq_neg(bset->eq[i], bset->eq[i], 1 + dim);
2108 if (hash_ineq(bset->ctx, table, bset->eq[i], dim) < 0)
2109 return -1;
2112 for (i = 0; i < bset->n_ineq; ++i) {
2113 if (hash_ineq(bset->ctx, table, bset->ineq[i], dim) < 0)
2114 return -1;
2116 return 0;
2119 static struct sh_data *sh_data_alloc(struct isl_set *set, unsigned n_ineq)
2121 struct sh_data *data;
2122 int i;
2124 data = isl_calloc(set->ctx, struct sh_data,
2125 sizeof(struct sh_data) +
2126 (set->n - 1) * sizeof(struct sh_data_entry));
2127 if (!data)
2128 return NULL;
2129 data->ctx = set->ctx;
2130 data->n = set->n;
2131 data->hull_table = isl_hash_table_alloc(set->ctx, n_ineq);
2132 if (!data->hull_table)
2133 goto error;
2134 for (i = 0; i < set->n; ++i) {
2135 data->p[i].table = isl_hash_table_alloc(set->ctx,
2136 2 * set->p[i]->n_eq + set->p[i]->n_ineq);
2137 if (!data->p[i].table)
2138 goto error;
2139 if (hash_basic_set(data->p[i].table, set->p[i]) < 0)
2140 goto error;
2142 return data;
2143 error:
2144 sh_data_free(data);
2145 return NULL;
2148 /* Check if inequality "ineq" is a bound for basic set "j" or if
2149 * it can be relaxed (by increasing the constant term) to become
2150 * a bound for that basic set. In the latter case, the constant
2151 * term is updated.
2152 * Relaxation of the constant term is only allowed if "shift" is set.
2154 * Return 1 if "ineq" is a bound
2155 * 0 if "ineq" may attain arbitrarily small values on basic set "j"
2156 * -1 if some error occurred
2158 static int is_bound(struct sh_data *data, struct isl_set *set, int j,
2159 isl_int *ineq, int shift)
2161 enum isl_lp_result res;
2162 isl_int opt;
2164 if (!data->p[j].tab) {
2165 data->p[j].tab = isl_tab_from_basic_set(set->p[j], 0);
2166 if (!data->p[j].tab)
2167 return -1;
2170 isl_int_init(opt);
2172 res = isl_tab_min(data->p[j].tab, ineq, data->ctx->one,
2173 &opt, NULL, 0);
2174 if (res == isl_lp_ok && isl_int_is_neg(opt)) {
2175 if (shift)
2176 isl_int_sub(ineq[0], ineq[0], opt);
2177 else
2178 res = isl_lp_unbounded;
2181 isl_int_clear(opt);
2183 return (res == isl_lp_ok || res == isl_lp_empty) ? 1 :
2184 res == isl_lp_unbounded ? 0 : -1;
2187 /* Set the constant term of "ineq" to the maximum of those of the constraints
2188 * in the basic sets of "set" following "i" that are parallel to "ineq".
2189 * That is, if any of the basic sets of "set" following "i" have a more
2190 * relaxed copy of "ineq", then replace "ineq" by the most relaxed copy.
2191 * "c_hash" is the hash value of the linear part of "ineq".
2192 * "v" has been set up for use by has_ineq.
2194 * Note that the two inequality constraints corresponding to an equality are
2195 * represented by the same inequality constraint in data->p[j].table
2196 * (but with different hash values). This means the constraint (or at
2197 * least its constant term) may need to be temporarily negated to get
2198 * the actually hashed constraint.
2200 static void set_max_constant_term(struct sh_data *data, __isl_keep isl_set *set,
2201 int i, isl_int *ineq, uint32_t c_hash, struct ineq_cmp_data *v)
2203 int j;
2204 isl_ctx *ctx;
2205 struct isl_hash_table_entry *entry;
2207 ctx = isl_set_get_ctx(set);
2208 for (j = i + 1; j < set->n; ++j) {
2209 int neg;
2210 isl_int *ineq_j;
2212 entry = isl_hash_table_find(ctx, data->p[j].table,
2213 c_hash, &has_ineq, v, 0);
2214 if (!entry)
2215 continue;
2217 ineq_j = entry->data;
2218 neg = isl_seq_is_neg(ineq_j + 1, ineq + 1, v->len);
2219 if (neg)
2220 isl_int_neg(ineq_j[0], ineq_j[0]);
2221 if (isl_int_gt(ineq_j[0], ineq[0]))
2222 isl_int_set(ineq[0], ineq_j[0]);
2223 if (neg)
2224 isl_int_neg(ineq_j[0], ineq_j[0]);
2228 /* Check if inequality "ineq" from basic set "i" is or can be relaxed to
2229 * become a bound on the whole set. If so, add the (relaxed) inequality
2230 * to "hull". Relaxation is only allowed if "shift" is set.
2232 * We first check if "hull" already contains a translate of the inequality.
2233 * If so, we are done.
2234 * Then, we check if any of the previous basic sets contains a translate
2235 * of the inequality. If so, then we have already considered this
2236 * inequality and we are done.
2237 * Otherwise, for each basic set other than "i", we check if the inequality
2238 * is a bound on the basic set, but first replace the constant term
2239 * by the maximal value of any translate of the inequality in any
2240 * of the following basic sets.
2241 * For previous basic sets, we know that they do not contain a translate
2242 * of the inequality, so we directly call is_bound.
2243 * For following basic sets, we first check if a translate of the
2244 * inequality appears in its description. If so, the constant term
2245 * of the inequality has already been updated with respect to this
2246 * translate and the inequality is therefore known to be a bound
2247 * of this basic set.
2249 static struct isl_basic_set *add_bound(struct isl_basic_set *hull,
2250 struct sh_data *data, struct isl_set *set, int i, isl_int *ineq,
2251 int shift)
2253 uint32_t c_hash;
2254 struct ineq_cmp_data v;
2255 struct isl_hash_table_entry *entry;
2256 int j, k;
2258 if (!hull)
2259 return NULL;
2261 v.len = isl_basic_set_total_dim(hull);
2262 v.p = ineq;
2263 c_hash = isl_seq_get_hash(ineq + 1, v.len);
2265 entry = isl_hash_table_find(hull->ctx, data->hull_table, c_hash,
2266 has_ineq, &v, 0);
2267 if (entry)
2268 return hull;
2270 for (j = 0; j < i; ++j) {
2271 entry = isl_hash_table_find(hull->ctx, data->p[j].table,
2272 c_hash, has_ineq, &v, 0);
2273 if (entry)
2274 break;
2276 if (j < i)
2277 return hull;
2279 k = isl_basic_set_alloc_inequality(hull);
2280 if (k < 0)
2281 goto error;
2282 isl_seq_cpy(hull->ineq[k], ineq, 1 + v.len);
2284 set_max_constant_term(data, set, i, hull->ineq[k], c_hash, &v);
2285 for (j = 0; j < i; ++j) {
2286 int bound;
2287 bound = is_bound(data, set, j, hull->ineq[k], shift);
2288 if (bound < 0)
2289 goto error;
2290 if (!bound)
2291 break;
2293 if (j < i) {
2294 isl_basic_set_free_inequality(hull, 1);
2295 return hull;
2298 for (j = i + 1; j < set->n; ++j) {
2299 int bound;
2300 entry = isl_hash_table_find(hull->ctx, data->p[j].table,
2301 c_hash, has_ineq, &v, 0);
2302 if (entry)
2303 continue;
2304 bound = is_bound(data, set, j, hull->ineq[k], shift);
2305 if (bound < 0)
2306 goto error;
2307 if (!bound)
2308 break;
2310 if (j < set->n) {
2311 isl_basic_set_free_inequality(hull, 1);
2312 return hull;
2315 entry = isl_hash_table_find(hull->ctx, data->hull_table, c_hash,
2316 has_ineq, &v, 1);
2317 if (!entry)
2318 goto error;
2319 entry->data = hull->ineq[k];
2321 return hull;
2322 error:
2323 isl_basic_set_free(hull);
2324 return NULL;
2327 /* Check if any inequality from basic set "i" is or can be relaxed to
2328 * become a bound on the whole set. If so, add the (relaxed) inequality
2329 * to "hull". Relaxation is only allowed if "shift" is set.
2331 static struct isl_basic_set *add_bounds(struct isl_basic_set *bset,
2332 struct sh_data *data, struct isl_set *set, int i, int shift)
2334 int j, k;
2335 unsigned dim = isl_basic_set_total_dim(bset);
2337 for (j = 0; j < set->p[i]->n_eq; ++j) {
2338 for (k = 0; k < 2; ++k) {
2339 isl_seq_neg(set->p[i]->eq[j], set->p[i]->eq[j], 1+dim);
2340 bset = add_bound(bset, data, set, i, set->p[i]->eq[j],
2341 shift);
2344 for (j = 0; j < set->p[i]->n_ineq; ++j)
2345 bset = add_bound(bset, data, set, i, set->p[i]->ineq[j], shift);
2346 return bset;
2349 /* Compute a superset of the convex hull of set that is described
2350 * by only (translates of) the constraints in the constituents of set.
2351 * Translation is only allowed if "shift" is set.
2353 static __isl_give isl_basic_set *uset_simple_hull(__isl_take isl_set *set,
2354 int shift)
2356 struct sh_data *data = NULL;
2357 struct isl_basic_set *hull = NULL;
2358 unsigned n_ineq;
2359 int i;
2361 if (!set)
2362 return NULL;
2364 n_ineq = 0;
2365 for (i = 0; i < set->n; ++i) {
2366 if (!set->p[i])
2367 goto error;
2368 n_ineq += 2 * set->p[i]->n_eq + set->p[i]->n_ineq;
2371 hull = isl_basic_set_alloc_space(isl_space_copy(set->dim), 0, 0, n_ineq);
2372 if (!hull)
2373 goto error;
2375 data = sh_data_alloc(set, n_ineq);
2376 if (!data)
2377 goto error;
2379 for (i = 0; i < set->n; ++i)
2380 hull = add_bounds(hull, data, set, i, shift);
2382 sh_data_free(data);
2383 isl_set_free(set);
2385 return hull;
2386 error:
2387 sh_data_free(data);
2388 isl_basic_set_free(hull);
2389 isl_set_free(set);
2390 return NULL;
2393 /* Compute a superset of the convex hull of map that is described
2394 * by only (translates of) the constraints in the constituents of map.
2395 * Handle trivial cases where map is NULL or contains at most one disjunct.
2397 static __isl_give isl_basic_map *map_simple_hull_trivial(
2398 __isl_take isl_map *map)
2400 isl_basic_map *hull;
2402 if (!map)
2403 return NULL;
2404 if (map->n == 0)
2405 return replace_map_by_empty_basic_map(map);
2407 hull = isl_basic_map_copy(map->p[0]);
2408 isl_map_free(map);
2409 return hull;
2412 /* Return a copy of the simple hull cached inside "map".
2413 * "shift" determines whether to return the cached unshifted or shifted
2414 * simple hull.
2416 static __isl_give isl_basic_map *cached_simple_hull(__isl_take isl_map *map,
2417 int shift)
2419 isl_basic_map *hull;
2421 hull = isl_basic_map_copy(map->cached_simple_hull[shift]);
2422 isl_map_free(map);
2424 return hull;
2427 /* Compute a superset of the convex hull of map that is described
2428 * by only (translates of) the constraints in the constituents of map.
2429 * Translation is only allowed if "shift" is set.
2431 * The constraints are sorted while removing redundant constraints
2432 * in order to indicate a preference of which constraints should
2433 * be preserved. In particular, pairs of constraints that are
2434 * sorted together are preferred to either both be preserved
2435 * or both be removed. The sorting is performed inside
2436 * isl_basic_map_remove_redundancies.
2438 * The result of the computation is stored in map->cached_simple_hull[shift]
2439 * such that it can be reused in subsequent calls. The cache is cleared
2440 * whenever the map is modified (in isl_map_cow).
2441 * Note that the results need to be stored in the input map for there
2442 * to be any chance that they may get reused. In particular, they
2443 * are stored in a copy of the input map that is saved before
2444 * the integer division alignment.
2446 static __isl_give isl_basic_map *map_simple_hull(__isl_take isl_map *map,
2447 int shift)
2449 struct isl_set *set = NULL;
2450 struct isl_basic_map *model = NULL;
2451 struct isl_basic_map *hull;
2452 struct isl_basic_map *affine_hull;
2453 struct isl_basic_set *bset = NULL;
2454 isl_map *input;
2456 if (!map || map->n <= 1)
2457 return map_simple_hull_trivial(map);
2459 if (map->cached_simple_hull[shift])
2460 return cached_simple_hull(map, shift);
2462 map = isl_map_detect_equalities(map);
2463 if (!map || map->n <= 1)
2464 return map_simple_hull_trivial(map);
2465 affine_hull = isl_map_affine_hull(isl_map_copy(map));
2466 input = isl_map_copy(map);
2467 map = isl_map_align_divs(map);
2468 model = map ? isl_basic_map_copy(map->p[0]) : NULL;
2470 set = isl_map_underlying_set(map);
2472 bset = uset_simple_hull(set, shift);
2474 hull = isl_basic_map_overlying_set(bset, model);
2476 hull = isl_basic_map_intersect(hull, affine_hull);
2477 hull = isl_basic_map_remove_redundancies(hull);
2479 if (hull) {
2480 ISL_F_SET(hull, ISL_BASIC_MAP_NO_IMPLICIT);
2481 ISL_F_SET(hull, ISL_BASIC_MAP_ALL_EQUALITIES);
2484 hull = isl_basic_map_finalize(hull);
2485 if (input)
2486 input->cached_simple_hull[shift] = isl_basic_map_copy(hull);
2487 isl_map_free(input);
2489 return hull;
2492 /* Compute a superset of the convex hull of map that is described
2493 * by only translates of the constraints in the constituents of map.
2495 __isl_give isl_basic_map *isl_map_simple_hull(__isl_take isl_map *map)
2497 return map_simple_hull(map, 1);
2500 struct isl_basic_set *isl_set_simple_hull(struct isl_set *set)
2502 return bset_from_bmap(isl_map_simple_hull(set_to_map(set)));
2505 /* Compute a superset of the convex hull of map that is described
2506 * by only the constraints in the constituents of map.
2508 __isl_give isl_basic_map *isl_map_unshifted_simple_hull(
2509 __isl_take isl_map *map)
2511 return map_simple_hull(map, 0);
2514 __isl_give isl_basic_set *isl_set_unshifted_simple_hull(
2515 __isl_take isl_set *set)
2517 return isl_map_unshifted_simple_hull(set);
2520 /* Drop all inequalities from "bmap1" that do not also appear in "bmap2".
2521 * A constraint that appears with different constant terms
2522 * in "bmap1" and "bmap2" is also kept, with the least restrictive
2523 * (i.e., greatest) constant term.
2524 * "bmap1" and "bmap2" are assumed to have the same (known)
2525 * integer divisions.
2526 * The constraints of both "bmap1" and "bmap2" are assumed
2527 * to have been sorted using isl_basic_map_sort_constraints.
2529 * Run through the inequality constraints of "bmap1" and "bmap2"
2530 * in sorted order.
2531 * Each constraint of "bmap1" without a matching constraint in "bmap2"
2532 * is removed.
2533 * If a match is found, the constraint is kept. If needed, the constant
2534 * term of the constraint is adjusted.
2536 static __isl_give isl_basic_map *select_shared_inequalities(
2537 __isl_take isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
2539 int i1, i2;
2541 bmap1 = isl_basic_map_cow(bmap1);
2542 if (!bmap1 || !bmap2)
2543 return isl_basic_map_free(bmap1);
2545 i1 = bmap1->n_ineq - 1;
2546 i2 = bmap2->n_ineq - 1;
2547 while (bmap1 && i1 >= 0 && i2 >= 0) {
2548 int cmp;
2550 cmp = isl_basic_map_constraint_cmp(bmap1, bmap1->ineq[i1],
2551 bmap2->ineq[i2]);
2552 if (cmp < 0) {
2553 --i2;
2554 continue;
2556 if (cmp > 0) {
2557 if (isl_basic_map_drop_inequality(bmap1, i1) < 0)
2558 bmap1 = isl_basic_map_free(bmap1);
2559 --i1;
2560 continue;
2562 if (isl_int_lt(bmap1->ineq[i1][0], bmap2->ineq[i2][0]))
2563 isl_int_set(bmap1->ineq[i1][0], bmap2->ineq[i2][0]);
2564 --i1;
2565 --i2;
2567 for (; i1 >= 0; --i1)
2568 if (isl_basic_map_drop_inequality(bmap1, i1) < 0)
2569 bmap1 = isl_basic_map_free(bmap1);
2571 return bmap1;
2574 /* Drop all equalities from "bmap1" that do not also appear in "bmap2".
2575 * "bmap1" and "bmap2" are assumed to have the same (known)
2576 * integer divisions.
2578 * Run through the equality constraints of "bmap1" and "bmap2".
2579 * Each constraint of "bmap1" without a matching constraint in "bmap2"
2580 * is removed.
2582 static __isl_give isl_basic_map *select_shared_equalities(
2583 __isl_take isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
2585 int i1, i2;
2586 unsigned total;
2588 bmap1 = isl_basic_map_cow(bmap1);
2589 if (!bmap1 || !bmap2)
2590 return isl_basic_map_free(bmap1);
2592 total = isl_basic_map_total_dim(bmap1);
2594 i1 = bmap1->n_eq - 1;
2595 i2 = bmap2->n_eq - 1;
2596 while (bmap1 && i1 >= 0 && i2 >= 0) {
2597 int last1, last2;
2599 last1 = isl_seq_last_non_zero(bmap1->eq[i1] + 1, total);
2600 last2 = isl_seq_last_non_zero(bmap2->eq[i2] + 1, total);
2601 if (last1 > last2) {
2602 --i2;
2603 continue;
2605 if (last1 < last2) {
2606 if (isl_basic_map_drop_equality(bmap1, i1) < 0)
2607 bmap1 = isl_basic_map_free(bmap1);
2608 --i1;
2609 continue;
2611 if (!isl_seq_eq(bmap1->eq[i1], bmap2->eq[i2], 1 + total)) {
2612 if (isl_basic_map_drop_equality(bmap1, i1) < 0)
2613 bmap1 = isl_basic_map_free(bmap1);
2615 --i1;
2616 --i2;
2618 for (; i1 >= 0; --i1)
2619 if (isl_basic_map_drop_equality(bmap1, i1) < 0)
2620 bmap1 = isl_basic_map_free(bmap1);
2622 return bmap1;
2625 /* Compute a superset of "bmap1" and "bmap2" that is described
2626 * by only the constraints that appear in both "bmap1" and "bmap2".
2628 * First drop constraints that involve unknown integer divisions
2629 * since it is not trivial to check whether two such integer divisions
2630 * in different basic maps are the same.
2631 * Then align the remaining (known) divs and sort the constraints.
2632 * Finally drop all inequalities and equalities from "bmap1" that
2633 * do not also appear in "bmap2".
2635 __isl_give isl_basic_map *isl_basic_map_plain_unshifted_simple_hull(
2636 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
2638 bmap1 = isl_basic_map_drop_constraint_involving_unknown_divs(bmap1);
2639 bmap2 = isl_basic_map_drop_constraint_involving_unknown_divs(bmap2);
2640 bmap2 = isl_basic_map_align_divs(bmap2, bmap1);
2641 bmap1 = isl_basic_map_align_divs(bmap1, bmap2);
2642 bmap1 = isl_basic_map_gauss(bmap1, NULL);
2643 bmap2 = isl_basic_map_gauss(bmap2, NULL);
2644 bmap1 = isl_basic_map_sort_constraints(bmap1);
2645 bmap2 = isl_basic_map_sort_constraints(bmap2);
2647 bmap1 = select_shared_inequalities(bmap1, bmap2);
2648 bmap1 = select_shared_equalities(bmap1, bmap2);
2650 isl_basic_map_free(bmap2);
2651 bmap1 = isl_basic_map_finalize(bmap1);
2652 return bmap1;
2655 /* Compute a superset of the convex hull of "map" that is described
2656 * by only the constraints in the constituents of "map".
2657 * In particular, the result is composed of constraints that appear
2658 * in each of the basic maps of "map"
2660 * Constraints that involve unknown integer divisions are dropped
2661 * since it is not trivial to check whether two such integer divisions
2662 * in different basic maps are the same.
2664 * The hull is initialized from the first basic map and then
2665 * updated with respect to the other basic maps in turn.
2667 __isl_give isl_basic_map *isl_map_plain_unshifted_simple_hull(
2668 __isl_take isl_map *map)
2670 int i;
2671 isl_basic_map *hull;
2673 if (!map)
2674 return NULL;
2675 if (map->n <= 1)
2676 return map_simple_hull_trivial(map);
2677 map = isl_map_drop_constraint_involving_unknown_divs(map);
2678 hull = isl_basic_map_copy(map->p[0]);
2679 for (i = 1; i < map->n; ++i) {
2680 isl_basic_map *bmap_i;
2682 bmap_i = isl_basic_map_copy(map->p[i]);
2683 hull = isl_basic_map_plain_unshifted_simple_hull(hull, bmap_i);
2686 isl_map_free(map);
2687 return hull;
2690 /* Compute a superset of the convex hull of "set" that is described
2691 * by only the constraints in the constituents of "set".
2692 * In particular, the result is composed of constraints that appear
2693 * in each of the basic sets of "set"
2695 __isl_give isl_basic_set *isl_set_plain_unshifted_simple_hull(
2696 __isl_take isl_set *set)
2698 return isl_map_plain_unshifted_simple_hull(set);
2701 /* Check if "ineq" is a bound on "set" and, if so, add it to "hull".
2703 * For each basic set in "set", we first check if the basic set
2704 * contains a translate of "ineq". If this translate is more relaxed,
2705 * then we assume that "ineq" is not a bound on this basic set.
2706 * Otherwise, we know that it is a bound.
2707 * If the basic set does not contain a translate of "ineq", then
2708 * we call is_bound to perform the test.
2710 static __isl_give isl_basic_set *add_bound_from_constraint(
2711 __isl_take isl_basic_set *hull, struct sh_data *data,
2712 __isl_keep isl_set *set, isl_int *ineq)
2714 int i, k;
2715 isl_ctx *ctx;
2716 uint32_t c_hash;
2717 struct ineq_cmp_data v;
2719 if (!hull || !set)
2720 return isl_basic_set_free(hull);
2722 v.len = isl_basic_set_total_dim(hull);
2723 v.p = ineq;
2724 c_hash = isl_seq_get_hash(ineq + 1, v.len);
2726 ctx = isl_basic_set_get_ctx(hull);
2727 for (i = 0; i < set->n; ++i) {
2728 int bound;
2729 struct isl_hash_table_entry *entry;
2731 entry = isl_hash_table_find(ctx, data->p[i].table,
2732 c_hash, &has_ineq, &v, 0);
2733 if (entry) {
2734 isl_int *ineq_i = entry->data;
2735 int neg, more_relaxed;
2737 neg = isl_seq_is_neg(ineq_i + 1, ineq + 1, v.len);
2738 if (neg)
2739 isl_int_neg(ineq_i[0], ineq_i[0]);
2740 more_relaxed = isl_int_gt(ineq_i[0], ineq[0]);
2741 if (neg)
2742 isl_int_neg(ineq_i[0], ineq_i[0]);
2743 if (more_relaxed)
2744 break;
2745 else
2746 continue;
2748 bound = is_bound(data, set, i, ineq, 0);
2749 if (bound < 0)
2750 return isl_basic_set_free(hull);
2751 if (!bound)
2752 break;
2754 if (i < set->n)
2755 return hull;
2757 k = isl_basic_set_alloc_inequality(hull);
2758 if (k < 0)
2759 return isl_basic_set_free(hull);
2760 isl_seq_cpy(hull->ineq[k], ineq, 1 + v.len);
2762 return hull;
2765 /* Compute a superset of the convex hull of "set" that is described
2766 * by only some of the "n_ineq" constraints in the list "ineq", where "set"
2767 * has no parameters or integer divisions.
2769 * The inequalities in "ineq" are assumed to have been sorted such
2770 * that constraints with the same linear part appear together and
2771 * that among constraints with the same linear part, those with
2772 * smaller constant term appear first.
2774 * We reuse the same data structure that is used by uset_simple_hull,
2775 * but we do not need the hull table since we will not consider the
2776 * same constraint more than once. We therefore allocate it with zero size.
2778 * We run through the constraints and try to add them one by one,
2779 * skipping identical constraints. If we have added a constraint and
2780 * the next constraint is a more relaxed translate, then we skip this
2781 * next constraint as well.
2783 static __isl_give isl_basic_set *uset_unshifted_simple_hull_from_constraints(
2784 __isl_take isl_set *set, int n_ineq, isl_int **ineq)
2786 int i;
2787 int last_added = 0;
2788 struct sh_data *data = NULL;
2789 isl_basic_set *hull = NULL;
2790 unsigned dim;
2792 hull = isl_basic_set_alloc_space(isl_set_get_space(set), 0, 0, n_ineq);
2793 if (!hull)
2794 goto error;
2796 data = sh_data_alloc(set, 0);
2797 if (!data)
2798 goto error;
2800 dim = isl_set_dim(set, isl_dim_set);
2801 for (i = 0; i < n_ineq; ++i) {
2802 int hull_n_ineq = hull->n_ineq;
2803 int parallel;
2805 parallel = i > 0 && isl_seq_eq(ineq[i - 1] + 1, ineq[i] + 1,
2806 dim);
2807 if (parallel &&
2808 (last_added || isl_int_eq(ineq[i - 1][0], ineq[i][0])))
2809 continue;
2810 hull = add_bound_from_constraint(hull, data, set, ineq[i]);
2811 if (!hull)
2812 goto error;
2813 last_added = hull->n_ineq > hull_n_ineq;
2816 sh_data_free(data);
2817 isl_set_free(set);
2818 return hull;
2819 error:
2820 sh_data_free(data);
2821 isl_set_free(set);
2822 isl_basic_set_free(hull);
2823 return NULL;
2826 /* Collect pointers to all the inequalities in the elements of "list"
2827 * in "ineq". For equalities, store both a pointer to the equality and
2828 * a pointer to its opposite, which is first copied to "mat".
2829 * "ineq" and "mat" are assumed to have been preallocated to the right size
2830 * (the number of inequalities + 2 times the number of equalites and
2831 * the number of equalities, respectively).
2833 static __isl_give isl_mat *collect_inequalities(__isl_take isl_mat *mat,
2834 __isl_keep isl_basic_set_list *list, isl_int **ineq)
2836 int i, j, n, n_eq, n_ineq;
2838 if (!mat)
2839 return NULL;
2841 n_eq = 0;
2842 n_ineq = 0;
2843 n = isl_basic_set_list_n_basic_set(list);
2844 for (i = 0; i < n; ++i) {
2845 isl_basic_set *bset;
2846 bset = isl_basic_set_list_get_basic_set(list, i);
2847 if (!bset)
2848 return isl_mat_free(mat);
2849 for (j = 0; j < bset->n_eq; ++j) {
2850 ineq[n_ineq++] = mat->row[n_eq];
2851 ineq[n_ineq++] = bset->eq[j];
2852 isl_seq_neg(mat->row[n_eq++], bset->eq[j], mat->n_col);
2854 for (j = 0; j < bset->n_ineq; ++j)
2855 ineq[n_ineq++] = bset->ineq[j];
2856 isl_basic_set_free(bset);
2859 return mat;
2862 /* Comparison routine for use as an isl_sort callback.
2864 * Constraints with the same linear part are sorted together and
2865 * among constraints with the same linear part, those with smaller
2866 * constant term are sorted first.
2868 static int cmp_ineq(const void *a, const void *b, void *arg)
2870 unsigned dim = *(unsigned *) arg;
2871 isl_int * const *ineq1 = a;
2872 isl_int * const *ineq2 = b;
2873 int cmp;
2875 cmp = isl_seq_cmp((*ineq1) + 1, (*ineq2) + 1, dim);
2876 if (cmp != 0)
2877 return cmp;
2878 return isl_int_cmp((*ineq1)[0], (*ineq2)[0]);
2881 /* Compute a superset of the convex hull of "set" that is described
2882 * by only constraints in the elements of "list", where "set" has
2883 * no parameters or integer divisions.
2885 * We collect all the constraints in those elements and then
2886 * sort the constraints such that constraints with the same linear part
2887 * are sorted together and that those with smaller constant term are
2888 * sorted first.
2890 static __isl_give isl_basic_set *uset_unshifted_simple_hull_from_basic_set_list(
2891 __isl_take isl_set *set, __isl_take isl_basic_set_list *list)
2893 int i, n, n_eq, n_ineq;
2894 unsigned dim;
2895 isl_ctx *ctx;
2896 isl_mat *mat = NULL;
2897 isl_int **ineq = NULL;
2898 isl_basic_set *hull;
2900 if (!set)
2901 goto error;
2902 ctx = isl_set_get_ctx(set);
2904 n_eq = 0;
2905 n_ineq = 0;
2906 n = isl_basic_set_list_n_basic_set(list);
2907 for (i = 0; i < n; ++i) {
2908 isl_basic_set *bset;
2909 bset = isl_basic_set_list_get_basic_set(list, i);
2910 if (!bset)
2911 goto error;
2912 n_eq += bset->n_eq;
2913 n_ineq += 2 * bset->n_eq + bset->n_ineq;
2914 isl_basic_set_free(bset);
2917 ineq = isl_alloc_array(ctx, isl_int *, n_ineq);
2918 if (n_ineq > 0 && !ineq)
2919 goto error;
2921 dim = isl_set_dim(set, isl_dim_set);
2922 mat = isl_mat_alloc(ctx, n_eq, 1 + dim);
2923 mat = collect_inequalities(mat, list, ineq);
2924 if (!mat)
2925 goto error;
2927 if (isl_sort(ineq, n_ineq, sizeof(ineq[0]), &cmp_ineq, &dim) < 0)
2928 goto error;
2930 hull = uset_unshifted_simple_hull_from_constraints(set, n_ineq, ineq);
2932 isl_mat_free(mat);
2933 free(ineq);
2934 isl_basic_set_list_free(list);
2935 return hull;
2936 error:
2937 isl_mat_free(mat);
2938 free(ineq);
2939 isl_set_free(set);
2940 isl_basic_set_list_free(list);
2941 return NULL;
2944 /* Compute a superset of the convex hull of "map" that is described
2945 * by only constraints in the elements of "list".
2947 * If the list is empty, then we can only describe the universe set.
2948 * If the input map is empty, then all constraints are valid, so
2949 * we return the intersection of the elements in "list".
2951 * Otherwise, we align all divs and temporarily treat them
2952 * as regular variables, computing the unshifted simple hull in
2953 * uset_unshifted_simple_hull_from_basic_set_list.
2955 static __isl_give isl_basic_map *map_unshifted_simple_hull_from_basic_map_list(
2956 __isl_take isl_map *map, __isl_take isl_basic_map_list *list)
2958 isl_basic_map *model;
2959 isl_basic_map *hull;
2960 isl_set *set;
2961 isl_basic_set_list *bset_list;
2963 if (!map || !list)
2964 goto error;
2966 if (isl_basic_map_list_n_basic_map(list) == 0) {
2967 isl_space *space;
2969 space = isl_map_get_space(map);
2970 isl_map_free(map);
2971 isl_basic_map_list_free(list);
2972 return isl_basic_map_universe(space);
2974 if (isl_map_plain_is_empty(map)) {
2975 isl_map_free(map);
2976 return isl_basic_map_list_intersect(list);
2979 map = isl_map_align_divs_to_basic_map_list(map, list);
2980 if (!map)
2981 goto error;
2982 list = isl_basic_map_list_align_divs_to_basic_map(list, map->p[0]);
2984 model = isl_basic_map_list_get_basic_map(list, 0);
2986 set = isl_map_underlying_set(map);
2987 bset_list = isl_basic_map_list_underlying_set(list);
2989 hull = uset_unshifted_simple_hull_from_basic_set_list(set, bset_list);
2990 hull = isl_basic_map_overlying_set(hull, model);
2992 return hull;
2993 error:
2994 isl_map_free(map);
2995 isl_basic_map_list_free(list);
2996 return NULL;
2999 /* Return a sequence of the basic maps that make up the maps in "list".
3001 static __isl_give isl_basic_map_list *collect_basic_maps(
3002 __isl_take isl_map_list *list)
3004 int i, n;
3005 isl_ctx *ctx;
3006 isl_basic_map_list *bmap_list;
3008 if (!list)
3009 return NULL;
3010 n = isl_map_list_n_map(list);
3011 ctx = isl_map_list_get_ctx(list);
3012 bmap_list = isl_basic_map_list_alloc(ctx, 0);
3014 for (i = 0; i < n; ++i) {
3015 isl_map *map;
3016 isl_basic_map_list *list_i;
3018 map = isl_map_list_get_map(list, i);
3019 map = isl_map_compute_divs(map);
3020 list_i = isl_map_get_basic_map_list(map);
3021 isl_map_free(map);
3022 bmap_list = isl_basic_map_list_concat(bmap_list, list_i);
3025 isl_map_list_free(list);
3026 return bmap_list;
3029 /* Compute a superset of the convex hull of "map" that is described
3030 * by only constraints in the elements of "list".
3032 * If "map" is the universe, then the convex hull (and therefore
3033 * any superset of the convexhull) is the universe as well.
3035 * Otherwise, we collect all the basic maps in the map list and
3036 * continue with map_unshifted_simple_hull_from_basic_map_list.
3038 __isl_give isl_basic_map *isl_map_unshifted_simple_hull_from_map_list(
3039 __isl_take isl_map *map, __isl_take isl_map_list *list)
3041 isl_basic_map_list *bmap_list;
3042 int is_universe;
3044 is_universe = isl_map_plain_is_universe(map);
3045 if (is_universe < 0)
3046 map = isl_map_free(map);
3047 if (is_universe < 0 || is_universe) {
3048 isl_map_list_free(list);
3049 return isl_map_unshifted_simple_hull(map);
3052 bmap_list = collect_basic_maps(list);
3053 return map_unshifted_simple_hull_from_basic_map_list(map, bmap_list);
3056 /* Compute a superset of the convex hull of "set" that is described
3057 * by only constraints in the elements of "list".
3059 __isl_give isl_basic_set *isl_set_unshifted_simple_hull_from_set_list(
3060 __isl_take isl_set *set, __isl_take isl_set_list *list)
3062 return isl_map_unshifted_simple_hull_from_map_list(set, list);
3065 /* Given a set "set", return parametric bounds on the dimension "dim".
3067 static struct isl_basic_set *set_bounds(struct isl_set *set, int dim)
3069 unsigned set_dim = isl_set_dim(set, isl_dim_set);
3070 set = isl_set_copy(set);
3071 set = isl_set_eliminate_dims(set, dim + 1, set_dim - (dim + 1));
3072 set = isl_set_eliminate_dims(set, 0, dim);
3073 return isl_set_convex_hull(set);
3076 /* Computes a "simple hull" and then check if each dimension in the
3077 * resulting hull is bounded by a symbolic constant. If not, the
3078 * hull is intersected with the corresponding bounds on the whole set.
3080 struct isl_basic_set *isl_set_bounded_simple_hull(struct isl_set *set)
3082 int i, j;
3083 struct isl_basic_set *hull;
3084 unsigned nparam, left;
3085 int removed_divs = 0;
3087 hull = isl_set_simple_hull(isl_set_copy(set));
3088 if (!hull)
3089 goto error;
3091 nparam = isl_basic_set_dim(hull, isl_dim_param);
3092 for (i = 0; i < isl_basic_set_dim(hull, isl_dim_set); ++i) {
3093 int lower = 0, upper = 0;
3094 struct isl_basic_set *bounds;
3096 left = isl_basic_set_total_dim(hull) - nparam - i - 1;
3097 for (j = 0; j < hull->n_eq; ++j) {
3098 if (isl_int_is_zero(hull->eq[j][1 + nparam + i]))
3099 continue;
3100 if (isl_seq_first_non_zero(hull->eq[j]+1+nparam+i+1,
3101 left) == -1)
3102 break;
3104 if (j < hull->n_eq)
3105 continue;
3107 for (j = 0; j < hull->n_ineq; ++j) {
3108 if (isl_int_is_zero(hull->ineq[j][1 + nparam + i]))
3109 continue;
3110 if (isl_seq_first_non_zero(hull->ineq[j]+1+nparam+i+1,
3111 left) != -1 ||
3112 isl_seq_first_non_zero(hull->ineq[j]+1+nparam,
3113 i) != -1)
3114 continue;
3115 if (isl_int_is_pos(hull->ineq[j][1 + nparam + i]))
3116 lower = 1;
3117 else
3118 upper = 1;
3119 if (lower && upper)
3120 break;
3123 if (lower && upper)
3124 continue;
3126 if (!removed_divs) {
3127 set = isl_set_remove_divs(set);
3128 if (!set)
3129 goto error;
3130 removed_divs = 1;
3132 bounds = set_bounds(set, i);
3133 hull = isl_basic_set_intersect(hull, bounds);
3134 if (!hull)
3135 goto error;
3138 isl_set_free(set);
3139 return hull;
3140 error:
3141 isl_set_free(set);
3142 isl_basic_set_free(hull);
3143 return NULL;