2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
10 #include <isl_map_private.h>
15 #include <isl_point_private.h>
17 static void expand_constraint(isl_vec
*v
, unsigned dim
,
18 isl_int
*c
, int *div_map
, unsigned n_div
)
22 isl_seq_cpy(v
->el
, c
, 1 + dim
);
23 isl_seq_clr(v
->el
+ 1 + dim
, v
->size
- (1 + dim
));
25 for (i
= 0; i
< n_div
; ++i
)
26 isl_int_set(v
->el
[1 + dim
+ div_map
[i
]], c
[1 + dim
+ i
]);
29 /* Add all constraints of bmap to tab. The equalities of bmap
30 * are added as a pair of inequalities.
32 static int tab_add_constraints(struct isl_tab
*tab
,
33 __isl_keep isl_basic_map
*bmap
, int *div_map
)
44 tab_total
= isl_basic_map_total_dim(tab
->bmap
);
45 bmap_total
= isl_basic_map_total_dim(bmap
);
46 dim
= isl_space_dim(tab
->bmap
->dim
, isl_dim_all
);
48 if (isl_tab_extend_cons(tab
, 2 * bmap
->n_eq
+ bmap
->n_ineq
) < 0)
51 v
= isl_vec_alloc(bmap
->ctx
, 1 + tab_total
);
55 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
56 expand_constraint(v
, dim
, bmap
->eq
[i
], div_map
, bmap
->n_div
);
57 if (isl_tab_add_ineq(tab
, v
->el
) < 0)
59 isl_seq_neg(bmap
->eq
[i
], bmap
->eq
[i
], 1 + bmap_total
);
60 expand_constraint(v
, dim
, bmap
->eq
[i
], div_map
, bmap
->n_div
);
61 if (isl_tab_add_ineq(tab
, v
->el
) < 0)
63 isl_seq_neg(bmap
->eq
[i
], bmap
->eq
[i
], 1 + bmap_total
);
68 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
69 expand_constraint(v
, dim
, bmap
->ineq
[i
], div_map
, bmap
->n_div
);
70 if (isl_tab_add_ineq(tab
, v
->el
) < 0)
83 /* Add a specific constraint of bmap (or its opposite) to tab.
84 * The position of the constraint is specified by "c", where
85 * the equalities of bmap are counted twice, once for the inequality
86 * that is equal to the equality, and once for its negation.
88 static int tab_add_constraint(struct isl_tab
*tab
,
89 __isl_keep isl_basic_map
*bmap
, int *div_map
, int c
, int oppose
)
100 tab_total
= isl_basic_map_total_dim(tab
->bmap
);
101 bmap_total
= isl_basic_map_total_dim(bmap
);
102 dim
= isl_space_dim(tab
->bmap
->dim
, isl_dim_all
);
104 v
= isl_vec_alloc(bmap
->ctx
, 1 + tab_total
);
108 if (c
< 2 * bmap
->n_eq
) {
109 if ((c
% 2) != oppose
)
110 isl_seq_neg(bmap
->eq
[c
/2], bmap
->eq
[c
/2],
113 isl_int_sub_ui(bmap
->eq
[c
/2][0], bmap
->eq
[c
/2][0], 1);
114 expand_constraint(v
, dim
, bmap
->eq
[c
/2], div_map
, bmap
->n_div
);
115 r
= isl_tab_add_ineq(tab
, v
->el
);
117 isl_int_add_ui(bmap
->eq
[c
/2][0], bmap
->eq
[c
/2][0], 1);
118 if ((c
% 2) != oppose
)
119 isl_seq_neg(bmap
->eq
[c
/2], bmap
->eq
[c
/2],
124 isl_seq_neg(bmap
->ineq
[c
], bmap
->ineq
[c
],
126 isl_int_sub_ui(bmap
->ineq
[c
][0], bmap
->ineq
[c
][0], 1);
128 expand_constraint(v
, dim
, bmap
->ineq
[c
], div_map
, bmap
->n_div
);
129 r
= isl_tab_add_ineq(tab
, v
->el
);
131 isl_int_add_ui(bmap
->ineq
[c
][0], bmap
->ineq
[c
][0], 1);
132 isl_seq_neg(bmap
->ineq
[c
], bmap
->ineq
[c
],
141 static int tab_add_divs(struct isl_tab
*tab
, __isl_keep isl_basic_map
*bmap
,
155 *div_map
= isl_alloc_array(bmap
->ctx
, int, bmap
->n_div
);
159 total
= isl_basic_map_total_dim(tab
->bmap
);
160 dim
= total
- tab
->bmap
->n_div
;
161 vec
= isl_vec_alloc(bmap
->ctx
, 2 + total
+ bmap
->n_div
);
165 for (i
= 0; i
< bmap
->n_div
; ++i
) {
166 isl_seq_cpy(vec
->el
, bmap
->div
[i
], 2 + dim
);
167 isl_seq_clr(vec
->el
+ 2 + dim
, tab
->bmap
->n_div
);
168 for (j
= 0; j
< i
; ++j
)
169 isl_int_set(vec
->el
[2 + dim
+ (*div_map
)[j
]],
170 bmap
->div
[i
][2 + dim
+ j
]);
171 for (j
= 0; j
< tab
->bmap
->n_div
; ++j
)
172 if (isl_seq_eq(tab
->bmap
->div
[j
],
173 vec
->el
, 2 + dim
+ tab
->bmap
->n_div
))
176 if (j
== tab
->bmap
->n_div
) {
177 vec
->size
= 2 + dim
+ tab
->bmap
->n_div
;
178 if (isl_tab_add_div(tab
, vec
, NULL
, NULL
) < 0)
192 /* Freeze all constraints of tableau tab.
194 static int tab_freeze_constraints(struct isl_tab
*tab
)
198 for (i
= 0; i
< tab
->n_con
; ++i
)
199 if (isl_tab_freeze_constraint(tab
, i
) < 0)
205 /* Check for redundant constraints starting at offset.
206 * Put the indices of the redundant constraints in index
207 * and return the number of redundant constraints.
209 static int n_non_redundant(isl_ctx
*ctx
, struct isl_tab
*tab
,
210 int offset
, int **index
)
213 int n_test
= tab
->n_con
- offset
;
215 if (isl_tab_detect_redundant(tab
) < 0)
219 *index
= isl_alloc_array(ctx
, int, n_test
);
223 for (n
= 0, i
= 0; i
< n_test
; ++i
) {
225 r
= isl_tab_is_redundant(tab
, offset
+ i
);
236 /* basic_map_collect_diff calls add on each of the pieces of
237 * the set difference between bmap and map until the add method
238 * return a negative value.
240 struct isl_diff_collector
{
241 int (*add
)(struct isl_diff_collector
*dc
,
242 __isl_take isl_basic_map
*bmap
);
245 /* Compute the set difference between bmap and map and call
246 * dc->add on each of the piece until this function returns
248 * Return 0 on success and -1 on error. dc->add returning
249 * a negative value is treated as an error, but the calling
250 * function can interpret the results based on the state of dc.
252 * Assumes that map has known divs.
254 * The difference is computed by a backtracking algorithm.
255 * Each level corresponds to a basic map in "map".
256 * When a node in entered for the first time, we check
257 * if the corresonding basic map intersects the current piece
258 * of "bmap". If not, we move to the next level.
259 * Otherwise, we split the current piece into as many
260 * pieces as there are non-redundant constraints of the current
261 * basic map in the intersection. Each of these pieces is
262 * handled by a child of the current node.
263 * In particular, if there are n non-redundant constraints,
264 * then for each 0 <= i < n, a piece is cut off by adding
265 * constraints 0 <= j < i and adding the opposite of constraint i.
266 * If there are no non-redundant constraints, meaning that the current
267 * piece is a subset of the current basic map, then we simply backtrack.
269 * In the leaves, we check if the remaining piece has any integer points
270 * and if so, pass it along to dc->add. As a special case, if nothing
271 * has been removed when we end up in a leaf, we simply pass along
272 * the original basic map.
274 static int basic_map_collect_diff(__isl_take isl_basic_map
*bmap
,
275 __isl_take isl_map
*map
, struct isl_diff_collector
*dc
)
283 struct isl_tab
*tab
= NULL
;
284 struct isl_tab_undo
**snap
= NULL
;
288 int **div_map
= NULL
;
290 empty
= isl_basic_map_is_empty(bmap
);
292 isl_basic_map_free(bmap
);
294 return empty
< 0 ? -1 : 0;
297 bmap
= isl_basic_map_cow(bmap
);
298 map
= isl_map_cow(map
);
304 snap
= isl_alloc_array(map
->ctx
, struct isl_tab_undo
*, map
->n
);
305 k
= isl_alloc_array(map
->ctx
, int, map
->n
);
306 n
= isl_alloc_array(map
->ctx
, int, map
->n
);
307 index
= isl_calloc_array(map
->ctx
, int *, map
->n
);
308 div_map
= isl_calloc_array(map
->ctx
, int *, map
->n
);
309 if (!snap
|| !k
|| !n
|| !index
|| !div_map
)
312 bmap
= isl_basic_map_order_divs(bmap
);
313 map
= isl_map_order_divs(map
);
315 tab
= isl_tab_from_basic_map(bmap
);
316 if (isl_tab_track_bmap(tab
, isl_basic_map_copy(bmap
)) < 0)
324 if (level
>= map
->n
) {
326 struct isl_basic_map
*bm
;
328 if (dc
->add(dc
, isl_basic_map_copy(bmap
)) < 0)
332 bm
= isl_basic_map_copy(tab
->bmap
);
333 bm
= isl_basic_map_cow(bm
);
334 bm
= isl_basic_map_update_from_tab(bm
, tab
);
335 bm
= isl_basic_map_simplify(bm
);
336 bm
= isl_basic_map_finalize(bm
);
337 empty
= isl_basic_map_is_empty(bm
);
339 isl_basic_map_free(bm
);
340 else if (dc
->add(dc
, bm
) < 0)
350 struct isl_tab_undo
*snap2
;
351 snap2
= isl_tab_snap(tab
);
352 if (tab_add_divs(tab
, map
->p
[level
],
353 &div_map
[level
]) < 0)
356 snap
[level
] = isl_tab_snap(tab
);
357 if (tab_freeze_constraints(tab
) < 0)
359 if (tab_add_constraints(tab
, map
->p
[level
],
365 if (isl_tab_rollback(tab
, snap2
) < 0)
371 n
[level
] = n_non_redundant(ctx
, tab
, offset
,
380 if (isl_tab_rollback(tab
, snap
[level
]) < 0)
382 if (tab_add_constraint(tab
, map
->p
[level
],
383 div_map
[level
], index
[level
][0], 1) < 0)
388 if (k
[level
] + 1 >= n
[level
]) {
392 if (isl_tab_rollback(tab
, snap
[level
]) < 0)
394 if (tab_add_constraint(tab
, map
->p
[level
],
396 index
[level
][k
[level
]], 0) < 0)
398 snap
[level
] = isl_tab_snap(tab
);
400 if (tab_add_constraint(tab
, map
->p
[level
],
402 index
[level
][k
[level
]], 1) < 0)
414 for (i
= 0; index
&& i
< map
->n
; ++i
)
417 for (i
= 0; div_map
&& i
< map
->n
; ++i
)
421 isl_basic_map_free(bmap
);
430 for (i
= 0; index
&& i
< map
->n
; ++i
)
433 for (i
= 0; div_map
&& i
< map
->n
; ++i
)
436 isl_basic_map_free(bmap
);
441 /* A diff collector that actually collects all parts of the
442 * set difference in the field diff.
444 struct isl_subtract_diff_collector
{
445 struct isl_diff_collector dc
;
446 struct isl_map
*diff
;
449 /* isl_subtract_diff_collector callback.
451 static int basic_map_subtract_add(struct isl_diff_collector
*dc
,
452 __isl_take isl_basic_map
*bmap
)
454 struct isl_subtract_diff_collector
*sdc
;
455 sdc
= (struct isl_subtract_diff_collector
*)dc
;
457 sdc
->diff
= isl_map_union_disjoint(sdc
->diff
,
458 isl_map_from_basic_map(bmap
));
460 return sdc
->diff
? 0 : -1;
463 /* Return the set difference between bmap and map.
465 static __isl_give isl_map
*basic_map_subtract(__isl_take isl_basic_map
*bmap
,
466 __isl_take isl_map
*map
)
468 struct isl_subtract_diff_collector sdc
;
469 sdc
.dc
.add
= &basic_map_subtract_add
;
470 sdc
.diff
= isl_map_empty_like_basic_map(bmap
);
471 if (basic_map_collect_diff(bmap
, map
, &sdc
.dc
) < 0) {
472 isl_map_free(sdc
.diff
);
478 /* Return the set difference between map1 and map2.
479 * (U_i A_i) \ (U_j B_j) is computed as U_i (A_i \ (U_j B_j))
481 static __isl_give isl_map
*map_subtract( __isl_take isl_map
*map1
,
482 __isl_take isl_map
*map2
)
485 struct isl_map
*diff
;
490 isl_assert(map1
->ctx
, isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
492 if (isl_map_is_empty(map2
)) {
497 map1
= isl_map_compute_divs(map1
);
498 map2
= isl_map_compute_divs(map2
);
502 map1
= isl_map_remove_empty_parts(map1
);
503 map2
= isl_map_remove_empty_parts(map2
);
505 diff
= isl_map_empty_like(map1
);
506 for (i
= 0; i
< map1
->n
; ++i
) {
508 d
= basic_map_subtract(isl_basic_map_copy(map1
->p
[i
]),
510 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
))
511 diff
= isl_map_union_disjoint(diff
, d
);
513 diff
= isl_map_union(diff
, d
);
526 __isl_give isl_map
*isl_map_subtract( __isl_take isl_map
*map1
,
527 __isl_take isl_map
*map2
)
529 return isl_map_align_params_map_map_and(map1
, map2
, &map_subtract
);
532 struct isl_set
*isl_set_subtract(struct isl_set
*set1
, struct isl_set
*set2
)
534 return (struct isl_set
*)
536 (struct isl_map
*)set1
, (struct isl_map
*)set2
);
539 /* Remove the elements of "dom" from the domain of "map".
541 static __isl_give isl_map
*map_subtract_domain(__isl_take isl_map
*map
,
542 __isl_take isl_set
*dom
)
546 if (!isl_map_compatible_domain(map
, dom
))
547 isl_die(isl_set_get_ctx(dom
), isl_error_invalid
,
548 "incompatible spaces", goto error
);
550 ext_dom
= isl_map_universe(isl_map_get_space(map
));
551 ext_dom
= isl_map_intersect_domain(ext_dom
, dom
);
552 return isl_map_subtract(map
, ext_dom
);
559 __isl_give isl_map
*isl_map_subtract_domain(__isl_take isl_map
*map
,
560 __isl_take isl_set
*dom
)
562 return isl_map_align_params_map_map_and(map
, dom
, &map_subtract_domain
);
565 /* Remove the elements of "dom" from the range of "map".
567 static __isl_give isl_map
*map_subtract_range(__isl_take isl_map
*map
,
568 __isl_take isl_set
*dom
)
572 if (!isl_map_compatible_range(map
, dom
))
573 isl_die(isl_set_get_ctx(dom
), isl_error_invalid
,
574 "incompatible spaces", goto error
);
576 ext_dom
= isl_map_universe(isl_map_get_space(map
));
577 ext_dom
= isl_map_intersect_range(ext_dom
, dom
);
578 return isl_map_subtract(map
, ext_dom
);
585 __isl_give isl_map
*isl_map_subtract_range(__isl_take isl_map
*map
,
586 __isl_take isl_set
*dom
)
588 return isl_map_align_params_map_map_and(map
, dom
, &map_subtract_range
);
591 /* A diff collector that aborts as soon as its add function is called,
592 * setting empty to 0.
594 struct isl_is_empty_diff_collector
{
595 struct isl_diff_collector dc
;
599 /* isl_is_empty_diff_collector callback.
601 static int basic_map_is_empty_add(struct isl_diff_collector
*dc
,
602 __isl_take isl_basic_map
*bmap
)
604 struct isl_is_empty_diff_collector
*edc
;
605 edc
= (struct isl_is_empty_diff_collector
*)dc
;
609 isl_basic_map_free(bmap
);
613 /* Check if bmap \ map is empty by computing this set difference
614 * and breaking off as soon as the difference is known to be non-empty.
616 static int basic_map_diff_is_empty(__isl_keep isl_basic_map
*bmap
,
617 __isl_keep isl_map
*map
)
620 struct isl_is_empty_diff_collector edc
;
622 r
= isl_basic_map_plain_is_empty(bmap
);
626 edc
.dc
.add
= &basic_map_is_empty_add
;
628 r
= basic_map_collect_diff(isl_basic_map_copy(bmap
),
629 isl_map_copy(map
), &edc
.dc
);
633 return r
< 0 ? -1 : 1;
636 /* Check if map1 \ map2 is empty by checking if the set difference is empty
637 * for each of the basic maps in map1.
639 static int map_diff_is_empty(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
647 for (i
= 0; i
< map1
->n
; ++i
) {
648 is_empty
= basic_map_diff_is_empty(map1
->p
[i
], map2
);
649 if (is_empty
< 0 || !is_empty
)
656 /* Return 1 if "bmap" contains a single element.
658 int isl_basic_map_plain_is_singleton(__isl_keep isl_basic_map
*bmap
)
666 return bmap
->n_eq
== isl_basic_map_total_dim(bmap
);
669 /* Return 1 if "map" contains a single element.
671 int isl_map_plain_is_singleton(__isl_keep isl_map
*map
)
678 return isl_basic_map_plain_is_singleton(map
->p
[0]);
681 /* Given a singleton basic map, extract the single element
684 static __isl_give isl_point
*singleton_extract_point(
685 __isl_keep isl_basic_map
*bmap
)
689 struct isl_vec
*point
;
695 dim
= isl_basic_map_total_dim(bmap
);
696 isl_assert(bmap
->ctx
, bmap
->n_eq
== dim
, return NULL
);
697 point
= isl_vec_alloc(bmap
->ctx
, 1 + dim
);
703 isl_int_set_si(point
->el
[0], 1);
704 for (j
= 0; j
< bmap
->n_eq
; ++j
) {
706 isl_assert(bmap
->ctx
,
707 isl_seq_first_non_zero(bmap
->eq
[j
] + 1, i
) == -1,
709 isl_assert(bmap
->ctx
,
710 isl_int_is_one(bmap
->eq
[j
][1 + i
]) ||
711 isl_int_is_negone(bmap
->eq
[j
][1 + i
]),
713 isl_assert(bmap
->ctx
,
714 isl_seq_first_non_zero(bmap
->eq
[j
]+1+i
+1, dim
-i
-1) == -1,
717 isl_int_gcd(m
, point
->el
[0], bmap
->eq
[j
][1 + i
]);
718 isl_int_divexact(m
, bmap
->eq
[j
][1 + i
], m
);
720 isl_seq_scale(point
->el
, point
->el
, m
, 1 + i
);
721 isl_int_divexact(m
, point
->el
[0], bmap
->eq
[j
][1 + i
]);
723 isl_int_mul(point
->el
[1 + i
], m
, bmap
->eq
[j
][0]);
727 return isl_point_alloc(isl_basic_map_get_space(bmap
), point
);
734 /* Return 1 is the singleton map "map1" is a subset of "map2",
735 * i.e., if the single element of "map1" is also an element of "map2".
736 * Assumes "map2" has known divs.
738 static int map_is_singleton_subset(__isl_keep isl_map
*map1
,
739 __isl_keep isl_map
*map2
)
743 struct isl_point
*point
;
750 point
= singleton_extract_point(map1
->p
[0]);
754 for (i
= 0; i
< map2
->n
; ++i
) {
755 is_subset
= isl_basic_map_contains_point(map2
->p
[i
], point
);
760 isl_point_free(point
);
764 static int map_is_subset(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
771 if (!isl_map_has_equal_space(map1
, map2
))
774 if (isl_map_is_empty(map1
))
777 if (isl_map_is_empty(map2
))
780 if (isl_map_plain_is_universe(map2
))
783 map2
= isl_map_compute_divs(isl_map_copy(map2
));
784 if (isl_map_plain_is_singleton(map1
)) {
785 is_subset
= map_is_singleton_subset(map1
, map2
);
789 is_subset
= map_diff_is_empty(map1
, map2
);
795 int isl_map_is_subset(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
797 return isl_map_align_params_map_map_and_test(map1
, map2
,
801 int isl_set_is_subset(struct isl_set
*set1
, struct isl_set
*set2
)
803 return isl_map_is_subset(
804 (struct isl_map
*)set1
, (struct isl_map
*)set2
);
807 __isl_give isl_map
*isl_map_make_disjoint(__isl_take isl_map
*map
)
810 struct isl_subtract_diff_collector sdc
;
811 sdc
.dc
.add
= &basic_map_subtract_add
;
815 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
))
820 map
= isl_map_compute_divs(map
);
821 map
= isl_map_remove_empty_parts(map
);
823 if (!map
|| map
->n
<= 1)
826 sdc
.diff
= isl_map_from_basic_map(isl_basic_map_copy(map
->p
[0]));
828 for (i
= 1; i
< map
->n
; ++i
) {
829 struct isl_basic_map
*bmap
= isl_basic_map_copy(map
->p
[i
]);
830 struct isl_map
*copy
= isl_map_copy(sdc
.diff
);
831 if (basic_map_collect_diff(bmap
, copy
, &sdc
.dc
) < 0) {
832 isl_map_free(sdc
.diff
);
843 __isl_give isl_set
*isl_set_make_disjoint(__isl_take isl_set
*set
)
845 return (struct isl_set
*)isl_map_make_disjoint((struct isl_map
*)set
);
848 __isl_give isl_set
*isl_set_complement(__isl_take isl_set
*set
)
855 universe
= isl_set_universe(isl_set_get_space(set
));
857 return isl_set_subtract(universe
, set
);