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 static struct isl_basic_set
*uset_convex_hull_wrap_bounded(struct isl_set
*set
);
28 /* Return 1 if constraint c is redundant with respect to the constraints
29 * in bmap. If c is a lower [upper] bound in some variable and bmap
30 * does not have a lower [upper] bound in that variable, then c cannot
31 * be redundant and we do not need solve any lp.
33 int isl_basic_map_constraint_is_redundant(struct isl_basic_map
**bmap
,
34 isl_int
*c
, isl_int
*opt_n
, isl_int
*opt_d
)
36 enum isl_lp_result res
;
43 total
= isl_basic_map_total_dim(*bmap
);
44 for (i
= 0; i
< total
; ++i
) {
46 if (isl_int_is_zero(c
[1+i
]))
48 sign
= isl_int_sgn(c
[1+i
]);
49 for (j
= 0; j
< (*bmap
)->n_ineq
; ++j
)
50 if (sign
== isl_int_sgn((*bmap
)->ineq
[j
][1+i
]))
52 if (j
== (*bmap
)->n_ineq
)
58 res
= isl_basic_map_solve_lp(*bmap
, 0, c
, (*bmap
)->ctx
->one
,
60 if (res
== isl_lp_unbounded
)
62 if (res
== isl_lp_error
)
64 if (res
== isl_lp_empty
) {
65 *bmap
= isl_basic_map_set_to_empty(*bmap
);
68 return !isl_int_is_neg(*opt_n
);
71 int isl_basic_set_constraint_is_redundant(struct isl_basic_set
**bset
,
72 isl_int
*c
, isl_int
*opt_n
, isl_int
*opt_d
)
74 return isl_basic_map_constraint_is_redundant(
75 (struct isl_basic_map
**)bset
, c
, opt_n
, opt_d
);
79 * constraints. If the minimal value along the normal of a constraint
80 * is the same if the constraint is removed, then the constraint is redundant.
82 * Alternatively, we could have intersected the basic map with the
83 * corresponding equality and the checked if the dimension was that
86 __isl_give isl_basic_map
*isl_basic_map_remove_redundancies(
87 __isl_take isl_basic_map
*bmap
)
94 bmap
= isl_basic_map_gauss(bmap
, NULL
);
95 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
97 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
))
99 if (bmap
->n_ineq
<= 1)
102 tab
= isl_tab_from_basic_map(bmap
, 0);
103 if (isl_tab_detect_implicit_equalities(tab
) < 0)
105 if (isl_tab_detect_redundant(tab
) < 0)
107 bmap
= isl_basic_map_update_from_tab(bmap
, tab
);
109 ISL_F_SET(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
110 ISL_F_SET(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
114 isl_basic_map_free(bmap
);
118 __isl_give isl_basic_set
*isl_basic_set_remove_redundancies(
119 __isl_take isl_basic_set
*bset
)
121 return (struct isl_basic_set
*)
122 isl_basic_map_remove_redundancies((struct isl_basic_map
*)bset
);
125 /* Remove redundant constraints in each of the basic maps.
127 __isl_give isl_map
*isl_map_remove_redundancies(__isl_take isl_map
*map
)
129 return isl_map_inline_foreach_basic_map(map
,
130 &isl_basic_map_remove_redundancies
);
133 __isl_give isl_set
*isl_set_remove_redundancies(__isl_take isl_set
*set
)
135 return isl_map_remove_redundancies(set
);
138 /* Check if the set set is bound in the direction of the affine
139 * constraint c and if so, set the constant term such that the
140 * resulting constraint is a bounding constraint for the set.
142 static int uset_is_bound(struct isl_set
*set
, isl_int
*c
, unsigned len
)
150 isl_int_init(opt_denom
);
152 for (j
= 0; j
< set
->n
; ++j
) {
153 enum isl_lp_result res
;
155 if (ISL_F_ISSET(set
->p
[j
], ISL_BASIC_SET_EMPTY
))
158 res
= isl_basic_set_solve_lp(set
->p
[j
],
159 0, c
, set
->ctx
->one
, &opt
, &opt_denom
, NULL
);
160 if (res
== isl_lp_unbounded
)
162 if (res
== isl_lp_error
)
164 if (res
== isl_lp_empty
) {
165 set
->p
[j
] = isl_basic_set_set_to_empty(set
->p
[j
]);
170 if (first
|| isl_int_is_neg(opt
)) {
171 if (!isl_int_is_one(opt_denom
))
172 isl_seq_scale(c
, c
, opt_denom
, len
);
173 isl_int_sub(c
[0], c
[0], opt
);
178 isl_int_clear(opt_denom
);
182 isl_int_clear(opt_denom
);
186 __isl_give isl_basic_map
*isl_basic_map_set_rational(
187 __isl_take isl_basic_set
*bmap
)
192 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
195 bmap
= isl_basic_map_cow(bmap
);
199 ISL_F_SET(bmap
, ISL_BASIC_MAP_RATIONAL
);
201 return isl_basic_map_finalize(bmap
);
204 __isl_give isl_basic_set
*isl_basic_set_set_rational(
205 __isl_take isl_basic_set
*bset
)
207 return isl_basic_map_set_rational(bset
);
210 __isl_give isl_map
*isl_map_set_rational(__isl_take isl_map
*map
)
214 map
= isl_map_cow(map
);
217 for (i
= 0; i
< map
->n
; ++i
) {
218 map
->p
[i
] = isl_basic_map_set_rational(map
->p
[i
]);
228 __isl_give isl_set
*isl_set_set_rational(__isl_take isl_set
*set
)
230 return isl_map_set_rational(set
);
233 static struct isl_basic_set
*isl_basic_set_add_equality(
234 struct isl_basic_set
*bset
, isl_int
*c
)
242 if (ISL_F_ISSET(bset
, ISL_BASIC_SET_EMPTY
))
245 isl_assert(bset
->ctx
, isl_basic_set_n_param(bset
) == 0, goto error
);
246 isl_assert(bset
->ctx
, bset
->n_div
== 0, goto error
);
247 dim
= isl_basic_set_n_dim(bset
);
248 bset
= isl_basic_set_cow(bset
);
249 bset
= isl_basic_set_extend(bset
, 0, dim
, 0, 1, 0);
250 i
= isl_basic_set_alloc_equality(bset
);
253 isl_seq_cpy(bset
->eq
[i
], c
, 1 + dim
);
256 isl_basic_set_free(bset
);
260 static struct isl_set
*isl_set_add_basic_set_equality(struct isl_set
*set
, isl_int
*c
)
264 set
= isl_set_cow(set
);
267 for (i
= 0; i
< set
->n
; ++i
) {
268 set
->p
[i
] = isl_basic_set_add_equality(set
->p
[i
], c
);
278 /* Given a union of basic sets, construct the constraints for wrapping
279 * a facet around one of its ridges.
280 * In particular, if each of n the d-dimensional basic sets i in "set"
281 * contains the origin, satisfies the constraints x_1 >= 0 and x_2 >= 0
282 * and is defined by the constraints
286 * then the resulting set is of dimension n*(1+d) and has as constraints
295 static struct isl_basic_set
*wrap_constraints(struct isl_set
*set
)
297 struct isl_basic_set
*lp
;
301 unsigned dim
, lp_dim
;
306 dim
= 1 + isl_set_n_dim(set
);
309 for (i
= 0; i
< set
->n
; ++i
) {
310 n_eq
+= set
->p
[i
]->n_eq
;
311 n_ineq
+= set
->p
[i
]->n_ineq
;
313 lp
= isl_basic_set_alloc(set
->ctx
, 0, dim
* set
->n
, 0, n_eq
, n_ineq
);
314 lp
= isl_basic_set_set_rational(lp
);
317 lp_dim
= isl_basic_set_n_dim(lp
);
318 k
= isl_basic_set_alloc_equality(lp
);
319 isl_int_set_si(lp
->eq
[k
][0], -1);
320 for (i
= 0; i
< set
->n
; ++i
) {
321 isl_int_set_si(lp
->eq
[k
][1+dim
*i
], 0);
322 isl_int_set_si(lp
->eq
[k
][1+dim
*i
+1], 1);
323 isl_seq_clr(lp
->eq
[k
]+1+dim
*i
+2, dim
-2);
325 for (i
= 0; i
< set
->n
; ++i
) {
326 k
= isl_basic_set_alloc_inequality(lp
);
327 isl_seq_clr(lp
->ineq
[k
], 1+lp_dim
);
328 isl_int_set_si(lp
->ineq
[k
][1+dim
*i
], 1);
330 for (j
= 0; j
< set
->p
[i
]->n_eq
; ++j
) {
331 k
= isl_basic_set_alloc_equality(lp
);
332 isl_seq_clr(lp
->eq
[k
], 1+dim
*i
);
333 isl_seq_cpy(lp
->eq
[k
]+1+dim
*i
, set
->p
[i
]->eq
[j
], dim
);
334 isl_seq_clr(lp
->eq
[k
]+1+dim
*(i
+1), dim
*(set
->n
-i
-1));
337 for (j
= 0; j
< set
->p
[i
]->n_ineq
; ++j
) {
338 k
= isl_basic_set_alloc_inequality(lp
);
339 isl_seq_clr(lp
->ineq
[k
], 1+dim
*i
);
340 isl_seq_cpy(lp
->ineq
[k
]+1+dim
*i
, set
->p
[i
]->ineq
[j
], dim
);
341 isl_seq_clr(lp
->ineq
[k
]+1+dim
*(i
+1), dim
*(set
->n
-i
-1));
347 /* Given a facet "facet" of the convex hull of "set" and a facet "ridge"
348 * of that facet, compute the other facet of the convex hull that contains
351 * We first transform the set such that the facet constraint becomes
355 * I.e., the facet lies in
359 * and on that facet, the constraint that defines the ridge is
363 * (This transformation is not strictly needed, all that is needed is
364 * that the ridge contains the origin.)
366 * Since the ridge contains the origin, the cone of the convex hull
367 * will be of the form
372 * with this second constraint defining the new facet.
373 * The constant a is obtained by settting x_1 in the cone of the
374 * convex hull to 1 and minimizing x_2.
375 * Now, each element in the cone of the convex hull is the sum
376 * of elements in the cones of the basic sets.
377 * If a_i is the dilation factor of basic set i, then the problem
378 * we need to solve is
391 * the constraints of each (transformed) basic set.
392 * If a = n/d, then the constraint defining the new facet (in the transformed
395 * -n x_1 + d x_2 >= 0
397 * In the original space, we need to take the same combination of the
398 * corresponding constraints "facet" and "ridge".
400 * If a = -infty = "-1/0", then we just return the original facet constraint.
401 * This means that the facet is unbounded, but has a bounded intersection
402 * with the union of sets.
404 isl_int
*isl_set_wrap_facet(__isl_keep isl_set
*set
,
405 isl_int
*facet
, isl_int
*ridge
)
409 struct isl_mat
*T
= NULL
;
410 struct isl_basic_set
*lp
= NULL
;
412 enum isl_lp_result res
;
419 set
= isl_set_copy(set
);
420 set
= isl_set_set_rational(set
);
422 dim
= 1 + isl_set_n_dim(set
);
423 T
= isl_mat_alloc(ctx
, 3, dim
);
426 isl_int_set_si(T
->row
[0][0], 1);
427 isl_seq_clr(T
->row
[0]+1, dim
- 1);
428 isl_seq_cpy(T
->row
[1], facet
, dim
);
429 isl_seq_cpy(T
->row
[2], ridge
, dim
);
430 T
= isl_mat_right_inverse(T
);
431 set
= isl_set_preimage(set
, T
);
435 lp
= wrap_constraints(set
);
436 obj
= isl_vec_alloc(ctx
, 1 + dim
*set
->n
);
439 isl_int_set_si(obj
->block
.data
[0], 0);
440 for (i
= 0; i
< set
->n
; ++i
) {
441 isl_seq_clr(obj
->block
.data
+ 1 + dim
*i
, 2);
442 isl_int_set_si(obj
->block
.data
[1 + dim
*i
+2], 1);
443 isl_seq_clr(obj
->block
.data
+ 1 + dim
*i
+3, dim
-3);
447 res
= isl_basic_set_solve_lp(lp
, 0,
448 obj
->block
.data
, ctx
->one
, &num
, &den
, NULL
);
449 if (res
== isl_lp_ok
) {
450 isl_int_neg(num
, num
);
451 isl_seq_combine(facet
, num
, facet
, den
, ridge
, dim
);
452 isl_seq_normalize(ctx
, facet
, dim
);
457 isl_basic_set_free(lp
);
459 if (res
== isl_lp_error
)
461 isl_assert(ctx
, res
== isl_lp_ok
|| res
== isl_lp_unbounded
,
465 isl_basic_set_free(lp
);
471 /* Compute the constraint of a facet of "set".
473 * We first compute the intersection with a bounding constraint
474 * that is orthogonal to one of the coordinate axes.
475 * If the affine hull of this intersection has only one equality,
476 * we have found a facet.
477 * Otherwise, we wrap the current bounding constraint around
478 * one of the equalities of the face (one that is not equal to
479 * the current bounding constraint).
480 * This process continues until we have found a facet.
481 * The dimension of the intersection increases by at least
482 * one on each iteration, so termination is guaranteed.
484 static __isl_give isl_mat
*initial_facet_constraint(__isl_keep isl_set
*set
)
486 struct isl_set
*slice
= NULL
;
487 struct isl_basic_set
*face
= NULL
;
489 unsigned dim
= isl_set_n_dim(set
);
491 isl_mat
*bounds
= NULL
;
493 isl_assert(set
->ctx
, set
->n
> 0, goto error
);
494 bounds
= isl_mat_alloc(set
->ctx
, 1, 1 + dim
);
498 isl_seq_clr(bounds
->row
[0], dim
);
499 isl_int_set_si(bounds
->row
[0][1 + dim
- 1], 1);
500 is_bound
= uset_is_bound(set
, bounds
->row
[0], 1 + dim
);
503 isl_assert(set
->ctx
, is_bound
, goto error
);
504 isl_seq_normalize(set
->ctx
, bounds
->row
[0], 1 + dim
);
508 slice
= isl_set_copy(set
);
509 slice
= isl_set_add_basic_set_equality(slice
, bounds
->row
[0]);
510 face
= isl_set_affine_hull(slice
);
513 if (face
->n_eq
== 1) {
514 isl_basic_set_free(face
);
517 for (i
= 0; i
< face
->n_eq
; ++i
)
518 if (!isl_seq_eq(bounds
->row
[0], face
->eq
[i
], 1 + dim
) &&
519 !isl_seq_is_neg(bounds
->row
[0],
520 face
->eq
[i
], 1 + dim
))
522 isl_assert(set
->ctx
, i
< face
->n_eq
, goto error
);
523 if (!isl_set_wrap_facet(set
, bounds
->row
[0], face
->eq
[i
]))
525 isl_seq_normalize(set
->ctx
, bounds
->row
[0], bounds
->n_col
);
526 isl_basic_set_free(face
);
531 isl_basic_set_free(face
);
532 isl_mat_free(bounds
);
536 /* Given the bounding constraint "c" of a facet of the convex hull of "set",
537 * compute a hyperplane description of the facet, i.e., compute the facets
540 * We compute an affine transformation that transforms the constraint
549 * by computing the right inverse U of a matrix that starts with the rows
562 * Since z_1 is zero, we can drop this variable as well as the corresponding
563 * column of U to obtain
571 * with Q' equal to Q, but without the corresponding row.
572 * After computing the facets of the facet in the z' space,
573 * we convert them back to the x space through Q.
575 static struct isl_basic_set
*compute_facet(struct isl_set
*set
, isl_int
*c
)
577 struct isl_mat
*m
, *U
, *Q
;
578 struct isl_basic_set
*facet
= NULL
;
583 set
= isl_set_copy(set
);
584 dim
= isl_set_n_dim(set
);
585 m
= isl_mat_alloc(set
->ctx
, 2, 1 + dim
);
588 isl_int_set_si(m
->row
[0][0], 1);
589 isl_seq_clr(m
->row
[0]+1, dim
);
590 isl_seq_cpy(m
->row
[1], c
, 1+dim
);
591 U
= isl_mat_right_inverse(m
);
592 Q
= isl_mat_right_inverse(isl_mat_copy(U
));
593 U
= isl_mat_drop_cols(U
, 1, 1);
594 Q
= isl_mat_drop_rows(Q
, 1, 1);
595 set
= isl_set_preimage(set
, U
);
596 facet
= uset_convex_hull_wrap_bounded(set
);
597 facet
= isl_basic_set_preimage(facet
, Q
);
598 if (facet
&& facet
->n_eq
!= 0)
599 isl_die(ctx
, isl_error_internal
, "unexpected equality",
600 return isl_basic_set_free(facet
));
603 isl_basic_set_free(facet
);
608 /* Given an initial facet constraint, compute the remaining facets.
609 * We do this by running through all facets found so far and computing
610 * the adjacent facets through wrapping, adding those facets that we
611 * hadn't already found before.
613 * For each facet we have found so far, we first compute its facets
614 * in the resulting convex hull. That is, we compute the ridges
615 * of the resulting convex hull contained in the facet.
616 * We also compute the corresponding facet in the current approximation
617 * of the convex hull. There is no need to wrap around the ridges
618 * in this facet since that would result in a facet that is already
619 * present in the current approximation.
621 * This function can still be significantly optimized by checking which of
622 * the facets of the basic sets are also facets of the convex hull and
623 * using all the facets so far to help in constructing the facets of the
626 * using the technique in section "3.1 Ridge Generation" of
627 * "Extended Convex Hull" by Fukuda et al.
629 static struct isl_basic_set
*extend(struct isl_basic_set
*hull
,
634 struct isl_basic_set
*facet
= NULL
;
635 struct isl_basic_set
*hull_facet
= NULL
;
641 isl_assert(set
->ctx
, set
->n
> 0, goto error
);
643 dim
= isl_set_n_dim(set
);
645 for (i
= 0; i
< hull
->n_ineq
; ++i
) {
646 facet
= compute_facet(set
, hull
->ineq
[i
]);
647 facet
= isl_basic_set_add_equality(facet
, hull
->ineq
[i
]);
648 facet
= isl_basic_set_gauss(facet
, NULL
);
649 facet
= isl_basic_set_normalize_constraints(facet
);
650 hull_facet
= isl_basic_set_copy(hull
);
651 hull_facet
= isl_basic_set_add_equality(hull_facet
, hull
->ineq
[i
]);
652 hull_facet
= isl_basic_set_gauss(hull_facet
, NULL
);
653 hull_facet
= isl_basic_set_normalize_constraints(hull_facet
);
654 if (!facet
|| !hull_facet
)
656 hull
= isl_basic_set_cow(hull
);
657 hull
= isl_basic_set_extend_space(hull
,
658 isl_space_copy(hull
->dim
), 0, 0, facet
->n_ineq
);
661 for (j
= 0; j
< facet
->n_ineq
; ++j
) {
662 for (f
= 0; f
< hull_facet
->n_ineq
; ++f
)
663 if (isl_seq_eq(facet
->ineq
[j
],
664 hull_facet
->ineq
[f
], 1 + dim
))
666 if (f
< hull_facet
->n_ineq
)
668 k
= isl_basic_set_alloc_inequality(hull
);
671 isl_seq_cpy(hull
->ineq
[k
], hull
->ineq
[i
], 1+dim
);
672 if (!isl_set_wrap_facet(set
, hull
->ineq
[k
], facet
->ineq
[j
]))
675 isl_basic_set_free(hull_facet
);
676 isl_basic_set_free(facet
);
678 hull
= isl_basic_set_simplify(hull
);
679 hull
= isl_basic_set_finalize(hull
);
682 isl_basic_set_free(hull_facet
);
683 isl_basic_set_free(facet
);
684 isl_basic_set_free(hull
);
688 /* Special case for computing the convex hull of a one dimensional set.
689 * We simply collect the lower and upper bounds of each basic set
690 * and the biggest of those.
692 static struct isl_basic_set
*convex_hull_1d(struct isl_set
*set
)
694 struct isl_mat
*c
= NULL
;
695 isl_int
*lower
= NULL
;
696 isl_int
*upper
= NULL
;
699 struct isl_basic_set
*hull
;
701 for (i
= 0; i
< set
->n
; ++i
) {
702 set
->p
[i
] = isl_basic_set_simplify(set
->p
[i
]);
706 set
= isl_set_remove_empty_parts(set
);
709 isl_assert(set
->ctx
, set
->n
> 0, goto error
);
710 c
= isl_mat_alloc(set
->ctx
, 2, 2);
714 if (set
->p
[0]->n_eq
> 0) {
715 isl_assert(set
->ctx
, set
->p
[0]->n_eq
== 1, goto error
);
718 if (isl_int_is_pos(set
->p
[0]->eq
[0][1])) {
719 isl_seq_cpy(lower
, set
->p
[0]->eq
[0], 2);
720 isl_seq_neg(upper
, set
->p
[0]->eq
[0], 2);
722 isl_seq_neg(lower
, set
->p
[0]->eq
[0], 2);
723 isl_seq_cpy(upper
, set
->p
[0]->eq
[0], 2);
726 for (j
= 0; j
< set
->p
[0]->n_ineq
; ++j
) {
727 if (isl_int_is_pos(set
->p
[0]->ineq
[j
][1])) {
729 isl_seq_cpy(lower
, set
->p
[0]->ineq
[j
], 2);
732 isl_seq_cpy(upper
, set
->p
[0]->ineq
[j
], 2);
739 for (i
= 0; i
< set
->n
; ++i
) {
740 struct isl_basic_set
*bset
= set
->p
[i
];
744 for (j
= 0; j
< bset
->n_eq
; ++j
) {
748 isl_int_mul(a
, lower
[0], bset
->eq
[j
][1]);
749 isl_int_mul(b
, lower
[1], bset
->eq
[j
][0]);
750 if (isl_int_lt(a
, b
) && isl_int_is_pos(bset
->eq
[j
][1]))
751 isl_seq_cpy(lower
, bset
->eq
[j
], 2);
752 if (isl_int_gt(a
, b
) && isl_int_is_neg(bset
->eq
[j
][1]))
753 isl_seq_neg(lower
, bset
->eq
[j
], 2);
756 isl_int_mul(a
, upper
[0], bset
->eq
[j
][1]);
757 isl_int_mul(b
, upper
[1], bset
->eq
[j
][0]);
758 if (isl_int_lt(a
, b
) && isl_int_is_pos(bset
->eq
[j
][1]))
759 isl_seq_neg(upper
, bset
->eq
[j
], 2);
760 if (isl_int_gt(a
, b
) && isl_int_is_neg(bset
->eq
[j
][1]))
761 isl_seq_cpy(upper
, bset
->eq
[j
], 2);
764 for (j
= 0; j
< bset
->n_ineq
; ++j
) {
765 if (isl_int_is_pos(bset
->ineq
[j
][1]))
767 if (isl_int_is_neg(bset
->ineq
[j
][1]))
769 if (lower
&& isl_int_is_pos(bset
->ineq
[j
][1])) {
770 isl_int_mul(a
, lower
[0], bset
->ineq
[j
][1]);
771 isl_int_mul(b
, lower
[1], bset
->ineq
[j
][0]);
772 if (isl_int_lt(a
, b
))
773 isl_seq_cpy(lower
, bset
->ineq
[j
], 2);
775 if (upper
&& isl_int_is_neg(bset
->ineq
[j
][1])) {
776 isl_int_mul(a
, upper
[0], bset
->ineq
[j
][1]);
777 isl_int_mul(b
, upper
[1], bset
->ineq
[j
][0]);
778 if (isl_int_gt(a
, b
))
779 isl_seq_cpy(upper
, bset
->ineq
[j
], 2);
790 hull
= isl_basic_set_alloc(set
->ctx
, 0, 1, 0, 0, 2);
791 hull
= isl_basic_set_set_rational(hull
);
795 k
= isl_basic_set_alloc_inequality(hull
);
796 isl_seq_cpy(hull
->ineq
[k
], lower
, 2);
799 k
= isl_basic_set_alloc_inequality(hull
);
800 isl_seq_cpy(hull
->ineq
[k
], upper
, 2);
802 hull
= isl_basic_set_finalize(hull
);
812 static struct isl_basic_set
*convex_hull_0d(struct isl_set
*set
)
814 struct isl_basic_set
*convex_hull
;
819 if (isl_set_is_empty(set
))
820 convex_hull
= isl_basic_set_empty(isl_space_copy(set
->dim
));
822 convex_hull
= isl_basic_set_universe(isl_space_copy(set
->dim
));
827 /* Compute the convex hull of a pair of basic sets without any parameters or
828 * integer divisions using Fourier-Motzkin elimination.
829 * The convex hull is the set of all points that can be written as
830 * the sum of points from both basic sets (in homogeneous coordinates).
831 * We set up the constraints in a space with dimensions for each of
832 * the three sets and then project out the dimensions corresponding
833 * to the two original basic sets, retaining only those corresponding
834 * to the convex hull.
836 static struct isl_basic_set
*convex_hull_pair_elim(struct isl_basic_set
*bset1
,
837 struct isl_basic_set
*bset2
)
840 struct isl_basic_set
*bset
[2];
841 struct isl_basic_set
*hull
= NULL
;
844 if (!bset1
|| !bset2
)
847 dim
= isl_basic_set_n_dim(bset1
);
848 hull
= isl_basic_set_alloc(bset1
->ctx
, 0, 2 + 3 * dim
, 0,
849 1 + dim
+ bset1
->n_eq
+ bset2
->n_eq
,
850 2 + bset1
->n_ineq
+ bset2
->n_ineq
);
853 for (i
= 0; i
< 2; ++i
) {
854 for (j
= 0; j
< bset
[i
]->n_eq
; ++j
) {
855 k
= isl_basic_set_alloc_equality(hull
);
858 isl_seq_clr(hull
->eq
[k
], (i
+1) * (1+dim
));
859 isl_seq_clr(hull
->eq
[k
]+(i
+2)*(1+dim
), (1-i
)*(1+dim
));
860 isl_seq_cpy(hull
->eq
[k
]+(i
+1)*(1+dim
), bset
[i
]->eq
[j
],
863 for (j
= 0; j
< bset
[i
]->n_ineq
; ++j
) {
864 k
= isl_basic_set_alloc_inequality(hull
);
867 isl_seq_clr(hull
->ineq
[k
], (i
+1) * (1+dim
));
868 isl_seq_clr(hull
->ineq
[k
]+(i
+2)*(1+dim
), (1-i
)*(1+dim
));
869 isl_seq_cpy(hull
->ineq
[k
]+(i
+1)*(1+dim
),
870 bset
[i
]->ineq
[j
], 1+dim
);
872 k
= isl_basic_set_alloc_inequality(hull
);
875 isl_seq_clr(hull
->ineq
[k
], 1+2+3*dim
);
876 isl_int_set_si(hull
->ineq
[k
][(i
+1)*(1+dim
)], 1);
878 for (j
= 0; j
< 1+dim
; ++j
) {
879 k
= isl_basic_set_alloc_equality(hull
);
882 isl_seq_clr(hull
->eq
[k
], 1+2+3*dim
);
883 isl_int_set_si(hull
->eq
[k
][j
], -1);
884 isl_int_set_si(hull
->eq
[k
][1+dim
+j
], 1);
885 isl_int_set_si(hull
->eq
[k
][2*(1+dim
)+j
], 1);
887 hull
= isl_basic_set_set_rational(hull
);
888 hull
= isl_basic_set_remove_dims(hull
, isl_dim_set
, dim
, 2*(1+dim
));
889 hull
= isl_basic_set_remove_redundancies(hull
);
890 isl_basic_set_free(bset1
);
891 isl_basic_set_free(bset2
);
894 isl_basic_set_free(bset1
);
895 isl_basic_set_free(bset2
);
896 isl_basic_set_free(hull
);
900 /* Is the set bounded for each value of the parameters?
902 int isl_basic_set_is_bounded(__isl_keep isl_basic_set
*bset
)
909 if (isl_basic_set_plain_is_empty(bset
))
912 tab
= isl_tab_from_recession_cone(bset
, 1);
913 bounded
= isl_tab_cone_is_bounded(tab
);
918 /* Is the image bounded for each value of the parameters and
919 * the domain variables?
921 int isl_basic_map_image_is_bounded(__isl_keep isl_basic_map
*bmap
)
923 unsigned nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
924 unsigned n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
927 bmap
= isl_basic_map_copy(bmap
);
928 bmap
= isl_basic_map_cow(bmap
);
929 bmap
= isl_basic_map_move_dims(bmap
, isl_dim_param
, nparam
,
930 isl_dim_in
, 0, n_in
);
931 bounded
= isl_basic_set_is_bounded((isl_basic_set
*)bmap
);
932 isl_basic_map_free(bmap
);
937 /* Is the set bounded for each value of the parameters?
939 int isl_set_is_bounded(__isl_keep isl_set
*set
)
946 for (i
= 0; i
< set
->n
; ++i
) {
947 int bounded
= isl_basic_set_is_bounded(set
->p
[i
]);
948 if (!bounded
|| bounded
< 0)
954 /* Compute the lineality space of the convex hull of bset1 and bset2.
956 * We first compute the intersection of the recession cone of bset1
957 * with the negative of the recession cone of bset2 and then compute
958 * the linear hull of the resulting cone.
960 static struct isl_basic_set
*induced_lineality_space(
961 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
964 struct isl_basic_set
*lin
= NULL
;
967 if (!bset1
|| !bset2
)
970 dim
= isl_basic_set_total_dim(bset1
);
971 lin
= isl_basic_set_alloc_space(isl_basic_set_get_space(bset1
), 0,
972 bset1
->n_eq
+ bset2
->n_eq
,
973 bset1
->n_ineq
+ bset2
->n_ineq
);
974 lin
= isl_basic_set_set_rational(lin
);
977 for (i
= 0; i
< bset1
->n_eq
; ++i
) {
978 k
= isl_basic_set_alloc_equality(lin
);
981 isl_int_set_si(lin
->eq
[k
][0], 0);
982 isl_seq_cpy(lin
->eq
[k
] + 1, bset1
->eq
[i
] + 1, dim
);
984 for (i
= 0; i
< bset1
->n_ineq
; ++i
) {
985 k
= isl_basic_set_alloc_inequality(lin
);
988 isl_int_set_si(lin
->ineq
[k
][0], 0);
989 isl_seq_cpy(lin
->ineq
[k
] + 1, bset1
->ineq
[i
] + 1, dim
);
991 for (i
= 0; i
< bset2
->n_eq
; ++i
) {
992 k
= isl_basic_set_alloc_equality(lin
);
995 isl_int_set_si(lin
->eq
[k
][0], 0);
996 isl_seq_neg(lin
->eq
[k
] + 1, bset2
->eq
[i
] + 1, dim
);
998 for (i
= 0; i
< bset2
->n_ineq
; ++i
) {
999 k
= isl_basic_set_alloc_inequality(lin
);
1002 isl_int_set_si(lin
->ineq
[k
][0], 0);
1003 isl_seq_neg(lin
->ineq
[k
] + 1, bset2
->ineq
[i
] + 1, dim
);
1006 isl_basic_set_free(bset1
);
1007 isl_basic_set_free(bset2
);
1008 return isl_basic_set_affine_hull(lin
);
1010 isl_basic_set_free(lin
);
1011 isl_basic_set_free(bset1
);
1012 isl_basic_set_free(bset2
);
1016 static struct isl_basic_set
*uset_convex_hull(struct isl_set
*set
);
1018 /* Given a set and a linear space "lin" of dimension n > 0,
1019 * project the linear space from the set, compute the convex hull
1020 * and then map the set back to the original space.
1026 * describe the linear space. We first compute the Hermite normal
1027 * form H = M U of M = H Q, to obtain
1031 * The last n rows of H will be zero, so the last n variables of x' = Q x
1032 * are the one we want to project out. We do this by transforming each
1033 * basic set A x >= b to A U x' >= b and then removing the last n dimensions.
1034 * After computing the convex hull in x'_1, i.e., A' x'_1 >= b',
1035 * we transform the hull back to the original space as A' Q_1 x >= b',
1036 * with Q_1 all but the last n rows of Q.
1038 static struct isl_basic_set
*modulo_lineality(struct isl_set
*set
,
1039 struct isl_basic_set
*lin
)
1041 unsigned total
= isl_basic_set_total_dim(lin
);
1043 struct isl_basic_set
*hull
;
1044 struct isl_mat
*M
, *U
, *Q
;
1048 lin_dim
= total
- lin
->n_eq
;
1049 M
= isl_mat_sub_alloc6(set
->ctx
, lin
->eq
, 0, lin
->n_eq
, 1, total
);
1050 M
= isl_mat_left_hermite(M
, 0, &U
, &Q
);
1054 isl_basic_set_free(lin
);
1056 Q
= isl_mat_drop_rows(Q
, Q
->n_row
- lin_dim
, lin_dim
);
1058 U
= isl_mat_lin_to_aff(U
);
1059 Q
= isl_mat_lin_to_aff(Q
);
1061 set
= isl_set_preimage(set
, U
);
1062 set
= isl_set_remove_dims(set
, isl_dim_set
, total
- lin_dim
, lin_dim
);
1063 hull
= uset_convex_hull(set
);
1064 hull
= isl_basic_set_preimage(hull
, Q
);
1068 isl_basic_set_free(lin
);
1073 /* Given two polyhedra with as constraints h_{ij} x >= 0 in homegeneous space,
1074 * set up an LP for solving
1076 * \sum_j \alpha_{1j} h_{1j} = \sum_j \alpha_{2j} h_{2j}
1078 * \alpha{i0} corresponds to the (implicit) positivity constraint 1 >= 0
1079 * The next \alpha{ij} correspond to the equalities and come in pairs.
1080 * The final \alpha{ij} correspond to the inequalities.
1082 static struct isl_basic_set
*valid_direction_lp(
1083 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
1086 struct isl_basic_set
*lp
;
1091 if (!bset1
|| !bset2
)
1093 d
= 1 + isl_basic_set_total_dim(bset1
);
1095 2 * bset1
->n_eq
+ bset1
->n_ineq
+ 2 * bset2
->n_eq
+ bset2
->n_ineq
;
1096 dim
= isl_space_set_alloc(bset1
->ctx
, 0, n
);
1097 lp
= isl_basic_set_alloc_space(dim
, 0, d
, n
);
1100 for (i
= 0; i
< n
; ++i
) {
1101 k
= isl_basic_set_alloc_inequality(lp
);
1104 isl_seq_clr(lp
->ineq
[k
] + 1, n
);
1105 isl_int_set_si(lp
->ineq
[k
][0], -1);
1106 isl_int_set_si(lp
->ineq
[k
][1 + i
], 1);
1108 for (i
= 0; i
< d
; ++i
) {
1109 k
= isl_basic_set_alloc_equality(lp
);
1113 isl_int_set_si(lp
->eq
[k
][n
], 0); n
++;
1114 /* positivity constraint 1 >= 0 */
1115 isl_int_set_si(lp
->eq
[k
][n
], i
== 0); n
++;
1116 for (j
= 0; j
< bset1
->n_eq
; ++j
) {
1117 isl_int_set(lp
->eq
[k
][n
], bset1
->eq
[j
][i
]); n
++;
1118 isl_int_neg(lp
->eq
[k
][n
], bset1
->eq
[j
][i
]); n
++;
1120 for (j
= 0; j
< bset1
->n_ineq
; ++j
) {
1121 isl_int_set(lp
->eq
[k
][n
], bset1
->ineq
[j
][i
]); n
++;
1123 /* positivity constraint 1 >= 0 */
1124 isl_int_set_si(lp
->eq
[k
][n
], -(i
== 0)); n
++;
1125 for (j
= 0; j
< bset2
->n_eq
; ++j
) {
1126 isl_int_neg(lp
->eq
[k
][n
], bset2
->eq
[j
][i
]); n
++;
1127 isl_int_set(lp
->eq
[k
][n
], bset2
->eq
[j
][i
]); n
++;
1129 for (j
= 0; j
< bset2
->n_ineq
; ++j
) {
1130 isl_int_neg(lp
->eq
[k
][n
], bset2
->ineq
[j
][i
]); n
++;
1133 lp
= isl_basic_set_gauss(lp
, NULL
);
1134 isl_basic_set_free(bset1
);
1135 isl_basic_set_free(bset2
);
1138 isl_basic_set_free(bset1
);
1139 isl_basic_set_free(bset2
);
1143 /* Compute a vector s in the homogeneous space such that <s, r> > 0
1144 * for all rays in the homogeneous space of the two cones that correspond
1145 * to the input polyhedra bset1 and bset2.
1147 * We compute s as a vector that satisfies
1149 * s = \sum_j \alpha_{ij} h_{ij} for i = 1,2 (*)
1151 * with h_{ij} the normals of the facets of polyhedron i
1152 * (including the "positivity constraint" 1 >= 0) and \alpha_{ij}
1153 * strictly positive numbers. For simplicity we impose \alpha_{ij} >= 1.
1154 * We first set up an LP with as variables the \alpha{ij}.
1155 * In this formulation, for each polyhedron i,
1156 * the first constraint is the positivity constraint, followed by pairs
1157 * of variables for the equalities, followed by variables for the inequalities.
1158 * We then simply pick a feasible solution and compute s using (*).
1160 * Note that we simply pick any valid direction and make no attempt
1161 * to pick a "good" or even the "best" valid direction.
1163 static struct isl_vec
*valid_direction(
1164 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
1166 struct isl_basic_set
*lp
;
1167 struct isl_tab
*tab
;
1168 struct isl_vec
*sample
= NULL
;
1169 struct isl_vec
*dir
;
1174 if (!bset1
|| !bset2
)
1176 lp
= valid_direction_lp(isl_basic_set_copy(bset1
),
1177 isl_basic_set_copy(bset2
));
1178 tab
= isl_tab_from_basic_set(lp
, 0);
1179 sample
= isl_tab_get_sample_value(tab
);
1181 isl_basic_set_free(lp
);
1184 d
= isl_basic_set_total_dim(bset1
);
1185 dir
= isl_vec_alloc(bset1
->ctx
, 1 + d
);
1188 isl_seq_clr(dir
->block
.data
+ 1, dir
->size
- 1);
1190 /* positivity constraint 1 >= 0 */
1191 isl_int_set(dir
->block
.data
[0], sample
->block
.data
[n
]); n
++;
1192 for (i
= 0; i
< bset1
->n_eq
; ++i
) {
1193 isl_int_sub(sample
->block
.data
[n
],
1194 sample
->block
.data
[n
], sample
->block
.data
[n
+1]);
1195 isl_seq_combine(dir
->block
.data
,
1196 bset1
->ctx
->one
, dir
->block
.data
,
1197 sample
->block
.data
[n
], bset1
->eq
[i
], 1 + d
);
1201 for (i
= 0; i
< bset1
->n_ineq
; ++i
)
1202 isl_seq_combine(dir
->block
.data
,
1203 bset1
->ctx
->one
, dir
->block
.data
,
1204 sample
->block
.data
[n
++], bset1
->ineq
[i
], 1 + d
);
1205 isl_vec_free(sample
);
1206 isl_seq_normalize(bset1
->ctx
, dir
->el
, dir
->size
);
1207 isl_basic_set_free(bset1
);
1208 isl_basic_set_free(bset2
);
1211 isl_vec_free(sample
);
1212 isl_basic_set_free(bset1
);
1213 isl_basic_set_free(bset2
);
1217 /* Given a polyhedron b_i + A_i x >= 0 and a map T = S^{-1},
1218 * compute b_i' + A_i' x' >= 0, with
1220 * [ b_i A_i ] [ y' ] [ y' ]
1221 * [ 1 0 ] S^{-1} [ x' ] >= 0 or [ b_i' A_i' ] [ x' ] >= 0
1223 * In particular, add the "positivity constraint" and then perform
1226 static struct isl_basic_set
*homogeneous_map(struct isl_basic_set
*bset
,
1233 bset
= isl_basic_set_extend_constraints(bset
, 0, 1);
1234 k
= isl_basic_set_alloc_inequality(bset
);
1237 isl_seq_clr(bset
->ineq
[k
] + 1, isl_basic_set_total_dim(bset
));
1238 isl_int_set_si(bset
->ineq
[k
][0], 1);
1239 bset
= isl_basic_set_preimage(bset
, T
);
1243 isl_basic_set_free(bset
);
1247 /* Compute the convex hull of a pair of basic sets without any parameters or
1248 * integer divisions, where the convex hull is known to be pointed,
1249 * but the basic sets may be unbounded.
1251 * We turn this problem into the computation of a convex hull of a pair
1252 * _bounded_ polyhedra by "changing the direction of the homogeneous
1253 * dimension". This idea is due to Matthias Koeppe.
1255 * Consider the cones in homogeneous space that correspond to the
1256 * input polyhedra. The rays of these cones are also rays of the
1257 * polyhedra if the coordinate that corresponds to the homogeneous
1258 * dimension is zero. That is, if the inner product of the rays
1259 * with the homogeneous direction is zero.
1260 * The cones in the homogeneous space can also be considered to
1261 * correspond to other pairs of polyhedra by chosing a different
1262 * homogeneous direction. To ensure that both of these polyhedra
1263 * are bounded, we need to make sure that all rays of the cones
1264 * correspond to vertices and not to rays.
1265 * Let s be a direction such that <s, r> > 0 for all rays r of both cones.
1266 * Then using s as a homogeneous direction, we obtain a pair of polytopes.
1267 * The vector s is computed in valid_direction.
1269 * Note that we need to consider _all_ rays of the cones and not just
1270 * the rays that correspond to rays in the polyhedra. If we were to
1271 * only consider those rays and turn them into vertices, then we
1272 * may inadvertently turn some vertices into rays.
1274 * The standard homogeneous direction is the unit vector in the 0th coordinate.
1275 * We therefore transform the two polyhedra such that the selected
1276 * direction is mapped onto this standard direction and then proceed
1277 * with the normal computation.
1278 * Let S be a non-singular square matrix with s as its first row,
1279 * then we want to map the polyhedra to the space
1281 * [ y' ] [ y ] [ y ] [ y' ]
1282 * [ x' ] = S [ x ] i.e., [ x ] = S^{-1} [ x' ]
1284 * We take S to be the unimodular completion of s to limit the growth
1285 * of the coefficients in the following computations.
1287 * Let b_i + A_i x >= 0 be the constraints of polyhedron i.
1288 * We first move to the homogeneous dimension
1290 * b_i y + A_i x >= 0 [ b_i A_i ] [ y ] [ 0 ]
1291 * y >= 0 or [ 1 0 ] [ x ] >= [ 0 ]
1293 * Then we change directoin
1295 * [ b_i A_i ] [ y' ] [ y' ]
1296 * [ 1 0 ] S^{-1} [ x' ] >= 0 or [ b_i' A_i' ] [ x' ] >= 0
1298 * Then we compute the convex hull of the polytopes b_i' + A_i' x' >= 0
1299 * resulting in b' + A' x' >= 0, which we then convert back
1302 * [ b' A' ] S [ x ] >= 0 or [ b A ] [ x ] >= 0
1304 * The polyhedron b + A x >= 0 is then the convex hull of the input polyhedra.
1306 static struct isl_basic_set
*convex_hull_pair_pointed(
1307 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
1309 struct isl_ctx
*ctx
= NULL
;
1310 struct isl_vec
*dir
= NULL
;
1311 struct isl_mat
*T
= NULL
;
1312 struct isl_mat
*T2
= NULL
;
1313 struct isl_basic_set
*hull
;
1314 struct isl_set
*set
;
1316 if (!bset1
|| !bset2
)
1318 ctx
= isl_basic_set_get_ctx(bset1
);
1319 dir
= valid_direction(isl_basic_set_copy(bset1
),
1320 isl_basic_set_copy(bset2
));
1323 T
= isl_mat_alloc(ctx
, dir
->size
, dir
->size
);
1326 isl_seq_cpy(T
->row
[0], dir
->block
.data
, dir
->size
);
1327 T
= isl_mat_unimodular_complete(T
, 1);
1328 T2
= isl_mat_right_inverse(isl_mat_copy(T
));
1330 bset1
= homogeneous_map(bset1
, isl_mat_copy(T2
));
1331 bset2
= homogeneous_map(bset2
, T2
);
1332 set
= isl_set_alloc_space(isl_basic_set_get_space(bset1
), 2, 0);
1333 set
= isl_set_add_basic_set(set
, bset1
);
1334 set
= isl_set_add_basic_set(set
, bset2
);
1335 hull
= uset_convex_hull(set
);
1336 hull
= isl_basic_set_preimage(hull
, T
);
1343 isl_basic_set_free(bset1
);
1344 isl_basic_set_free(bset2
);
1348 static struct isl_basic_set
*uset_convex_hull_wrap(struct isl_set
*set
);
1349 static struct isl_basic_set
*modulo_affine_hull(
1350 struct isl_set
*set
, struct isl_basic_set
*affine_hull
);
1352 /* Compute the convex hull of a pair of basic sets without any parameters or
1353 * integer divisions.
1355 * This function is called from uset_convex_hull_unbounded, which
1356 * means that the complete convex hull is unbounded. Some pairs
1357 * of basic sets may still be bounded, though.
1358 * They may even lie inside a lower dimensional space, in which
1359 * case they need to be handled inside their affine hull since
1360 * the main algorithm assumes that the result is full-dimensional.
1362 * If the convex hull of the two basic sets would have a non-trivial
1363 * lineality space, we first project out this lineality space.
1365 static struct isl_basic_set
*convex_hull_pair(struct isl_basic_set
*bset1
,
1366 struct isl_basic_set
*bset2
)
1368 isl_basic_set
*lin
, *aff
;
1369 int bounded1
, bounded2
;
1371 if (bset1
->ctx
->opt
->convex
== ISL_CONVEX_HULL_FM
)
1372 return convex_hull_pair_elim(bset1
, bset2
);
1374 aff
= isl_set_affine_hull(isl_basic_set_union(isl_basic_set_copy(bset1
),
1375 isl_basic_set_copy(bset2
)));
1379 return modulo_affine_hull(isl_basic_set_union(bset1
, bset2
), aff
);
1380 isl_basic_set_free(aff
);
1382 bounded1
= isl_basic_set_is_bounded(bset1
);
1383 bounded2
= isl_basic_set_is_bounded(bset2
);
1385 if (bounded1
< 0 || bounded2
< 0)
1388 if (bounded1
&& bounded2
)
1389 return uset_convex_hull_wrap(isl_basic_set_union(bset1
, bset2
));
1391 if (bounded1
|| bounded2
)
1392 return convex_hull_pair_pointed(bset1
, bset2
);
1394 lin
= induced_lineality_space(isl_basic_set_copy(bset1
),
1395 isl_basic_set_copy(bset2
));
1398 if (isl_basic_set_is_universe(lin
)) {
1399 isl_basic_set_free(bset1
);
1400 isl_basic_set_free(bset2
);
1403 if (lin
->n_eq
< isl_basic_set_total_dim(lin
)) {
1404 struct isl_set
*set
;
1405 set
= isl_set_alloc_space(isl_basic_set_get_space(bset1
), 2, 0);
1406 set
= isl_set_add_basic_set(set
, bset1
);
1407 set
= isl_set_add_basic_set(set
, bset2
);
1408 return modulo_lineality(set
, lin
);
1410 isl_basic_set_free(lin
);
1412 return convex_hull_pair_pointed(bset1
, bset2
);
1414 isl_basic_set_free(bset1
);
1415 isl_basic_set_free(bset2
);
1419 /* Compute the lineality space of a basic set.
1420 * We currently do not allow the basic set to have any divs.
1421 * We basically just drop the constants and turn every inequality
1424 struct isl_basic_set
*isl_basic_set_lineality_space(struct isl_basic_set
*bset
)
1427 struct isl_basic_set
*lin
= NULL
;
1432 isl_assert(bset
->ctx
, bset
->n_div
== 0, goto error
);
1433 dim
= isl_basic_set_total_dim(bset
);
1435 lin
= isl_basic_set_alloc_space(isl_basic_set_get_space(bset
), 0, dim
, 0);
1438 for (i
= 0; i
< bset
->n_eq
; ++i
) {
1439 k
= isl_basic_set_alloc_equality(lin
);
1442 isl_int_set_si(lin
->eq
[k
][0], 0);
1443 isl_seq_cpy(lin
->eq
[k
] + 1, bset
->eq
[i
] + 1, dim
);
1445 lin
= isl_basic_set_gauss(lin
, NULL
);
1448 for (i
= 0; i
< bset
->n_ineq
&& lin
->n_eq
< dim
; ++i
) {
1449 k
= isl_basic_set_alloc_equality(lin
);
1452 isl_int_set_si(lin
->eq
[k
][0], 0);
1453 isl_seq_cpy(lin
->eq
[k
] + 1, bset
->ineq
[i
] + 1, dim
);
1454 lin
= isl_basic_set_gauss(lin
, NULL
);
1458 isl_basic_set_free(bset
);
1461 isl_basic_set_free(lin
);
1462 isl_basic_set_free(bset
);
1466 /* Compute the (linear) hull of the lineality spaces of the basic sets in the
1467 * "underlying" set "set".
1469 static struct isl_basic_set
*uset_combined_lineality_space(struct isl_set
*set
)
1472 struct isl_set
*lin
= NULL
;
1477 isl_space
*dim
= isl_set_get_space(set
);
1479 return isl_basic_set_empty(dim
);
1482 lin
= isl_set_alloc_space(isl_set_get_space(set
), set
->n
, 0);
1483 for (i
= 0; i
< set
->n
; ++i
)
1484 lin
= isl_set_add_basic_set(lin
,
1485 isl_basic_set_lineality_space(isl_basic_set_copy(set
->p
[i
])));
1487 return isl_set_affine_hull(lin
);
1490 /* Compute the convex hull of a set without any parameters or
1491 * integer divisions.
1492 * In each step, we combined two basic sets until only one
1493 * basic set is left.
1494 * The input basic sets are assumed not to have a non-trivial
1495 * lineality space. If any of the intermediate results has
1496 * a non-trivial lineality space, it is projected out.
1498 static struct isl_basic_set
*uset_convex_hull_unbounded(struct isl_set
*set
)
1500 struct isl_basic_set
*convex_hull
= NULL
;
1502 convex_hull
= isl_set_copy_basic_set(set
);
1503 set
= isl_set_drop_basic_set(set
, convex_hull
);
1506 while (set
->n
> 0) {
1507 struct isl_basic_set
*t
;
1508 t
= isl_set_copy_basic_set(set
);
1511 set
= isl_set_drop_basic_set(set
, t
);
1514 convex_hull
= convex_hull_pair(convex_hull
, t
);
1517 t
= isl_basic_set_lineality_space(isl_basic_set_copy(convex_hull
));
1520 if (isl_basic_set_is_universe(t
)) {
1521 isl_basic_set_free(convex_hull
);
1525 if (t
->n_eq
< isl_basic_set_total_dim(t
)) {
1526 set
= isl_set_add_basic_set(set
, convex_hull
);
1527 return modulo_lineality(set
, t
);
1529 isl_basic_set_free(t
);
1535 isl_basic_set_free(convex_hull
);
1539 /* Compute an initial hull for wrapping containing a single initial
1541 * This function assumes that the given set is bounded.
1543 static struct isl_basic_set
*initial_hull(struct isl_basic_set
*hull
,
1544 struct isl_set
*set
)
1546 struct isl_mat
*bounds
= NULL
;
1552 bounds
= initial_facet_constraint(set
);
1555 k
= isl_basic_set_alloc_inequality(hull
);
1558 dim
= isl_set_n_dim(set
);
1559 isl_assert(set
->ctx
, 1 + dim
== bounds
->n_col
, goto error
);
1560 isl_seq_cpy(hull
->ineq
[k
], bounds
->row
[0], bounds
->n_col
);
1561 isl_mat_free(bounds
);
1565 isl_basic_set_free(hull
);
1566 isl_mat_free(bounds
);
1570 struct max_constraint
{
1576 static int max_constraint_equal(const void *entry
, const void *val
)
1578 struct max_constraint
*a
= (struct max_constraint
*)entry
;
1579 isl_int
*b
= (isl_int
*)val
;
1581 return isl_seq_eq(a
->c
->row
[0] + 1, b
, a
->c
->n_col
- 1);
1584 static void update_constraint(struct isl_ctx
*ctx
, struct isl_hash_table
*table
,
1585 isl_int
*con
, unsigned len
, int n
, int ineq
)
1587 struct isl_hash_table_entry
*entry
;
1588 struct max_constraint
*c
;
1591 c_hash
= isl_seq_get_hash(con
+ 1, len
);
1592 entry
= isl_hash_table_find(ctx
, table
, c_hash
, max_constraint_equal
,
1598 isl_hash_table_remove(ctx
, table
, entry
);
1602 if (isl_int_gt(c
->c
->row
[0][0], con
[0]))
1604 if (isl_int_eq(c
->c
->row
[0][0], con
[0])) {
1609 c
->c
= isl_mat_cow(c
->c
);
1610 isl_int_set(c
->c
->row
[0][0], con
[0]);
1614 /* Check whether the constraint hash table "table" constains the constraint
1617 static int has_constraint(struct isl_ctx
*ctx
, struct isl_hash_table
*table
,
1618 isl_int
*con
, unsigned len
, int n
)
1620 struct isl_hash_table_entry
*entry
;
1621 struct max_constraint
*c
;
1624 c_hash
= isl_seq_get_hash(con
+ 1, len
);
1625 entry
= isl_hash_table_find(ctx
, table
, c_hash
, max_constraint_equal
,
1632 return isl_int_eq(c
->c
->row
[0][0], con
[0]);
1635 /* Check for inequality constraints of a basic set without equalities
1636 * such that the same or more stringent copies of the constraint appear
1637 * in all of the basic sets. Such constraints are necessarily facet
1638 * constraints of the convex hull.
1640 * If the resulting basic set is by chance identical to one of
1641 * the basic sets in "set", then we know that this basic set contains
1642 * all other basic sets and is therefore the convex hull of set.
1643 * In this case we set *is_hull to 1.
1645 static struct isl_basic_set
*common_constraints(struct isl_basic_set
*hull
,
1646 struct isl_set
*set
, int *is_hull
)
1649 int min_constraints
;
1651 struct max_constraint
*constraints
= NULL
;
1652 struct isl_hash_table
*table
= NULL
;
1657 for (i
= 0; i
< set
->n
; ++i
)
1658 if (set
->p
[i
]->n_eq
== 0)
1662 min_constraints
= set
->p
[i
]->n_ineq
;
1664 for (i
= best
+ 1; i
< set
->n
; ++i
) {
1665 if (set
->p
[i
]->n_eq
!= 0)
1667 if (set
->p
[i
]->n_ineq
>= min_constraints
)
1669 min_constraints
= set
->p
[i
]->n_ineq
;
1672 constraints
= isl_calloc_array(hull
->ctx
, struct max_constraint
,
1676 table
= isl_alloc_type(hull
->ctx
, struct isl_hash_table
);
1677 if (isl_hash_table_init(hull
->ctx
, table
, min_constraints
))
1680 total
= isl_space_dim(set
->dim
, isl_dim_all
);
1681 for (i
= 0; i
< set
->p
[best
]->n_ineq
; ++i
) {
1682 constraints
[i
].c
= isl_mat_sub_alloc6(hull
->ctx
,
1683 set
->p
[best
]->ineq
+ i
, 0, 1, 0, 1 + total
);
1684 if (!constraints
[i
].c
)
1686 constraints
[i
].ineq
= 1;
1688 for (i
= 0; i
< min_constraints
; ++i
) {
1689 struct isl_hash_table_entry
*entry
;
1691 c_hash
= isl_seq_get_hash(constraints
[i
].c
->row
[0] + 1, total
);
1692 entry
= isl_hash_table_find(hull
->ctx
, table
, c_hash
,
1693 max_constraint_equal
, constraints
[i
].c
->row
[0] + 1, 1);
1696 isl_assert(hull
->ctx
, !entry
->data
, goto error
);
1697 entry
->data
= &constraints
[i
];
1701 for (s
= 0; s
< set
->n
; ++s
) {
1705 for (i
= 0; i
< set
->p
[s
]->n_eq
; ++i
) {
1706 isl_int
*eq
= set
->p
[s
]->eq
[i
];
1707 for (j
= 0; j
< 2; ++j
) {
1708 isl_seq_neg(eq
, eq
, 1 + total
);
1709 update_constraint(hull
->ctx
, table
,
1713 for (i
= 0; i
< set
->p
[s
]->n_ineq
; ++i
) {
1714 isl_int
*ineq
= set
->p
[s
]->ineq
[i
];
1715 update_constraint(hull
->ctx
, table
, ineq
, total
, n
,
1716 set
->p
[s
]->n_eq
== 0);
1721 for (i
= 0; i
< min_constraints
; ++i
) {
1722 if (constraints
[i
].count
< n
)
1724 if (!constraints
[i
].ineq
)
1726 j
= isl_basic_set_alloc_inequality(hull
);
1729 isl_seq_cpy(hull
->ineq
[j
], constraints
[i
].c
->row
[0], 1 + total
);
1732 for (s
= 0; s
< set
->n
; ++s
) {
1733 if (set
->p
[s
]->n_eq
)
1735 if (set
->p
[s
]->n_ineq
!= hull
->n_ineq
)
1737 for (i
= 0; i
< set
->p
[s
]->n_ineq
; ++i
) {
1738 isl_int
*ineq
= set
->p
[s
]->ineq
[i
];
1739 if (!has_constraint(hull
->ctx
, table
, ineq
, total
, n
))
1742 if (i
== set
->p
[s
]->n_ineq
)
1746 isl_hash_table_clear(table
);
1747 for (i
= 0; i
< min_constraints
; ++i
)
1748 isl_mat_free(constraints
[i
].c
);
1753 isl_hash_table_clear(table
);
1756 for (i
= 0; i
< min_constraints
; ++i
)
1757 isl_mat_free(constraints
[i
].c
);
1762 /* Create a template for the convex hull of "set" and fill it up
1763 * obvious facet constraints, if any. If the result happens to
1764 * be the convex hull of "set" then *is_hull is set to 1.
1766 static struct isl_basic_set
*proto_hull(struct isl_set
*set
, int *is_hull
)
1768 struct isl_basic_set
*hull
;
1773 for (i
= 0; i
< set
->n
; ++i
) {
1774 n_ineq
+= set
->p
[i
]->n_eq
;
1775 n_ineq
+= set
->p
[i
]->n_ineq
;
1777 hull
= isl_basic_set_alloc_space(isl_space_copy(set
->dim
), 0, 0, n_ineq
);
1778 hull
= isl_basic_set_set_rational(hull
);
1781 return common_constraints(hull
, set
, is_hull
);
1784 static struct isl_basic_set
*uset_convex_hull_wrap(struct isl_set
*set
)
1786 struct isl_basic_set
*hull
;
1789 hull
= proto_hull(set
, &is_hull
);
1790 if (hull
&& !is_hull
) {
1791 if (hull
->n_ineq
== 0)
1792 hull
= initial_hull(hull
, set
);
1793 hull
= extend(hull
, set
);
1800 /* Compute the convex hull of a set without any parameters or
1801 * integer divisions. Depending on whether the set is bounded,
1802 * we pass control to the wrapping based convex hull or
1803 * the Fourier-Motzkin elimination based convex hull.
1804 * We also handle a few special cases before checking the boundedness.
1806 static struct isl_basic_set
*uset_convex_hull(struct isl_set
*set
)
1808 struct isl_basic_set
*convex_hull
= NULL
;
1809 struct isl_basic_set
*lin
;
1811 if (isl_set_n_dim(set
) == 0)
1812 return convex_hull_0d(set
);
1814 set
= isl_set_coalesce(set
);
1815 set
= isl_set_set_rational(set
);
1822 convex_hull
= isl_basic_set_copy(set
->p
[0]);
1826 if (isl_set_n_dim(set
) == 1)
1827 return convex_hull_1d(set
);
1829 if (isl_set_is_bounded(set
) &&
1830 set
->ctx
->opt
->convex
== ISL_CONVEX_HULL_WRAP
)
1831 return uset_convex_hull_wrap(set
);
1833 lin
= uset_combined_lineality_space(isl_set_copy(set
));
1836 if (isl_basic_set_is_universe(lin
)) {
1840 if (lin
->n_eq
< isl_basic_set_total_dim(lin
))
1841 return modulo_lineality(set
, lin
);
1842 isl_basic_set_free(lin
);
1844 return uset_convex_hull_unbounded(set
);
1847 isl_basic_set_free(convex_hull
);
1851 /* This is the core procedure, where "set" is a "pure" set, i.e.,
1852 * without parameters or divs and where the convex hull of set is
1853 * known to be full-dimensional.
1855 static struct isl_basic_set
*uset_convex_hull_wrap_bounded(struct isl_set
*set
)
1857 struct isl_basic_set
*convex_hull
= NULL
;
1862 if (isl_set_n_dim(set
) == 0) {
1863 convex_hull
= isl_basic_set_universe(isl_space_copy(set
->dim
));
1865 convex_hull
= isl_basic_set_set_rational(convex_hull
);
1869 set
= isl_set_set_rational(set
);
1870 set
= isl_set_coalesce(set
);
1874 convex_hull
= isl_basic_set_copy(set
->p
[0]);
1876 convex_hull
= isl_basic_map_remove_redundancies(convex_hull
);
1879 if (isl_set_n_dim(set
) == 1)
1880 return convex_hull_1d(set
);
1882 return uset_convex_hull_wrap(set
);
1888 /* Compute the convex hull of set "set" with affine hull "affine_hull",
1889 * We first remove the equalities (transforming the set), compute the
1890 * convex hull of the transformed set and then add the equalities back
1891 * (after performing the inverse transformation.
1893 static struct isl_basic_set
*modulo_affine_hull(
1894 struct isl_set
*set
, struct isl_basic_set
*affine_hull
)
1898 struct isl_basic_set
*dummy
;
1899 struct isl_basic_set
*convex_hull
;
1901 dummy
= isl_basic_set_remove_equalities(
1902 isl_basic_set_copy(affine_hull
), &T
, &T2
);
1905 isl_basic_set_free(dummy
);
1906 set
= isl_set_preimage(set
, T
);
1907 convex_hull
= uset_convex_hull(set
);
1908 convex_hull
= isl_basic_set_preimage(convex_hull
, T2
);
1909 convex_hull
= isl_basic_set_intersect(convex_hull
, affine_hull
);
1912 isl_basic_set_free(affine_hull
);
1917 /* Return an empty basic map living in the same space as "map".
1919 static __isl_give isl_basic_map
*replace_map_by_empty_basic_map(
1920 __isl_take isl_map
*map
)
1924 space
= isl_map_get_space(map
);
1926 return isl_basic_map_empty(space
);
1929 /* Compute the convex hull of a map.
1931 * The implementation was inspired by "Extended Convex Hull" by Fukuda et al.,
1932 * specifically, the wrapping of facets to obtain new facets.
1934 struct isl_basic_map
*isl_map_convex_hull(struct isl_map
*map
)
1936 struct isl_basic_set
*bset
;
1937 struct isl_basic_map
*model
= NULL
;
1938 struct isl_basic_set
*affine_hull
= NULL
;
1939 struct isl_basic_map
*convex_hull
= NULL
;
1940 struct isl_set
*set
= NULL
;
1942 map
= isl_map_detect_equalities(map
);
1943 map
= isl_map_align_divs(map
);
1948 return replace_map_by_empty_basic_map(map
);
1950 model
= isl_basic_map_copy(map
->p
[0]);
1951 set
= isl_map_underlying_set(map
);
1955 affine_hull
= isl_set_affine_hull(isl_set_copy(set
));
1958 if (affine_hull
->n_eq
!= 0)
1959 bset
= modulo_affine_hull(set
, affine_hull
);
1961 isl_basic_set_free(affine_hull
);
1962 bset
= uset_convex_hull(set
);
1965 convex_hull
= isl_basic_map_overlying_set(bset
, model
);
1969 ISL_F_SET(convex_hull
, ISL_BASIC_MAP_NO_IMPLICIT
);
1970 ISL_F_SET(convex_hull
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1971 ISL_F_CLR(convex_hull
, ISL_BASIC_MAP_RATIONAL
);
1975 isl_basic_map_free(model
);
1979 struct isl_basic_set
*isl_set_convex_hull(struct isl_set
*set
)
1981 return (struct isl_basic_set
*)
1982 isl_map_convex_hull((struct isl_map
*)set
);
1985 __isl_give isl_basic_map
*isl_map_polyhedral_hull(__isl_take isl_map
*map
)
1987 isl_basic_map
*hull
;
1989 hull
= isl_map_convex_hull(map
);
1990 return isl_basic_map_remove_divs(hull
);
1993 __isl_give isl_basic_set
*isl_set_polyhedral_hull(__isl_take isl_set
*set
)
1995 return (isl_basic_set
*)isl_map_polyhedral_hull((isl_map
*)set
);
1998 struct sh_data_entry
{
1999 struct isl_hash_table
*table
;
2000 struct isl_tab
*tab
;
2003 /* Holds the data needed during the simple hull computation.
2005 * n the number of basic sets in the original set
2006 * hull_table a hash table of already computed constraints
2007 * in the simple hull
2008 * p for each basic set,
2009 * table a hash table of the constraints
2010 * tab the tableau corresponding to the basic set
2013 struct isl_ctx
*ctx
;
2015 struct isl_hash_table
*hull_table
;
2016 struct sh_data_entry p
[1];
2019 static void sh_data_free(struct sh_data
*data
)
2025 isl_hash_table_free(data
->ctx
, data
->hull_table
);
2026 for (i
= 0; i
< data
->n
; ++i
) {
2027 isl_hash_table_free(data
->ctx
, data
->p
[i
].table
);
2028 isl_tab_free(data
->p
[i
].tab
);
2033 struct ineq_cmp_data
{
2038 static int has_ineq(const void *entry
, const void *val
)
2040 isl_int
*row
= (isl_int
*)entry
;
2041 struct ineq_cmp_data
*v
= (struct ineq_cmp_data
*)val
;
2043 return isl_seq_eq(row
+ 1, v
->p
+ 1, v
->len
) ||
2044 isl_seq_is_neg(row
+ 1, v
->p
+ 1, v
->len
);
2047 static int hash_ineq(struct isl_ctx
*ctx
, struct isl_hash_table
*table
,
2048 isl_int
*ineq
, unsigned len
)
2051 struct ineq_cmp_data v
;
2052 struct isl_hash_table_entry
*entry
;
2056 c_hash
= isl_seq_get_hash(ineq
+ 1, len
);
2057 entry
= isl_hash_table_find(ctx
, table
, c_hash
, has_ineq
, &v
, 1);
2064 /* Fill hash table "table" with the constraints of "bset".
2065 * Equalities are added as two inequalities.
2066 * The value in the hash table is a pointer to the (in)equality of "bset".
2068 static int hash_basic_set(struct isl_hash_table
*table
,
2069 struct isl_basic_set
*bset
)
2072 unsigned dim
= isl_basic_set_total_dim(bset
);
2074 for (i
= 0; i
< bset
->n_eq
; ++i
) {
2075 for (j
= 0; j
< 2; ++j
) {
2076 isl_seq_neg(bset
->eq
[i
], bset
->eq
[i
], 1 + dim
);
2077 if (hash_ineq(bset
->ctx
, table
, bset
->eq
[i
], dim
) < 0)
2081 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
2082 if (hash_ineq(bset
->ctx
, table
, bset
->ineq
[i
], dim
) < 0)
2088 static struct sh_data
*sh_data_alloc(struct isl_set
*set
, unsigned n_ineq
)
2090 struct sh_data
*data
;
2093 data
= isl_calloc(set
->ctx
, struct sh_data
,
2094 sizeof(struct sh_data
) +
2095 (set
->n
- 1) * sizeof(struct sh_data_entry
));
2098 data
->ctx
= set
->ctx
;
2100 data
->hull_table
= isl_hash_table_alloc(set
->ctx
, n_ineq
);
2101 if (!data
->hull_table
)
2103 for (i
= 0; i
< set
->n
; ++i
) {
2104 data
->p
[i
].table
= isl_hash_table_alloc(set
->ctx
,
2105 2 * set
->p
[i
]->n_eq
+ set
->p
[i
]->n_ineq
);
2106 if (!data
->p
[i
].table
)
2108 if (hash_basic_set(data
->p
[i
].table
, set
->p
[i
]) < 0)
2117 /* Check if inequality "ineq" is a bound for basic set "j" or if
2118 * it can be relaxed (by increasing the constant term) to become
2119 * a bound for that basic set. In the latter case, the constant
2121 * Relaxation of the constant term is only allowed if "shift" is set.
2123 * Return 1 if "ineq" is a bound
2124 * 0 if "ineq" may attain arbitrarily small values on basic set "j"
2125 * -1 if some error occurred
2127 static int is_bound(struct sh_data
*data
, struct isl_set
*set
, int j
,
2128 isl_int
*ineq
, int shift
)
2130 enum isl_lp_result res
;
2133 if (!data
->p
[j
].tab
) {
2134 data
->p
[j
].tab
= isl_tab_from_basic_set(set
->p
[j
], 0);
2135 if (!data
->p
[j
].tab
)
2141 res
= isl_tab_min(data
->p
[j
].tab
, ineq
, data
->ctx
->one
,
2143 if (res
== isl_lp_ok
&& isl_int_is_neg(opt
)) {
2145 isl_int_sub(ineq
[0], ineq
[0], opt
);
2147 res
= isl_lp_unbounded
;
2152 return (res
== isl_lp_ok
|| res
== isl_lp_empty
) ? 1 :
2153 res
== isl_lp_unbounded
? 0 : -1;
2156 /* Check if inequality "ineq" from basic set "i" is or can be relaxed to
2157 * become a bound on the whole set. If so, add the (relaxed) inequality
2158 * to "hull". Relaxation is only allowed if "shift" is set.
2160 * We first check if "hull" already contains a translate of the inequality.
2161 * If so, we are done.
2162 * Then, we check if any of the previous basic sets contains a translate
2163 * of the inequality. If so, then we have already considered this
2164 * inequality and we are done.
2165 * Otherwise, for each basic set other than "i", we check if the inequality
2166 * is a bound on the basic set.
2167 * For previous basic sets, we know that they do not contain a translate
2168 * of the inequality, so we directly call is_bound.
2169 * For following basic sets, we first check if a translate of the
2170 * inequality appears in its description and if so directly update
2171 * the inequality accordingly.
2173 static struct isl_basic_set
*add_bound(struct isl_basic_set
*hull
,
2174 struct sh_data
*data
, struct isl_set
*set
, int i
, isl_int
*ineq
,
2178 struct ineq_cmp_data v
;
2179 struct isl_hash_table_entry
*entry
;
2185 v
.len
= isl_basic_set_total_dim(hull
);
2187 c_hash
= isl_seq_get_hash(ineq
+ 1, v
.len
);
2189 entry
= isl_hash_table_find(hull
->ctx
, data
->hull_table
, c_hash
,
2194 for (j
= 0; j
< i
; ++j
) {
2195 entry
= isl_hash_table_find(hull
->ctx
, data
->p
[j
].table
,
2196 c_hash
, has_ineq
, &v
, 0);
2203 k
= isl_basic_set_alloc_inequality(hull
);
2206 isl_seq_cpy(hull
->ineq
[k
], ineq
, 1 + v
.len
);
2208 for (j
= 0; j
< i
; ++j
) {
2210 bound
= is_bound(data
, set
, j
, hull
->ineq
[k
], shift
);
2217 isl_basic_set_free_inequality(hull
, 1);
2221 for (j
= i
+ 1; j
< set
->n
; ++j
) {
2224 entry
= isl_hash_table_find(hull
->ctx
, data
->p
[j
].table
,
2225 c_hash
, has_ineq
, &v
, 0);
2227 ineq_j
= entry
->data
;
2228 neg
= isl_seq_is_neg(ineq_j
+ 1,
2229 hull
->ineq
[k
] + 1, v
.len
);
2231 isl_int_neg(ineq_j
[0], ineq_j
[0]);
2232 if (isl_int_gt(ineq_j
[0], hull
->ineq
[k
][0]))
2233 isl_int_set(hull
->ineq
[k
][0], ineq_j
[0]);
2235 isl_int_neg(ineq_j
[0], ineq_j
[0]);
2238 bound
= is_bound(data
, set
, j
, hull
->ineq
[k
], shift
);
2245 isl_basic_set_free_inequality(hull
, 1);
2249 entry
= isl_hash_table_find(hull
->ctx
, data
->hull_table
, c_hash
,
2253 entry
->data
= hull
->ineq
[k
];
2257 isl_basic_set_free(hull
);
2261 /* Check if any inequality from basic set "i" is or can be relaxed to
2262 * become a bound on the whole set. If so, add the (relaxed) inequality
2263 * to "hull". Relaxation is only allowed if "shift" is set.
2265 static struct isl_basic_set
*add_bounds(struct isl_basic_set
*bset
,
2266 struct sh_data
*data
, struct isl_set
*set
, int i
, int shift
)
2269 unsigned dim
= isl_basic_set_total_dim(bset
);
2271 for (j
= 0; j
< set
->p
[i
]->n_eq
; ++j
) {
2272 for (k
= 0; k
< 2; ++k
) {
2273 isl_seq_neg(set
->p
[i
]->eq
[j
], set
->p
[i
]->eq
[j
], 1+dim
);
2274 bset
= add_bound(bset
, data
, set
, i
, set
->p
[i
]->eq
[j
],
2278 for (j
= 0; j
< set
->p
[i
]->n_ineq
; ++j
)
2279 bset
= add_bound(bset
, data
, set
, i
, set
->p
[i
]->ineq
[j
], shift
);
2283 /* Compute a superset of the convex hull of set that is described
2284 * by only (translates of) the constraints in the constituents of set.
2285 * Translation is only allowed if "shift" is set.
2287 static __isl_give isl_basic_set
*uset_simple_hull(__isl_take isl_set
*set
,
2290 struct sh_data
*data
= NULL
;
2291 struct isl_basic_set
*hull
= NULL
;
2299 for (i
= 0; i
< set
->n
; ++i
) {
2302 n_ineq
+= 2 * set
->p
[i
]->n_eq
+ set
->p
[i
]->n_ineq
;
2305 hull
= isl_basic_set_alloc_space(isl_space_copy(set
->dim
), 0, 0, n_ineq
);
2309 data
= sh_data_alloc(set
, n_ineq
);
2313 for (i
= 0; i
< set
->n
; ++i
)
2314 hull
= add_bounds(hull
, data
, set
, i
, shift
);
2322 isl_basic_set_free(hull
);
2327 /* Compute a superset of the convex hull of map that is described
2328 * by only (translates of) the constraints in the constituents of map.
2329 * Translation is only allowed if "shift" is set.
2331 static __isl_give isl_basic_map
*map_simple_hull(__isl_take isl_map
*map
,
2334 struct isl_set
*set
= NULL
;
2335 struct isl_basic_map
*model
= NULL
;
2336 struct isl_basic_map
*hull
;
2337 struct isl_basic_map
*affine_hull
;
2338 struct isl_basic_set
*bset
= NULL
;
2343 return replace_map_by_empty_basic_map(map
);
2345 hull
= isl_basic_map_copy(map
->p
[0]);
2350 map
= isl_map_detect_equalities(map
);
2351 affine_hull
= isl_map_affine_hull(isl_map_copy(map
));
2352 map
= isl_map_align_divs(map
);
2353 model
= map
? isl_basic_map_copy(map
->p
[0]) : NULL
;
2355 set
= isl_map_underlying_set(map
);
2357 bset
= uset_simple_hull(set
, shift
);
2359 hull
= isl_basic_map_overlying_set(bset
, model
);
2361 hull
= isl_basic_map_intersect(hull
, affine_hull
);
2362 hull
= isl_basic_map_remove_redundancies(hull
);
2366 ISL_F_SET(hull
, ISL_BASIC_MAP_NO_IMPLICIT
);
2367 ISL_F_SET(hull
, ISL_BASIC_MAP_ALL_EQUALITIES
);
2369 hull
= isl_basic_map_finalize(hull
);
2374 /* Compute a superset of the convex hull of map that is described
2375 * by only translates of the constraints in the constituents of map.
2377 __isl_give isl_basic_map
*isl_map_simple_hull(__isl_take isl_map
*map
)
2379 return map_simple_hull(map
, 1);
2382 struct isl_basic_set
*isl_set_simple_hull(struct isl_set
*set
)
2384 return (struct isl_basic_set
*)
2385 isl_map_simple_hull((struct isl_map
*)set
);
2388 /* Compute a superset of the convex hull of map that is described
2389 * by only the constraints in the constituents of map.
2391 __isl_give isl_basic_map
*isl_map_unshifted_simple_hull(
2392 __isl_take isl_map
*map
)
2394 return map_simple_hull(map
, 0);
2397 __isl_give isl_basic_set
*isl_set_unshifted_simple_hull(
2398 __isl_take isl_set
*set
)
2400 return isl_map_unshifted_simple_hull(set
);
2403 /* Check if "ineq" is a bound on "set" and, if so, add it to "hull".
2405 * For each basic set in "set", we first check if the basic set
2406 * contains a translate of "ineq". If this translate is more relaxed,
2407 * then we assume that "ineq" is not a bound on this basic set.
2408 * Otherwise, we know that it is a bound.
2409 * If the basic set does not contain a translate of "ineq", then
2410 * we call is_bound to perform the test.
2412 static __isl_give isl_basic_set
*add_bound_from_constraint(
2413 __isl_take isl_basic_set
*hull
, struct sh_data
*data
,
2414 __isl_keep isl_set
*set
, isl_int
*ineq
)
2419 struct ineq_cmp_data v
;
2422 return isl_basic_set_free(hull
);
2424 v
.len
= isl_basic_set_total_dim(hull
);
2426 c_hash
= isl_seq_get_hash(ineq
+ 1, v
.len
);
2428 ctx
= isl_basic_set_get_ctx(hull
);
2429 for (i
= 0; i
< set
->n
; ++i
) {
2431 struct isl_hash_table_entry
*entry
;
2433 entry
= isl_hash_table_find(ctx
, data
->p
[i
].table
,
2434 c_hash
, &has_ineq
, &v
, 0);
2436 isl_int
*ineq_i
= entry
->data
;
2437 int neg
, more_relaxed
;
2439 neg
= isl_seq_is_neg(ineq_i
+ 1, ineq
+ 1, v
.len
);
2441 isl_int_neg(ineq_i
[0], ineq_i
[0]);
2442 more_relaxed
= isl_int_gt(ineq_i
[0], ineq
[0]);
2444 isl_int_neg(ineq_i
[0], ineq_i
[0]);
2450 bound
= is_bound(data
, set
, i
, ineq
, 0);
2452 return isl_basic_set_free(hull
);
2459 k
= isl_basic_set_alloc_inequality(hull
);
2461 return isl_basic_set_free(hull
);
2462 isl_seq_cpy(hull
->ineq
[k
], ineq
, 1 + v
.len
);
2467 /* Compute a superset of the convex hull of "set" that is described
2468 * by only some of the "n_ineq" constraints in the list "ineq", where "set"
2469 * has no parameters or integer divisions.
2471 * The inequalities in "ineq" are assumed to have been sorted such
2472 * that constraints with the same linear part appear together and
2473 * that among constraints with the same linear part, those with
2474 * smaller constant term appear first.
2476 * We reuse the same data structure that is used by uset_simple_hull,
2477 * but we do not need the hull table since we will not consider the
2478 * same constraint more than once. We therefore allocate it with zero size.
2480 * We run through the constraints and try to add them one by one,
2481 * skipping identical constraints. If we have added a constraint and
2482 * the next constraint is a more relaxed translate, then we skip this
2483 * next constraint as well.
2485 static __isl_give isl_basic_set
*uset_unshifted_simple_hull_from_constraints(
2486 __isl_take isl_set
*set
, int n_ineq
, isl_int
**ineq
)
2490 struct sh_data
*data
= NULL
;
2491 isl_basic_set
*hull
= NULL
;
2494 hull
= isl_basic_set_alloc_space(isl_set_get_space(set
), 0, 0, n_ineq
);
2498 data
= sh_data_alloc(set
, 0);
2502 dim
= isl_set_dim(set
, isl_dim_set
);
2503 for (i
= 0; i
< n_ineq
; ++i
) {
2504 int hull_n_ineq
= hull
->n_ineq
;
2507 parallel
= i
> 0 && isl_seq_eq(ineq
[i
- 1] + 1, ineq
[i
] + 1,
2510 (last_added
|| isl_int_eq(ineq
[i
- 1][0], ineq
[i
][0])))
2512 hull
= add_bound_from_constraint(hull
, data
, set
, ineq
[i
]);
2515 last_added
= hull
->n_ineq
> hull_n_ineq
;
2524 isl_basic_set_free(hull
);
2528 /* Collect pointers to all the inequalities in the elements of "list"
2529 * in "ineq". For equalities, store both a pointer to the equality and
2530 * a pointer to its opposite, which is first copied to "mat".
2531 * "ineq" and "mat" are assumed to have been preallocated to the right size
2532 * (the number of inequalities + 2 times the number of equalites and
2533 * the number of equalities, respectively).
2535 static __isl_give isl_mat
*collect_inequalities(__isl_take isl_mat
*mat
,
2536 __isl_keep isl_basic_set_list
*list
, isl_int
**ineq
)
2538 int i
, j
, n
, n_eq
, n_ineq
;
2545 n
= isl_basic_set_list_n_basic_set(list
);
2546 for (i
= 0; i
< n
; ++i
) {
2547 isl_basic_set
*bset
;
2548 bset
= isl_basic_set_list_get_basic_set(list
, i
);
2550 return isl_mat_free(mat
);
2551 for (j
= 0; j
< bset
->n_eq
; ++j
) {
2552 ineq
[n_ineq
++] = mat
->row
[n_eq
];
2553 ineq
[n_ineq
++] = bset
->eq
[j
];
2554 isl_seq_neg(mat
->row
[n_eq
++], bset
->eq
[j
], mat
->n_col
);
2556 for (j
= 0; j
< bset
->n_ineq
; ++j
)
2557 ineq
[n_ineq
++] = bset
->ineq
[j
];
2558 isl_basic_set_free(bset
);
2564 /* Comparison routine for use as an isl_sort callback.
2566 * Constraints with the same linear part are sorted together and
2567 * among constraints with the same linear part, those with smaller
2568 * constant term are sorted first.
2570 static int cmp_ineq(const void *a
, const void *b
, void *arg
)
2572 unsigned dim
= *(unsigned *) arg
;
2573 isl_int
* const *ineq1
= a
;
2574 isl_int
* const *ineq2
= b
;
2577 cmp
= isl_seq_cmp((*ineq1
) + 1, (*ineq2
) + 1, dim
);
2580 return isl_int_cmp((*ineq1
)[0], (*ineq2
)[0]);
2583 /* Compute a superset of the convex hull of "set" that is described
2584 * by only constraints in the elements of "list", where "set" has
2585 * no parameters or integer divisions.
2587 * We collect all the constraints in those elements and then
2588 * sort the constraints such that constraints with the same linear part
2589 * are sorted together and that those with smaller constant term are
2592 static __isl_give isl_basic_set
*uset_unshifted_simple_hull_from_basic_set_list(
2593 __isl_take isl_set
*set
, __isl_take isl_basic_set_list
*list
)
2595 int i
, n
, n_eq
, n_ineq
;
2598 isl_mat
*mat
= NULL
;
2599 isl_int
**ineq
= NULL
;
2600 isl_basic_set
*hull
;
2604 ctx
= isl_set_get_ctx(set
);
2608 n
= isl_basic_set_list_n_basic_set(list
);
2609 for (i
= 0; i
< n
; ++i
) {
2610 isl_basic_set
*bset
;
2611 bset
= isl_basic_set_list_get_basic_set(list
, i
);
2615 n_ineq
+= 2 * bset
->n_eq
+ bset
->n_ineq
;
2616 isl_basic_set_free(bset
);
2619 ineq
= isl_alloc_array(ctx
, isl_int
*, n_ineq
);
2620 if (n_ineq
> 0 && !ineq
)
2623 dim
= isl_set_dim(set
, isl_dim_set
);
2624 mat
= isl_mat_alloc(ctx
, n_eq
, 1 + dim
);
2625 mat
= collect_inequalities(mat
, list
, ineq
);
2629 if (isl_sort(ineq
, n_ineq
, sizeof(ineq
[0]), &cmp_ineq
, &dim
) < 0)
2632 hull
= uset_unshifted_simple_hull_from_constraints(set
, n_ineq
, ineq
);
2636 isl_basic_set_list_free(list
);
2642 isl_basic_set_list_free(list
);
2646 /* Compute a superset of the convex hull of "map" that is described
2647 * by only constraints in the elements of "list".
2649 * If the list is empty, then we can only describe the universe set.
2650 * If the input map is empty, then all constraints are valid, so
2651 * we return the intersection of the elements in "list".
2653 * Otherwise, we align all divs and temporarily treat them
2654 * as regular variables, computing the unshifted simple hull in
2655 * uset_unshifted_simple_hull_from_basic_set_list.
2657 static __isl_give isl_basic_map
*map_unshifted_simple_hull_from_basic_map_list(
2658 __isl_take isl_map
*map
, __isl_take isl_basic_map_list
*list
)
2660 isl_basic_map
*model
;
2661 isl_basic_map
*hull
;
2663 isl_basic_set_list
*bset_list
;
2668 if (isl_basic_map_list_n_basic_map(list
) == 0) {
2671 space
= isl_map_get_space(map
);
2673 isl_basic_map_list_free(list
);
2674 return isl_basic_map_universe(space
);
2676 if (isl_map_plain_is_empty(map
)) {
2678 return isl_basic_map_list_intersect(list
);
2681 map
= isl_map_align_divs_to_basic_map_list(map
, list
);
2684 list
= isl_basic_map_list_align_divs_to_basic_map(list
, map
->p
[0]);
2686 model
= isl_basic_map_list_get_basic_map(list
, 0);
2688 set
= isl_map_underlying_set(map
);
2689 bset_list
= isl_basic_map_list_underlying_set(list
);
2691 hull
= uset_unshifted_simple_hull_from_basic_set_list(set
, bset_list
);
2692 hull
= isl_basic_map_overlying_set(hull
, model
);
2697 isl_basic_map_list_free(list
);
2701 /* Return a sequence of the basic maps that make up the maps in "list".
2703 static __isl_give isl_basic_set_list
*collect_basic_maps(
2704 __isl_take isl_map_list
*list
)
2708 isl_basic_map_list
*bmap_list
;
2712 n
= isl_map_list_n_map(list
);
2713 ctx
= isl_map_list_get_ctx(list
);
2714 bmap_list
= isl_basic_map_list_alloc(ctx
, 0);
2716 for (i
= 0; i
< n
; ++i
) {
2718 isl_basic_map_list
*list_i
;
2720 map
= isl_map_list_get_map(list
, i
);
2721 map
= isl_map_compute_divs(map
);
2722 list_i
= isl_map_get_basic_map_list(map
);
2724 bmap_list
= isl_basic_map_list_concat(bmap_list
, list_i
);
2727 isl_map_list_free(list
);
2731 /* Compute a superset of the convex hull of "map" that is described
2732 * by only constraints in the elements of "list".
2734 * If "map" is the universe, then the convex hull (and therefore
2735 * any superset of the convexhull) is the universe as well.
2737 * Otherwise, we collect all the basic maps in the map list and
2738 * continue with map_unshifted_simple_hull_from_basic_map_list.
2740 __isl_give isl_basic_map
*isl_map_unshifted_simple_hull_from_map_list(
2741 __isl_take isl_map
*map
, __isl_take isl_map_list
*list
)
2743 isl_basic_map_list
*bmap_list
;
2746 is_universe
= isl_map_plain_is_universe(map
);
2747 if (is_universe
< 0)
2748 map
= isl_map_free(map
);
2749 if (is_universe
< 0 || is_universe
) {
2750 isl_map_list_free(list
);
2751 return isl_map_unshifted_simple_hull(map
);
2754 bmap_list
= collect_basic_maps(list
);
2755 return map_unshifted_simple_hull_from_basic_map_list(map
, bmap_list
);
2758 /* Compute a superset of the convex hull of "set" that is described
2759 * by only constraints in the elements of "list".
2761 __isl_give isl_basic_set
*isl_set_unshifted_simple_hull_from_set_list(
2762 __isl_take isl_set
*set
, __isl_take isl_set_list
*list
)
2764 return isl_map_unshifted_simple_hull_from_map_list(set
, list
);
2767 /* Given a set "set", return parametric bounds on the dimension "dim".
2769 static struct isl_basic_set
*set_bounds(struct isl_set
*set
, int dim
)
2771 unsigned set_dim
= isl_set_dim(set
, isl_dim_set
);
2772 set
= isl_set_copy(set
);
2773 set
= isl_set_eliminate_dims(set
, dim
+ 1, set_dim
- (dim
+ 1));
2774 set
= isl_set_eliminate_dims(set
, 0, dim
);
2775 return isl_set_convex_hull(set
);
2778 /* Computes a "simple hull" and then check if each dimension in the
2779 * resulting hull is bounded by a symbolic constant. If not, the
2780 * hull is intersected with the corresponding bounds on the whole set.
2782 struct isl_basic_set
*isl_set_bounded_simple_hull(struct isl_set
*set
)
2785 struct isl_basic_set
*hull
;
2786 unsigned nparam
, left
;
2787 int removed_divs
= 0;
2789 hull
= isl_set_simple_hull(isl_set_copy(set
));
2793 nparam
= isl_basic_set_dim(hull
, isl_dim_param
);
2794 for (i
= 0; i
< isl_basic_set_dim(hull
, isl_dim_set
); ++i
) {
2795 int lower
= 0, upper
= 0;
2796 struct isl_basic_set
*bounds
;
2798 left
= isl_basic_set_total_dim(hull
) - nparam
- i
- 1;
2799 for (j
= 0; j
< hull
->n_eq
; ++j
) {
2800 if (isl_int_is_zero(hull
->eq
[j
][1 + nparam
+ i
]))
2802 if (isl_seq_first_non_zero(hull
->eq
[j
]+1+nparam
+i
+1,
2809 for (j
= 0; j
< hull
->n_ineq
; ++j
) {
2810 if (isl_int_is_zero(hull
->ineq
[j
][1 + nparam
+ i
]))
2812 if (isl_seq_first_non_zero(hull
->ineq
[j
]+1+nparam
+i
+1,
2814 isl_seq_first_non_zero(hull
->ineq
[j
]+1+nparam
,
2817 if (isl_int_is_pos(hull
->ineq
[j
][1 + nparam
+ i
]))
2828 if (!removed_divs
) {
2829 set
= isl_set_remove_divs(set
);
2834 bounds
= set_bounds(set
, i
);
2835 hull
= isl_basic_set_intersect(hull
, bounds
);