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>
17 #include <isl_mat_private.h>
18 #include <isl_vec_private.h>
21 #include <isl_options_private.h>
22 #include "isl_equalities.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
);
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
51 __isl_give isl_basic_map
*isl_basic_map_remove_redundancies(
52 __isl_take isl_basic_map
*bmap
)
59 bmap
= isl_basic_map_gauss(bmap
, NULL
);
60 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
62 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
))
64 if (bmap
->n_ineq
<= 1)
67 bmap
= isl_basic_map_sort_constraints(bmap
);
68 tab
= isl_tab_from_basic_map(bmap
, 0);
72 if (isl_tab_detect_implicit_equalities(tab
) < 0)
74 if (isl_tab_restore_redundant(tab
) < 0)
77 if (isl_tab_detect_redundant(tab
) < 0)
79 bmap
= isl_basic_map_update_from_tab(bmap
, tab
);
83 ISL_F_SET(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
84 ISL_F_SET(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
88 isl_basic_map_free(bmap
);
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
)
124 isl_int_init(opt_denom
);
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
))
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
)
136 if (res
== isl_lp_error
)
138 if (res
== isl_lp_empty
) {
139 set
->p
[j
] = isl_basic_set_set_to_empty(set
->p
[j
]);
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
);
152 isl_int_clear(opt_denom
);
156 isl_int_clear(opt_denom
);
160 static struct isl_basic_set
*isl_basic_set_add_equality(
161 struct isl_basic_set
*bset
, isl_int
*c
)
169 if (ISL_F_ISSET(bset
, ISL_BASIC_SET_EMPTY
))
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
);
180 isl_seq_cpy(bset
->eq
[i
], c
, 1 + dim
);
183 isl_basic_set_free(bset
);
187 static __isl_give isl_set
*isl_set_add_basic_set_equality(
188 __isl_take isl_set
*set
, isl_int
*c
)
192 set
= isl_set_cow(set
);
195 for (i
= 0; i
< set
->n
; ++i
) {
196 set
->p
[i
] = isl_basic_set_add_equality(set
->p
[i
], c
);
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
214 * then the resulting set is of dimension n*(1+d) and has as constraints
223 static __isl_give isl_basic_set
*wrap_constraints(__isl_keep isl_set
*set
)
225 struct isl_basic_set
*lp
;
229 unsigned dim
, lp_dim
;
234 dim
= 1 + isl_set_n_dim(set
);
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
);
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));
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
279 * We first transform the set such that the facet constraint becomes
283 * I.e., the facet lies in
287 * and on that facet, the constraint that defines the ridge is
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
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
319 * the constraints of each (transformed) basic set.
320 * If a = n/d, then the constraint defining the new facet (in the transformed
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
)
337 struct isl_mat
*T
= NULL
;
338 struct isl_basic_set
*lp
= NULL
;
340 enum isl_lp_result res
;
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
);
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
);
363 lp
= wrap_constraints(set
);
364 obj
= isl_vec_alloc(ctx
, 1 + dim
*set
->n
);
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);
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
);
385 isl_basic_set_free(lp
);
387 if (res
== isl_lp_error
)
389 isl_assert(ctx
, res
== isl_lp_ok
|| res
== isl_lp_unbounded
,
393 isl_basic_set_free(lp
);
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
;
417 unsigned dim
= isl_set_n_dim(set
);
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
);
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
);
431 isl_assert(set
->ctx
, is_bound
, goto error
);
432 isl_seq_normalize(set
->ctx
, bounds
->row
[0], 1 + dim
);
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
);
441 if (face
->n_eq
== 1) {
442 isl_basic_set_free(face
);
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
))
450 isl_assert(set
->ctx
, i
< face
->n_eq
, goto error
);
451 if (!isl_set_wrap_facet(set
, bounds
->row
[0], face
->eq
[i
]))
453 isl_seq_normalize(set
->ctx
, bounds
->row
[0], bounds
->n_col
);
454 isl_basic_set_free(face
);
459 isl_basic_set_free(face
);
460 isl_mat_free(bounds
);
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
468 * We compute an affine transformation that transforms the constraint
477 * by computing the right inverse U of a matrix that starts with the rows
490 * Since z_1 is zero, we can drop this variable as well as the corresponding
491 * column of U to obtain
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
,
506 struct isl_mat
*m
, *U
, *Q
;
507 struct isl_basic_set
*facet
= NULL
;
512 set
= isl_set_copy(set
);
513 dim
= isl_set_n_dim(set
);
514 m
= isl_mat_alloc(set
->ctx
, 2, 1 + dim
);
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
));
532 isl_basic_set_free(facet
);
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
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
)
563 struct isl_basic_set
*facet
= NULL
;
564 struct isl_basic_set
*hull_facet
= 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
)
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
);
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
))
595 if (f
< hull_facet
->n_ineq
)
597 k
= isl_basic_set_alloc_inequality(hull
);
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
]))
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
);
611 isl_basic_set_free(hull_facet
);
612 isl_basic_set_free(facet
);
613 isl_basic_set_free(hull
);
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
;
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
]);
635 set
= isl_set_remove_empty_parts(set
);
638 isl_assert(set
->ctx
, set
->n
> 0, goto error
);
639 c
= isl_mat_alloc(set
->ctx
, 2, 2);
643 if (set
->p
[0]->n_eq
> 0) {
644 isl_assert(set
->ctx
, set
->p
[0]->n_eq
== 1, goto error
);
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);
651 isl_seq_neg(lower
, set
->p
[0]->eq
[0], 2);
652 isl_seq_cpy(upper
, set
->p
[0]->eq
[0], 2);
655 for (j
= 0; j
< set
->p
[0]->n_ineq
; ++j
) {
656 if (isl_int_is_pos(set
->p
[0]->ineq
[j
][1])) {
658 isl_seq_cpy(lower
, set
->p
[0]->ineq
[j
], 2);
661 isl_seq_cpy(upper
, set
->p
[0]->ineq
[j
], 2);
668 for (i
= 0; i
< set
->n
; ++i
) {
669 struct isl_basic_set
*bset
= set
->p
[i
];
673 for (j
= 0; j
< bset
->n_eq
; ++j
) {
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);
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]))
696 if (isl_int_is_neg(bset
->ineq
[j
][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);
719 hull
= isl_basic_set_alloc(set
->ctx
, 0, 1, 0, 0, 2);
720 hull
= isl_basic_set_set_rational(hull
);
724 k
= isl_basic_set_alloc_inequality(hull
);
725 isl_seq_cpy(hull
->ineq
[k
], lower
, 2);
728 k
= isl_basic_set_alloc_inequality(hull
);
729 isl_seq_cpy(hull
->ineq
[k
], upper
, 2);
731 hull
= isl_basic_set_finalize(hull
);
741 static __isl_give isl_basic_set
*convex_hull_0d(__isl_take isl_set
*set
)
743 struct isl_basic_set
*convex_hull
;
748 if (isl_set_is_empty(set
))
749 convex_hull
= isl_basic_set_empty(isl_space_copy(set
->dim
));
751 convex_hull
= isl_basic_set_universe(isl_space_copy(set
->dim
));
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
)
769 struct isl_basic_set
*bset
[2];
770 struct isl_basic_set
*hull
= NULL
;
773 if (!bset1
|| !bset2
)
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
);
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
);
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
],
792 for (j
= 0; j
< bset
[i
]->n_ineq
; ++j
) {
793 k
= isl_basic_set_alloc_inequality(hull
);
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
);
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
);
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
);
823 isl_basic_set_free(bset1
);
824 isl_basic_set_free(bset2
);
825 isl_basic_set_free(hull
);
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
)
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
);
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
);
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
);
866 /* Is the set bounded for each value of the parameters?
868 isl_bool
isl_set_is_bounded(__isl_keep isl_set
*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)
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
)
893 struct isl_basic_set
*lin
= NULL
;
896 if (!bset1
|| !bset2
)
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
);
906 for (i
= 0; i
< bset1
->n_eq
; ++i
) {
907 k
= isl_basic_set_alloc_equality(lin
);
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
);
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
);
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
);
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
);
939 isl_basic_set_free(lin
);
940 isl_basic_set_free(bset1
);
941 isl_basic_set_free(bset2
);
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.
955 * describe the linear space. We first compute the Hermite normal
956 * form H = M U of M = H Q, to obtain
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
);
972 struct isl_basic_set
*hull
;
973 struct isl_mat
*M
, *U
, *Q
;
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
);
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
);
997 isl_basic_set_free(lin
);
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
)
1015 struct isl_basic_set
*lp
;
1020 if (!bset1
|| !bset2
)
1022 d
= 1 + isl_basic_set_total_dim(bset1
);
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
);
1029 for (i
= 0; i
< n
; ++i
) {
1030 k
= isl_basic_set_alloc_inequality(lp
);
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
);
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
);
1067 isl_basic_set_free(bset1
);
1068 isl_basic_set_free(bset2
);
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
;
1103 if (!bset1
|| !bset2
)
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
);
1110 isl_basic_set_free(lp
);
1113 d
= isl_basic_set_total_dim(bset1
);
1114 dir
= isl_vec_alloc(bset1
->ctx
, 1 + d
);
1117 isl_seq_clr(dir
->block
.data
+ 1, dir
->size
- 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
);
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
);
1140 isl_vec_free(sample
);
1141 isl_basic_set_free(bset1
);
1142 isl_basic_set_free(bset2
);
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
1155 static __isl_give isl_basic_set
*homogeneous_map(__isl_take isl_basic_set
*bset
,
1156 __isl_take isl_mat
*T
)
1162 bset
= isl_basic_set_extend_constraints(bset
, 0, 1);
1163 k
= isl_basic_set_alloc_inequality(bset
);
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
);
1172 isl_basic_set_free(bset
);
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
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
)
1247 ctx
= isl_basic_set_get_ctx(bset1
);
1248 dir
= valid_direction(isl_basic_set_copy(bset1
),
1249 isl_basic_set_copy(bset2
));
1252 T
= isl_mat_alloc(ctx
, dir
->size
, dir
->size
);
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
);
1272 isl_basic_set_free(bset1
);
1273 isl_basic_set_free(bset2
);
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
)));
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)
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
));
1327 if (isl_basic_set_plain_is_universe(lin
)) {
1328 isl_basic_set_free(bset1
);
1329 isl_basic_set_free(bset2
);
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
);
1343 isl_basic_set_free(bset1
);
1344 isl_basic_set_free(bset2
);
1348 /* Compute the lineality space of a basic set.
1349 * We basically just drop the constants and turn every inequality
1351 * Any explicit representations of local variables are removed
1352 * because they may no longer be valid representations
1353 * in the lineality space.
1355 __isl_give isl_basic_set
*isl_basic_set_lineality_space(
1356 __isl_take isl_basic_set
*bset
)
1359 struct isl_basic_set
*lin
= NULL
;
1360 unsigned n_div
, dim
;
1364 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
1365 dim
= isl_basic_set_total_dim(bset
);
1367 lin
= isl_basic_set_alloc_space(isl_basic_set_get_space(bset
),
1369 for (i
= 0; i
< n_div
; ++i
)
1370 if (isl_basic_set_alloc_div(lin
) < 0)
1374 for (i
= 0; i
< bset
->n_eq
; ++i
) {
1375 k
= isl_basic_set_alloc_equality(lin
);
1378 isl_int_set_si(lin
->eq
[k
][0], 0);
1379 isl_seq_cpy(lin
->eq
[k
] + 1, bset
->eq
[i
] + 1, dim
);
1381 lin
= isl_basic_set_gauss(lin
, NULL
);
1384 for (i
= 0; i
< bset
->n_ineq
&& lin
->n_eq
< dim
; ++i
) {
1385 k
= isl_basic_set_alloc_equality(lin
);
1388 isl_int_set_si(lin
->eq
[k
][0], 0);
1389 isl_seq_cpy(lin
->eq
[k
] + 1, bset
->ineq
[i
] + 1, dim
);
1390 lin
= isl_basic_set_gauss(lin
, NULL
);
1394 isl_basic_set_free(bset
);
1397 isl_basic_set_free(lin
);
1398 isl_basic_set_free(bset
);
1402 /* Compute the (linear) hull of the lineality spaces of the basic sets in the
1405 __isl_give isl_basic_set
*isl_set_combined_lineality_space(
1406 __isl_take isl_set
*set
)
1409 struct isl_set
*lin
= NULL
;
1414 isl_space
*space
= isl_set_get_space(set
);
1416 return isl_basic_set_empty(space
);
1419 lin
= isl_set_alloc_space(isl_set_get_space(set
), set
->n
, 0);
1420 for (i
= 0; i
< set
->n
; ++i
)
1421 lin
= isl_set_add_basic_set(lin
,
1422 isl_basic_set_lineality_space(isl_basic_set_copy(set
->p
[i
])));
1424 return isl_set_affine_hull(lin
);
1427 /* Compute the convex hull of a set without any parameters or
1428 * integer divisions.
1429 * In each step, we combined two basic sets until only one
1430 * basic set is left.
1431 * The input basic sets are assumed not to have a non-trivial
1432 * lineality space. If any of the intermediate results has
1433 * a non-trivial lineality space, it is projected out.
1435 static __isl_give isl_basic_set
*uset_convex_hull_unbounded(
1436 __isl_take isl_set
*set
)
1438 isl_basic_set_list
*list
;
1440 list
= isl_set_get_basic_set_list(set
);
1445 struct isl_basic_set
*t
;
1446 isl_basic_set
*bset1
, *bset2
;
1448 n
= isl_basic_set_list_n_basic_set(list
);
1450 isl_die(isl_basic_set_list_get_ctx(list
),
1452 "expecting at least two elements", goto error
);
1453 bset1
= isl_basic_set_list_get_basic_set(list
, n
- 1);
1454 bset2
= isl_basic_set_list_get_basic_set(list
, n
- 2);
1455 bset1
= convex_hull_pair(bset1
, bset2
);
1457 isl_basic_set_list_free(list
);
1460 bset1
= isl_basic_set_underlying_set(bset1
);
1461 list
= isl_basic_set_list_drop(list
, n
- 2, 2);
1462 list
= isl_basic_set_list_add(list
, bset1
);
1464 t
= isl_basic_set_list_get_basic_set(list
, n
- 2);
1465 t
= isl_basic_set_lineality_space(t
);
1468 if (isl_basic_set_plain_is_universe(t
)) {
1469 isl_basic_set_list_free(list
);
1472 if (t
->n_eq
< isl_basic_set_total_dim(t
)) {
1473 set
= isl_basic_set_list_union(list
);
1474 return modulo_lineality(set
, t
);
1476 isl_basic_set_free(t
);
1481 isl_basic_set_list_free(list
);
1485 /* Compute an initial hull for wrapping containing a single initial
1487 * This function assumes that the given set is bounded.
1489 static __isl_give isl_basic_set
*initial_hull(__isl_take isl_basic_set
*hull
,
1490 __isl_keep isl_set
*set
)
1492 struct isl_mat
*bounds
= NULL
;
1498 bounds
= initial_facet_constraint(set
);
1501 k
= isl_basic_set_alloc_inequality(hull
);
1504 dim
= isl_set_n_dim(set
);
1505 isl_assert(set
->ctx
, 1 + dim
== bounds
->n_col
, goto error
);
1506 isl_seq_cpy(hull
->ineq
[k
], bounds
->row
[0], bounds
->n_col
);
1507 isl_mat_free(bounds
);
1511 isl_basic_set_free(hull
);
1512 isl_mat_free(bounds
);
1516 struct max_constraint
{
1522 static int max_constraint_equal(const void *entry
, const void *val
)
1524 struct max_constraint
*a
= (struct max_constraint
*)entry
;
1525 isl_int
*b
= (isl_int
*)val
;
1527 return isl_seq_eq(a
->c
->row
[0] + 1, b
, a
->c
->n_col
- 1);
1530 static void update_constraint(struct isl_ctx
*ctx
, struct isl_hash_table
*table
,
1531 isl_int
*con
, unsigned len
, int n
, int ineq
)
1533 struct isl_hash_table_entry
*entry
;
1534 struct max_constraint
*c
;
1537 c_hash
= isl_seq_get_hash(con
+ 1, len
);
1538 entry
= isl_hash_table_find(ctx
, table
, c_hash
, max_constraint_equal
,
1544 isl_hash_table_remove(ctx
, table
, entry
);
1548 if (isl_int_gt(c
->c
->row
[0][0], con
[0]))
1550 if (isl_int_eq(c
->c
->row
[0][0], con
[0])) {
1555 c
->c
= isl_mat_cow(c
->c
);
1556 isl_int_set(c
->c
->row
[0][0], con
[0]);
1560 /* Check whether the constraint hash table "table" contains the constraint
1563 static int has_constraint(struct isl_ctx
*ctx
, struct isl_hash_table
*table
,
1564 isl_int
*con
, unsigned len
, int n
)
1566 struct isl_hash_table_entry
*entry
;
1567 struct max_constraint
*c
;
1570 c_hash
= isl_seq_get_hash(con
+ 1, len
);
1571 entry
= isl_hash_table_find(ctx
, table
, c_hash
, max_constraint_equal
,
1578 return isl_int_eq(c
->c
->row
[0][0], con
[0]);
1581 /* Check for inequality constraints of a basic set without equalities
1582 * such that the same or more stringent copies of the constraint appear
1583 * in all of the basic sets. Such constraints are necessarily facet
1584 * constraints of the convex hull.
1586 * If the resulting basic set is by chance identical to one of
1587 * the basic sets in "set", then we know that this basic set contains
1588 * all other basic sets and is therefore the convex hull of set.
1589 * In this case we set *is_hull to 1.
1591 static __isl_give isl_basic_set
*common_constraints(
1592 __isl_take isl_basic_set
*hull
, __isl_keep isl_set
*set
, int *is_hull
)
1595 int min_constraints
;
1597 struct max_constraint
*constraints
= NULL
;
1598 struct isl_hash_table
*table
= NULL
;
1603 for (i
= 0; i
< set
->n
; ++i
)
1604 if (set
->p
[i
]->n_eq
== 0)
1608 min_constraints
= set
->p
[i
]->n_ineq
;
1610 for (i
= best
+ 1; i
< set
->n
; ++i
) {
1611 if (set
->p
[i
]->n_eq
!= 0)
1613 if (set
->p
[i
]->n_ineq
>= min_constraints
)
1615 min_constraints
= set
->p
[i
]->n_ineq
;
1618 constraints
= isl_calloc_array(hull
->ctx
, struct max_constraint
,
1622 table
= isl_alloc_type(hull
->ctx
, struct isl_hash_table
);
1623 if (isl_hash_table_init(hull
->ctx
, table
, min_constraints
))
1626 total
= isl_space_dim(set
->dim
, isl_dim_all
);
1627 for (i
= 0; i
< set
->p
[best
]->n_ineq
; ++i
) {
1628 constraints
[i
].c
= isl_mat_sub_alloc6(hull
->ctx
,
1629 set
->p
[best
]->ineq
+ i
, 0, 1, 0, 1 + total
);
1630 if (!constraints
[i
].c
)
1632 constraints
[i
].ineq
= 1;
1634 for (i
= 0; i
< min_constraints
; ++i
) {
1635 struct isl_hash_table_entry
*entry
;
1637 c_hash
= isl_seq_get_hash(constraints
[i
].c
->row
[0] + 1, total
);
1638 entry
= isl_hash_table_find(hull
->ctx
, table
, c_hash
,
1639 max_constraint_equal
, constraints
[i
].c
->row
[0] + 1, 1);
1642 isl_assert(hull
->ctx
, !entry
->data
, goto error
);
1643 entry
->data
= &constraints
[i
];
1647 for (s
= 0; s
< set
->n
; ++s
) {
1651 for (i
= 0; i
< set
->p
[s
]->n_eq
; ++i
) {
1652 isl_int
*eq
= set
->p
[s
]->eq
[i
];
1653 for (j
= 0; j
< 2; ++j
) {
1654 isl_seq_neg(eq
, eq
, 1 + total
);
1655 update_constraint(hull
->ctx
, table
,
1659 for (i
= 0; i
< set
->p
[s
]->n_ineq
; ++i
) {
1660 isl_int
*ineq
= set
->p
[s
]->ineq
[i
];
1661 update_constraint(hull
->ctx
, table
, ineq
, total
, n
,
1662 set
->p
[s
]->n_eq
== 0);
1667 for (i
= 0; i
< min_constraints
; ++i
) {
1668 if (constraints
[i
].count
< n
)
1670 if (!constraints
[i
].ineq
)
1672 j
= isl_basic_set_alloc_inequality(hull
);
1675 isl_seq_cpy(hull
->ineq
[j
], constraints
[i
].c
->row
[0], 1 + total
);
1678 for (s
= 0; s
< set
->n
; ++s
) {
1679 if (set
->p
[s
]->n_eq
)
1681 if (set
->p
[s
]->n_ineq
!= hull
->n_ineq
)
1683 for (i
= 0; i
< set
->p
[s
]->n_ineq
; ++i
) {
1684 isl_int
*ineq
= set
->p
[s
]->ineq
[i
];
1685 if (!has_constraint(hull
->ctx
, table
, ineq
, total
, n
))
1688 if (i
== set
->p
[s
]->n_ineq
)
1692 isl_hash_table_clear(table
);
1693 for (i
= 0; i
< min_constraints
; ++i
)
1694 isl_mat_free(constraints
[i
].c
);
1699 isl_hash_table_clear(table
);
1702 for (i
= 0; i
< min_constraints
; ++i
)
1703 isl_mat_free(constraints
[i
].c
);
1708 /* Create a template for the convex hull of "set" and fill it up
1709 * obvious facet constraints, if any. If the result happens to
1710 * be the convex hull of "set" then *is_hull is set to 1.
1712 static __isl_give isl_basic_set
*proto_hull(__isl_keep isl_set
*set
,
1715 struct isl_basic_set
*hull
;
1720 for (i
= 0; i
< set
->n
; ++i
) {
1721 n_ineq
+= set
->p
[i
]->n_eq
;
1722 n_ineq
+= set
->p
[i
]->n_ineq
;
1724 hull
= isl_basic_set_alloc_space(isl_space_copy(set
->dim
), 0, 0, n_ineq
);
1725 hull
= isl_basic_set_set_rational(hull
);
1728 return common_constraints(hull
, set
, is_hull
);
1731 static __isl_give isl_basic_set
*uset_convex_hull_wrap(__isl_take isl_set
*set
)
1733 struct isl_basic_set
*hull
;
1736 hull
= proto_hull(set
, &is_hull
);
1737 if (hull
&& !is_hull
) {
1738 if (hull
->n_ineq
== 0)
1739 hull
= initial_hull(hull
, set
);
1740 hull
= extend(hull
, set
);
1747 /* Compute the convex hull of a set without any parameters or
1748 * integer divisions. Depending on whether the set is bounded,
1749 * we pass control to the wrapping based convex hull or
1750 * the Fourier-Motzkin elimination based convex hull.
1751 * We also handle a few special cases before checking the boundedness.
1753 static __isl_give isl_basic_set
*uset_convex_hull(__isl_take isl_set
*set
)
1756 struct isl_basic_set
*convex_hull
= NULL
;
1757 struct isl_basic_set
*lin
;
1759 if (isl_set_n_dim(set
) == 0)
1760 return convex_hull_0d(set
);
1762 set
= isl_set_coalesce(set
);
1763 set
= isl_set_set_rational(set
);
1768 convex_hull
= isl_basic_set_copy(set
->p
[0]);
1772 if (isl_set_n_dim(set
) == 1)
1773 return convex_hull_1d(set
);
1775 bounded
= isl_set_is_bounded(set
);
1778 if (bounded
&& set
->ctx
->opt
->convex
== ISL_CONVEX_HULL_WRAP
)
1779 return uset_convex_hull_wrap(set
);
1781 lin
= isl_set_combined_lineality_space(isl_set_copy(set
));
1784 if (isl_basic_set_plain_is_universe(lin
)) {
1788 if (lin
->n_eq
< isl_basic_set_total_dim(lin
))
1789 return modulo_lineality(set
, lin
);
1790 isl_basic_set_free(lin
);
1792 return uset_convex_hull_unbounded(set
);
1795 isl_basic_set_free(convex_hull
);
1799 /* This is the core procedure, where "set" is a "pure" set, i.e.,
1800 * without parameters or divs and where the convex hull of set is
1801 * known to be full-dimensional.
1803 static __isl_give isl_basic_set
*uset_convex_hull_wrap_bounded(
1804 __isl_take isl_set
*set
)
1806 struct isl_basic_set
*convex_hull
= NULL
;
1811 if (isl_set_n_dim(set
) == 0) {
1812 convex_hull
= isl_basic_set_universe(isl_space_copy(set
->dim
));
1814 convex_hull
= isl_basic_set_set_rational(convex_hull
);
1818 set
= isl_set_set_rational(set
);
1819 set
= isl_set_coalesce(set
);
1823 convex_hull
= isl_basic_set_copy(set
->p
[0]);
1825 convex_hull
= isl_basic_map_remove_redundancies(convex_hull
);
1828 if (isl_set_n_dim(set
) == 1)
1829 return convex_hull_1d(set
);
1831 return uset_convex_hull_wrap(set
);
1837 /* Compute the convex hull of set "set" with affine hull "affine_hull",
1838 * We first remove the equalities (transforming the set), compute the
1839 * convex hull of the transformed set and then add the equalities back
1840 * (after performing the inverse transformation.
1842 static __isl_give isl_basic_set
*modulo_affine_hull(
1843 __isl_take isl_set
*set
, __isl_take isl_basic_set
*affine_hull
)
1847 struct isl_basic_set
*dummy
;
1848 struct isl_basic_set
*convex_hull
;
1850 dummy
= isl_basic_set_remove_equalities(
1851 isl_basic_set_copy(affine_hull
), &T
, &T2
);
1854 isl_basic_set_free(dummy
);
1855 set
= isl_set_preimage(set
, T
);
1856 convex_hull
= uset_convex_hull(set
);
1857 convex_hull
= isl_basic_set_preimage(convex_hull
, T2
);
1858 convex_hull
= isl_basic_set_intersect(convex_hull
, affine_hull
);
1863 isl_basic_set_free(affine_hull
);
1868 /* Return an empty basic map living in the same space as "map".
1870 static __isl_give isl_basic_map
*replace_map_by_empty_basic_map(
1871 __isl_take isl_map
*map
)
1875 space
= isl_map_get_space(map
);
1877 return isl_basic_map_empty(space
);
1880 /* Compute the convex hull of a map.
1882 * The implementation was inspired by "Extended Convex Hull" by Fukuda et al.,
1883 * specifically, the wrapping of facets to obtain new facets.
1885 __isl_give isl_basic_map
*isl_map_convex_hull(__isl_take isl_map
*map
)
1887 struct isl_basic_set
*bset
;
1888 struct isl_basic_map
*model
= NULL
;
1889 struct isl_basic_set
*affine_hull
= NULL
;
1890 struct isl_basic_map
*convex_hull
= NULL
;
1891 struct isl_set
*set
= NULL
;
1893 map
= isl_map_detect_equalities(map
);
1894 map
= isl_map_align_divs_internal(map
);
1899 return replace_map_by_empty_basic_map(map
);
1901 model
= isl_basic_map_copy(map
->p
[0]);
1902 set
= isl_map_underlying_set(map
);
1906 affine_hull
= isl_set_affine_hull(isl_set_copy(set
));
1909 if (affine_hull
->n_eq
!= 0)
1910 bset
= modulo_affine_hull(set
, affine_hull
);
1912 isl_basic_set_free(affine_hull
);
1913 bset
= uset_convex_hull(set
);
1916 convex_hull
= isl_basic_map_overlying_set(bset
, model
);
1920 ISL_F_SET(convex_hull
, ISL_BASIC_MAP_NO_IMPLICIT
);
1921 ISL_F_SET(convex_hull
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1922 ISL_F_CLR(convex_hull
, ISL_BASIC_MAP_RATIONAL
);
1926 isl_basic_map_free(model
);
1930 struct isl_basic_set
*isl_set_convex_hull(struct isl_set
*set
)
1932 return bset_from_bmap(isl_map_convex_hull(set_to_map(set
)));
1935 __isl_give isl_basic_map
*isl_map_polyhedral_hull(__isl_take isl_map
*map
)
1937 isl_basic_map
*hull
;
1939 hull
= isl_map_convex_hull(map
);
1940 return isl_basic_map_remove_divs(hull
);
1943 __isl_give isl_basic_set
*isl_set_polyhedral_hull(__isl_take isl_set
*set
)
1945 return bset_from_bmap(isl_map_polyhedral_hull(set_to_map(set
)));
1948 struct sh_data_entry
{
1949 struct isl_hash_table
*table
;
1950 struct isl_tab
*tab
;
1953 /* Holds the data needed during the simple hull computation.
1955 * n the number of basic sets in the original set
1956 * hull_table a hash table of already computed constraints
1957 * in the simple hull
1958 * p for each basic set,
1959 * table a hash table of the constraints
1960 * tab the tableau corresponding to the basic set
1963 struct isl_ctx
*ctx
;
1965 struct isl_hash_table
*hull_table
;
1966 struct sh_data_entry p
[1];
1969 static void sh_data_free(struct sh_data
*data
)
1975 isl_hash_table_free(data
->ctx
, data
->hull_table
);
1976 for (i
= 0; i
< data
->n
; ++i
) {
1977 isl_hash_table_free(data
->ctx
, data
->p
[i
].table
);
1978 isl_tab_free(data
->p
[i
].tab
);
1983 struct ineq_cmp_data
{
1988 static int has_ineq(const void *entry
, const void *val
)
1990 isl_int
*row
= (isl_int
*)entry
;
1991 struct ineq_cmp_data
*v
= (struct ineq_cmp_data
*)val
;
1993 return isl_seq_eq(row
+ 1, v
->p
+ 1, v
->len
) ||
1994 isl_seq_is_neg(row
+ 1, v
->p
+ 1, v
->len
);
1997 static int hash_ineq(struct isl_ctx
*ctx
, struct isl_hash_table
*table
,
1998 isl_int
*ineq
, unsigned len
)
2001 struct ineq_cmp_data v
;
2002 struct isl_hash_table_entry
*entry
;
2006 c_hash
= isl_seq_get_hash(ineq
+ 1, len
);
2007 entry
= isl_hash_table_find(ctx
, table
, c_hash
, has_ineq
, &v
, 1);
2014 /* Fill hash table "table" with the constraints of "bset".
2015 * Equalities are added as two inequalities.
2016 * The value in the hash table is a pointer to the (in)equality of "bset".
2018 static int hash_basic_set(struct isl_hash_table
*table
,
2019 __isl_keep isl_basic_set
*bset
)
2022 unsigned dim
= isl_basic_set_total_dim(bset
);
2024 for (i
= 0; i
< bset
->n_eq
; ++i
) {
2025 for (j
= 0; j
< 2; ++j
) {
2026 isl_seq_neg(bset
->eq
[i
], bset
->eq
[i
], 1 + dim
);
2027 if (hash_ineq(bset
->ctx
, table
, bset
->eq
[i
], dim
) < 0)
2031 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
2032 if (hash_ineq(bset
->ctx
, table
, bset
->ineq
[i
], dim
) < 0)
2038 static struct sh_data
*sh_data_alloc(__isl_keep isl_set
*set
, unsigned n_ineq
)
2040 struct sh_data
*data
;
2043 data
= isl_calloc(set
->ctx
, struct sh_data
,
2044 sizeof(struct sh_data
) +
2045 (set
->n
- 1) * sizeof(struct sh_data_entry
));
2048 data
->ctx
= set
->ctx
;
2050 data
->hull_table
= isl_hash_table_alloc(set
->ctx
, n_ineq
);
2051 if (!data
->hull_table
)
2053 for (i
= 0; i
< set
->n
; ++i
) {
2054 data
->p
[i
].table
= isl_hash_table_alloc(set
->ctx
,
2055 2 * set
->p
[i
]->n_eq
+ set
->p
[i
]->n_ineq
);
2056 if (!data
->p
[i
].table
)
2058 if (hash_basic_set(data
->p
[i
].table
, set
->p
[i
]) < 0)
2067 /* Check if inequality "ineq" is a bound for basic set "j" or if
2068 * it can be relaxed (by increasing the constant term) to become
2069 * a bound for that basic set. In the latter case, the constant
2071 * Relaxation of the constant term is only allowed if "shift" is set.
2073 * Return 1 if "ineq" is a bound
2074 * 0 if "ineq" may attain arbitrarily small values on basic set "j"
2075 * -1 if some error occurred
2077 static int is_bound(struct sh_data
*data
, __isl_keep isl_set
*set
, int j
,
2078 isl_int
*ineq
, int shift
)
2080 enum isl_lp_result res
;
2083 if (!data
->p
[j
].tab
) {
2084 data
->p
[j
].tab
= isl_tab_from_basic_set(set
->p
[j
], 0);
2085 if (!data
->p
[j
].tab
)
2091 res
= isl_tab_min(data
->p
[j
].tab
, ineq
, data
->ctx
->one
,
2093 if (res
== isl_lp_ok
&& isl_int_is_neg(opt
)) {
2095 isl_int_sub(ineq
[0], ineq
[0], opt
);
2097 res
= isl_lp_unbounded
;
2102 return (res
== isl_lp_ok
|| res
== isl_lp_empty
) ? 1 :
2103 res
== isl_lp_unbounded
? 0 : -1;
2106 /* Set the constant term of "ineq" to the maximum of those of the constraints
2107 * in the basic sets of "set" following "i" that are parallel to "ineq".
2108 * That is, if any of the basic sets of "set" following "i" have a more
2109 * relaxed copy of "ineq", then replace "ineq" by the most relaxed copy.
2110 * "c_hash" is the hash value of the linear part of "ineq".
2111 * "v" has been set up for use by has_ineq.
2113 * Note that the two inequality constraints corresponding to an equality are
2114 * represented by the same inequality constraint in data->p[j].table
2115 * (but with different hash values). This means the constraint (or at
2116 * least its constant term) may need to be temporarily negated to get
2117 * the actually hashed constraint.
2119 static void set_max_constant_term(struct sh_data
*data
, __isl_keep isl_set
*set
,
2120 int i
, isl_int
*ineq
, uint32_t c_hash
, struct ineq_cmp_data
*v
)
2124 struct isl_hash_table_entry
*entry
;
2126 ctx
= isl_set_get_ctx(set
);
2127 for (j
= i
+ 1; j
< set
->n
; ++j
) {
2131 entry
= isl_hash_table_find(ctx
, data
->p
[j
].table
,
2132 c_hash
, &has_ineq
, v
, 0);
2136 ineq_j
= entry
->data
;
2137 neg
= isl_seq_is_neg(ineq_j
+ 1, ineq
+ 1, v
->len
);
2139 isl_int_neg(ineq_j
[0], ineq_j
[0]);
2140 if (isl_int_gt(ineq_j
[0], ineq
[0]))
2141 isl_int_set(ineq
[0], ineq_j
[0]);
2143 isl_int_neg(ineq_j
[0], ineq_j
[0]);
2147 /* Check if inequality "ineq" from basic set "i" is or can be relaxed to
2148 * become a bound on the whole set. If so, add the (relaxed) inequality
2149 * to "hull". Relaxation is only allowed if "shift" is set.
2151 * We first check if "hull" already contains a translate of the inequality.
2152 * If so, we are done.
2153 * Then, we check if any of the previous basic sets contains a translate
2154 * of the inequality. If so, then we have already considered this
2155 * inequality and we are done.
2156 * Otherwise, for each basic set other than "i", we check if the inequality
2157 * is a bound on the basic set, but first replace the constant term
2158 * by the maximal value of any translate of the inequality in any
2159 * of the following basic sets.
2160 * For previous basic sets, we know that they do not contain a translate
2161 * of the inequality, so we directly call is_bound.
2162 * For following basic sets, we first check if a translate of the
2163 * inequality appears in its description. If so, the constant term
2164 * of the inequality has already been updated with respect to this
2165 * translate and the inequality is therefore known to be a bound
2166 * of this basic set.
2168 static __isl_give isl_basic_set
*add_bound(__isl_take isl_basic_set
*hull
,
2169 struct sh_data
*data
, __isl_keep isl_set
*set
, int i
, isl_int
*ineq
,
2173 struct ineq_cmp_data v
;
2174 struct isl_hash_table_entry
*entry
;
2180 v
.len
= isl_basic_set_total_dim(hull
);
2182 c_hash
= isl_seq_get_hash(ineq
+ 1, v
.len
);
2184 entry
= isl_hash_table_find(hull
->ctx
, data
->hull_table
, c_hash
,
2189 for (j
= 0; j
< i
; ++j
) {
2190 entry
= isl_hash_table_find(hull
->ctx
, data
->p
[j
].table
,
2191 c_hash
, has_ineq
, &v
, 0);
2198 k
= isl_basic_set_alloc_inequality(hull
);
2201 isl_seq_cpy(hull
->ineq
[k
], ineq
, 1 + v
.len
);
2203 set_max_constant_term(data
, set
, i
, hull
->ineq
[k
], c_hash
, &v
);
2204 for (j
= 0; j
< i
; ++j
) {
2206 bound
= is_bound(data
, set
, j
, hull
->ineq
[k
], shift
);
2213 isl_basic_set_free_inequality(hull
, 1);
2217 for (j
= i
+ 1; j
< set
->n
; ++j
) {
2219 entry
= isl_hash_table_find(hull
->ctx
, data
->p
[j
].table
,
2220 c_hash
, has_ineq
, &v
, 0);
2223 bound
= is_bound(data
, set
, j
, hull
->ineq
[k
], shift
);
2230 isl_basic_set_free_inequality(hull
, 1);
2234 entry
= isl_hash_table_find(hull
->ctx
, data
->hull_table
, c_hash
,
2238 entry
->data
= hull
->ineq
[k
];
2242 isl_basic_set_free(hull
);
2246 /* Check if any inequality from basic set "i" is or can be relaxed to
2247 * become a bound on the whole set. If so, add the (relaxed) inequality
2248 * to "hull". Relaxation is only allowed if "shift" is set.
2250 static __isl_give isl_basic_set
*add_bounds(__isl_take isl_basic_set
*bset
,
2251 struct sh_data
*data
, __isl_keep isl_set
*set
, int i
, int shift
)
2254 unsigned dim
= isl_basic_set_total_dim(bset
);
2256 for (j
= 0; j
< set
->p
[i
]->n_eq
; ++j
) {
2257 for (k
= 0; k
< 2; ++k
) {
2258 isl_seq_neg(set
->p
[i
]->eq
[j
], set
->p
[i
]->eq
[j
], 1+dim
);
2259 bset
= add_bound(bset
, data
, set
, i
, set
->p
[i
]->eq
[j
],
2263 for (j
= 0; j
< set
->p
[i
]->n_ineq
; ++j
)
2264 bset
= add_bound(bset
, data
, set
, i
, set
->p
[i
]->ineq
[j
], shift
);
2268 /* Compute a superset of the convex hull of set that is described
2269 * by only (translates of) the constraints in the constituents of set.
2270 * Translation is only allowed if "shift" is set.
2272 static __isl_give isl_basic_set
*uset_simple_hull(__isl_take isl_set
*set
,
2275 struct sh_data
*data
= NULL
;
2276 struct isl_basic_set
*hull
= NULL
;
2284 for (i
= 0; i
< set
->n
; ++i
) {
2287 n_ineq
+= 2 * set
->p
[i
]->n_eq
+ set
->p
[i
]->n_ineq
;
2290 hull
= isl_basic_set_alloc_space(isl_space_copy(set
->dim
), 0, 0, n_ineq
);
2294 data
= sh_data_alloc(set
, n_ineq
);
2298 for (i
= 0; i
< set
->n
; ++i
)
2299 hull
= add_bounds(hull
, data
, set
, i
, shift
);
2307 isl_basic_set_free(hull
);
2312 /* Compute a superset of the convex hull of map that is described
2313 * by only (translates of) the constraints in the constituents of map.
2314 * Handle trivial cases where map is NULL or contains at most one disjunct.
2316 static __isl_give isl_basic_map
*map_simple_hull_trivial(
2317 __isl_take isl_map
*map
)
2319 isl_basic_map
*hull
;
2324 return replace_map_by_empty_basic_map(map
);
2326 hull
= isl_basic_map_copy(map
->p
[0]);
2331 /* Return a copy of the simple hull cached inside "map".
2332 * "shift" determines whether to return the cached unshifted or shifted
2335 static __isl_give isl_basic_map
*cached_simple_hull(__isl_take isl_map
*map
,
2338 isl_basic_map
*hull
;
2340 hull
= isl_basic_map_copy(map
->cached_simple_hull
[shift
]);
2346 /* Compute a superset of the convex hull of map that is described
2347 * by only (translates of) the constraints in the constituents of map.
2348 * Translation is only allowed if "shift" is set.
2350 * The constraints are sorted while removing redundant constraints
2351 * in order to indicate a preference of which constraints should
2352 * be preserved. In particular, pairs of constraints that are
2353 * sorted together are preferred to either both be preserved
2354 * or both be removed. The sorting is performed inside
2355 * isl_basic_map_remove_redundancies.
2357 * The result of the computation is stored in map->cached_simple_hull[shift]
2358 * such that it can be reused in subsequent calls. The cache is cleared
2359 * whenever the map is modified (in isl_map_cow).
2360 * Note that the results need to be stored in the input map for there
2361 * to be any chance that they may get reused. In particular, they
2362 * are stored in a copy of the input map that is saved before
2363 * the integer division alignment.
2365 static __isl_give isl_basic_map
*map_simple_hull(__isl_take isl_map
*map
,
2368 struct isl_set
*set
= NULL
;
2369 struct isl_basic_map
*model
= NULL
;
2370 struct isl_basic_map
*hull
;
2371 struct isl_basic_map
*affine_hull
;
2372 struct isl_basic_set
*bset
= NULL
;
2375 if (!map
|| map
->n
<= 1)
2376 return map_simple_hull_trivial(map
);
2378 if (map
->cached_simple_hull
[shift
])
2379 return cached_simple_hull(map
, shift
);
2381 map
= isl_map_detect_equalities(map
);
2382 if (!map
|| map
->n
<= 1)
2383 return map_simple_hull_trivial(map
);
2384 affine_hull
= isl_map_affine_hull(isl_map_copy(map
));
2385 input
= isl_map_copy(map
);
2386 map
= isl_map_align_divs_internal(map
);
2387 model
= map
? isl_basic_map_copy(map
->p
[0]) : NULL
;
2389 set
= isl_map_underlying_set(map
);
2391 bset
= uset_simple_hull(set
, shift
);
2393 hull
= isl_basic_map_overlying_set(bset
, model
);
2395 hull
= isl_basic_map_intersect(hull
, affine_hull
);
2396 hull
= isl_basic_map_remove_redundancies(hull
);
2399 ISL_F_SET(hull
, ISL_BASIC_MAP_NO_IMPLICIT
);
2400 ISL_F_SET(hull
, ISL_BASIC_MAP_ALL_EQUALITIES
);
2403 hull
= isl_basic_map_finalize(hull
);
2405 input
->cached_simple_hull
[shift
] = isl_basic_map_copy(hull
);
2406 isl_map_free(input
);
2411 /* Compute a superset of the convex hull of map that is described
2412 * by only translates of the constraints in the constituents of map.
2414 __isl_give isl_basic_map
*isl_map_simple_hull(__isl_take isl_map
*map
)
2416 return map_simple_hull(map
, 1);
2419 struct isl_basic_set
*isl_set_simple_hull(struct isl_set
*set
)
2421 return bset_from_bmap(isl_map_simple_hull(set_to_map(set
)));
2424 /* Compute a superset of the convex hull of map that is described
2425 * by only the constraints in the constituents of map.
2427 __isl_give isl_basic_map
*isl_map_unshifted_simple_hull(
2428 __isl_take isl_map
*map
)
2430 return map_simple_hull(map
, 0);
2433 __isl_give isl_basic_set
*isl_set_unshifted_simple_hull(
2434 __isl_take isl_set
*set
)
2436 return isl_map_unshifted_simple_hull(set
);
2439 /* Drop all inequalities from "bmap1" that do not also appear in "bmap2".
2440 * A constraint that appears with different constant terms
2441 * in "bmap1" and "bmap2" is also kept, with the least restrictive
2442 * (i.e., greatest) constant term.
2443 * "bmap1" and "bmap2" are assumed to have the same (known)
2444 * integer divisions.
2445 * The constraints of both "bmap1" and "bmap2" are assumed
2446 * to have been sorted using isl_basic_map_sort_constraints.
2448 * Run through the inequality constraints of "bmap1" and "bmap2"
2450 * Each constraint of "bmap1" without a matching constraint in "bmap2"
2452 * If a match is found, the constraint is kept. If needed, the constant
2453 * term of the constraint is adjusted.
2455 static __isl_give isl_basic_map
*select_shared_inequalities(
2456 __isl_take isl_basic_map
*bmap1
, __isl_keep isl_basic_map
*bmap2
)
2460 bmap1
= isl_basic_map_cow(bmap1
);
2461 if (!bmap1
|| !bmap2
)
2462 return isl_basic_map_free(bmap1
);
2464 i1
= bmap1
->n_ineq
- 1;
2465 i2
= bmap2
->n_ineq
- 1;
2466 while (bmap1
&& i1
>= 0 && i2
>= 0) {
2469 cmp
= isl_basic_map_constraint_cmp(bmap1
, bmap1
->ineq
[i1
],
2476 if (isl_basic_map_drop_inequality(bmap1
, i1
) < 0)
2477 bmap1
= isl_basic_map_free(bmap1
);
2481 if (isl_int_lt(bmap1
->ineq
[i1
][0], bmap2
->ineq
[i2
][0]))
2482 isl_int_set(bmap1
->ineq
[i1
][0], bmap2
->ineq
[i2
][0]);
2486 for (; i1
>= 0; --i1
)
2487 if (isl_basic_map_drop_inequality(bmap1
, i1
) < 0)
2488 bmap1
= isl_basic_map_free(bmap1
);
2493 /* Drop all equalities from "bmap1" that do not also appear in "bmap2".
2494 * "bmap1" and "bmap2" are assumed to have the same (known)
2495 * integer divisions.
2497 * Run through the equality constraints of "bmap1" and "bmap2".
2498 * Each constraint of "bmap1" without a matching constraint in "bmap2"
2501 static __isl_give isl_basic_map
*select_shared_equalities(
2502 __isl_take isl_basic_map
*bmap1
, __isl_keep isl_basic_map
*bmap2
)
2507 bmap1
= isl_basic_map_cow(bmap1
);
2508 if (!bmap1
|| !bmap2
)
2509 return isl_basic_map_free(bmap1
);
2511 total
= isl_basic_map_total_dim(bmap1
);
2513 i1
= bmap1
->n_eq
- 1;
2514 i2
= bmap2
->n_eq
- 1;
2515 while (bmap1
&& i1
>= 0 && i2
>= 0) {
2518 last1
= isl_seq_last_non_zero(bmap1
->eq
[i1
] + 1, total
);
2519 last2
= isl_seq_last_non_zero(bmap2
->eq
[i2
] + 1, total
);
2520 if (last1
> last2
) {
2524 if (last1
< last2
) {
2525 if (isl_basic_map_drop_equality(bmap1
, i1
) < 0)
2526 bmap1
= isl_basic_map_free(bmap1
);
2530 if (!isl_seq_eq(bmap1
->eq
[i1
], bmap2
->eq
[i2
], 1 + total
)) {
2531 if (isl_basic_map_drop_equality(bmap1
, i1
) < 0)
2532 bmap1
= isl_basic_map_free(bmap1
);
2537 for (; i1
>= 0; --i1
)
2538 if (isl_basic_map_drop_equality(bmap1
, i1
) < 0)
2539 bmap1
= isl_basic_map_free(bmap1
);
2544 /* Compute a superset of "bmap1" and "bmap2" that is described
2545 * by only the constraints that appear in both "bmap1" and "bmap2".
2547 * First drop constraints that involve unknown integer divisions
2548 * since it is not trivial to check whether two such integer divisions
2549 * in different basic maps are the same.
2550 * Then align the remaining (known) divs and sort the constraints.
2551 * Finally drop all inequalities and equalities from "bmap1" that
2552 * do not also appear in "bmap2".
2554 __isl_give isl_basic_map
*isl_basic_map_plain_unshifted_simple_hull(
2555 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
2557 bmap1
= isl_basic_map_drop_constraint_involving_unknown_divs(bmap1
);
2558 bmap2
= isl_basic_map_drop_constraint_involving_unknown_divs(bmap2
);
2559 bmap2
= isl_basic_map_align_divs(bmap2
, bmap1
);
2560 bmap1
= isl_basic_map_align_divs(bmap1
, bmap2
);
2561 bmap1
= isl_basic_map_gauss(bmap1
, NULL
);
2562 bmap2
= isl_basic_map_gauss(bmap2
, NULL
);
2563 bmap1
= isl_basic_map_sort_constraints(bmap1
);
2564 bmap2
= isl_basic_map_sort_constraints(bmap2
);
2566 bmap1
= select_shared_inequalities(bmap1
, bmap2
);
2567 bmap1
= select_shared_equalities(bmap1
, bmap2
);
2569 isl_basic_map_free(bmap2
);
2570 bmap1
= isl_basic_map_finalize(bmap1
);
2574 /* Compute a superset of the convex hull of "map" that is described
2575 * by only the constraints in the constituents of "map".
2576 * In particular, the result is composed of constraints that appear
2577 * in each of the basic maps of "map"
2579 * Constraints that involve unknown integer divisions are dropped
2580 * since it is not trivial to check whether two such integer divisions
2581 * in different basic maps are the same.
2583 * The hull is initialized from the first basic map and then
2584 * updated with respect to the other basic maps in turn.
2586 __isl_give isl_basic_map
*isl_map_plain_unshifted_simple_hull(
2587 __isl_take isl_map
*map
)
2590 isl_basic_map
*hull
;
2595 return map_simple_hull_trivial(map
);
2596 map
= isl_map_drop_constraint_involving_unknown_divs(map
);
2597 hull
= isl_basic_map_copy(map
->p
[0]);
2598 for (i
= 1; i
< map
->n
; ++i
) {
2599 isl_basic_map
*bmap_i
;
2601 bmap_i
= isl_basic_map_copy(map
->p
[i
]);
2602 hull
= isl_basic_map_plain_unshifted_simple_hull(hull
, bmap_i
);
2609 /* Compute a superset of the convex hull of "set" that is described
2610 * by only the constraints in the constituents of "set".
2611 * In particular, the result is composed of constraints that appear
2612 * in each of the basic sets of "set"
2614 __isl_give isl_basic_set
*isl_set_plain_unshifted_simple_hull(
2615 __isl_take isl_set
*set
)
2617 return isl_map_plain_unshifted_simple_hull(set
);
2620 /* Check if "ineq" is a bound on "set" and, if so, add it to "hull".
2622 * For each basic set in "set", we first check if the basic set
2623 * contains a translate of "ineq". If this translate is more relaxed,
2624 * then we assume that "ineq" is not a bound on this basic set.
2625 * Otherwise, we know that it is a bound.
2626 * If the basic set does not contain a translate of "ineq", then
2627 * we call is_bound to perform the test.
2629 static __isl_give isl_basic_set
*add_bound_from_constraint(
2630 __isl_take isl_basic_set
*hull
, struct sh_data
*data
,
2631 __isl_keep isl_set
*set
, isl_int
*ineq
)
2636 struct ineq_cmp_data v
;
2639 return isl_basic_set_free(hull
);
2641 v
.len
= isl_basic_set_total_dim(hull
);
2643 c_hash
= isl_seq_get_hash(ineq
+ 1, v
.len
);
2645 ctx
= isl_basic_set_get_ctx(hull
);
2646 for (i
= 0; i
< set
->n
; ++i
) {
2648 struct isl_hash_table_entry
*entry
;
2650 entry
= isl_hash_table_find(ctx
, data
->p
[i
].table
,
2651 c_hash
, &has_ineq
, &v
, 0);
2653 isl_int
*ineq_i
= entry
->data
;
2654 int neg
, more_relaxed
;
2656 neg
= isl_seq_is_neg(ineq_i
+ 1, ineq
+ 1, v
.len
);
2658 isl_int_neg(ineq_i
[0], ineq_i
[0]);
2659 more_relaxed
= isl_int_gt(ineq_i
[0], ineq
[0]);
2661 isl_int_neg(ineq_i
[0], ineq_i
[0]);
2667 bound
= is_bound(data
, set
, i
, ineq
, 0);
2669 return isl_basic_set_free(hull
);
2676 k
= isl_basic_set_alloc_inequality(hull
);
2678 return isl_basic_set_free(hull
);
2679 isl_seq_cpy(hull
->ineq
[k
], ineq
, 1 + v
.len
);
2684 /* Compute a superset of the convex hull of "set" that is described
2685 * by only some of the "n_ineq" constraints in the list "ineq", where "set"
2686 * has no parameters or integer divisions.
2688 * The inequalities in "ineq" are assumed to have been sorted such
2689 * that constraints with the same linear part appear together and
2690 * that among constraints with the same linear part, those with
2691 * smaller constant term appear first.
2693 * We reuse the same data structure that is used by uset_simple_hull,
2694 * but we do not need the hull table since we will not consider the
2695 * same constraint more than once. We therefore allocate it with zero size.
2697 * We run through the constraints and try to add them one by one,
2698 * skipping identical constraints. If we have added a constraint and
2699 * the next constraint is a more relaxed translate, then we skip this
2700 * next constraint as well.
2702 static __isl_give isl_basic_set
*uset_unshifted_simple_hull_from_constraints(
2703 __isl_take isl_set
*set
, int n_ineq
, isl_int
**ineq
)
2707 struct sh_data
*data
= NULL
;
2708 isl_basic_set
*hull
= NULL
;
2711 hull
= isl_basic_set_alloc_space(isl_set_get_space(set
), 0, 0, n_ineq
);
2715 data
= sh_data_alloc(set
, 0);
2719 dim
= isl_set_dim(set
, isl_dim_set
);
2720 for (i
= 0; i
< n_ineq
; ++i
) {
2721 int hull_n_ineq
= hull
->n_ineq
;
2724 parallel
= i
> 0 && isl_seq_eq(ineq
[i
- 1] + 1, ineq
[i
] + 1,
2727 (last_added
|| isl_int_eq(ineq
[i
- 1][0], ineq
[i
][0])))
2729 hull
= add_bound_from_constraint(hull
, data
, set
, ineq
[i
]);
2732 last_added
= hull
->n_ineq
> hull_n_ineq
;
2741 isl_basic_set_free(hull
);
2745 /* Collect pointers to all the inequalities in the elements of "list"
2746 * in "ineq". For equalities, store both a pointer to the equality and
2747 * a pointer to its opposite, which is first copied to "mat".
2748 * "ineq" and "mat" are assumed to have been preallocated to the right size
2749 * (the number of inequalities + 2 times the number of equalites and
2750 * the number of equalities, respectively).
2752 static __isl_give isl_mat
*collect_inequalities(__isl_take isl_mat
*mat
,
2753 __isl_keep isl_basic_set_list
*list
, isl_int
**ineq
)
2755 int i
, j
, n
, n_eq
, n_ineq
;
2762 n
= isl_basic_set_list_n_basic_set(list
);
2763 for (i
= 0; i
< n
; ++i
) {
2764 isl_basic_set
*bset
;
2765 bset
= isl_basic_set_list_get_basic_set(list
, i
);
2767 return isl_mat_free(mat
);
2768 for (j
= 0; j
< bset
->n_eq
; ++j
) {
2769 ineq
[n_ineq
++] = mat
->row
[n_eq
];
2770 ineq
[n_ineq
++] = bset
->eq
[j
];
2771 isl_seq_neg(mat
->row
[n_eq
++], bset
->eq
[j
], mat
->n_col
);
2773 for (j
= 0; j
< bset
->n_ineq
; ++j
)
2774 ineq
[n_ineq
++] = bset
->ineq
[j
];
2775 isl_basic_set_free(bset
);
2781 /* Comparison routine for use as an isl_sort callback.
2783 * Constraints with the same linear part are sorted together and
2784 * among constraints with the same linear part, those with smaller
2785 * constant term are sorted first.
2787 static int cmp_ineq(const void *a
, const void *b
, void *arg
)
2789 unsigned dim
= *(unsigned *) arg
;
2790 isl_int
* const *ineq1
= a
;
2791 isl_int
* const *ineq2
= b
;
2794 cmp
= isl_seq_cmp((*ineq1
) + 1, (*ineq2
) + 1, dim
);
2797 return isl_int_cmp((*ineq1
)[0], (*ineq2
)[0]);
2800 /* Compute a superset of the convex hull of "set" that is described
2801 * by only constraints in the elements of "list", where "set" has
2802 * no parameters or integer divisions.
2804 * We collect all the constraints in those elements and then
2805 * sort the constraints such that constraints with the same linear part
2806 * are sorted together and that those with smaller constant term are
2809 static __isl_give isl_basic_set
*uset_unshifted_simple_hull_from_basic_set_list(
2810 __isl_take isl_set
*set
, __isl_take isl_basic_set_list
*list
)
2812 int i
, n
, n_eq
, n_ineq
;
2815 isl_mat
*mat
= NULL
;
2816 isl_int
**ineq
= NULL
;
2817 isl_basic_set
*hull
;
2821 ctx
= isl_set_get_ctx(set
);
2825 n
= isl_basic_set_list_n_basic_set(list
);
2826 for (i
= 0; i
< n
; ++i
) {
2827 isl_basic_set
*bset
;
2828 bset
= isl_basic_set_list_get_basic_set(list
, i
);
2832 n_ineq
+= 2 * bset
->n_eq
+ bset
->n_ineq
;
2833 isl_basic_set_free(bset
);
2836 ineq
= isl_alloc_array(ctx
, isl_int
*, n_ineq
);
2837 if (n_ineq
> 0 && !ineq
)
2840 dim
= isl_set_dim(set
, isl_dim_set
);
2841 mat
= isl_mat_alloc(ctx
, n_eq
, 1 + dim
);
2842 mat
= collect_inequalities(mat
, list
, ineq
);
2846 if (isl_sort(ineq
, n_ineq
, sizeof(ineq
[0]), &cmp_ineq
, &dim
) < 0)
2849 hull
= uset_unshifted_simple_hull_from_constraints(set
, n_ineq
, ineq
);
2853 isl_basic_set_list_free(list
);
2859 isl_basic_set_list_free(list
);
2863 /* Compute a superset of the convex hull of "map" that is described
2864 * by only constraints in the elements of "list".
2866 * If the list is empty, then we can only describe the universe set.
2867 * If the input map is empty, then all constraints are valid, so
2868 * we return the intersection of the elements in "list".
2870 * Otherwise, we align all divs and temporarily treat them
2871 * as regular variables, computing the unshifted simple hull in
2872 * uset_unshifted_simple_hull_from_basic_set_list.
2874 static __isl_give isl_basic_map
*map_unshifted_simple_hull_from_basic_map_list(
2875 __isl_take isl_map
*map
, __isl_take isl_basic_map_list
*list
)
2877 isl_basic_map
*model
;
2878 isl_basic_map
*hull
;
2880 isl_basic_set_list
*bset_list
;
2885 if (isl_basic_map_list_n_basic_map(list
) == 0) {
2888 space
= isl_map_get_space(map
);
2890 isl_basic_map_list_free(list
);
2891 return isl_basic_map_universe(space
);
2893 if (isl_map_plain_is_empty(map
)) {
2895 return isl_basic_map_list_intersect(list
);
2898 map
= isl_map_align_divs_to_basic_map_list(map
, list
);
2901 list
= isl_basic_map_list_align_divs_to_basic_map(list
, map
->p
[0]);
2903 model
= isl_basic_map_list_get_basic_map(list
, 0);
2905 set
= isl_map_underlying_set(map
);
2906 bset_list
= isl_basic_map_list_underlying_set(list
);
2908 hull
= uset_unshifted_simple_hull_from_basic_set_list(set
, bset_list
);
2909 hull
= isl_basic_map_overlying_set(hull
, model
);
2914 isl_basic_map_list_free(list
);
2918 /* Return a sequence of the basic maps that make up the maps in "list".
2920 static __isl_give isl_basic_map_list
*collect_basic_maps(
2921 __isl_take isl_map_list
*list
)
2925 isl_basic_map_list
*bmap_list
;
2929 n
= isl_map_list_n_map(list
);
2930 ctx
= isl_map_list_get_ctx(list
);
2931 bmap_list
= isl_basic_map_list_alloc(ctx
, 0);
2933 for (i
= 0; i
< n
; ++i
) {
2935 isl_basic_map_list
*list_i
;
2937 map
= isl_map_list_get_map(list
, i
);
2938 map
= isl_map_compute_divs(map
);
2939 list_i
= isl_map_get_basic_map_list(map
);
2941 bmap_list
= isl_basic_map_list_concat(bmap_list
, list_i
);
2944 isl_map_list_free(list
);
2948 /* Compute a superset of the convex hull of "map" that is described
2949 * by only constraints in the elements of "list".
2951 * If "map" is the universe, then the convex hull (and therefore
2952 * any superset of the convexhull) is the universe as well.
2954 * Otherwise, we collect all the basic maps in the map list and
2955 * continue with map_unshifted_simple_hull_from_basic_map_list.
2957 __isl_give isl_basic_map
*isl_map_unshifted_simple_hull_from_map_list(
2958 __isl_take isl_map
*map
, __isl_take isl_map_list
*list
)
2960 isl_basic_map_list
*bmap_list
;
2963 is_universe
= isl_map_plain_is_universe(map
);
2964 if (is_universe
< 0)
2965 map
= isl_map_free(map
);
2966 if (is_universe
< 0 || is_universe
) {
2967 isl_map_list_free(list
);
2968 return isl_map_unshifted_simple_hull(map
);
2971 bmap_list
= collect_basic_maps(list
);
2972 return map_unshifted_simple_hull_from_basic_map_list(map
, bmap_list
);
2975 /* Compute a superset of the convex hull of "set" that is described
2976 * by only constraints in the elements of "list".
2978 __isl_give isl_basic_set
*isl_set_unshifted_simple_hull_from_set_list(
2979 __isl_take isl_set
*set
, __isl_take isl_set_list
*list
)
2981 return isl_map_unshifted_simple_hull_from_map_list(set
, list
);
2984 /* Given a set "set", return parametric bounds on the dimension "dim".
2986 static struct isl_basic_set
*set_bounds(struct isl_set
*set
, int dim
)
2988 unsigned set_dim
= isl_set_dim(set
, isl_dim_set
);
2989 set
= isl_set_copy(set
);
2990 set
= isl_set_eliminate_dims(set
, dim
+ 1, set_dim
- (dim
+ 1));
2991 set
= isl_set_eliminate_dims(set
, 0, dim
);
2992 return isl_set_convex_hull(set
);
2995 /* Computes a "simple hull" and then check if each dimension in the
2996 * resulting hull is bounded by a symbolic constant. If not, the
2997 * hull is intersected with the corresponding bounds on the whole set.
2999 __isl_give isl_basic_set
*isl_set_bounded_simple_hull(__isl_take isl_set
*set
)
3002 struct isl_basic_set
*hull
;
3003 unsigned nparam
, left
;
3004 int removed_divs
= 0;
3006 hull
= isl_set_simple_hull(isl_set_copy(set
));
3010 nparam
= isl_basic_set_dim(hull
, isl_dim_param
);
3011 for (i
= 0; i
< isl_basic_set_dim(hull
, isl_dim_set
); ++i
) {
3012 int lower
= 0, upper
= 0;
3013 struct isl_basic_set
*bounds
;
3015 left
= isl_basic_set_total_dim(hull
) - nparam
- i
- 1;
3016 for (j
= 0; j
< hull
->n_eq
; ++j
) {
3017 if (isl_int_is_zero(hull
->eq
[j
][1 + nparam
+ i
]))
3019 if (isl_seq_first_non_zero(hull
->eq
[j
]+1+nparam
+i
+1,
3026 for (j
= 0; j
< hull
->n_ineq
; ++j
) {
3027 if (isl_int_is_zero(hull
->ineq
[j
][1 + nparam
+ i
]))
3029 if (isl_seq_first_non_zero(hull
->ineq
[j
]+1+nparam
+i
+1,
3031 isl_seq_first_non_zero(hull
->ineq
[j
]+1+nparam
,
3034 if (isl_int_is_pos(hull
->ineq
[j
][1 + nparam
+ i
]))
3045 if (!removed_divs
) {
3046 set
= isl_set_remove_divs(set
);
3051 bounds
= set_bounds(set
, i
);
3052 hull
= isl_basic_set_intersect(hull
, bounds
);
3061 isl_basic_set_free(hull
);