2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012 Ecole Normale Superieure
6 * Use of this software is governed by the MIT license
8 * Written by Sven Verdoolaege, K.U.Leuven, Departement
9 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
10 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
11 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
12 * and Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France
15 #include <isl_ctx_private.h>
16 #include <isl_map_private.h>
21 #include "isl_equalities.h"
22 #include "isl_sample.h"
24 #include <isl_mat_private.h>
25 #include <isl_vec_private.h>
27 #include <bset_to_bmap.c>
28 #include <bset_from_bmap.c>
29 #include <set_to_map.c>
30 #include <set_from_map.c>
32 struct isl_basic_map
*isl_basic_map_implicit_equalities(
33 struct isl_basic_map
*bmap
)
40 bmap
= isl_basic_map_gauss(bmap
, NULL
);
41 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
43 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
))
45 if (bmap
->n_ineq
<= 1)
48 tab
= isl_tab_from_basic_map(bmap
, 0);
49 if (isl_tab_detect_implicit_equalities(tab
) < 0)
51 bmap
= isl_basic_map_update_from_tab(bmap
, tab
);
53 bmap
= isl_basic_map_gauss(bmap
, NULL
);
54 ISL_F_SET(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
58 isl_basic_map_free(bmap
);
62 struct isl_basic_set
*isl_basic_set_implicit_equalities(
63 struct isl_basic_set
*bset
)
65 return bset_from_bmap(
66 isl_basic_map_implicit_equalities(bset_to_bmap(bset
)));
69 struct isl_map
*isl_map_implicit_equalities(struct isl_map
*map
)
76 for (i
= 0; i
< map
->n
; ++i
) {
77 map
->p
[i
] = isl_basic_map_implicit_equalities(map
->p
[i
]);
88 /* Make eq[row][col] of both bmaps equal so we can add the row
89 * add the column to the common matrix.
90 * Note that because of the echelon form, the columns of row row
91 * after column col are zero.
93 static void set_common_multiple(
94 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
,
95 unsigned row
, unsigned col
)
99 if (isl_int_eq(bset1
->eq
[row
][col
], bset2
->eq
[row
][col
]))
104 isl_int_lcm(m
, bset1
->eq
[row
][col
], bset2
->eq
[row
][col
]);
105 isl_int_divexact(c
, m
, bset1
->eq
[row
][col
]);
106 isl_seq_scale(bset1
->eq
[row
], bset1
->eq
[row
], c
, col
+1);
107 isl_int_divexact(c
, m
, bset2
->eq
[row
][col
]);
108 isl_seq_scale(bset2
->eq
[row
], bset2
->eq
[row
], c
, col
+1);
113 /* Delete a given equality, moving all the following equalities one up.
115 static void delete_row(struct isl_basic_set
*bset
, unsigned row
)
122 for (r
= row
; r
< bset
->n_eq
; ++r
)
123 bset
->eq
[r
] = bset
->eq
[r
+1];
124 bset
->eq
[bset
->n_eq
] = t
;
127 /* Make first row entries in column col of bset1 identical to
128 * those of bset2, using the fact that entry bset1->eq[row][col]=a
129 * is non-zero. Initially, these elements of bset1 are all zero.
130 * For each row i < row, we set
131 * A[i] = a * A[i] + B[i][col] * A[row]
134 * A[i][col] = B[i][col] = a * old(B[i][col])
136 static void construct_column(
137 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
,
138 unsigned row
, unsigned col
)
147 total
= 1 + isl_basic_set_n_dim(bset1
);
148 for (r
= 0; r
< row
; ++r
) {
149 if (isl_int_is_zero(bset2
->eq
[r
][col
]))
151 isl_int_gcd(b
, bset2
->eq
[r
][col
], bset1
->eq
[row
][col
]);
152 isl_int_divexact(a
, bset1
->eq
[row
][col
], b
);
153 isl_int_divexact(b
, bset2
->eq
[r
][col
], b
);
154 isl_seq_combine(bset1
->eq
[r
], a
, bset1
->eq
[r
],
155 b
, bset1
->eq
[row
], total
);
156 isl_seq_scale(bset2
->eq
[r
], bset2
->eq
[r
], a
, total
);
160 delete_row(bset1
, row
);
163 /* Make first row entries in column col of bset1 identical to
164 * those of bset2, using only these entries of the two matrices.
165 * Let t be the last row with different entries.
166 * For each row i < t, we set
167 * A[i] = (A[t][col]-B[t][col]) * A[i] + (B[i][col]-A[i][col) * A[t]
168 * B[i] = (A[t][col]-B[t][col]) * B[i] + (B[i][col]-A[i][col) * B[t]
170 * A[i][col] = B[i][col] = old(A[t][col]*B[i][col]-A[i][col]*B[t][col])
172 static int transform_column(
173 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
,
174 unsigned row
, unsigned col
)
180 for (t
= row
-1; t
>= 0; --t
)
181 if (isl_int_ne(bset1
->eq
[t
][col
], bset2
->eq
[t
][col
]))
186 total
= 1 + isl_basic_set_n_dim(bset1
);
190 isl_int_sub(b
, bset1
->eq
[t
][col
], bset2
->eq
[t
][col
]);
191 for (i
= 0; i
< t
; ++i
) {
192 isl_int_sub(a
, bset2
->eq
[i
][col
], bset1
->eq
[i
][col
]);
193 isl_int_gcd(g
, a
, b
);
194 isl_int_divexact(a
, a
, g
);
195 isl_int_divexact(g
, b
, g
);
196 isl_seq_combine(bset1
->eq
[i
], g
, bset1
->eq
[i
], a
, bset1
->eq
[t
],
198 isl_seq_combine(bset2
->eq
[i
], g
, bset2
->eq
[i
], a
, bset2
->eq
[t
],
204 delete_row(bset1
, t
);
205 delete_row(bset2
, t
);
209 /* The implementation is based on Section 5.2 of Michael Karr,
210 * "Affine Relationships Among Variables of a Program",
211 * except that the echelon form we use starts from the last column
212 * and that we are dealing with integer coefficients.
214 static struct isl_basic_set
*affine_hull(
215 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
221 if (!bset1
|| !bset2
)
224 total
= 1 + isl_basic_set_n_dim(bset1
);
227 for (col
= total
-1; col
>= 0; --col
) {
228 int is_zero1
= row
>= bset1
->n_eq
||
229 isl_int_is_zero(bset1
->eq
[row
][col
]);
230 int is_zero2
= row
>= bset2
->n_eq
||
231 isl_int_is_zero(bset2
->eq
[row
][col
]);
232 if (!is_zero1
&& !is_zero2
) {
233 set_common_multiple(bset1
, bset2
, row
, col
);
235 } else if (!is_zero1
&& is_zero2
) {
236 construct_column(bset1
, bset2
, row
, col
);
237 } else if (is_zero1
&& !is_zero2
) {
238 construct_column(bset2
, bset1
, row
, col
);
240 if (transform_column(bset1
, bset2
, row
, col
))
244 isl_assert(bset1
->ctx
, row
== bset1
->n_eq
, goto error
);
245 isl_basic_set_free(bset2
);
246 bset1
= isl_basic_set_normalize_constraints(bset1
);
249 isl_basic_set_free(bset1
);
250 isl_basic_set_free(bset2
);
254 /* Find an integer point in the set represented by "tab"
255 * that lies outside of the equality "eq" e(x) = 0.
256 * If "up" is true, look for a point satisfying e(x) - 1 >= 0.
257 * Otherwise, look for a point satisfying -e(x) - 1 >= 0 (i.e., e(x) <= -1).
258 * The point, if found, is returned.
259 * If no point can be found, a zero-length vector is returned.
261 * Before solving an ILP problem, we first check if simply
262 * adding the normal of the constraint to one of the known
263 * integer points in the basic set represented by "tab"
264 * yields another point inside the basic set.
266 * The caller of this function ensures that the tableau is bounded or
267 * that tab->basis and tab->n_unbounded have been set appropriately.
269 static struct isl_vec
*outside_point(struct isl_tab
*tab
, isl_int
*eq
, int up
)
272 struct isl_vec
*sample
= NULL
;
273 struct isl_tab_undo
*snap
;
281 sample
= isl_vec_alloc(ctx
, 1 + dim
);
284 isl_int_set_si(sample
->el
[0], 1);
285 isl_seq_combine(sample
->el
+ 1,
286 ctx
->one
, tab
->bmap
->sample
->el
+ 1,
287 up
? ctx
->one
: ctx
->negone
, eq
+ 1, dim
);
288 if (isl_basic_map_contains(tab
->bmap
, sample
))
290 isl_vec_free(sample
);
293 snap
= isl_tab_snap(tab
);
296 isl_seq_neg(eq
, eq
, 1 + dim
);
297 isl_int_sub_ui(eq
[0], eq
[0], 1);
299 if (isl_tab_extend_cons(tab
, 1) < 0)
301 if (isl_tab_add_ineq(tab
, eq
) < 0)
304 sample
= isl_tab_sample(tab
);
306 isl_int_add_ui(eq
[0], eq
[0], 1);
308 isl_seq_neg(eq
, eq
, 1 + dim
);
310 if (sample
&& isl_tab_rollback(tab
, snap
) < 0)
315 isl_vec_free(sample
);
319 struct isl_basic_set
*isl_basic_set_recession_cone(struct isl_basic_set
*bset
)
323 bset
= isl_basic_set_cow(bset
);
326 isl_assert(bset
->ctx
, bset
->n_div
== 0, goto error
);
328 for (i
= 0; i
< bset
->n_eq
; ++i
)
329 isl_int_set_si(bset
->eq
[i
][0], 0);
331 for (i
= 0; i
< bset
->n_ineq
; ++i
)
332 isl_int_set_si(bset
->ineq
[i
][0], 0);
334 ISL_F_CLR(bset
, ISL_BASIC_SET_NO_IMPLICIT
);
335 return isl_basic_set_implicit_equalities(bset
);
337 isl_basic_set_free(bset
);
341 __isl_give isl_set
*isl_set_recession_cone(__isl_take isl_set
*set
)
350 set
= isl_set_remove_divs(set
);
351 set
= isl_set_cow(set
);
355 for (i
= 0; i
< set
->n
; ++i
) {
356 set
->p
[i
] = isl_basic_set_recession_cone(set
->p
[i
]);
367 /* Move "sample" to a point that is one up (or down) from the original
368 * point in dimension "pos".
370 static void adjacent_point(__isl_keep isl_vec
*sample
, int pos
, int up
)
373 isl_int_add_ui(sample
->el
[1 + pos
], sample
->el
[1 + pos
], 1);
375 isl_int_sub_ui(sample
->el
[1 + pos
], sample
->el
[1 + pos
], 1);
378 /* Check if any points that are adjacent to "sample" also belong to "bset".
379 * If so, add them to "hull" and return the updated hull.
381 * Before checking whether and adjacent point belongs to "bset", we first
382 * check whether it already belongs to "hull" as this test is typically
385 static __isl_give isl_basic_set
*add_adjacent_points(
386 __isl_take isl_basic_set
*hull
, __isl_take isl_vec
*sample
,
387 __isl_keep isl_basic_set
*bset
)
395 dim
= isl_basic_set_dim(hull
, isl_dim_set
);
397 for (i
= 0; i
< dim
; ++i
) {
398 for (up
= 0; up
<= 1; ++up
) {
400 isl_basic_set
*point
;
402 adjacent_point(sample
, i
, up
);
403 contains
= isl_basic_set_contains(hull
, sample
);
407 adjacent_point(sample
, i
, !up
);
410 contains
= isl_basic_set_contains(bset
, sample
);
414 point
= isl_basic_set_from_vec(
415 isl_vec_copy(sample
));
416 hull
= affine_hull(hull
, point
);
418 adjacent_point(sample
, i
, !up
);
424 isl_vec_free(sample
);
428 isl_vec_free(sample
);
429 isl_basic_set_free(hull
);
433 /* Extend an initial (under-)approximation of the affine hull of basic
434 * set represented by the tableau "tab"
435 * by looking for points that do not satisfy one of the equalities
436 * in the current approximation and adding them to that approximation
437 * until no such points can be found any more.
439 * The caller of this function ensures that "tab" is bounded or
440 * that tab->basis and tab->n_unbounded have been set appropriately.
442 * "bset" may be either NULL or the basic set represented by "tab".
443 * If "bset" is not NULL, we check for any point we find if any
444 * of its adjacent points also belong to "bset".
446 static __isl_give isl_basic_set
*extend_affine_hull(struct isl_tab
*tab
,
447 __isl_take isl_basic_set
*hull
, __isl_keep isl_basic_set
*bset
)
457 if (isl_tab_extend_cons(tab
, 2 * dim
+ 1) < 0)
460 for (i
= 0; i
< dim
; ++i
) {
461 struct isl_vec
*sample
;
462 struct isl_basic_set
*point
;
463 for (j
= 0; j
< hull
->n_eq
; ++j
) {
464 sample
= outside_point(tab
, hull
->eq
[j
], 1);
467 if (sample
->size
> 0)
469 isl_vec_free(sample
);
470 sample
= outside_point(tab
, hull
->eq
[j
], 0);
473 if (sample
->size
> 0)
475 isl_vec_free(sample
);
477 if (isl_tab_add_eq(tab
, hull
->eq
[j
]) < 0)
483 isl_tab_add_sample(tab
, isl_vec_copy(sample
)) < 0)
484 hull
= isl_basic_set_free(hull
);
486 hull
= add_adjacent_points(hull
, isl_vec_copy(sample
),
488 point
= isl_basic_set_from_vec(sample
);
489 hull
= affine_hull(hull
, point
);
496 isl_basic_set_free(hull
);
500 /* Drop all constraints in bmap that involve any of the dimensions
501 * first to first+n-1.
503 static __isl_give isl_basic_map
*isl_basic_map_drop_constraints_involving(
504 __isl_take isl_basic_map
*bmap
, unsigned first
, unsigned n
)
511 bmap
= isl_basic_map_cow(bmap
);
516 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
517 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + first
, n
) == -1)
519 isl_basic_map_drop_equality(bmap
, i
);
522 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
523 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + first
, n
) == -1)
525 isl_basic_map_drop_inequality(bmap
, i
);
528 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
532 /* Drop all constraints in bset that involve any of the dimensions
533 * first to first+n-1.
535 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_involving(
536 __isl_take isl_basic_set
*bset
, unsigned first
, unsigned n
)
538 return isl_basic_map_drop_constraints_involving(bset
, first
, n
);
541 /* Drop all constraints in bmap that do not involve any of the dimensions
542 * first to first + n - 1 of the given type.
544 __isl_give isl_basic_map
*isl_basic_map_drop_constraints_not_involving_dims(
545 __isl_take isl_basic_map
*bmap
,
546 enum isl_dim_type type
, unsigned first
, unsigned n
)
552 isl_space
*space
= isl_basic_map_get_space(bmap
);
553 isl_basic_map_free(bmap
);
554 return isl_basic_map_universe(space
);
556 bmap
= isl_basic_map_cow(bmap
);
560 dim
= isl_basic_map_dim(bmap
, type
);
561 if (first
+ n
> dim
|| first
+ n
< first
)
562 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
563 "index out of bounds", return isl_basic_map_free(bmap
));
565 first
+= isl_basic_map_offset(bmap
, type
) - 1;
567 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
568 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + first
, n
) != -1)
570 isl_basic_map_drop_equality(bmap
, i
);
573 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
574 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + first
, n
) != -1)
576 isl_basic_map_drop_inequality(bmap
, i
);
579 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
583 /* Drop all constraints in bset that do not involve any of the dimensions
584 * first to first + n - 1 of the given type.
586 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_not_involving_dims(
587 __isl_take isl_basic_set
*bset
,
588 enum isl_dim_type type
, unsigned first
, unsigned n
)
590 return isl_basic_map_drop_constraints_not_involving_dims(bset
,
594 /* Drop all constraints in bmap that involve any of the dimensions
595 * first to first + n - 1 of the given type.
597 __isl_give isl_basic_map
*isl_basic_map_drop_constraints_involving_dims(
598 __isl_take isl_basic_map
*bmap
,
599 enum isl_dim_type type
, unsigned first
, unsigned n
)
608 dim
= isl_basic_map_dim(bmap
, type
);
609 if (first
+ n
> dim
|| first
+ n
< first
)
610 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
611 "index out of bounds", return isl_basic_map_free(bmap
));
613 bmap
= isl_basic_map_remove_divs_involving_dims(bmap
, type
, first
, n
);
614 first
+= isl_basic_map_offset(bmap
, type
) - 1;
615 return isl_basic_map_drop_constraints_involving(bmap
, first
, n
);
618 /* Drop all constraints in bset that involve any of the dimensions
619 * first to first + n - 1 of the given type.
621 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_involving_dims(
622 __isl_take isl_basic_set
*bset
,
623 enum isl_dim_type type
, unsigned first
, unsigned n
)
625 return isl_basic_map_drop_constraints_involving_dims(bset
,
629 /* Drop constraints from "map" by applying "drop" to each basic map.
631 __isl_give isl_map
*drop_constraints(__isl_take isl_map
*map
,
632 enum isl_dim_type type
, unsigned first
, unsigned n
,
633 __isl_give isl_basic_map
*(*drop
)(__isl_take isl_basic_map
*bmap
,
634 enum isl_dim_type type
, unsigned first
, unsigned n
))
642 dim
= isl_map_dim(map
, type
);
643 if (first
+ n
> dim
|| first
+ n
< first
)
644 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
645 "index out of bounds", return isl_map_free(map
));
647 map
= isl_map_cow(map
);
651 for (i
= 0; i
< map
->n
; ++i
) {
652 map
->p
[i
] = drop(map
->p
[i
], type
, first
, n
);
654 return isl_map_free(map
);
658 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
663 /* Drop all constraints in map that involve any of the dimensions
664 * first to first + n - 1 of the given type.
666 __isl_give isl_map
*isl_map_drop_constraints_involving_dims(
667 __isl_take isl_map
*map
,
668 enum isl_dim_type type
, unsigned first
, unsigned n
)
672 return drop_constraints(map
, type
, first
, n
,
673 &isl_basic_map_drop_constraints_involving_dims
);
676 /* Drop all constraints in "map" that do not involve any of the dimensions
677 * first to first + n - 1 of the given type.
679 __isl_give isl_map
*isl_map_drop_constraints_not_involving_dims(
680 __isl_take isl_map
*map
,
681 enum isl_dim_type type
, unsigned first
, unsigned n
)
684 isl_space
*space
= isl_map_get_space(map
);
686 return isl_map_universe(space
);
688 return drop_constraints(map
, type
, first
, n
,
689 &isl_basic_map_drop_constraints_not_involving_dims
);
692 /* Drop all constraints in set that involve any of the dimensions
693 * first to first + n - 1 of the given type.
695 __isl_give isl_set
*isl_set_drop_constraints_involving_dims(
696 __isl_take isl_set
*set
,
697 enum isl_dim_type type
, unsigned first
, unsigned n
)
699 return isl_map_drop_constraints_involving_dims(set
, type
, first
, n
);
702 /* Drop all constraints in "set" that do not involve any of the dimensions
703 * first to first + n - 1 of the given type.
705 __isl_give isl_set
*isl_set_drop_constraints_not_involving_dims(
706 __isl_take isl_set
*set
,
707 enum isl_dim_type type
, unsigned first
, unsigned n
)
709 return isl_map_drop_constraints_not_involving_dims(set
, type
, first
, n
);
712 /* Construct an initial underapproximation of the hull of "bset"
713 * from "sample" and any of its adjacent points that also belong to "bset".
715 static __isl_give isl_basic_set
*initialize_hull(__isl_keep isl_basic_set
*bset
,
716 __isl_take isl_vec
*sample
)
720 hull
= isl_basic_set_from_vec(isl_vec_copy(sample
));
721 hull
= add_adjacent_points(hull
, sample
, bset
);
726 /* Look for all equalities satisfied by the integer points in bset,
727 * which is assumed to be bounded.
729 * The equalities are obtained by successively looking for
730 * a point that is affinely independent of the points found so far.
731 * In particular, for each equality satisfied by the points so far,
732 * we check if there is any point on a hyperplane parallel to the
733 * corresponding hyperplane shifted by at least one (in either direction).
735 static struct isl_basic_set
*uset_affine_hull_bounded(struct isl_basic_set
*bset
)
737 struct isl_vec
*sample
= NULL
;
738 struct isl_basic_set
*hull
;
739 struct isl_tab
*tab
= NULL
;
742 if (isl_basic_set_plain_is_empty(bset
))
745 dim
= isl_basic_set_n_dim(bset
);
747 if (bset
->sample
&& bset
->sample
->size
== 1 + dim
) {
748 int contains
= isl_basic_set_contains(bset
, bset
->sample
);
754 sample
= isl_vec_copy(bset
->sample
);
756 isl_vec_free(bset
->sample
);
761 tab
= isl_tab_from_basic_set(bset
, 1);
766 isl_vec_free(sample
);
767 return isl_basic_set_set_to_empty(bset
);
771 struct isl_tab_undo
*snap
;
772 snap
= isl_tab_snap(tab
);
773 sample
= isl_tab_sample(tab
);
774 if (isl_tab_rollback(tab
, snap
) < 0)
776 isl_vec_free(tab
->bmap
->sample
);
777 tab
->bmap
->sample
= isl_vec_copy(sample
);
782 if (sample
->size
== 0) {
784 isl_vec_free(sample
);
785 return isl_basic_set_set_to_empty(bset
);
788 hull
= initialize_hull(bset
, sample
);
790 hull
= extend_affine_hull(tab
, hull
, bset
);
791 isl_basic_set_free(bset
);
796 isl_vec_free(sample
);
798 isl_basic_set_free(bset
);
802 /* Given an unbounded tableau and an integer point satisfying the tableau,
803 * construct an initial affine hull containing the recession cone
804 * shifted to the given point.
806 * The unbounded directions are taken from the last rows of the basis,
807 * which is assumed to have been initialized appropriately.
809 static __isl_give isl_basic_set
*initial_hull(struct isl_tab
*tab
,
810 __isl_take isl_vec
*vec
)
814 struct isl_basic_set
*bset
= NULL
;
821 isl_assert(ctx
, vec
->size
!= 0, goto error
);
823 bset
= isl_basic_set_alloc(ctx
, 0, vec
->size
- 1, 0, vec
->size
- 1, 0);
826 dim
= isl_basic_set_n_dim(bset
) - tab
->n_unbounded
;
827 for (i
= 0; i
< dim
; ++i
) {
828 k
= isl_basic_set_alloc_equality(bset
);
831 isl_seq_cpy(bset
->eq
[k
] + 1, tab
->basis
->row
[1 + i
] + 1,
833 isl_seq_inner_product(bset
->eq
[k
] + 1, vec
->el
+1,
834 vec
->size
- 1, &bset
->eq
[k
][0]);
835 isl_int_neg(bset
->eq
[k
][0], bset
->eq
[k
][0]);
838 bset
= isl_basic_set_gauss(bset
, NULL
);
842 isl_basic_set_free(bset
);
847 /* Given a tableau of a set and a tableau of the corresponding
848 * recession cone, detect and add all equalities to the tableau.
849 * If the tableau is bounded, then we can simply keep the
850 * tableau in its state after the return from extend_affine_hull.
851 * However, if the tableau is unbounded, then
852 * isl_tab_set_initial_basis_with_cone will add some additional
853 * constraints to the tableau that have to be removed again.
854 * In this case, we therefore rollback to the state before
855 * any constraints were added and then add the equalities back in.
857 struct isl_tab
*isl_tab_detect_equalities(struct isl_tab
*tab
,
858 struct isl_tab
*tab_cone
)
861 struct isl_vec
*sample
;
862 struct isl_basic_set
*hull
= NULL
;
863 struct isl_tab_undo
*snap
;
865 if (!tab
|| !tab_cone
)
868 snap
= isl_tab_snap(tab
);
870 isl_mat_free(tab
->basis
);
873 isl_assert(tab
->mat
->ctx
, tab
->bmap
, goto error
);
874 isl_assert(tab
->mat
->ctx
, tab
->samples
, goto error
);
875 isl_assert(tab
->mat
->ctx
, tab
->samples
->n_col
== 1 + tab
->n_var
, goto error
);
876 isl_assert(tab
->mat
->ctx
, tab
->n_sample
> tab
->n_outside
, goto error
);
878 if (isl_tab_set_initial_basis_with_cone(tab
, tab_cone
) < 0)
881 sample
= isl_vec_alloc(tab
->mat
->ctx
, 1 + tab
->n_var
);
885 isl_seq_cpy(sample
->el
, tab
->samples
->row
[tab
->n_outside
], sample
->size
);
887 isl_vec_free(tab
->bmap
->sample
);
888 tab
->bmap
->sample
= isl_vec_copy(sample
);
890 if (tab
->n_unbounded
== 0)
891 hull
= isl_basic_set_from_vec(isl_vec_copy(sample
));
893 hull
= initial_hull(tab
, isl_vec_copy(sample
));
895 for (j
= tab
->n_outside
+ 1; j
< tab
->n_sample
; ++j
) {
896 isl_seq_cpy(sample
->el
, tab
->samples
->row
[j
], sample
->size
);
897 hull
= affine_hull(hull
,
898 isl_basic_set_from_vec(isl_vec_copy(sample
)));
901 isl_vec_free(sample
);
903 hull
= extend_affine_hull(tab
, hull
, NULL
);
907 if (tab
->n_unbounded
== 0) {
908 isl_basic_set_free(hull
);
912 if (isl_tab_rollback(tab
, snap
) < 0)
915 if (hull
->n_eq
> tab
->n_zero
) {
916 for (j
= 0; j
< hull
->n_eq
; ++j
) {
917 isl_seq_normalize(tab
->mat
->ctx
, hull
->eq
[j
], 1 + tab
->n_var
);
918 if (isl_tab_add_eq(tab
, hull
->eq
[j
]) < 0)
923 isl_basic_set_free(hull
);
927 isl_basic_set_free(hull
);
932 /* Compute the affine hull of "bset", where "cone" is the recession cone
935 * We first compute a unimodular transformation that puts the unbounded
936 * directions in the last dimensions. In particular, we take a transformation
937 * that maps all equalities to equalities (in HNF) on the first dimensions.
938 * Let x be the original dimensions and y the transformed, with y_1 bounded
941 * [ y_1 ] [ y_1 ] [ Q_1 ]
942 * x = U [ y_2 ] [ y_2 ] = [ Q_2 ] x
944 * Let's call the input basic set S. We compute S' = preimage(S, U)
945 * and drop the final dimensions including any constraints involving them.
946 * This results in set S''.
947 * Then we compute the affine hull A'' of S''.
948 * Let F y_1 >= g be the constraint system of A''. In the transformed
949 * space the y_2 are unbounded, so we can add them back without any constraints,
953 * [ F 0 ] [ y_2 ] >= g
956 * [ F 0 ] [ Q_2 ] x >= g
960 * The affine hull in the original space is then obtained as
961 * A = preimage(A'', Q_1).
963 static struct isl_basic_set
*affine_hull_with_cone(struct isl_basic_set
*bset
,
964 struct isl_basic_set
*cone
)
968 struct isl_basic_set
*hull
;
969 struct isl_mat
*M
, *U
, *Q
;
974 total
= isl_basic_set_total_dim(cone
);
975 cone_dim
= total
- cone
->n_eq
;
977 M
= isl_mat_sub_alloc6(bset
->ctx
, cone
->eq
, 0, cone
->n_eq
, 1, total
);
978 M
= isl_mat_left_hermite(M
, 0, &U
, &Q
);
983 U
= isl_mat_lin_to_aff(U
);
984 bset
= isl_basic_set_preimage(bset
, isl_mat_copy(U
));
986 bset
= isl_basic_set_drop_constraints_involving(bset
, total
- cone_dim
,
988 bset
= isl_basic_set_drop_dims(bset
, total
- cone_dim
, cone_dim
);
990 Q
= isl_mat_lin_to_aff(Q
);
991 Q
= isl_mat_drop_rows(Q
, 1 + total
- cone_dim
, cone_dim
);
993 if (bset
&& bset
->sample
&& bset
->sample
->size
== 1 + total
)
994 bset
->sample
= isl_mat_vec_product(isl_mat_copy(Q
), bset
->sample
);
996 hull
= uset_affine_hull_bounded(bset
);
1002 struct isl_vec
*sample
= isl_vec_copy(hull
->sample
);
1003 U
= isl_mat_drop_cols(U
, 1 + total
- cone_dim
, cone_dim
);
1004 if (sample
&& sample
->size
> 0)
1005 sample
= isl_mat_vec_product(U
, sample
);
1008 hull
= isl_basic_set_preimage(hull
, Q
);
1010 isl_vec_free(hull
->sample
);
1011 hull
->sample
= sample
;
1013 isl_vec_free(sample
);
1016 isl_basic_set_free(cone
);
1020 isl_basic_set_free(bset
);
1021 isl_basic_set_free(cone
);
1025 /* Look for all equalities satisfied by the integer points in bset,
1026 * which is assumed not to have any explicit equalities.
1028 * The equalities are obtained by successively looking for
1029 * a point that is affinely independent of the points found so far.
1030 * In particular, for each equality satisfied by the points so far,
1031 * we check if there is any point on a hyperplane parallel to the
1032 * corresponding hyperplane shifted by at least one (in either direction).
1034 * Before looking for any outside points, we first compute the recession
1035 * cone. The directions of this recession cone will always be part
1036 * of the affine hull, so there is no need for looking for any points
1037 * in these directions.
1038 * In particular, if the recession cone is full-dimensional, then
1039 * the affine hull is simply the whole universe.
1041 static struct isl_basic_set
*uset_affine_hull(struct isl_basic_set
*bset
)
1043 struct isl_basic_set
*cone
;
1045 if (isl_basic_set_plain_is_empty(bset
))
1048 cone
= isl_basic_set_recession_cone(isl_basic_set_copy(bset
));
1051 if (cone
->n_eq
== 0) {
1053 space
= isl_basic_set_get_space(bset
);
1054 isl_basic_set_free(cone
);
1055 isl_basic_set_free(bset
);
1056 return isl_basic_set_universe(space
);
1059 if (cone
->n_eq
< isl_basic_set_total_dim(cone
))
1060 return affine_hull_with_cone(bset
, cone
);
1062 isl_basic_set_free(cone
);
1063 return uset_affine_hull_bounded(bset
);
1065 isl_basic_set_free(bset
);
1069 /* Look for all equalities satisfied by the integer points in bmap
1070 * that are independent of the equalities already explicitly available
1073 * We first remove all equalities already explicitly available,
1074 * then look for additional equalities in the reduced space
1075 * and then transform the result to the original space.
1076 * The original equalities are _not_ added to this set. This is
1077 * the responsibility of the calling function.
1078 * The resulting basic set has all meaning about the dimensions removed.
1079 * In particular, dimensions that correspond to existential variables
1080 * in bmap and that are found to be fixed are not removed.
1082 static struct isl_basic_set
*equalities_in_underlying_set(
1083 struct isl_basic_map
*bmap
)
1085 struct isl_mat
*T1
= NULL
;
1086 struct isl_mat
*T2
= NULL
;
1087 struct isl_basic_set
*bset
= NULL
;
1088 struct isl_basic_set
*hull
= NULL
;
1090 bset
= isl_basic_map_underlying_set(bmap
);
1094 bset
= isl_basic_set_remove_equalities(bset
, &T1
, &T2
);
1098 hull
= uset_affine_hull(bset
);
1106 struct isl_vec
*sample
= isl_vec_copy(hull
->sample
);
1107 if (sample
&& sample
->size
> 0)
1108 sample
= isl_mat_vec_product(T1
, sample
);
1111 hull
= isl_basic_set_preimage(hull
, T2
);
1113 isl_vec_free(hull
->sample
);
1114 hull
->sample
= sample
;
1116 isl_vec_free(sample
);
1123 isl_basic_set_free(bset
);
1124 isl_basic_set_free(hull
);
1128 /* Detect and make explicit all equalities satisfied by the (integer)
1131 struct isl_basic_map
*isl_basic_map_detect_equalities(
1132 struct isl_basic_map
*bmap
)
1135 struct isl_basic_set
*hull
= NULL
;
1139 if (bmap
->n_ineq
== 0)
1141 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
1143 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
))
1145 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
1146 return isl_basic_map_implicit_equalities(bmap
);
1148 hull
= equalities_in_underlying_set(isl_basic_map_copy(bmap
));
1151 if (ISL_F_ISSET(hull
, ISL_BASIC_SET_EMPTY
)) {
1152 isl_basic_set_free(hull
);
1153 return isl_basic_map_set_to_empty(bmap
);
1155 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
), 0,
1157 for (i
= 0; i
< hull
->n_eq
; ++i
) {
1158 j
= isl_basic_map_alloc_equality(bmap
);
1161 isl_seq_cpy(bmap
->eq
[j
], hull
->eq
[i
],
1162 1 + isl_basic_set_total_dim(hull
));
1164 isl_vec_free(bmap
->sample
);
1165 bmap
->sample
= isl_vec_copy(hull
->sample
);
1166 isl_basic_set_free(hull
);
1167 ISL_F_SET(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
| ISL_BASIC_MAP_ALL_EQUALITIES
);
1168 bmap
= isl_basic_map_simplify(bmap
);
1169 return isl_basic_map_finalize(bmap
);
1171 isl_basic_set_free(hull
);
1172 isl_basic_map_free(bmap
);
1176 __isl_give isl_basic_set
*isl_basic_set_detect_equalities(
1177 __isl_take isl_basic_set
*bset
)
1179 return bset_from_bmap(
1180 isl_basic_map_detect_equalities(bset_to_bmap(bset
)));
1183 __isl_give isl_map
*isl_map_detect_equalities(__isl_take isl_map
*map
)
1185 return isl_map_inline_foreach_basic_map(map
,
1186 &isl_basic_map_detect_equalities
);
1189 __isl_give isl_set
*isl_set_detect_equalities(__isl_take isl_set
*set
)
1191 return set_from_map(isl_map_detect_equalities(set_to_map(set
)));
1194 /* Return the superset of "bmap" described by the equalities
1195 * satisfied by "bmap" that are already known.
1197 __isl_give isl_basic_map
*isl_basic_map_plain_affine_hull(
1198 __isl_take isl_basic_map
*bmap
)
1200 bmap
= isl_basic_map_cow(bmap
);
1202 isl_basic_map_free_inequality(bmap
, bmap
->n_ineq
);
1203 bmap
= isl_basic_map_finalize(bmap
);
1207 /* Return the superset of "bset" described by the equalities
1208 * satisfied by "bset" that are already known.
1210 __isl_give isl_basic_set
*isl_basic_set_plain_affine_hull(
1211 __isl_take isl_basic_set
*bset
)
1213 return isl_basic_map_plain_affine_hull(bset
);
1216 /* After computing the rational affine hull (by detecting the implicit
1217 * equalities), we compute the additional equalities satisfied by
1218 * the integer points (if any) and add the original equalities back in.
1220 struct isl_basic_map
*isl_basic_map_affine_hull(struct isl_basic_map
*bmap
)
1222 bmap
= isl_basic_map_detect_equalities(bmap
);
1223 bmap
= isl_basic_map_plain_affine_hull(bmap
);
1227 struct isl_basic_set
*isl_basic_set_affine_hull(struct isl_basic_set
*bset
)
1229 return bset_from_bmap(isl_basic_map_affine_hull(bset_to_bmap(bset
)));
1232 /* Given a rational affine matrix "M", add stride constraints to "bmap"
1237 * is an integer vector. The variables x include all the variables
1238 * of "bmap" except the unknown divs.
1240 * If d is the common denominator of M, then we need to impose that
1246 * exists alpha : d M(x) = d alpha
1248 * This function is similar to add_strides in isl_morph.c
1250 static __isl_give isl_basic_map
*add_strides(__isl_take isl_basic_map
*bmap
,
1251 __isl_keep isl_mat
*M
, int n_known
)
1256 if (isl_int_is_one(M
->row
[0][0]))
1259 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
1260 M
->n_row
- 1, M
->n_row
- 1, 0);
1263 for (i
= 1; i
< M
->n_row
; ++i
) {
1264 isl_seq_gcd(M
->row
[i
], M
->n_col
, &gcd
);
1265 if (isl_int_is_divisible_by(gcd
, M
->row
[0][0]))
1267 div
= isl_basic_map_alloc_div(bmap
);
1270 isl_int_set_si(bmap
->div
[div
][0], 0);
1271 k
= isl_basic_map_alloc_equality(bmap
);
1274 isl_seq_cpy(bmap
->eq
[k
], M
->row
[i
], M
->n_col
);
1275 isl_seq_clr(bmap
->eq
[k
] + M
->n_col
, bmap
->n_div
- n_known
);
1276 isl_int_set(bmap
->eq
[k
][M
->n_col
- n_known
+ div
],
1284 isl_basic_map_free(bmap
);
1288 /* If there are any equalities that involve (multiple) unknown divs,
1289 * then extract the stride information encoded by those equalities
1290 * and make it explicitly available in "bmap".
1292 * We first sort the divs so that the unknown divs appear last and
1293 * then we count how many equalities involve these divs.
1295 * Let these equalities be of the form
1299 * where y represents the unknown divs and x the remaining variables.
1300 * Let [H 0] be the Hermite Normal Form of B, i.e.,
1304 * Then x is a solution of the equalities iff
1306 * H^-1 A(x) (= - [I 0] Q y)
1308 * is an integer vector. Let d be the common denominator of H^-1.
1311 * d H^-1 A(x) = d alpha
1313 * in add_strides, with alpha fresh existentially quantified variables.
1315 static __isl_give isl_basic_map
*isl_basic_map_make_strides_explicit(
1316 __isl_take isl_basic_map
*bmap
)
1325 known
= isl_basic_map_divs_known(bmap
);
1327 return isl_basic_map_free(bmap
);
1330 bmap
= isl_basic_map_sort_divs(bmap
);
1331 bmap
= isl_basic_map_gauss(bmap
, NULL
);
1335 for (n_known
= 0; n_known
< bmap
->n_div
; ++n_known
)
1336 if (isl_int_is_zero(bmap
->div
[n_known
][0]))
1338 ctx
= isl_basic_map_get_ctx(bmap
);
1339 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
1340 for (n
= 0; n
< bmap
->n_eq
; ++n
)
1341 if (isl_seq_first_non_zero(bmap
->eq
[n
] + 1 + total
+ n_known
,
1342 bmap
->n_div
- n_known
) == -1)
1346 B
= isl_mat_sub_alloc6(ctx
, bmap
->eq
, 0, n
, 0, 1 + total
+ n_known
);
1347 n_col
= bmap
->n_div
- n_known
;
1348 A
= isl_mat_sub_alloc6(ctx
, bmap
->eq
, 0, n
, 1 + total
+ n_known
, n_col
);
1349 A
= isl_mat_left_hermite(A
, 0, NULL
, NULL
);
1350 A
= isl_mat_drop_cols(A
, n
, n_col
- n
);
1351 A
= isl_mat_lin_to_aff(A
);
1352 A
= isl_mat_right_inverse(A
);
1353 B
= isl_mat_insert_zero_rows(B
, 0, 1);
1354 B
= isl_mat_set_element_si(B
, 0, 0, 1);
1355 M
= isl_mat_product(A
, B
);
1357 return isl_basic_map_free(bmap
);
1358 bmap
= add_strides(bmap
, M
, n_known
);
1359 bmap
= isl_basic_map_gauss(bmap
, NULL
);
1365 /* Compute the affine hull of each basic map in "map" separately
1366 * and make all stride information explicit so that we can remove
1367 * all unknown divs without losing this information.
1368 * The result is also guaranteed to be gaussed.
1370 * In simple cases where a div is determined by an equality,
1371 * calling isl_basic_map_gauss is enough to make the stride information
1372 * explicit, as it will derive an explicit representation for the div
1373 * from the equality. If, however, the stride information
1374 * is encoded through multiple unknown divs then we need to make
1375 * some extra effort in isl_basic_map_make_strides_explicit.
1377 static __isl_give isl_map
*isl_map_local_affine_hull(__isl_take isl_map
*map
)
1381 map
= isl_map_cow(map
);
1385 for (i
= 0; i
< map
->n
; ++i
) {
1386 map
->p
[i
] = isl_basic_map_affine_hull(map
->p
[i
]);
1387 map
->p
[i
] = isl_basic_map_gauss(map
->p
[i
], NULL
);
1388 map
->p
[i
] = isl_basic_map_make_strides_explicit(map
->p
[i
]);
1390 return isl_map_free(map
);
1396 static __isl_give isl_set
*isl_set_local_affine_hull(__isl_take isl_set
*set
)
1398 return isl_map_local_affine_hull(set
);
1401 /* Return an empty basic map living in the same space as "map".
1403 static __isl_give isl_basic_map
*replace_map_by_empty_basic_map(
1404 __isl_take isl_map
*map
)
1408 space
= isl_map_get_space(map
);
1410 return isl_basic_map_empty(space
);
1413 /* Compute the affine hull of "map".
1415 * We first compute the affine hull of each basic map separately.
1416 * Then we align the divs and recompute the affine hulls of the basic
1417 * maps since some of them may now have extra divs.
1418 * In order to avoid performing parametric integer programming to
1419 * compute explicit expressions for the divs, possible leading to
1420 * an explosion in the number of basic maps, we first drop all unknown
1421 * divs before aligning the divs. Note that isl_map_local_affine_hull tries
1422 * to make sure that all stride information is explicitly available
1423 * in terms of known divs. This involves calling isl_basic_set_gauss,
1424 * which is also needed because affine_hull assumes its input has been gaussed,
1425 * while isl_map_affine_hull may be called on input that has not been gaussed,
1426 * in particular from initial_facet_constraint.
1427 * Similarly, align_divs may reorder some divs so that we need to
1428 * gauss the result again.
1429 * Finally, we combine the individual affine hulls into a single
1432 __isl_give isl_basic_map
*isl_map_affine_hull(__isl_take isl_map
*map
)
1434 struct isl_basic_map
*model
= NULL
;
1435 struct isl_basic_map
*hull
= NULL
;
1436 struct isl_set
*set
;
1437 isl_basic_set
*bset
;
1439 map
= isl_map_detect_equalities(map
);
1440 map
= isl_map_local_affine_hull(map
);
1441 map
= isl_map_remove_empty_parts(map
);
1442 map
= isl_map_remove_unknown_divs(map
);
1443 map
= isl_map_align_divs(map
);
1449 return replace_map_by_empty_basic_map(map
);
1451 model
= isl_basic_map_copy(map
->p
[0]);
1452 set
= isl_map_underlying_set(map
);
1453 set
= isl_set_cow(set
);
1454 set
= isl_set_local_affine_hull(set
);
1459 set
->p
[0] = affine_hull(set
->p
[0], set
->p
[--set
->n
]);
1461 bset
= isl_basic_set_copy(set
->p
[0]);
1462 hull
= isl_basic_map_overlying_set(bset
, model
);
1464 hull
= isl_basic_map_simplify(hull
);
1465 return isl_basic_map_finalize(hull
);
1467 isl_basic_map_free(model
);
1472 struct isl_basic_set
*isl_set_affine_hull(struct isl_set
*set
)
1474 return bset_from_bmap(isl_map_affine_hull(set_to_map(set
)));