2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the MIT 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>
16 #include <isl_vec_private.h>
18 #include <set_to_map.c>
19 #include <set_from_map.c>
21 /* Expand the constraint "c" into "v". The initial "dim" dimensions
22 * are the same, but "v" may have more divs than "c" and the divs of "c"
23 * may appear in different positions in "v".
24 * The number of divs in "c" is given by "n_div" and the mapping
25 * of divs in "c" to divs in "v" is given by "div_map".
27 * Although it shouldn't happen in practice, it is theoretically
28 * possible that two or more divs in "c" are mapped to the same div in "v".
29 * These divs are then necessarily the same, so we simply add their
32 static void expand_constraint(isl_vec
*v
, unsigned dim
,
33 isl_int
*c
, int *div_map
, unsigned n_div
)
37 isl_seq_cpy(v
->el
, c
, 1 + dim
);
38 isl_seq_clr(v
->el
+ 1 + dim
, v
->size
- (1 + dim
));
40 for (i
= 0; i
< n_div
; ++i
) {
41 int pos
= 1 + dim
+ div_map
[i
];
42 isl_int_add(v
->el
[pos
], v
->el
[pos
], c
[1 + dim
+ i
]);
46 /* Add all constraints of bmap to tab. The equalities of bmap
47 * are added as a pair of inequalities.
49 static isl_stat
tab_add_constraints(struct isl_tab
*tab
,
50 __isl_keep isl_basic_map
*bmap
, int *div_map
)
59 return isl_stat_error
;
61 tab_total
= isl_basic_map_total_dim(tab
->bmap
);
62 bmap_total
= isl_basic_map_total_dim(bmap
);
63 dim
= isl_space_dim(tab
->bmap
->dim
, isl_dim_all
);
65 if (isl_tab_extend_cons(tab
, 2 * bmap
->n_eq
+ bmap
->n_ineq
) < 0)
66 return isl_stat_error
;
68 v
= isl_vec_alloc(bmap
->ctx
, 1 + tab_total
);
70 return isl_stat_error
;
72 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
73 expand_constraint(v
, dim
, bmap
->eq
[i
], div_map
, bmap
->n_div
);
74 if (isl_tab_add_ineq(tab
, v
->el
) < 0)
76 isl_seq_neg(bmap
->eq
[i
], bmap
->eq
[i
], 1 + bmap_total
);
77 expand_constraint(v
, dim
, bmap
->eq
[i
], div_map
, bmap
->n_div
);
78 if (isl_tab_add_ineq(tab
, v
->el
) < 0)
80 isl_seq_neg(bmap
->eq
[i
], bmap
->eq
[i
], 1 + bmap_total
);
85 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
86 expand_constraint(v
, dim
, bmap
->ineq
[i
], div_map
, bmap
->n_div
);
87 if (isl_tab_add_ineq(tab
, v
->el
) < 0)
97 return isl_stat_error
;
100 /* Add a specific constraint of bmap (or its opposite) to tab.
101 * The position of the constraint is specified by "c", where
102 * the equalities of bmap are counted twice, once for the inequality
103 * that is equal to the equality, and once for its negation.
105 * Each of these constraints has been added to "tab" before by
106 * tab_add_constraints (and later removed again), so there should
107 * already be a row available for the constraint.
109 static isl_stat
tab_add_constraint(struct isl_tab
*tab
,
110 __isl_keep isl_basic_map
*bmap
, int *div_map
, int c
, int oppose
)
119 return isl_stat_error
;
121 tab_total
= isl_basic_map_total_dim(tab
->bmap
);
122 bmap_total
= isl_basic_map_total_dim(bmap
);
123 dim
= isl_space_dim(tab
->bmap
->dim
, isl_dim_all
);
125 v
= isl_vec_alloc(bmap
->ctx
, 1 + tab_total
);
127 return isl_stat_error
;
129 if (c
< 2 * bmap
->n_eq
) {
130 if ((c
% 2) != oppose
)
131 isl_seq_neg(bmap
->eq
[c
/2], bmap
->eq
[c
/2],
134 isl_int_sub_ui(bmap
->eq
[c
/2][0], bmap
->eq
[c
/2][0], 1);
135 expand_constraint(v
, dim
, bmap
->eq
[c
/2], div_map
, bmap
->n_div
);
136 r
= isl_tab_add_ineq(tab
, v
->el
);
138 isl_int_add_ui(bmap
->eq
[c
/2][0], bmap
->eq
[c
/2][0], 1);
139 if ((c
% 2) != oppose
)
140 isl_seq_neg(bmap
->eq
[c
/2], bmap
->eq
[c
/2],
145 isl_seq_neg(bmap
->ineq
[c
], bmap
->ineq
[c
],
147 isl_int_sub_ui(bmap
->ineq
[c
][0], bmap
->ineq
[c
][0], 1);
149 expand_constraint(v
, dim
, bmap
->ineq
[c
], div_map
, bmap
->n_div
);
150 r
= isl_tab_add_ineq(tab
, v
->el
);
152 isl_int_add_ui(bmap
->ineq
[c
][0], bmap
->ineq
[c
][0], 1);
153 isl_seq_neg(bmap
->ineq
[c
], bmap
->ineq
[c
],
162 static isl_stat
tab_add_divs(struct isl_tab
*tab
,
163 __isl_keep isl_basic_map
*bmap
, int **div_map
)
171 return isl_stat_error
;
176 *div_map
= isl_alloc_array(bmap
->ctx
, int, bmap
->n_div
);
178 return isl_stat_error
;
180 total
= isl_basic_map_total_dim(tab
->bmap
);
181 dim
= total
- tab
->bmap
->n_div
;
182 vec
= isl_vec_alloc(bmap
->ctx
, 2 + total
+ bmap
->n_div
);
184 return isl_stat_error
;
186 for (i
= 0; i
< bmap
->n_div
; ++i
) {
187 isl_seq_cpy(vec
->el
, bmap
->div
[i
], 2 + dim
);
188 isl_seq_clr(vec
->el
+ 2 + dim
, tab
->bmap
->n_div
);
189 for (j
= 0; j
< i
; ++j
)
190 isl_int_add(vec
->el
[2 + dim
+ (*div_map
)[j
]],
191 vec
->el
[2 + dim
+ (*div_map
)[j
]],
192 bmap
->div
[i
][2 + dim
+ j
]);
193 for (j
= 0; j
< tab
->bmap
->n_div
; ++j
)
194 if (isl_seq_eq(tab
->bmap
->div
[j
],
195 vec
->el
, 2 + dim
+ tab
->bmap
->n_div
))
198 if (j
== tab
->bmap
->n_div
) {
199 vec
->size
= 2 + dim
+ tab
->bmap
->n_div
;
200 if (isl_tab_add_div(tab
, vec
) < 0)
211 return isl_stat_error
;
214 /* Freeze all constraints of tableau tab.
216 static int tab_freeze_constraints(struct isl_tab
*tab
)
220 for (i
= 0; i
< tab
->n_con
; ++i
)
221 if (isl_tab_freeze_constraint(tab
, i
) < 0)
227 /* Check for redundant constraints starting at offset.
228 * Put the indices of the redundant constraints in index
229 * and return the number of redundant constraints.
231 static int n_non_redundant(isl_ctx
*ctx
, struct isl_tab
*tab
,
232 int offset
, int **index
)
235 int n_test
= tab
->n_con
- offset
;
237 if (isl_tab_detect_redundant(tab
) < 0)
243 *index
= isl_alloc_array(ctx
, int, n_test
);
247 for (n
= 0, i
= 0; i
< n_test
; ++i
) {
249 r
= isl_tab_is_redundant(tab
, offset
+ i
);
260 /* basic_map_collect_diff calls add on each of the pieces of
261 * the set difference between bmap and map until the add method
262 * return a negative value.
264 struct isl_diff_collector
{
265 isl_stat (*add
)(struct isl_diff_collector
*dc
,
266 __isl_take isl_basic_map
*bmap
);
269 /* Compute the set difference between bmap and map and call
270 * dc->add on each of the piece until this function returns
272 * Return 0 on success and -1 on error. dc->add returning
273 * a negative value is treated as an error, but the calling
274 * function can interpret the results based on the state of dc.
276 * Assumes that map has known divs.
278 * The difference is computed by a backtracking algorithm.
279 * Each level corresponds to a basic map in "map".
280 * When a node in entered for the first time, we check
281 * if the corresonding basic map intersects the current piece
282 * of "bmap". If not, we move to the next level.
283 * Otherwise, we split the current piece into as many
284 * pieces as there are non-redundant constraints of the current
285 * basic map in the intersection. Each of these pieces is
286 * handled by a child of the current node.
287 * In particular, if there are n non-redundant constraints,
288 * then for each 0 <= i < n, a piece is cut off by adding
289 * constraints 0 <= j < i and adding the opposite of constraint i.
290 * If there are no non-redundant constraints, meaning that the current
291 * piece is a subset of the current basic map, then we simply backtrack.
293 * In the leaves, we check if the remaining piece has any integer points
294 * and if so, pass it along to dc->add. As a special case, if nothing
295 * has been removed when we end up in a leaf, we simply pass along
296 * the original basic map.
298 static isl_stat
basic_map_collect_diff(__isl_take isl_basic_map
*bmap
,
299 __isl_take isl_map
*map
, struct isl_diff_collector
*dc
)
307 struct isl_tab
*tab
= NULL
;
308 struct isl_tab_undo
**snap
= NULL
;
312 int **div_map
= NULL
;
314 empty
= isl_basic_map_is_empty(bmap
);
316 isl_basic_map_free(bmap
);
318 return empty
< 0 ? isl_stat_error
: isl_stat_ok
;
321 bmap
= isl_basic_map_cow(bmap
);
322 map
= isl_map_cow(map
);
328 snap
= isl_alloc_array(map
->ctx
, struct isl_tab_undo
*, map
->n
);
329 k
= isl_alloc_array(map
->ctx
, int, map
->n
);
330 n
= isl_alloc_array(map
->ctx
, int, map
->n
);
331 index
= isl_calloc_array(map
->ctx
, int *, map
->n
);
332 div_map
= isl_calloc_array(map
->ctx
, int *, map
->n
);
333 if (!snap
|| !k
|| !n
|| !index
|| !div_map
)
336 bmap
= isl_basic_map_order_divs(bmap
);
337 map
= isl_map_order_divs(map
);
339 tab
= isl_tab_from_basic_map(bmap
, 1);
348 if (level
>= map
->n
) {
350 struct isl_basic_map
*bm
;
352 if (dc
->add(dc
, isl_basic_map_copy(bmap
)) < 0)
356 bm
= isl_basic_map_copy(tab
->bmap
);
357 bm
= isl_basic_map_cow(bm
);
358 bm
= isl_basic_map_update_from_tab(bm
, tab
);
359 bm
= isl_basic_map_simplify(bm
);
360 bm
= isl_basic_map_finalize(bm
);
361 empty
= isl_basic_map_is_empty(bm
);
363 isl_basic_map_free(bm
);
364 else if (dc
->add(dc
, bm
) < 0)
374 struct isl_tab_undo
*snap2
;
375 snap2
= isl_tab_snap(tab
);
376 if (tab_add_divs(tab
, map
->p
[level
],
377 &div_map
[level
]) < 0)
380 snap
[level
] = isl_tab_snap(tab
);
381 if (tab_freeze_constraints(tab
) < 0)
383 if (tab_add_constraints(tab
, map
->p
[level
],
389 if (isl_tab_rollback(tab
, snap2
) < 0)
395 n
[level
] = n_non_redundant(ctx
, tab
, offset
,
404 if (isl_tab_rollback(tab
, snap
[level
]) < 0)
406 if (tab_add_constraint(tab
, map
->p
[level
],
407 div_map
[level
], index
[level
][0], 1) < 0)
412 if (k
[level
] + 1 >= n
[level
]) {
416 if (isl_tab_rollback(tab
, snap
[level
]) < 0)
418 if (tab_add_constraint(tab
, map
->p
[level
],
420 index
[level
][k
[level
]], 0) < 0)
422 snap
[level
] = isl_tab_snap(tab
);
424 if (tab_add_constraint(tab
, map
->p
[level
],
426 index
[level
][k
[level
]], 1) < 0)
438 for (i
= 0; index
&& i
< map
->n
; ++i
)
441 for (i
= 0; div_map
&& i
< map
->n
; ++i
)
445 isl_basic_map_free(bmap
);
454 for (i
= 0; index
&& i
< map
->n
; ++i
)
457 for (i
= 0; div_map
&& i
< map
->n
; ++i
)
460 isl_basic_map_free(bmap
);
462 return isl_stat_error
;
465 /* A diff collector that actually collects all parts of the
466 * set difference in the field diff.
468 struct isl_subtract_diff_collector
{
469 struct isl_diff_collector dc
;
470 struct isl_map
*diff
;
473 /* isl_subtract_diff_collector callback.
475 static isl_stat
basic_map_subtract_add(struct isl_diff_collector
*dc
,
476 __isl_take isl_basic_map
*bmap
)
478 struct isl_subtract_diff_collector
*sdc
;
479 sdc
= (struct isl_subtract_diff_collector
*)dc
;
481 sdc
->diff
= isl_map_union_disjoint(sdc
->diff
,
482 isl_map_from_basic_map(bmap
));
484 return sdc
->diff
? isl_stat_ok
: isl_stat_error
;
487 /* Return the set difference between bmap and map.
489 static __isl_give isl_map
*basic_map_subtract(__isl_take isl_basic_map
*bmap
,
490 __isl_take isl_map
*map
)
492 struct isl_subtract_diff_collector sdc
;
493 sdc
.dc
.add
= &basic_map_subtract_add
;
494 sdc
.diff
= isl_map_empty(isl_basic_map_get_space(bmap
));
495 if (basic_map_collect_diff(bmap
, map
, &sdc
.dc
) < 0) {
496 isl_map_free(sdc
.diff
);
502 /* Return an empty map living in the same space as "map1" and "map2".
504 static __isl_give isl_map
*replace_pair_by_empty( __isl_take isl_map
*map1
,
505 __isl_take isl_map
*map2
)
509 space
= isl_map_get_space(map1
);
512 return isl_map_empty(space
);
515 /* Return the set difference between map1 and map2.
516 * (U_i A_i) \ (U_j B_j) is computed as U_i (A_i \ (U_j B_j))
518 * If "map1" and "map2" are obviously equal to each other,
519 * then return an empty map in the same space.
521 * If "map1" and "map2" are disjoint, then simply return "map1".
523 static __isl_give isl_map
*map_subtract( __isl_take isl_map
*map1
,
524 __isl_take isl_map
*map2
)
528 struct isl_map
*diff
;
533 isl_assert(map1
->ctx
, isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
535 equal
= isl_map_plain_is_equal(map1
, map2
);
539 return replace_pair_by_empty(map1
, map2
);
541 disjoint
= isl_map_is_disjoint(map1
, map2
);
549 map1
= isl_map_compute_divs(map1
);
550 map2
= isl_map_compute_divs(map2
);
554 map1
= isl_map_remove_empty_parts(map1
);
555 map2
= isl_map_remove_empty_parts(map2
);
557 diff
= isl_map_empty(isl_map_get_space(map1
));
558 for (i
= 0; i
< map1
->n
; ++i
) {
560 d
= basic_map_subtract(isl_basic_map_copy(map1
->p
[i
]),
562 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
))
563 diff
= isl_map_union_disjoint(diff
, d
);
565 diff
= isl_map_union(diff
, d
);
578 __isl_give isl_map
*isl_map_subtract( __isl_take isl_map
*map1
,
579 __isl_take isl_map
*map2
)
581 return isl_map_align_params_map_map_and(map1
, map2
, &map_subtract
);
584 struct isl_set
*isl_set_subtract(struct isl_set
*set1
, struct isl_set
*set2
)
586 return set_from_map(isl_map_subtract(set_to_map(set1
),
590 /* Remove the elements of "dom" from the domain of "map".
592 static __isl_give isl_map
*map_subtract_domain(__isl_take isl_map
*map
,
593 __isl_take isl_set
*dom
)
598 ok
= isl_map_compatible_domain(map
, dom
);
602 isl_die(isl_set_get_ctx(dom
), isl_error_invalid
,
603 "incompatible spaces", goto error
);
605 ext_dom
= isl_map_universe(isl_map_get_space(map
));
606 ext_dom
= isl_map_intersect_domain(ext_dom
, dom
);
607 return isl_map_subtract(map
, ext_dom
);
614 __isl_give isl_map
*isl_map_subtract_domain(__isl_take isl_map
*map
,
615 __isl_take isl_set
*dom
)
617 return isl_map_align_params_map_map_and(map
, dom
, &map_subtract_domain
);
620 /* Remove the elements of "dom" from the range of "map".
622 static __isl_give isl_map
*map_subtract_range(__isl_take isl_map
*map
,
623 __isl_take isl_set
*dom
)
628 ok
= isl_map_compatible_range(map
, dom
);
632 isl_die(isl_set_get_ctx(dom
), isl_error_invalid
,
633 "incompatible spaces", goto error
);
635 ext_dom
= isl_map_universe(isl_map_get_space(map
));
636 ext_dom
= isl_map_intersect_range(ext_dom
, dom
);
637 return isl_map_subtract(map
, ext_dom
);
644 __isl_give isl_map
*isl_map_subtract_range(__isl_take isl_map
*map
,
645 __isl_take isl_set
*dom
)
647 return isl_map_align_params_map_map_and(map
, dom
, &map_subtract_range
);
650 /* A diff collector that aborts as soon as its add function is called,
651 * setting empty to 0.
653 struct isl_is_empty_diff_collector
{
654 struct isl_diff_collector dc
;
658 /* isl_is_empty_diff_collector callback.
660 static isl_stat
basic_map_is_empty_add(struct isl_diff_collector
*dc
,
661 __isl_take isl_basic_map
*bmap
)
663 struct isl_is_empty_diff_collector
*edc
;
664 edc
= (struct isl_is_empty_diff_collector
*)dc
;
666 edc
->empty
= isl_bool_false
;
668 isl_basic_map_free(bmap
);
669 return isl_stat_error
;
672 /* Check if bmap \ map is empty by computing this set difference
673 * and breaking off as soon as the difference is known to be non-empty.
675 static isl_bool
basic_map_diff_is_empty(__isl_keep isl_basic_map
*bmap
,
676 __isl_keep isl_map
*map
)
680 struct isl_is_empty_diff_collector edc
;
682 empty
= isl_basic_map_plain_is_empty(bmap
);
686 edc
.dc
.add
= &basic_map_is_empty_add
;
687 edc
.empty
= isl_bool_true
;
688 r
= basic_map_collect_diff(isl_basic_map_copy(bmap
),
689 isl_map_copy(map
), &edc
.dc
);
691 return isl_bool_false
;
693 return r
< 0 ? isl_bool_error
: isl_bool_true
;
696 /* Check if map1 \ map2 is empty by checking if the set difference is empty
697 * for each of the basic maps in map1.
699 static isl_bool
map_diff_is_empty(__isl_keep isl_map
*map1
,
700 __isl_keep isl_map
*map2
)
703 isl_bool is_empty
= isl_bool_true
;
706 return isl_bool_error
;
708 for (i
= 0; i
< map1
->n
; ++i
) {
709 is_empty
= basic_map_diff_is_empty(map1
->p
[i
], map2
);
710 if (is_empty
< 0 || !is_empty
)
717 /* Return true if "bmap" contains a single element.
719 isl_bool
isl_basic_map_plain_is_singleton(__isl_keep isl_basic_map
*bmap
)
722 return isl_bool_error
;
724 return isl_bool_false
;
726 return isl_bool_false
;
727 return bmap
->n_eq
== isl_basic_map_total_dim(bmap
);
730 /* Return true if "map" contains a single element.
732 isl_bool
isl_map_plain_is_singleton(__isl_keep isl_map
*map
)
735 return isl_bool_error
;
737 return isl_bool_false
;
739 return isl_basic_map_plain_is_singleton(map
->p
[0]);
742 /* Given a singleton basic map, extract the single element
745 static __isl_give isl_point
*singleton_extract_point(
746 __isl_keep isl_basic_map
*bmap
)
750 struct isl_vec
*point
;
756 dim
= isl_basic_map_total_dim(bmap
);
757 isl_assert(bmap
->ctx
, bmap
->n_eq
== dim
, return NULL
);
758 point
= isl_vec_alloc(bmap
->ctx
, 1 + dim
);
764 isl_int_set_si(point
->el
[0], 1);
765 for (j
= 0; j
< bmap
->n_eq
; ++j
) {
767 isl_assert(bmap
->ctx
,
768 isl_seq_first_non_zero(bmap
->eq
[j
] + 1, i
) == -1,
770 isl_assert(bmap
->ctx
,
771 isl_int_is_one(bmap
->eq
[j
][1 + i
]) ||
772 isl_int_is_negone(bmap
->eq
[j
][1 + i
]),
774 isl_assert(bmap
->ctx
,
775 isl_seq_first_non_zero(bmap
->eq
[j
]+1+i
+1, dim
-i
-1) == -1,
778 isl_int_gcd(m
, point
->el
[0], bmap
->eq
[j
][1 + i
]);
779 isl_int_divexact(m
, bmap
->eq
[j
][1 + i
], m
);
781 isl_seq_scale(point
->el
, point
->el
, m
, 1 + i
);
782 isl_int_divexact(m
, point
->el
[0], bmap
->eq
[j
][1 + i
]);
784 isl_int_mul(point
->el
[1 + i
], m
, bmap
->eq
[j
][0]);
788 return isl_point_alloc(isl_basic_map_get_space(bmap
), point
);
795 /* Return isl_bool_true if the singleton map "map1" is a subset of "map2",
796 * i.e., if the single element of "map1" is also an element of "map2".
797 * Assumes "map2" has known divs.
799 static isl_bool
map_is_singleton_subset(__isl_keep isl_map
*map1
,
800 __isl_keep isl_map
*map2
)
803 isl_bool is_subset
= isl_bool_false
;
804 struct isl_point
*point
;
807 return isl_bool_error
;
809 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
810 "expecting single-disjunct input",
811 return isl_bool_error
);
813 point
= singleton_extract_point(map1
->p
[0]);
815 return isl_bool_error
;
817 for (i
= 0; i
< map2
->n
; ++i
) {
818 is_subset
= isl_basic_map_contains_point(map2
->p
[i
], point
);
823 isl_point_free(point
);
827 static isl_bool
map_is_subset(__isl_keep isl_map
*map1
,
828 __isl_keep isl_map
*map2
)
830 isl_bool is_subset
= isl_bool_false
;
831 isl_bool empty
, single
;
835 return isl_bool_error
;
837 if (!isl_map_has_equal_space(map1
, map2
))
838 return isl_bool_false
;
840 empty
= isl_map_is_empty(map1
);
842 return isl_bool_error
;
844 return isl_bool_true
;
846 empty
= isl_map_is_empty(map2
);
848 return isl_bool_error
;
850 return isl_bool_false
;
852 rat1
= isl_map_has_rational(map1
);
853 rat2
= isl_map_has_rational(map2
);
854 if (rat1
< 0 || rat2
< 0)
855 return isl_bool_error
;
857 return isl_bool_false
;
859 if (isl_map_plain_is_universe(map2
))
860 return isl_bool_true
;
862 single
= isl_map_plain_is_singleton(map1
);
864 return isl_bool_error
;
865 map2
= isl_map_compute_divs(isl_map_copy(map2
));
867 is_subset
= map_is_singleton_subset(map1
, map2
);
871 is_subset
= map_diff_is_empty(map1
, map2
);
877 isl_bool
isl_map_is_subset(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
879 return isl_map_align_params_map_map_and_test(map1
, map2
,
883 isl_bool
isl_set_is_subset(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
885 return isl_map_is_subset(set_to_map(set1
), set_to_map(set2
));
888 __isl_give isl_map
*isl_map_make_disjoint(__isl_take isl_map
*map
)
891 struct isl_subtract_diff_collector sdc
;
892 sdc
.dc
.add
= &basic_map_subtract_add
;
896 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
))
901 map
= isl_map_compute_divs(map
);
902 map
= isl_map_remove_empty_parts(map
);
904 if (!map
|| map
->n
<= 1)
907 sdc
.diff
= isl_map_from_basic_map(isl_basic_map_copy(map
->p
[0]));
909 for (i
= 1; i
< map
->n
; ++i
) {
910 struct isl_basic_map
*bmap
= isl_basic_map_copy(map
->p
[i
]);
911 struct isl_map
*copy
= isl_map_copy(sdc
.diff
);
912 if (basic_map_collect_diff(bmap
, copy
, &sdc
.dc
) < 0) {
913 isl_map_free(sdc
.diff
);
924 __isl_give isl_set
*isl_set_make_disjoint(__isl_take isl_set
*set
)
926 return set_from_map(isl_map_make_disjoint(set_to_map(set
)));
929 __isl_give isl_map
*isl_map_complement(__isl_take isl_map
*map
)
936 universe
= isl_map_universe(isl_map_get_space(map
));
938 return isl_map_subtract(universe
, map
);
941 __isl_give isl_set
*isl_set_complement(__isl_take isl_set
*set
)
943 return isl_map_complement(set
);