interface/python.cc: document order of superclasses
[isl.git] / isl_map_subtract.c
blob8eb273802550fea31cd713fd3e712424828135bf
1 /*
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
8 */
10 #include <isl_map_private.h>
11 #include <isl_seq.h>
12 #include <isl/set.h>
13 #include <isl/map.h>
14 #include "isl_tab.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
30 * coefficients.
32 static void expand_constraint(isl_vec *v, unsigned dim,
33 isl_int *c, int *div_map, unsigned n_div)
35 int i;
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 int tab_add_constraints(struct isl_tab *tab,
50 __isl_keep isl_basic_map *bmap, int *div_map)
52 int i;
53 unsigned dim;
54 unsigned tab_total;
55 unsigned bmap_total;
56 isl_vec *v;
58 if (!tab || !bmap)
59 return -1;
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 -1;
68 v = isl_vec_alloc(bmap->ctx, 1 + tab_total);
69 if (!v)
70 return -1;
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)
75 goto error;
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)
79 goto error;
80 isl_seq_neg(bmap->eq[i], bmap->eq[i], 1 + bmap_total);
81 if (tab->empty)
82 break;
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)
88 goto error;
89 if (tab->empty)
90 break;
93 isl_vec_free(v);
94 return 0;
95 error:
96 isl_vec_free(v);
97 return -1;
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 int tab_add_constraint(struct isl_tab *tab,
110 __isl_keep isl_basic_map *bmap, int *div_map, int c, int oppose)
112 unsigned dim;
113 unsigned tab_total;
114 unsigned bmap_total;
115 isl_vec *v;
116 int r;
118 if (!tab || !bmap)
119 return -1;
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);
126 if (!v)
127 return -1;
129 if (c < 2 * bmap->n_eq) {
130 if ((c % 2) != oppose)
131 isl_seq_neg(bmap->eq[c/2], bmap->eq[c/2],
132 1 + bmap_total);
133 if (oppose)
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);
137 if (oppose)
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],
141 1 + bmap_total);
142 } else {
143 c -= 2 * bmap->n_eq;
144 if (oppose) {
145 isl_seq_neg(bmap->ineq[c], bmap->ineq[c],
146 1 + bmap_total);
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);
151 if (oppose) {
152 isl_int_add_ui(bmap->ineq[c][0], bmap->ineq[c][0], 1);
153 isl_seq_neg(bmap->ineq[c], bmap->ineq[c],
154 1 + bmap_total);
158 isl_vec_free(v);
159 return r;
162 static int tab_add_divs(struct isl_tab *tab, __isl_keep isl_basic_map *bmap,
163 int **div_map)
165 int i, j;
166 struct isl_vec *vec;
167 unsigned total;
168 unsigned dim;
170 if (!bmap)
171 return -1;
172 if (!bmap->n_div)
173 return 0;
175 if (!*div_map)
176 *div_map = isl_alloc_array(bmap->ctx, int, bmap->n_div);
177 if (!*div_map)
178 return -1;
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);
183 if (!vec)
184 return -1;
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_set(vec->el[2 + dim + (*div_map)[j]],
191 bmap->div[i][2 + dim + j]);
192 for (j = 0; j < tab->bmap->n_div; ++j)
193 if (isl_seq_eq(tab->bmap->div[j],
194 vec->el, 2 + dim + tab->bmap->n_div))
195 break;
196 (*div_map)[i] = j;
197 if (j == tab->bmap->n_div) {
198 vec->size = 2 + dim + tab->bmap->n_div;
199 if (isl_tab_add_div(tab, vec) < 0)
200 goto error;
204 isl_vec_free(vec);
206 return 0;
207 error:
208 isl_vec_free(vec);
210 return -1;
213 /* Freeze all constraints of tableau tab.
215 static int tab_freeze_constraints(struct isl_tab *tab)
217 int i;
219 for (i = 0; i < tab->n_con; ++i)
220 if (isl_tab_freeze_constraint(tab, i) < 0)
221 return -1;
223 return 0;
226 /* Check for redundant constraints starting at offset.
227 * Put the indices of the redundant constraints in index
228 * and return the number of redundant constraints.
230 static int n_non_redundant(isl_ctx *ctx, struct isl_tab *tab,
231 int offset, int **index)
233 int i, n;
234 int n_test = tab->n_con - offset;
236 if (isl_tab_detect_redundant(tab) < 0)
237 return -1;
239 if (n_test == 0)
240 return 0;
241 if (!*index)
242 *index = isl_alloc_array(ctx, int, n_test);
243 if (!*index)
244 return -1;
246 for (n = 0, i = 0; i < n_test; ++i) {
247 int r;
248 r = isl_tab_is_redundant(tab, offset + i);
249 if (r < 0)
250 return -1;
251 if (r)
252 continue;
253 (*index)[n++] = i;
256 return n;
259 /* basic_map_collect_diff calls add on each of the pieces of
260 * the set difference between bmap and map until the add method
261 * return a negative value.
263 struct isl_diff_collector {
264 int (*add)(struct isl_diff_collector *dc,
265 __isl_take isl_basic_map *bmap);
268 /* Compute the set difference between bmap and map and call
269 * dc->add on each of the piece until this function returns
270 * a negative value.
271 * Return 0 on success and -1 on error. dc->add returning
272 * a negative value is treated as an error, but the calling
273 * function can interpret the results based on the state of dc.
275 * Assumes that map has known divs.
277 * The difference is computed by a backtracking algorithm.
278 * Each level corresponds to a basic map in "map".
279 * When a node in entered for the first time, we check
280 * if the corresonding basic map intersects the current piece
281 * of "bmap". If not, we move to the next level.
282 * Otherwise, we split the current piece into as many
283 * pieces as there are non-redundant constraints of the current
284 * basic map in the intersection. Each of these pieces is
285 * handled by a child of the current node.
286 * In particular, if there are n non-redundant constraints,
287 * then for each 0 <= i < n, a piece is cut off by adding
288 * constraints 0 <= j < i and adding the opposite of constraint i.
289 * If there are no non-redundant constraints, meaning that the current
290 * piece is a subset of the current basic map, then we simply backtrack.
292 * In the leaves, we check if the remaining piece has any integer points
293 * and if so, pass it along to dc->add. As a special case, if nothing
294 * has been removed when we end up in a leaf, we simply pass along
295 * the original basic map.
297 static isl_stat basic_map_collect_diff(__isl_take isl_basic_map *bmap,
298 __isl_take isl_map *map, struct isl_diff_collector *dc)
300 int i;
301 int modified;
302 int level;
303 int init;
304 isl_bool empty;
305 isl_ctx *ctx;
306 struct isl_tab *tab = NULL;
307 struct isl_tab_undo **snap = NULL;
308 int *k = NULL;
309 int *n = NULL;
310 int **index = NULL;
311 int **div_map = NULL;
313 empty = isl_basic_map_is_empty(bmap);
314 if (empty) {
315 isl_basic_map_free(bmap);
316 isl_map_free(map);
317 return empty < 0 ? isl_stat_error : isl_stat_ok;
320 bmap = isl_basic_map_cow(bmap);
321 map = isl_map_cow(map);
323 if (!bmap || !map)
324 goto error;
326 ctx = map->ctx;
327 snap = isl_alloc_array(map->ctx, struct isl_tab_undo *, map->n);
328 k = isl_alloc_array(map->ctx, int, map->n);
329 n = isl_alloc_array(map->ctx, int, map->n);
330 index = isl_calloc_array(map->ctx, int *, map->n);
331 div_map = isl_calloc_array(map->ctx, int *, map->n);
332 if (!snap || !k || !n || !index || !div_map)
333 goto error;
335 bmap = isl_basic_map_order_divs(bmap);
336 map = isl_map_order_divs(map);
338 tab = isl_tab_from_basic_map(bmap, 1);
339 if (!tab)
340 goto error;
342 modified = 0;
343 level = 0;
344 init = 1;
346 while (level >= 0) {
347 if (level >= map->n) {
348 int empty;
349 struct isl_basic_map *bm;
350 if (!modified) {
351 if (dc->add(dc, isl_basic_map_copy(bmap)) < 0)
352 goto error;
353 break;
355 bm = isl_basic_map_copy(tab->bmap);
356 bm = isl_basic_map_cow(bm);
357 bm = isl_basic_map_update_from_tab(bm, tab);
358 bm = isl_basic_map_simplify(bm);
359 bm = isl_basic_map_finalize(bm);
360 empty = isl_basic_map_is_empty(bm);
361 if (empty)
362 isl_basic_map_free(bm);
363 else if (dc->add(dc, bm) < 0)
364 goto error;
365 if (empty < 0)
366 goto error;
367 level--;
368 init = 0;
369 continue;
371 if (init) {
372 int offset;
373 struct isl_tab_undo *snap2;
374 snap2 = isl_tab_snap(tab);
375 if (tab_add_divs(tab, map->p[level],
376 &div_map[level]) < 0)
377 goto error;
378 offset = tab->n_con;
379 snap[level] = isl_tab_snap(tab);
380 if (tab_freeze_constraints(tab) < 0)
381 goto error;
382 if (tab_add_constraints(tab, map->p[level],
383 div_map[level]) < 0)
384 goto error;
385 k[level] = 0;
386 n[level] = 0;
387 if (tab->empty) {
388 if (isl_tab_rollback(tab, snap2) < 0)
389 goto error;
390 level++;
391 continue;
393 modified = 1;
394 n[level] = n_non_redundant(ctx, tab, offset,
395 &index[level]);
396 if (n[level] < 0)
397 goto error;
398 if (n[level] == 0) {
399 level--;
400 init = 0;
401 continue;
403 if (isl_tab_rollback(tab, snap[level]) < 0)
404 goto error;
405 if (tab_add_constraint(tab, map->p[level],
406 div_map[level], index[level][0], 1) < 0)
407 goto error;
408 level++;
409 continue;
410 } else {
411 if (k[level] + 1 >= n[level]) {
412 level--;
413 continue;
415 if (isl_tab_rollback(tab, snap[level]) < 0)
416 goto error;
417 if (tab_add_constraint(tab, map->p[level],
418 div_map[level],
419 index[level][k[level]], 0) < 0)
420 goto error;
421 snap[level] = isl_tab_snap(tab);
422 k[level]++;
423 if (tab_add_constraint(tab, map->p[level],
424 div_map[level],
425 index[level][k[level]], 1) < 0)
426 goto error;
427 level++;
428 init = 1;
429 continue;
433 isl_tab_free(tab);
434 free(snap);
435 free(n);
436 free(k);
437 for (i = 0; index && i < map->n; ++i)
438 free(index[i]);
439 free(index);
440 for (i = 0; div_map && i < map->n; ++i)
441 free(div_map[i]);
442 free(div_map);
444 isl_basic_map_free(bmap);
445 isl_map_free(map);
447 return isl_stat_ok;
448 error:
449 isl_tab_free(tab);
450 free(snap);
451 free(n);
452 free(k);
453 for (i = 0; index && i < map->n; ++i)
454 free(index[i]);
455 free(index);
456 for (i = 0; div_map && i < map->n; ++i)
457 free(div_map[i]);
458 free(div_map);
459 isl_basic_map_free(bmap);
460 isl_map_free(map);
461 return isl_stat_error;
464 /* A diff collector that actually collects all parts of the
465 * set difference in the field diff.
467 struct isl_subtract_diff_collector {
468 struct isl_diff_collector dc;
469 struct isl_map *diff;
472 /* isl_subtract_diff_collector callback.
474 static int basic_map_subtract_add(struct isl_diff_collector *dc,
475 __isl_take isl_basic_map *bmap)
477 struct isl_subtract_diff_collector *sdc;
478 sdc = (struct isl_subtract_diff_collector *)dc;
480 sdc->diff = isl_map_union_disjoint(sdc->diff,
481 isl_map_from_basic_map(bmap));
483 return sdc->diff ? 0 : -1;
486 /* Return the set difference between bmap and map.
488 static __isl_give isl_map *basic_map_subtract(__isl_take isl_basic_map *bmap,
489 __isl_take isl_map *map)
491 struct isl_subtract_diff_collector sdc;
492 sdc.dc.add = &basic_map_subtract_add;
493 sdc.diff = isl_map_empty(isl_basic_map_get_space(bmap));
494 if (basic_map_collect_diff(bmap, map, &sdc.dc) < 0) {
495 isl_map_free(sdc.diff);
496 sdc.diff = NULL;
498 return sdc.diff;
501 /* Return an empty map living in the same space as "map1" and "map2".
503 static __isl_give isl_map *replace_pair_by_empty( __isl_take isl_map *map1,
504 __isl_take isl_map *map2)
506 isl_space *space;
508 space = isl_map_get_space(map1);
509 isl_map_free(map1);
510 isl_map_free(map2);
511 return isl_map_empty(space);
514 /* Return the set difference between map1 and map2.
515 * (U_i A_i) \ (U_j B_j) is computed as U_i (A_i \ (U_j B_j))
517 * If "map1" and "map2" are obviously equal to each other,
518 * then return an empty map in the same space.
520 * If "map1" and "map2" are disjoint, then simply return "map1".
522 static __isl_give isl_map *map_subtract( __isl_take isl_map *map1,
523 __isl_take isl_map *map2)
525 int i;
526 int equal, disjoint;
527 struct isl_map *diff;
529 if (!map1 || !map2)
530 goto error;
532 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
534 equal = isl_map_plain_is_equal(map1, map2);
535 if (equal < 0)
536 goto error;
537 if (equal)
538 return replace_pair_by_empty(map1, map2);
540 disjoint = isl_map_is_disjoint(map1, map2);
541 if (disjoint < 0)
542 goto error;
543 if (disjoint) {
544 isl_map_free(map2);
545 return map1;
548 map1 = isl_map_compute_divs(map1);
549 map2 = isl_map_compute_divs(map2);
550 if (!map1 || !map2)
551 goto error;
553 map1 = isl_map_remove_empty_parts(map1);
554 map2 = isl_map_remove_empty_parts(map2);
556 diff = isl_map_empty(isl_map_get_space(map1));
557 for (i = 0; i < map1->n; ++i) {
558 struct isl_map *d;
559 d = basic_map_subtract(isl_basic_map_copy(map1->p[i]),
560 isl_map_copy(map2));
561 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT))
562 diff = isl_map_union_disjoint(diff, d);
563 else
564 diff = isl_map_union(diff, d);
567 isl_map_free(map1);
568 isl_map_free(map2);
570 return diff;
571 error:
572 isl_map_free(map1);
573 isl_map_free(map2);
574 return NULL;
577 __isl_give isl_map *isl_map_subtract( __isl_take isl_map *map1,
578 __isl_take isl_map *map2)
580 return isl_map_align_params_map_map_and(map1, map2, &map_subtract);
583 struct isl_set *isl_set_subtract(struct isl_set *set1, struct isl_set *set2)
585 return set_from_map(isl_map_subtract(set_to_map(set1),
586 set_to_map(set2)));
589 /* Remove the elements of "dom" from the domain of "map".
591 static __isl_give isl_map *map_subtract_domain(__isl_take isl_map *map,
592 __isl_take isl_set *dom)
594 isl_map *ext_dom;
596 if (!isl_map_compatible_domain(map, dom))
597 isl_die(isl_set_get_ctx(dom), isl_error_invalid,
598 "incompatible spaces", goto error);
600 ext_dom = isl_map_universe(isl_map_get_space(map));
601 ext_dom = isl_map_intersect_domain(ext_dom, dom);
602 return isl_map_subtract(map, ext_dom);
603 error:
604 isl_map_free(map);
605 isl_set_free(dom);
606 return NULL;
609 __isl_give isl_map *isl_map_subtract_domain(__isl_take isl_map *map,
610 __isl_take isl_set *dom)
612 return isl_map_align_params_map_map_and(map, dom, &map_subtract_domain);
615 /* Remove the elements of "dom" from the range of "map".
617 static __isl_give isl_map *map_subtract_range(__isl_take isl_map *map,
618 __isl_take isl_set *dom)
620 isl_map *ext_dom;
622 if (!isl_map_compatible_range(map, dom))
623 isl_die(isl_set_get_ctx(dom), isl_error_invalid,
624 "incompatible spaces", goto error);
626 ext_dom = isl_map_universe(isl_map_get_space(map));
627 ext_dom = isl_map_intersect_range(ext_dom, dom);
628 return isl_map_subtract(map, ext_dom);
629 error:
630 isl_map_free(map);
631 isl_set_free(dom);
632 return NULL;
635 __isl_give isl_map *isl_map_subtract_range(__isl_take isl_map *map,
636 __isl_take isl_set *dom)
638 return isl_map_align_params_map_map_and(map, dom, &map_subtract_range);
641 /* A diff collector that aborts as soon as its add function is called,
642 * setting empty to 0.
644 struct isl_is_empty_diff_collector {
645 struct isl_diff_collector dc;
646 isl_bool empty;
649 /* isl_is_empty_diff_collector callback.
651 static int basic_map_is_empty_add(struct isl_diff_collector *dc,
652 __isl_take isl_basic_map *bmap)
654 struct isl_is_empty_diff_collector *edc;
655 edc = (struct isl_is_empty_diff_collector *)dc;
657 edc->empty = 0;
659 isl_basic_map_free(bmap);
660 return -1;
663 /* Check if bmap \ map is empty by computing this set difference
664 * and breaking off as soon as the difference is known to be non-empty.
666 static isl_bool basic_map_diff_is_empty(__isl_keep isl_basic_map *bmap,
667 __isl_keep isl_map *map)
669 isl_bool empty;
670 isl_stat r;
671 struct isl_is_empty_diff_collector edc;
673 empty = isl_basic_map_plain_is_empty(bmap);
674 if (empty)
675 return empty;
677 edc.dc.add = &basic_map_is_empty_add;
678 edc.empty = isl_bool_true;
679 r = basic_map_collect_diff(isl_basic_map_copy(bmap),
680 isl_map_copy(map), &edc.dc);
681 if (!edc.empty)
682 return isl_bool_false;
684 return r < 0 ? isl_bool_error : isl_bool_true;
687 /* Check if map1 \ map2 is empty by checking if the set difference is empty
688 * for each of the basic maps in map1.
690 static isl_bool map_diff_is_empty(__isl_keep isl_map *map1,
691 __isl_keep isl_map *map2)
693 int i;
694 isl_bool is_empty = isl_bool_true;
696 if (!map1 || !map2)
697 return isl_bool_error;
699 for (i = 0; i < map1->n; ++i) {
700 is_empty = basic_map_diff_is_empty(map1->p[i], map2);
701 if (is_empty < 0 || !is_empty)
702 break;
705 return is_empty;
708 /* Return 1 if "bmap" contains a single element.
710 int isl_basic_map_plain_is_singleton(__isl_keep isl_basic_map *bmap)
712 if (!bmap)
713 return -1;
714 if (bmap->n_div)
715 return 0;
716 if (bmap->n_ineq)
717 return 0;
718 return bmap->n_eq == isl_basic_map_total_dim(bmap);
721 /* Return 1 if "map" contains a single element.
723 int isl_map_plain_is_singleton(__isl_keep isl_map *map)
725 if (!map)
726 return -1;
727 if (map->n != 1)
728 return 0;
730 return isl_basic_map_plain_is_singleton(map->p[0]);
733 /* Given a singleton basic map, extract the single element
734 * as an isl_point.
736 static __isl_give isl_point *singleton_extract_point(
737 __isl_keep isl_basic_map *bmap)
739 int j;
740 unsigned dim;
741 struct isl_vec *point;
742 isl_int m;
744 if (!bmap)
745 return NULL;
747 dim = isl_basic_map_total_dim(bmap);
748 isl_assert(bmap->ctx, bmap->n_eq == dim, return NULL);
749 point = isl_vec_alloc(bmap->ctx, 1 + dim);
750 if (!point)
751 return NULL;
753 isl_int_init(m);
755 isl_int_set_si(point->el[0], 1);
756 for (j = 0; j < bmap->n_eq; ++j) {
757 int i = dim - 1 - j;
758 isl_assert(bmap->ctx,
759 isl_seq_first_non_zero(bmap->eq[j] + 1, i) == -1,
760 goto error);
761 isl_assert(bmap->ctx,
762 isl_int_is_one(bmap->eq[j][1 + i]) ||
763 isl_int_is_negone(bmap->eq[j][1 + i]),
764 goto error);
765 isl_assert(bmap->ctx,
766 isl_seq_first_non_zero(bmap->eq[j]+1+i+1, dim-i-1) == -1,
767 goto error);
769 isl_int_gcd(m, point->el[0], bmap->eq[j][1 + i]);
770 isl_int_divexact(m, bmap->eq[j][1 + i], m);
771 isl_int_abs(m, m);
772 isl_seq_scale(point->el, point->el, m, 1 + i);
773 isl_int_divexact(m, point->el[0], bmap->eq[j][1 + i]);
774 isl_int_neg(m, m);
775 isl_int_mul(point->el[1 + i], m, bmap->eq[j][0]);
778 isl_int_clear(m);
779 return isl_point_alloc(isl_basic_map_get_space(bmap), point);
780 error:
781 isl_int_clear(m);
782 isl_vec_free(point);
783 return NULL;
786 /* Return isl_bool_true if the singleton map "map1" is a subset of "map2",
787 * i.e., if the single element of "map1" is also an element of "map2".
788 * Assumes "map2" has known divs.
790 static isl_bool map_is_singleton_subset(__isl_keep isl_map *map1,
791 __isl_keep isl_map *map2)
793 int i;
794 isl_bool is_subset = isl_bool_false;
795 struct isl_point *point;
797 if (!map1 || !map2)
798 return isl_bool_error;
799 if (map1->n != 1)
800 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
801 "expecting single-disjunct input",
802 return isl_bool_error);
804 point = singleton_extract_point(map1->p[0]);
805 if (!point)
806 return isl_bool_error;
808 for (i = 0; i < map2->n; ++i) {
809 is_subset = isl_basic_map_contains_point(map2->p[i], point);
810 if (is_subset)
811 break;
814 isl_point_free(point);
815 return is_subset;
818 static isl_bool map_is_subset(__isl_keep isl_map *map1,
819 __isl_keep isl_map *map2)
821 isl_bool is_subset = isl_bool_false;
822 isl_bool empty;
823 int rat1, rat2;
825 if (!map1 || !map2)
826 return isl_bool_error;
828 if (!isl_map_has_equal_space(map1, map2))
829 return isl_bool_false;
831 empty = isl_map_is_empty(map1);
832 if (empty < 0)
833 return isl_bool_error;
834 if (empty)
835 return isl_bool_true;
837 empty = isl_map_is_empty(map2);
838 if (empty < 0)
839 return isl_bool_error;
840 if (empty)
841 return isl_bool_false;
843 rat1 = isl_map_has_rational(map1);
844 rat2 = isl_map_has_rational(map2);
845 if (rat1 < 0 || rat2 < 0)
846 return isl_bool_error;
847 if (rat1 && !rat2)
848 return isl_bool_false;
850 if (isl_map_plain_is_universe(map2))
851 return isl_bool_true;
853 map2 = isl_map_compute_divs(isl_map_copy(map2));
854 if (isl_map_plain_is_singleton(map1)) {
855 is_subset = map_is_singleton_subset(map1, map2);
856 isl_map_free(map2);
857 return is_subset;
859 is_subset = map_diff_is_empty(map1, map2);
860 isl_map_free(map2);
862 return is_subset;
865 isl_bool isl_map_is_subset(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
867 return isl_map_align_params_map_map_and_test(map1, map2,
868 &map_is_subset);
871 isl_bool isl_set_is_subset(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
873 return isl_map_is_subset(set_to_map(set1), set_to_map(set2));
876 __isl_give isl_map *isl_map_make_disjoint(__isl_take isl_map *map)
878 int i;
879 struct isl_subtract_diff_collector sdc;
880 sdc.dc.add = &basic_map_subtract_add;
882 if (!map)
883 return NULL;
884 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
885 return map;
886 if (map->n <= 1)
887 return map;
889 map = isl_map_compute_divs(map);
890 map = isl_map_remove_empty_parts(map);
892 if (!map || map->n <= 1)
893 return map;
895 sdc.diff = isl_map_from_basic_map(isl_basic_map_copy(map->p[0]));
897 for (i = 1; i < map->n; ++i) {
898 struct isl_basic_map *bmap = isl_basic_map_copy(map->p[i]);
899 struct isl_map *copy = isl_map_copy(sdc.diff);
900 if (basic_map_collect_diff(bmap, copy, &sdc.dc) < 0) {
901 isl_map_free(sdc.diff);
902 sdc.diff = NULL;
903 break;
907 isl_map_free(map);
909 return sdc.diff;
912 __isl_give isl_set *isl_set_make_disjoint(__isl_take isl_set *set)
914 return set_from_map(isl_map_make_disjoint(set_to_map(set)));
917 __isl_give isl_map *isl_map_complement(__isl_take isl_map *map)
919 isl_map *universe;
921 if (!map)
922 return NULL;
924 universe = isl_map_universe(isl_map_get_space(map));
926 return isl_map_subtract(universe, map);
929 __isl_give isl_set *isl_set_complement(__isl_take isl_set *set)
931 return isl_map_complement(set);