isl_map_simplify.c: ok_to_eliminate_div: add memory management annotation
[isl.git] / isl_convex_hull.c
blob65ed234c1294caa80865470ca9a97f13b529e449
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 __isl_give isl_basic_set *uset_convex_hull_wrap_bounded(
31 __isl_take isl_set *set);
33 /* Remove redundant
34 * constraints. If the minimal value along the normal of a constraint
35 * is the same if the constraint is removed, then the constraint is redundant.
37 * Since some constraints may be mutually redundant, sort the constraints
38 * first such that constraints that involve existentially quantified
39 * variables are considered for removal before those that do not.
40 * The sorting is also needed for the use in map_simple_hull.
42 * Note that isl_tab_detect_implicit_equalities may also end up
43 * marking some constraints as redundant. Make sure the constraints
44 * are preserved and undo those marking such that isl_tab_detect_redundant
45 * can consider the constraints in the sorted order.
47 * Alternatively, we could have intersected the basic map with the
48 * corresponding equality and then checked if the dimension was that
49 * of a facet.
51 __isl_give isl_basic_map *isl_basic_map_remove_redundancies(
52 __isl_take isl_basic_map *bmap)
54 struct isl_tab *tab;
56 if (!bmap)
57 return NULL;
59 bmap = isl_basic_map_gauss(bmap, NULL);
60 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
61 return bmap;
62 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NO_REDUNDANT))
63 return bmap;
64 if (bmap->n_ineq <= 1)
65 return bmap;
67 bmap = isl_basic_map_sort_constraints(bmap);
68 tab = isl_tab_from_basic_map(bmap, 0);
69 if (!tab)
70 goto error;
71 tab->preserve = 1;
72 if (isl_tab_detect_implicit_equalities(tab) < 0)
73 goto error;
74 if (isl_tab_restore_redundant(tab) < 0)
75 goto error;
76 tab->preserve = 0;
77 if (isl_tab_detect_redundant(tab) < 0)
78 goto error;
79 bmap = isl_basic_map_update_from_tab(bmap, tab);
80 isl_tab_free(tab);
81 if (!bmap)
82 return NULL;
83 ISL_F_SET(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
84 ISL_F_SET(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
85 return bmap;
86 error:
87 isl_tab_free(tab);
88 isl_basic_map_free(bmap);
89 return NULL;
92 __isl_give isl_basic_set *isl_basic_set_remove_redundancies(
93 __isl_take isl_basic_set *bset)
95 return bset_from_bmap(
96 isl_basic_map_remove_redundancies(bset_to_bmap(bset)));
99 /* Remove redundant constraints in each of the basic maps.
101 __isl_give isl_map *isl_map_remove_redundancies(__isl_take isl_map *map)
103 return isl_map_inline_foreach_basic_map(map,
104 &isl_basic_map_remove_redundancies);
107 __isl_give isl_set *isl_set_remove_redundancies(__isl_take isl_set *set)
109 return isl_map_remove_redundancies(set);
112 /* Check if the set set is bound in the direction of the affine
113 * constraint c and if so, set the constant term such that the
114 * resulting constraint is a bounding constraint for the set.
116 static int uset_is_bound(__isl_keep isl_set *set, isl_int *c, unsigned len)
118 int first;
119 int j;
120 isl_int opt;
121 isl_int opt_denom;
123 isl_int_init(opt);
124 isl_int_init(opt_denom);
125 first = 1;
126 for (j = 0; j < set->n; ++j) {
127 enum isl_lp_result res;
129 if (ISL_F_ISSET(set->p[j], ISL_BASIC_SET_EMPTY))
130 continue;
132 res = isl_basic_set_solve_lp(set->p[j],
133 0, c, set->ctx->one, &opt, &opt_denom, NULL);
134 if (res == isl_lp_unbounded)
135 break;
136 if (res == isl_lp_error)
137 goto error;
138 if (res == isl_lp_empty) {
139 set->p[j] = isl_basic_set_set_to_empty(set->p[j]);
140 if (!set->p[j])
141 goto error;
142 continue;
144 if (first || isl_int_is_neg(opt)) {
145 if (!isl_int_is_one(opt_denom))
146 isl_seq_scale(c, c, opt_denom, len);
147 isl_int_sub(c[0], c[0], opt);
149 first = 0;
151 isl_int_clear(opt);
152 isl_int_clear(opt_denom);
153 return j >= set->n;
154 error:
155 isl_int_clear(opt);
156 isl_int_clear(opt_denom);
157 return -1;
160 static struct isl_basic_set *isl_basic_set_add_equality(
161 struct isl_basic_set *bset, isl_int *c)
163 int i;
164 unsigned dim;
166 if (!bset)
167 return NULL;
169 if (ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY))
170 return bset;
172 isl_assert(bset->ctx, isl_basic_set_n_param(bset) == 0, goto error);
173 isl_assert(bset->ctx, bset->n_div == 0, goto error);
174 dim = isl_basic_set_n_dim(bset);
175 bset = isl_basic_set_cow(bset);
176 bset = isl_basic_set_extend(bset, 0, dim, 0, 1, 0);
177 i = isl_basic_set_alloc_equality(bset);
178 if (i < 0)
179 goto error;
180 isl_seq_cpy(bset->eq[i], c, 1 + dim);
181 return bset;
182 error:
183 isl_basic_set_free(bset);
184 return NULL;
187 static __isl_give isl_set *isl_set_add_basic_set_equality(
188 __isl_take isl_set *set, isl_int *c)
190 int i;
192 set = isl_set_cow(set);
193 if (!set)
194 return NULL;
195 for (i = 0; i < set->n; ++i) {
196 set->p[i] = isl_basic_set_add_equality(set->p[i], c);
197 if (!set->p[i])
198 goto error;
200 return set;
201 error:
202 isl_set_free(set);
203 return NULL;
206 /* Given a union of basic sets, construct the constraints for wrapping
207 * a facet around one of its ridges.
208 * In particular, if each of n the d-dimensional basic sets i in "set"
209 * contains the origin, satisfies the constraints x_1 >= 0 and x_2 >= 0
210 * and is defined by the constraints
211 * [ 1 ]
212 * A_i [ x ] >= 0
214 * then the resulting set is of dimension n*(1+d) and has as constraints
216 * [ a_i ]
217 * A_i [ x_i ] >= 0
219 * a_i >= 0
221 * \sum_i x_{i,1} = 1
223 static __isl_give isl_basic_set *wrap_constraints(__isl_keep isl_set *set)
225 struct isl_basic_set *lp;
226 unsigned n_eq;
227 unsigned n_ineq;
228 int i, j, k;
229 unsigned dim, lp_dim;
231 if (!set)
232 return NULL;
234 dim = 1 + isl_set_n_dim(set);
235 n_eq = 1;
236 n_ineq = set->n;
237 for (i = 0; i < set->n; ++i) {
238 n_eq += set->p[i]->n_eq;
239 n_ineq += set->p[i]->n_ineq;
241 lp = isl_basic_set_alloc(set->ctx, 0, dim * set->n, 0, n_eq, n_ineq);
242 lp = isl_basic_set_set_rational(lp);
243 if (!lp)
244 return NULL;
245 lp_dim = isl_basic_set_n_dim(lp);
246 k = isl_basic_set_alloc_equality(lp);
247 isl_int_set_si(lp->eq[k][0], -1);
248 for (i = 0; i < set->n; ++i) {
249 isl_int_set_si(lp->eq[k][1+dim*i], 0);
250 isl_int_set_si(lp->eq[k][1+dim*i+1], 1);
251 isl_seq_clr(lp->eq[k]+1+dim*i+2, dim-2);
253 for (i = 0; i < set->n; ++i) {
254 k = isl_basic_set_alloc_inequality(lp);
255 isl_seq_clr(lp->ineq[k], 1+lp_dim);
256 isl_int_set_si(lp->ineq[k][1+dim*i], 1);
258 for (j = 0; j < set->p[i]->n_eq; ++j) {
259 k = isl_basic_set_alloc_equality(lp);
260 isl_seq_clr(lp->eq[k], 1+dim*i);
261 isl_seq_cpy(lp->eq[k]+1+dim*i, set->p[i]->eq[j], dim);
262 isl_seq_clr(lp->eq[k]+1+dim*(i+1), dim*(set->n-i-1));
265 for (j = 0; j < set->p[i]->n_ineq; ++j) {
266 k = isl_basic_set_alloc_inequality(lp);
267 isl_seq_clr(lp->ineq[k], 1+dim*i);
268 isl_seq_cpy(lp->ineq[k]+1+dim*i, set->p[i]->ineq[j], dim);
269 isl_seq_clr(lp->ineq[k]+1+dim*(i+1), dim*(set->n-i-1));
272 return lp;
275 /* Given a facet "facet" of the convex hull of "set" and a facet "ridge"
276 * of that facet, compute the other facet of the convex hull that contains
277 * the ridge.
279 * We first transform the set such that the facet constraint becomes
281 * x_1 >= 0
283 * I.e., the facet lies in
285 * x_1 = 0
287 * and on that facet, the constraint that defines the ridge is
289 * x_2 >= 0
291 * (This transformation is not strictly needed, all that is needed is
292 * that the ridge contains the origin.)
294 * Since the ridge contains the origin, the cone of the convex hull
295 * will be of the form
297 * x_1 >= 0
298 * x_2 >= a x_1
300 * with this second constraint defining the new facet.
301 * The constant a is obtained by settting x_1 in the cone of the
302 * convex hull to 1 and minimizing x_2.
303 * Now, each element in the cone of the convex hull is the sum
304 * of elements in the cones of the basic sets.
305 * If a_i is the dilation factor of basic set i, then the problem
306 * we need to solve is
308 * min \sum_i x_{i,2}
309 * st
310 * \sum_i x_{i,1} = 1
311 * a_i >= 0
312 * [ a_i ]
313 * A [ x_i ] >= 0
315 * with
316 * [ 1 ]
317 * A_i [ x_i ] >= 0
319 * the constraints of each (transformed) basic set.
320 * If a = n/d, then the constraint defining the new facet (in the transformed
321 * space) is
323 * -n x_1 + d x_2 >= 0
325 * In the original space, we need to take the same combination of the
326 * corresponding constraints "facet" and "ridge".
328 * If a = -infty = "-1/0", then we just return the original facet constraint.
329 * This means that the facet is unbounded, but has a bounded intersection
330 * with the union of sets.
332 isl_int *isl_set_wrap_facet(__isl_keep isl_set *set,
333 isl_int *facet, isl_int *ridge)
335 int i;
336 isl_ctx *ctx;
337 struct isl_mat *T = NULL;
338 struct isl_basic_set *lp = NULL;
339 struct isl_vec *obj;
340 enum isl_lp_result res;
341 isl_int num, den;
342 unsigned dim;
344 if (!set)
345 return NULL;
346 ctx = set->ctx;
347 set = isl_set_copy(set);
348 set = isl_set_set_rational(set);
350 dim = 1 + isl_set_n_dim(set);
351 T = isl_mat_alloc(ctx, 3, dim);
352 if (!T)
353 goto error;
354 isl_int_set_si(T->row[0][0], 1);
355 isl_seq_clr(T->row[0]+1, dim - 1);
356 isl_seq_cpy(T->row[1], facet, dim);
357 isl_seq_cpy(T->row[2], ridge, dim);
358 T = isl_mat_right_inverse(T);
359 set = isl_set_preimage(set, T);
360 T = NULL;
361 if (!set)
362 goto error;
363 lp = wrap_constraints(set);
364 obj = isl_vec_alloc(ctx, 1 + dim*set->n);
365 if (!obj)
366 goto error;
367 isl_int_set_si(obj->block.data[0], 0);
368 for (i = 0; i < set->n; ++i) {
369 isl_seq_clr(obj->block.data + 1 + dim*i, 2);
370 isl_int_set_si(obj->block.data[1 + dim*i+2], 1);
371 isl_seq_clr(obj->block.data + 1 + dim*i+3, dim-3);
373 isl_int_init(num);
374 isl_int_init(den);
375 res = isl_basic_set_solve_lp(lp, 0,
376 obj->block.data, ctx->one, &num, &den, NULL);
377 if (res == isl_lp_ok) {
378 isl_int_neg(num, num);
379 isl_seq_combine(facet, num, facet, den, ridge, dim);
380 isl_seq_normalize(ctx, facet, dim);
382 isl_int_clear(num);
383 isl_int_clear(den);
384 isl_vec_free(obj);
385 isl_basic_set_free(lp);
386 isl_set_free(set);
387 if (res == isl_lp_error)
388 return NULL;
389 isl_assert(ctx, res == isl_lp_ok || res == isl_lp_unbounded,
390 return NULL);
391 return facet;
392 error:
393 isl_basic_set_free(lp);
394 isl_mat_free(T);
395 isl_set_free(set);
396 return NULL;
399 /* Compute the constraint of a facet of "set".
401 * We first compute the intersection with a bounding constraint
402 * that is orthogonal to one of the coordinate axes.
403 * If the affine hull of this intersection has only one equality,
404 * we have found a facet.
405 * Otherwise, we wrap the current bounding constraint around
406 * one of the equalities of the face (one that is not equal to
407 * the current bounding constraint).
408 * This process continues until we have found a facet.
409 * The dimension of the intersection increases by at least
410 * one on each iteration, so termination is guaranteed.
412 static __isl_give isl_mat *initial_facet_constraint(__isl_keep isl_set *set)
414 struct isl_set *slice = NULL;
415 struct isl_basic_set *face = NULL;
416 int i;
417 unsigned dim = isl_set_n_dim(set);
418 int is_bound;
419 isl_mat *bounds = NULL;
421 isl_assert(set->ctx, set->n > 0, goto error);
422 bounds = isl_mat_alloc(set->ctx, 1, 1 + dim);
423 if (!bounds)
424 return NULL;
426 isl_seq_clr(bounds->row[0], dim);
427 isl_int_set_si(bounds->row[0][1 + dim - 1], 1);
428 is_bound = uset_is_bound(set, bounds->row[0], 1 + dim);
429 if (is_bound < 0)
430 goto error;
431 isl_assert(set->ctx, is_bound, goto error);
432 isl_seq_normalize(set->ctx, bounds->row[0], 1 + dim);
433 bounds->n_row = 1;
435 for (;;) {
436 slice = isl_set_copy(set);
437 slice = isl_set_add_basic_set_equality(slice, bounds->row[0]);
438 face = isl_set_affine_hull(slice);
439 if (!face)
440 goto error;
441 if (face->n_eq == 1) {
442 isl_basic_set_free(face);
443 break;
445 for (i = 0; i < face->n_eq; ++i)
446 if (!isl_seq_eq(bounds->row[0], face->eq[i], 1 + dim) &&
447 !isl_seq_is_neg(bounds->row[0],
448 face->eq[i], 1 + dim))
449 break;
450 isl_assert(set->ctx, i < face->n_eq, goto error);
451 if (!isl_set_wrap_facet(set, bounds->row[0], face->eq[i]))
452 goto error;
453 isl_seq_normalize(set->ctx, bounds->row[0], bounds->n_col);
454 isl_basic_set_free(face);
457 return bounds;
458 error:
459 isl_basic_set_free(face);
460 isl_mat_free(bounds);
461 return NULL;
464 /* Given the bounding constraint "c" of a facet of the convex hull of "set",
465 * compute a hyperplane description of the facet, i.e., compute the facets
466 * of the facet.
468 * We compute an affine transformation that transforms the constraint
470 * [ 1 ]
471 * c [ x ] = 0
473 * to the constraint
475 * z_1 = 0
477 * by computing the right inverse U of a matrix that starts with the rows
479 * [ 1 0 ]
480 * [ c ]
482 * Then
483 * [ 1 ] [ 1 ]
484 * [ x ] = U [ z ]
485 * and
486 * [ 1 ] [ 1 ]
487 * [ z ] = Q [ x ]
489 * with Q = U^{-1}
490 * Since z_1 is zero, we can drop this variable as well as the corresponding
491 * column of U to obtain
493 * [ 1 ] [ 1 ]
494 * [ x ] = U' [ z' ]
495 * and
496 * [ 1 ] [ 1 ]
497 * [ z' ] = Q' [ x ]
499 * with Q' equal to Q, but without the corresponding row.
500 * After computing the facets of the facet in the z' space,
501 * we convert them back to the x space through Q.
503 static __isl_give isl_basic_set *compute_facet(__isl_keep isl_set *set,
504 isl_int *c)
506 struct isl_mat *m, *U, *Q;
507 struct isl_basic_set *facet = NULL;
508 struct isl_ctx *ctx;
509 unsigned dim;
511 ctx = set->ctx;
512 set = isl_set_copy(set);
513 dim = isl_set_n_dim(set);
514 m = isl_mat_alloc(set->ctx, 2, 1 + dim);
515 if (!m)
516 goto error;
517 isl_int_set_si(m->row[0][0], 1);
518 isl_seq_clr(m->row[0]+1, dim);
519 isl_seq_cpy(m->row[1], c, 1+dim);
520 U = isl_mat_right_inverse(m);
521 Q = isl_mat_right_inverse(isl_mat_copy(U));
522 U = isl_mat_drop_cols(U, 1, 1);
523 Q = isl_mat_drop_rows(Q, 1, 1);
524 set = isl_set_preimage(set, U);
525 facet = uset_convex_hull_wrap_bounded(set);
526 facet = isl_basic_set_preimage(facet, Q);
527 if (facet && facet->n_eq != 0)
528 isl_die(ctx, isl_error_internal, "unexpected equality",
529 return isl_basic_set_free(facet));
530 return facet;
531 error:
532 isl_basic_set_free(facet);
533 isl_set_free(set);
534 return NULL;
537 /* Given an initial facet constraint, compute the remaining facets.
538 * We do this by running through all facets found so far and computing
539 * the adjacent facets through wrapping, adding those facets that we
540 * hadn't already found before.
542 * For each facet we have found so far, we first compute its facets
543 * in the resulting convex hull. That is, we compute the ridges
544 * of the resulting convex hull contained in the facet.
545 * We also compute the corresponding facet in the current approximation
546 * of the convex hull. There is no need to wrap around the ridges
547 * in this facet since that would result in a facet that is already
548 * present in the current approximation.
550 * This function can still be significantly optimized by checking which of
551 * the facets of the basic sets are also facets of the convex hull and
552 * using all the facets so far to help in constructing the facets of the
553 * facets
554 * and/or
555 * using the technique in section "3.1 Ridge Generation" of
556 * "Extended Convex Hull" by Fukuda et al.
558 static __isl_give isl_basic_set *extend(__isl_take isl_basic_set *hull,
559 __isl_keep isl_set *set)
561 int i, j, f;
562 int k;
563 struct isl_basic_set *facet = NULL;
564 struct isl_basic_set *hull_facet = NULL;
565 unsigned dim;
567 if (!hull)
568 return NULL;
570 isl_assert(set->ctx, set->n > 0, goto error);
572 dim = isl_set_n_dim(set);
574 for (i = 0; i < hull->n_ineq; ++i) {
575 facet = compute_facet(set, hull->ineq[i]);
576 facet = isl_basic_set_add_equality(facet, hull->ineq[i]);
577 facet = isl_basic_set_gauss(facet, NULL);
578 facet = isl_basic_set_normalize_constraints(facet);
579 hull_facet = isl_basic_set_copy(hull);
580 hull_facet = isl_basic_set_add_equality(hull_facet, hull->ineq[i]);
581 hull_facet = isl_basic_set_gauss(hull_facet, NULL);
582 hull_facet = isl_basic_set_normalize_constraints(hull_facet);
583 if (!facet || !hull_facet)
584 goto error;
585 hull = isl_basic_set_cow(hull);
586 hull = isl_basic_set_extend_space(hull,
587 isl_space_copy(hull->dim), 0, 0, facet->n_ineq);
588 if (!hull)
589 goto error;
590 for (j = 0; j < facet->n_ineq; ++j) {
591 for (f = 0; f < hull_facet->n_ineq; ++f)
592 if (isl_seq_eq(facet->ineq[j],
593 hull_facet->ineq[f], 1 + dim))
594 break;
595 if (f < hull_facet->n_ineq)
596 continue;
597 k = isl_basic_set_alloc_inequality(hull);
598 if (k < 0)
599 goto error;
600 isl_seq_cpy(hull->ineq[k], hull->ineq[i], 1+dim);
601 if (!isl_set_wrap_facet(set, hull->ineq[k], facet->ineq[j]))
602 goto error;
604 isl_basic_set_free(hull_facet);
605 isl_basic_set_free(facet);
607 hull = isl_basic_set_simplify(hull);
608 hull = isl_basic_set_finalize(hull);
609 return hull;
610 error:
611 isl_basic_set_free(hull_facet);
612 isl_basic_set_free(facet);
613 isl_basic_set_free(hull);
614 return NULL;
617 /* Special case for computing the convex hull of a one dimensional set.
618 * We simply collect the lower and upper bounds of each basic set
619 * and the biggest of those.
621 static __isl_give isl_basic_set *convex_hull_1d(__isl_take isl_set *set)
623 struct isl_mat *c = NULL;
624 isl_int *lower = NULL;
625 isl_int *upper = NULL;
626 int i, j, k;
627 isl_int a, b;
628 struct isl_basic_set *hull;
630 for (i = 0; i < set->n; ++i) {
631 set->p[i] = isl_basic_set_simplify(set->p[i]);
632 if (!set->p[i])
633 goto error;
635 set = isl_set_remove_empty_parts(set);
636 if (!set)
637 goto error;
638 isl_assert(set->ctx, set->n > 0, goto error);
639 c = isl_mat_alloc(set->ctx, 2, 2);
640 if (!c)
641 goto error;
643 if (set->p[0]->n_eq > 0) {
644 isl_assert(set->ctx, set->p[0]->n_eq == 1, goto error);
645 lower = c->row[0];
646 upper = c->row[1];
647 if (isl_int_is_pos(set->p[0]->eq[0][1])) {
648 isl_seq_cpy(lower, set->p[0]->eq[0], 2);
649 isl_seq_neg(upper, set->p[0]->eq[0], 2);
650 } else {
651 isl_seq_neg(lower, set->p[0]->eq[0], 2);
652 isl_seq_cpy(upper, set->p[0]->eq[0], 2);
654 } else {
655 for (j = 0; j < set->p[0]->n_ineq; ++j) {
656 if (isl_int_is_pos(set->p[0]->ineq[j][1])) {
657 lower = c->row[0];
658 isl_seq_cpy(lower, set->p[0]->ineq[j], 2);
659 } else {
660 upper = c->row[1];
661 isl_seq_cpy(upper, set->p[0]->ineq[j], 2);
666 isl_int_init(a);
667 isl_int_init(b);
668 for (i = 0; i < set->n; ++i) {
669 struct isl_basic_set *bset = set->p[i];
670 int has_lower = 0;
671 int has_upper = 0;
673 for (j = 0; j < bset->n_eq; ++j) {
674 has_lower = 1;
675 has_upper = 1;
676 if (lower) {
677 isl_int_mul(a, lower[0], bset->eq[j][1]);
678 isl_int_mul(b, lower[1], bset->eq[j][0]);
679 if (isl_int_lt(a, b) && isl_int_is_pos(bset->eq[j][1]))
680 isl_seq_cpy(lower, bset->eq[j], 2);
681 if (isl_int_gt(a, b) && isl_int_is_neg(bset->eq[j][1]))
682 isl_seq_neg(lower, bset->eq[j], 2);
684 if (upper) {
685 isl_int_mul(a, upper[0], bset->eq[j][1]);
686 isl_int_mul(b, upper[1], bset->eq[j][0]);
687 if (isl_int_lt(a, b) && isl_int_is_pos(bset->eq[j][1]))
688 isl_seq_neg(upper, bset->eq[j], 2);
689 if (isl_int_gt(a, b) && isl_int_is_neg(bset->eq[j][1]))
690 isl_seq_cpy(upper, bset->eq[j], 2);
693 for (j = 0; j < bset->n_ineq; ++j) {
694 if (isl_int_is_pos(bset->ineq[j][1]))
695 has_lower = 1;
696 if (isl_int_is_neg(bset->ineq[j][1]))
697 has_upper = 1;
698 if (lower && isl_int_is_pos(bset->ineq[j][1])) {
699 isl_int_mul(a, lower[0], bset->ineq[j][1]);
700 isl_int_mul(b, lower[1], bset->ineq[j][0]);
701 if (isl_int_lt(a, b))
702 isl_seq_cpy(lower, bset->ineq[j], 2);
704 if (upper && isl_int_is_neg(bset->ineq[j][1])) {
705 isl_int_mul(a, upper[0], bset->ineq[j][1]);
706 isl_int_mul(b, upper[1], bset->ineq[j][0]);
707 if (isl_int_gt(a, b))
708 isl_seq_cpy(upper, bset->ineq[j], 2);
711 if (!has_lower)
712 lower = NULL;
713 if (!has_upper)
714 upper = NULL;
716 isl_int_clear(a);
717 isl_int_clear(b);
719 hull = isl_basic_set_alloc(set->ctx, 0, 1, 0, 0, 2);
720 hull = isl_basic_set_set_rational(hull);
721 if (!hull)
722 goto error;
723 if (lower) {
724 k = isl_basic_set_alloc_inequality(hull);
725 isl_seq_cpy(hull->ineq[k], lower, 2);
727 if (upper) {
728 k = isl_basic_set_alloc_inequality(hull);
729 isl_seq_cpy(hull->ineq[k], upper, 2);
731 hull = isl_basic_set_finalize(hull);
732 isl_set_free(set);
733 isl_mat_free(c);
734 return hull;
735 error:
736 isl_set_free(set);
737 isl_mat_free(c);
738 return NULL;
741 static __isl_give isl_basic_set *convex_hull_0d(__isl_take isl_set *set)
743 struct isl_basic_set *convex_hull;
745 if (!set)
746 return NULL;
748 if (isl_set_is_empty(set))
749 convex_hull = isl_basic_set_empty(isl_space_copy(set->dim));
750 else
751 convex_hull = isl_basic_set_universe(isl_space_copy(set->dim));
752 isl_set_free(set);
753 return convex_hull;
756 /* Compute the convex hull of a pair of basic sets without any parameters or
757 * integer divisions using Fourier-Motzkin elimination.
758 * The convex hull is the set of all points that can be written as
759 * the sum of points from both basic sets (in homogeneous coordinates).
760 * We set up the constraints in a space with dimensions for each of
761 * the three sets and then project out the dimensions corresponding
762 * to the two original basic sets, retaining only those corresponding
763 * to the convex hull.
765 static __isl_give isl_basic_set *convex_hull_pair_elim(
766 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
768 int i, j, k;
769 struct isl_basic_set *bset[2];
770 struct isl_basic_set *hull = NULL;
771 unsigned dim;
773 if (!bset1 || !bset2)
774 goto error;
776 dim = isl_basic_set_n_dim(bset1);
777 hull = isl_basic_set_alloc(bset1->ctx, 0, 2 + 3 * dim, 0,
778 1 + dim + bset1->n_eq + bset2->n_eq,
779 2 + bset1->n_ineq + bset2->n_ineq);
780 bset[0] = bset1;
781 bset[1] = bset2;
782 for (i = 0; i < 2; ++i) {
783 for (j = 0; j < bset[i]->n_eq; ++j) {
784 k = isl_basic_set_alloc_equality(hull);
785 if (k < 0)
786 goto error;
787 isl_seq_clr(hull->eq[k], (i+1) * (1+dim));
788 isl_seq_clr(hull->eq[k]+(i+2)*(1+dim), (1-i)*(1+dim));
789 isl_seq_cpy(hull->eq[k]+(i+1)*(1+dim), bset[i]->eq[j],
790 1+dim);
792 for (j = 0; j < bset[i]->n_ineq; ++j) {
793 k = isl_basic_set_alloc_inequality(hull);
794 if (k < 0)
795 goto error;
796 isl_seq_clr(hull->ineq[k], (i+1) * (1+dim));
797 isl_seq_clr(hull->ineq[k]+(i+2)*(1+dim), (1-i)*(1+dim));
798 isl_seq_cpy(hull->ineq[k]+(i+1)*(1+dim),
799 bset[i]->ineq[j], 1+dim);
801 k = isl_basic_set_alloc_inequality(hull);
802 if (k < 0)
803 goto error;
804 isl_seq_clr(hull->ineq[k], 1+2+3*dim);
805 isl_int_set_si(hull->ineq[k][(i+1)*(1+dim)], 1);
807 for (j = 0; j < 1+dim; ++j) {
808 k = isl_basic_set_alloc_equality(hull);
809 if (k < 0)
810 goto error;
811 isl_seq_clr(hull->eq[k], 1+2+3*dim);
812 isl_int_set_si(hull->eq[k][j], -1);
813 isl_int_set_si(hull->eq[k][1+dim+j], 1);
814 isl_int_set_si(hull->eq[k][2*(1+dim)+j], 1);
816 hull = isl_basic_set_set_rational(hull);
817 hull = isl_basic_set_remove_dims(hull, isl_dim_set, dim, 2*(1+dim));
818 hull = isl_basic_set_remove_redundancies(hull);
819 isl_basic_set_free(bset1);
820 isl_basic_set_free(bset2);
821 return hull;
822 error:
823 isl_basic_set_free(bset1);
824 isl_basic_set_free(bset2);
825 isl_basic_set_free(hull);
826 return NULL;
829 /* Is the set bounded for each value of the parameters?
831 isl_bool isl_basic_set_is_bounded(__isl_keep isl_basic_set *bset)
833 struct isl_tab *tab;
834 isl_bool bounded;
836 if (!bset)
837 return isl_bool_error;
838 if (isl_basic_set_plain_is_empty(bset))
839 return isl_bool_true;
841 tab = isl_tab_from_recession_cone(bset, 1);
842 bounded = isl_tab_cone_is_bounded(tab);
843 isl_tab_free(tab);
844 return bounded;
847 /* Is the image bounded for each value of the parameters and
848 * the domain variables?
850 isl_bool isl_basic_map_image_is_bounded(__isl_keep isl_basic_map *bmap)
852 unsigned nparam = isl_basic_map_dim(bmap, isl_dim_param);
853 unsigned n_in = isl_basic_map_dim(bmap, isl_dim_in);
854 isl_bool bounded;
856 bmap = isl_basic_map_copy(bmap);
857 bmap = isl_basic_map_cow(bmap);
858 bmap = isl_basic_map_move_dims(bmap, isl_dim_param, nparam,
859 isl_dim_in, 0, n_in);
860 bounded = isl_basic_set_is_bounded(bset_from_bmap(bmap));
861 isl_basic_map_free(bmap);
863 return bounded;
866 /* Is the set bounded for each value of the parameters?
868 isl_bool isl_set_is_bounded(__isl_keep isl_set *set)
870 int i;
872 if (!set)
873 return isl_bool_error;
875 for (i = 0; i < set->n; ++i) {
876 isl_bool bounded = isl_basic_set_is_bounded(set->p[i]);
877 if (!bounded || bounded < 0)
878 return bounded;
880 return isl_bool_true;
883 /* Compute the lineality space of the convex hull of bset1 and bset2.
885 * We first compute the intersection of the recession cone of bset1
886 * with the negative of the recession cone of bset2 and then compute
887 * the linear hull of the resulting cone.
889 static __isl_give isl_basic_set *induced_lineality_space(
890 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
892 int i, k;
893 struct isl_basic_set *lin = NULL;
894 unsigned dim;
896 if (!bset1 || !bset2)
897 goto error;
899 dim = isl_basic_set_total_dim(bset1);
900 lin = isl_basic_set_alloc_space(isl_basic_set_get_space(bset1), 0,
901 bset1->n_eq + bset2->n_eq,
902 bset1->n_ineq + bset2->n_ineq);
903 lin = isl_basic_set_set_rational(lin);
904 if (!lin)
905 goto error;
906 for (i = 0; i < bset1->n_eq; ++i) {
907 k = isl_basic_set_alloc_equality(lin);
908 if (k < 0)
909 goto error;
910 isl_int_set_si(lin->eq[k][0], 0);
911 isl_seq_cpy(lin->eq[k] + 1, bset1->eq[i] + 1, dim);
913 for (i = 0; i < bset1->n_ineq; ++i) {
914 k = isl_basic_set_alloc_inequality(lin);
915 if (k < 0)
916 goto error;
917 isl_int_set_si(lin->ineq[k][0], 0);
918 isl_seq_cpy(lin->ineq[k] + 1, bset1->ineq[i] + 1, dim);
920 for (i = 0; i < bset2->n_eq; ++i) {
921 k = isl_basic_set_alloc_equality(lin);
922 if (k < 0)
923 goto error;
924 isl_int_set_si(lin->eq[k][0], 0);
925 isl_seq_neg(lin->eq[k] + 1, bset2->eq[i] + 1, dim);
927 for (i = 0; i < bset2->n_ineq; ++i) {
928 k = isl_basic_set_alloc_inequality(lin);
929 if (k < 0)
930 goto error;
931 isl_int_set_si(lin->ineq[k][0], 0);
932 isl_seq_neg(lin->ineq[k] + 1, bset2->ineq[i] + 1, dim);
935 isl_basic_set_free(bset1);
936 isl_basic_set_free(bset2);
937 return isl_basic_set_affine_hull(lin);
938 error:
939 isl_basic_set_free(lin);
940 isl_basic_set_free(bset1);
941 isl_basic_set_free(bset2);
942 return NULL;
945 static __isl_give isl_basic_set *uset_convex_hull(__isl_take isl_set *set);
947 /* Given a set and a linear space "lin" of dimension n > 0,
948 * project the linear space from the set, compute the convex hull
949 * and then map the set back to the original space.
951 * Let
953 * M x = 0
955 * describe the linear space. We first compute the Hermite normal
956 * form H = M U of M = H Q, to obtain
958 * H Q x = 0
960 * The last n rows of H will be zero, so the last n variables of x' = Q x
961 * are the one we want to project out. We do this by transforming each
962 * basic set A x >= b to A U x' >= b and then removing the last n dimensions.
963 * After computing the convex hull in x'_1, i.e., A' x'_1 >= b',
964 * we transform the hull back to the original space as A' Q_1 x >= b',
965 * with Q_1 all but the last n rows of Q.
967 static __isl_give isl_basic_set *modulo_lineality(__isl_take isl_set *set,
968 __isl_take isl_basic_set *lin)
970 unsigned total = isl_basic_set_total_dim(lin);
971 unsigned lin_dim;
972 struct isl_basic_set *hull;
973 struct isl_mat *M, *U, *Q;
975 if (!set || !lin)
976 goto error;
977 lin_dim = total - lin->n_eq;
978 M = isl_mat_sub_alloc6(set->ctx, lin->eq, 0, lin->n_eq, 1, total);
979 M = isl_mat_left_hermite(M, 0, &U, &Q);
980 if (!M)
981 goto error;
982 isl_mat_free(M);
983 isl_basic_set_free(lin);
985 Q = isl_mat_drop_rows(Q, Q->n_row - lin_dim, lin_dim);
987 U = isl_mat_lin_to_aff(U);
988 Q = isl_mat_lin_to_aff(Q);
990 set = isl_set_preimage(set, U);
991 set = isl_set_remove_dims(set, isl_dim_set, total - lin_dim, lin_dim);
992 hull = uset_convex_hull(set);
993 hull = isl_basic_set_preimage(hull, Q);
995 return hull;
996 error:
997 isl_basic_set_free(lin);
998 isl_set_free(set);
999 return NULL;
1002 /* Given two polyhedra with as constraints h_{ij} x >= 0 in homegeneous space,
1003 * set up an LP for solving
1005 * \sum_j \alpha_{1j} h_{1j} = \sum_j \alpha_{2j} h_{2j}
1007 * \alpha{i0} corresponds to the (implicit) positivity constraint 1 >= 0
1008 * The next \alpha{ij} correspond to the equalities and come in pairs.
1009 * The final \alpha{ij} correspond to the inequalities.
1011 static __isl_give isl_basic_set *valid_direction_lp(
1012 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
1014 isl_space *dim;
1015 struct isl_basic_set *lp;
1016 unsigned d;
1017 int n;
1018 int i, j, k;
1020 if (!bset1 || !bset2)
1021 goto error;
1022 d = 1 + isl_basic_set_total_dim(bset1);
1023 n = 2 +
1024 2 * bset1->n_eq + bset1->n_ineq + 2 * bset2->n_eq + bset2->n_ineq;
1025 dim = isl_space_set_alloc(bset1->ctx, 0, n);
1026 lp = isl_basic_set_alloc_space(dim, 0, d, n);
1027 if (!lp)
1028 goto error;
1029 for (i = 0; i < n; ++i) {
1030 k = isl_basic_set_alloc_inequality(lp);
1031 if (k < 0)
1032 goto error;
1033 isl_seq_clr(lp->ineq[k] + 1, n);
1034 isl_int_set_si(lp->ineq[k][0], -1);
1035 isl_int_set_si(lp->ineq[k][1 + i], 1);
1037 for (i = 0; i < d; ++i) {
1038 k = isl_basic_set_alloc_equality(lp);
1039 if (k < 0)
1040 goto error;
1041 n = 0;
1042 isl_int_set_si(lp->eq[k][n], 0); n++;
1043 /* positivity constraint 1 >= 0 */
1044 isl_int_set_si(lp->eq[k][n], i == 0); n++;
1045 for (j = 0; j < bset1->n_eq; ++j) {
1046 isl_int_set(lp->eq[k][n], bset1->eq[j][i]); n++;
1047 isl_int_neg(lp->eq[k][n], bset1->eq[j][i]); n++;
1049 for (j = 0; j < bset1->n_ineq; ++j) {
1050 isl_int_set(lp->eq[k][n], bset1->ineq[j][i]); n++;
1052 /* positivity constraint 1 >= 0 */
1053 isl_int_set_si(lp->eq[k][n], -(i == 0)); n++;
1054 for (j = 0; j < bset2->n_eq; ++j) {
1055 isl_int_neg(lp->eq[k][n], bset2->eq[j][i]); n++;
1056 isl_int_set(lp->eq[k][n], bset2->eq[j][i]); n++;
1058 for (j = 0; j < bset2->n_ineq; ++j) {
1059 isl_int_neg(lp->eq[k][n], bset2->ineq[j][i]); n++;
1062 lp = isl_basic_set_gauss(lp, NULL);
1063 isl_basic_set_free(bset1);
1064 isl_basic_set_free(bset2);
1065 return lp;
1066 error:
1067 isl_basic_set_free(bset1);
1068 isl_basic_set_free(bset2);
1069 return NULL;
1072 /* Compute a vector s in the homogeneous space such that <s, r> > 0
1073 * for all rays in the homogeneous space of the two cones that correspond
1074 * to the input polyhedra bset1 and bset2.
1076 * We compute s as a vector that satisfies
1078 * s = \sum_j \alpha_{ij} h_{ij} for i = 1,2 (*)
1080 * with h_{ij} the normals of the facets of polyhedron i
1081 * (including the "positivity constraint" 1 >= 0) and \alpha_{ij}
1082 * strictly positive numbers. For simplicity we impose \alpha_{ij} >= 1.
1083 * We first set up an LP with as variables the \alpha{ij}.
1084 * In this formulation, for each polyhedron i,
1085 * the first constraint is the positivity constraint, followed by pairs
1086 * of variables for the equalities, followed by variables for the inequalities.
1087 * We then simply pick a feasible solution and compute s using (*).
1089 * Note that we simply pick any valid direction and make no attempt
1090 * to pick a "good" or even the "best" valid direction.
1092 static __isl_give isl_vec *valid_direction(
1093 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
1095 struct isl_basic_set *lp;
1096 struct isl_tab *tab;
1097 struct isl_vec *sample = NULL;
1098 struct isl_vec *dir;
1099 unsigned d;
1100 int i;
1101 int n;
1103 if (!bset1 || !bset2)
1104 goto error;
1105 lp = valid_direction_lp(isl_basic_set_copy(bset1),
1106 isl_basic_set_copy(bset2));
1107 tab = isl_tab_from_basic_set(lp, 0);
1108 sample = isl_tab_get_sample_value(tab);
1109 isl_tab_free(tab);
1110 isl_basic_set_free(lp);
1111 if (!sample)
1112 goto error;
1113 d = isl_basic_set_total_dim(bset1);
1114 dir = isl_vec_alloc(bset1->ctx, 1 + d);
1115 if (!dir)
1116 goto error;
1117 isl_seq_clr(dir->block.data + 1, dir->size - 1);
1118 n = 1;
1119 /* positivity constraint 1 >= 0 */
1120 isl_int_set(dir->block.data[0], sample->block.data[n]); n++;
1121 for (i = 0; i < bset1->n_eq; ++i) {
1122 isl_int_sub(sample->block.data[n],
1123 sample->block.data[n], sample->block.data[n+1]);
1124 isl_seq_combine(dir->block.data,
1125 bset1->ctx->one, dir->block.data,
1126 sample->block.data[n], bset1->eq[i], 1 + d);
1128 n += 2;
1130 for (i = 0; i < bset1->n_ineq; ++i)
1131 isl_seq_combine(dir->block.data,
1132 bset1->ctx->one, dir->block.data,
1133 sample->block.data[n++], bset1->ineq[i], 1 + d);
1134 isl_vec_free(sample);
1135 isl_seq_normalize(bset1->ctx, dir->el, dir->size);
1136 isl_basic_set_free(bset1);
1137 isl_basic_set_free(bset2);
1138 return dir;
1139 error:
1140 isl_vec_free(sample);
1141 isl_basic_set_free(bset1);
1142 isl_basic_set_free(bset2);
1143 return NULL;
1146 /* Given a polyhedron b_i + A_i x >= 0 and a map T = S^{-1},
1147 * compute b_i' + A_i' x' >= 0, with
1149 * [ b_i A_i ] [ y' ] [ y' ]
1150 * [ 1 0 ] S^{-1} [ x' ] >= 0 or [ b_i' A_i' ] [ x' ] >= 0
1152 * In particular, add the "positivity constraint" and then perform
1153 * the mapping.
1155 static __isl_give isl_basic_set *homogeneous_map(__isl_take isl_basic_set *bset,
1156 __isl_take isl_mat *T)
1158 int k;
1160 if (!bset)
1161 goto error;
1162 bset = isl_basic_set_extend_constraints(bset, 0, 1);
1163 k = isl_basic_set_alloc_inequality(bset);
1164 if (k < 0)
1165 goto error;
1166 isl_seq_clr(bset->ineq[k] + 1, isl_basic_set_total_dim(bset));
1167 isl_int_set_si(bset->ineq[k][0], 1);
1168 bset = isl_basic_set_preimage(bset, T);
1169 return bset;
1170 error:
1171 isl_mat_free(T);
1172 isl_basic_set_free(bset);
1173 return NULL;
1176 /* Compute the convex hull of a pair of basic sets without any parameters or
1177 * integer divisions, where the convex hull is known to be pointed,
1178 * but the basic sets may be unbounded.
1180 * We turn this problem into the computation of a convex hull of a pair
1181 * _bounded_ polyhedra by "changing the direction of the homogeneous
1182 * dimension". This idea is due to Matthias Koeppe.
1184 * Consider the cones in homogeneous space that correspond to the
1185 * input polyhedra. The rays of these cones are also rays of the
1186 * polyhedra if the coordinate that corresponds to the homogeneous
1187 * dimension is zero. That is, if the inner product of the rays
1188 * with the homogeneous direction is zero.
1189 * The cones in the homogeneous space can also be considered to
1190 * correspond to other pairs of polyhedra by chosing a different
1191 * homogeneous direction. To ensure that both of these polyhedra
1192 * are bounded, we need to make sure that all rays of the cones
1193 * correspond to vertices and not to rays.
1194 * Let s be a direction such that <s, r> > 0 for all rays r of both cones.
1195 * Then using s as a homogeneous direction, we obtain a pair of polytopes.
1196 * The vector s is computed in valid_direction.
1198 * Note that we need to consider _all_ rays of the cones and not just
1199 * the rays that correspond to rays in the polyhedra. If we were to
1200 * only consider those rays and turn them into vertices, then we
1201 * may inadvertently turn some vertices into rays.
1203 * The standard homogeneous direction is the unit vector in the 0th coordinate.
1204 * We therefore transform the two polyhedra such that the selected
1205 * direction is mapped onto this standard direction and then proceed
1206 * with the normal computation.
1207 * Let S be a non-singular square matrix with s as its first row,
1208 * then we want to map the polyhedra to the space
1210 * [ y' ] [ y ] [ y ] [ y' ]
1211 * [ x' ] = S [ x ] i.e., [ x ] = S^{-1} [ x' ]
1213 * We take S to be the unimodular completion of s to limit the growth
1214 * of the coefficients in the following computations.
1216 * Let b_i + A_i x >= 0 be the constraints of polyhedron i.
1217 * We first move to the homogeneous dimension
1219 * b_i y + A_i x >= 0 [ b_i A_i ] [ y ] [ 0 ]
1220 * y >= 0 or [ 1 0 ] [ x ] >= [ 0 ]
1222 * Then we change directoin
1224 * [ b_i A_i ] [ y' ] [ y' ]
1225 * [ 1 0 ] S^{-1} [ x' ] >= 0 or [ b_i' A_i' ] [ x' ] >= 0
1227 * Then we compute the convex hull of the polytopes b_i' + A_i' x' >= 0
1228 * resulting in b' + A' x' >= 0, which we then convert back
1230 * [ y ] [ y ]
1231 * [ b' A' ] S [ x ] >= 0 or [ b A ] [ x ] >= 0
1233 * The polyhedron b + A x >= 0 is then the convex hull of the input polyhedra.
1235 static __isl_give isl_basic_set *convex_hull_pair_pointed(
1236 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
1238 struct isl_ctx *ctx = NULL;
1239 struct isl_vec *dir = NULL;
1240 struct isl_mat *T = NULL;
1241 struct isl_mat *T2 = NULL;
1242 struct isl_basic_set *hull;
1243 struct isl_set *set;
1245 if (!bset1 || !bset2)
1246 goto error;
1247 ctx = isl_basic_set_get_ctx(bset1);
1248 dir = valid_direction(isl_basic_set_copy(bset1),
1249 isl_basic_set_copy(bset2));
1250 if (!dir)
1251 goto error;
1252 T = isl_mat_alloc(ctx, dir->size, dir->size);
1253 if (!T)
1254 goto error;
1255 isl_seq_cpy(T->row[0], dir->block.data, dir->size);
1256 T = isl_mat_unimodular_complete(T, 1);
1257 T2 = isl_mat_right_inverse(isl_mat_copy(T));
1259 bset1 = homogeneous_map(bset1, isl_mat_copy(T2));
1260 bset2 = homogeneous_map(bset2, T2);
1261 set = isl_set_alloc_space(isl_basic_set_get_space(bset1), 2, 0);
1262 set = isl_set_add_basic_set(set, bset1);
1263 set = isl_set_add_basic_set(set, bset2);
1264 hull = uset_convex_hull(set);
1265 hull = isl_basic_set_preimage(hull, T);
1267 isl_vec_free(dir);
1269 return hull;
1270 error:
1271 isl_vec_free(dir);
1272 isl_basic_set_free(bset1);
1273 isl_basic_set_free(bset2);
1274 return NULL;
1277 static __isl_give isl_basic_set *uset_convex_hull_wrap(__isl_take isl_set *set);
1278 static __isl_give isl_basic_set *modulo_affine_hull(
1279 __isl_take isl_set *set, __isl_take isl_basic_set *affine_hull);
1281 /* Compute the convex hull of a pair of basic sets without any parameters or
1282 * integer divisions.
1284 * This function is called from uset_convex_hull_unbounded, which
1285 * means that the complete convex hull is unbounded. Some pairs
1286 * of basic sets may still be bounded, though.
1287 * They may even lie inside a lower dimensional space, in which
1288 * case they need to be handled inside their affine hull since
1289 * the main algorithm assumes that the result is full-dimensional.
1291 * If the convex hull of the two basic sets would have a non-trivial
1292 * lineality space, we first project out this lineality space.
1294 static __isl_give isl_basic_set *convex_hull_pair(
1295 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
1297 isl_basic_set *lin, *aff;
1298 int bounded1, bounded2;
1300 if (bset1->ctx->opt->convex == ISL_CONVEX_HULL_FM)
1301 return convex_hull_pair_elim(bset1, bset2);
1303 aff = isl_set_affine_hull(isl_basic_set_union(isl_basic_set_copy(bset1),
1304 isl_basic_set_copy(bset2)));
1305 if (!aff)
1306 goto error;
1307 if (aff->n_eq != 0)
1308 return modulo_affine_hull(isl_basic_set_union(bset1, bset2), aff);
1309 isl_basic_set_free(aff);
1311 bounded1 = isl_basic_set_is_bounded(bset1);
1312 bounded2 = isl_basic_set_is_bounded(bset2);
1314 if (bounded1 < 0 || bounded2 < 0)
1315 goto error;
1317 if (bounded1 && bounded2)
1318 return uset_convex_hull_wrap(isl_basic_set_union(bset1, bset2));
1320 if (bounded1 || bounded2)
1321 return convex_hull_pair_pointed(bset1, bset2);
1323 lin = induced_lineality_space(isl_basic_set_copy(bset1),
1324 isl_basic_set_copy(bset2));
1325 if (!lin)
1326 goto error;
1327 if (isl_basic_set_plain_is_universe(lin)) {
1328 isl_basic_set_free(bset1);
1329 isl_basic_set_free(bset2);
1330 return lin;
1332 if (lin->n_eq < isl_basic_set_total_dim(lin)) {
1333 struct isl_set *set;
1334 set = isl_set_alloc_space(isl_basic_set_get_space(bset1), 2, 0);
1335 set = isl_set_add_basic_set(set, bset1);
1336 set = isl_set_add_basic_set(set, bset2);
1337 return modulo_lineality(set, lin);
1339 isl_basic_set_free(lin);
1341 return convex_hull_pair_pointed(bset1, bset2);
1342 error:
1343 isl_basic_set_free(bset1);
1344 isl_basic_set_free(bset2);
1345 return NULL;
1348 /* Compute the lineality space of a basic set.
1349 * We currently do not allow the basic set to have any divs.
1350 * We basically just drop the constants and turn every inequality
1351 * into an equality.
1353 struct isl_basic_set *isl_basic_set_lineality_space(struct isl_basic_set *bset)
1355 int i, k;
1356 struct isl_basic_set *lin = NULL;
1357 unsigned dim;
1359 if (!bset)
1360 goto error;
1361 isl_assert(bset->ctx, bset->n_div == 0, goto error);
1362 dim = isl_basic_set_total_dim(bset);
1364 lin = isl_basic_set_alloc_space(isl_basic_set_get_space(bset), 0, dim, 0);
1365 if (!lin)
1366 goto error;
1367 for (i = 0; i < bset->n_eq; ++i) {
1368 k = isl_basic_set_alloc_equality(lin);
1369 if (k < 0)
1370 goto error;
1371 isl_int_set_si(lin->eq[k][0], 0);
1372 isl_seq_cpy(lin->eq[k] + 1, bset->eq[i] + 1, dim);
1374 lin = isl_basic_set_gauss(lin, NULL);
1375 if (!lin)
1376 goto error;
1377 for (i = 0; i < bset->n_ineq && lin->n_eq < dim; ++i) {
1378 k = isl_basic_set_alloc_equality(lin);
1379 if (k < 0)
1380 goto error;
1381 isl_int_set_si(lin->eq[k][0], 0);
1382 isl_seq_cpy(lin->eq[k] + 1, bset->ineq[i] + 1, dim);
1383 lin = isl_basic_set_gauss(lin, NULL);
1384 if (!lin)
1385 goto error;
1387 isl_basic_set_free(bset);
1388 return lin;
1389 error:
1390 isl_basic_set_free(lin);
1391 isl_basic_set_free(bset);
1392 return NULL;
1395 /* Compute the (linear) hull of the lineality spaces of the basic sets in the
1396 * "underlying" set "set".
1398 static __isl_give isl_basic_set *uset_combined_lineality_space(
1399 __isl_take isl_set *set)
1401 int i;
1402 struct isl_set *lin = NULL;
1404 if (!set)
1405 return NULL;
1406 if (set->n == 0) {
1407 isl_space *space = isl_set_get_space(set);
1408 isl_set_free(set);
1409 return isl_basic_set_empty(space);
1412 lin = isl_set_alloc_space(isl_set_get_space(set), set->n, 0);
1413 for (i = 0; i < set->n; ++i)
1414 lin = isl_set_add_basic_set(lin,
1415 isl_basic_set_lineality_space(isl_basic_set_copy(set->p[i])));
1416 isl_set_free(set);
1417 return isl_set_affine_hull(lin);
1420 /* Compute the convex hull of a set without any parameters or
1421 * integer divisions.
1422 * In each step, we combined two basic sets until only one
1423 * basic set is left.
1424 * The input basic sets are assumed not to have a non-trivial
1425 * lineality space. If any of the intermediate results has
1426 * a non-trivial lineality space, it is projected out.
1428 static __isl_give isl_basic_set *uset_convex_hull_unbounded(
1429 __isl_take isl_set *set)
1431 isl_basic_set_list *list;
1433 list = isl_set_get_basic_set_list(set);
1434 isl_set_free(set);
1436 while (list) {
1437 int n;
1438 struct isl_basic_set *t;
1439 isl_basic_set *bset1, *bset2;
1441 n = isl_basic_set_list_n_basic_set(list);
1442 if (n < 2)
1443 isl_die(isl_basic_set_list_get_ctx(list),
1444 isl_error_internal,
1445 "expecting at least two elements", goto error);
1446 bset1 = isl_basic_set_list_get_basic_set(list, n - 1);
1447 bset2 = isl_basic_set_list_get_basic_set(list, n - 2);
1448 bset1 = convex_hull_pair(bset1, bset2);
1449 if (n == 2) {
1450 isl_basic_set_list_free(list);
1451 return bset1;
1453 bset1 = isl_basic_set_underlying_set(bset1);
1454 list = isl_basic_set_list_drop(list, n - 2, 2);
1455 list = isl_basic_set_list_add(list, bset1);
1457 t = isl_basic_set_list_get_basic_set(list, n - 2);
1458 t = isl_basic_set_lineality_space(t);
1459 if (!t)
1460 goto error;
1461 if (isl_basic_set_plain_is_universe(t)) {
1462 isl_basic_set_list_free(list);
1463 return t;
1465 if (t->n_eq < isl_basic_set_total_dim(t)) {
1466 set = isl_basic_set_list_union(list);
1467 return modulo_lineality(set, t);
1469 isl_basic_set_free(t);
1472 return NULL;
1473 error:
1474 isl_basic_set_list_free(list);
1475 return NULL;
1478 /* Compute an initial hull for wrapping containing a single initial
1479 * facet.
1480 * This function assumes that the given set is bounded.
1482 static __isl_give isl_basic_set *initial_hull(__isl_take isl_basic_set *hull,
1483 __isl_keep isl_set *set)
1485 struct isl_mat *bounds = NULL;
1486 unsigned dim;
1487 int k;
1489 if (!hull)
1490 goto error;
1491 bounds = initial_facet_constraint(set);
1492 if (!bounds)
1493 goto error;
1494 k = isl_basic_set_alloc_inequality(hull);
1495 if (k < 0)
1496 goto error;
1497 dim = isl_set_n_dim(set);
1498 isl_assert(set->ctx, 1 + dim == bounds->n_col, goto error);
1499 isl_seq_cpy(hull->ineq[k], bounds->row[0], bounds->n_col);
1500 isl_mat_free(bounds);
1502 return hull;
1503 error:
1504 isl_basic_set_free(hull);
1505 isl_mat_free(bounds);
1506 return NULL;
1509 struct max_constraint {
1510 struct isl_mat *c;
1511 int count;
1512 int ineq;
1515 static int max_constraint_equal(const void *entry, const void *val)
1517 struct max_constraint *a = (struct max_constraint *)entry;
1518 isl_int *b = (isl_int *)val;
1520 return isl_seq_eq(a->c->row[0] + 1, b, a->c->n_col - 1);
1523 static void update_constraint(struct isl_ctx *ctx, struct isl_hash_table *table,
1524 isl_int *con, unsigned len, int n, int ineq)
1526 struct isl_hash_table_entry *entry;
1527 struct max_constraint *c;
1528 uint32_t c_hash;
1530 c_hash = isl_seq_get_hash(con + 1, len);
1531 entry = isl_hash_table_find(ctx, table, c_hash, max_constraint_equal,
1532 con + 1, 0);
1533 if (!entry)
1534 return;
1535 c = entry->data;
1536 if (c->count < n) {
1537 isl_hash_table_remove(ctx, table, entry);
1538 return;
1540 c->count++;
1541 if (isl_int_gt(c->c->row[0][0], con[0]))
1542 return;
1543 if (isl_int_eq(c->c->row[0][0], con[0])) {
1544 if (ineq)
1545 c->ineq = ineq;
1546 return;
1548 c->c = isl_mat_cow(c->c);
1549 isl_int_set(c->c->row[0][0], con[0]);
1550 c->ineq = ineq;
1553 /* Check whether the constraint hash table "table" constains the constraint
1554 * "con".
1556 static int has_constraint(struct isl_ctx *ctx, struct isl_hash_table *table,
1557 isl_int *con, unsigned len, int n)
1559 struct isl_hash_table_entry *entry;
1560 struct max_constraint *c;
1561 uint32_t c_hash;
1563 c_hash = isl_seq_get_hash(con + 1, len);
1564 entry = isl_hash_table_find(ctx, table, c_hash, max_constraint_equal,
1565 con + 1, 0);
1566 if (!entry)
1567 return 0;
1568 c = entry->data;
1569 if (c->count < n)
1570 return 0;
1571 return isl_int_eq(c->c->row[0][0], con[0]);
1574 /* Check for inequality constraints of a basic set without equalities
1575 * such that the same or more stringent copies of the constraint appear
1576 * in all of the basic sets. Such constraints are necessarily facet
1577 * constraints of the convex hull.
1579 * If the resulting basic set is by chance identical to one of
1580 * the basic sets in "set", then we know that this basic set contains
1581 * all other basic sets and is therefore the convex hull of set.
1582 * In this case we set *is_hull to 1.
1584 static __isl_give isl_basic_set *common_constraints(
1585 __isl_take isl_basic_set *hull, __isl_keep isl_set *set, int *is_hull)
1587 int i, j, s, n;
1588 int min_constraints;
1589 int best;
1590 struct max_constraint *constraints = NULL;
1591 struct isl_hash_table *table = NULL;
1592 unsigned total;
1594 *is_hull = 0;
1596 for (i = 0; i < set->n; ++i)
1597 if (set->p[i]->n_eq == 0)
1598 break;
1599 if (i >= set->n)
1600 return hull;
1601 min_constraints = set->p[i]->n_ineq;
1602 best = i;
1603 for (i = best + 1; i < set->n; ++i) {
1604 if (set->p[i]->n_eq != 0)
1605 continue;
1606 if (set->p[i]->n_ineq >= min_constraints)
1607 continue;
1608 min_constraints = set->p[i]->n_ineq;
1609 best = i;
1611 constraints = isl_calloc_array(hull->ctx, struct max_constraint,
1612 min_constraints);
1613 if (!constraints)
1614 return hull;
1615 table = isl_alloc_type(hull->ctx, struct isl_hash_table);
1616 if (isl_hash_table_init(hull->ctx, table, min_constraints))
1617 goto error;
1619 total = isl_space_dim(set->dim, isl_dim_all);
1620 for (i = 0; i < set->p[best]->n_ineq; ++i) {
1621 constraints[i].c = isl_mat_sub_alloc6(hull->ctx,
1622 set->p[best]->ineq + i, 0, 1, 0, 1 + total);
1623 if (!constraints[i].c)
1624 goto error;
1625 constraints[i].ineq = 1;
1627 for (i = 0; i < min_constraints; ++i) {
1628 struct isl_hash_table_entry *entry;
1629 uint32_t c_hash;
1630 c_hash = isl_seq_get_hash(constraints[i].c->row[0] + 1, total);
1631 entry = isl_hash_table_find(hull->ctx, table, c_hash,
1632 max_constraint_equal, constraints[i].c->row[0] + 1, 1);
1633 if (!entry)
1634 goto error;
1635 isl_assert(hull->ctx, !entry->data, goto error);
1636 entry->data = &constraints[i];
1639 n = 0;
1640 for (s = 0; s < set->n; ++s) {
1641 if (s == best)
1642 continue;
1644 for (i = 0; i < set->p[s]->n_eq; ++i) {
1645 isl_int *eq = set->p[s]->eq[i];
1646 for (j = 0; j < 2; ++j) {
1647 isl_seq_neg(eq, eq, 1 + total);
1648 update_constraint(hull->ctx, table,
1649 eq, total, n, 0);
1652 for (i = 0; i < set->p[s]->n_ineq; ++i) {
1653 isl_int *ineq = set->p[s]->ineq[i];
1654 update_constraint(hull->ctx, table, ineq, total, n,
1655 set->p[s]->n_eq == 0);
1657 ++n;
1660 for (i = 0; i < min_constraints; ++i) {
1661 if (constraints[i].count < n)
1662 continue;
1663 if (!constraints[i].ineq)
1664 continue;
1665 j = isl_basic_set_alloc_inequality(hull);
1666 if (j < 0)
1667 goto error;
1668 isl_seq_cpy(hull->ineq[j], constraints[i].c->row[0], 1 + total);
1671 for (s = 0; s < set->n; ++s) {
1672 if (set->p[s]->n_eq)
1673 continue;
1674 if (set->p[s]->n_ineq != hull->n_ineq)
1675 continue;
1676 for (i = 0; i < set->p[s]->n_ineq; ++i) {
1677 isl_int *ineq = set->p[s]->ineq[i];
1678 if (!has_constraint(hull->ctx, table, ineq, total, n))
1679 break;
1681 if (i == set->p[s]->n_ineq)
1682 *is_hull = 1;
1685 isl_hash_table_clear(table);
1686 for (i = 0; i < min_constraints; ++i)
1687 isl_mat_free(constraints[i].c);
1688 free(constraints);
1689 free(table);
1690 return hull;
1691 error:
1692 isl_hash_table_clear(table);
1693 free(table);
1694 if (constraints)
1695 for (i = 0; i < min_constraints; ++i)
1696 isl_mat_free(constraints[i].c);
1697 free(constraints);
1698 return hull;
1701 /* Create a template for the convex hull of "set" and fill it up
1702 * obvious facet constraints, if any. If the result happens to
1703 * be the convex hull of "set" then *is_hull is set to 1.
1705 static __isl_give isl_basic_set *proto_hull(__isl_keep isl_set *set,
1706 int *is_hull)
1708 struct isl_basic_set *hull;
1709 unsigned n_ineq;
1710 int i;
1712 n_ineq = 1;
1713 for (i = 0; i < set->n; ++i) {
1714 n_ineq += set->p[i]->n_eq;
1715 n_ineq += set->p[i]->n_ineq;
1717 hull = isl_basic_set_alloc_space(isl_space_copy(set->dim), 0, 0, n_ineq);
1718 hull = isl_basic_set_set_rational(hull);
1719 if (!hull)
1720 return NULL;
1721 return common_constraints(hull, set, is_hull);
1724 static __isl_give isl_basic_set *uset_convex_hull_wrap(__isl_take isl_set *set)
1726 struct isl_basic_set *hull;
1727 int is_hull;
1729 hull = proto_hull(set, &is_hull);
1730 if (hull && !is_hull) {
1731 if (hull->n_ineq == 0)
1732 hull = initial_hull(hull, set);
1733 hull = extend(hull, set);
1735 isl_set_free(set);
1737 return hull;
1740 /* Compute the convex hull of a set without any parameters or
1741 * integer divisions. Depending on whether the set is bounded,
1742 * we pass control to the wrapping based convex hull or
1743 * the Fourier-Motzkin elimination based convex hull.
1744 * We also handle a few special cases before checking the boundedness.
1746 static __isl_give isl_basic_set *uset_convex_hull(__isl_take isl_set *set)
1748 isl_bool bounded;
1749 struct isl_basic_set *convex_hull = NULL;
1750 struct isl_basic_set *lin;
1752 if (isl_set_n_dim(set) == 0)
1753 return convex_hull_0d(set);
1755 set = isl_set_coalesce(set);
1756 set = isl_set_set_rational(set);
1758 if (!set)
1759 return NULL;
1760 if (set->n == 1) {
1761 convex_hull = isl_basic_set_copy(set->p[0]);
1762 isl_set_free(set);
1763 return convex_hull;
1765 if (isl_set_n_dim(set) == 1)
1766 return convex_hull_1d(set);
1768 bounded = isl_set_is_bounded(set);
1769 if (bounded < 0)
1770 goto error;
1771 if (bounded && set->ctx->opt->convex == ISL_CONVEX_HULL_WRAP)
1772 return uset_convex_hull_wrap(set);
1774 lin = uset_combined_lineality_space(isl_set_copy(set));
1775 if (!lin)
1776 goto error;
1777 if (isl_basic_set_plain_is_universe(lin)) {
1778 isl_set_free(set);
1779 return lin;
1781 if (lin->n_eq < isl_basic_set_total_dim(lin))
1782 return modulo_lineality(set, lin);
1783 isl_basic_set_free(lin);
1785 return uset_convex_hull_unbounded(set);
1786 error:
1787 isl_set_free(set);
1788 isl_basic_set_free(convex_hull);
1789 return NULL;
1792 /* This is the core procedure, where "set" is a "pure" set, i.e.,
1793 * without parameters or divs and where the convex hull of set is
1794 * known to be full-dimensional.
1796 static __isl_give isl_basic_set *uset_convex_hull_wrap_bounded(
1797 __isl_take isl_set *set)
1799 struct isl_basic_set *convex_hull = NULL;
1801 if (!set)
1802 goto error;
1804 if (isl_set_n_dim(set) == 0) {
1805 convex_hull = isl_basic_set_universe(isl_space_copy(set->dim));
1806 isl_set_free(set);
1807 convex_hull = isl_basic_set_set_rational(convex_hull);
1808 return convex_hull;
1811 set = isl_set_set_rational(set);
1812 set = isl_set_coalesce(set);
1813 if (!set)
1814 goto error;
1815 if (set->n == 1) {
1816 convex_hull = isl_basic_set_copy(set->p[0]);
1817 isl_set_free(set);
1818 convex_hull = isl_basic_map_remove_redundancies(convex_hull);
1819 return convex_hull;
1821 if (isl_set_n_dim(set) == 1)
1822 return convex_hull_1d(set);
1824 return uset_convex_hull_wrap(set);
1825 error:
1826 isl_set_free(set);
1827 return NULL;
1830 /* Compute the convex hull of set "set" with affine hull "affine_hull",
1831 * We first remove the equalities (transforming the set), compute the
1832 * convex hull of the transformed set and then add the equalities back
1833 * (after performing the inverse transformation.
1835 static __isl_give isl_basic_set *modulo_affine_hull(
1836 __isl_take isl_set *set, __isl_take isl_basic_set *affine_hull)
1838 struct isl_mat *T;
1839 struct isl_mat *T2;
1840 struct isl_basic_set *dummy;
1841 struct isl_basic_set *convex_hull;
1843 dummy = isl_basic_set_remove_equalities(
1844 isl_basic_set_copy(affine_hull), &T, &T2);
1845 if (!dummy)
1846 goto error;
1847 isl_basic_set_free(dummy);
1848 set = isl_set_preimage(set, T);
1849 convex_hull = uset_convex_hull(set);
1850 convex_hull = isl_basic_set_preimage(convex_hull, T2);
1851 convex_hull = isl_basic_set_intersect(convex_hull, affine_hull);
1852 return convex_hull;
1853 error:
1854 isl_basic_set_free(affine_hull);
1855 isl_set_free(set);
1856 return NULL;
1859 /* Return an empty basic map living in the same space as "map".
1861 static __isl_give isl_basic_map *replace_map_by_empty_basic_map(
1862 __isl_take isl_map *map)
1864 isl_space *space;
1866 space = isl_map_get_space(map);
1867 isl_map_free(map);
1868 return isl_basic_map_empty(space);
1871 /* Compute the convex hull of a map.
1873 * The implementation was inspired by "Extended Convex Hull" by Fukuda et al.,
1874 * specifically, the wrapping of facets to obtain new facets.
1876 struct isl_basic_map *isl_map_convex_hull(struct isl_map *map)
1878 struct isl_basic_set *bset;
1879 struct isl_basic_map *model = NULL;
1880 struct isl_basic_set *affine_hull = NULL;
1881 struct isl_basic_map *convex_hull = NULL;
1882 struct isl_set *set = NULL;
1884 map = isl_map_detect_equalities(map);
1885 map = isl_map_align_divs_internal(map);
1886 if (!map)
1887 goto error;
1889 if (map->n == 0)
1890 return replace_map_by_empty_basic_map(map);
1892 model = isl_basic_map_copy(map->p[0]);
1893 set = isl_map_underlying_set(map);
1894 if (!set)
1895 goto error;
1897 affine_hull = isl_set_affine_hull(isl_set_copy(set));
1898 if (!affine_hull)
1899 goto error;
1900 if (affine_hull->n_eq != 0)
1901 bset = modulo_affine_hull(set, affine_hull);
1902 else {
1903 isl_basic_set_free(affine_hull);
1904 bset = uset_convex_hull(set);
1907 convex_hull = isl_basic_map_overlying_set(bset, model);
1908 if (!convex_hull)
1909 return NULL;
1911 ISL_F_SET(convex_hull, ISL_BASIC_MAP_NO_IMPLICIT);
1912 ISL_F_SET(convex_hull, ISL_BASIC_MAP_ALL_EQUALITIES);
1913 ISL_F_CLR(convex_hull, ISL_BASIC_MAP_RATIONAL);
1914 return convex_hull;
1915 error:
1916 isl_set_free(set);
1917 isl_basic_map_free(model);
1918 return NULL;
1921 struct isl_basic_set *isl_set_convex_hull(struct isl_set *set)
1923 return bset_from_bmap(isl_map_convex_hull(set_to_map(set)));
1926 __isl_give isl_basic_map *isl_map_polyhedral_hull(__isl_take isl_map *map)
1928 isl_basic_map *hull;
1930 hull = isl_map_convex_hull(map);
1931 return isl_basic_map_remove_divs(hull);
1934 __isl_give isl_basic_set *isl_set_polyhedral_hull(__isl_take isl_set *set)
1936 return bset_from_bmap(isl_map_polyhedral_hull(set_to_map(set)));
1939 struct sh_data_entry {
1940 struct isl_hash_table *table;
1941 struct isl_tab *tab;
1944 /* Holds the data needed during the simple hull computation.
1945 * In particular,
1946 * n the number of basic sets in the original set
1947 * hull_table a hash table of already computed constraints
1948 * in the simple hull
1949 * p for each basic set,
1950 * table a hash table of the constraints
1951 * tab the tableau corresponding to the basic set
1953 struct sh_data {
1954 struct isl_ctx *ctx;
1955 unsigned n;
1956 struct isl_hash_table *hull_table;
1957 struct sh_data_entry p[1];
1960 static void sh_data_free(struct sh_data *data)
1962 int i;
1964 if (!data)
1965 return;
1966 isl_hash_table_free(data->ctx, data->hull_table);
1967 for (i = 0; i < data->n; ++i) {
1968 isl_hash_table_free(data->ctx, data->p[i].table);
1969 isl_tab_free(data->p[i].tab);
1971 free(data);
1974 struct ineq_cmp_data {
1975 unsigned len;
1976 isl_int *p;
1979 static int has_ineq(const void *entry, const void *val)
1981 isl_int *row = (isl_int *)entry;
1982 struct ineq_cmp_data *v = (struct ineq_cmp_data *)val;
1984 return isl_seq_eq(row + 1, v->p + 1, v->len) ||
1985 isl_seq_is_neg(row + 1, v->p + 1, v->len);
1988 static int hash_ineq(struct isl_ctx *ctx, struct isl_hash_table *table,
1989 isl_int *ineq, unsigned len)
1991 uint32_t c_hash;
1992 struct ineq_cmp_data v;
1993 struct isl_hash_table_entry *entry;
1995 v.len = len;
1996 v.p = ineq;
1997 c_hash = isl_seq_get_hash(ineq + 1, len);
1998 entry = isl_hash_table_find(ctx, table, c_hash, has_ineq, &v, 1);
1999 if (!entry)
2000 return - 1;
2001 entry->data = ineq;
2002 return 0;
2005 /* Fill hash table "table" with the constraints of "bset".
2006 * Equalities are added as two inequalities.
2007 * The value in the hash table is a pointer to the (in)equality of "bset".
2009 static int hash_basic_set(struct isl_hash_table *table,
2010 __isl_keep isl_basic_set *bset)
2012 int i, j;
2013 unsigned dim = isl_basic_set_total_dim(bset);
2015 for (i = 0; i < bset->n_eq; ++i) {
2016 for (j = 0; j < 2; ++j) {
2017 isl_seq_neg(bset->eq[i], bset->eq[i], 1 + dim);
2018 if (hash_ineq(bset->ctx, table, bset->eq[i], dim) < 0)
2019 return -1;
2022 for (i = 0; i < bset->n_ineq; ++i) {
2023 if (hash_ineq(bset->ctx, table, bset->ineq[i], dim) < 0)
2024 return -1;
2026 return 0;
2029 static struct sh_data *sh_data_alloc(__isl_keep isl_set *set, unsigned n_ineq)
2031 struct sh_data *data;
2032 int i;
2034 data = isl_calloc(set->ctx, struct sh_data,
2035 sizeof(struct sh_data) +
2036 (set->n - 1) * sizeof(struct sh_data_entry));
2037 if (!data)
2038 return NULL;
2039 data->ctx = set->ctx;
2040 data->n = set->n;
2041 data->hull_table = isl_hash_table_alloc(set->ctx, n_ineq);
2042 if (!data->hull_table)
2043 goto error;
2044 for (i = 0; i < set->n; ++i) {
2045 data->p[i].table = isl_hash_table_alloc(set->ctx,
2046 2 * set->p[i]->n_eq + set->p[i]->n_ineq);
2047 if (!data->p[i].table)
2048 goto error;
2049 if (hash_basic_set(data->p[i].table, set->p[i]) < 0)
2050 goto error;
2052 return data;
2053 error:
2054 sh_data_free(data);
2055 return NULL;
2058 /* Check if inequality "ineq" is a bound for basic set "j" or if
2059 * it can be relaxed (by increasing the constant term) to become
2060 * a bound for that basic set. In the latter case, the constant
2061 * term is updated.
2062 * Relaxation of the constant term is only allowed if "shift" is set.
2064 * Return 1 if "ineq" is a bound
2065 * 0 if "ineq" may attain arbitrarily small values on basic set "j"
2066 * -1 if some error occurred
2068 static int is_bound(struct sh_data *data, __isl_keep isl_set *set, int j,
2069 isl_int *ineq, int shift)
2071 enum isl_lp_result res;
2072 isl_int opt;
2074 if (!data->p[j].tab) {
2075 data->p[j].tab = isl_tab_from_basic_set(set->p[j], 0);
2076 if (!data->p[j].tab)
2077 return -1;
2080 isl_int_init(opt);
2082 res = isl_tab_min(data->p[j].tab, ineq, data->ctx->one,
2083 &opt, NULL, 0);
2084 if (res == isl_lp_ok && isl_int_is_neg(opt)) {
2085 if (shift)
2086 isl_int_sub(ineq[0], ineq[0], opt);
2087 else
2088 res = isl_lp_unbounded;
2091 isl_int_clear(opt);
2093 return (res == isl_lp_ok || res == isl_lp_empty) ? 1 :
2094 res == isl_lp_unbounded ? 0 : -1;
2097 /* Set the constant term of "ineq" to the maximum of those of the constraints
2098 * in the basic sets of "set" following "i" that are parallel to "ineq".
2099 * That is, if any of the basic sets of "set" following "i" have a more
2100 * relaxed copy of "ineq", then replace "ineq" by the most relaxed copy.
2101 * "c_hash" is the hash value of the linear part of "ineq".
2102 * "v" has been set up for use by has_ineq.
2104 * Note that the two inequality constraints corresponding to an equality are
2105 * represented by the same inequality constraint in data->p[j].table
2106 * (but with different hash values). This means the constraint (or at
2107 * least its constant term) may need to be temporarily negated to get
2108 * the actually hashed constraint.
2110 static void set_max_constant_term(struct sh_data *data, __isl_keep isl_set *set,
2111 int i, isl_int *ineq, uint32_t c_hash, struct ineq_cmp_data *v)
2113 int j;
2114 isl_ctx *ctx;
2115 struct isl_hash_table_entry *entry;
2117 ctx = isl_set_get_ctx(set);
2118 for (j = i + 1; j < set->n; ++j) {
2119 int neg;
2120 isl_int *ineq_j;
2122 entry = isl_hash_table_find(ctx, data->p[j].table,
2123 c_hash, &has_ineq, v, 0);
2124 if (!entry)
2125 continue;
2127 ineq_j = entry->data;
2128 neg = isl_seq_is_neg(ineq_j + 1, ineq + 1, v->len);
2129 if (neg)
2130 isl_int_neg(ineq_j[0], ineq_j[0]);
2131 if (isl_int_gt(ineq_j[0], ineq[0]))
2132 isl_int_set(ineq[0], ineq_j[0]);
2133 if (neg)
2134 isl_int_neg(ineq_j[0], ineq_j[0]);
2138 /* Check if inequality "ineq" from basic set "i" is or can be relaxed to
2139 * become a bound on the whole set. If so, add the (relaxed) inequality
2140 * to "hull". Relaxation is only allowed if "shift" is set.
2142 * We first check if "hull" already contains a translate of the inequality.
2143 * If so, we are done.
2144 * Then, we check if any of the previous basic sets contains a translate
2145 * of the inequality. If so, then we have already considered this
2146 * inequality and we are done.
2147 * Otherwise, for each basic set other than "i", we check if the inequality
2148 * is a bound on the basic set, but first replace the constant term
2149 * by the maximal value of any translate of the inequality in any
2150 * of the following basic sets.
2151 * For previous basic sets, we know that they do not contain a translate
2152 * of the inequality, so we directly call is_bound.
2153 * For following basic sets, we first check if a translate of the
2154 * inequality appears in its description. If so, the constant term
2155 * of the inequality has already been updated with respect to this
2156 * translate and the inequality is therefore known to be a bound
2157 * of this basic set.
2159 static __isl_give isl_basic_set *add_bound(__isl_take isl_basic_set *hull,
2160 struct sh_data *data, __isl_keep isl_set *set, int i, isl_int *ineq,
2161 int shift)
2163 uint32_t c_hash;
2164 struct ineq_cmp_data v;
2165 struct isl_hash_table_entry *entry;
2166 int j, k;
2168 if (!hull)
2169 return NULL;
2171 v.len = isl_basic_set_total_dim(hull);
2172 v.p = ineq;
2173 c_hash = isl_seq_get_hash(ineq + 1, v.len);
2175 entry = isl_hash_table_find(hull->ctx, data->hull_table, c_hash,
2176 has_ineq, &v, 0);
2177 if (entry)
2178 return hull;
2180 for (j = 0; j < i; ++j) {
2181 entry = isl_hash_table_find(hull->ctx, data->p[j].table,
2182 c_hash, has_ineq, &v, 0);
2183 if (entry)
2184 break;
2186 if (j < i)
2187 return hull;
2189 k = isl_basic_set_alloc_inequality(hull);
2190 if (k < 0)
2191 goto error;
2192 isl_seq_cpy(hull->ineq[k], ineq, 1 + v.len);
2194 set_max_constant_term(data, set, i, hull->ineq[k], c_hash, &v);
2195 for (j = 0; j < i; ++j) {
2196 int bound;
2197 bound = is_bound(data, set, j, hull->ineq[k], shift);
2198 if (bound < 0)
2199 goto error;
2200 if (!bound)
2201 break;
2203 if (j < i) {
2204 isl_basic_set_free_inequality(hull, 1);
2205 return hull;
2208 for (j = i + 1; j < set->n; ++j) {
2209 int bound;
2210 entry = isl_hash_table_find(hull->ctx, data->p[j].table,
2211 c_hash, has_ineq, &v, 0);
2212 if (entry)
2213 continue;
2214 bound = is_bound(data, set, j, hull->ineq[k], shift);
2215 if (bound < 0)
2216 goto error;
2217 if (!bound)
2218 break;
2220 if (j < set->n) {
2221 isl_basic_set_free_inequality(hull, 1);
2222 return hull;
2225 entry = isl_hash_table_find(hull->ctx, data->hull_table, c_hash,
2226 has_ineq, &v, 1);
2227 if (!entry)
2228 goto error;
2229 entry->data = hull->ineq[k];
2231 return hull;
2232 error:
2233 isl_basic_set_free(hull);
2234 return NULL;
2237 /* Check if any inequality from basic set "i" is or can be relaxed to
2238 * become a bound on the whole set. If so, add the (relaxed) inequality
2239 * to "hull". Relaxation is only allowed if "shift" is set.
2241 static __isl_give isl_basic_set *add_bounds(__isl_take isl_basic_set *bset,
2242 struct sh_data *data, __isl_keep isl_set *set, int i, int shift)
2244 int j, k;
2245 unsigned dim = isl_basic_set_total_dim(bset);
2247 for (j = 0; j < set->p[i]->n_eq; ++j) {
2248 for (k = 0; k < 2; ++k) {
2249 isl_seq_neg(set->p[i]->eq[j], set->p[i]->eq[j], 1+dim);
2250 bset = add_bound(bset, data, set, i, set->p[i]->eq[j],
2251 shift);
2254 for (j = 0; j < set->p[i]->n_ineq; ++j)
2255 bset = add_bound(bset, data, set, i, set->p[i]->ineq[j], shift);
2256 return bset;
2259 /* Compute a superset of the convex hull of set that is described
2260 * by only (translates of) the constraints in the constituents of set.
2261 * Translation is only allowed if "shift" is set.
2263 static __isl_give isl_basic_set *uset_simple_hull(__isl_take isl_set *set,
2264 int shift)
2266 struct sh_data *data = NULL;
2267 struct isl_basic_set *hull = NULL;
2268 unsigned n_ineq;
2269 int i;
2271 if (!set)
2272 return NULL;
2274 n_ineq = 0;
2275 for (i = 0; i < set->n; ++i) {
2276 if (!set->p[i])
2277 goto error;
2278 n_ineq += 2 * set->p[i]->n_eq + set->p[i]->n_ineq;
2281 hull = isl_basic_set_alloc_space(isl_space_copy(set->dim), 0, 0, n_ineq);
2282 if (!hull)
2283 goto error;
2285 data = sh_data_alloc(set, n_ineq);
2286 if (!data)
2287 goto error;
2289 for (i = 0; i < set->n; ++i)
2290 hull = add_bounds(hull, data, set, i, shift);
2292 sh_data_free(data);
2293 isl_set_free(set);
2295 return hull;
2296 error:
2297 sh_data_free(data);
2298 isl_basic_set_free(hull);
2299 isl_set_free(set);
2300 return NULL;
2303 /* Compute a superset of the convex hull of map that is described
2304 * by only (translates of) the constraints in the constituents of map.
2305 * Handle trivial cases where map is NULL or contains at most one disjunct.
2307 static __isl_give isl_basic_map *map_simple_hull_trivial(
2308 __isl_take isl_map *map)
2310 isl_basic_map *hull;
2312 if (!map)
2313 return NULL;
2314 if (map->n == 0)
2315 return replace_map_by_empty_basic_map(map);
2317 hull = isl_basic_map_copy(map->p[0]);
2318 isl_map_free(map);
2319 return hull;
2322 /* Return a copy of the simple hull cached inside "map".
2323 * "shift" determines whether to return the cached unshifted or shifted
2324 * simple hull.
2326 static __isl_give isl_basic_map *cached_simple_hull(__isl_take isl_map *map,
2327 int shift)
2329 isl_basic_map *hull;
2331 hull = isl_basic_map_copy(map->cached_simple_hull[shift]);
2332 isl_map_free(map);
2334 return hull;
2337 /* Compute a superset of the convex hull of map that is described
2338 * by only (translates of) the constraints in the constituents of map.
2339 * Translation is only allowed if "shift" is set.
2341 * The constraints are sorted while removing redundant constraints
2342 * in order to indicate a preference of which constraints should
2343 * be preserved. In particular, pairs of constraints that are
2344 * sorted together are preferred to either both be preserved
2345 * or both be removed. The sorting is performed inside
2346 * isl_basic_map_remove_redundancies.
2348 * The result of the computation is stored in map->cached_simple_hull[shift]
2349 * such that it can be reused in subsequent calls. The cache is cleared
2350 * whenever the map is modified (in isl_map_cow).
2351 * Note that the results need to be stored in the input map for there
2352 * to be any chance that they may get reused. In particular, they
2353 * are stored in a copy of the input map that is saved before
2354 * the integer division alignment.
2356 static __isl_give isl_basic_map *map_simple_hull(__isl_take isl_map *map,
2357 int shift)
2359 struct isl_set *set = NULL;
2360 struct isl_basic_map *model = NULL;
2361 struct isl_basic_map *hull;
2362 struct isl_basic_map *affine_hull;
2363 struct isl_basic_set *bset = NULL;
2364 isl_map *input;
2366 if (!map || map->n <= 1)
2367 return map_simple_hull_trivial(map);
2369 if (map->cached_simple_hull[shift])
2370 return cached_simple_hull(map, shift);
2372 map = isl_map_detect_equalities(map);
2373 if (!map || map->n <= 1)
2374 return map_simple_hull_trivial(map);
2375 affine_hull = isl_map_affine_hull(isl_map_copy(map));
2376 input = isl_map_copy(map);
2377 map = isl_map_align_divs_internal(map);
2378 model = map ? isl_basic_map_copy(map->p[0]) : NULL;
2380 set = isl_map_underlying_set(map);
2382 bset = uset_simple_hull(set, shift);
2384 hull = isl_basic_map_overlying_set(bset, model);
2386 hull = isl_basic_map_intersect(hull, affine_hull);
2387 hull = isl_basic_map_remove_redundancies(hull);
2389 if (hull) {
2390 ISL_F_SET(hull, ISL_BASIC_MAP_NO_IMPLICIT);
2391 ISL_F_SET(hull, ISL_BASIC_MAP_ALL_EQUALITIES);
2394 hull = isl_basic_map_finalize(hull);
2395 if (input)
2396 input->cached_simple_hull[shift] = isl_basic_map_copy(hull);
2397 isl_map_free(input);
2399 return hull;
2402 /* Compute a superset of the convex hull of map that is described
2403 * by only translates of the constraints in the constituents of map.
2405 __isl_give isl_basic_map *isl_map_simple_hull(__isl_take isl_map *map)
2407 return map_simple_hull(map, 1);
2410 struct isl_basic_set *isl_set_simple_hull(struct isl_set *set)
2412 return bset_from_bmap(isl_map_simple_hull(set_to_map(set)));
2415 /* Compute a superset of the convex hull of map that is described
2416 * by only the constraints in the constituents of map.
2418 __isl_give isl_basic_map *isl_map_unshifted_simple_hull(
2419 __isl_take isl_map *map)
2421 return map_simple_hull(map, 0);
2424 __isl_give isl_basic_set *isl_set_unshifted_simple_hull(
2425 __isl_take isl_set *set)
2427 return isl_map_unshifted_simple_hull(set);
2430 /* Drop all inequalities from "bmap1" that do not also appear in "bmap2".
2431 * A constraint that appears with different constant terms
2432 * in "bmap1" and "bmap2" is also kept, with the least restrictive
2433 * (i.e., greatest) constant term.
2434 * "bmap1" and "bmap2" are assumed to have the same (known)
2435 * integer divisions.
2436 * The constraints of both "bmap1" and "bmap2" are assumed
2437 * to have been sorted using isl_basic_map_sort_constraints.
2439 * Run through the inequality constraints of "bmap1" and "bmap2"
2440 * in sorted order.
2441 * Each constraint of "bmap1" without a matching constraint in "bmap2"
2442 * is removed.
2443 * If a match is found, the constraint is kept. If needed, the constant
2444 * term of the constraint is adjusted.
2446 static __isl_give isl_basic_map *select_shared_inequalities(
2447 __isl_take isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
2449 int i1, i2;
2451 bmap1 = isl_basic_map_cow(bmap1);
2452 if (!bmap1 || !bmap2)
2453 return isl_basic_map_free(bmap1);
2455 i1 = bmap1->n_ineq - 1;
2456 i2 = bmap2->n_ineq - 1;
2457 while (bmap1 && i1 >= 0 && i2 >= 0) {
2458 int cmp;
2460 cmp = isl_basic_map_constraint_cmp(bmap1, bmap1->ineq[i1],
2461 bmap2->ineq[i2]);
2462 if (cmp < 0) {
2463 --i2;
2464 continue;
2466 if (cmp > 0) {
2467 if (isl_basic_map_drop_inequality(bmap1, i1) < 0)
2468 bmap1 = isl_basic_map_free(bmap1);
2469 --i1;
2470 continue;
2472 if (isl_int_lt(bmap1->ineq[i1][0], bmap2->ineq[i2][0]))
2473 isl_int_set(bmap1->ineq[i1][0], bmap2->ineq[i2][0]);
2474 --i1;
2475 --i2;
2477 for (; i1 >= 0; --i1)
2478 if (isl_basic_map_drop_inequality(bmap1, i1) < 0)
2479 bmap1 = isl_basic_map_free(bmap1);
2481 return bmap1;
2484 /* Drop all equalities from "bmap1" that do not also appear in "bmap2".
2485 * "bmap1" and "bmap2" are assumed to have the same (known)
2486 * integer divisions.
2488 * Run through the equality constraints of "bmap1" and "bmap2".
2489 * Each constraint of "bmap1" without a matching constraint in "bmap2"
2490 * is removed.
2492 static __isl_give isl_basic_map *select_shared_equalities(
2493 __isl_take isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
2495 int i1, i2;
2496 unsigned total;
2498 bmap1 = isl_basic_map_cow(bmap1);
2499 if (!bmap1 || !bmap2)
2500 return isl_basic_map_free(bmap1);
2502 total = isl_basic_map_total_dim(bmap1);
2504 i1 = bmap1->n_eq - 1;
2505 i2 = bmap2->n_eq - 1;
2506 while (bmap1 && i1 >= 0 && i2 >= 0) {
2507 int last1, last2;
2509 last1 = isl_seq_last_non_zero(bmap1->eq[i1] + 1, total);
2510 last2 = isl_seq_last_non_zero(bmap2->eq[i2] + 1, total);
2511 if (last1 > last2) {
2512 --i2;
2513 continue;
2515 if (last1 < last2) {
2516 if (isl_basic_map_drop_equality(bmap1, i1) < 0)
2517 bmap1 = isl_basic_map_free(bmap1);
2518 --i1;
2519 continue;
2521 if (!isl_seq_eq(bmap1->eq[i1], bmap2->eq[i2], 1 + total)) {
2522 if (isl_basic_map_drop_equality(bmap1, i1) < 0)
2523 bmap1 = isl_basic_map_free(bmap1);
2525 --i1;
2526 --i2;
2528 for (; i1 >= 0; --i1)
2529 if (isl_basic_map_drop_equality(bmap1, i1) < 0)
2530 bmap1 = isl_basic_map_free(bmap1);
2532 return bmap1;
2535 /* Compute a superset of "bmap1" and "bmap2" that is described
2536 * by only the constraints that appear in both "bmap1" and "bmap2".
2538 * First drop constraints that involve unknown integer divisions
2539 * since it is not trivial to check whether two such integer divisions
2540 * in different basic maps are the same.
2541 * Then align the remaining (known) divs and sort the constraints.
2542 * Finally drop all inequalities and equalities from "bmap1" that
2543 * do not also appear in "bmap2".
2545 __isl_give isl_basic_map *isl_basic_map_plain_unshifted_simple_hull(
2546 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
2548 bmap1 = isl_basic_map_drop_constraint_involving_unknown_divs(bmap1);
2549 bmap2 = isl_basic_map_drop_constraint_involving_unknown_divs(bmap2);
2550 bmap2 = isl_basic_map_align_divs(bmap2, bmap1);
2551 bmap1 = isl_basic_map_align_divs(bmap1, bmap2);
2552 bmap1 = isl_basic_map_gauss(bmap1, NULL);
2553 bmap2 = isl_basic_map_gauss(bmap2, NULL);
2554 bmap1 = isl_basic_map_sort_constraints(bmap1);
2555 bmap2 = isl_basic_map_sort_constraints(bmap2);
2557 bmap1 = select_shared_inequalities(bmap1, bmap2);
2558 bmap1 = select_shared_equalities(bmap1, bmap2);
2560 isl_basic_map_free(bmap2);
2561 bmap1 = isl_basic_map_finalize(bmap1);
2562 return bmap1;
2565 /* Compute a superset of the convex hull of "map" that is described
2566 * by only the constraints in the constituents of "map".
2567 * In particular, the result is composed of constraints that appear
2568 * in each of the basic maps of "map"
2570 * Constraints that involve unknown integer divisions are dropped
2571 * since it is not trivial to check whether two such integer divisions
2572 * in different basic maps are the same.
2574 * The hull is initialized from the first basic map and then
2575 * updated with respect to the other basic maps in turn.
2577 __isl_give isl_basic_map *isl_map_plain_unshifted_simple_hull(
2578 __isl_take isl_map *map)
2580 int i;
2581 isl_basic_map *hull;
2583 if (!map)
2584 return NULL;
2585 if (map->n <= 1)
2586 return map_simple_hull_trivial(map);
2587 map = isl_map_drop_constraint_involving_unknown_divs(map);
2588 hull = isl_basic_map_copy(map->p[0]);
2589 for (i = 1; i < map->n; ++i) {
2590 isl_basic_map *bmap_i;
2592 bmap_i = isl_basic_map_copy(map->p[i]);
2593 hull = isl_basic_map_plain_unshifted_simple_hull(hull, bmap_i);
2596 isl_map_free(map);
2597 return hull;
2600 /* Compute a superset of the convex hull of "set" that is described
2601 * by only the constraints in the constituents of "set".
2602 * In particular, the result is composed of constraints that appear
2603 * in each of the basic sets of "set"
2605 __isl_give isl_basic_set *isl_set_plain_unshifted_simple_hull(
2606 __isl_take isl_set *set)
2608 return isl_map_plain_unshifted_simple_hull(set);
2611 /* Check if "ineq" is a bound on "set" and, if so, add it to "hull".
2613 * For each basic set in "set", we first check if the basic set
2614 * contains a translate of "ineq". If this translate is more relaxed,
2615 * then we assume that "ineq" is not a bound on this basic set.
2616 * Otherwise, we know that it is a bound.
2617 * If the basic set does not contain a translate of "ineq", then
2618 * we call is_bound to perform the test.
2620 static __isl_give isl_basic_set *add_bound_from_constraint(
2621 __isl_take isl_basic_set *hull, struct sh_data *data,
2622 __isl_keep isl_set *set, isl_int *ineq)
2624 int i, k;
2625 isl_ctx *ctx;
2626 uint32_t c_hash;
2627 struct ineq_cmp_data v;
2629 if (!hull || !set)
2630 return isl_basic_set_free(hull);
2632 v.len = isl_basic_set_total_dim(hull);
2633 v.p = ineq;
2634 c_hash = isl_seq_get_hash(ineq + 1, v.len);
2636 ctx = isl_basic_set_get_ctx(hull);
2637 for (i = 0; i < set->n; ++i) {
2638 int bound;
2639 struct isl_hash_table_entry *entry;
2641 entry = isl_hash_table_find(ctx, data->p[i].table,
2642 c_hash, &has_ineq, &v, 0);
2643 if (entry) {
2644 isl_int *ineq_i = entry->data;
2645 int neg, more_relaxed;
2647 neg = isl_seq_is_neg(ineq_i + 1, ineq + 1, v.len);
2648 if (neg)
2649 isl_int_neg(ineq_i[0], ineq_i[0]);
2650 more_relaxed = isl_int_gt(ineq_i[0], ineq[0]);
2651 if (neg)
2652 isl_int_neg(ineq_i[0], ineq_i[0]);
2653 if (more_relaxed)
2654 break;
2655 else
2656 continue;
2658 bound = is_bound(data, set, i, ineq, 0);
2659 if (bound < 0)
2660 return isl_basic_set_free(hull);
2661 if (!bound)
2662 break;
2664 if (i < set->n)
2665 return hull;
2667 k = isl_basic_set_alloc_inequality(hull);
2668 if (k < 0)
2669 return isl_basic_set_free(hull);
2670 isl_seq_cpy(hull->ineq[k], ineq, 1 + v.len);
2672 return hull;
2675 /* Compute a superset of the convex hull of "set" that is described
2676 * by only some of the "n_ineq" constraints in the list "ineq", where "set"
2677 * has no parameters or integer divisions.
2679 * The inequalities in "ineq" are assumed to have been sorted such
2680 * that constraints with the same linear part appear together and
2681 * that among constraints with the same linear part, those with
2682 * smaller constant term appear first.
2684 * We reuse the same data structure that is used by uset_simple_hull,
2685 * but we do not need the hull table since we will not consider the
2686 * same constraint more than once. We therefore allocate it with zero size.
2688 * We run through the constraints and try to add them one by one,
2689 * skipping identical constraints. If we have added a constraint and
2690 * the next constraint is a more relaxed translate, then we skip this
2691 * next constraint as well.
2693 static __isl_give isl_basic_set *uset_unshifted_simple_hull_from_constraints(
2694 __isl_take isl_set *set, int n_ineq, isl_int **ineq)
2696 int i;
2697 int last_added = 0;
2698 struct sh_data *data = NULL;
2699 isl_basic_set *hull = NULL;
2700 unsigned dim;
2702 hull = isl_basic_set_alloc_space(isl_set_get_space(set), 0, 0, n_ineq);
2703 if (!hull)
2704 goto error;
2706 data = sh_data_alloc(set, 0);
2707 if (!data)
2708 goto error;
2710 dim = isl_set_dim(set, isl_dim_set);
2711 for (i = 0; i < n_ineq; ++i) {
2712 int hull_n_ineq = hull->n_ineq;
2713 int parallel;
2715 parallel = i > 0 && isl_seq_eq(ineq[i - 1] + 1, ineq[i] + 1,
2716 dim);
2717 if (parallel &&
2718 (last_added || isl_int_eq(ineq[i - 1][0], ineq[i][0])))
2719 continue;
2720 hull = add_bound_from_constraint(hull, data, set, ineq[i]);
2721 if (!hull)
2722 goto error;
2723 last_added = hull->n_ineq > hull_n_ineq;
2726 sh_data_free(data);
2727 isl_set_free(set);
2728 return hull;
2729 error:
2730 sh_data_free(data);
2731 isl_set_free(set);
2732 isl_basic_set_free(hull);
2733 return NULL;
2736 /* Collect pointers to all the inequalities in the elements of "list"
2737 * in "ineq". For equalities, store both a pointer to the equality and
2738 * a pointer to its opposite, which is first copied to "mat".
2739 * "ineq" and "mat" are assumed to have been preallocated to the right size
2740 * (the number of inequalities + 2 times the number of equalites and
2741 * the number of equalities, respectively).
2743 static __isl_give isl_mat *collect_inequalities(__isl_take isl_mat *mat,
2744 __isl_keep isl_basic_set_list *list, isl_int **ineq)
2746 int i, j, n, n_eq, n_ineq;
2748 if (!mat)
2749 return NULL;
2751 n_eq = 0;
2752 n_ineq = 0;
2753 n = isl_basic_set_list_n_basic_set(list);
2754 for (i = 0; i < n; ++i) {
2755 isl_basic_set *bset;
2756 bset = isl_basic_set_list_get_basic_set(list, i);
2757 if (!bset)
2758 return isl_mat_free(mat);
2759 for (j = 0; j < bset->n_eq; ++j) {
2760 ineq[n_ineq++] = mat->row[n_eq];
2761 ineq[n_ineq++] = bset->eq[j];
2762 isl_seq_neg(mat->row[n_eq++], bset->eq[j], mat->n_col);
2764 for (j = 0; j < bset->n_ineq; ++j)
2765 ineq[n_ineq++] = bset->ineq[j];
2766 isl_basic_set_free(bset);
2769 return mat;
2772 /* Comparison routine for use as an isl_sort callback.
2774 * Constraints with the same linear part are sorted together and
2775 * among constraints with the same linear part, those with smaller
2776 * constant term are sorted first.
2778 static int cmp_ineq(const void *a, const void *b, void *arg)
2780 unsigned dim = *(unsigned *) arg;
2781 isl_int * const *ineq1 = a;
2782 isl_int * const *ineq2 = b;
2783 int cmp;
2785 cmp = isl_seq_cmp((*ineq1) + 1, (*ineq2) + 1, dim);
2786 if (cmp != 0)
2787 return cmp;
2788 return isl_int_cmp((*ineq1)[0], (*ineq2)[0]);
2791 /* Compute a superset of the convex hull of "set" that is described
2792 * by only constraints in the elements of "list", where "set" has
2793 * no parameters or integer divisions.
2795 * We collect all the constraints in those elements and then
2796 * sort the constraints such that constraints with the same linear part
2797 * are sorted together and that those with smaller constant term are
2798 * sorted first.
2800 static __isl_give isl_basic_set *uset_unshifted_simple_hull_from_basic_set_list(
2801 __isl_take isl_set *set, __isl_take isl_basic_set_list *list)
2803 int i, n, n_eq, n_ineq;
2804 unsigned dim;
2805 isl_ctx *ctx;
2806 isl_mat *mat = NULL;
2807 isl_int **ineq = NULL;
2808 isl_basic_set *hull;
2810 if (!set)
2811 goto error;
2812 ctx = isl_set_get_ctx(set);
2814 n_eq = 0;
2815 n_ineq = 0;
2816 n = isl_basic_set_list_n_basic_set(list);
2817 for (i = 0; i < n; ++i) {
2818 isl_basic_set *bset;
2819 bset = isl_basic_set_list_get_basic_set(list, i);
2820 if (!bset)
2821 goto error;
2822 n_eq += bset->n_eq;
2823 n_ineq += 2 * bset->n_eq + bset->n_ineq;
2824 isl_basic_set_free(bset);
2827 ineq = isl_alloc_array(ctx, isl_int *, n_ineq);
2828 if (n_ineq > 0 && !ineq)
2829 goto error;
2831 dim = isl_set_dim(set, isl_dim_set);
2832 mat = isl_mat_alloc(ctx, n_eq, 1 + dim);
2833 mat = collect_inequalities(mat, list, ineq);
2834 if (!mat)
2835 goto error;
2837 if (isl_sort(ineq, n_ineq, sizeof(ineq[0]), &cmp_ineq, &dim) < 0)
2838 goto error;
2840 hull = uset_unshifted_simple_hull_from_constraints(set, n_ineq, ineq);
2842 isl_mat_free(mat);
2843 free(ineq);
2844 isl_basic_set_list_free(list);
2845 return hull;
2846 error:
2847 isl_mat_free(mat);
2848 free(ineq);
2849 isl_set_free(set);
2850 isl_basic_set_list_free(list);
2851 return NULL;
2854 /* Compute a superset of the convex hull of "map" that is described
2855 * by only constraints in the elements of "list".
2857 * If the list is empty, then we can only describe the universe set.
2858 * If the input map is empty, then all constraints are valid, so
2859 * we return the intersection of the elements in "list".
2861 * Otherwise, we align all divs and temporarily treat them
2862 * as regular variables, computing the unshifted simple hull in
2863 * uset_unshifted_simple_hull_from_basic_set_list.
2865 static __isl_give isl_basic_map *map_unshifted_simple_hull_from_basic_map_list(
2866 __isl_take isl_map *map, __isl_take isl_basic_map_list *list)
2868 isl_basic_map *model;
2869 isl_basic_map *hull;
2870 isl_set *set;
2871 isl_basic_set_list *bset_list;
2873 if (!map || !list)
2874 goto error;
2876 if (isl_basic_map_list_n_basic_map(list) == 0) {
2877 isl_space *space;
2879 space = isl_map_get_space(map);
2880 isl_map_free(map);
2881 isl_basic_map_list_free(list);
2882 return isl_basic_map_universe(space);
2884 if (isl_map_plain_is_empty(map)) {
2885 isl_map_free(map);
2886 return isl_basic_map_list_intersect(list);
2889 map = isl_map_align_divs_to_basic_map_list(map, list);
2890 if (!map)
2891 goto error;
2892 list = isl_basic_map_list_align_divs_to_basic_map(list, map->p[0]);
2894 model = isl_basic_map_list_get_basic_map(list, 0);
2896 set = isl_map_underlying_set(map);
2897 bset_list = isl_basic_map_list_underlying_set(list);
2899 hull = uset_unshifted_simple_hull_from_basic_set_list(set, bset_list);
2900 hull = isl_basic_map_overlying_set(hull, model);
2902 return hull;
2903 error:
2904 isl_map_free(map);
2905 isl_basic_map_list_free(list);
2906 return NULL;
2909 /* Return a sequence of the basic maps that make up the maps in "list".
2911 static __isl_give isl_basic_map_list *collect_basic_maps(
2912 __isl_take isl_map_list *list)
2914 int i, n;
2915 isl_ctx *ctx;
2916 isl_basic_map_list *bmap_list;
2918 if (!list)
2919 return NULL;
2920 n = isl_map_list_n_map(list);
2921 ctx = isl_map_list_get_ctx(list);
2922 bmap_list = isl_basic_map_list_alloc(ctx, 0);
2924 for (i = 0; i < n; ++i) {
2925 isl_map *map;
2926 isl_basic_map_list *list_i;
2928 map = isl_map_list_get_map(list, i);
2929 map = isl_map_compute_divs(map);
2930 list_i = isl_map_get_basic_map_list(map);
2931 isl_map_free(map);
2932 bmap_list = isl_basic_map_list_concat(bmap_list, list_i);
2935 isl_map_list_free(list);
2936 return bmap_list;
2939 /* Compute a superset of the convex hull of "map" that is described
2940 * by only constraints in the elements of "list".
2942 * If "map" is the universe, then the convex hull (and therefore
2943 * any superset of the convexhull) is the universe as well.
2945 * Otherwise, we collect all the basic maps in the map list and
2946 * continue with map_unshifted_simple_hull_from_basic_map_list.
2948 __isl_give isl_basic_map *isl_map_unshifted_simple_hull_from_map_list(
2949 __isl_take isl_map *map, __isl_take isl_map_list *list)
2951 isl_basic_map_list *bmap_list;
2952 int is_universe;
2954 is_universe = isl_map_plain_is_universe(map);
2955 if (is_universe < 0)
2956 map = isl_map_free(map);
2957 if (is_universe < 0 || is_universe) {
2958 isl_map_list_free(list);
2959 return isl_map_unshifted_simple_hull(map);
2962 bmap_list = collect_basic_maps(list);
2963 return map_unshifted_simple_hull_from_basic_map_list(map, bmap_list);
2966 /* Compute a superset of the convex hull of "set" that is described
2967 * by only constraints in the elements of "list".
2969 __isl_give isl_basic_set *isl_set_unshifted_simple_hull_from_set_list(
2970 __isl_take isl_set *set, __isl_take isl_set_list *list)
2972 return isl_map_unshifted_simple_hull_from_map_list(set, list);
2975 /* Given a set "set", return parametric bounds on the dimension "dim".
2977 static struct isl_basic_set *set_bounds(struct isl_set *set, int dim)
2979 unsigned set_dim = isl_set_dim(set, isl_dim_set);
2980 set = isl_set_copy(set);
2981 set = isl_set_eliminate_dims(set, dim + 1, set_dim - (dim + 1));
2982 set = isl_set_eliminate_dims(set, 0, dim);
2983 return isl_set_convex_hull(set);
2986 /* Computes a "simple hull" and then check if each dimension in the
2987 * resulting hull is bounded by a symbolic constant. If not, the
2988 * hull is intersected with the corresponding bounds on the whole set.
2990 struct isl_basic_set *isl_set_bounded_simple_hull(struct isl_set *set)
2992 int i, j;
2993 struct isl_basic_set *hull;
2994 unsigned nparam, left;
2995 int removed_divs = 0;
2997 hull = isl_set_simple_hull(isl_set_copy(set));
2998 if (!hull)
2999 goto error;
3001 nparam = isl_basic_set_dim(hull, isl_dim_param);
3002 for (i = 0; i < isl_basic_set_dim(hull, isl_dim_set); ++i) {
3003 int lower = 0, upper = 0;
3004 struct isl_basic_set *bounds;
3006 left = isl_basic_set_total_dim(hull) - nparam - i - 1;
3007 for (j = 0; j < hull->n_eq; ++j) {
3008 if (isl_int_is_zero(hull->eq[j][1 + nparam + i]))
3009 continue;
3010 if (isl_seq_first_non_zero(hull->eq[j]+1+nparam+i+1,
3011 left) == -1)
3012 break;
3014 if (j < hull->n_eq)
3015 continue;
3017 for (j = 0; j < hull->n_ineq; ++j) {
3018 if (isl_int_is_zero(hull->ineq[j][1 + nparam + i]))
3019 continue;
3020 if (isl_seq_first_non_zero(hull->ineq[j]+1+nparam+i+1,
3021 left) != -1 ||
3022 isl_seq_first_non_zero(hull->ineq[j]+1+nparam,
3023 i) != -1)
3024 continue;
3025 if (isl_int_is_pos(hull->ineq[j][1 + nparam + i]))
3026 lower = 1;
3027 else
3028 upper = 1;
3029 if (lower && upper)
3030 break;
3033 if (lower && upper)
3034 continue;
3036 if (!removed_divs) {
3037 set = isl_set_remove_divs(set);
3038 if (!set)
3039 goto error;
3040 removed_divs = 1;
3042 bounds = set_bounds(set, i);
3043 hull = isl_basic_set_intersect(hull, bounds);
3044 if (!hull)
3045 goto error;
3048 isl_set_free(set);
3049 return hull;
3050 error:
3051 isl_set_free(set);
3052 isl_basic_set_free(hull);
3053 return NULL;