isl_term_free: return NULL
[isl.git] / isl_map.c
blob43972d6d00d2b4b8822b1f7cd648bc96638a5a36
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2014 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
6 * Copyright 2016 INRIA Paris
7 * Copyright 2016 Sven Verdoolaege
9 * Use of this software is governed by the MIT license
11 * Written by Sven Verdoolaege, K.U.Leuven, Departement
12 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
13 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
14 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
15 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
16 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
17 * B.P. 105 - 78153 Le Chesnay, France
18 * and Centre de Recherche Inria de Paris, 2 rue Simone Iff - Voie DQ12,
19 * CS 42112, 75589 Paris Cedex 12, France
22 #include <string.h>
23 #include <isl_ctx_private.h>
24 #include <isl_map_private.h>
25 #include <isl_blk.h>
26 #include <isl/id.h>
27 #include <isl/constraint.h>
28 #include "isl_space_private.h"
29 #include "isl_equalities.h"
30 #include <isl_lp_private.h>
31 #include <isl_seq.h>
32 #include <isl/set.h>
33 #include <isl/map.h>
34 #include <isl_reordering.h>
35 #include "isl_sample.h"
36 #include <isl_sort.h>
37 #include "isl_tab.h"
38 #include <isl/vec.h>
39 #include <isl_mat_private.h>
40 #include <isl_vec_private.h>
41 #include <isl_dim_map.h>
42 #include <isl_local_space_private.h>
43 #include <isl_aff_private.h>
44 #include <isl_options_private.h>
45 #include <isl_morph.h>
46 #include <isl_val_private.h>
48 #include <bset_to_bmap.c>
49 #include <bset_from_bmap.c>
50 #include <set_to_map.c>
51 #include <set_from_map.c>
53 static unsigned n(__isl_keep isl_space *dim, enum isl_dim_type type)
55 switch (type) {
56 case isl_dim_param: return dim->nparam;
57 case isl_dim_in: return dim->n_in;
58 case isl_dim_out: return dim->n_out;
59 case isl_dim_all: return dim->nparam + dim->n_in + dim->n_out;
60 default: return 0;
64 static unsigned pos(__isl_keep isl_space *dim, enum isl_dim_type type)
66 switch (type) {
67 case isl_dim_param: return 1;
68 case isl_dim_in: return 1 + dim->nparam;
69 case isl_dim_out: return 1 + dim->nparam + dim->n_in;
70 default: return 0;
74 unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap,
75 enum isl_dim_type type)
77 if (!bmap)
78 return 0;
79 switch (type) {
80 case isl_dim_cst: return 1;
81 case isl_dim_param:
82 case isl_dim_in:
83 case isl_dim_out: return isl_space_dim(bmap->dim, type);
84 case isl_dim_div: return bmap->n_div;
85 case isl_dim_all: return isl_basic_map_total_dim(bmap);
86 default: return 0;
90 /* Return the space of "map".
92 __isl_keep isl_space *isl_map_peek_space(__isl_keep const isl_map *map)
94 return map ? map->dim : NULL;
97 unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type)
99 return map ? n(map->dim, type) : 0;
102 unsigned isl_set_dim(__isl_keep isl_set *set, enum isl_dim_type type)
104 return set ? n(set->dim, type) : 0;
107 unsigned isl_basic_map_offset(struct isl_basic_map *bmap,
108 enum isl_dim_type type)
110 isl_space *space;
112 if (!bmap)
113 return 0;
115 space = bmap->dim;
116 switch (type) {
117 case isl_dim_cst: return 0;
118 case isl_dim_param: return 1;
119 case isl_dim_in: return 1 + space->nparam;
120 case isl_dim_out: return 1 + space->nparam + space->n_in;
121 case isl_dim_div: return 1 + space->nparam + space->n_in +
122 space->n_out;
123 default: return 0;
127 unsigned isl_basic_set_offset(__isl_keep isl_basic_set *bset,
128 enum isl_dim_type type)
130 return isl_basic_map_offset(bset, type);
133 static unsigned map_offset(__isl_keep isl_map *map, enum isl_dim_type type)
135 return pos(map->dim, type);
138 unsigned isl_basic_set_dim(__isl_keep isl_basic_set *bset,
139 enum isl_dim_type type)
141 return isl_basic_map_dim(bset, type);
144 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set *bset)
146 return isl_basic_set_dim(bset, isl_dim_set);
149 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set *bset)
151 return isl_basic_set_dim(bset, isl_dim_param);
154 unsigned isl_basic_set_total_dim(__isl_keep const isl_basic_set *bset)
156 if (!bset)
157 return 0;
158 return isl_space_dim(bset->dim, isl_dim_all) + bset->n_div;
161 unsigned isl_set_n_dim(__isl_keep isl_set *set)
163 return isl_set_dim(set, isl_dim_set);
166 unsigned isl_set_n_param(__isl_keep isl_set *set)
168 return isl_set_dim(set, isl_dim_param);
171 unsigned isl_basic_map_n_in(__isl_keep const isl_basic_map *bmap)
173 return bmap ? bmap->dim->n_in : 0;
176 unsigned isl_basic_map_n_out(__isl_keep const isl_basic_map *bmap)
178 return bmap ? bmap->dim->n_out : 0;
181 unsigned isl_basic_map_n_param(__isl_keep const isl_basic_map *bmap)
183 return bmap ? bmap->dim->nparam : 0;
186 unsigned isl_basic_map_n_div(__isl_keep const isl_basic_map *bmap)
188 return bmap ? bmap->n_div : 0;
191 unsigned isl_basic_map_total_dim(__isl_keep const isl_basic_map *bmap)
193 return bmap ? isl_space_dim(bmap->dim, isl_dim_all) + bmap->n_div : 0;
196 unsigned isl_map_n_in(__isl_keep const isl_map *map)
198 return map ? map->dim->n_in : 0;
201 unsigned isl_map_n_out(__isl_keep const isl_map *map)
203 return map ? map->dim->n_out : 0;
206 unsigned isl_map_n_param(__isl_keep const isl_map *map)
208 return map ? map->dim->nparam : 0;
211 /* Return the number of equality constraints in the description of "bmap".
212 * Return -1 on error.
214 int isl_basic_map_n_equality(__isl_keep isl_basic_map *bmap)
216 if (!bmap)
217 return -1;
218 return bmap->n_eq;
221 /* Return the number of equality constraints in the description of "bset".
222 * Return -1 on error.
224 int isl_basic_set_n_equality(__isl_keep isl_basic_set *bset)
226 return isl_basic_map_n_equality(bset_to_bmap(bset));
229 /* Return the number of inequality constraints in the description of "bmap".
230 * Return -1 on error.
232 int isl_basic_map_n_inequality(__isl_keep isl_basic_map *bmap)
234 if (!bmap)
235 return -1;
236 return bmap->n_ineq;
239 /* Return the number of inequality constraints in the description of "bset".
240 * Return -1 on error.
242 int isl_basic_set_n_inequality(__isl_keep isl_basic_set *bset)
244 return isl_basic_map_n_inequality(bset_to_bmap(bset));
247 /* Do "bmap1" and "bmap2" have the same parameters?
249 static isl_bool isl_basic_map_has_equal_params(__isl_keep isl_basic_map *bmap1,
250 __isl_keep isl_basic_map *bmap2)
252 isl_space *space1, *space2;
254 space1 = isl_basic_map_peek_space(bmap1);
255 space2 = isl_basic_map_peek_space(bmap2);
256 return isl_space_has_equal_params(space1, space2);
259 /* Do "map1" and "map2" have the same parameters?
261 isl_bool isl_map_has_equal_params(__isl_keep isl_map *map1,
262 __isl_keep isl_map *map2)
264 isl_space *space1, *space2;
266 space1 = isl_map_peek_space(map1);
267 space2 = isl_map_peek_space(map2);
268 return isl_space_has_equal_params(space1, space2);
271 /* Do "map" and "set" have the same parameters?
273 static isl_bool isl_map_set_has_equal_params(__isl_keep isl_map *map,
274 __isl_keep isl_set *set)
276 return isl_map_has_equal_params(map, set_to_map(set));
279 isl_bool isl_map_compatible_domain(__isl_keep isl_map *map,
280 __isl_keep isl_set *set)
282 isl_bool m;
283 if (!map || !set)
284 return isl_bool_error;
285 m = isl_map_has_equal_params(map, set_to_map(set));
286 if (m < 0 || !m)
287 return m;
288 return isl_space_tuple_is_equal(map->dim, isl_dim_in,
289 set->dim, isl_dim_set);
292 isl_bool isl_basic_map_compatible_domain(__isl_keep isl_basic_map *bmap,
293 __isl_keep isl_basic_set *bset)
295 isl_bool m;
296 if (!bmap || !bset)
297 return isl_bool_error;
298 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
299 if (m < 0 || !m)
300 return m;
301 return isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
302 bset->dim, isl_dim_set);
305 isl_bool isl_map_compatible_range(__isl_keep isl_map *map,
306 __isl_keep isl_set *set)
308 isl_bool m;
309 if (!map || !set)
310 return isl_bool_error;
311 m = isl_map_has_equal_params(map, set_to_map(set));
312 if (m < 0 || !m)
313 return m;
314 return isl_space_tuple_is_equal(map->dim, isl_dim_out,
315 set->dim, isl_dim_set);
318 isl_bool isl_basic_map_compatible_range(__isl_keep isl_basic_map *bmap,
319 __isl_keep isl_basic_set *bset)
321 isl_bool m;
322 if (!bmap || !bset)
323 return isl_bool_error;
324 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
325 if (m < 0 || !m)
326 return m;
327 return isl_space_tuple_is_equal(bmap->dim, isl_dim_out,
328 bset->dim, isl_dim_set);
331 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap)
333 return bmap ? bmap->ctx : NULL;
336 isl_ctx *isl_basic_set_get_ctx(__isl_keep isl_basic_set *bset)
338 return bset ? bset->ctx : NULL;
341 isl_ctx *isl_map_get_ctx(__isl_keep isl_map *map)
343 return map ? map->ctx : NULL;
346 isl_ctx *isl_set_get_ctx(__isl_keep isl_set *set)
348 return set ? set->ctx : NULL;
351 /* Return the space of "bmap".
353 __isl_keep isl_space *isl_basic_map_peek_space(
354 __isl_keep const isl_basic_map *bmap)
356 return bmap ? bmap->dim : NULL;
359 /* Return the space of "bset".
361 __isl_keep isl_space *isl_basic_set_peek_space(__isl_keep isl_basic_set *bset)
363 return isl_basic_map_peek_space(bset_to_bmap(bset));
366 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap)
368 return isl_space_copy(isl_basic_map_peek_space(bmap));
371 __isl_give isl_space *isl_basic_set_get_space(__isl_keep isl_basic_set *bset)
373 return isl_basic_map_get_space(bset_to_bmap(bset));
376 /* Extract the divs in "bmap" as a matrix.
378 __isl_give isl_mat *isl_basic_map_get_divs(__isl_keep isl_basic_map *bmap)
380 int i;
381 isl_ctx *ctx;
382 isl_mat *div;
383 unsigned total;
384 unsigned cols;
386 if (!bmap)
387 return NULL;
389 ctx = isl_basic_map_get_ctx(bmap);
390 total = isl_space_dim(bmap->dim, isl_dim_all);
391 cols = 1 + 1 + total + bmap->n_div;
392 div = isl_mat_alloc(ctx, bmap->n_div, cols);
393 if (!div)
394 return NULL;
396 for (i = 0; i < bmap->n_div; ++i)
397 isl_seq_cpy(div->row[i], bmap->div[i], cols);
399 return div;
402 /* Extract the divs in "bset" as a matrix.
404 __isl_give isl_mat *isl_basic_set_get_divs(__isl_keep isl_basic_set *bset)
406 return isl_basic_map_get_divs(bset);
409 __isl_give isl_local_space *isl_basic_map_get_local_space(
410 __isl_keep isl_basic_map *bmap)
412 isl_mat *div;
414 if (!bmap)
415 return NULL;
417 div = isl_basic_map_get_divs(bmap);
418 return isl_local_space_alloc_div(isl_space_copy(bmap->dim), div);
421 __isl_give isl_local_space *isl_basic_set_get_local_space(
422 __isl_keep isl_basic_set *bset)
424 return isl_basic_map_get_local_space(bset);
427 /* For each known div d = floor(f/m), add the constraints
429 * f - m d >= 0
430 * -(f-(m-1)) + m d >= 0
432 * Do not finalize the result.
434 static __isl_give isl_basic_map *add_known_div_constraints(
435 __isl_take isl_basic_map *bmap)
437 int i;
438 unsigned n_div;
440 if (!bmap)
441 return NULL;
442 n_div = isl_basic_map_dim(bmap, isl_dim_div);
443 if (n_div == 0)
444 return bmap;
445 bmap = isl_basic_map_cow(bmap);
446 bmap = isl_basic_map_extend_constraints(bmap, 0, 2 * n_div);
447 if (!bmap)
448 return NULL;
449 for (i = 0; i < n_div; ++i) {
450 if (isl_int_is_zero(bmap->div[i][0]))
451 continue;
452 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
453 return isl_basic_map_free(bmap);
456 return bmap;
459 __isl_give isl_basic_map *isl_basic_map_from_local_space(
460 __isl_take isl_local_space *ls)
462 int i;
463 int n_div;
464 isl_basic_map *bmap;
466 if (!ls)
467 return NULL;
469 n_div = isl_local_space_dim(ls, isl_dim_div);
470 bmap = isl_basic_map_alloc_space(isl_local_space_get_space(ls),
471 n_div, 0, 2 * n_div);
473 for (i = 0; i < n_div; ++i)
474 if (isl_basic_map_alloc_div(bmap) < 0)
475 goto error;
477 for (i = 0; i < n_div; ++i)
478 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
479 bmap = add_known_div_constraints(bmap);
481 isl_local_space_free(ls);
482 return bmap;
483 error:
484 isl_local_space_free(ls);
485 isl_basic_map_free(bmap);
486 return NULL;
489 __isl_give isl_basic_set *isl_basic_set_from_local_space(
490 __isl_take isl_local_space *ls)
492 return isl_basic_map_from_local_space(ls);
495 __isl_give isl_space *isl_map_get_space(__isl_keep isl_map *map)
497 return isl_space_copy(isl_map_peek_space(map));
500 __isl_give isl_space *isl_set_get_space(__isl_keep isl_set *set)
502 if (!set)
503 return NULL;
504 return isl_space_copy(set->dim);
507 __isl_give isl_basic_map *isl_basic_map_set_tuple_name(
508 __isl_take isl_basic_map *bmap, enum isl_dim_type type, const char *s)
510 bmap = isl_basic_map_cow(bmap);
511 if (!bmap)
512 return NULL;
513 bmap->dim = isl_space_set_tuple_name(bmap->dim, type, s);
514 if (!bmap->dim)
515 goto error;
516 bmap = isl_basic_map_finalize(bmap);
517 return bmap;
518 error:
519 isl_basic_map_free(bmap);
520 return NULL;
523 __isl_give isl_basic_set *isl_basic_set_set_tuple_name(
524 __isl_take isl_basic_set *bset, const char *s)
526 return isl_basic_map_set_tuple_name(bset, isl_dim_set, s);
529 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map *bmap,
530 enum isl_dim_type type)
532 return bmap ? isl_space_get_tuple_name(bmap->dim, type) : NULL;
535 __isl_give isl_map *isl_map_set_tuple_name(__isl_take isl_map *map,
536 enum isl_dim_type type, const char *s)
538 int i;
540 map = isl_map_cow(map);
541 if (!map)
542 return NULL;
544 map->dim = isl_space_set_tuple_name(map->dim, type, s);
545 if (!map->dim)
546 goto error;
548 for (i = 0; i < map->n; ++i) {
549 map->p[i] = isl_basic_map_set_tuple_name(map->p[i], type, s);
550 if (!map->p[i])
551 goto error;
554 return map;
555 error:
556 isl_map_free(map);
557 return NULL;
560 /* Replace the identifier of the tuple of type "type" by "id".
562 __isl_give isl_basic_map *isl_basic_map_set_tuple_id(
563 __isl_take isl_basic_map *bmap,
564 enum isl_dim_type type, __isl_take isl_id *id)
566 bmap = isl_basic_map_cow(bmap);
567 if (!bmap)
568 goto error;
569 bmap->dim = isl_space_set_tuple_id(bmap->dim, type, id);
570 if (!bmap->dim)
571 return isl_basic_map_free(bmap);
572 bmap = isl_basic_map_finalize(bmap);
573 return bmap;
574 error:
575 isl_id_free(id);
576 return NULL;
579 /* Replace the identifier of the tuple by "id".
581 __isl_give isl_basic_set *isl_basic_set_set_tuple_id(
582 __isl_take isl_basic_set *bset, __isl_take isl_id *id)
584 return isl_basic_map_set_tuple_id(bset, isl_dim_set, id);
587 /* Does the input or output tuple have a name?
589 isl_bool isl_map_has_tuple_name(__isl_keep isl_map *map, enum isl_dim_type type)
591 return map ? isl_space_has_tuple_name(map->dim, type) : isl_bool_error;
594 const char *isl_map_get_tuple_name(__isl_keep isl_map *map,
595 enum isl_dim_type type)
597 return map ? isl_space_get_tuple_name(map->dim, type) : NULL;
600 __isl_give isl_set *isl_set_set_tuple_name(__isl_take isl_set *set,
601 const char *s)
603 return set_from_map(isl_map_set_tuple_name(set_to_map(set),
604 isl_dim_set, s));
607 __isl_give isl_map *isl_map_set_tuple_id(__isl_take isl_map *map,
608 enum isl_dim_type type, __isl_take isl_id *id)
610 map = isl_map_cow(map);
611 if (!map)
612 goto error;
614 map->dim = isl_space_set_tuple_id(map->dim, type, id);
616 return isl_map_reset_space(map, isl_space_copy(map->dim));
617 error:
618 isl_id_free(id);
619 return NULL;
622 __isl_give isl_set *isl_set_set_tuple_id(__isl_take isl_set *set,
623 __isl_take isl_id *id)
625 return isl_map_set_tuple_id(set, isl_dim_set, id);
628 __isl_give isl_map *isl_map_reset_tuple_id(__isl_take isl_map *map,
629 enum isl_dim_type type)
631 map = isl_map_cow(map);
632 if (!map)
633 return NULL;
635 map->dim = isl_space_reset_tuple_id(map->dim, type);
637 return isl_map_reset_space(map, isl_space_copy(map->dim));
640 __isl_give isl_set *isl_set_reset_tuple_id(__isl_take isl_set *set)
642 return isl_map_reset_tuple_id(set, isl_dim_set);
645 isl_bool isl_map_has_tuple_id(__isl_keep isl_map *map, enum isl_dim_type type)
647 return map ? isl_space_has_tuple_id(map->dim, type) : isl_bool_error;
650 __isl_give isl_id *isl_map_get_tuple_id(__isl_keep isl_map *map,
651 enum isl_dim_type type)
653 return map ? isl_space_get_tuple_id(map->dim, type) : NULL;
656 isl_bool isl_set_has_tuple_id(__isl_keep isl_set *set)
658 return isl_map_has_tuple_id(set, isl_dim_set);
661 __isl_give isl_id *isl_set_get_tuple_id(__isl_keep isl_set *set)
663 return isl_map_get_tuple_id(set, isl_dim_set);
666 /* Does the set tuple have a name?
668 isl_bool isl_set_has_tuple_name(__isl_keep isl_set *set)
670 if (!set)
671 return isl_bool_error;
672 return isl_space_has_tuple_name(set->dim, isl_dim_set);
676 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set *bset)
678 return bset ? isl_space_get_tuple_name(bset->dim, isl_dim_set) : NULL;
681 const char *isl_set_get_tuple_name(__isl_keep isl_set *set)
683 return set ? isl_space_get_tuple_name(set->dim, isl_dim_set) : NULL;
686 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map *bmap,
687 enum isl_dim_type type, unsigned pos)
689 return bmap ? isl_space_get_dim_name(bmap->dim, type, pos) : NULL;
692 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set *bset,
693 enum isl_dim_type type, unsigned pos)
695 return bset ? isl_space_get_dim_name(bset->dim, type, pos) : NULL;
698 /* Does the given dimension have a name?
700 isl_bool isl_map_has_dim_name(__isl_keep isl_map *map,
701 enum isl_dim_type type, unsigned pos)
703 if (!map)
704 return isl_bool_error;
705 return isl_space_has_dim_name(map->dim, type, pos);
708 const char *isl_map_get_dim_name(__isl_keep isl_map *map,
709 enum isl_dim_type type, unsigned pos)
711 return map ? isl_space_get_dim_name(map->dim, type, pos) : NULL;
714 const char *isl_set_get_dim_name(__isl_keep isl_set *set,
715 enum isl_dim_type type, unsigned pos)
717 return set ? isl_space_get_dim_name(set->dim, type, pos) : NULL;
720 /* Does the given dimension have a name?
722 isl_bool isl_set_has_dim_name(__isl_keep isl_set *set,
723 enum isl_dim_type type, unsigned pos)
725 if (!set)
726 return isl_bool_error;
727 return isl_space_has_dim_name(set->dim, type, pos);
730 __isl_give isl_basic_map *isl_basic_map_set_dim_name(
731 __isl_take isl_basic_map *bmap,
732 enum isl_dim_type type, unsigned pos, const char *s)
734 bmap = isl_basic_map_cow(bmap);
735 if (!bmap)
736 return NULL;
737 bmap->dim = isl_space_set_dim_name(bmap->dim, type, pos, s);
738 if (!bmap->dim)
739 goto error;
740 return isl_basic_map_finalize(bmap);
741 error:
742 isl_basic_map_free(bmap);
743 return NULL;
746 __isl_give isl_map *isl_map_set_dim_name(__isl_take isl_map *map,
747 enum isl_dim_type type, unsigned pos, const char *s)
749 int i;
751 map = isl_map_cow(map);
752 if (!map)
753 return NULL;
755 map->dim = isl_space_set_dim_name(map->dim, type, pos, s);
756 if (!map->dim)
757 goto error;
759 for (i = 0; i < map->n; ++i) {
760 map->p[i] = isl_basic_map_set_dim_name(map->p[i], type, pos, s);
761 if (!map->p[i])
762 goto error;
765 return map;
766 error:
767 isl_map_free(map);
768 return NULL;
771 __isl_give isl_basic_set *isl_basic_set_set_dim_name(
772 __isl_take isl_basic_set *bset,
773 enum isl_dim_type type, unsigned pos, const char *s)
775 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset),
776 type, pos, s));
779 __isl_give isl_set *isl_set_set_dim_name(__isl_take isl_set *set,
780 enum isl_dim_type type, unsigned pos, const char *s)
782 return set_from_map(isl_map_set_dim_name(set_to_map(set),
783 type, pos, s));
786 isl_bool isl_basic_map_has_dim_id(__isl_keep isl_basic_map *bmap,
787 enum isl_dim_type type, unsigned pos)
789 if (!bmap)
790 return isl_bool_error;
791 return isl_space_has_dim_id(bmap->dim, type, pos);
794 __isl_give isl_id *isl_basic_set_get_dim_id(__isl_keep isl_basic_set *bset,
795 enum isl_dim_type type, unsigned pos)
797 return bset ? isl_space_get_dim_id(bset->dim, type, pos) : NULL;
800 isl_bool isl_map_has_dim_id(__isl_keep isl_map *map,
801 enum isl_dim_type type, unsigned pos)
803 return map ? isl_space_has_dim_id(map->dim, type, pos) : isl_bool_error;
806 __isl_give isl_id *isl_map_get_dim_id(__isl_keep isl_map *map,
807 enum isl_dim_type type, unsigned pos)
809 return map ? isl_space_get_dim_id(map->dim, type, pos) : NULL;
812 isl_bool isl_set_has_dim_id(__isl_keep isl_set *set,
813 enum isl_dim_type type, unsigned pos)
815 return isl_map_has_dim_id(set, type, pos);
818 __isl_give isl_id *isl_set_get_dim_id(__isl_keep isl_set *set,
819 enum isl_dim_type type, unsigned pos)
821 return isl_map_get_dim_id(set, type, pos);
824 __isl_give isl_map *isl_map_set_dim_id(__isl_take isl_map *map,
825 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
827 map = isl_map_cow(map);
828 if (!map)
829 goto error;
831 map->dim = isl_space_set_dim_id(map->dim, type, pos, id);
833 return isl_map_reset_space(map, isl_space_copy(map->dim));
834 error:
835 isl_id_free(id);
836 return NULL;
839 __isl_give isl_set *isl_set_set_dim_id(__isl_take isl_set *set,
840 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
842 return isl_map_set_dim_id(set, type, pos, id);
845 int isl_map_find_dim_by_id(__isl_keep isl_map *map, enum isl_dim_type type,
846 __isl_keep isl_id *id)
848 if (!map)
849 return -1;
850 return isl_space_find_dim_by_id(map->dim, type, id);
853 int isl_set_find_dim_by_id(__isl_keep isl_set *set, enum isl_dim_type type,
854 __isl_keep isl_id *id)
856 return isl_map_find_dim_by_id(set, type, id);
859 /* Return the position of the dimension of the given type and name
860 * in "bmap".
861 * Return -1 if no such dimension can be found.
863 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map *bmap,
864 enum isl_dim_type type, const char *name)
866 if (!bmap)
867 return -1;
868 return isl_space_find_dim_by_name(bmap->dim, type, name);
871 int isl_map_find_dim_by_name(__isl_keep isl_map *map, enum isl_dim_type type,
872 const char *name)
874 if (!map)
875 return -1;
876 return isl_space_find_dim_by_name(map->dim, type, name);
879 int isl_set_find_dim_by_name(__isl_keep isl_set *set, enum isl_dim_type type,
880 const char *name)
882 return isl_map_find_dim_by_name(set, type, name);
885 /* Check whether equality i of bset is a pure stride constraint
886 * on a single dimension, i.e., of the form
888 * v = k e
890 * with k a constant and e an existentially quantified variable.
892 isl_bool isl_basic_set_eq_is_stride(__isl_keep isl_basic_set *bset, int i)
894 unsigned nparam;
895 unsigned d;
896 unsigned n_div;
897 int pos1;
898 int pos2;
900 if (!bset)
901 return isl_bool_error;
903 if (!isl_int_is_zero(bset->eq[i][0]))
904 return isl_bool_false;
906 nparam = isl_basic_set_dim(bset, isl_dim_param);
907 d = isl_basic_set_dim(bset, isl_dim_set);
908 n_div = isl_basic_set_dim(bset, isl_dim_div);
910 if (isl_seq_first_non_zero(bset->eq[i] + 1, nparam) != -1)
911 return isl_bool_false;
912 pos1 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam, d);
913 if (pos1 == -1)
914 return isl_bool_false;
915 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + pos1 + 1,
916 d - pos1 - 1) != -1)
917 return isl_bool_false;
919 pos2 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d, n_div);
920 if (pos2 == -1)
921 return isl_bool_false;
922 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d + pos2 + 1,
923 n_div - pos2 - 1) != -1)
924 return isl_bool_false;
925 if (!isl_int_is_one(bset->eq[i][1 + nparam + pos1]) &&
926 !isl_int_is_negone(bset->eq[i][1 + nparam + pos1]))
927 return isl_bool_false;
929 return isl_bool_true;
932 /* Reset the user pointer on all identifiers of parameters and tuples
933 * of the space of "map".
935 __isl_give isl_map *isl_map_reset_user(__isl_take isl_map *map)
937 isl_space *space;
939 space = isl_map_get_space(map);
940 space = isl_space_reset_user(space);
941 map = isl_map_reset_space(map, space);
943 return map;
946 /* Reset the user pointer on all identifiers of parameters and tuples
947 * of the space of "set".
949 __isl_give isl_set *isl_set_reset_user(__isl_take isl_set *set)
951 return isl_map_reset_user(set);
954 isl_bool isl_basic_map_is_rational(__isl_keep isl_basic_map *bmap)
956 if (!bmap)
957 return isl_bool_error;
958 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
961 /* Has "map" been marked as a rational map?
962 * In particular, have all basic maps in "map" been marked this way?
963 * An empty map is not considered to be rational.
964 * Maps where only some of the basic maps are marked rational
965 * are not allowed.
967 isl_bool isl_map_is_rational(__isl_keep isl_map *map)
969 int i;
970 isl_bool rational;
972 if (!map)
973 return isl_bool_error;
974 if (map->n == 0)
975 return isl_bool_false;
976 rational = isl_basic_map_is_rational(map->p[0]);
977 if (rational < 0)
978 return rational;
979 for (i = 1; i < map->n; ++i) {
980 isl_bool rational_i;
982 rational_i = isl_basic_map_is_rational(map->p[i]);
983 if (rational_i < 0)
984 return rational_i;
985 if (rational != rational_i)
986 isl_die(isl_map_get_ctx(map), isl_error_unsupported,
987 "mixed rational and integer basic maps "
988 "not supported", return isl_bool_error);
991 return rational;
994 /* Has "set" been marked as a rational set?
995 * In particular, have all basic set in "set" been marked this way?
996 * An empty set is not considered to be rational.
997 * Sets where only some of the basic sets are marked rational
998 * are not allowed.
1000 isl_bool isl_set_is_rational(__isl_keep isl_set *set)
1002 return isl_map_is_rational(set);
1005 int isl_basic_set_is_rational(__isl_keep isl_basic_set *bset)
1007 return isl_basic_map_is_rational(bset);
1010 /* Does "bmap" contain any rational points?
1012 * If "bmap" has an equality for each dimension, equating the dimension
1013 * to an integer constant, then it has no rational points, even if it
1014 * is marked as rational.
1016 isl_bool isl_basic_map_has_rational(__isl_keep isl_basic_map *bmap)
1018 isl_bool has_rational = isl_bool_true;
1019 unsigned total;
1021 if (!bmap)
1022 return isl_bool_error;
1023 if (isl_basic_map_plain_is_empty(bmap))
1024 return isl_bool_false;
1025 if (!isl_basic_map_is_rational(bmap))
1026 return isl_bool_false;
1027 bmap = isl_basic_map_copy(bmap);
1028 bmap = isl_basic_map_implicit_equalities(bmap);
1029 if (!bmap)
1030 return isl_bool_error;
1031 total = isl_basic_map_total_dim(bmap);
1032 if (bmap->n_eq == total) {
1033 int i, j;
1034 for (i = 0; i < bmap->n_eq; ++i) {
1035 j = isl_seq_first_non_zero(bmap->eq[i] + 1, total);
1036 if (j < 0)
1037 break;
1038 if (!isl_int_is_one(bmap->eq[i][1 + j]) &&
1039 !isl_int_is_negone(bmap->eq[i][1 + j]))
1040 break;
1041 j = isl_seq_first_non_zero(bmap->eq[i] + 1 + j + 1,
1042 total - j - 1);
1043 if (j >= 0)
1044 break;
1046 if (i == bmap->n_eq)
1047 has_rational = isl_bool_false;
1049 isl_basic_map_free(bmap);
1051 return has_rational;
1054 /* Does "map" contain any rational points?
1056 isl_bool isl_map_has_rational(__isl_keep isl_map *map)
1058 int i;
1059 isl_bool has_rational;
1061 if (!map)
1062 return isl_bool_error;
1063 for (i = 0; i < map->n; ++i) {
1064 has_rational = isl_basic_map_has_rational(map->p[i]);
1065 if (has_rational < 0 || has_rational)
1066 return has_rational;
1068 return isl_bool_false;
1071 /* Does "set" contain any rational points?
1073 isl_bool isl_set_has_rational(__isl_keep isl_set *set)
1075 return isl_map_has_rational(set);
1078 /* Is this basic set a parameter domain?
1080 isl_bool isl_basic_set_is_params(__isl_keep isl_basic_set *bset)
1082 if (!bset)
1083 return isl_bool_error;
1084 return isl_space_is_params(bset->dim);
1087 /* Is this set a parameter domain?
1089 isl_bool isl_set_is_params(__isl_keep isl_set *set)
1091 if (!set)
1092 return isl_bool_error;
1093 return isl_space_is_params(set->dim);
1096 /* Is this map actually a parameter domain?
1097 * Users should never call this function. Outside of isl,
1098 * a map can never be a parameter domain.
1100 isl_bool isl_map_is_params(__isl_keep isl_map *map)
1102 if (!map)
1103 return isl_bool_error;
1104 return isl_space_is_params(map->dim);
1107 static struct isl_basic_map *basic_map_init(struct isl_ctx *ctx,
1108 struct isl_basic_map *bmap, unsigned extra,
1109 unsigned n_eq, unsigned n_ineq)
1111 int i;
1112 size_t row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + extra;
1114 bmap->ctx = ctx;
1115 isl_ctx_ref(ctx);
1117 bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
1118 if (isl_blk_is_error(bmap->block))
1119 goto error;
1121 bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
1122 if ((n_ineq + n_eq) && !bmap->ineq)
1123 goto error;
1125 if (extra == 0) {
1126 bmap->block2 = isl_blk_empty();
1127 bmap->div = NULL;
1128 } else {
1129 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
1130 if (isl_blk_is_error(bmap->block2))
1131 goto error;
1133 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
1134 if (!bmap->div)
1135 goto error;
1138 for (i = 0; i < n_ineq + n_eq; ++i)
1139 bmap->ineq[i] = bmap->block.data + i * row_size;
1141 for (i = 0; i < extra; ++i)
1142 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
1144 bmap->ref = 1;
1145 bmap->flags = 0;
1146 bmap->c_size = n_eq + n_ineq;
1147 bmap->eq = bmap->ineq + n_ineq;
1148 bmap->extra = extra;
1149 bmap->n_eq = 0;
1150 bmap->n_ineq = 0;
1151 bmap->n_div = 0;
1152 bmap->sample = NULL;
1154 return bmap;
1155 error:
1156 isl_basic_map_free(bmap);
1157 return NULL;
1160 struct isl_basic_set *isl_basic_set_alloc(struct isl_ctx *ctx,
1161 unsigned nparam, unsigned dim, unsigned extra,
1162 unsigned n_eq, unsigned n_ineq)
1164 struct isl_basic_map *bmap;
1165 isl_space *space;
1167 space = isl_space_set_alloc(ctx, nparam, dim);
1168 if (!space)
1169 return NULL;
1171 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1172 return bset_from_bmap(bmap);
1175 __isl_give isl_basic_set *isl_basic_set_alloc_space(__isl_take isl_space *dim,
1176 unsigned extra, unsigned n_eq, unsigned n_ineq)
1178 struct isl_basic_map *bmap;
1179 if (!dim)
1180 return NULL;
1181 isl_assert(dim->ctx, dim->n_in == 0, goto error);
1182 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1183 return bset_from_bmap(bmap);
1184 error:
1185 isl_space_free(dim);
1186 return NULL;
1189 struct isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *dim,
1190 unsigned extra, unsigned n_eq, unsigned n_ineq)
1192 struct isl_basic_map *bmap;
1194 if (!dim)
1195 return NULL;
1196 bmap = isl_calloc_type(dim->ctx, struct isl_basic_map);
1197 if (!bmap)
1198 goto error;
1199 bmap->dim = dim;
1201 return basic_map_init(dim->ctx, bmap, extra, n_eq, n_ineq);
1202 error:
1203 isl_space_free(dim);
1204 return NULL;
1207 struct isl_basic_map *isl_basic_map_alloc(struct isl_ctx *ctx,
1208 unsigned nparam, unsigned in, unsigned out, unsigned extra,
1209 unsigned n_eq, unsigned n_ineq)
1211 struct isl_basic_map *bmap;
1212 isl_space *dim;
1214 dim = isl_space_alloc(ctx, nparam, in, out);
1215 if (!dim)
1216 return NULL;
1218 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1219 return bmap;
1222 static void dup_constraints(
1223 struct isl_basic_map *dst, struct isl_basic_map *src)
1225 int i;
1226 unsigned total = isl_basic_map_total_dim(src);
1228 for (i = 0; i < src->n_eq; ++i) {
1229 int j = isl_basic_map_alloc_equality(dst);
1230 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
1233 for (i = 0; i < src->n_ineq; ++i) {
1234 int j = isl_basic_map_alloc_inequality(dst);
1235 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
1238 for (i = 0; i < src->n_div; ++i) {
1239 int j = isl_basic_map_alloc_div(dst);
1240 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
1242 ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
1245 __isl_give isl_basic_map *isl_basic_map_dup(__isl_keep isl_basic_map *bmap)
1247 struct isl_basic_map *dup;
1249 if (!bmap)
1250 return NULL;
1251 dup = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
1252 bmap->n_div, bmap->n_eq, bmap->n_ineq);
1253 if (!dup)
1254 return NULL;
1255 dup_constraints(dup, bmap);
1256 dup->flags = bmap->flags;
1257 dup->sample = isl_vec_copy(bmap->sample);
1258 return dup;
1261 struct isl_basic_set *isl_basic_set_dup(struct isl_basic_set *bset)
1263 struct isl_basic_map *dup;
1265 dup = isl_basic_map_dup(bset_to_bmap(bset));
1266 return bset_from_bmap(dup);
1269 __isl_give isl_basic_set *isl_basic_set_copy(__isl_keep isl_basic_set *bset)
1271 if (!bset)
1272 return NULL;
1274 if (ISL_F_ISSET(bset, ISL_BASIC_SET_FINAL)) {
1275 bset->ref++;
1276 return bset;
1278 return isl_basic_set_dup(bset);
1281 __isl_give isl_set *isl_set_copy(__isl_keep isl_set *set)
1283 if (!set)
1284 return NULL;
1286 set->ref++;
1287 return set;
1290 __isl_give isl_basic_map *isl_basic_map_copy(__isl_keep isl_basic_map *bmap)
1292 if (!bmap)
1293 return NULL;
1295 if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
1296 bmap->ref++;
1297 return bmap;
1299 bmap = isl_basic_map_dup(bmap);
1300 if (bmap)
1301 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1302 return bmap;
1305 __isl_give isl_map *isl_map_copy(__isl_keep isl_map *map)
1307 if (!map)
1308 return NULL;
1310 map->ref++;
1311 return map;
1314 __isl_null isl_basic_map *isl_basic_map_free(__isl_take isl_basic_map *bmap)
1316 if (!bmap)
1317 return NULL;
1319 if (--bmap->ref > 0)
1320 return NULL;
1322 isl_ctx_deref(bmap->ctx);
1323 free(bmap->div);
1324 isl_blk_free(bmap->ctx, bmap->block2);
1325 free(bmap->ineq);
1326 isl_blk_free(bmap->ctx, bmap->block);
1327 isl_vec_free(bmap->sample);
1328 isl_space_free(bmap->dim);
1329 free(bmap);
1331 return NULL;
1334 __isl_null isl_basic_set *isl_basic_set_free(__isl_take isl_basic_set *bset)
1336 return isl_basic_map_free(bset_to_bmap(bset));
1339 static int room_for_con(struct isl_basic_map *bmap, unsigned n)
1341 return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
1344 /* Check that "map" has only named parameters, reporting an error
1345 * if it does not.
1347 isl_stat isl_map_check_named_params(__isl_keep isl_map *map)
1349 return isl_space_check_named_params(isl_map_peek_space(map));
1352 /* Check that "bmap" has only named parameters, reporting an error
1353 * if it does not.
1355 static isl_stat isl_basic_map_check_named_params(__isl_keep isl_basic_map *bmap)
1357 return isl_space_check_named_params(isl_basic_map_peek_space(bmap));
1360 /* Check that "bmap1" and "bmap2" have the same parameters,
1361 * reporting an error if they do not.
1363 static isl_stat isl_basic_map_check_equal_params(
1364 __isl_keep isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
1366 isl_bool match;
1368 match = isl_basic_map_has_equal_params(bmap1, bmap2);
1369 if (match < 0)
1370 return isl_stat_error;
1371 if (!match)
1372 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
1373 "parameters don't match", return isl_stat_error);
1374 return isl_stat_ok;
1377 __isl_give isl_map *isl_map_align_params_map_map_and(
1378 __isl_take isl_map *map1, __isl_take isl_map *map2,
1379 __isl_give isl_map *(*fn)(__isl_take isl_map *map1,
1380 __isl_take isl_map *map2))
1382 if (!map1 || !map2)
1383 goto error;
1384 if (isl_map_has_equal_params(map1, map2))
1385 return fn(map1, map2);
1386 if (isl_map_check_named_params(map1) < 0)
1387 goto error;
1388 if (isl_map_check_named_params(map2) < 0)
1389 goto error;
1390 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1391 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1392 return fn(map1, map2);
1393 error:
1394 isl_map_free(map1);
1395 isl_map_free(map2);
1396 return NULL;
1399 isl_bool isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
1400 __isl_keep isl_map *map2,
1401 isl_bool (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
1403 isl_bool r;
1405 if (!map1 || !map2)
1406 return isl_bool_error;
1407 if (isl_map_has_equal_params(map1, map2))
1408 return fn(map1, map2);
1409 if (isl_map_check_named_params(map1) < 0)
1410 return isl_bool_error;
1411 if (isl_map_check_named_params(map2) < 0)
1412 return isl_bool_error;
1413 map1 = isl_map_copy(map1);
1414 map2 = isl_map_copy(map2);
1415 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1416 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1417 r = fn(map1, map2);
1418 isl_map_free(map1);
1419 isl_map_free(map2);
1420 return r;
1423 int isl_basic_map_alloc_equality(struct isl_basic_map *bmap)
1425 struct isl_ctx *ctx;
1426 if (!bmap)
1427 return -1;
1428 ctx = bmap->ctx;
1429 isl_assert(ctx, room_for_con(bmap, 1), return -1);
1430 isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
1431 return -1);
1432 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1433 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1434 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1435 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1436 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1437 isl_int *t;
1438 int j = isl_basic_map_alloc_inequality(bmap);
1439 if (j < 0)
1440 return -1;
1441 t = bmap->ineq[j];
1442 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1443 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1444 bmap->eq[-1] = t;
1445 bmap->n_eq++;
1446 bmap->n_ineq--;
1447 bmap->eq--;
1448 return 0;
1450 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
1451 bmap->extra - bmap->n_div);
1452 return bmap->n_eq++;
1455 int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
1457 return isl_basic_map_alloc_equality(bset_to_bmap(bset));
1460 int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
1462 if (!bmap)
1463 return -1;
1464 isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
1465 bmap->n_eq -= n;
1466 return 0;
1469 int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
1471 return isl_basic_map_free_equality(bset_to_bmap(bset), n);
1474 int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
1476 isl_int *t;
1477 if (!bmap)
1478 return -1;
1479 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1481 if (pos != bmap->n_eq - 1) {
1482 t = bmap->eq[pos];
1483 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
1484 bmap->eq[bmap->n_eq - 1] = t;
1486 bmap->n_eq--;
1487 return 0;
1490 /* Turn inequality "pos" of "bmap" into an equality.
1492 * In particular, we move the inequality in front of the equalities
1493 * and move the last inequality in the position of the moved inequality.
1494 * Note that isl_tab_make_equalities_explicit depends on this particular
1495 * change in the ordering of the constraints.
1497 void isl_basic_map_inequality_to_equality(
1498 struct isl_basic_map *bmap, unsigned pos)
1500 isl_int *t;
1502 t = bmap->ineq[pos];
1503 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1504 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1505 bmap->eq[-1] = t;
1506 bmap->n_eq++;
1507 bmap->n_ineq--;
1508 bmap->eq--;
1509 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1510 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1511 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1512 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1515 static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
1517 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1520 int isl_basic_map_alloc_inequality(__isl_keep isl_basic_map *bmap)
1522 struct isl_ctx *ctx;
1523 if (!bmap)
1524 return -1;
1525 ctx = bmap->ctx;
1526 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1527 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1528 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1529 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1530 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1531 isl_seq_clr(bmap->ineq[bmap->n_ineq] +
1532 1 + isl_basic_map_total_dim(bmap),
1533 bmap->extra - bmap->n_div);
1534 return bmap->n_ineq++;
1537 int isl_basic_set_alloc_inequality(__isl_keep isl_basic_set *bset)
1539 return isl_basic_map_alloc_inequality(bset_to_bmap(bset));
1542 int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
1544 if (!bmap)
1545 return -1;
1546 isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
1547 bmap->n_ineq -= n;
1548 return 0;
1551 int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
1553 return isl_basic_map_free_inequality(bset_to_bmap(bset), n);
1556 int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
1558 isl_int *t;
1559 if (!bmap)
1560 return -1;
1561 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1563 if (pos != bmap->n_ineq - 1) {
1564 t = bmap->ineq[pos];
1565 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1566 bmap->ineq[bmap->n_ineq - 1] = t;
1567 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1569 bmap->n_ineq--;
1570 return 0;
1573 int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
1575 return isl_basic_map_drop_inequality(bset_to_bmap(bset), pos);
1578 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1579 isl_int *eq)
1581 int k;
1583 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1584 if (!bmap)
1585 return NULL;
1586 k = isl_basic_map_alloc_equality(bmap);
1587 if (k < 0)
1588 goto error;
1589 isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
1590 return bmap;
1591 error:
1592 isl_basic_map_free(bmap);
1593 return NULL;
1596 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1597 isl_int *eq)
1599 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset), eq));
1602 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1603 isl_int *ineq)
1605 int k;
1607 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1608 if (!bmap)
1609 return NULL;
1610 k = isl_basic_map_alloc_inequality(bmap);
1611 if (k < 0)
1612 goto error;
1613 isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
1614 return bmap;
1615 error:
1616 isl_basic_map_free(bmap);
1617 return NULL;
1620 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1621 isl_int *ineq)
1623 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset), ineq));
1626 int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
1628 if (!bmap)
1629 return -1;
1630 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1631 isl_seq_clr(bmap->div[bmap->n_div] +
1632 1 + 1 + isl_basic_map_total_dim(bmap),
1633 bmap->extra - bmap->n_div);
1634 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1635 return bmap->n_div++;
1638 int isl_basic_set_alloc_div(struct isl_basic_set *bset)
1640 return isl_basic_map_alloc_div(bset_to_bmap(bset));
1643 /* Check that there are "n" dimensions of type "type" starting at "first"
1644 * in "bmap".
1646 static isl_stat isl_basic_map_check_range(__isl_keep isl_basic_map *bmap,
1647 enum isl_dim_type type, unsigned first, unsigned n)
1649 unsigned dim;
1651 if (!bmap)
1652 return isl_stat_error;
1653 dim = isl_basic_map_dim(bmap, type);
1654 if (first + n > dim || first + n < first)
1655 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1656 "position or range out of bounds",
1657 return isl_stat_error);
1658 return isl_stat_ok;
1661 /* Insert an extra integer division, prescribed by "div", to "bmap"
1662 * at (integer division) position "pos".
1664 * The integer division is first added at the end and then moved
1665 * into the right position.
1667 __isl_give isl_basic_map *isl_basic_map_insert_div(
1668 __isl_take isl_basic_map *bmap, int pos, __isl_keep isl_vec *div)
1670 int i, k;
1672 bmap = isl_basic_map_cow(bmap);
1673 if (!bmap || !div)
1674 return isl_basic_map_free(bmap);
1676 if (div->size != 1 + 1 + isl_basic_map_dim(bmap, isl_dim_all))
1677 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1678 "unexpected size", return isl_basic_map_free(bmap));
1679 if (isl_basic_map_check_range(bmap, isl_dim_div, pos, 0) < 0)
1680 return isl_basic_map_free(bmap);
1682 bmap = isl_basic_map_extend_space(bmap,
1683 isl_basic_map_get_space(bmap), 1, 0, 2);
1684 k = isl_basic_map_alloc_div(bmap);
1685 if (k < 0)
1686 return isl_basic_map_free(bmap);
1687 isl_seq_cpy(bmap->div[k], div->el, div->size);
1688 isl_int_set_si(bmap->div[k][div->size], 0);
1690 for (i = k; i > pos; --i)
1691 isl_basic_map_swap_div(bmap, i, i - 1);
1693 return bmap;
1696 isl_stat isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
1698 if (!bmap)
1699 return isl_stat_error;
1700 isl_assert(bmap->ctx, n <= bmap->n_div, return isl_stat_error);
1701 bmap->n_div -= n;
1702 return isl_stat_ok;
1705 /* Copy constraint from src to dst, putting the vars of src at offset
1706 * dim_off in dst and the divs of src at offset div_off in dst.
1707 * If both sets are actually map, then dim_off applies to the input
1708 * variables.
1710 static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
1711 struct isl_basic_map *src_map, isl_int *src,
1712 unsigned in_off, unsigned out_off, unsigned div_off)
1714 unsigned src_nparam = isl_basic_map_dim(src_map, isl_dim_param);
1715 unsigned dst_nparam = isl_basic_map_dim(dst_map, isl_dim_param);
1716 unsigned src_in = isl_basic_map_dim(src_map, isl_dim_in);
1717 unsigned dst_in = isl_basic_map_dim(dst_map, isl_dim_in);
1718 unsigned src_out = isl_basic_map_dim(src_map, isl_dim_out);
1719 unsigned dst_out = isl_basic_map_dim(dst_map, isl_dim_out);
1720 isl_int_set(dst[0], src[0]);
1721 isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
1722 if (dst_nparam > src_nparam)
1723 isl_seq_clr(dst+1+src_nparam,
1724 dst_nparam - src_nparam);
1725 isl_seq_clr(dst+1+dst_nparam, in_off);
1726 isl_seq_cpy(dst+1+dst_nparam+in_off,
1727 src+1+src_nparam,
1728 isl_min(dst_in-in_off, src_in));
1729 if (dst_in-in_off > src_in)
1730 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
1731 dst_in - in_off - src_in);
1732 isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
1733 isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
1734 src+1+src_nparam+src_in,
1735 isl_min(dst_out-out_off, src_out));
1736 if (dst_out-out_off > src_out)
1737 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
1738 dst_out - out_off - src_out);
1739 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
1740 isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
1741 src+1+src_nparam+src_in+src_out,
1742 isl_min(dst_map->extra-div_off, src_map->n_div));
1743 if (dst_map->n_div-div_off > src_map->n_div)
1744 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
1745 div_off+src_map->n_div,
1746 dst_map->n_div - div_off - src_map->n_div);
1749 static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
1750 struct isl_basic_map *src_map, isl_int *src,
1751 unsigned in_off, unsigned out_off, unsigned div_off)
1753 isl_int_set(dst[0], src[0]);
1754 copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
1757 static __isl_give isl_basic_map *add_constraints(
1758 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2,
1759 unsigned i_pos, unsigned o_pos)
1761 int i;
1762 unsigned div_off;
1764 if (!bmap1 || !bmap2)
1765 goto error;
1767 div_off = bmap1->n_div;
1769 for (i = 0; i < bmap2->n_eq; ++i) {
1770 int i1 = isl_basic_map_alloc_equality(bmap1);
1771 if (i1 < 0)
1772 goto error;
1773 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
1774 i_pos, o_pos, div_off);
1777 for (i = 0; i < bmap2->n_ineq; ++i) {
1778 int i1 = isl_basic_map_alloc_inequality(bmap1);
1779 if (i1 < 0)
1780 goto error;
1781 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
1782 i_pos, o_pos, div_off);
1785 for (i = 0; i < bmap2->n_div; ++i) {
1786 int i1 = isl_basic_map_alloc_div(bmap1);
1787 if (i1 < 0)
1788 goto error;
1789 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
1790 i_pos, o_pos, div_off);
1793 isl_basic_map_free(bmap2);
1795 return bmap1;
1797 error:
1798 isl_basic_map_free(bmap1);
1799 isl_basic_map_free(bmap2);
1800 return NULL;
1803 struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
1804 struct isl_basic_set *bset2, unsigned pos)
1806 return bset_from_bmap(add_constraints(bset_to_bmap(bset1),
1807 bset_to_bmap(bset2), 0, pos));
1810 __isl_give isl_basic_map *isl_basic_map_extend_space(
1811 __isl_take isl_basic_map *base, __isl_take isl_space *dim,
1812 unsigned extra, unsigned n_eq, unsigned n_ineq)
1814 struct isl_basic_map *ext;
1815 unsigned flags;
1816 int dims_ok;
1818 if (!dim)
1819 goto error;
1821 if (!base)
1822 goto error;
1824 dims_ok = isl_space_is_equal(base->dim, dim) &&
1825 base->extra >= base->n_div + extra;
1827 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1828 room_for_ineq(base, n_ineq)) {
1829 isl_space_free(dim);
1830 return base;
1833 isl_assert(base->ctx, base->dim->nparam <= dim->nparam, goto error);
1834 isl_assert(base->ctx, base->dim->n_in <= dim->n_in, goto error);
1835 isl_assert(base->ctx, base->dim->n_out <= dim->n_out, goto error);
1836 extra += base->extra;
1837 n_eq += base->n_eq;
1838 n_ineq += base->n_ineq;
1840 ext = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1841 dim = NULL;
1842 if (!ext)
1843 goto error;
1845 if (dims_ok)
1846 ext->sample = isl_vec_copy(base->sample);
1847 flags = base->flags;
1848 ext = add_constraints(ext, base, 0, 0);
1849 if (ext) {
1850 ext->flags = flags;
1851 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
1854 return ext;
1856 error:
1857 isl_space_free(dim);
1858 isl_basic_map_free(base);
1859 return NULL;
1862 __isl_give isl_basic_set *isl_basic_set_extend_space(
1863 __isl_take isl_basic_set *base,
1864 __isl_take isl_space *dim, unsigned extra,
1865 unsigned n_eq, unsigned n_ineq)
1867 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base),
1868 dim, extra, n_eq, n_ineq));
1871 struct isl_basic_map *isl_basic_map_extend_constraints(
1872 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
1874 if (!base)
1875 return NULL;
1876 return isl_basic_map_extend_space(base, isl_space_copy(base->dim),
1877 0, n_eq, n_ineq);
1880 struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
1881 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
1882 unsigned n_eq, unsigned n_ineq)
1884 struct isl_basic_map *bmap;
1885 isl_space *dim;
1887 if (!base)
1888 return NULL;
1889 dim = isl_space_alloc(base->ctx, nparam, n_in, n_out);
1890 if (!dim)
1891 goto error;
1893 bmap = isl_basic_map_extend_space(base, dim, extra, n_eq, n_ineq);
1894 return bmap;
1895 error:
1896 isl_basic_map_free(base);
1897 return NULL;
1900 struct isl_basic_set *isl_basic_set_extend(struct isl_basic_set *base,
1901 unsigned nparam, unsigned dim, unsigned extra,
1902 unsigned n_eq, unsigned n_ineq)
1904 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base),
1905 nparam, 0, dim, extra, n_eq, n_ineq));
1908 struct isl_basic_set *isl_basic_set_extend_constraints(
1909 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1911 isl_basic_map *bmap = bset_to_bmap(base);
1912 bmap = isl_basic_map_extend_constraints(bmap, n_eq, n_ineq);
1913 return bset_from_bmap(bmap);
1916 __isl_give isl_basic_set *isl_basic_set_cow(__isl_take isl_basic_set *bset)
1918 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset)));
1921 __isl_give isl_basic_map *isl_basic_map_cow(__isl_take isl_basic_map *bmap)
1923 if (!bmap)
1924 return NULL;
1926 if (bmap->ref > 1) {
1927 bmap->ref--;
1928 bmap = isl_basic_map_dup(bmap);
1930 if (bmap) {
1931 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
1932 ISL_F_CLR(bmap, ISL_BASIC_MAP_REDUCED_COEFFICIENTS);
1934 return bmap;
1937 /* Clear all cached information in "map", either because it is about
1938 * to be modified or because it is being freed.
1939 * Always return the same pointer that is passed in.
1940 * This is needed for the use in isl_map_free.
1942 static __isl_give isl_map *clear_caches(__isl_take isl_map *map)
1944 isl_basic_map_free(map->cached_simple_hull[0]);
1945 isl_basic_map_free(map->cached_simple_hull[1]);
1946 map->cached_simple_hull[0] = NULL;
1947 map->cached_simple_hull[1] = NULL;
1948 return map;
1951 __isl_give isl_set *isl_set_cow(__isl_take isl_set *set)
1953 return isl_map_cow(set);
1956 /* Return an isl_map that is equal to "map" and that has only
1957 * a single reference.
1959 * If the original input already has only one reference, then
1960 * simply return it, but clear all cached information, since
1961 * it may be rendered invalid by the operations that will be
1962 * performed on the result.
1964 * Otherwise, create a duplicate (without any cached information).
1966 __isl_give isl_map *isl_map_cow(__isl_take isl_map *map)
1968 if (!map)
1969 return NULL;
1971 if (map->ref == 1)
1972 return clear_caches(map);
1973 map->ref--;
1974 return isl_map_dup(map);
1977 static void swap_vars(struct isl_blk blk, isl_int *a,
1978 unsigned a_len, unsigned b_len)
1980 isl_seq_cpy(blk.data, a+a_len, b_len);
1981 isl_seq_cpy(blk.data+b_len, a, a_len);
1982 isl_seq_cpy(a, blk.data, b_len+a_len);
1985 static __isl_give isl_basic_map *isl_basic_map_swap_vars(
1986 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
1988 int i;
1989 struct isl_blk blk;
1991 if (!bmap)
1992 goto error;
1994 isl_assert(bmap->ctx,
1995 pos + n1 + n2 <= 1 + isl_basic_map_total_dim(bmap), goto error);
1997 if (n1 == 0 || n2 == 0)
1998 return bmap;
2000 bmap = isl_basic_map_cow(bmap);
2001 if (!bmap)
2002 return NULL;
2004 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
2005 if (isl_blk_is_error(blk))
2006 goto error;
2008 for (i = 0; i < bmap->n_eq; ++i)
2009 swap_vars(blk,
2010 bmap->eq[i] + pos, n1, n2);
2012 for (i = 0; i < bmap->n_ineq; ++i)
2013 swap_vars(blk,
2014 bmap->ineq[i] + pos, n1, n2);
2016 for (i = 0; i < bmap->n_div; ++i)
2017 swap_vars(blk,
2018 bmap->div[i]+1 + pos, n1, n2);
2020 isl_blk_free(bmap->ctx, blk);
2022 ISL_F_CLR(bmap, ISL_BASIC_SET_SORTED);
2023 bmap = isl_basic_map_gauss(bmap, NULL);
2024 return isl_basic_map_finalize(bmap);
2025 error:
2026 isl_basic_map_free(bmap);
2027 return NULL;
2030 __isl_give isl_basic_map *isl_basic_map_set_to_empty(
2031 __isl_take isl_basic_map *bmap)
2033 int i = 0;
2034 unsigned total;
2035 if (!bmap)
2036 goto error;
2037 total = isl_basic_map_total_dim(bmap);
2038 if (isl_basic_map_free_div(bmap, bmap->n_div) < 0)
2039 return isl_basic_map_free(bmap);
2040 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
2041 if (bmap->n_eq > 0)
2042 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
2043 else {
2044 i = isl_basic_map_alloc_equality(bmap);
2045 if (i < 0)
2046 goto error;
2048 isl_int_set_si(bmap->eq[i][0], 1);
2049 isl_seq_clr(bmap->eq[i]+1, total);
2050 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
2051 isl_vec_free(bmap->sample);
2052 bmap->sample = NULL;
2053 return isl_basic_map_finalize(bmap);
2054 error:
2055 isl_basic_map_free(bmap);
2056 return NULL;
2059 __isl_give isl_basic_set *isl_basic_set_set_to_empty(
2060 __isl_take isl_basic_set *bset)
2062 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset)));
2065 __isl_give isl_basic_map *isl_basic_map_set_rational(
2066 __isl_take isl_basic_map *bmap)
2068 if (!bmap)
2069 return NULL;
2071 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
2072 return bmap;
2074 bmap = isl_basic_map_cow(bmap);
2075 if (!bmap)
2076 return NULL;
2078 ISL_F_SET(bmap, ISL_BASIC_MAP_RATIONAL);
2080 return isl_basic_map_finalize(bmap);
2083 __isl_give isl_basic_set *isl_basic_set_set_rational(
2084 __isl_take isl_basic_set *bset)
2086 return isl_basic_map_set_rational(bset);
2089 __isl_give isl_basic_set *isl_basic_set_set_integral(
2090 __isl_take isl_basic_set *bset)
2092 if (!bset)
2093 return NULL;
2095 if (!ISL_F_ISSET(bset, ISL_BASIC_MAP_RATIONAL))
2096 return bset;
2098 bset = isl_basic_set_cow(bset);
2099 if (!bset)
2100 return NULL;
2102 ISL_F_CLR(bset, ISL_BASIC_MAP_RATIONAL);
2104 return isl_basic_set_finalize(bset);
2107 __isl_give isl_map *isl_map_set_rational(__isl_take isl_map *map)
2109 int i;
2111 map = isl_map_cow(map);
2112 if (!map)
2113 return NULL;
2114 for (i = 0; i < map->n; ++i) {
2115 map->p[i] = isl_basic_map_set_rational(map->p[i]);
2116 if (!map->p[i])
2117 goto error;
2119 return map;
2120 error:
2121 isl_map_free(map);
2122 return NULL;
2125 __isl_give isl_set *isl_set_set_rational(__isl_take isl_set *set)
2127 return isl_map_set_rational(set);
2130 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
2131 * of "bmap").
2133 static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
2135 isl_int *t = bmap->div[a];
2136 bmap->div[a] = bmap->div[b];
2137 bmap->div[b] = t;
2140 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
2141 * div definitions accordingly.
2143 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
2145 int i;
2146 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
2148 swap_div(bmap, a, b);
2150 for (i = 0; i < bmap->n_eq; ++i)
2151 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
2153 for (i = 0; i < bmap->n_ineq; ++i)
2154 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
2156 for (i = 0; i < bmap->n_div; ++i)
2157 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
2158 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
2161 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
2162 * div definitions accordingly.
2164 void isl_basic_set_swap_div(__isl_keep isl_basic_set *bset, int a, int b)
2166 isl_basic_map_swap_div(bset, a, b);
2169 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
2171 isl_seq_cpy(c, c + n, rem);
2172 isl_seq_clr(c + rem, n);
2175 /* Drop n dimensions starting at first.
2177 * In principle, this frees up some extra variables as the number
2178 * of columns remains constant, but we would have to extend
2179 * the div array too as the number of rows in this array is assumed
2180 * to be equal to extra.
2182 __isl_give isl_basic_set *isl_basic_set_drop_dims(
2183 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2185 return isl_basic_map_drop(bset_to_bmap(bset), isl_dim_set, first, n);
2188 /* Move "n" divs starting at "first" to the end of the list of divs.
2190 static struct isl_basic_map *move_divs_last(struct isl_basic_map *bmap,
2191 unsigned first, unsigned n)
2193 isl_int **div;
2194 int i;
2196 if (first + n == bmap->n_div)
2197 return bmap;
2199 div = isl_alloc_array(bmap->ctx, isl_int *, n);
2200 if (!div)
2201 goto error;
2202 for (i = 0; i < n; ++i)
2203 div[i] = bmap->div[first + i];
2204 for (i = 0; i < bmap->n_div - first - n; ++i)
2205 bmap->div[first + i] = bmap->div[first + n + i];
2206 for (i = 0; i < n; ++i)
2207 bmap->div[bmap->n_div - n + i] = div[i];
2208 free(div);
2209 return bmap;
2210 error:
2211 isl_basic_map_free(bmap);
2212 return NULL;
2215 /* Check that there are "n" dimensions of type "type" starting at "first"
2216 * in "map".
2218 static isl_stat isl_map_check_range(__isl_keep isl_map *map,
2219 enum isl_dim_type type, unsigned first, unsigned n)
2221 if (!map)
2222 return isl_stat_error;
2223 if (first + n > isl_map_dim(map, type) || first + n < first)
2224 isl_die(isl_map_get_ctx(map), isl_error_invalid,
2225 "position or range out of bounds",
2226 return isl_stat_error);
2227 return isl_stat_ok;
2230 /* Drop "n" dimensions of type "type" starting at "first".
2232 * In principle, this frees up some extra variables as the number
2233 * of columns remains constant, but we would have to extend
2234 * the div array too as the number of rows in this array is assumed
2235 * to be equal to extra.
2237 __isl_give isl_basic_map *isl_basic_map_drop(__isl_take isl_basic_map *bmap,
2238 enum isl_dim_type type, unsigned first, unsigned n)
2240 int i;
2241 unsigned dim;
2242 unsigned offset;
2243 unsigned left;
2245 if (!bmap)
2246 goto error;
2248 dim = isl_basic_map_dim(bmap, type);
2249 isl_assert(bmap->ctx, first + n <= dim, goto error);
2251 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2252 return bmap;
2254 bmap = isl_basic_map_cow(bmap);
2255 if (!bmap)
2256 return NULL;
2258 offset = isl_basic_map_offset(bmap, type) + first;
2259 left = isl_basic_map_total_dim(bmap) - (offset - 1) - n;
2260 for (i = 0; i < bmap->n_eq; ++i)
2261 constraint_drop_vars(bmap->eq[i]+offset, n, left);
2263 for (i = 0; i < bmap->n_ineq; ++i)
2264 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
2266 for (i = 0; i < bmap->n_div; ++i)
2267 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
2269 if (type == isl_dim_div) {
2270 bmap = move_divs_last(bmap, first, n);
2271 if (!bmap)
2272 goto error;
2273 if (isl_basic_map_free_div(bmap, n) < 0)
2274 return isl_basic_map_free(bmap);
2275 } else
2276 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
2277 if (!bmap->dim)
2278 goto error;
2280 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
2281 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
2282 bmap = isl_basic_map_simplify(bmap);
2283 return isl_basic_map_finalize(bmap);
2284 error:
2285 isl_basic_map_free(bmap);
2286 return NULL;
2289 __isl_give isl_basic_set *isl_basic_set_drop(__isl_take isl_basic_set *bset,
2290 enum isl_dim_type type, unsigned first, unsigned n)
2292 return bset_from_bmap(isl_basic_map_drop(bset_to_bmap(bset),
2293 type, first, n));
2296 /* No longer consider "map" to be normalized.
2298 static __isl_give isl_map *isl_map_unmark_normalized(__isl_take isl_map *map)
2300 if (!map)
2301 return NULL;
2302 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2303 return map;
2306 __isl_give isl_map *isl_map_drop(__isl_take isl_map *map,
2307 enum isl_dim_type type, unsigned first, unsigned n)
2309 int i;
2311 if (isl_map_check_range(map, type, first, n) < 0)
2312 return isl_map_free(map);
2314 if (n == 0 && !isl_space_is_named_or_nested(map->dim, type))
2315 return map;
2316 map = isl_map_cow(map);
2317 if (!map)
2318 goto error;
2319 map->dim = isl_space_drop_dims(map->dim, type, first, n);
2320 if (!map->dim)
2321 goto error;
2323 for (i = 0; i < map->n; ++i) {
2324 map->p[i] = isl_basic_map_drop(map->p[i], type, first, n);
2325 if (!map->p[i])
2326 goto error;
2328 map = isl_map_unmark_normalized(map);
2330 return map;
2331 error:
2332 isl_map_free(map);
2333 return NULL;
2336 __isl_give isl_set *isl_set_drop(__isl_take isl_set *set,
2337 enum isl_dim_type type, unsigned first, unsigned n)
2339 return set_from_map(isl_map_drop(set_to_map(set), type, first, n));
2343 * We don't cow, as the div is assumed to be redundant.
2345 __isl_give isl_basic_map *isl_basic_map_drop_div(
2346 __isl_take isl_basic_map *bmap, unsigned div)
2348 int i;
2349 unsigned pos;
2351 if (!bmap)
2352 goto error;
2354 pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
2356 isl_assert(bmap->ctx, div < bmap->n_div, goto error);
2358 for (i = 0; i < bmap->n_eq; ++i)
2359 constraint_drop_vars(bmap->eq[i]+pos, 1, bmap->extra-div-1);
2361 for (i = 0; i < bmap->n_ineq; ++i) {
2362 if (!isl_int_is_zero(bmap->ineq[i][pos])) {
2363 isl_basic_map_drop_inequality(bmap, i);
2364 --i;
2365 continue;
2367 constraint_drop_vars(bmap->ineq[i]+pos, 1, bmap->extra-div-1);
2370 for (i = 0; i < bmap->n_div; ++i)
2371 constraint_drop_vars(bmap->div[i]+1+pos, 1, bmap->extra-div-1);
2373 if (div != bmap->n_div - 1) {
2374 int j;
2375 isl_int *t = bmap->div[div];
2377 for (j = div; j < bmap->n_div - 1; ++j)
2378 bmap->div[j] = bmap->div[j+1];
2380 bmap->div[bmap->n_div - 1] = t;
2382 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
2383 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
2384 if (isl_basic_map_free_div(bmap, 1) < 0)
2385 return isl_basic_map_free(bmap);
2387 return bmap;
2388 error:
2389 isl_basic_map_free(bmap);
2390 return NULL;
2393 /* Eliminate the specified n dimensions starting at first from the
2394 * constraints, without removing the dimensions from the space.
2395 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2397 __isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
2398 enum isl_dim_type type, unsigned first, unsigned n)
2400 int i;
2402 if (n == 0)
2403 return map;
2405 if (isl_map_check_range(map, type, first, n) < 0)
2406 return isl_map_free(map);
2408 map = isl_map_cow(map);
2409 if (!map)
2410 return NULL;
2412 for (i = 0; i < map->n; ++i) {
2413 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
2414 if (!map->p[i])
2415 goto error;
2417 return map;
2418 error:
2419 isl_map_free(map);
2420 return NULL;
2423 /* Eliminate the specified n dimensions starting at first from the
2424 * constraints, without removing the dimensions from the space.
2425 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2427 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
2428 enum isl_dim_type type, unsigned first, unsigned n)
2430 return set_from_map(isl_map_eliminate(set_to_map(set), type, first, n));
2433 /* Eliminate the specified n dimensions starting at first from the
2434 * constraints, without removing the dimensions from the space.
2435 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2437 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
2438 unsigned first, unsigned n)
2440 return isl_set_eliminate(set, isl_dim_set, first, n);
2443 __isl_give isl_basic_map *isl_basic_map_remove_divs(
2444 __isl_take isl_basic_map *bmap)
2446 if (!bmap)
2447 return NULL;
2448 bmap = isl_basic_map_eliminate_vars(bmap,
2449 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
2450 if (!bmap)
2451 return NULL;
2452 bmap->n_div = 0;
2453 return isl_basic_map_finalize(bmap);
2456 __isl_give isl_basic_set *isl_basic_set_remove_divs(
2457 __isl_take isl_basic_set *bset)
2459 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset)));
2462 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
2464 int i;
2466 if (!map)
2467 return NULL;
2468 if (map->n == 0)
2469 return map;
2471 map = isl_map_cow(map);
2472 if (!map)
2473 return NULL;
2475 for (i = 0; i < map->n; ++i) {
2476 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
2477 if (!map->p[i])
2478 goto error;
2480 return map;
2481 error:
2482 isl_map_free(map);
2483 return NULL;
2486 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
2488 return isl_map_remove_divs(set);
2491 __isl_give isl_basic_map *isl_basic_map_remove_dims(
2492 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
2493 unsigned first, unsigned n)
2495 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2496 return isl_basic_map_free(bmap);
2497 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2498 return bmap;
2499 bmap = isl_basic_map_eliminate_vars(bmap,
2500 isl_basic_map_offset(bmap, type) - 1 + first, n);
2501 if (!bmap)
2502 return bmap;
2503 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
2504 return bmap;
2505 bmap = isl_basic_map_drop(bmap, type, first, n);
2506 return bmap;
2509 /* Return true if the definition of the given div (recursively) involves
2510 * any of the given variables.
2512 static isl_bool div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
2513 unsigned first, unsigned n)
2515 int i;
2516 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2518 if (isl_int_is_zero(bmap->div[div][0]))
2519 return isl_bool_false;
2520 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
2521 return isl_bool_true;
2523 for (i = bmap->n_div - 1; i >= 0; --i) {
2524 isl_bool involves;
2526 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2527 continue;
2528 involves = div_involves_vars(bmap, i, first, n);
2529 if (involves < 0 || involves)
2530 return involves;
2533 return isl_bool_false;
2536 /* Try and add a lower and/or upper bound on "div" to "bmap"
2537 * based on inequality "i".
2538 * "total" is the total number of variables (excluding the divs).
2539 * "v" is a temporary object that can be used during the calculations.
2540 * If "lb" is set, then a lower bound should be constructed.
2541 * If "ub" is set, then an upper bound should be constructed.
2543 * The calling function has already checked that the inequality does not
2544 * reference "div", but we still need to check that the inequality is
2545 * of the right form. We'll consider the case where we want to construct
2546 * a lower bound. The construction of upper bounds is similar.
2548 * Let "div" be of the form
2550 * q = floor((a + f(x))/d)
2552 * We essentially check if constraint "i" is of the form
2554 * b + f(x) >= 0
2556 * so that we can use it to derive a lower bound on "div".
2557 * However, we allow a slightly more general form
2559 * b + g(x) >= 0
2561 * with the condition that the coefficients of g(x) - f(x) are all
2562 * divisible by d.
2563 * Rewriting this constraint as
2565 * 0 >= -b - g(x)
2567 * adding a + f(x) to both sides and dividing by d, we obtain
2569 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2571 * Taking the floor on both sides, we obtain
2573 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2575 * or
2577 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2579 * In the case of an upper bound, we construct the constraint
2581 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2584 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2585 __isl_take isl_basic_map *bmap, int div, int i,
2586 unsigned total, isl_int v, int lb, int ub)
2588 int j;
2590 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2591 if (lb) {
2592 isl_int_sub(v, bmap->ineq[i][1 + j],
2593 bmap->div[div][1 + 1 + j]);
2594 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2596 if (ub) {
2597 isl_int_add(v, bmap->ineq[i][1 + j],
2598 bmap->div[div][1 + 1 + j]);
2599 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2602 if (!lb && !ub)
2603 return bmap;
2605 bmap = isl_basic_map_cow(bmap);
2606 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2607 if (lb) {
2608 int k = isl_basic_map_alloc_inequality(bmap);
2609 if (k < 0)
2610 goto error;
2611 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2612 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2613 bmap->div[div][1 + j]);
2614 isl_int_cdiv_q(bmap->ineq[k][j],
2615 bmap->ineq[k][j], bmap->div[div][0]);
2617 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2619 if (ub) {
2620 int k = isl_basic_map_alloc_inequality(bmap);
2621 if (k < 0)
2622 goto error;
2623 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2624 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2625 bmap->div[div][1 + j]);
2626 isl_int_fdiv_q(bmap->ineq[k][j],
2627 bmap->ineq[k][j], bmap->div[div][0]);
2629 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2632 return bmap;
2633 error:
2634 isl_basic_map_free(bmap);
2635 return NULL;
2638 /* This function is called right before "div" is eliminated from "bmap"
2639 * using Fourier-Motzkin.
2640 * Look through the constraints of "bmap" for constraints on the argument
2641 * of the integer division and use them to construct constraints on the
2642 * integer division itself. These constraints can then be combined
2643 * during the Fourier-Motzkin elimination.
2644 * Note that it is only useful to introduce lower bounds on "div"
2645 * if "bmap" already contains upper bounds on "div" as the newly
2646 * introduce lower bounds can then be combined with the pre-existing
2647 * upper bounds. Similarly for upper bounds.
2648 * We therefore first check if "bmap" contains any lower and/or upper bounds
2649 * on "div".
2651 * It is interesting to note that the introduction of these constraints
2652 * can indeed lead to more accurate results, even when compared to
2653 * deriving constraints on the argument of "div" from constraints on "div".
2654 * Consider, for example, the set
2656 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2658 * The second constraint can be rewritten as
2660 * 2 * [(-i-2j+3)/4] + k >= 0
2662 * from which we can derive
2664 * -i - 2j + 3 >= -2k
2666 * or
2668 * i + 2j <= 3 + 2k
2670 * Combined with the first constraint, we obtain
2672 * -3 <= 3 + 2k or k >= -3
2674 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2675 * the first constraint, we obtain
2677 * [(i + 2j)/4] >= [-3/4] = -1
2679 * Combining this constraint with the second constraint, we obtain
2681 * k >= -2
2683 static __isl_give isl_basic_map *insert_bounds_on_div(
2684 __isl_take isl_basic_map *bmap, int div)
2686 int i;
2687 int check_lb, check_ub;
2688 isl_int v;
2689 unsigned total;
2691 if (!bmap)
2692 return NULL;
2694 if (isl_int_is_zero(bmap->div[div][0]))
2695 return bmap;
2697 total = isl_space_dim(bmap->dim, isl_dim_all);
2699 check_lb = 0;
2700 check_ub = 0;
2701 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
2702 int s = isl_int_sgn(bmap->ineq[i][1 + total + div]);
2703 if (s > 0)
2704 check_ub = 1;
2705 if (s < 0)
2706 check_lb = 1;
2709 if (!check_lb && !check_ub)
2710 return bmap;
2712 isl_int_init(v);
2714 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
2715 if (!isl_int_is_zero(bmap->ineq[i][1 + total + div]))
2716 continue;
2718 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, total, v,
2719 check_lb, check_ub);
2722 isl_int_clear(v);
2724 return bmap;
2727 /* Remove all divs (recursively) involving any of the given dimensions
2728 * in their definitions.
2730 __isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
2731 __isl_take isl_basic_map *bmap,
2732 enum isl_dim_type type, unsigned first, unsigned n)
2734 int i;
2736 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2737 return isl_basic_map_free(bmap);
2738 first += isl_basic_map_offset(bmap, type);
2740 for (i = bmap->n_div - 1; i >= 0; --i) {
2741 isl_bool involves;
2743 involves = div_involves_vars(bmap, i, first, n);
2744 if (involves < 0)
2745 return isl_basic_map_free(bmap);
2746 if (!involves)
2747 continue;
2748 bmap = insert_bounds_on_div(bmap, i);
2749 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2750 if (!bmap)
2751 return NULL;
2752 i = bmap->n_div;
2755 return bmap;
2758 __isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
2759 __isl_take isl_basic_set *bset,
2760 enum isl_dim_type type, unsigned first, unsigned n)
2762 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
2765 __isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
2766 enum isl_dim_type type, unsigned first, unsigned n)
2768 int i;
2770 if (!map)
2771 return NULL;
2772 if (map->n == 0)
2773 return map;
2775 map = isl_map_cow(map);
2776 if (!map)
2777 return NULL;
2779 for (i = 0; i < map->n; ++i) {
2780 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2781 type, first, n);
2782 if (!map->p[i])
2783 goto error;
2785 return map;
2786 error:
2787 isl_map_free(map);
2788 return NULL;
2791 __isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2792 enum isl_dim_type type, unsigned first, unsigned n)
2794 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set),
2795 type, first, n));
2798 /* Does the description of "bmap" depend on the specified dimensions?
2799 * We also check whether the dimensions appear in any of the div definitions.
2800 * In principle there is no need for this check. If the dimensions appear
2801 * in a div definition, they also appear in the defining constraints of that
2802 * div.
2804 isl_bool isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
2805 enum isl_dim_type type, unsigned first, unsigned n)
2807 int i;
2809 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2810 return isl_bool_error;
2812 first += isl_basic_map_offset(bmap, type);
2813 for (i = 0; i < bmap->n_eq; ++i)
2814 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
2815 return isl_bool_true;
2816 for (i = 0; i < bmap->n_ineq; ++i)
2817 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
2818 return isl_bool_true;
2819 for (i = 0; i < bmap->n_div; ++i) {
2820 if (isl_int_is_zero(bmap->div[i][0]))
2821 continue;
2822 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
2823 return isl_bool_true;
2826 return isl_bool_false;
2829 isl_bool isl_map_involves_dims(__isl_keep isl_map *map,
2830 enum isl_dim_type type, unsigned first, unsigned n)
2832 int i;
2834 if (isl_map_check_range(map, type, first, n) < 0)
2835 return isl_bool_error;
2837 for (i = 0; i < map->n; ++i) {
2838 isl_bool involves = isl_basic_map_involves_dims(map->p[i],
2839 type, first, n);
2840 if (involves < 0 || involves)
2841 return involves;
2844 return isl_bool_false;
2847 isl_bool isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
2848 enum isl_dim_type type, unsigned first, unsigned n)
2850 return isl_basic_map_involves_dims(bset, type, first, n);
2853 isl_bool isl_set_involves_dims(__isl_keep isl_set *set,
2854 enum isl_dim_type type, unsigned first, unsigned n)
2856 return isl_map_involves_dims(set, type, first, n);
2859 /* Drop all constraints in bmap that involve any of the dimensions
2860 * first to first+n-1.
2862 static __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving(
2863 __isl_take isl_basic_map *bmap, unsigned first, unsigned n)
2865 int i;
2867 if (n == 0)
2868 return bmap;
2870 bmap = isl_basic_map_cow(bmap);
2872 if (!bmap)
2873 return NULL;
2875 for (i = bmap->n_eq - 1; i >= 0; --i) {
2876 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) == -1)
2877 continue;
2878 isl_basic_map_drop_equality(bmap, i);
2881 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2882 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) == -1)
2883 continue;
2884 isl_basic_map_drop_inequality(bmap, i);
2887 bmap = isl_basic_map_add_known_div_constraints(bmap);
2888 return bmap;
2891 /* Drop all constraints in bset that involve any of the dimensions
2892 * first to first+n-1.
2894 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving(
2895 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2897 return isl_basic_map_drop_constraints_involving(bset, first, n);
2900 /* Drop all constraints in bmap that do not involve any of the dimensions
2901 * first to first + n - 1 of the given type.
2903 __isl_give isl_basic_map *isl_basic_map_drop_constraints_not_involving_dims(
2904 __isl_take isl_basic_map *bmap,
2905 enum isl_dim_type type, unsigned first, unsigned n)
2907 int i;
2909 if (n == 0) {
2910 isl_space *space = isl_basic_map_get_space(bmap);
2911 isl_basic_map_free(bmap);
2912 return isl_basic_map_universe(space);
2914 bmap = isl_basic_map_cow(bmap);
2915 if (!bmap)
2916 return NULL;
2918 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2919 return isl_basic_map_free(bmap);
2921 first += isl_basic_map_offset(bmap, type) - 1;
2923 for (i = bmap->n_eq - 1; i >= 0; --i) {
2924 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) != -1)
2925 continue;
2926 isl_basic_map_drop_equality(bmap, i);
2929 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2930 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) != -1)
2931 continue;
2932 isl_basic_map_drop_inequality(bmap, i);
2935 bmap = isl_basic_map_add_known_div_constraints(bmap);
2936 return bmap;
2939 /* Drop all constraints in bset that do not involve any of the dimensions
2940 * first to first + n - 1 of the given type.
2942 __isl_give isl_basic_set *isl_basic_set_drop_constraints_not_involving_dims(
2943 __isl_take isl_basic_set *bset,
2944 enum isl_dim_type type, unsigned first, unsigned n)
2946 return isl_basic_map_drop_constraints_not_involving_dims(bset,
2947 type, first, n);
2950 /* Drop all constraints in bmap that involve any of the dimensions
2951 * first to first + n - 1 of the given type.
2953 __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving_dims(
2954 __isl_take isl_basic_map *bmap,
2955 enum isl_dim_type type, unsigned first, unsigned n)
2957 if (!bmap)
2958 return NULL;
2959 if (n == 0)
2960 return bmap;
2962 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2963 return isl_basic_map_free(bmap);
2965 bmap = isl_basic_map_remove_divs_involving_dims(bmap, type, first, n);
2966 first += isl_basic_map_offset(bmap, type) - 1;
2967 return isl_basic_map_drop_constraints_involving(bmap, first, n);
2970 /* Drop all constraints in bset that involve any of the dimensions
2971 * first to first + n - 1 of the given type.
2973 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving_dims(
2974 __isl_take isl_basic_set *bset,
2975 enum isl_dim_type type, unsigned first, unsigned n)
2977 return isl_basic_map_drop_constraints_involving_dims(bset,
2978 type, first, n);
2981 /* Drop constraints from "map" by applying "drop" to each basic map.
2983 static __isl_give isl_map *drop_constraints(__isl_take isl_map *map,
2984 enum isl_dim_type type, unsigned first, unsigned n,
2985 __isl_give isl_basic_map *(*drop)(__isl_take isl_basic_map *bmap,
2986 enum isl_dim_type type, unsigned first, unsigned n))
2988 int i;
2990 if (isl_map_check_range(map, type, first, n) < 0)
2991 return isl_map_free(map);
2993 map = isl_map_cow(map);
2994 if (!map)
2995 return NULL;
2997 for (i = 0; i < map->n; ++i) {
2998 map->p[i] = drop(map->p[i], type, first, n);
2999 if (!map->p[i])
3000 return isl_map_free(map);
3003 if (map->n > 1)
3004 ISL_F_CLR(map, ISL_MAP_DISJOINT);
3006 return map;
3009 /* Drop all constraints in map that involve any of the dimensions
3010 * first to first + n - 1 of the given type.
3012 __isl_give isl_map *isl_map_drop_constraints_involving_dims(
3013 __isl_take isl_map *map,
3014 enum isl_dim_type type, unsigned first, unsigned n)
3016 if (n == 0)
3017 return map;
3018 return drop_constraints(map, type, first, n,
3019 &isl_basic_map_drop_constraints_involving_dims);
3022 /* Drop all constraints in "map" that do not involve any of the dimensions
3023 * first to first + n - 1 of the given type.
3025 __isl_give isl_map *isl_map_drop_constraints_not_involving_dims(
3026 __isl_take isl_map *map,
3027 enum isl_dim_type type, unsigned first, unsigned n)
3029 if (n == 0) {
3030 isl_space *space = isl_map_get_space(map);
3031 isl_map_free(map);
3032 return isl_map_universe(space);
3034 return drop_constraints(map, type, first, n,
3035 &isl_basic_map_drop_constraints_not_involving_dims);
3038 /* Drop all constraints in set that involve any of the dimensions
3039 * first to first + n - 1 of the given type.
3041 __isl_give isl_set *isl_set_drop_constraints_involving_dims(
3042 __isl_take isl_set *set,
3043 enum isl_dim_type type, unsigned first, unsigned n)
3045 return isl_map_drop_constraints_involving_dims(set, type, first, n);
3048 /* Drop all constraints in "set" that do not involve any of the dimensions
3049 * first to first + n - 1 of the given type.
3051 __isl_give isl_set *isl_set_drop_constraints_not_involving_dims(
3052 __isl_take isl_set *set,
3053 enum isl_dim_type type, unsigned first, unsigned n)
3055 return isl_map_drop_constraints_not_involving_dims(set, type, first, n);
3058 /* Does local variable "div" of "bmap" have a complete explicit representation?
3059 * Having a complete explicit representation requires not only
3060 * an explicit representation, but also that all local variables
3061 * that appear in this explicit representation in turn have
3062 * a complete explicit representation.
3064 isl_bool isl_basic_map_div_is_known(__isl_keep isl_basic_map *bmap, int div)
3066 int i;
3067 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
3068 isl_bool marked;
3070 marked = isl_basic_map_div_is_marked_unknown(bmap, div);
3071 if (marked < 0 || marked)
3072 return isl_bool_not(marked);
3074 for (i = bmap->n_div - 1; i >= 0; --i) {
3075 isl_bool known;
3077 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
3078 continue;
3079 known = isl_basic_map_div_is_known(bmap, i);
3080 if (known < 0 || !known)
3081 return known;
3084 return isl_bool_true;
3087 /* Remove all divs that are unknown or defined in terms of unknown divs.
3089 __isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
3090 __isl_take isl_basic_map *bmap)
3092 int i;
3094 if (!bmap)
3095 return NULL;
3097 for (i = bmap->n_div - 1; i >= 0; --i) {
3098 if (isl_basic_map_div_is_known(bmap, i))
3099 continue;
3100 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
3101 if (!bmap)
3102 return NULL;
3103 i = bmap->n_div;
3106 return bmap;
3109 /* Remove all divs that are unknown or defined in terms of unknown divs.
3111 __isl_give isl_basic_set *isl_basic_set_remove_unknown_divs(
3112 __isl_take isl_basic_set *bset)
3114 return isl_basic_map_remove_unknown_divs(bset);
3117 __isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
3119 int i;
3121 if (!map)
3122 return NULL;
3123 if (map->n == 0)
3124 return map;
3126 map = isl_map_cow(map);
3127 if (!map)
3128 return NULL;
3130 for (i = 0; i < map->n; ++i) {
3131 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
3132 if (!map->p[i])
3133 goto error;
3135 return map;
3136 error:
3137 isl_map_free(map);
3138 return NULL;
3141 __isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
3143 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set)));
3146 __isl_give isl_basic_set *isl_basic_set_remove_dims(
3147 __isl_take isl_basic_set *bset,
3148 enum isl_dim_type type, unsigned first, unsigned n)
3150 isl_basic_map *bmap = bset_to_bmap(bset);
3151 bmap = isl_basic_map_remove_dims(bmap, type, first, n);
3152 return bset_from_bmap(bmap);
3155 __isl_give isl_map *isl_map_remove_dims(__isl_take isl_map *map,
3156 enum isl_dim_type type, unsigned first, unsigned n)
3158 int i;
3160 if (n == 0)
3161 return map;
3163 map = isl_map_cow(map);
3164 if (isl_map_check_range(map, type, first, n) < 0)
3165 return isl_map_free(map);
3167 for (i = 0; i < map->n; ++i) {
3168 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
3169 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
3170 if (!map->p[i])
3171 goto error;
3173 map = isl_map_drop(map, type, first, n);
3174 return map;
3175 error:
3176 isl_map_free(map);
3177 return NULL;
3180 __isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
3181 enum isl_dim_type type, unsigned first, unsigned n)
3183 return set_from_map(isl_map_remove_dims(set_to_map(bset),
3184 type, first, n));
3187 /* Project out n inputs starting at first using Fourier-Motzkin */
3188 struct isl_map *isl_map_remove_inputs(struct isl_map *map,
3189 unsigned first, unsigned n)
3191 return isl_map_remove_dims(map, isl_dim_in, first, n);
3194 static void dump_term(struct isl_basic_map *bmap,
3195 isl_int c, int pos, FILE *out)
3197 const char *name;
3198 unsigned in = isl_basic_map_dim(bmap, isl_dim_in);
3199 unsigned dim = in + isl_basic_map_dim(bmap, isl_dim_out);
3200 unsigned nparam = isl_basic_map_dim(bmap, isl_dim_param);
3201 if (!pos)
3202 isl_int_print(out, c, 0);
3203 else {
3204 if (!isl_int_is_one(c))
3205 isl_int_print(out, c, 0);
3206 if (pos < 1 + nparam) {
3207 name = isl_space_get_dim_name(bmap->dim,
3208 isl_dim_param, pos - 1);
3209 if (name)
3210 fprintf(out, "%s", name);
3211 else
3212 fprintf(out, "p%d", pos - 1);
3213 } else if (pos < 1 + nparam + in)
3214 fprintf(out, "i%d", pos - 1 - nparam);
3215 else if (pos < 1 + nparam + dim)
3216 fprintf(out, "o%d", pos - 1 - nparam - in);
3217 else
3218 fprintf(out, "e%d", pos - 1 - nparam - dim);
3222 static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
3223 int sign, FILE *out)
3225 int i;
3226 int first;
3227 unsigned len = 1 + isl_basic_map_total_dim(bmap);
3228 isl_int v;
3230 isl_int_init(v);
3231 for (i = 0, first = 1; i < len; ++i) {
3232 if (isl_int_sgn(c[i]) * sign <= 0)
3233 continue;
3234 if (!first)
3235 fprintf(out, " + ");
3236 first = 0;
3237 isl_int_abs(v, c[i]);
3238 dump_term(bmap, v, i, out);
3240 isl_int_clear(v);
3241 if (first)
3242 fprintf(out, "0");
3245 static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
3246 const char *op, FILE *out, int indent)
3248 int i;
3250 fprintf(out, "%*s", indent, "");
3252 dump_constraint_sign(bmap, c, 1, out);
3253 fprintf(out, " %s ", op);
3254 dump_constraint_sign(bmap, c, -1, out);
3256 fprintf(out, "\n");
3258 for (i = bmap->n_div; i < bmap->extra; ++i) {
3259 if (isl_int_is_zero(c[1+isl_space_dim(bmap->dim, isl_dim_all)+i]))
3260 continue;
3261 fprintf(out, "%*s", indent, "");
3262 fprintf(out, "ERROR: unused div coefficient not zero\n");
3263 abort();
3267 static void dump_constraints(struct isl_basic_map *bmap,
3268 isl_int **c, unsigned n,
3269 const char *op, FILE *out, int indent)
3271 int i;
3273 for (i = 0; i < n; ++i)
3274 dump_constraint(bmap, c[i], op, out, indent);
3277 static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
3279 int j;
3280 int first = 1;
3281 unsigned total = isl_basic_map_total_dim(bmap);
3283 for (j = 0; j < 1 + total; ++j) {
3284 if (isl_int_is_zero(exp[j]))
3285 continue;
3286 if (!first && isl_int_is_pos(exp[j]))
3287 fprintf(out, "+");
3288 dump_term(bmap, exp[j], j, out);
3289 first = 0;
3293 static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
3295 int i;
3297 dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
3298 dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
3300 for (i = 0; i < bmap->n_div; ++i) {
3301 fprintf(out, "%*s", indent, "");
3302 fprintf(out, "e%d = [(", i);
3303 dump_affine(bmap, bmap->div[i]+1, out);
3304 fprintf(out, ")/");
3305 isl_int_print(out, bmap->div[i][0], 0);
3306 fprintf(out, "]\n");
3310 void isl_basic_set_print_internal(struct isl_basic_set *bset,
3311 FILE *out, int indent)
3313 if (!bset) {
3314 fprintf(out, "null basic set\n");
3315 return;
3318 fprintf(out, "%*s", indent, "");
3319 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
3320 bset->ref, bset->dim->nparam, bset->dim->n_out,
3321 bset->extra, bset->flags);
3322 dump(bset_to_bmap(bset), out, indent);
3325 void isl_basic_map_print_internal(struct isl_basic_map *bmap,
3326 FILE *out, int indent)
3328 if (!bmap) {
3329 fprintf(out, "null basic map\n");
3330 return;
3333 fprintf(out, "%*s", indent, "");
3334 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
3335 "flags: %x, n_name: %d\n",
3336 bmap->ref,
3337 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
3338 bmap->extra, bmap->flags, bmap->dim->n_id);
3339 dump(bmap, out, indent);
3342 int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
3344 unsigned total;
3345 if (!bmap)
3346 return -1;
3347 total = isl_basic_map_total_dim(bmap);
3348 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
3349 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
3350 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
3351 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
3352 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
3353 return 0;
3356 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *space, int n,
3357 unsigned flags)
3359 if (!space)
3360 return NULL;
3361 if (isl_space_dim(space, isl_dim_in) != 0)
3362 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3363 "set cannot have input dimensions", goto error);
3364 return isl_map_alloc_space(space, n, flags);
3365 error:
3366 isl_space_free(space);
3367 return NULL;
3370 /* Make sure "map" has room for at least "n" more basic maps.
3372 __isl_give isl_map *isl_map_grow(__isl_take isl_map *map, int n)
3374 int i;
3375 struct isl_map *grown = NULL;
3377 if (!map)
3378 return NULL;
3379 isl_assert(map->ctx, n >= 0, goto error);
3380 if (map->n + n <= map->size)
3381 return map;
3382 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
3383 if (!grown)
3384 goto error;
3385 for (i = 0; i < map->n; ++i) {
3386 grown->p[i] = isl_basic_map_copy(map->p[i]);
3387 if (!grown->p[i])
3388 goto error;
3389 grown->n++;
3391 isl_map_free(map);
3392 return grown;
3393 error:
3394 isl_map_free(grown);
3395 isl_map_free(map);
3396 return NULL;
3399 /* Make sure "set" has room for at least "n" more basic sets.
3401 struct isl_set *isl_set_grow(struct isl_set *set, int n)
3403 return set_from_map(isl_map_grow(set_to_map(set), n));
3406 __isl_give isl_set *isl_set_from_basic_set(__isl_take isl_basic_set *bset)
3408 return isl_map_from_basic_map(bset);
3411 __isl_give isl_map *isl_map_from_basic_map(__isl_take isl_basic_map *bmap)
3413 struct isl_map *map;
3415 if (!bmap)
3416 return NULL;
3418 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
3419 return isl_map_add_basic_map(map, bmap);
3422 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
3423 __isl_take isl_basic_set *bset)
3425 return set_from_map(isl_map_add_basic_map(set_to_map(set),
3426 bset_to_bmap(bset)));
3429 __isl_null isl_set *isl_set_free(__isl_take isl_set *set)
3431 return isl_map_free(set);
3434 void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
3436 int i;
3438 if (!set) {
3439 fprintf(out, "null set\n");
3440 return;
3443 fprintf(out, "%*s", indent, "");
3444 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3445 set->ref, set->n, set->dim->nparam, set->dim->n_out,
3446 set->flags);
3447 for (i = 0; i < set->n; ++i) {
3448 fprintf(out, "%*s", indent, "");
3449 fprintf(out, "basic set %d:\n", i);
3450 isl_basic_set_print_internal(set->p[i], out, indent+4);
3454 void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
3456 int i;
3458 if (!map) {
3459 fprintf(out, "null map\n");
3460 return;
3463 fprintf(out, "%*s", indent, "");
3464 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3465 "flags: %x, n_name: %d\n",
3466 map->ref, map->n, map->dim->nparam, map->dim->n_in,
3467 map->dim->n_out, map->flags, map->dim->n_id);
3468 for (i = 0; i < map->n; ++i) {
3469 fprintf(out, "%*s", indent, "");
3470 fprintf(out, "basic map %d:\n", i);
3471 isl_basic_map_print_internal(map->p[i], out, indent+4);
3475 __isl_give isl_basic_map *isl_basic_map_intersect_domain(
3476 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3478 struct isl_basic_map *bmap_domain;
3480 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3481 goto error;
3483 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
3484 isl_assert(bset->ctx,
3485 isl_basic_map_compatible_domain(bmap, bset), goto error);
3487 bmap = isl_basic_map_cow(bmap);
3488 if (!bmap)
3489 goto error;
3490 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3491 bset->n_div, bset->n_eq, bset->n_ineq);
3492 bmap_domain = isl_basic_map_from_domain(bset);
3493 bmap = add_constraints(bmap, bmap_domain, 0, 0);
3495 bmap = isl_basic_map_simplify(bmap);
3496 return isl_basic_map_finalize(bmap);
3497 error:
3498 isl_basic_map_free(bmap);
3499 isl_basic_set_free(bset);
3500 return NULL;
3503 /* Check that the space of "bset" is the same as that of the range of "bmap".
3505 static isl_stat isl_basic_map_check_compatible_range(
3506 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3508 isl_bool ok;
3510 ok = isl_basic_map_compatible_range(bmap, bset);
3511 if (ok < 0)
3512 return isl_stat_error;
3513 if (!ok)
3514 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3515 "incompatible spaces", return isl_stat_error);
3517 return isl_stat_ok;
3520 __isl_give isl_basic_map *isl_basic_map_intersect_range(
3521 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3523 struct isl_basic_map *bmap_range;
3525 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3526 goto error;
3528 if (isl_space_dim(bset->dim, isl_dim_set) != 0 &&
3529 isl_basic_map_check_compatible_range(bmap, bset) < 0)
3530 goto error;
3532 if (isl_basic_set_plain_is_universe(bset)) {
3533 isl_basic_set_free(bset);
3534 return bmap;
3537 bmap = isl_basic_map_cow(bmap);
3538 if (!bmap)
3539 goto error;
3540 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3541 bset->n_div, bset->n_eq, bset->n_ineq);
3542 bmap_range = bset_to_bmap(bset);
3543 bmap = add_constraints(bmap, bmap_range, 0, 0);
3545 bmap = isl_basic_map_simplify(bmap);
3546 return isl_basic_map_finalize(bmap);
3547 error:
3548 isl_basic_map_free(bmap);
3549 isl_basic_set_free(bset);
3550 return NULL;
3553 isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
3554 __isl_keep isl_vec *vec)
3556 int i;
3557 unsigned total;
3558 isl_int s;
3560 if (!bmap || !vec)
3561 return isl_bool_error;
3563 total = 1 + isl_basic_map_total_dim(bmap);
3564 if (total != vec->size)
3565 return isl_bool_false;
3567 isl_int_init(s);
3569 for (i = 0; i < bmap->n_eq; ++i) {
3570 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
3571 if (!isl_int_is_zero(s)) {
3572 isl_int_clear(s);
3573 return isl_bool_false;
3577 for (i = 0; i < bmap->n_ineq; ++i) {
3578 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
3579 if (isl_int_is_neg(s)) {
3580 isl_int_clear(s);
3581 return isl_bool_false;
3585 isl_int_clear(s);
3587 return isl_bool_true;
3590 isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
3591 __isl_keep isl_vec *vec)
3593 return isl_basic_map_contains(bset_to_bmap(bset), vec);
3596 __isl_give isl_basic_map *isl_basic_map_intersect(
3597 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
3599 struct isl_vec *sample = NULL;
3601 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
3602 goto error;
3603 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
3604 isl_space_dim(bmap1->dim, isl_dim_param) &&
3605 isl_space_dim(bmap2->dim, isl_dim_all) !=
3606 isl_space_dim(bmap2->dim, isl_dim_param))
3607 return isl_basic_map_intersect(bmap2, bmap1);
3609 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
3610 isl_space_dim(bmap2->dim, isl_dim_param))
3611 isl_assert(bmap1->ctx,
3612 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
3614 if (isl_basic_map_plain_is_empty(bmap1)) {
3615 isl_basic_map_free(bmap2);
3616 return bmap1;
3618 if (isl_basic_map_plain_is_empty(bmap2)) {
3619 isl_basic_map_free(bmap1);
3620 return bmap2;
3623 if (bmap1->sample &&
3624 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
3625 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
3626 sample = isl_vec_copy(bmap1->sample);
3627 else if (bmap2->sample &&
3628 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
3629 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
3630 sample = isl_vec_copy(bmap2->sample);
3632 bmap1 = isl_basic_map_cow(bmap1);
3633 if (!bmap1)
3634 goto error;
3635 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
3636 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
3637 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
3639 if (!bmap1)
3640 isl_vec_free(sample);
3641 else if (sample) {
3642 isl_vec_free(bmap1->sample);
3643 bmap1->sample = sample;
3646 bmap1 = isl_basic_map_simplify(bmap1);
3647 return isl_basic_map_finalize(bmap1);
3648 error:
3649 if (sample)
3650 isl_vec_free(sample);
3651 isl_basic_map_free(bmap1);
3652 isl_basic_map_free(bmap2);
3653 return NULL;
3656 struct isl_basic_set *isl_basic_set_intersect(
3657 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
3659 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1),
3660 bset_to_bmap(bset2)));
3663 __isl_give isl_basic_set *isl_basic_set_intersect_params(
3664 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3666 return isl_basic_set_intersect(bset1, bset2);
3669 /* Special case of isl_map_intersect, where both map1 and map2
3670 * are convex, without any divs and such that either map1 or map2
3671 * contains a single constraint. This constraint is then simply
3672 * added to the other map.
3674 static __isl_give isl_map *map_intersect_add_constraint(
3675 __isl_take isl_map *map1, __isl_take isl_map *map2)
3677 isl_assert(map1->ctx, map1->n == 1, goto error);
3678 isl_assert(map2->ctx, map1->n == 1, goto error);
3679 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
3680 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
3682 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
3683 return isl_map_intersect(map2, map1);
3685 map1 = isl_map_cow(map1);
3686 if (!map1)
3687 goto error;
3688 if (isl_map_plain_is_empty(map1)) {
3689 isl_map_free(map2);
3690 return map1;
3692 map1->p[0] = isl_basic_map_cow(map1->p[0]);
3693 if (map2->p[0]->n_eq == 1)
3694 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
3695 else
3696 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
3697 map2->p[0]->ineq[0]);
3699 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
3700 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
3701 if (!map1->p[0])
3702 goto error;
3704 if (isl_basic_map_plain_is_empty(map1->p[0])) {
3705 isl_basic_map_free(map1->p[0]);
3706 map1->n = 0;
3709 isl_map_free(map2);
3711 map1 = isl_map_unmark_normalized(map1);
3712 return map1;
3713 error:
3714 isl_map_free(map1);
3715 isl_map_free(map2);
3716 return NULL;
3719 /* map2 may be either a parameter domain or a map living in the same
3720 * space as map1.
3722 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3723 __isl_take isl_map *map2)
3725 unsigned flags = 0;
3726 isl_bool equal;
3727 isl_map *result;
3728 int i, j;
3730 if (!map1 || !map2)
3731 goto error;
3733 if ((isl_map_plain_is_empty(map1) ||
3734 isl_map_plain_is_universe(map2)) &&
3735 isl_space_is_equal(map1->dim, map2->dim)) {
3736 isl_map_free(map2);
3737 return map1;
3739 if ((isl_map_plain_is_empty(map2) ||
3740 isl_map_plain_is_universe(map1)) &&
3741 isl_space_is_equal(map1->dim, map2->dim)) {
3742 isl_map_free(map1);
3743 return map2;
3746 if (map1->n == 1 && map2->n == 1 &&
3747 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
3748 isl_space_is_equal(map1->dim, map2->dim) &&
3749 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3750 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3751 return map_intersect_add_constraint(map1, map2);
3753 equal = isl_map_plain_is_equal(map1, map2);
3754 if (equal < 0)
3755 goto error;
3756 if (equal) {
3757 isl_map_free(map2);
3758 return map1;
3761 if (isl_space_dim(map2->dim, isl_dim_all) !=
3762 isl_space_dim(map2->dim, isl_dim_param))
3763 isl_assert(map1->ctx,
3764 isl_space_is_equal(map1->dim, map2->dim), goto error);
3766 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3767 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3768 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3770 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3771 map1->n * map2->n, flags);
3772 if (!result)
3773 goto error;
3774 for (i = 0; i < map1->n; ++i)
3775 for (j = 0; j < map2->n; ++j) {
3776 struct isl_basic_map *part;
3777 part = isl_basic_map_intersect(
3778 isl_basic_map_copy(map1->p[i]),
3779 isl_basic_map_copy(map2->p[j]));
3780 if (isl_basic_map_is_empty(part) < 0)
3781 part = isl_basic_map_free(part);
3782 result = isl_map_add_basic_map(result, part);
3783 if (!result)
3784 goto error;
3786 isl_map_free(map1);
3787 isl_map_free(map2);
3788 return result;
3789 error:
3790 isl_map_free(map1);
3791 isl_map_free(map2);
3792 return NULL;
3795 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3796 __isl_take isl_map *map2)
3798 if (!map1 || !map2)
3799 goto error;
3800 if (!isl_space_is_equal(map1->dim, map2->dim))
3801 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
3802 "spaces don't match", goto error);
3803 return map_intersect_internal(map1, map2);
3804 error:
3805 isl_map_free(map1);
3806 isl_map_free(map2);
3807 return NULL;
3810 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3811 __isl_take isl_map *map2)
3813 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
3816 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
3818 return set_from_map(isl_map_intersect(set_to_map(set1),
3819 set_to_map(set2)));
3822 /* map_intersect_internal accepts intersections
3823 * with parameter domains, so we can just call that function.
3825 static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
3826 __isl_take isl_set *params)
3828 return map_intersect_internal(map, params);
3831 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
3832 __isl_take isl_map *map2)
3834 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
3837 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3838 __isl_take isl_set *params)
3840 return isl_map_intersect_params(set, params);
3843 __isl_give isl_basic_map *isl_basic_map_reverse(__isl_take isl_basic_map *bmap)
3845 isl_space *space;
3846 unsigned pos, n1, n2;
3848 if (!bmap)
3849 return NULL;
3850 bmap = isl_basic_map_cow(bmap);
3851 if (!bmap)
3852 return NULL;
3853 space = isl_space_reverse(isl_space_copy(bmap->dim));
3854 pos = isl_basic_map_offset(bmap, isl_dim_in);
3855 n1 = isl_basic_map_dim(bmap, isl_dim_in);
3856 n2 = isl_basic_map_dim(bmap, isl_dim_out);
3857 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
3858 return isl_basic_map_reset_space(bmap, space);
3861 static __isl_give isl_basic_map *basic_map_space_reset(
3862 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
3864 isl_space *space;
3866 if (!bmap)
3867 return NULL;
3868 if (!isl_space_is_named_or_nested(bmap->dim, type))
3869 return bmap;
3871 space = isl_basic_map_get_space(bmap);
3872 space = isl_space_reset(space, type);
3873 bmap = isl_basic_map_reset_space(bmap, space);
3874 return bmap;
3877 __isl_give isl_basic_map *isl_basic_map_insert_dims(
3878 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3879 unsigned pos, unsigned n)
3881 isl_bool rational;
3882 isl_space *res_space;
3883 struct isl_basic_map *res;
3884 struct isl_dim_map *dim_map;
3885 unsigned total, off;
3886 enum isl_dim_type t;
3888 if (n == 0)
3889 return basic_map_space_reset(bmap, type);
3891 res_space = isl_space_insert_dims(isl_basic_map_get_space(bmap),
3892 type, pos, n);
3893 if (!res_space)
3894 return isl_basic_map_free(bmap);
3896 total = isl_basic_map_total_dim(bmap) + n;
3897 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3898 off = 0;
3899 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3900 if (t != type) {
3901 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3902 } else {
3903 unsigned size = isl_basic_map_dim(bmap, t);
3904 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3905 0, pos, off);
3906 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3907 pos, size - pos, off + pos + n);
3909 off += isl_space_dim(res_space, t);
3911 isl_dim_map_div(dim_map, bmap, off);
3913 res = isl_basic_map_alloc_space(res_space,
3914 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3915 rational = isl_basic_map_is_rational(bmap);
3916 if (rational < 0)
3917 res = isl_basic_map_free(res);
3918 if (rational)
3919 res = isl_basic_map_set_rational(res);
3920 if (isl_basic_map_plain_is_empty(bmap)) {
3921 isl_basic_map_free(bmap);
3922 free(dim_map);
3923 return isl_basic_map_set_to_empty(res);
3925 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3926 return isl_basic_map_finalize(res);
3929 __isl_give isl_basic_set *isl_basic_set_insert_dims(
3930 __isl_take isl_basic_set *bset,
3931 enum isl_dim_type type, unsigned pos, unsigned n)
3933 return isl_basic_map_insert_dims(bset, type, pos, n);
3936 __isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
3937 enum isl_dim_type type, unsigned n)
3939 if (!bmap)
3940 return NULL;
3941 return isl_basic_map_insert_dims(bmap, type,
3942 isl_basic_map_dim(bmap, type), n);
3945 __isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
3946 enum isl_dim_type type, unsigned n)
3948 if (!bset)
3949 return NULL;
3950 isl_assert(bset->ctx, type != isl_dim_in, goto error);
3951 return isl_basic_map_add_dims(bset, type, n);
3952 error:
3953 isl_basic_set_free(bset);
3954 return NULL;
3957 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
3958 enum isl_dim_type type)
3960 isl_space *space;
3962 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3963 return map;
3965 space = isl_map_get_space(map);
3966 space = isl_space_reset(space, type);
3967 map = isl_map_reset_space(map, space);
3968 return map;
3971 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3972 enum isl_dim_type type, unsigned pos, unsigned n)
3974 int i;
3976 if (n == 0)
3977 return map_space_reset(map, type);
3979 map = isl_map_cow(map);
3980 if (!map)
3981 return NULL;
3983 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3984 if (!map->dim)
3985 goto error;
3987 for (i = 0; i < map->n; ++i) {
3988 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3989 if (!map->p[i])
3990 goto error;
3993 return map;
3994 error:
3995 isl_map_free(map);
3996 return NULL;
3999 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
4000 enum isl_dim_type type, unsigned pos, unsigned n)
4002 return isl_map_insert_dims(set, type, pos, n);
4005 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
4006 enum isl_dim_type type, unsigned n)
4008 if (!map)
4009 return NULL;
4010 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
4013 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
4014 enum isl_dim_type type, unsigned n)
4016 if (!set)
4017 return NULL;
4018 isl_assert(set->ctx, type != isl_dim_in, goto error);
4019 return set_from_map(isl_map_add_dims(set_to_map(set), type, n));
4020 error:
4021 isl_set_free(set);
4022 return NULL;
4025 __isl_give isl_basic_map *isl_basic_map_move_dims(
4026 __isl_take isl_basic_map *bmap,
4027 enum isl_dim_type dst_type, unsigned dst_pos,
4028 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4030 struct isl_dim_map *dim_map;
4031 struct isl_basic_map *res;
4032 enum isl_dim_type t;
4033 unsigned total, off;
4035 if (!bmap)
4036 return NULL;
4037 if (n == 0) {
4038 bmap = isl_basic_map_reset(bmap, src_type);
4039 bmap = isl_basic_map_reset(bmap, dst_type);
4040 return bmap;
4043 if (isl_basic_map_check_range(bmap, src_type, src_pos, n) < 0)
4044 return isl_basic_map_free(bmap);
4046 if (dst_type == src_type && dst_pos == src_pos)
4047 return bmap;
4049 isl_assert(bmap->ctx, dst_type != src_type, goto error);
4051 if (pos(bmap->dim, dst_type) + dst_pos ==
4052 pos(bmap->dim, src_type) + src_pos +
4053 ((src_type < dst_type) ? n : 0)) {
4054 bmap = isl_basic_map_cow(bmap);
4055 if (!bmap)
4056 return NULL;
4058 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4059 src_type, src_pos, n);
4060 if (!bmap->dim)
4061 goto error;
4063 bmap = isl_basic_map_finalize(bmap);
4065 return bmap;
4068 total = isl_basic_map_total_dim(bmap);
4069 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4071 off = 0;
4072 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4073 unsigned size = isl_space_dim(bmap->dim, t);
4074 if (t == dst_type) {
4075 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4076 0, dst_pos, off);
4077 off += dst_pos;
4078 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
4079 src_pos, n, off);
4080 off += n;
4081 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4082 dst_pos, size - dst_pos, off);
4083 off += size - dst_pos;
4084 } else if (t == src_type) {
4085 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4086 0, src_pos, off);
4087 off += src_pos;
4088 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4089 src_pos + n, size - src_pos - n, off);
4090 off += size - src_pos - n;
4091 } else {
4092 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4093 off += size;
4096 isl_dim_map_div(dim_map, bmap, off);
4098 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4099 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4100 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4101 if (!bmap)
4102 goto error;
4104 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4105 src_type, src_pos, n);
4106 if (!bmap->dim)
4107 goto error;
4109 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
4110 bmap = isl_basic_map_gauss(bmap, NULL);
4111 bmap = isl_basic_map_finalize(bmap);
4113 return bmap;
4114 error:
4115 isl_basic_map_free(bmap);
4116 return NULL;
4119 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
4120 enum isl_dim_type dst_type, unsigned dst_pos,
4121 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4123 isl_basic_map *bmap = bset_to_bmap(bset);
4124 bmap = isl_basic_map_move_dims(bmap, dst_type, dst_pos,
4125 src_type, src_pos, n);
4126 return bset_from_bmap(bmap);
4129 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
4130 enum isl_dim_type dst_type, unsigned dst_pos,
4131 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4133 if (!set)
4134 return NULL;
4135 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
4136 return set_from_map(isl_map_move_dims(set_to_map(set),
4137 dst_type, dst_pos, src_type, src_pos, n));
4138 error:
4139 isl_set_free(set);
4140 return NULL;
4143 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
4144 enum isl_dim_type dst_type, unsigned dst_pos,
4145 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4147 int i;
4149 if (n == 0) {
4150 map = isl_map_reset(map, src_type);
4151 map = isl_map_reset(map, dst_type);
4152 return map;
4155 if (isl_map_check_range(map, src_type, src_pos, n))
4156 return isl_map_free(map);
4158 if (dst_type == src_type && dst_pos == src_pos)
4159 return map;
4161 isl_assert(map->ctx, dst_type != src_type, goto error);
4163 map = isl_map_cow(map);
4164 if (!map)
4165 return NULL;
4167 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
4168 if (!map->dim)
4169 goto error;
4171 for (i = 0; i < map->n; ++i) {
4172 map->p[i] = isl_basic_map_move_dims(map->p[i],
4173 dst_type, dst_pos,
4174 src_type, src_pos, n);
4175 if (!map->p[i])
4176 goto error;
4179 return map;
4180 error:
4181 isl_map_free(map);
4182 return NULL;
4185 /* Move the specified dimensions to the last columns right before
4186 * the divs. Don't change the dimension specification of bmap.
4187 * That's the responsibility of the caller.
4189 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
4190 enum isl_dim_type type, unsigned first, unsigned n)
4192 struct isl_dim_map *dim_map;
4193 struct isl_basic_map *res;
4194 enum isl_dim_type t;
4195 unsigned total, off;
4197 if (!bmap)
4198 return NULL;
4199 if (pos(bmap->dim, type) + first + n ==
4200 1 + isl_space_dim(bmap->dim, isl_dim_all))
4201 return bmap;
4203 total = isl_basic_map_total_dim(bmap);
4204 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4206 off = 0;
4207 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4208 unsigned size = isl_space_dim(bmap->dim, t);
4209 if (t == type) {
4210 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4211 0, first, off);
4212 off += first;
4213 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4214 first, n, total - bmap->n_div - n);
4215 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4216 first + n, size - (first + n), off);
4217 off += size - (first + n);
4218 } else {
4219 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4220 off += size;
4223 isl_dim_map_div(dim_map, bmap, off + n);
4225 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4226 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4227 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4228 return res;
4231 /* Insert "n" rows in the divs of "bmap".
4233 * The number of columns is not changed, which means that the last
4234 * dimensions of "bmap" are being reintepreted as the new divs.
4235 * The space of "bmap" is not adjusted, however, which means
4236 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
4237 * from the space of "bmap" is the responsibility of the caller.
4239 static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
4240 int n)
4242 int i;
4243 size_t row_size;
4244 isl_int **new_div;
4245 isl_int *old;
4247 bmap = isl_basic_map_cow(bmap);
4248 if (!bmap)
4249 return NULL;
4251 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
4252 old = bmap->block2.data;
4253 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
4254 (bmap->extra + n) * (1 + row_size));
4255 if (!bmap->block2.data)
4256 return isl_basic_map_free(bmap);
4257 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
4258 if (!new_div)
4259 return isl_basic_map_free(bmap);
4260 for (i = 0; i < n; ++i) {
4261 new_div[i] = bmap->block2.data +
4262 (bmap->extra + i) * (1 + row_size);
4263 isl_seq_clr(new_div[i], 1 + row_size);
4265 for (i = 0; i < bmap->extra; ++i)
4266 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
4267 free(bmap->div);
4268 bmap->div = new_div;
4269 bmap->n_div += n;
4270 bmap->extra += n;
4272 return bmap;
4275 /* Drop constraints from "bmap" that only involve the variables
4276 * of "type" in the range [first, first + n] that are not related
4277 * to any of the variables outside that interval.
4278 * These constraints cannot influence the values for the variables
4279 * outside the interval, except in case they cause "bmap" to be empty.
4280 * Only drop the constraints if "bmap" is known to be non-empty.
4282 static __isl_give isl_basic_map *drop_irrelevant_constraints(
4283 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
4284 unsigned first, unsigned n)
4286 int i;
4287 int *groups;
4288 unsigned dim, n_div;
4289 isl_bool non_empty;
4291 non_empty = isl_basic_map_plain_is_non_empty(bmap);
4292 if (non_empty < 0)
4293 return isl_basic_map_free(bmap);
4294 if (!non_empty)
4295 return bmap;
4297 dim = isl_basic_map_dim(bmap, isl_dim_all);
4298 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4299 groups = isl_calloc_array(isl_basic_map_get_ctx(bmap), int, dim);
4300 if (!groups)
4301 return isl_basic_map_free(bmap);
4302 first += isl_basic_map_offset(bmap, type) - 1;
4303 for (i = 0; i < first; ++i)
4304 groups[i] = -1;
4305 for (i = first + n; i < dim - n_div; ++i)
4306 groups[i] = -1;
4308 bmap = isl_basic_map_drop_unrelated_constraints(bmap, groups);
4310 return bmap;
4313 /* Turn the n dimensions of type type, starting at first
4314 * into existentially quantified variables.
4316 * If a subset of the projected out variables are unrelated
4317 * to any of the variables that remain, then the constraints
4318 * involving this subset are simply dropped first.
4320 __isl_give isl_basic_map *isl_basic_map_project_out(
4321 __isl_take isl_basic_map *bmap,
4322 enum isl_dim_type type, unsigned first, unsigned n)
4324 isl_bool empty;
4326 if (n == 0)
4327 return basic_map_space_reset(bmap, type);
4328 if (type == isl_dim_div)
4329 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
4330 "cannot project out existentially quantified variables",
4331 return isl_basic_map_free(bmap));
4333 empty = isl_basic_map_plain_is_empty(bmap);
4334 if (empty < 0)
4335 return isl_basic_map_free(bmap);
4336 if (empty)
4337 bmap = isl_basic_map_set_to_empty(bmap);
4339 bmap = drop_irrelevant_constraints(bmap, type, first, n);
4340 if (!bmap)
4341 return NULL;
4343 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
4344 return isl_basic_map_remove_dims(bmap, type, first, n);
4346 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
4347 return isl_basic_map_free(bmap);
4349 bmap = move_last(bmap, type, first, n);
4350 bmap = isl_basic_map_cow(bmap);
4351 bmap = insert_div_rows(bmap, n);
4352 if (!bmap)
4353 return NULL;
4355 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
4356 if (!bmap->dim)
4357 goto error;
4358 bmap = isl_basic_map_simplify(bmap);
4359 bmap = isl_basic_map_drop_redundant_divs(bmap);
4360 return isl_basic_map_finalize(bmap);
4361 error:
4362 isl_basic_map_free(bmap);
4363 return NULL;
4366 /* Turn the n dimensions of type type, starting at first
4367 * into existentially quantified variables.
4369 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
4370 enum isl_dim_type type, unsigned first, unsigned n)
4372 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset),
4373 type, first, n));
4376 /* Turn the n dimensions of type type, starting at first
4377 * into existentially quantified variables.
4379 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
4380 enum isl_dim_type type, unsigned first, unsigned n)
4382 int i;
4384 if (n == 0)
4385 return map_space_reset(map, type);
4387 if (isl_map_check_range(map, type, first, n) < 0)
4388 return isl_map_free(map);
4390 map = isl_map_cow(map);
4391 if (!map)
4392 return NULL;
4394 map->dim = isl_space_drop_dims(map->dim, type, first, n);
4395 if (!map->dim)
4396 goto error;
4398 for (i = 0; i < map->n; ++i) {
4399 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
4400 if (!map->p[i])
4401 goto error;
4404 return map;
4405 error:
4406 isl_map_free(map);
4407 return NULL;
4410 /* Turn all the dimensions of type "type", except the "n" starting at "first"
4411 * into existentially quantified variables.
4413 __isl_give isl_map *isl_map_project_onto(__isl_take isl_map *map,
4414 enum isl_dim_type type, unsigned first, unsigned n)
4416 unsigned dim;
4418 if (isl_map_check_range(map, type, first, n) < 0)
4419 return isl_map_free(map);
4420 dim = isl_map_dim(map, type);
4421 map = isl_map_project_out(map, type, first + n, dim - (first + n));
4422 map = isl_map_project_out(map, type, 0, first);
4423 return map;
4426 /* Turn the n dimensions of type type, starting at first
4427 * into existentially quantified variables.
4429 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
4430 enum isl_dim_type type, unsigned first, unsigned n)
4432 return set_from_map(isl_map_project_out(set_to_map(set),
4433 type, first, n));
4436 /* Return a map that projects the elements in "set" onto their
4437 * "n" set dimensions starting at "first".
4438 * "type" should be equal to isl_dim_set.
4440 __isl_give isl_map *isl_set_project_onto_map(__isl_take isl_set *set,
4441 enum isl_dim_type type, unsigned first, unsigned n)
4443 int i;
4444 int dim;
4445 isl_map *map;
4447 if (!set)
4448 return NULL;
4449 if (type != isl_dim_set)
4450 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4451 "only set dimensions can be projected out", goto error);
4452 dim = isl_set_dim(set, isl_dim_set);
4453 if (first + n > dim || first + n < first)
4454 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4455 "index out of bounds", goto error);
4457 map = isl_map_from_domain(set);
4458 map = isl_map_add_dims(map, isl_dim_out, n);
4459 for (i = 0; i < n; ++i)
4460 map = isl_map_equate(map, isl_dim_in, first + i,
4461 isl_dim_out, i);
4462 return map;
4463 error:
4464 isl_set_free(set);
4465 return NULL;
4468 static struct isl_basic_map *add_divs(struct isl_basic_map *bmap, unsigned n)
4470 int i, j;
4472 for (i = 0; i < n; ++i) {
4473 j = isl_basic_map_alloc_div(bmap);
4474 if (j < 0)
4475 goto error;
4476 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
4478 return bmap;
4479 error:
4480 isl_basic_map_free(bmap);
4481 return NULL;
4484 struct isl_basic_map *isl_basic_map_apply_range(
4485 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4487 isl_space *dim_result = NULL;
4488 struct isl_basic_map *bmap;
4489 unsigned n_in, n_out, n, nparam, total, pos;
4490 struct isl_dim_map *dim_map1, *dim_map2;
4492 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4493 goto error;
4494 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_out,
4495 bmap2->dim, isl_dim_in))
4496 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4497 "spaces don't match", goto error);
4499 dim_result = isl_space_join(isl_space_copy(bmap1->dim),
4500 isl_space_copy(bmap2->dim));
4502 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4503 n_out = isl_basic_map_dim(bmap2, isl_dim_out);
4504 n = isl_basic_map_dim(bmap1, isl_dim_out);
4505 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4507 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
4508 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4509 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
4510 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4511 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
4512 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4513 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
4514 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
4515 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4516 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4517 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4519 bmap = isl_basic_map_alloc_space(dim_result,
4520 bmap1->n_div + bmap2->n_div + n,
4521 bmap1->n_eq + bmap2->n_eq,
4522 bmap1->n_ineq + bmap2->n_ineq);
4523 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4524 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4525 bmap = add_divs(bmap, n);
4526 bmap = isl_basic_map_simplify(bmap);
4527 bmap = isl_basic_map_drop_redundant_divs(bmap);
4528 return isl_basic_map_finalize(bmap);
4529 error:
4530 isl_basic_map_free(bmap1);
4531 isl_basic_map_free(bmap2);
4532 return NULL;
4535 struct isl_basic_set *isl_basic_set_apply(
4536 struct isl_basic_set *bset, struct isl_basic_map *bmap)
4538 if (!bset || !bmap)
4539 goto error;
4541 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
4542 goto error);
4544 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset),
4545 bmap));
4546 error:
4547 isl_basic_set_free(bset);
4548 isl_basic_map_free(bmap);
4549 return NULL;
4552 struct isl_basic_map *isl_basic_map_apply_domain(
4553 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4555 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4556 goto error;
4557 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_in,
4558 bmap2->dim, isl_dim_in))
4559 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4560 "spaces don't match", goto error);
4562 bmap1 = isl_basic_map_reverse(bmap1);
4563 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
4564 return isl_basic_map_reverse(bmap1);
4565 error:
4566 isl_basic_map_free(bmap1);
4567 isl_basic_map_free(bmap2);
4568 return NULL;
4571 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4572 * A \cap B -> f(A) + f(B)
4574 __isl_give isl_basic_map *isl_basic_map_sum(__isl_take isl_basic_map *bmap1,
4575 __isl_take isl_basic_map *bmap2)
4577 unsigned n_in, n_out, nparam, total, pos;
4578 struct isl_basic_map *bmap = NULL;
4579 struct isl_dim_map *dim_map1, *dim_map2;
4580 int i;
4582 if (!bmap1 || !bmap2)
4583 goto error;
4585 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
4586 goto error);
4588 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4589 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4590 n_out = isl_basic_map_dim(bmap1, isl_dim_out);
4592 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
4593 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4594 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
4595 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4596 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
4597 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4598 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4599 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
4600 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4601 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4602 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
4604 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
4605 bmap1->n_div + bmap2->n_div + 2 * n_out,
4606 bmap1->n_eq + bmap2->n_eq + n_out,
4607 bmap1->n_ineq + bmap2->n_ineq);
4608 for (i = 0; i < n_out; ++i) {
4609 int j = isl_basic_map_alloc_equality(bmap);
4610 if (j < 0)
4611 goto error;
4612 isl_seq_clr(bmap->eq[j], 1+total);
4613 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
4614 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
4615 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
4617 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4618 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4619 bmap = add_divs(bmap, 2 * n_out);
4621 bmap = isl_basic_map_simplify(bmap);
4622 return isl_basic_map_finalize(bmap);
4623 error:
4624 isl_basic_map_free(bmap);
4625 isl_basic_map_free(bmap1);
4626 isl_basic_map_free(bmap2);
4627 return NULL;
4630 /* Given two maps A -> f(A) and B -> g(B), construct a map
4631 * A \cap B -> f(A) + f(B)
4633 __isl_give isl_map *isl_map_sum(__isl_take isl_map *map1,
4634 __isl_take isl_map *map2)
4636 struct isl_map *result;
4637 int i, j;
4639 if (!map1 || !map2)
4640 goto error;
4642 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
4644 result = isl_map_alloc_space(isl_space_copy(map1->dim),
4645 map1->n * map2->n, 0);
4646 if (!result)
4647 goto error;
4648 for (i = 0; i < map1->n; ++i)
4649 for (j = 0; j < map2->n; ++j) {
4650 struct isl_basic_map *part;
4651 part = isl_basic_map_sum(
4652 isl_basic_map_copy(map1->p[i]),
4653 isl_basic_map_copy(map2->p[j]));
4654 if (isl_basic_map_is_empty(part))
4655 isl_basic_map_free(part);
4656 else
4657 result = isl_map_add_basic_map(result, part);
4658 if (!result)
4659 goto error;
4661 isl_map_free(map1);
4662 isl_map_free(map2);
4663 return result;
4664 error:
4665 isl_map_free(map1);
4666 isl_map_free(map2);
4667 return NULL;
4670 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
4671 __isl_take isl_set *set2)
4673 return set_from_map(isl_map_sum(set_to_map(set1), set_to_map(set2)));
4676 /* Given a basic map A -> f(A), construct A -> -f(A).
4678 __isl_give isl_basic_map *isl_basic_map_neg(__isl_take isl_basic_map *bmap)
4680 int i, j;
4681 unsigned off, n;
4683 bmap = isl_basic_map_cow(bmap);
4684 if (!bmap)
4685 return NULL;
4687 n = isl_basic_map_dim(bmap, isl_dim_out);
4688 off = isl_basic_map_offset(bmap, isl_dim_out);
4689 for (i = 0; i < bmap->n_eq; ++i)
4690 for (j = 0; j < n; ++j)
4691 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
4692 for (i = 0; i < bmap->n_ineq; ++i)
4693 for (j = 0; j < n; ++j)
4694 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
4695 for (i = 0; i < bmap->n_div; ++i)
4696 for (j = 0; j < n; ++j)
4697 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
4698 bmap = isl_basic_map_gauss(bmap, NULL);
4699 return isl_basic_map_finalize(bmap);
4702 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
4704 return isl_basic_map_neg(bset);
4707 /* Given a map A -> f(A), construct A -> -f(A).
4709 __isl_give isl_map *isl_map_neg(__isl_take isl_map *map)
4711 int i;
4713 map = isl_map_cow(map);
4714 if (!map)
4715 return NULL;
4717 for (i = 0; i < map->n; ++i) {
4718 map->p[i] = isl_basic_map_neg(map->p[i]);
4719 if (!map->p[i])
4720 goto error;
4723 return map;
4724 error:
4725 isl_map_free(map);
4726 return NULL;
4729 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
4731 return set_from_map(isl_map_neg(set_to_map(set)));
4734 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4735 * A -> floor(f(A)/d).
4737 __isl_give isl_basic_map *isl_basic_map_floordiv(__isl_take isl_basic_map *bmap,
4738 isl_int d)
4740 unsigned n_in, n_out, nparam, total, pos;
4741 struct isl_basic_map *result = NULL;
4742 struct isl_dim_map *dim_map;
4743 int i;
4745 if (!bmap)
4746 return NULL;
4748 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4749 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4750 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4752 total = nparam + n_in + n_out + bmap->n_div + n_out;
4753 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4754 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
4755 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
4756 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
4757 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
4759 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
4760 bmap->n_div + n_out,
4761 bmap->n_eq, bmap->n_ineq + 2 * n_out);
4762 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
4763 result = add_divs(result, n_out);
4764 for (i = 0; i < n_out; ++i) {
4765 int j;
4766 j = isl_basic_map_alloc_inequality(result);
4767 if (j < 0)
4768 goto error;
4769 isl_seq_clr(result->ineq[j], 1+total);
4770 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
4771 isl_int_set_si(result->ineq[j][1+pos+i], 1);
4772 j = isl_basic_map_alloc_inequality(result);
4773 if (j < 0)
4774 goto error;
4775 isl_seq_clr(result->ineq[j], 1+total);
4776 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
4777 isl_int_set_si(result->ineq[j][1+pos+i], -1);
4778 isl_int_sub_ui(result->ineq[j][0], d, 1);
4781 result = isl_basic_map_simplify(result);
4782 return isl_basic_map_finalize(result);
4783 error:
4784 isl_basic_map_free(result);
4785 return NULL;
4788 /* Given a map A -> f(A) and an integer d, construct a map
4789 * A -> floor(f(A)/d).
4791 __isl_give isl_map *isl_map_floordiv(__isl_take isl_map *map, isl_int d)
4793 int i;
4795 map = isl_map_cow(map);
4796 if (!map)
4797 return NULL;
4799 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4800 for (i = 0; i < map->n; ++i) {
4801 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
4802 if (!map->p[i])
4803 goto error;
4805 map = isl_map_unmark_normalized(map);
4807 return map;
4808 error:
4809 isl_map_free(map);
4810 return NULL;
4813 /* Given a map A -> f(A) and an integer d, construct a map
4814 * A -> floor(f(A)/d).
4816 __isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
4817 __isl_take isl_val *d)
4819 if (!map || !d)
4820 goto error;
4821 if (!isl_val_is_int(d))
4822 isl_die(isl_val_get_ctx(d), isl_error_invalid,
4823 "expecting integer denominator", goto error);
4824 map = isl_map_floordiv(map, d->n);
4825 isl_val_free(d);
4826 return map;
4827 error:
4828 isl_map_free(map);
4829 isl_val_free(d);
4830 return NULL;
4833 static __isl_give isl_basic_map *var_equal(__isl_take isl_basic_map *bmap,
4834 unsigned pos)
4836 int i;
4837 unsigned nparam;
4838 unsigned n_in;
4840 i = isl_basic_map_alloc_equality(bmap);
4841 if (i < 0)
4842 goto error;
4843 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4844 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4845 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
4846 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
4847 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
4848 return isl_basic_map_finalize(bmap);
4849 error:
4850 isl_basic_map_free(bmap);
4851 return NULL;
4854 /* Add a constraint to "bmap" expressing i_pos < o_pos
4856 static __isl_give isl_basic_map *var_less(__isl_take isl_basic_map *bmap,
4857 unsigned pos)
4859 int i;
4860 unsigned nparam;
4861 unsigned n_in;
4863 i = isl_basic_map_alloc_inequality(bmap);
4864 if (i < 0)
4865 goto error;
4866 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4867 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4868 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4869 isl_int_set_si(bmap->ineq[i][0], -1);
4870 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4871 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4872 return isl_basic_map_finalize(bmap);
4873 error:
4874 isl_basic_map_free(bmap);
4875 return NULL;
4878 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4880 static __isl_give isl_basic_map *var_less_or_equal(
4881 __isl_take isl_basic_map *bmap, unsigned pos)
4883 int i;
4884 unsigned nparam;
4885 unsigned n_in;
4887 i = isl_basic_map_alloc_inequality(bmap);
4888 if (i < 0)
4889 goto error;
4890 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4891 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4892 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4893 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4894 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4895 return isl_basic_map_finalize(bmap);
4896 error:
4897 isl_basic_map_free(bmap);
4898 return NULL;
4901 /* Add a constraint to "bmap" expressing i_pos > o_pos
4903 static __isl_give isl_basic_map *var_more(__isl_take isl_basic_map *bmap,
4904 unsigned pos)
4906 int i;
4907 unsigned nparam;
4908 unsigned n_in;
4910 i = isl_basic_map_alloc_inequality(bmap);
4911 if (i < 0)
4912 goto error;
4913 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4914 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4915 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4916 isl_int_set_si(bmap->ineq[i][0], -1);
4917 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4918 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4919 return isl_basic_map_finalize(bmap);
4920 error:
4921 isl_basic_map_free(bmap);
4922 return NULL;
4925 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4927 static __isl_give isl_basic_map *var_more_or_equal(
4928 __isl_take isl_basic_map *bmap, unsigned pos)
4930 int i;
4931 unsigned nparam;
4932 unsigned n_in;
4934 i = isl_basic_map_alloc_inequality(bmap);
4935 if (i < 0)
4936 goto error;
4937 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4938 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4939 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4940 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4941 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4942 return isl_basic_map_finalize(bmap);
4943 error:
4944 isl_basic_map_free(bmap);
4945 return NULL;
4948 __isl_give isl_basic_map *isl_basic_map_equal(
4949 __isl_take isl_space *dim, unsigned n_equal)
4951 int i;
4952 struct isl_basic_map *bmap;
4953 bmap = isl_basic_map_alloc_space(dim, 0, n_equal, 0);
4954 if (!bmap)
4955 return NULL;
4956 for (i = 0; i < n_equal && bmap; ++i)
4957 bmap = var_equal(bmap, i);
4958 return isl_basic_map_finalize(bmap);
4961 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4963 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *dim,
4964 unsigned pos)
4966 int i;
4967 struct isl_basic_map *bmap;
4968 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4969 if (!bmap)
4970 return NULL;
4971 for (i = 0; i < pos && bmap; ++i)
4972 bmap = var_equal(bmap, i);
4973 if (bmap)
4974 bmap = var_less(bmap, pos);
4975 return isl_basic_map_finalize(bmap);
4978 /* Return a relation on "dim" expressing i_[0..pos] <<= o_[0..pos]
4980 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
4981 __isl_take isl_space *dim, unsigned pos)
4983 int i;
4984 isl_basic_map *bmap;
4986 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4987 for (i = 0; i < pos; ++i)
4988 bmap = var_equal(bmap, i);
4989 bmap = var_less_or_equal(bmap, pos);
4990 return isl_basic_map_finalize(bmap);
4993 /* Return a relation on "dim" expressing i_pos > o_pos
4995 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *dim,
4996 unsigned pos)
4998 int i;
4999 struct isl_basic_map *bmap;
5000 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
5001 if (!bmap)
5002 return NULL;
5003 for (i = 0; i < pos && bmap; ++i)
5004 bmap = var_equal(bmap, i);
5005 if (bmap)
5006 bmap = var_more(bmap, pos);
5007 return isl_basic_map_finalize(bmap);
5010 /* Return a relation on "dim" expressing i_[0..pos] >>= o_[0..pos]
5012 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
5013 __isl_take isl_space *dim, unsigned pos)
5015 int i;
5016 isl_basic_map *bmap;
5018 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
5019 for (i = 0; i < pos; ++i)
5020 bmap = var_equal(bmap, i);
5021 bmap = var_more_or_equal(bmap, pos);
5022 return isl_basic_map_finalize(bmap);
5025 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *dims,
5026 unsigned n, int equal)
5028 struct isl_map *map;
5029 int i;
5031 if (n == 0 && equal)
5032 return isl_map_universe(dims);
5034 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
5036 for (i = 0; i + 1 < n; ++i)
5037 map = isl_map_add_basic_map(map,
5038 isl_basic_map_less_at(isl_space_copy(dims), i));
5039 if (n > 0) {
5040 if (equal)
5041 map = isl_map_add_basic_map(map,
5042 isl_basic_map_less_or_equal_at(dims, n - 1));
5043 else
5044 map = isl_map_add_basic_map(map,
5045 isl_basic_map_less_at(dims, n - 1));
5046 } else
5047 isl_space_free(dims);
5049 return map;
5052 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *dims, int equal)
5054 if (!dims)
5055 return NULL;
5056 return map_lex_lte_first(dims, dims->n_out, equal);
5059 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
5061 return map_lex_lte_first(dim, n, 0);
5064 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
5066 return map_lex_lte_first(dim, n, 1);
5069 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
5071 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
5074 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
5076 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
5079 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *dims,
5080 unsigned n, int equal)
5082 struct isl_map *map;
5083 int i;
5085 if (n == 0 && equal)
5086 return isl_map_universe(dims);
5088 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
5090 for (i = 0; i + 1 < n; ++i)
5091 map = isl_map_add_basic_map(map,
5092 isl_basic_map_more_at(isl_space_copy(dims), i));
5093 if (n > 0) {
5094 if (equal)
5095 map = isl_map_add_basic_map(map,
5096 isl_basic_map_more_or_equal_at(dims, n - 1));
5097 else
5098 map = isl_map_add_basic_map(map,
5099 isl_basic_map_more_at(dims, n - 1));
5100 } else
5101 isl_space_free(dims);
5103 return map;
5106 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *dims, int equal)
5108 if (!dims)
5109 return NULL;
5110 return map_lex_gte_first(dims, dims->n_out, equal);
5113 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
5115 return map_lex_gte_first(dim, n, 0);
5118 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
5120 return map_lex_gte_first(dim, n, 1);
5123 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
5125 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
5128 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
5130 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
5133 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
5134 __isl_take isl_set *set2)
5136 isl_map *map;
5137 map = isl_map_lex_le(isl_set_get_space(set1));
5138 map = isl_map_intersect_domain(map, set1);
5139 map = isl_map_intersect_range(map, set2);
5140 return map;
5143 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
5144 __isl_take isl_set *set2)
5146 isl_map *map;
5147 map = isl_map_lex_lt(isl_set_get_space(set1));
5148 map = isl_map_intersect_domain(map, set1);
5149 map = isl_map_intersect_range(map, set2);
5150 return map;
5153 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
5154 __isl_take isl_set *set2)
5156 isl_map *map;
5157 map = isl_map_lex_ge(isl_set_get_space(set1));
5158 map = isl_map_intersect_domain(map, set1);
5159 map = isl_map_intersect_range(map, set2);
5160 return map;
5163 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
5164 __isl_take isl_set *set2)
5166 isl_map *map;
5167 map = isl_map_lex_gt(isl_set_get_space(set1));
5168 map = isl_map_intersect_domain(map, set1);
5169 map = isl_map_intersect_range(map, set2);
5170 return map;
5173 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
5174 __isl_take isl_map *map2)
5176 isl_map *map;
5177 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
5178 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5179 map = isl_map_apply_range(map, isl_map_reverse(map2));
5180 return map;
5183 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
5184 __isl_take isl_map *map2)
5186 isl_map *map;
5187 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
5188 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5189 map = isl_map_apply_range(map, isl_map_reverse(map2));
5190 return map;
5193 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
5194 __isl_take isl_map *map2)
5196 isl_map *map;
5197 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
5198 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5199 map = isl_map_apply_range(map, isl_map_reverse(map2));
5200 return map;
5203 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
5204 __isl_take isl_map *map2)
5206 isl_map *map;
5207 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
5208 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5209 map = isl_map_apply_range(map, isl_map_reverse(map2));
5210 return map;
5213 /* For a div d = floor(f/m), add the constraint
5215 * f - m d >= 0
5217 static isl_stat add_upper_div_constraint(__isl_keep isl_basic_map *bmap,
5218 unsigned pos, isl_int *div)
5220 int i;
5221 unsigned total = isl_basic_map_total_dim(bmap);
5223 i = isl_basic_map_alloc_inequality(bmap);
5224 if (i < 0)
5225 return isl_stat_error;
5226 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
5227 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
5229 return isl_stat_ok;
5232 /* For a div d = floor(f/m), add the constraint
5234 * -(f-(m-1)) + m d >= 0
5236 static isl_stat add_lower_div_constraint(__isl_keep isl_basic_map *bmap,
5237 unsigned pos, isl_int *div)
5239 int i;
5240 unsigned total = isl_basic_map_total_dim(bmap);
5242 i = isl_basic_map_alloc_inequality(bmap);
5243 if (i < 0)
5244 return isl_stat_error;
5245 isl_seq_neg(bmap->ineq[i], div + 1, 1 + total);
5246 isl_int_set(bmap->ineq[i][1 + pos], div[0]);
5247 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
5248 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
5250 return isl_stat_ok;
5253 /* For a div d = floor(f/m), add the constraints
5255 * f - m d >= 0
5256 * -(f-(m-1)) + m d >= 0
5258 * Note that the second constraint is the negation of
5260 * f - m d >= m
5262 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
5263 unsigned pos, isl_int *div)
5265 if (add_upper_div_constraint(bmap, pos, div) < 0)
5266 return -1;
5267 if (add_lower_div_constraint(bmap, pos, div) < 0)
5268 return -1;
5269 return 0;
5272 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
5273 unsigned pos, isl_int *div)
5275 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset),
5276 pos, div);
5279 int isl_basic_map_add_div_constraints(struct isl_basic_map *bmap, unsigned div)
5281 unsigned total = isl_basic_map_total_dim(bmap);
5282 unsigned div_pos = total - bmap->n_div + div;
5284 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
5285 bmap->div[div]);
5288 /* For each known div d = floor(f/m), add the constraints
5290 * f - m d >= 0
5291 * -(f-(m-1)) + m d >= 0
5293 * Remove duplicate constraints in case of some these div constraints
5294 * already appear in "bmap".
5296 __isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
5297 __isl_take isl_basic_map *bmap)
5299 unsigned n_div;
5301 if (!bmap)
5302 return NULL;
5303 n_div = isl_basic_map_dim(bmap, isl_dim_div);
5304 if (n_div == 0)
5305 return bmap;
5307 bmap = add_known_div_constraints(bmap);
5308 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
5309 bmap = isl_basic_map_finalize(bmap);
5310 return bmap;
5313 /* Add the div constraint of sign "sign" for div "div" of "bmap".
5315 * In particular, if this div is of the form d = floor(f/m),
5316 * then add the constraint
5318 * f - m d >= 0
5320 * if sign < 0 or the constraint
5322 * -(f-(m-1)) + m d >= 0
5324 * if sign > 0.
5326 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map *bmap,
5327 unsigned div, int sign)
5329 unsigned total;
5330 unsigned div_pos;
5332 if (!bmap)
5333 return -1;
5335 total = isl_basic_map_total_dim(bmap);
5336 div_pos = total - bmap->n_div + div;
5338 if (sign < 0)
5339 return add_upper_div_constraint(bmap, div_pos, bmap->div[div]);
5340 else
5341 return add_lower_div_constraint(bmap, div_pos, bmap->div[div]);
5344 __isl_give isl_basic_set *isl_basic_map_underlying_set(
5345 __isl_take isl_basic_map *bmap)
5347 if (!bmap)
5348 goto error;
5349 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
5350 bmap->n_div == 0 &&
5351 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
5352 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
5353 return bset_from_bmap(bmap);
5354 bmap = isl_basic_map_cow(bmap);
5355 if (!bmap)
5356 goto error;
5357 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
5358 if (!bmap->dim)
5359 goto error;
5360 bmap->extra -= bmap->n_div;
5361 bmap->n_div = 0;
5362 bmap = isl_basic_map_finalize(bmap);
5363 return bset_from_bmap(bmap);
5364 error:
5365 isl_basic_map_free(bmap);
5366 return NULL;
5369 __isl_give isl_basic_set *isl_basic_set_underlying_set(
5370 __isl_take isl_basic_set *bset)
5372 return isl_basic_map_underlying_set(bset_to_bmap(bset));
5375 /* Replace each element in "list" by the result of applying
5376 * isl_basic_map_underlying_set to the element.
5378 __isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
5379 __isl_take isl_basic_map_list *list)
5381 int i, n;
5383 if (!list)
5384 return NULL;
5386 n = isl_basic_map_list_n_basic_map(list);
5387 for (i = 0; i < n; ++i) {
5388 isl_basic_map *bmap;
5389 isl_basic_set *bset;
5391 bmap = isl_basic_map_list_get_basic_map(list, i);
5392 bset = isl_basic_set_underlying_set(bmap);
5393 list = isl_basic_set_list_set_basic_set(list, i, bset);
5396 return list;
5399 __isl_give isl_basic_map *isl_basic_map_overlying_set(
5400 __isl_take isl_basic_set *bset, __isl_take isl_basic_map *like)
5402 struct isl_basic_map *bmap;
5403 struct isl_ctx *ctx;
5404 unsigned total;
5405 int i;
5407 if (!bset || !like)
5408 goto error;
5409 ctx = bset->ctx;
5410 isl_assert(ctx, bset->n_div == 0, goto error);
5411 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
5412 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
5413 goto error);
5414 if (like->n_div == 0) {
5415 isl_space *space = isl_basic_map_get_space(like);
5416 isl_basic_map_free(like);
5417 return isl_basic_map_reset_space(bset, space);
5419 bset = isl_basic_set_cow(bset);
5420 if (!bset)
5421 goto error;
5422 total = bset->dim->n_out + bset->extra;
5423 bmap = bset_to_bmap(bset);
5424 isl_space_free(bmap->dim);
5425 bmap->dim = isl_space_copy(like->dim);
5426 if (!bmap->dim)
5427 goto error;
5428 bmap->n_div = like->n_div;
5429 bmap->extra += like->n_div;
5430 if (bmap->extra) {
5431 unsigned ltotal;
5432 isl_int **div;
5433 ltotal = total - bmap->extra + like->extra;
5434 if (ltotal > total)
5435 ltotal = total;
5436 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
5437 bmap->extra * (1 + 1 + total));
5438 if (isl_blk_is_error(bmap->block2))
5439 goto error;
5440 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
5441 if (!div)
5442 goto error;
5443 bmap->div = div;
5444 for (i = 0; i < bmap->extra; ++i)
5445 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
5446 for (i = 0; i < like->n_div; ++i) {
5447 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
5448 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
5450 bmap = isl_basic_map_add_known_div_constraints(bmap);
5452 isl_basic_map_free(like);
5453 bmap = isl_basic_map_simplify(bmap);
5454 bmap = isl_basic_map_finalize(bmap);
5455 return bmap;
5456 error:
5457 isl_basic_map_free(like);
5458 isl_basic_set_free(bset);
5459 return NULL;
5462 struct isl_basic_set *isl_basic_set_from_underlying_set(
5463 struct isl_basic_set *bset, struct isl_basic_set *like)
5465 return bset_from_bmap(isl_basic_map_overlying_set(bset,
5466 bset_to_bmap(like)));
5469 __isl_give isl_set *isl_map_underlying_set(__isl_take isl_map *map)
5471 int i;
5473 map = isl_map_cow(map);
5474 if (!map)
5475 return NULL;
5476 map->dim = isl_space_cow(map->dim);
5477 if (!map->dim)
5478 goto error;
5480 for (i = 1; i < map->n; ++i)
5481 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
5482 goto error);
5483 for (i = 0; i < map->n; ++i) {
5484 map->p[i] = bset_to_bmap(
5485 isl_basic_map_underlying_set(map->p[i]));
5486 if (!map->p[i])
5487 goto error;
5489 if (map->n == 0)
5490 map->dim = isl_space_underlying(map->dim, 0);
5491 else {
5492 isl_space_free(map->dim);
5493 map->dim = isl_space_copy(map->p[0]->dim);
5495 if (!map->dim)
5496 goto error;
5497 return set_from_map(map);
5498 error:
5499 isl_map_free(map);
5500 return NULL;
5503 /* Replace the space of "bmap" by "space".
5505 * If the space of "bmap" is identical to "space" (including the identifiers
5506 * of the input and output dimensions), then simply return the original input.
5508 __isl_give isl_basic_map *isl_basic_map_reset_space(
5509 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
5511 isl_bool equal;
5512 isl_space *bmap_space;
5514 bmap_space = isl_basic_map_peek_space(bmap);
5515 equal = isl_space_is_equal(bmap_space, space);
5516 if (equal >= 0 && equal)
5517 equal = isl_space_has_equal_ids(bmap_space, space);
5518 if (equal < 0)
5519 goto error;
5520 if (equal) {
5521 isl_space_free(space);
5522 return bmap;
5524 bmap = isl_basic_map_cow(bmap);
5525 if (!bmap || !space)
5526 goto error;
5528 isl_space_free(bmap->dim);
5529 bmap->dim = space;
5531 bmap = isl_basic_map_finalize(bmap);
5533 return bmap;
5534 error:
5535 isl_basic_map_free(bmap);
5536 isl_space_free(space);
5537 return NULL;
5540 __isl_give isl_basic_set *isl_basic_set_reset_space(
5541 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
5543 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset),
5544 dim));
5547 /* Check that the total dimensions of "map" and "space" are the same.
5549 static isl_stat check_map_space_equal_total_dim(__isl_keep isl_map *map,
5550 __isl_keep isl_space *space)
5552 unsigned dim1, dim2;
5554 if (!map || !space)
5555 return isl_stat_error;
5556 dim1 = isl_map_dim(map, isl_dim_all);
5557 dim2 = isl_space_dim(space, isl_dim_all);
5558 if (dim1 == dim2)
5559 return isl_stat_ok;
5560 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5561 "total dimensions do not match", return isl_stat_error);
5564 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
5565 __isl_take isl_space *dim)
5567 int i;
5569 map = isl_map_cow(map);
5570 if (!map || !dim)
5571 goto error;
5573 for (i = 0; i < map->n; ++i) {
5574 map->p[i] = isl_basic_map_reset_space(map->p[i],
5575 isl_space_copy(dim));
5576 if (!map->p[i])
5577 goto error;
5579 isl_space_free(map->dim);
5580 map->dim = dim;
5582 return map;
5583 error:
5584 isl_map_free(map);
5585 isl_space_free(dim);
5586 return NULL;
5589 /* Replace the space of "map" by "space", without modifying
5590 * the dimension of "map".
5592 * If the space of "map" is identical to "space" (including the identifiers
5593 * of the input and output dimensions), then simply return the original input.
5595 __isl_give isl_map *isl_map_reset_equal_dim_space(__isl_take isl_map *map,
5596 __isl_take isl_space *space)
5598 isl_bool equal;
5599 isl_space *map_space;
5601 map_space = isl_map_peek_space(map);
5602 equal = isl_space_is_equal(map_space, space);
5603 if (equal >= 0 && equal)
5604 equal = isl_space_has_equal_ids(map_space, space);
5605 if (equal < 0)
5606 goto error;
5607 if (equal) {
5608 isl_space_free(space);
5609 return map;
5611 if (check_map_space_equal_total_dim(map, space) < 0)
5612 goto error;
5613 return isl_map_reset_space(map, space);
5614 error:
5615 isl_map_free(map);
5616 isl_space_free(space);
5617 return NULL;
5620 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
5621 __isl_take isl_space *dim)
5623 return set_from_map(isl_map_reset_space(set_to_map(set), dim));
5626 /* Compute the parameter domain of the given basic set.
5628 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
5630 isl_bool is_params;
5631 isl_space *space;
5632 unsigned n;
5634 is_params = isl_basic_set_is_params(bset);
5635 if (is_params < 0)
5636 return isl_basic_set_free(bset);
5637 if (is_params)
5638 return bset;
5640 n = isl_basic_set_dim(bset, isl_dim_set);
5641 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
5642 space = isl_basic_set_get_space(bset);
5643 space = isl_space_params(space);
5644 bset = isl_basic_set_reset_space(bset, space);
5645 return bset;
5648 /* Construct a zero-dimensional basic set with the given parameter domain.
5650 __isl_give isl_basic_set *isl_basic_set_from_params(
5651 __isl_take isl_basic_set *bset)
5653 isl_space *space;
5654 space = isl_basic_set_get_space(bset);
5655 space = isl_space_set_from_params(space);
5656 bset = isl_basic_set_reset_space(bset, space);
5657 return bset;
5660 /* Compute the parameter domain of the given set.
5662 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
5664 isl_space *space;
5665 unsigned n;
5667 if (isl_set_is_params(set))
5668 return set;
5670 n = isl_set_dim(set, isl_dim_set);
5671 set = isl_set_project_out(set, isl_dim_set, 0, n);
5672 space = isl_set_get_space(set);
5673 space = isl_space_params(space);
5674 set = isl_set_reset_space(set, space);
5675 return set;
5678 /* Construct a zero-dimensional set with the given parameter domain.
5680 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
5682 isl_space *space;
5683 space = isl_set_get_space(set);
5684 space = isl_space_set_from_params(space);
5685 set = isl_set_reset_space(set, space);
5686 return set;
5689 /* Compute the parameter domain of the given map.
5691 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
5693 isl_space *space;
5694 unsigned n;
5696 n = isl_map_dim(map, isl_dim_in);
5697 map = isl_map_project_out(map, isl_dim_in, 0, n);
5698 n = isl_map_dim(map, isl_dim_out);
5699 map = isl_map_project_out(map, isl_dim_out, 0, n);
5700 space = isl_map_get_space(map);
5701 space = isl_space_params(space);
5702 map = isl_map_reset_space(map, space);
5703 return map;
5706 struct isl_basic_set *isl_basic_map_domain(struct isl_basic_map *bmap)
5708 isl_space *space;
5709 unsigned n_out;
5711 if (!bmap)
5712 return NULL;
5713 space = isl_space_domain(isl_basic_map_get_space(bmap));
5715 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5716 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
5718 return isl_basic_map_reset_space(bmap, space);
5721 isl_bool isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
5723 if (!bmap)
5724 return isl_bool_error;
5725 return isl_space_may_be_set(bmap->dim);
5728 /* Is this basic map actually a set?
5729 * Users should never call this function. Outside of isl,
5730 * the type should indicate whether something is a set or a map.
5732 isl_bool isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
5734 if (!bmap)
5735 return isl_bool_error;
5736 return isl_space_is_set(bmap->dim);
5739 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
5741 isl_bool is_set;
5743 is_set = isl_basic_map_is_set(bmap);
5744 if (is_set < 0)
5745 goto error;
5746 if (is_set)
5747 return bmap;
5748 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
5749 error:
5750 isl_basic_map_free(bmap);
5751 return NULL;
5754 __isl_give isl_basic_map *isl_basic_map_domain_map(
5755 __isl_take isl_basic_map *bmap)
5757 int i;
5758 isl_space *dim;
5759 isl_basic_map *domain;
5760 int nparam, n_in, n_out;
5762 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5763 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5764 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5766 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
5767 domain = isl_basic_map_universe(dim);
5769 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5770 bmap = isl_basic_map_apply_range(bmap, domain);
5771 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
5773 for (i = 0; i < n_in; ++i)
5774 bmap = isl_basic_map_equate(bmap, isl_dim_in, i,
5775 isl_dim_out, i);
5777 bmap = isl_basic_map_gauss(bmap, NULL);
5778 return isl_basic_map_finalize(bmap);
5781 __isl_give isl_basic_map *isl_basic_map_range_map(
5782 __isl_take isl_basic_map *bmap)
5784 int i;
5785 isl_space *dim;
5786 isl_basic_map *range;
5787 int nparam, n_in, n_out;
5789 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5790 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5791 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5793 dim = isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap)));
5794 range = isl_basic_map_universe(dim);
5796 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5797 bmap = isl_basic_map_apply_range(bmap, range);
5798 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
5800 for (i = 0; i < n_out; ++i)
5801 bmap = isl_basic_map_equate(bmap, isl_dim_in, n_in + i,
5802 isl_dim_out, i);
5804 bmap = isl_basic_map_gauss(bmap, NULL);
5805 return isl_basic_map_finalize(bmap);
5808 int isl_map_may_be_set(__isl_keep isl_map *map)
5810 if (!map)
5811 return -1;
5812 return isl_space_may_be_set(map->dim);
5815 /* Is this map actually a set?
5816 * Users should never call this function. Outside of isl,
5817 * the type should indicate whether something is a set or a map.
5819 isl_bool isl_map_is_set(__isl_keep isl_map *map)
5821 if (!map)
5822 return isl_bool_error;
5823 return isl_space_is_set(map->dim);
5826 __isl_give isl_set *isl_map_range(__isl_take isl_map *map)
5828 int i;
5829 isl_bool is_set;
5830 struct isl_set *set;
5832 is_set = isl_map_is_set(map);
5833 if (is_set < 0)
5834 goto error;
5835 if (is_set)
5836 return set_from_map(map);
5838 map = isl_map_cow(map);
5839 if (!map)
5840 goto error;
5842 set = set_from_map(map);
5843 set->dim = isl_space_range(set->dim);
5844 if (!set->dim)
5845 goto error;
5846 for (i = 0; i < map->n; ++i) {
5847 set->p[i] = isl_basic_map_range(map->p[i]);
5848 if (!set->p[i])
5849 goto error;
5851 ISL_F_CLR(set, ISL_MAP_DISJOINT);
5852 ISL_F_CLR(set, ISL_SET_NORMALIZED);
5853 return set;
5854 error:
5855 isl_map_free(map);
5856 return NULL;
5859 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
5861 int i;
5863 map = isl_map_cow(map);
5864 if (!map)
5865 return NULL;
5867 map->dim = isl_space_domain_map(map->dim);
5868 if (!map->dim)
5869 goto error;
5870 for (i = 0; i < map->n; ++i) {
5871 map->p[i] = isl_basic_map_domain_map(map->p[i]);
5872 if (!map->p[i])
5873 goto error;
5875 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5876 map = isl_map_unmark_normalized(map);
5877 return map;
5878 error:
5879 isl_map_free(map);
5880 return NULL;
5883 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
5885 int i;
5886 isl_space *range_dim;
5888 map = isl_map_cow(map);
5889 if (!map)
5890 return NULL;
5892 range_dim = isl_space_range(isl_map_get_space(map));
5893 range_dim = isl_space_from_range(range_dim);
5894 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
5895 map->dim = isl_space_join(map->dim, range_dim);
5896 if (!map->dim)
5897 goto error;
5898 for (i = 0; i < map->n; ++i) {
5899 map->p[i] = isl_basic_map_range_map(map->p[i]);
5900 if (!map->p[i])
5901 goto error;
5903 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5904 map = isl_map_unmark_normalized(map);
5905 return map;
5906 error:
5907 isl_map_free(map);
5908 return NULL;
5911 /* Given a wrapped map of the form A[B -> C],
5912 * return the map A[B -> C] -> B.
5914 __isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
5916 isl_id *id;
5917 isl_map *map;
5919 if (!set)
5920 return NULL;
5921 if (!isl_set_has_tuple_id(set))
5922 return isl_map_domain_map(isl_set_unwrap(set));
5924 id = isl_set_get_tuple_id(set);
5925 map = isl_map_domain_map(isl_set_unwrap(set));
5926 map = isl_map_set_tuple_id(map, isl_dim_in, id);
5928 return map;
5931 __isl_give isl_basic_map *isl_basic_map_from_domain(
5932 __isl_take isl_basic_set *bset)
5934 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
5937 __isl_give isl_basic_map *isl_basic_map_from_range(
5938 __isl_take isl_basic_set *bset)
5940 isl_space *space;
5941 space = isl_basic_set_get_space(bset);
5942 space = isl_space_from_range(space);
5943 bset = isl_basic_set_reset_space(bset, space);
5944 return bset_to_bmap(bset);
5947 /* Create a relation with the given set as range.
5948 * The domain of the created relation is a zero-dimensional
5949 * flat anonymous space.
5951 __isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
5953 isl_space *space;
5954 space = isl_set_get_space(set);
5955 space = isl_space_from_range(space);
5956 set = isl_set_reset_space(set, space);
5957 return set_to_map(set);
5960 /* Create a relation with the given set as domain.
5961 * The range of the created relation is a zero-dimensional
5962 * flat anonymous space.
5964 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
5966 return isl_map_reverse(isl_map_from_range(set));
5969 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
5970 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
5972 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
5975 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
5976 __isl_take isl_set *range)
5978 return isl_map_apply_range(isl_map_reverse(domain), range);
5981 /* Return a newly allocated isl_map with given space and flags and
5982 * room for "n" basic maps.
5983 * Make sure that all cached information is cleared.
5985 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *space, int n,
5986 unsigned flags)
5988 struct isl_map *map;
5990 if (!space)
5991 return NULL;
5992 if (n < 0)
5993 isl_die(space->ctx, isl_error_internal,
5994 "negative number of basic maps", goto error);
5995 map = isl_calloc(space->ctx, struct isl_map,
5996 sizeof(struct isl_map) +
5997 (n - 1) * sizeof(struct isl_basic_map *));
5998 if (!map)
5999 goto error;
6001 map->ctx = space->ctx;
6002 isl_ctx_ref(map->ctx);
6003 map->ref = 1;
6004 map->size = n;
6005 map->n = 0;
6006 map->dim = space;
6007 map->flags = flags;
6008 return map;
6009 error:
6010 isl_space_free(space);
6011 return NULL;
6014 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *space)
6016 struct isl_basic_map *bmap;
6017 bmap = isl_basic_map_alloc_space(space, 0, 1, 0);
6018 bmap = isl_basic_map_set_to_empty(bmap);
6019 return bmap;
6022 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *space)
6024 struct isl_basic_set *bset;
6025 bset = isl_basic_set_alloc_space(space, 0, 1, 0);
6026 bset = isl_basic_set_set_to_empty(bset);
6027 return bset;
6030 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *space)
6032 struct isl_basic_map *bmap;
6033 bmap = isl_basic_map_alloc_space(space, 0, 0, 0);
6034 bmap = isl_basic_map_finalize(bmap);
6035 return bmap;
6038 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *space)
6040 struct isl_basic_set *bset;
6041 bset = isl_basic_set_alloc_space(space, 0, 0, 0);
6042 bset = isl_basic_set_finalize(bset);
6043 return bset;
6046 __isl_give isl_basic_map *isl_basic_map_nat_universe(__isl_take isl_space *dim)
6048 int i;
6049 unsigned total = isl_space_dim(dim, isl_dim_all);
6050 isl_basic_map *bmap;
6052 bmap= isl_basic_map_alloc_space(dim, 0, 0, total);
6053 for (i = 0; i < total; ++i) {
6054 int k = isl_basic_map_alloc_inequality(bmap);
6055 if (k < 0)
6056 goto error;
6057 isl_seq_clr(bmap->ineq[k], 1 + total);
6058 isl_int_set_si(bmap->ineq[k][1 + i], 1);
6060 return bmap;
6061 error:
6062 isl_basic_map_free(bmap);
6063 return NULL;
6066 __isl_give isl_basic_set *isl_basic_set_nat_universe(__isl_take isl_space *dim)
6068 return isl_basic_map_nat_universe(dim);
6071 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
6073 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
6076 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
6078 return isl_map_nat_universe(dim);
6081 __isl_give isl_map *isl_map_empty(__isl_take isl_space *space)
6083 return isl_map_alloc_space(space, 0, ISL_MAP_DISJOINT);
6086 __isl_give isl_set *isl_set_empty(__isl_take isl_space *space)
6088 return isl_set_alloc_space(space, 0, ISL_MAP_DISJOINT);
6091 __isl_give isl_map *isl_map_universe(__isl_take isl_space *space)
6093 struct isl_map *map;
6094 if (!space)
6095 return NULL;
6096 map = isl_map_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6097 map = isl_map_add_basic_map(map, isl_basic_map_universe(space));
6098 return map;
6101 __isl_give isl_set *isl_set_universe(__isl_take isl_space *space)
6103 struct isl_set *set;
6104 if (!space)
6105 return NULL;
6106 set = isl_set_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6107 set = isl_set_add_basic_set(set, isl_basic_set_universe(space));
6108 return set;
6111 struct isl_map *isl_map_dup(struct isl_map *map)
6113 int i;
6114 struct isl_map *dup;
6116 if (!map)
6117 return NULL;
6118 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
6119 for (i = 0; i < map->n; ++i)
6120 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
6121 return dup;
6124 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
6125 __isl_take isl_basic_map *bmap)
6127 if (!bmap || !map)
6128 goto error;
6129 if (isl_basic_map_plain_is_empty(bmap)) {
6130 isl_basic_map_free(bmap);
6131 return map;
6133 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
6134 isl_assert(map->ctx, map->n < map->size, goto error);
6135 map->p[map->n] = bmap;
6136 map->n++;
6137 map = isl_map_unmark_normalized(map);
6138 return map;
6139 error:
6140 if (map)
6141 isl_map_free(map);
6142 if (bmap)
6143 isl_basic_map_free(bmap);
6144 return NULL;
6147 __isl_null isl_map *isl_map_free(__isl_take isl_map *map)
6149 int i;
6151 if (!map)
6152 return NULL;
6154 if (--map->ref > 0)
6155 return NULL;
6157 clear_caches(map);
6158 isl_ctx_deref(map->ctx);
6159 for (i = 0; i < map->n; ++i)
6160 isl_basic_map_free(map->p[i]);
6161 isl_space_free(map->dim);
6162 free(map);
6164 return NULL;
6167 static struct isl_basic_map *isl_basic_map_fix_pos_si(
6168 struct isl_basic_map *bmap, unsigned pos, int value)
6170 int j;
6172 bmap = isl_basic_map_cow(bmap);
6173 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6174 j = isl_basic_map_alloc_equality(bmap);
6175 if (j < 0)
6176 goto error;
6177 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6178 isl_int_set_si(bmap->eq[j][pos], -1);
6179 isl_int_set_si(bmap->eq[j][0], value);
6180 bmap = isl_basic_map_simplify(bmap);
6181 return isl_basic_map_finalize(bmap);
6182 error:
6183 isl_basic_map_free(bmap);
6184 return NULL;
6187 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
6188 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
6190 int j;
6192 bmap = isl_basic_map_cow(bmap);
6193 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6194 j = isl_basic_map_alloc_equality(bmap);
6195 if (j < 0)
6196 goto error;
6197 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6198 isl_int_set_si(bmap->eq[j][pos], -1);
6199 isl_int_set(bmap->eq[j][0], value);
6200 bmap = isl_basic_map_simplify(bmap);
6201 return isl_basic_map_finalize(bmap);
6202 error:
6203 isl_basic_map_free(bmap);
6204 return NULL;
6207 __isl_give isl_basic_map *isl_basic_map_fix_si(__isl_take isl_basic_map *bmap,
6208 enum isl_dim_type type, unsigned pos, int value)
6210 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6211 return isl_basic_map_free(bmap);
6212 return isl_basic_map_fix_pos_si(bmap,
6213 isl_basic_map_offset(bmap, type) + pos, value);
6216 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
6217 enum isl_dim_type type, unsigned pos, isl_int value)
6219 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6220 return isl_basic_map_free(bmap);
6221 return isl_basic_map_fix_pos(bmap,
6222 isl_basic_map_offset(bmap, type) + pos, value);
6225 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
6226 * to be equal to "v".
6228 __isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
6229 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6231 if (!bmap || !v)
6232 goto error;
6233 if (!isl_val_is_int(v))
6234 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
6235 "expecting integer value", goto error);
6236 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6237 goto error;
6238 pos += isl_basic_map_offset(bmap, type);
6239 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
6240 isl_val_free(v);
6241 return bmap;
6242 error:
6243 isl_basic_map_free(bmap);
6244 isl_val_free(v);
6245 return NULL;
6248 /* Fix the value of the variable at position "pos" of type "type" of "bset"
6249 * to be equal to "v".
6251 __isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
6252 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6254 return isl_basic_map_fix_val(bset, type, pos, v);
6257 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
6258 enum isl_dim_type type, unsigned pos, int value)
6260 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6261 type, pos, value));
6264 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
6265 enum isl_dim_type type, unsigned pos, isl_int value)
6267 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset),
6268 type, pos, value));
6271 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
6272 unsigned input, int value)
6274 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
6277 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
6278 unsigned dim, int value)
6280 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6281 isl_dim_set, dim, value));
6284 /* Remove the basic map at position "i" from "map" if this basic map
6285 * is (obviously) empty.
6287 static __isl_give isl_map *remove_if_empty(__isl_take isl_map *map, int i)
6289 isl_bool empty;
6291 if (!map)
6292 return NULL;
6294 empty = isl_basic_map_plain_is_empty(map->p[i]);
6295 if (empty < 0)
6296 return isl_map_free(map);
6297 if (!empty)
6298 return map;
6300 isl_basic_map_free(map->p[i]);
6301 map->n--;
6302 if (i != map->n) {
6303 map->p[i] = map->p[map->n];
6304 map = isl_map_unmark_normalized(map);
6308 return map;
6311 /* Perform "fn" on each basic map of "map", where we may not be holding
6312 * the only reference to "map".
6313 * In particular, "fn" should be a semantics preserving operation
6314 * that we want to apply to all copies of "map". We therefore need
6315 * to be careful not to modify "map" in a way that breaks "map"
6316 * in case anything goes wrong.
6318 __isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
6319 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
6321 struct isl_basic_map *bmap;
6322 int i;
6324 if (!map)
6325 return NULL;
6327 for (i = map->n - 1; i >= 0; --i) {
6328 bmap = isl_basic_map_copy(map->p[i]);
6329 bmap = fn(bmap);
6330 if (!bmap)
6331 goto error;
6332 isl_basic_map_free(map->p[i]);
6333 map->p[i] = bmap;
6334 map = remove_if_empty(map, i);
6335 if (!map)
6336 return NULL;
6339 return map;
6340 error:
6341 isl_map_free(map);
6342 return NULL;
6345 __isl_give isl_map *isl_map_fix_si(__isl_take isl_map *map,
6346 enum isl_dim_type type, unsigned pos, int value)
6348 int i;
6350 map = isl_map_cow(map);
6351 if (!map)
6352 return NULL;
6354 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6355 for (i = map->n - 1; i >= 0; --i) {
6356 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
6357 map = remove_if_empty(map, i);
6358 if (!map)
6359 return NULL;
6361 map = isl_map_unmark_normalized(map);
6362 return map;
6363 error:
6364 isl_map_free(map);
6365 return NULL;
6368 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
6369 enum isl_dim_type type, unsigned pos, int value)
6371 return set_from_map(isl_map_fix_si(set_to_map(set), type, pos, value));
6374 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
6375 enum isl_dim_type type, unsigned pos, isl_int value)
6377 int i;
6379 map = isl_map_cow(map);
6380 if (!map)
6381 return NULL;
6383 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6384 for (i = 0; i < map->n; ++i) {
6385 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
6386 if (!map->p[i])
6387 goto error;
6389 map = isl_map_unmark_normalized(map);
6390 return map;
6391 error:
6392 isl_map_free(map);
6393 return NULL;
6396 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
6397 enum isl_dim_type type, unsigned pos, isl_int value)
6399 return set_from_map(isl_map_fix(set_to_map(set), type, pos, value));
6402 /* Fix the value of the variable at position "pos" of type "type" of "map"
6403 * to be equal to "v".
6405 __isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
6406 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6408 int i;
6410 map = isl_map_cow(map);
6411 if (!map || !v)
6412 goto error;
6414 if (!isl_val_is_int(v))
6415 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6416 "expecting integer value", goto error);
6417 if (pos >= isl_map_dim(map, type))
6418 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6419 "index out of bounds", goto error);
6420 for (i = map->n - 1; i >= 0; --i) {
6421 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
6422 isl_val_copy(v));
6423 map = remove_if_empty(map, i);
6424 if (!map)
6425 goto error;
6427 map = isl_map_unmark_normalized(map);
6428 isl_val_free(v);
6429 return map;
6430 error:
6431 isl_map_free(map);
6432 isl_val_free(v);
6433 return NULL;
6436 /* Fix the value of the variable at position "pos" of type "type" of "set"
6437 * to be equal to "v".
6439 __isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
6440 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6442 return isl_map_fix_val(set, type, pos, v);
6445 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
6446 unsigned input, int value)
6448 return isl_map_fix_si(map, isl_dim_in, input, value);
6451 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
6453 return set_from_map(isl_map_fix_si(set_to_map(set),
6454 isl_dim_set, dim, value));
6457 static __isl_give isl_basic_map *basic_map_bound_si(
6458 __isl_take isl_basic_map *bmap,
6459 enum isl_dim_type type, unsigned pos, int value, int upper)
6461 int j;
6463 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6464 return isl_basic_map_free(bmap);
6465 pos += isl_basic_map_offset(bmap, type);
6466 bmap = isl_basic_map_cow(bmap);
6467 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6468 j = isl_basic_map_alloc_inequality(bmap);
6469 if (j < 0)
6470 goto error;
6471 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6472 if (upper) {
6473 isl_int_set_si(bmap->ineq[j][pos], -1);
6474 isl_int_set_si(bmap->ineq[j][0], value);
6475 } else {
6476 isl_int_set_si(bmap->ineq[j][pos], 1);
6477 isl_int_set_si(bmap->ineq[j][0], -value);
6479 bmap = isl_basic_map_simplify(bmap);
6480 return isl_basic_map_finalize(bmap);
6481 error:
6482 isl_basic_map_free(bmap);
6483 return NULL;
6486 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
6487 __isl_take isl_basic_map *bmap,
6488 enum isl_dim_type type, unsigned pos, int value)
6490 return basic_map_bound_si(bmap, type, pos, value, 0);
6493 /* Constrain the values of the given dimension to be no greater than "value".
6495 __isl_give isl_basic_map *isl_basic_map_upper_bound_si(
6496 __isl_take isl_basic_map *bmap,
6497 enum isl_dim_type type, unsigned pos, int value)
6499 return basic_map_bound_si(bmap, type, pos, value, 1);
6502 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
6503 enum isl_dim_type type, unsigned pos, int value, int upper)
6505 int i;
6507 map = isl_map_cow(map);
6508 if (!map)
6509 return NULL;
6511 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6512 for (i = 0; i < map->n; ++i) {
6513 map->p[i] = basic_map_bound_si(map->p[i],
6514 type, pos, value, upper);
6515 if (!map->p[i])
6516 goto error;
6518 map = isl_map_unmark_normalized(map);
6519 return map;
6520 error:
6521 isl_map_free(map);
6522 return NULL;
6525 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
6526 enum isl_dim_type type, unsigned pos, int value)
6528 return map_bound_si(map, type, pos, value, 0);
6531 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
6532 enum isl_dim_type type, unsigned pos, int value)
6534 return map_bound_si(map, type, pos, value, 1);
6537 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
6538 enum isl_dim_type type, unsigned pos, int value)
6540 return set_from_map(isl_map_lower_bound_si(set_to_map(set),
6541 type, pos, value));
6544 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
6545 enum isl_dim_type type, unsigned pos, int value)
6547 return isl_map_upper_bound_si(set, type, pos, value);
6550 /* Bound the given variable of "bmap" from below (or above is "upper"
6551 * is set) to "value".
6553 static __isl_give isl_basic_map *basic_map_bound(
6554 __isl_take isl_basic_map *bmap,
6555 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6557 int j;
6559 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6560 return isl_basic_map_free(bmap);
6561 pos += isl_basic_map_offset(bmap, type);
6562 bmap = isl_basic_map_cow(bmap);
6563 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6564 j = isl_basic_map_alloc_inequality(bmap);
6565 if (j < 0)
6566 goto error;
6567 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6568 if (upper) {
6569 isl_int_set_si(bmap->ineq[j][pos], -1);
6570 isl_int_set(bmap->ineq[j][0], value);
6571 } else {
6572 isl_int_set_si(bmap->ineq[j][pos], 1);
6573 isl_int_neg(bmap->ineq[j][0], value);
6575 bmap = isl_basic_map_simplify(bmap);
6576 return isl_basic_map_finalize(bmap);
6577 error:
6578 isl_basic_map_free(bmap);
6579 return NULL;
6582 /* Bound the given variable of "map" from below (or above is "upper"
6583 * is set) to "value".
6585 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
6586 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6588 int i;
6590 map = isl_map_cow(map);
6591 if (!map)
6592 return NULL;
6594 if (pos >= isl_map_dim(map, type))
6595 isl_die(map->ctx, isl_error_invalid,
6596 "index out of bounds", goto error);
6597 for (i = map->n - 1; i >= 0; --i) {
6598 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
6599 map = remove_if_empty(map, i);
6600 if (!map)
6601 return NULL;
6603 map = isl_map_unmark_normalized(map);
6604 return map;
6605 error:
6606 isl_map_free(map);
6607 return NULL;
6610 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
6611 enum isl_dim_type type, unsigned pos, isl_int value)
6613 return map_bound(map, type, pos, value, 0);
6616 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
6617 enum isl_dim_type type, unsigned pos, isl_int value)
6619 return map_bound(map, type, pos, value, 1);
6622 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
6623 enum isl_dim_type type, unsigned pos, isl_int value)
6625 return isl_map_lower_bound(set, type, pos, value);
6628 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
6629 enum isl_dim_type type, unsigned pos, isl_int value)
6631 return isl_map_upper_bound(set, type, pos, value);
6634 /* Force the values of the variable at position "pos" of type "type" of "set"
6635 * to be no smaller than "value".
6637 __isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
6638 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6640 if (!value)
6641 goto error;
6642 if (!isl_val_is_int(value))
6643 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6644 "expecting integer value", goto error);
6645 set = isl_set_lower_bound(set, type, pos, value->n);
6646 isl_val_free(value);
6647 return set;
6648 error:
6649 isl_val_free(value);
6650 isl_set_free(set);
6651 return NULL;
6654 /* Force the values of the variable at position "pos" of type "type" of "set"
6655 * to be no greater than "value".
6657 __isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
6658 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6660 if (!value)
6661 goto error;
6662 if (!isl_val_is_int(value))
6663 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6664 "expecting integer value", goto error);
6665 set = isl_set_upper_bound(set, type, pos, value->n);
6666 isl_val_free(value);
6667 return set;
6668 error:
6669 isl_val_free(value);
6670 isl_set_free(set);
6671 return NULL;
6674 /* Bound the given variable of "bset" from below (or above is "upper"
6675 * is set) to "value".
6677 static __isl_give isl_basic_set *isl_basic_set_bound(
6678 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6679 isl_int value, int upper)
6681 return bset_from_bmap(basic_map_bound(bset_to_bmap(bset),
6682 type, pos, value, upper));
6685 /* Bound the given variable of "bset" from below (or above is "upper"
6686 * is set) to "value".
6688 static __isl_give isl_basic_set *isl_basic_set_bound_val(
6689 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6690 __isl_take isl_val *value, int upper)
6692 if (!value)
6693 goto error;
6694 if (!isl_val_is_int(value))
6695 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
6696 "expecting integer value", goto error);
6697 bset = isl_basic_set_bound(bset, type, pos, value->n, upper);
6698 isl_val_free(value);
6699 return bset;
6700 error:
6701 isl_val_free(value);
6702 isl_basic_set_free(bset);
6703 return NULL;
6706 /* Bound the given variable of "bset" from below to "value".
6708 __isl_give isl_basic_set *isl_basic_set_lower_bound_val(
6709 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6710 __isl_take isl_val *value)
6712 return isl_basic_set_bound_val(bset, type, pos, value, 0);
6715 /* Bound the given variable of "bset" from above to "value".
6717 __isl_give isl_basic_set *isl_basic_set_upper_bound_val(
6718 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6719 __isl_take isl_val *value)
6721 return isl_basic_set_bound_val(bset, type, pos, value, 1);
6724 __isl_give isl_map *isl_map_reverse(__isl_take isl_map *map)
6726 int i;
6728 map = isl_map_cow(map);
6729 if (!map)
6730 return NULL;
6732 map->dim = isl_space_reverse(map->dim);
6733 if (!map->dim)
6734 goto error;
6735 for (i = 0; i < map->n; ++i) {
6736 map->p[i] = isl_basic_map_reverse(map->p[i]);
6737 if (!map->p[i])
6738 goto error;
6740 map = isl_map_unmark_normalized(map);
6741 return map;
6742 error:
6743 isl_map_free(map);
6744 return NULL;
6747 #undef TYPE
6748 #define TYPE isl_pw_multi_aff
6749 #undef SUFFIX
6750 #define SUFFIX _pw_multi_aff
6751 #undef EMPTY
6752 #define EMPTY isl_pw_multi_aff_empty
6753 #undef ADD
6754 #define ADD isl_pw_multi_aff_union_add
6755 #include "isl_map_lexopt_templ.c"
6757 /* Given a map "map", compute the lexicographically minimal
6758 * (or maximal) image element for each domain element in dom,
6759 * in the form of an isl_pw_multi_aff.
6760 * If "empty" is not NULL, then set *empty to those elements in dom that
6761 * do not have an image element.
6762 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6763 * should be computed over the domain of "map". "empty" is also NULL
6764 * in this case.
6766 * We first compute the lexicographically minimal or maximal element
6767 * in the first basic map. This results in a partial solution "res"
6768 * and a subset "todo" of dom that still need to be handled.
6769 * We then consider each of the remaining maps in "map" and successively
6770 * update both "res" and "todo".
6771 * If "empty" is NULL, then the todo sets are not needed and therefore
6772 * also not computed.
6774 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
6775 __isl_take isl_map *map, __isl_take isl_set *dom,
6776 __isl_give isl_set **empty, unsigned flags)
6778 int i;
6779 int full;
6780 isl_pw_multi_aff *res;
6781 isl_set *todo;
6783 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6784 if (!map || (!full && !dom))
6785 goto error;
6787 if (isl_map_plain_is_empty(map)) {
6788 if (empty)
6789 *empty = dom;
6790 else
6791 isl_set_free(dom);
6792 return isl_pw_multi_aff_from_map(map);
6795 res = basic_map_partial_lexopt_pw_multi_aff(
6796 isl_basic_map_copy(map->p[0]),
6797 isl_set_copy(dom), empty, flags);
6799 if (empty)
6800 todo = *empty;
6801 for (i = 1; i < map->n; ++i) {
6802 isl_pw_multi_aff *res_i;
6804 res_i = basic_map_partial_lexopt_pw_multi_aff(
6805 isl_basic_map_copy(map->p[i]),
6806 isl_set_copy(dom), empty, flags);
6808 if (ISL_FL_ISSET(flags, ISL_OPT_MAX))
6809 res = isl_pw_multi_aff_union_lexmax(res, res_i);
6810 else
6811 res = isl_pw_multi_aff_union_lexmin(res, res_i);
6813 if (empty)
6814 todo = isl_set_intersect(todo, *empty);
6817 isl_set_free(dom);
6818 isl_map_free(map);
6820 if (empty)
6821 *empty = todo;
6823 return res;
6824 error:
6825 if (empty)
6826 *empty = NULL;
6827 isl_set_free(dom);
6828 isl_map_free(map);
6829 return NULL;
6832 #undef TYPE
6833 #define TYPE isl_map
6834 #undef SUFFIX
6835 #define SUFFIX
6836 #undef EMPTY
6837 #define EMPTY isl_map_empty
6838 #undef ADD
6839 #define ADD isl_map_union_disjoint
6840 #include "isl_map_lexopt_templ.c"
6842 /* Given a map "map", compute the lexicographically minimal
6843 * (or maximal) image element for each domain element in "dom",
6844 * in the form of an isl_map.
6845 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6846 * do not have an image element.
6847 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6848 * should be computed over the domain of "map". "empty" is also NULL
6849 * in this case.
6851 * If the input consists of more than one disjunct, then first
6852 * compute the desired result in the form of an isl_pw_multi_aff and
6853 * then convert that into an isl_map.
6855 * This function used to have an explicit implementation in terms
6856 * of isl_maps, but it would continually intersect the domains of
6857 * partial results with the complement of the domain of the next
6858 * partial solution, potentially leading to an explosion in the number
6859 * of disjuncts if there are several disjuncts in the input.
6860 * An even earlier implementation of this function would look for
6861 * better results in the domain of the partial result and for extra
6862 * results in the complement of this domain, which would lead to
6863 * even more splintering.
6865 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
6866 __isl_take isl_map *map, __isl_take isl_set *dom,
6867 __isl_give isl_set **empty, unsigned flags)
6869 int full;
6870 struct isl_map *res;
6871 isl_pw_multi_aff *pma;
6873 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6874 if (!map || (!full && !dom))
6875 goto error;
6877 if (isl_map_plain_is_empty(map)) {
6878 if (empty)
6879 *empty = dom;
6880 else
6881 isl_set_free(dom);
6882 return map;
6885 if (map->n == 1) {
6886 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
6887 dom, empty, flags);
6888 isl_map_free(map);
6889 return res;
6892 pma = isl_map_partial_lexopt_aligned_pw_multi_aff(map, dom, empty,
6893 flags);
6894 return isl_map_from_pw_multi_aff(pma);
6895 error:
6896 if (empty)
6897 *empty = NULL;
6898 isl_set_free(dom);
6899 isl_map_free(map);
6900 return NULL;
6903 __isl_give isl_map *isl_map_partial_lexmax(
6904 __isl_take isl_map *map, __isl_take isl_set *dom,
6905 __isl_give isl_set **empty)
6907 return isl_map_partial_lexopt(map, dom, empty, ISL_OPT_MAX);
6910 __isl_give isl_map *isl_map_partial_lexmin(
6911 __isl_take isl_map *map, __isl_take isl_set *dom,
6912 __isl_give isl_set **empty)
6914 return isl_map_partial_lexopt(map, dom, empty, 0);
6917 __isl_give isl_set *isl_set_partial_lexmin(
6918 __isl_take isl_set *set, __isl_take isl_set *dom,
6919 __isl_give isl_set **empty)
6921 return set_from_map(isl_map_partial_lexmin(set_to_map(set),
6922 dom, empty));
6925 __isl_give isl_set *isl_set_partial_lexmax(
6926 __isl_take isl_set *set, __isl_take isl_set *dom,
6927 __isl_give isl_set **empty)
6929 return set_from_map(isl_map_partial_lexmax(set_to_map(set),
6930 dom, empty));
6933 /* Compute the lexicographic minimum (or maximum if "flags" includes
6934 * ISL_OPT_MAX) of "bset" over its parametric domain.
6936 __isl_give isl_set *isl_basic_set_lexopt(__isl_take isl_basic_set *bset,
6937 unsigned flags)
6939 return isl_basic_map_lexopt(bset, flags);
6942 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
6944 return isl_basic_map_lexopt(bmap, ISL_OPT_MAX);
6947 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
6949 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset)));
6952 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
6954 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset)));
6957 /* Compute the lexicographic minimum of "bset" over its parametric domain
6958 * for the purpose of quantifier elimination.
6959 * That is, find an explicit representation for all the existentially
6960 * quantified variables in "bset" by computing their lexicographic
6961 * minimum.
6963 static __isl_give isl_set *isl_basic_set_lexmin_compute_divs(
6964 __isl_take isl_basic_set *bset)
6966 return isl_basic_set_lexopt(bset, ISL_OPT_QE);
6969 /* Given a basic map with one output dimension, compute the minimum or
6970 * maximum of that dimension as an isl_pw_aff.
6972 * Compute the optimum as a lexicographic optimum over the single
6973 * output dimension and extract the single isl_pw_aff from the result.
6975 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
6976 int max)
6978 isl_pw_multi_aff *pma;
6979 isl_pw_aff *pwaff;
6981 bmap = isl_basic_map_copy(bmap);
6982 pma = isl_basic_map_lexopt_pw_multi_aff(bmap, max ? ISL_OPT_MAX : 0);
6983 pwaff = isl_pw_multi_aff_get_pw_aff(pma, 0);
6984 isl_pw_multi_aff_free(pma);
6986 return pwaff;
6989 /* Compute the minimum or maximum of the given output dimension
6990 * as a function of the parameters and the input dimensions,
6991 * but independently of the other output dimensions.
6993 * We first project out the other output dimension and then compute
6994 * the "lexicographic" maximum in each basic map, combining the results
6995 * using isl_pw_aff_union_max.
6997 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
6998 int max)
7000 int i;
7001 isl_pw_aff *pwaff;
7002 unsigned n_out;
7004 n_out = isl_map_dim(map, isl_dim_out);
7005 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
7006 map = isl_map_project_out(map, isl_dim_out, 0, pos);
7007 if (!map)
7008 return NULL;
7010 if (map->n == 0) {
7011 isl_space *dim = isl_map_get_space(map);
7012 isl_map_free(map);
7013 return isl_pw_aff_empty(dim);
7016 pwaff = basic_map_dim_opt(map->p[0], max);
7017 for (i = 1; i < map->n; ++i) {
7018 isl_pw_aff *pwaff_i;
7020 pwaff_i = basic_map_dim_opt(map->p[i], max);
7021 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
7024 isl_map_free(map);
7026 return pwaff;
7029 /* Compute the minimum of the given output dimension as a function of the
7030 * parameters and input dimensions, but independently of
7031 * the other output dimensions.
7033 __isl_give isl_pw_aff *isl_map_dim_min(__isl_take isl_map *map, int pos)
7035 return map_dim_opt(map, pos, 0);
7038 /* Compute the maximum of the given output dimension as a function of the
7039 * parameters and input dimensions, but independently of
7040 * the other output dimensions.
7042 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
7044 return map_dim_opt(map, pos, 1);
7047 /* Compute the minimum or maximum of the given set dimension
7048 * as a function of the parameters,
7049 * but independently of the other set dimensions.
7051 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
7052 int max)
7054 return map_dim_opt(set, pos, max);
7057 /* Compute the maximum of the given set dimension as a function of the
7058 * parameters, but independently of the other set dimensions.
7060 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
7062 return set_dim_opt(set, pos, 1);
7065 /* Compute the minimum of the given set dimension as a function of the
7066 * parameters, but independently of the other set dimensions.
7068 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
7070 return set_dim_opt(set, pos, 0);
7073 /* Apply a preimage specified by "mat" on the parameters of "bset".
7074 * bset is assumed to have only parameters and divs.
7076 static __isl_give isl_basic_set *basic_set_parameter_preimage(
7077 __isl_take isl_basic_set *bset, __isl_take isl_mat *mat)
7079 unsigned nparam;
7081 if (!bset || !mat)
7082 goto error;
7084 bset->dim = isl_space_cow(bset->dim);
7085 if (!bset->dim)
7086 goto error;
7088 nparam = isl_basic_set_dim(bset, isl_dim_param);
7090 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
7092 bset->dim->nparam = 0;
7093 bset->dim->n_out = nparam;
7094 bset = isl_basic_set_preimage(bset, mat);
7095 if (bset) {
7096 bset->dim->nparam = bset->dim->n_out;
7097 bset->dim->n_out = 0;
7099 return bset;
7100 error:
7101 isl_mat_free(mat);
7102 isl_basic_set_free(bset);
7103 return NULL;
7106 /* Apply a preimage specified by "mat" on the parameters of "set".
7107 * set is assumed to have only parameters and divs.
7109 static __isl_give isl_set *set_parameter_preimage(__isl_take isl_set *set,
7110 __isl_take isl_mat *mat)
7112 isl_space *space;
7113 unsigned nparam;
7115 if (!set || !mat)
7116 goto error;
7118 nparam = isl_set_dim(set, isl_dim_param);
7120 if (mat->n_row != 1 + nparam)
7121 isl_die(isl_set_get_ctx(set), isl_error_internal,
7122 "unexpected number of rows", goto error);
7124 space = isl_set_get_space(set);
7125 space = isl_space_move_dims(space, isl_dim_set, 0,
7126 isl_dim_param, 0, nparam);
7127 set = isl_set_reset_space(set, space);
7128 set = isl_set_preimage(set, mat);
7129 nparam = isl_set_dim(set, isl_dim_out);
7130 space = isl_set_get_space(set);
7131 space = isl_space_move_dims(space, isl_dim_param, 0,
7132 isl_dim_out, 0, nparam);
7133 set = isl_set_reset_space(set, space);
7134 return set;
7135 error:
7136 isl_mat_free(mat);
7137 isl_set_free(set);
7138 return NULL;
7141 /* Intersect the basic set "bset" with the affine space specified by the
7142 * equalities in "eq".
7144 static __isl_give isl_basic_set *basic_set_append_equalities(
7145 __isl_take isl_basic_set *bset, __isl_take isl_mat *eq)
7147 int i, k;
7148 unsigned len;
7150 if (!bset || !eq)
7151 goto error;
7153 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
7154 eq->n_row, 0);
7155 if (!bset)
7156 goto error;
7158 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
7159 for (i = 0; i < eq->n_row; ++i) {
7160 k = isl_basic_set_alloc_equality(bset);
7161 if (k < 0)
7162 goto error;
7163 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
7164 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
7166 isl_mat_free(eq);
7168 bset = isl_basic_set_gauss(bset, NULL);
7169 bset = isl_basic_set_finalize(bset);
7171 return bset;
7172 error:
7173 isl_mat_free(eq);
7174 isl_basic_set_free(bset);
7175 return NULL;
7178 /* Intersect the set "set" with the affine space specified by the
7179 * equalities in "eq".
7181 static struct isl_set *set_append_equalities(struct isl_set *set,
7182 struct isl_mat *eq)
7184 int i;
7186 if (!set || !eq)
7187 goto error;
7189 for (i = 0; i < set->n; ++i) {
7190 set->p[i] = basic_set_append_equalities(set->p[i],
7191 isl_mat_copy(eq));
7192 if (!set->p[i])
7193 goto error;
7195 isl_mat_free(eq);
7196 return set;
7197 error:
7198 isl_mat_free(eq);
7199 isl_set_free(set);
7200 return NULL;
7203 /* Given a basic set "bset" that only involves parameters and existentially
7204 * quantified variables, return the index of the first equality
7205 * that only involves parameters. If there is no such equality then
7206 * return bset->n_eq.
7208 * This function assumes that isl_basic_set_gauss has been called on "bset".
7210 static int first_parameter_equality(__isl_keep isl_basic_set *bset)
7212 int i, j;
7213 unsigned nparam, n_div;
7215 if (!bset)
7216 return -1;
7218 nparam = isl_basic_set_dim(bset, isl_dim_param);
7219 n_div = isl_basic_set_dim(bset, isl_dim_div);
7221 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
7222 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
7223 ++i;
7226 return i;
7229 /* Compute an explicit representation for the existentially quantified
7230 * variables in "bset" by computing the "minimal value" of the set
7231 * variables. Since there are no set variables, the computation of
7232 * the minimal value essentially computes an explicit representation
7233 * of the non-empty part(s) of "bset".
7235 * The input only involves parameters and existentially quantified variables.
7236 * All equalities among parameters have been removed.
7238 * Since the existentially quantified variables in the result are in general
7239 * going to be different from those in the input, we first replace
7240 * them by the minimal number of variables based on their equalities.
7241 * This should simplify the parametric integer programming.
7243 static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
7245 isl_morph *morph1, *morph2;
7246 isl_set *set;
7247 unsigned n;
7249 if (!bset)
7250 return NULL;
7251 if (bset->n_eq == 0)
7252 return isl_basic_set_lexmin_compute_divs(bset);
7254 morph1 = isl_basic_set_parameter_compression(bset);
7255 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
7256 bset = isl_basic_set_lift(bset);
7257 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
7258 bset = isl_morph_basic_set(morph2, bset);
7259 n = isl_basic_set_dim(bset, isl_dim_set);
7260 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
7262 set = isl_basic_set_lexmin_compute_divs(bset);
7264 set = isl_morph_set(isl_morph_inverse(morph1), set);
7266 return set;
7269 /* Project the given basic set onto its parameter domain, possibly introducing
7270 * new, explicit, existential variables in the constraints.
7271 * The input has parameters and (possibly implicit) existential variables.
7272 * The output has the same parameters, but only
7273 * explicit existentially quantified variables.
7275 * The actual projection is performed by pip, but pip doesn't seem
7276 * to like equalities very much, so we first remove the equalities
7277 * among the parameters by performing a variable compression on
7278 * the parameters. Afterward, an inverse transformation is performed
7279 * and the equalities among the parameters are inserted back in.
7281 * The variable compression on the parameters may uncover additional
7282 * equalities that were only implicit before. We therefore check
7283 * if there are any new parameter equalities in the result and
7284 * if so recurse. The removal of parameter equalities is required
7285 * for the parameter compression performed by base_compute_divs.
7287 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
7289 int i;
7290 struct isl_mat *eq;
7291 struct isl_mat *T, *T2;
7292 struct isl_set *set;
7293 unsigned nparam;
7295 bset = isl_basic_set_cow(bset);
7296 if (!bset)
7297 return NULL;
7299 if (bset->n_eq == 0)
7300 return base_compute_divs(bset);
7302 bset = isl_basic_set_gauss(bset, NULL);
7303 if (!bset)
7304 return NULL;
7305 if (isl_basic_set_plain_is_empty(bset))
7306 return isl_set_from_basic_set(bset);
7308 i = first_parameter_equality(bset);
7309 if (i == bset->n_eq)
7310 return base_compute_divs(bset);
7312 nparam = isl_basic_set_dim(bset, isl_dim_param);
7313 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
7314 0, 1 + nparam);
7315 eq = isl_mat_cow(eq);
7316 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
7317 if (T && T->n_col == 0) {
7318 isl_mat_free(T);
7319 isl_mat_free(T2);
7320 isl_mat_free(eq);
7321 bset = isl_basic_set_set_to_empty(bset);
7322 return isl_set_from_basic_set(bset);
7324 bset = basic_set_parameter_preimage(bset, T);
7326 i = first_parameter_equality(bset);
7327 if (!bset)
7328 set = NULL;
7329 else if (i == bset->n_eq)
7330 set = base_compute_divs(bset);
7331 else
7332 set = parameter_compute_divs(bset);
7333 set = set_parameter_preimage(set, T2);
7334 set = set_append_equalities(set, eq);
7335 return set;
7338 /* Insert the divs from "ls" before those of "bmap".
7340 * The number of columns is not changed, which means that the last
7341 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7342 * The caller is responsible for removing the same number of dimensions
7343 * from the space of "bmap".
7345 static __isl_give isl_basic_map *insert_divs_from_local_space(
7346 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
7348 int i;
7349 int n_div;
7350 int old_n_div;
7352 n_div = isl_local_space_dim(ls, isl_dim_div);
7353 if (n_div == 0)
7354 return bmap;
7356 old_n_div = bmap->n_div;
7357 bmap = insert_div_rows(bmap, n_div);
7358 if (!bmap)
7359 return NULL;
7361 for (i = 0; i < n_div; ++i) {
7362 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
7363 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
7366 return bmap;
7369 /* Replace the space of "bmap" by the space and divs of "ls".
7371 * If "ls" has any divs, then we simplify the result since we may
7372 * have discovered some additional equalities that could simplify
7373 * the div expressions.
7375 static __isl_give isl_basic_map *basic_replace_space_by_local_space(
7376 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
7378 int n_div;
7380 bmap = isl_basic_map_cow(bmap);
7381 if (!bmap || !ls)
7382 goto error;
7384 n_div = isl_local_space_dim(ls, isl_dim_div);
7385 bmap = insert_divs_from_local_space(bmap, ls);
7386 if (!bmap)
7387 goto error;
7389 isl_space_free(bmap->dim);
7390 bmap->dim = isl_local_space_get_space(ls);
7391 if (!bmap->dim)
7392 goto error;
7394 isl_local_space_free(ls);
7395 if (n_div > 0)
7396 bmap = isl_basic_map_simplify(bmap);
7397 bmap = isl_basic_map_finalize(bmap);
7398 return bmap;
7399 error:
7400 isl_basic_map_free(bmap);
7401 isl_local_space_free(ls);
7402 return NULL;
7405 /* Replace the space of "map" by the space and divs of "ls".
7407 static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
7408 __isl_take isl_local_space *ls)
7410 int i;
7412 map = isl_map_cow(map);
7413 if (!map || !ls)
7414 goto error;
7416 for (i = 0; i < map->n; ++i) {
7417 map->p[i] = basic_replace_space_by_local_space(map->p[i],
7418 isl_local_space_copy(ls));
7419 if (!map->p[i])
7420 goto error;
7422 isl_space_free(map->dim);
7423 map->dim = isl_local_space_get_space(ls);
7424 if (!map->dim)
7425 goto error;
7427 isl_local_space_free(ls);
7428 return map;
7429 error:
7430 isl_local_space_free(ls);
7431 isl_map_free(map);
7432 return NULL;
7435 /* Compute an explicit representation for the existentially
7436 * quantified variables for which do not know any explicit representation yet.
7438 * We first sort the existentially quantified variables so that the
7439 * existentially quantified variables for which we already have an explicit
7440 * representation are placed before those for which we do not.
7441 * The input dimensions, the output dimensions and the existentially
7442 * quantified variables for which we already have an explicit
7443 * representation are then turned into parameters.
7444 * compute_divs returns a map with the same parameters and
7445 * no input or output dimensions and the dimension specification
7446 * is reset to that of the input, including the existentially quantified
7447 * variables for which we already had an explicit representation.
7449 static struct isl_map *compute_divs(struct isl_basic_map *bmap)
7451 struct isl_basic_set *bset;
7452 struct isl_set *set;
7453 struct isl_map *map;
7454 isl_space *dim;
7455 isl_local_space *ls;
7456 unsigned nparam;
7457 unsigned n_in;
7458 unsigned n_out;
7459 int n_known;
7460 int i;
7462 bmap = isl_basic_map_sort_divs(bmap);
7463 bmap = isl_basic_map_cow(bmap);
7464 if (!bmap)
7465 return NULL;
7467 n_known = isl_basic_map_first_unknown_div(bmap);
7468 if (n_known < 0)
7469 return isl_map_from_basic_map(isl_basic_map_free(bmap));
7471 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7472 n_in = isl_basic_map_dim(bmap, isl_dim_in);
7473 n_out = isl_basic_map_dim(bmap, isl_dim_out);
7474 dim = isl_space_set_alloc(bmap->ctx,
7475 nparam + n_in + n_out + n_known, 0);
7476 if (!dim)
7477 goto error;
7479 ls = isl_basic_map_get_local_space(bmap);
7480 ls = isl_local_space_drop_dims(ls, isl_dim_div,
7481 n_known, bmap->n_div - n_known);
7482 if (n_known > 0) {
7483 for (i = n_known; i < bmap->n_div; ++i)
7484 swap_div(bmap, i - n_known, i);
7485 bmap->n_div -= n_known;
7486 bmap->extra -= n_known;
7488 bmap = isl_basic_map_reset_space(bmap, dim);
7489 bset = bset_from_bmap(bmap);
7491 set = parameter_compute_divs(bset);
7492 map = set_to_map(set);
7493 map = replace_space_by_local_space(map, ls);
7495 return map;
7496 error:
7497 isl_basic_map_free(bmap);
7498 return NULL;
7501 /* Remove the explicit representation of local variable "div",
7502 * if there is any.
7504 __isl_give isl_basic_map *isl_basic_map_mark_div_unknown(
7505 __isl_take isl_basic_map *bmap, int div)
7507 isl_bool unknown;
7509 unknown = isl_basic_map_div_is_marked_unknown(bmap, div);
7510 if (unknown < 0)
7511 return isl_basic_map_free(bmap);
7512 if (unknown)
7513 return bmap;
7515 bmap = isl_basic_map_cow(bmap);
7516 if (!bmap)
7517 return NULL;
7518 isl_int_set_si(bmap->div[div][0], 0);
7519 return bmap;
7522 /* Is local variable "div" of "bmap" marked as not having an explicit
7523 * representation?
7524 * Note that even if "div" is not marked in this way and therefore
7525 * has an explicit representation, this representation may still
7526 * depend (indirectly) on other local variables that do not
7527 * have an explicit representation.
7529 isl_bool isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map *bmap,
7530 int div)
7532 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
7533 return isl_bool_error;
7534 return isl_int_is_zero(bmap->div[div][0]);
7537 /* Return the position of the first local variable that does not
7538 * have an explicit representation.
7539 * Return the total number of local variables if they all have
7540 * an explicit representation.
7541 * Return -1 on error.
7543 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map *bmap)
7545 int i;
7547 if (!bmap)
7548 return -1;
7550 for (i = 0; i < bmap->n_div; ++i) {
7551 if (!isl_basic_map_div_is_known(bmap, i))
7552 return i;
7554 return bmap->n_div;
7557 /* Return the position of the first local variable that does not
7558 * have an explicit representation.
7559 * Return the total number of local variables if they all have
7560 * an explicit representation.
7561 * Return -1 on error.
7563 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set *bset)
7565 return isl_basic_map_first_unknown_div(bset);
7568 /* Does "bmap" have an explicit representation for all local variables?
7570 isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
7572 int first, n;
7574 n = isl_basic_map_dim(bmap, isl_dim_div);
7575 first = isl_basic_map_first_unknown_div(bmap);
7576 if (first < 0)
7577 return isl_bool_error;
7578 return first == n;
7581 /* Do all basic maps in "map" have an explicit representation
7582 * for all local variables?
7584 isl_bool isl_map_divs_known(__isl_keep isl_map *map)
7586 int i;
7588 if (!map)
7589 return isl_bool_error;
7591 for (i = 0; i < map->n; ++i) {
7592 int known = isl_basic_map_divs_known(map->p[i]);
7593 if (known <= 0)
7594 return known;
7597 return isl_bool_true;
7600 /* If bmap contains any unknown divs, then compute explicit
7601 * expressions for them. However, this computation may be
7602 * quite expensive, so first try to remove divs that aren't
7603 * strictly needed.
7605 __isl_give isl_map *isl_basic_map_compute_divs(__isl_take isl_basic_map *bmap)
7607 int known;
7608 struct isl_map *map;
7610 known = isl_basic_map_divs_known(bmap);
7611 if (known < 0)
7612 goto error;
7613 if (known)
7614 return isl_map_from_basic_map(bmap);
7616 bmap = isl_basic_map_drop_redundant_divs(bmap);
7618 known = isl_basic_map_divs_known(bmap);
7619 if (known < 0)
7620 goto error;
7621 if (known)
7622 return isl_map_from_basic_map(bmap);
7624 map = compute_divs(bmap);
7625 return map;
7626 error:
7627 isl_basic_map_free(bmap);
7628 return NULL;
7631 __isl_give isl_map *isl_map_compute_divs(__isl_take isl_map *map)
7633 int i;
7634 int known;
7635 struct isl_map *res;
7637 if (!map)
7638 return NULL;
7639 if (map->n == 0)
7640 return map;
7642 known = isl_map_divs_known(map);
7643 if (known < 0) {
7644 isl_map_free(map);
7645 return NULL;
7647 if (known)
7648 return map;
7650 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
7651 for (i = 1 ; i < map->n; ++i) {
7652 struct isl_map *r2;
7653 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
7654 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
7655 res = isl_map_union_disjoint(res, r2);
7656 else
7657 res = isl_map_union(res, r2);
7659 isl_map_free(map);
7661 return res;
7664 __isl_give isl_set *isl_basic_set_compute_divs(__isl_take isl_basic_set *bset)
7666 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset)));
7669 struct isl_set *isl_set_compute_divs(struct isl_set *set)
7671 return set_from_map(isl_map_compute_divs(set_to_map(set)));
7674 __isl_give isl_set *isl_map_domain(__isl_take isl_map *map)
7676 int i;
7677 struct isl_set *set;
7679 if (!map)
7680 goto error;
7682 map = isl_map_cow(map);
7683 if (!map)
7684 return NULL;
7686 set = set_from_map(map);
7687 set->dim = isl_space_domain(set->dim);
7688 if (!set->dim)
7689 goto error;
7690 for (i = 0; i < map->n; ++i) {
7691 set->p[i] = isl_basic_map_domain(map->p[i]);
7692 if (!set->p[i])
7693 goto error;
7695 ISL_F_CLR(set, ISL_MAP_DISJOINT);
7696 ISL_F_CLR(set, ISL_SET_NORMALIZED);
7697 return set;
7698 error:
7699 isl_map_free(map);
7700 return NULL;
7703 /* Return the union of "map1" and "map2", where we assume for now that
7704 * "map1" and "map2" are disjoint. Note that the basic maps inside
7705 * "map1" or "map2" may not be disjoint from each other.
7706 * Also note that this function is also called from isl_map_union,
7707 * which takes care of handling the situation where "map1" and "map2"
7708 * may not be disjoint.
7710 * If one of the inputs is empty, we can simply return the other input.
7711 * Similarly, if one of the inputs is universal, then it is equal to the union.
7713 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
7714 __isl_take isl_map *map2)
7716 int i;
7717 unsigned flags = 0;
7718 struct isl_map *map = NULL;
7719 int is_universe;
7721 if (!map1 || !map2)
7722 goto error;
7724 if (!isl_space_is_equal(map1->dim, map2->dim))
7725 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
7726 "spaces don't match", goto error);
7728 if (map1->n == 0) {
7729 isl_map_free(map1);
7730 return map2;
7732 if (map2->n == 0) {
7733 isl_map_free(map2);
7734 return map1;
7737 is_universe = isl_map_plain_is_universe(map1);
7738 if (is_universe < 0)
7739 goto error;
7740 if (is_universe) {
7741 isl_map_free(map2);
7742 return map1;
7745 is_universe = isl_map_plain_is_universe(map2);
7746 if (is_universe < 0)
7747 goto error;
7748 if (is_universe) {
7749 isl_map_free(map1);
7750 return map2;
7753 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
7754 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
7755 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7757 map = isl_map_alloc_space(isl_space_copy(map1->dim),
7758 map1->n + map2->n, flags);
7759 if (!map)
7760 goto error;
7761 for (i = 0; i < map1->n; ++i) {
7762 map = isl_map_add_basic_map(map,
7763 isl_basic_map_copy(map1->p[i]));
7764 if (!map)
7765 goto error;
7767 for (i = 0; i < map2->n; ++i) {
7768 map = isl_map_add_basic_map(map,
7769 isl_basic_map_copy(map2->p[i]));
7770 if (!map)
7771 goto error;
7773 isl_map_free(map1);
7774 isl_map_free(map2);
7775 return map;
7776 error:
7777 isl_map_free(map);
7778 isl_map_free(map1);
7779 isl_map_free(map2);
7780 return NULL;
7783 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7784 * guaranteed to be disjoint by the caller.
7786 * Note that this functions is called from within isl_map_make_disjoint,
7787 * so we have to be careful not to touch the constraints of the inputs
7788 * in any way.
7790 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
7791 __isl_take isl_map *map2)
7793 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
7796 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7797 * not be disjoint. The parameters are assumed to have been aligned.
7799 * We currently simply call map_union_disjoint, the internal operation
7800 * of which does not really depend on the inputs being disjoint.
7801 * If the result contains more than one basic map, then we clear
7802 * the disjoint flag since the result may contain basic maps from
7803 * both inputs and these are not guaranteed to be disjoint.
7805 * As a special case, if "map1" and "map2" are obviously equal,
7806 * then we simply return "map1".
7808 static __isl_give isl_map *map_union_aligned(__isl_take isl_map *map1,
7809 __isl_take isl_map *map2)
7811 int equal;
7813 if (!map1 || !map2)
7814 goto error;
7816 equal = isl_map_plain_is_equal(map1, map2);
7817 if (equal < 0)
7818 goto error;
7819 if (equal) {
7820 isl_map_free(map2);
7821 return map1;
7824 map1 = map_union_disjoint(map1, map2);
7825 if (!map1)
7826 return NULL;
7827 if (map1->n > 1)
7828 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
7829 return map1;
7830 error:
7831 isl_map_free(map1);
7832 isl_map_free(map2);
7833 return NULL;
7836 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7837 * not be disjoint.
7839 __isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
7840 __isl_take isl_map *map2)
7842 return isl_map_align_params_map_map_and(map1, map2, &map_union_aligned);
7845 __isl_give isl_set *isl_set_union_disjoint(
7846 __isl_take isl_set *set1, __isl_take isl_set *set2)
7848 return set_from_map(isl_map_union_disjoint(set_to_map(set1),
7849 set_to_map(set2)));
7852 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
7854 return set_from_map(isl_map_union(set_to_map(set1), set_to_map(set2)));
7857 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7858 * the results.
7860 * "map" and "set" are assumed to be compatible and non-NULL.
7862 static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
7863 __isl_take isl_set *set,
7864 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
7865 __isl_take isl_basic_set *bset))
7867 unsigned flags = 0;
7868 struct isl_map *result;
7869 int i, j;
7871 if (isl_set_plain_is_universe(set)) {
7872 isl_set_free(set);
7873 return map;
7876 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
7877 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
7878 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7880 result = isl_map_alloc_space(isl_space_copy(map->dim),
7881 map->n * set->n, flags);
7882 for (i = 0; result && i < map->n; ++i)
7883 for (j = 0; j < set->n; ++j) {
7884 result = isl_map_add_basic_map(result,
7885 fn(isl_basic_map_copy(map->p[i]),
7886 isl_basic_set_copy(set->p[j])));
7887 if (!result)
7888 break;
7891 isl_map_free(map);
7892 isl_set_free(set);
7893 return result;
7896 static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
7897 __isl_take isl_set *set)
7899 isl_bool ok;
7901 ok = isl_map_compatible_range(map, set);
7902 if (ok < 0)
7903 goto error;
7904 if (!ok)
7905 isl_die(set->ctx, isl_error_invalid,
7906 "incompatible spaces", goto error);
7908 return map_intersect_set(map, set, &isl_basic_map_intersect_range);
7909 error:
7910 isl_map_free(map);
7911 isl_set_free(set);
7912 return NULL;
7915 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
7916 __isl_take isl_set *set)
7918 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
7921 static __isl_give isl_map *map_intersect_domain(__isl_take isl_map *map,
7922 __isl_take isl_set *set)
7924 isl_bool ok;
7926 ok = isl_map_compatible_domain(map, set);
7927 if (ok < 0)
7928 goto error;
7929 if (!ok)
7930 isl_die(set->ctx, isl_error_invalid,
7931 "incompatible spaces", goto error);
7933 return map_intersect_set(map, set, &isl_basic_map_intersect_domain);
7934 error:
7935 isl_map_free(map);
7936 isl_set_free(set);
7937 return NULL;
7940 __isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
7941 __isl_take isl_set *set)
7943 return isl_map_align_params_map_map_and(map, set,
7944 &map_intersect_domain);
7947 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7948 * in the space B -> C, return the intersection.
7949 * The parameters are assumed to have been aligned.
7951 * The map "factor" is first extended to a map living in the space
7952 * [A -> B] -> C and then a regular intersection is computed.
7954 static __isl_give isl_map *map_intersect_domain_factor_range(
7955 __isl_take isl_map *map, __isl_take isl_map *factor)
7957 isl_space *space;
7958 isl_map *ext_factor;
7960 space = isl_space_domain_factor_domain(isl_map_get_space(map));
7961 ext_factor = isl_map_universe(space);
7962 ext_factor = isl_map_domain_product(ext_factor, factor);
7963 return map_intersect(map, ext_factor);
7966 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7967 * in the space B -> C, return the intersection.
7969 __isl_give isl_map *isl_map_intersect_domain_factor_range(
7970 __isl_take isl_map *map, __isl_take isl_map *factor)
7972 return isl_map_align_params_map_map_and(map, factor,
7973 &map_intersect_domain_factor_range);
7976 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
7977 * in the space A -> C, return the intersection.
7979 * The map "factor" is first extended to a map living in the space
7980 * A -> [B -> C] and then a regular intersection is computed.
7982 static __isl_give isl_map *map_intersect_range_factor_range(
7983 __isl_take isl_map *map, __isl_take isl_map *factor)
7985 isl_space *space;
7986 isl_map *ext_factor;
7988 space = isl_space_range_factor_domain(isl_map_get_space(map));
7989 ext_factor = isl_map_universe(space);
7990 ext_factor = isl_map_range_product(ext_factor, factor);
7991 return isl_map_intersect(map, ext_factor);
7994 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
7995 * in the space A -> C, return the intersection.
7997 __isl_give isl_map *isl_map_intersect_range_factor_range(
7998 __isl_take isl_map *map, __isl_take isl_map *factor)
8000 return isl_map_align_params_map_map_and(map, factor,
8001 &map_intersect_range_factor_range);
8004 static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
8005 __isl_take isl_map *map2)
8007 if (!map1 || !map2)
8008 goto error;
8009 map1 = isl_map_reverse(map1);
8010 map1 = isl_map_apply_range(map1, map2);
8011 return isl_map_reverse(map1);
8012 error:
8013 isl_map_free(map1);
8014 isl_map_free(map2);
8015 return NULL;
8018 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
8019 __isl_take isl_map *map2)
8021 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
8024 static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
8025 __isl_take isl_map *map2)
8027 isl_space *dim_result;
8028 struct isl_map *result;
8029 int i, j;
8031 if (!map1 || !map2)
8032 goto error;
8034 dim_result = isl_space_join(isl_space_copy(map1->dim),
8035 isl_space_copy(map2->dim));
8037 result = isl_map_alloc_space(dim_result, map1->n * map2->n, 0);
8038 if (!result)
8039 goto error;
8040 for (i = 0; i < map1->n; ++i)
8041 for (j = 0; j < map2->n; ++j) {
8042 result = isl_map_add_basic_map(result,
8043 isl_basic_map_apply_range(
8044 isl_basic_map_copy(map1->p[i]),
8045 isl_basic_map_copy(map2->p[j])));
8046 if (!result)
8047 goto error;
8049 isl_map_free(map1);
8050 isl_map_free(map2);
8051 if (result && result->n <= 1)
8052 ISL_F_SET(result, ISL_MAP_DISJOINT);
8053 return result;
8054 error:
8055 isl_map_free(map1);
8056 isl_map_free(map2);
8057 return NULL;
8060 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
8061 __isl_take isl_map *map2)
8063 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
8067 * returns range - domain
8069 __isl_give isl_basic_set *isl_basic_map_deltas(__isl_take isl_basic_map *bmap)
8071 isl_space *target_space;
8072 struct isl_basic_set *bset;
8073 unsigned dim;
8074 unsigned nparam;
8075 int i;
8077 if (!bmap)
8078 goto error;
8079 isl_assert(bmap->ctx, isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8080 bmap->dim, isl_dim_out),
8081 goto error);
8082 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
8083 dim = isl_basic_map_dim(bmap, isl_dim_in);
8084 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8085 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
8086 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
8087 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
8088 for (i = 0; i < dim; ++i) {
8089 int j = isl_basic_map_alloc_equality(bmap);
8090 if (j < 0) {
8091 bmap = isl_basic_map_free(bmap);
8092 break;
8094 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8095 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8096 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
8097 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
8099 bset = isl_basic_map_domain(bmap);
8100 bset = isl_basic_set_reset_space(bset, target_space);
8101 return bset;
8102 error:
8103 isl_basic_map_free(bmap);
8104 return NULL;
8108 * returns range - domain
8110 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
8112 int i;
8113 isl_space *dim;
8114 struct isl_set *result;
8116 if (!map)
8117 return NULL;
8119 isl_assert(map->ctx, isl_space_tuple_is_equal(map->dim, isl_dim_in,
8120 map->dim, isl_dim_out),
8121 goto error);
8122 dim = isl_map_get_space(map);
8123 dim = isl_space_domain(dim);
8124 result = isl_set_alloc_space(dim, map->n, 0);
8125 if (!result)
8126 goto error;
8127 for (i = 0; i < map->n; ++i)
8128 result = isl_set_add_basic_set(result,
8129 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
8130 isl_map_free(map);
8131 return result;
8132 error:
8133 isl_map_free(map);
8134 return NULL;
8138 * returns [domain -> range] -> range - domain
8140 __isl_give isl_basic_map *isl_basic_map_deltas_map(
8141 __isl_take isl_basic_map *bmap)
8143 int i, k;
8144 isl_space *dim;
8145 isl_basic_map *domain;
8146 int nparam, n;
8147 unsigned total;
8149 if (!isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8150 bmap->dim, isl_dim_out))
8151 isl_die(bmap->ctx, isl_error_invalid,
8152 "domain and range don't match", goto error);
8154 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8155 n = isl_basic_map_dim(bmap, isl_dim_in);
8157 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
8158 domain = isl_basic_map_universe(dim);
8160 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
8161 bmap = isl_basic_map_apply_range(bmap, domain);
8162 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
8164 total = isl_basic_map_total_dim(bmap);
8166 for (i = 0; i < n; ++i) {
8167 k = isl_basic_map_alloc_equality(bmap);
8168 if (k < 0)
8169 goto error;
8170 isl_seq_clr(bmap->eq[k], 1 + total);
8171 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
8172 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
8173 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
8176 bmap = isl_basic_map_gauss(bmap, NULL);
8177 return isl_basic_map_finalize(bmap);
8178 error:
8179 isl_basic_map_free(bmap);
8180 return NULL;
8184 * returns [domain -> range] -> range - domain
8186 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
8188 int i;
8189 isl_space *domain_dim;
8191 if (!map)
8192 return NULL;
8194 if (!isl_space_tuple_is_equal(map->dim, isl_dim_in,
8195 map->dim, isl_dim_out))
8196 isl_die(map->ctx, isl_error_invalid,
8197 "domain and range don't match", goto error);
8199 map = isl_map_cow(map);
8200 if (!map)
8201 return NULL;
8203 domain_dim = isl_space_from_range(isl_space_domain(isl_map_get_space(map)));
8204 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
8205 map->dim = isl_space_join(map->dim, domain_dim);
8206 if (!map->dim)
8207 goto error;
8208 for (i = 0; i < map->n; ++i) {
8209 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
8210 if (!map->p[i])
8211 goto error;
8213 map = isl_map_unmark_normalized(map);
8214 return map;
8215 error:
8216 isl_map_free(map);
8217 return NULL;
8220 static __isl_give isl_basic_map *basic_map_identity(__isl_take isl_space *dims)
8222 struct isl_basic_map *bmap;
8223 unsigned nparam;
8224 unsigned dim;
8225 int i;
8227 if (!dims)
8228 return NULL;
8230 nparam = dims->nparam;
8231 dim = dims->n_out;
8232 bmap = isl_basic_map_alloc_space(dims, 0, dim, 0);
8233 if (!bmap)
8234 goto error;
8236 for (i = 0; i < dim; ++i) {
8237 int j = isl_basic_map_alloc_equality(bmap);
8238 if (j < 0)
8239 goto error;
8240 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8241 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8242 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
8244 return isl_basic_map_finalize(bmap);
8245 error:
8246 isl_basic_map_free(bmap);
8247 return NULL;
8250 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *dim)
8252 if (!dim)
8253 return NULL;
8254 if (dim->n_in != dim->n_out)
8255 isl_die(dim->ctx, isl_error_invalid,
8256 "number of input and output dimensions needs to be "
8257 "the same", goto error);
8258 return basic_map_identity(dim);
8259 error:
8260 isl_space_free(dim);
8261 return NULL;
8264 __isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
8266 return isl_map_from_basic_map(isl_basic_map_identity(dim));
8269 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
8271 isl_space *dim = isl_set_get_space(set);
8272 isl_map *id;
8273 id = isl_map_identity(isl_space_map_from_set(dim));
8274 return isl_map_intersect_range(id, set);
8277 /* Construct a basic set with all set dimensions having only non-negative
8278 * values.
8280 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
8281 __isl_take isl_space *space)
8283 int i;
8284 unsigned nparam;
8285 unsigned dim;
8286 struct isl_basic_set *bset;
8288 if (!space)
8289 return NULL;
8290 nparam = space->nparam;
8291 dim = space->n_out;
8292 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
8293 if (!bset)
8294 return NULL;
8295 for (i = 0; i < dim; ++i) {
8296 int k = isl_basic_set_alloc_inequality(bset);
8297 if (k < 0)
8298 goto error;
8299 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
8300 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
8302 return bset;
8303 error:
8304 isl_basic_set_free(bset);
8305 return NULL;
8308 /* Construct the half-space x_pos >= 0.
8310 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *dim,
8311 int pos)
8313 int k;
8314 isl_basic_set *nonneg;
8316 nonneg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8317 k = isl_basic_set_alloc_inequality(nonneg);
8318 if (k < 0)
8319 goto error;
8320 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
8321 isl_int_set_si(nonneg->ineq[k][pos], 1);
8323 return isl_basic_set_finalize(nonneg);
8324 error:
8325 isl_basic_set_free(nonneg);
8326 return NULL;
8329 /* Construct the half-space x_pos <= -1.
8331 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *dim, int pos)
8333 int k;
8334 isl_basic_set *neg;
8336 neg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8337 k = isl_basic_set_alloc_inequality(neg);
8338 if (k < 0)
8339 goto error;
8340 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
8341 isl_int_set_si(neg->ineq[k][0], -1);
8342 isl_int_set_si(neg->ineq[k][pos], -1);
8344 return isl_basic_set_finalize(neg);
8345 error:
8346 isl_basic_set_free(neg);
8347 return NULL;
8350 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
8351 enum isl_dim_type type, unsigned first, unsigned n)
8353 int i;
8354 unsigned offset;
8355 isl_basic_set *nonneg;
8356 isl_basic_set *neg;
8358 if (!set)
8359 return NULL;
8360 if (n == 0)
8361 return set;
8363 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
8365 offset = pos(set->dim, type);
8366 for (i = 0; i < n; ++i) {
8367 nonneg = nonneg_halfspace(isl_set_get_space(set),
8368 offset + first + i);
8369 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
8371 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
8374 return set;
8375 error:
8376 isl_set_free(set);
8377 return NULL;
8380 static isl_stat foreach_orthant(__isl_take isl_set *set, int *signs, int first,
8381 int len,
8382 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8383 void *user)
8385 isl_set *half;
8387 if (!set)
8388 return isl_stat_error;
8389 if (isl_set_plain_is_empty(set)) {
8390 isl_set_free(set);
8391 return isl_stat_ok;
8393 if (first == len)
8394 return fn(set, signs, user);
8396 signs[first] = 1;
8397 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
8398 1 + first));
8399 half = isl_set_intersect(half, isl_set_copy(set));
8400 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
8401 goto error;
8403 signs[first] = -1;
8404 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
8405 1 + first));
8406 half = isl_set_intersect(half, set);
8407 return foreach_orthant(half, signs, first + 1, len, fn, user);
8408 error:
8409 isl_set_free(set);
8410 return isl_stat_error;
8413 /* Call "fn" on the intersections of "set" with each of the orthants
8414 * (except for obviously empty intersections). The orthant is identified
8415 * by the signs array, with each entry having value 1 or -1 according
8416 * to the sign of the corresponding variable.
8418 isl_stat isl_set_foreach_orthant(__isl_keep isl_set *set,
8419 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8420 void *user)
8422 unsigned nparam;
8423 unsigned nvar;
8424 int *signs;
8425 isl_stat r;
8427 if (!set)
8428 return isl_stat_error;
8429 if (isl_set_plain_is_empty(set))
8430 return isl_stat_ok;
8432 nparam = isl_set_dim(set, isl_dim_param);
8433 nvar = isl_set_dim(set, isl_dim_set);
8435 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
8437 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
8438 fn, user);
8440 free(signs);
8442 return r;
8445 isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8447 return isl_map_is_equal(set_to_map(set1), set_to_map(set2));
8450 isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
8451 __isl_keep isl_basic_map *bmap2)
8453 int is_subset;
8454 struct isl_map *map1;
8455 struct isl_map *map2;
8457 if (!bmap1 || !bmap2)
8458 return isl_bool_error;
8460 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
8461 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
8463 is_subset = isl_map_is_subset(map1, map2);
8465 isl_map_free(map1);
8466 isl_map_free(map2);
8468 return is_subset;
8471 isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
8472 __isl_keep isl_basic_set *bset2)
8474 return isl_basic_map_is_subset(bset1, bset2);
8477 isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
8478 __isl_keep isl_basic_map *bmap2)
8480 isl_bool is_subset;
8482 if (!bmap1 || !bmap2)
8483 return isl_bool_error;
8484 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8485 if (is_subset != isl_bool_true)
8486 return is_subset;
8487 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8488 return is_subset;
8491 isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
8492 __isl_keep isl_basic_set *bset2)
8494 return isl_basic_map_is_equal(
8495 bset_to_bmap(bset1), bset_to_bmap(bset2));
8498 isl_bool isl_map_is_empty(__isl_keep isl_map *map)
8500 int i;
8501 int is_empty;
8503 if (!map)
8504 return isl_bool_error;
8505 for (i = 0; i < map->n; ++i) {
8506 is_empty = isl_basic_map_is_empty(map->p[i]);
8507 if (is_empty < 0)
8508 return isl_bool_error;
8509 if (!is_empty)
8510 return isl_bool_false;
8512 return isl_bool_true;
8515 isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
8517 return map ? map->n == 0 : isl_bool_error;
8520 isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
8522 return set ? set->n == 0 : isl_bool_error;
8525 isl_bool isl_set_is_empty(__isl_keep isl_set *set)
8527 return isl_map_is_empty(set_to_map(set));
8530 isl_bool isl_map_has_equal_space(__isl_keep isl_map *map1,
8531 __isl_keep isl_map *map2)
8533 if (!map1 || !map2)
8534 return isl_bool_error;
8536 return isl_space_is_equal(map1->dim, map2->dim);
8539 isl_bool isl_set_has_equal_space(__isl_keep isl_set *set1,
8540 __isl_keep isl_set *set2)
8542 if (!set1 || !set2)
8543 return isl_bool_error;
8545 return isl_space_is_equal(set1->dim, set2->dim);
8548 static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8550 isl_bool is_subset;
8552 if (!map1 || !map2)
8553 return isl_bool_error;
8554 is_subset = isl_map_is_subset(map1, map2);
8555 if (is_subset != isl_bool_true)
8556 return is_subset;
8557 is_subset = isl_map_is_subset(map2, map1);
8558 return is_subset;
8561 /* Is "map1" equal to "map2"?
8563 * First check if they are obviously equal.
8564 * If not, then perform a more detailed analysis.
8566 isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8568 isl_bool equal;
8570 equal = isl_map_plain_is_equal(map1, map2);
8571 if (equal < 0 || equal)
8572 return equal;
8573 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
8576 isl_bool isl_basic_map_is_strict_subset(
8577 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8579 isl_bool is_subset;
8581 if (!bmap1 || !bmap2)
8582 return isl_bool_error;
8583 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8584 if (is_subset != isl_bool_true)
8585 return is_subset;
8586 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8587 if (is_subset == isl_bool_error)
8588 return is_subset;
8589 return !is_subset;
8592 isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
8593 __isl_keep isl_map *map2)
8595 isl_bool is_subset;
8597 if (!map1 || !map2)
8598 return isl_bool_error;
8599 is_subset = isl_map_is_subset(map1, map2);
8600 if (is_subset != isl_bool_true)
8601 return is_subset;
8602 is_subset = isl_map_is_subset(map2, map1);
8603 if (is_subset == isl_bool_error)
8604 return is_subset;
8605 return !is_subset;
8608 isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
8609 __isl_keep isl_set *set2)
8611 return isl_map_is_strict_subset(set_to_map(set1), set_to_map(set2));
8614 /* Is "bmap" obviously equal to the universe with the same space?
8616 * That is, does it not have any constraints?
8618 isl_bool isl_basic_map_plain_is_universe(__isl_keep isl_basic_map *bmap)
8620 if (!bmap)
8621 return isl_bool_error;
8622 return bmap->n_eq == 0 && bmap->n_ineq == 0;
8625 /* Is "bset" obviously equal to the universe with the same space?
8627 isl_bool isl_basic_set_plain_is_universe(__isl_keep isl_basic_set *bset)
8629 return isl_basic_map_plain_is_universe(bset);
8632 /* If "c" does not involve any existentially quantified variables,
8633 * then set *univ to false and abort
8635 static isl_stat involves_divs(__isl_take isl_constraint *c, void *user)
8637 isl_bool *univ = user;
8638 unsigned n;
8640 n = isl_constraint_dim(c, isl_dim_div);
8641 *univ = isl_constraint_involves_dims(c, isl_dim_div, 0, n);
8642 isl_constraint_free(c);
8643 if (*univ < 0 || !*univ)
8644 return isl_stat_error;
8645 return isl_stat_ok;
8648 /* Is "bmap" equal to the universe with the same space?
8650 * First check if it is obviously equal to the universe.
8651 * If not and if there are any constraints not involving
8652 * existentially quantified variables, then it is certainly
8653 * not equal to the universe.
8654 * Otherwise, check if the universe is a subset of "bmap".
8656 isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
8658 isl_bool univ;
8659 isl_basic_map *test;
8661 univ = isl_basic_map_plain_is_universe(bmap);
8662 if (univ < 0 || univ)
8663 return univ;
8664 if (isl_basic_map_dim(bmap, isl_dim_div) == 0)
8665 return isl_bool_false;
8666 univ = isl_bool_true;
8667 if (isl_basic_map_foreach_constraint(bmap, &involves_divs, &univ) < 0 &&
8668 univ)
8669 return isl_bool_error;
8670 if (univ < 0 || !univ)
8671 return univ;
8672 test = isl_basic_map_universe(isl_basic_map_get_space(bmap));
8673 univ = isl_basic_map_is_subset(test, bmap);
8674 isl_basic_map_free(test);
8675 return univ;
8678 /* Is "bset" equal to the universe with the same space?
8680 isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
8682 return isl_basic_map_is_universe(bset);
8685 isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
8687 int i;
8689 if (!map)
8690 return isl_bool_error;
8692 for (i = 0; i < map->n; ++i) {
8693 isl_bool r = isl_basic_map_plain_is_universe(map->p[i]);
8694 if (r < 0 || r)
8695 return r;
8698 return isl_bool_false;
8701 isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
8703 return isl_map_plain_is_universe(set_to_map(set));
8706 isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
8708 struct isl_basic_set *bset = NULL;
8709 struct isl_vec *sample = NULL;
8710 isl_bool empty, non_empty;
8712 if (!bmap)
8713 return isl_bool_error;
8715 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
8716 return isl_bool_true;
8718 if (isl_basic_map_plain_is_universe(bmap))
8719 return isl_bool_false;
8721 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
8722 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
8723 copy = isl_basic_map_remove_redundancies(copy);
8724 empty = isl_basic_map_plain_is_empty(copy);
8725 isl_basic_map_free(copy);
8726 return empty;
8729 non_empty = isl_basic_map_plain_is_non_empty(bmap);
8730 if (non_empty < 0)
8731 return isl_bool_error;
8732 if (non_empty)
8733 return isl_bool_false;
8734 isl_vec_free(bmap->sample);
8735 bmap->sample = NULL;
8736 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
8737 if (!bset)
8738 return isl_bool_error;
8739 sample = isl_basic_set_sample_vec(bset);
8740 if (!sample)
8741 return isl_bool_error;
8742 empty = sample->size == 0;
8743 isl_vec_free(bmap->sample);
8744 bmap->sample = sample;
8745 if (empty)
8746 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
8748 return empty;
8751 isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
8753 if (!bmap)
8754 return isl_bool_error;
8755 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
8758 isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
8760 if (!bset)
8761 return isl_bool_error;
8762 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
8765 /* Is "bmap" known to be non-empty?
8767 * That is, is the cached sample still valid?
8769 isl_bool isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map *bmap)
8771 unsigned total;
8773 if (!bmap)
8774 return isl_bool_error;
8775 if (!bmap->sample)
8776 return isl_bool_false;
8777 total = 1 + isl_basic_map_total_dim(bmap);
8778 if (bmap->sample->size != total)
8779 return isl_bool_false;
8780 return isl_basic_map_contains(bmap, bmap->sample);
8783 isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
8785 return isl_basic_map_is_empty(bset_to_bmap(bset));
8788 __isl_give isl_map *isl_basic_map_union(__isl_take isl_basic_map *bmap1,
8789 __isl_take isl_basic_map *bmap2)
8791 struct isl_map *map;
8792 if (!bmap1 || !bmap2)
8793 goto error;
8795 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
8797 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
8798 if (!map)
8799 goto error;
8800 map = isl_map_add_basic_map(map, bmap1);
8801 map = isl_map_add_basic_map(map, bmap2);
8802 return map;
8803 error:
8804 isl_basic_map_free(bmap1);
8805 isl_basic_map_free(bmap2);
8806 return NULL;
8809 struct isl_set *isl_basic_set_union(
8810 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
8812 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1),
8813 bset_to_bmap(bset2)));
8816 /* Order divs such that any div only depends on previous divs */
8817 __isl_give isl_basic_map *isl_basic_map_order_divs(
8818 __isl_take isl_basic_map *bmap)
8820 int i;
8821 unsigned off;
8823 if (!bmap)
8824 return NULL;
8826 off = isl_space_dim(bmap->dim, isl_dim_all);
8828 for (i = 0; i < bmap->n_div; ++i) {
8829 int pos;
8830 if (isl_int_is_zero(bmap->div[i][0]))
8831 continue;
8832 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
8833 bmap->n_div-i);
8834 if (pos == -1)
8835 continue;
8836 if (pos == 0)
8837 isl_die(isl_basic_map_get_ctx(bmap), isl_error_internal,
8838 "integer division depends on itself",
8839 return isl_basic_map_free(bmap));
8840 isl_basic_map_swap_div(bmap, i, i + pos);
8841 --i;
8843 return bmap;
8846 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
8848 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset)));
8851 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
8853 int i;
8855 if (!map)
8856 return 0;
8858 for (i = 0; i < map->n; ++i) {
8859 map->p[i] = isl_basic_map_order_divs(map->p[i]);
8860 if (!map->p[i])
8861 goto error;
8864 return map;
8865 error:
8866 isl_map_free(map);
8867 return NULL;
8870 /* Sort the local variables of "bset".
8872 __isl_give isl_basic_set *isl_basic_set_sort_divs(
8873 __isl_take isl_basic_set *bset)
8875 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset)));
8878 /* Apply the expansion computed by isl_merge_divs.
8879 * The expansion itself is given by "exp" while the resulting
8880 * list of divs is given by "div".
8882 * Move the integer divisions of "bmap" into the right position
8883 * according to "exp" and then introduce the additional integer
8884 * divisions, adding div constraints.
8885 * The moving should be done first to avoid moving coefficients
8886 * in the definitions of the extra integer divisions.
8888 __isl_give isl_basic_map *isl_basic_map_expand_divs(
8889 __isl_take isl_basic_map *bmap, __isl_take isl_mat *div, int *exp)
8891 int i, j;
8892 int n_div;
8894 bmap = isl_basic_map_cow(bmap);
8895 if (!bmap || !div)
8896 goto error;
8898 if (div->n_row < bmap->n_div)
8899 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
8900 "not an expansion", goto error);
8902 n_div = bmap->n_div;
8903 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
8904 div->n_row - n_div, 0,
8905 2 * (div->n_row - n_div));
8907 for (i = n_div; i < div->n_row; ++i)
8908 if (isl_basic_map_alloc_div(bmap) < 0)
8909 goto error;
8911 for (j = n_div - 1; j >= 0; --j) {
8912 if (exp[j] == j)
8913 break;
8914 isl_basic_map_swap_div(bmap, j, exp[j]);
8916 j = 0;
8917 for (i = 0; i < div->n_row; ++i) {
8918 if (j < n_div && exp[j] == i) {
8919 j++;
8920 } else {
8921 isl_seq_cpy(bmap->div[i], div->row[i], div->n_col);
8922 if (isl_basic_map_div_is_marked_unknown(bmap, i))
8923 continue;
8924 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
8925 goto error;
8929 isl_mat_free(div);
8930 return bmap;
8931 error:
8932 isl_basic_map_free(bmap);
8933 isl_mat_free(div);
8934 return NULL;
8937 /* Apply the expansion computed by isl_merge_divs.
8938 * The expansion itself is given by "exp" while the resulting
8939 * list of divs is given by "div".
8941 __isl_give isl_basic_set *isl_basic_set_expand_divs(
8942 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
8944 return isl_basic_map_expand_divs(bset, div, exp);
8947 /* Look for a div in dst that corresponds to the div "div" in src.
8948 * The divs before "div" in src and dst are assumed to be the same.
8950 * Returns -1 if no corresponding div was found and the position
8951 * of the corresponding div in dst otherwise.
8953 static int find_div(__isl_keep isl_basic_map *dst,
8954 __isl_keep isl_basic_map *src, unsigned div)
8956 int i;
8958 unsigned total = isl_space_dim(src->dim, isl_dim_all);
8960 isl_assert(dst->ctx, div <= dst->n_div, return -1);
8961 for (i = div; i < dst->n_div; ++i)
8962 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
8963 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
8964 dst->n_div - div) == -1)
8965 return i;
8966 return -1;
8969 /* Align the divs of "dst" to those of "src", adding divs from "src"
8970 * if needed. That is, make sure that the first src->n_div divs
8971 * of the result are equal to those of src.
8973 * The result is not finalized as by design it will have redundant
8974 * divs if any divs from "src" were copied.
8976 __isl_give isl_basic_map *isl_basic_map_align_divs(
8977 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
8979 int i;
8980 int known, extended;
8981 unsigned total;
8983 if (!dst || !src)
8984 return isl_basic_map_free(dst);
8986 if (src->n_div == 0)
8987 return dst;
8989 known = isl_basic_map_divs_known(src);
8990 if (known < 0)
8991 return isl_basic_map_free(dst);
8992 if (!known)
8993 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
8994 "some src divs are unknown",
8995 return isl_basic_map_free(dst));
8997 src = isl_basic_map_order_divs(src);
8999 extended = 0;
9000 total = isl_space_dim(src->dim, isl_dim_all);
9001 for (i = 0; i < src->n_div; ++i) {
9002 int j = find_div(dst, src, i);
9003 if (j < 0) {
9004 if (!extended) {
9005 int extra = src->n_div - i;
9006 dst = isl_basic_map_cow(dst);
9007 if (!dst)
9008 return NULL;
9009 dst = isl_basic_map_extend_space(dst,
9010 isl_space_copy(dst->dim),
9011 extra, 0, 2 * extra);
9012 extended = 1;
9014 j = isl_basic_map_alloc_div(dst);
9015 if (j < 0)
9016 return isl_basic_map_free(dst);
9017 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
9018 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
9019 if (isl_basic_map_add_div_constraints(dst, j) < 0)
9020 return isl_basic_map_free(dst);
9022 if (j != i)
9023 isl_basic_map_swap_div(dst, i, j);
9025 return dst;
9028 __isl_give isl_map *isl_map_align_divs_internal(__isl_take isl_map *map)
9030 int i;
9032 if (!map)
9033 return NULL;
9034 if (map->n == 0)
9035 return map;
9036 map = isl_map_compute_divs(map);
9037 map = isl_map_cow(map);
9038 if (!map)
9039 return NULL;
9041 for (i = 1; i < map->n; ++i)
9042 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
9043 for (i = 1; i < map->n; ++i) {
9044 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
9045 if (!map->p[i])
9046 return isl_map_free(map);
9049 map = isl_map_unmark_normalized(map);
9050 return map;
9053 __isl_give isl_map *isl_map_align_divs(__isl_take isl_map *map)
9055 return isl_map_align_divs_internal(map);
9058 struct isl_set *isl_set_align_divs(struct isl_set *set)
9060 return set_from_map(isl_map_align_divs_internal(set_to_map(set)));
9063 /* Align the divs of the basic maps in "map" to those
9064 * of the basic maps in "list", as well as to the other basic maps in "map".
9065 * The elements in "list" are assumed to have known divs.
9067 __isl_give isl_map *isl_map_align_divs_to_basic_map_list(
9068 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
9070 int i, n;
9072 map = isl_map_compute_divs(map);
9073 map = isl_map_cow(map);
9074 if (!map || !list)
9075 return isl_map_free(map);
9076 if (map->n == 0)
9077 return map;
9079 n = isl_basic_map_list_n_basic_map(list);
9080 for (i = 0; i < n; ++i) {
9081 isl_basic_map *bmap;
9083 bmap = isl_basic_map_list_get_basic_map(list, i);
9084 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
9085 isl_basic_map_free(bmap);
9087 if (!map->p[0])
9088 return isl_map_free(map);
9090 return isl_map_align_divs_internal(map);
9093 /* Align the divs of each element of "list" to those of "bmap".
9094 * Both "bmap" and the elements of "list" are assumed to have known divs.
9096 __isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
9097 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
9099 int i, n;
9101 if (!list || !bmap)
9102 return isl_basic_map_list_free(list);
9104 n = isl_basic_map_list_n_basic_map(list);
9105 for (i = 0; i < n; ++i) {
9106 isl_basic_map *bmap_i;
9108 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9109 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
9110 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
9113 return list;
9116 static __isl_give isl_set *set_apply( __isl_take isl_set *set,
9117 __isl_take isl_map *map)
9119 isl_bool ok;
9121 ok = isl_map_compatible_domain(map, set);
9122 if (ok < 0)
9123 goto error;
9124 if (!ok)
9125 isl_die(isl_set_get_ctx(set), isl_error_invalid,
9126 "incompatible spaces", goto error);
9127 map = isl_map_intersect_domain(map, set);
9128 set = isl_map_range(map);
9129 return set;
9130 error:
9131 isl_set_free(set);
9132 isl_map_free(map);
9133 return NULL;
9136 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
9137 __isl_take isl_map *map)
9139 return isl_map_align_params_map_map_and(set, map, &set_apply);
9142 /* There is no need to cow as removing empty parts doesn't change
9143 * the meaning of the set.
9145 __isl_give isl_map *isl_map_remove_empty_parts(__isl_take isl_map *map)
9147 int i;
9149 if (!map)
9150 return NULL;
9152 for (i = map->n - 1; i >= 0; --i)
9153 map = remove_if_empty(map, i);
9155 return map;
9158 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
9160 return set_from_map(isl_map_remove_empty_parts(set_to_map(set)));
9163 /* Create a binary relation that maps the shared initial "pos" dimensions
9164 * of "bset1" and "bset2" to the remaining dimensions of "bset1" and "bset2".
9166 static __isl_give isl_basic_map *join_initial(__isl_keep isl_basic_set *bset1,
9167 __isl_keep isl_basic_set *bset2, int pos)
9169 isl_basic_map *bmap1;
9170 isl_basic_map *bmap2;
9172 bmap1 = isl_basic_map_from_range(isl_basic_set_copy(bset1));
9173 bmap2 = isl_basic_map_from_range(isl_basic_set_copy(bset2));
9174 bmap1 = isl_basic_map_move_dims(bmap1, isl_dim_in, 0,
9175 isl_dim_out, 0, pos);
9176 bmap2 = isl_basic_map_move_dims(bmap2, isl_dim_in, 0,
9177 isl_dim_out, 0, pos);
9178 return isl_basic_map_range_product(bmap1, bmap2);
9181 /* Given two basic sets bset1 and bset2, compute the maximal difference
9182 * between the values of dimension pos in bset1 and those in bset2
9183 * for any common value of the parameters and dimensions preceding pos.
9185 static enum isl_lp_result basic_set_maximal_difference_at(
9186 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
9187 int pos, isl_int *opt)
9189 isl_basic_map *bmap1;
9190 struct isl_ctx *ctx;
9191 struct isl_vec *obj;
9192 unsigned total;
9193 unsigned nparam;
9194 unsigned dim1;
9195 enum isl_lp_result res;
9197 if (!bset1 || !bset2)
9198 return isl_lp_error;
9200 nparam = isl_basic_set_n_param(bset1);
9201 dim1 = isl_basic_set_n_dim(bset1);
9203 bmap1 = join_initial(bset1, bset2, pos);
9204 if (!bmap1)
9205 return isl_lp_error;
9207 total = isl_basic_map_total_dim(bmap1);
9208 ctx = bmap1->ctx;
9209 obj = isl_vec_alloc(ctx, 1 + total);
9210 if (!obj)
9211 goto error;
9212 isl_seq_clr(obj->block.data, 1 + total);
9213 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
9214 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
9215 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
9216 opt, NULL, NULL);
9217 isl_basic_map_free(bmap1);
9218 isl_vec_free(obj);
9219 return res;
9220 error:
9221 isl_basic_map_free(bmap1);
9222 return isl_lp_error;
9225 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
9226 * for any common value of the parameters and dimensions preceding pos
9227 * in both basic sets, the values of dimension pos in bset1 are
9228 * smaller or larger than those in bset2.
9230 * Returns
9231 * 1 if bset1 follows bset2
9232 * -1 if bset1 precedes bset2
9233 * 0 if bset1 and bset2 are incomparable
9234 * -2 if some error occurred.
9236 int isl_basic_set_compare_at(struct isl_basic_set *bset1,
9237 struct isl_basic_set *bset2, int pos)
9239 isl_int opt;
9240 enum isl_lp_result res;
9241 int cmp;
9243 isl_int_init(opt);
9245 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
9247 if (res == isl_lp_empty)
9248 cmp = 0;
9249 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
9250 res == isl_lp_unbounded)
9251 cmp = 1;
9252 else if (res == isl_lp_ok && isl_int_is_neg(opt))
9253 cmp = -1;
9254 else
9255 cmp = -2;
9257 isl_int_clear(opt);
9258 return cmp;
9261 /* Given two basic sets bset1 and bset2, check whether
9262 * for any common value of the parameters and dimensions preceding pos
9263 * there is a value of dimension pos in bset1 that is larger
9264 * than a value of the same dimension in bset2.
9266 * Return
9267 * 1 if there exists such a pair
9268 * 0 if there is no such pair, but there is a pair of equal values
9269 * -1 otherwise
9270 * -2 if some error occurred.
9272 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
9273 __isl_keep isl_basic_set *bset2, int pos)
9275 isl_bool empty;
9276 isl_basic_map *bmap;
9277 unsigned dim1;
9279 dim1 = isl_basic_set_dim(bset1, isl_dim_set);
9280 bmap = join_initial(bset1, bset2, pos);
9281 bmap = isl_basic_map_order_ge(bmap, isl_dim_out, 0,
9282 isl_dim_out, dim1 - pos);
9283 empty = isl_basic_map_is_empty(bmap);
9284 if (empty < 0)
9285 goto error;
9286 if (empty) {
9287 isl_basic_map_free(bmap);
9288 return -1;
9290 bmap = isl_basic_map_order_gt(bmap, isl_dim_out, 0,
9291 isl_dim_out, dim1 - pos);
9292 empty = isl_basic_map_is_empty(bmap);
9293 if (empty < 0)
9294 goto error;
9295 isl_basic_map_free(bmap);
9296 if (empty)
9297 return 0;
9298 return 1;
9299 error:
9300 isl_basic_map_free(bmap);
9301 return -2;
9304 /* Given two sets set1 and set2, check whether
9305 * for any common value of the parameters and dimensions preceding pos
9306 * there is a value of dimension pos in set1 that is larger
9307 * than a value of the same dimension in set2.
9309 * Return
9310 * 1 if there exists such a pair
9311 * 0 if there is no such pair, but there is a pair of equal values
9312 * -1 otherwise
9313 * -2 if some error occurred.
9315 int isl_set_follows_at(__isl_keep isl_set *set1,
9316 __isl_keep isl_set *set2, int pos)
9318 int i, j;
9319 int follows = -1;
9321 if (!set1 || !set2)
9322 return -2;
9324 for (i = 0; i < set1->n; ++i)
9325 for (j = 0; j < set2->n; ++j) {
9326 int f;
9327 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
9328 if (f == 1 || f == -2)
9329 return f;
9330 if (f > follows)
9331 follows = f;
9334 return follows;
9337 static isl_bool isl_basic_map_plain_has_fixed_var(
9338 __isl_keep isl_basic_map *bmap, unsigned pos, isl_int *val)
9340 int i;
9341 int d;
9342 unsigned total;
9344 if (!bmap)
9345 return isl_bool_error;
9346 total = isl_basic_map_total_dim(bmap);
9347 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
9348 for (; d+1 > pos; --d)
9349 if (!isl_int_is_zero(bmap->eq[i][1+d]))
9350 break;
9351 if (d != pos)
9352 continue;
9353 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
9354 return isl_bool_false;
9355 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
9356 return isl_bool_false;
9357 if (!isl_int_is_one(bmap->eq[i][1+d]))
9358 return isl_bool_false;
9359 if (val)
9360 isl_int_neg(*val, bmap->eq[i][0]);
9361 return isl_bool_true;
9363 return isl_bool_false;
9366 static isl_bool isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
9367 unsigned pos, isl_int *val)
9369 int i;
9370 isl_int v;
9371 isl_int tmp;
9372 isl_bool fixed;
9374 if (!map)
9375 return isl_bool_error;
9376 if (map->n == 0)
9377 return isl_bool_false;
9378 if (map->n == 1)
9379 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
9380 isl_int_init(v);
9381 isl_int_init(tmp);
9382 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
9383 for (i = 1; fixed == isl_bool_true && i < map->n; ++i) {
9384 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
9385 if (fixed == isl_bool_true && isl_int_ne(tmp, v))
9386 fixed = isl_bool_false;
9388 if (val)
9389 isl_int_set(*val, v);
9390 isl_int_clear(tmp);
9391 isl_int_clear(v);
9392 return fixed;
9395 static isl_bool isl_basic_set_plain_has_fixed_var(
9396 __isl_keep isl_basic_set *bset, unsigned pos, isl_int *val)
9398 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset),
9399 pos, val);
9402 isl_bool isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
9403 enum isl_dim_type type, unsigned pos, isl_int *val)
9405 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
9406 return isl_bool_error;
9407 return isl_basic_map_plain_has_fixed_var(bmap,
9408 isl_basic_map_offset(bmap, type) - 1 + pos, val);
9411 /* If "bmap" obviously lies on a hyperplane where the given dimension
9412 * has a fixed value, then return that value.
9413 * Otherwise return NaN.
9415 __isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
9416 __isl_keep isl_basic_map *bmap,
9417 enum isl_dim_type type, unsigned pos)
9419 isl_ctx *ctx;
9420 isl_val *v;
9421 isl_bool fixed;
9423 if (!bmap)
9424 return NULL;
9425 ctx = isl_basic_map_get_ctx(bmap);
9426 v = isl_val_alloc(ctx);
9427 if (!v)
9428 return NULL;
9429 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
9430 if (fixed < 0)
9431 return isl_val_free(v);
9432 if (fixed) {
9433 isl_int_set_si(v->d, 1);
9434 return v;
9436 isl_val_free(v);
9437 return isl_val_nan(ctx);
9440 isl_bool isl_map_plain_is_fixed(__isl_keep isl_map *map,
9441 enum isl_dim_type type, unsigned pos, isl_int *val)
9443 if (pos >= isl_map_dim(map, type))
9444 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9445 "position out of bounds", return isl_bool_error);
9446 return isl_map_plain_has_fixed_var(map,
9447 map_offset(map, type) - 1 + pos, val);
9450 /* If "map" obviously lies on a hyperplane where the given dimension
9451 * has a fixed value, then return that value.
9452 * Otherwise return NaN.
9454 __isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
9455 enum isl_dim_type type, unsigned pos)
9457 isl_ctx *ctx;
9458 isl_val *v;
9459 isl_bool fixed;
9461 if (!map)
9462 return NULL;
9463 ctx = isl_map_get_ctx(map);
9464 v = isl_val_alloc(ctx);
9465 if (!v)
9466 return NULL;
9467 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
9468 if (fixed < 0)
9469 return isl_val_free(v);
9470 if (fixed) {
9471 isl_int_set_si(v->d, 1);
9472 return v;
9474 isl_val_free(v);
9475 return isl_val_nan(ctx);
9478 /* If "set" obviously lies on a hyperplane where the given dimension
9479 * has a fixed value, then return that value.
9480 * Otherwise return NaN.
9482 __isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
9483 enum isl_dim_type type, unsigned pos)
9485 return isl_map_plain_get_val_if_fixed(set, type, pos);
9488 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9489 * then return this fixed value in *val.
9491 isl_bool isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
9492 unsigned dim, isl_int *val)
9494 return isl_basic_set_plain_has_fixed_var(bset,
9495 isl_basic_set_n_param(bset) + dim, val);
9498 /* Return -1 if the constraint "c1" should be sorted before "c2"
9499 * and 1 if it should be sorted after "c2".
9500 * Return 0 if the two constraints are the same (up to the constant term).
9502 * In particular, if a constraint involves later variables than another
9503 * then it is sorted after this other constraint.
9504 * uset_gist depends on constraints without existentially quantified
9505 * variables sorting first.
9507 * For constraints that have the same latest variable, those
9508 * with the same coefficient for this latest variable (first in absolute value
9509 * and then in actual value) are grouped together.
9510 * This is useful for detecting pairs of constraints that can
9511 * be chained in their printed representation.
9513 * Finally, within a group, constraints are sorted according to
9514 * their coefficients (excluding the constant term).
9516 static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
9518 isl_int **c1 = (isl_int **) p1;
9519 isl_int **c2 = (isl_int **) p2;
9520 int l1, l2;
9521 unsigned size = *(unsigned *) arg;
9522 int cmp;
9524 l1 = isl_seq_last_non_zero(*c1 + 1, size);
9525 l2 = isl_seq_last_non_zero(*c2 + 1, size);
9527 if (l1 != l2)
9528 return l1 - l2;
9530 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9531 if (cmp != 0)
9532 return cmp;
9533 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9534 if (cmp != 0)
9535 return -cmp;
9537 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
9540 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9541 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9542 * and 0 if the two constraints are the same (up to the constant term).
9544 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
9545 isl_int *c1, isl_int *c2)
9547 unsigned total;
9549 if (!bmap)
9550 return -2;
9551 total = isl_basic_map_total_dim(bmap);
9552 return sort_constraint_cmp(&c1, &c2, &total);
9555 __isl_give isl_basic_map *isl_basic_map_sort_constraints(
9556 __isl_take isl_basic_map *bmap)
9558 unsigned total;
9560 if (!bmap)
9561 return NULL;
9562 if (bmap->n_ineq == 0)
9563 return bmap;
9564 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_SORTED))
9565 return bmap;
9566 total = isl_basic_map_total_dim(bmap);
9567 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
9568 &sort_constraint_cmp, &total) < 0)
9569 return isl_basic_map_free(bmap);
9570 ISL_F_SET(bmap, ISL_BASIC_MAP_SORTED);
9571 return bmap;
9574 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
9575 __isl_take isl_basic_set *bset)
9577 isl_basic_map *bmap = bset_to_bmap(bset);
9578 return bset_from_bmap(isl_basic_map_sort_constraints(bmap));
9581 __isl_give isl_basic_map *isl_basic_map_normalize(
9582 __isl_take isl_basic_map *bmap)
9584 bmap = isl_basic_map_remove_redundancies(bmap);
9585 bmap = isl_basic_map_sort_constraints(bmap);
9586 return bmap;
9588 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map *bmap1,
9589 __isl_keep isl_basic_map *bmap2)
9591 int i, cmp;
9592 unsigned total;
9593 isl_space *space1, *space2;
9595 if (!bmap1 || !bmap2)
9596 return -1;
9598 if (bmap1 == bmap2)
9599 return 0;
9600 space1 = isl_basic_map_peek_space(bmap1);
9601 space2 = isl_basic_map_peek_space(bmap2);
9602 cmp = isl_space_cmp(space1, space2);
9603 if (cmp)
9604 return cmp;
9605 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
9606 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
9607 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
9608 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
9609 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9610 return 0;
9611 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
9612 return 1;
9613 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9614 return -1;
9615 if (bmap1->n_eq != bmap2->n_eq)
9616 return bmap1->n_eq - bmap2->n_eq;
9617 if (bmap1->n_ineq != bmap2->n_ineq)
9618 return bmap1->n_ineq - bmap2->n_ineq;
9619 if (bmap1->n_div != bmap2->n_div)
9620 return bmap1->n_div - bmap2->n_div;
9621 total = isl_basic_map_total_dim(bmap1);
9622 for (i = 0; i < bmap1->n_eq; ++i) {
9623 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
9624 if (cmp)
9625 return cmp;
9627 for (i = 0; i < bmap1->n_ineq; ++i) {
9628 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
9629 if (cmp)
9630 return cmp;
9632 for (i = 0; i < bmap1->n_div; ++i) {
9633 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
9634 if (cmp)
9635 return cmp;
9637 return 0;
9640 int isl_basic_set_plain_cmp(__isl_keep isl_basic_set *bset1,
9641 __isl_keep isl_basic_set *bset2)
9643 return isl_basic_map_plain_cmp(bset1, bset2);
9646 int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
9648 int i, cmp;
9650 if (set1 == set2)
9651 return 0;
9652 if (set1->n != set2->n)
9653 return set1->n - set2->n;
9655 for (i = 0; i < set1->n; ++i) {
9656 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
9657 if (cmp)
9658 return cmp;
9661 return 0;
9664 isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
9665 __isl_keep isl_basic_map *bmap2)
9667 if (!bmap1 || !bmap2)
9668 return isl_bool_error;
9669 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
9672 isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
9673 __isl_keep isl_basic_set *bset2)
9675 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1),
9676 bset_to_bmap(bset2));
9679 static int qsort_bmap_cmp(const void *p1, const void *p2)
9681 isl_basic_map *bmap1 = *(isl_basic_map **) p1;
9682 isl_basic_map *bmap2 = *(isl_basic_map **) p2;
9684 return isl_basic_map_plain_cmp(bmap1, bmap2);
9687 /* Sort the basic maps of "map" and remove duplicate basic maps.
9689 * While removing basic maps, we make sure that the basic maps remain
9690 * sorted because isl_map_normalize expects the basic maps of the result
9691 * to be sorted.
9693 static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
9695 int i, j;
9697 map = isl_map_remove_empty_parts(map);
9698 if (!map)
9699 return NULL;
9700 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
9701 for (i = map->n - 1; i >= 1; --i) {
9702 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
9703 continue;
9704 isl_basic_map_free(map->p[i-1]);
9705 for (j = i; j < map->n; ++j)
9706 map->p[j - 1] = map->p[j];
9707 map->n--;
9710 return map;
9713 /* Remove obvious duplicates among the basic maps of "map".
9715 * Unlike isl_map_normalize, this function does not remove redundant
9716 * constraints and only removes duplicates that have exactly the same
9717 * constraints in the input. It does sort the constraints and
9718 * the basic maps to ease the detection of duplicates.
9720 * If "map" has already been normalized or if the basic maps are
9721 * disjoint, then there can be no duplicates.
9723 __isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
9725 int i;
9726 isl_basic_map *bmap;
9728 if (!map)
9729 return NULL;
9730 if (map->n <= 1)
9731 return map;
9732 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
9733 return map;
9734 for (i = 0; i < map->n; ++i) {
9735 bmap = isl_basic_map_copy(map->p[i]);
9736 bmap = isl_basic_map_sort_constraints(bmap);
9737 if (!bmap)
9738 return isl_map_free(map);
9739 isl_basic_map_free(map->p[i]);
9740 map->p[i] = bmap;
9743 map = sort_and_remove_duplicates(map);
9744 return map;
9747 /* We normalize in place, but if anything goes wrong we need
9748 * to return NULL, so we need to make sure we don't change the
9749 * meaning of any possible other copies of map.
9751 __isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
9753 int i;
9754 struct isl_basic_map *bmap;
9756 if (!map)
9757 return NULL;
9758 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
9759 return map;
9760 for (i = 0; i < map->n; ++i) {
9761 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
9762 if (!bmap)
9763 goto error;
9764 isl_basic_map_free(map->p[i]);
9765 map->p[i] = bmap;
9768 map = sort_and_remove_duplicates(map);
9769 if (map)
9770 ISL_F_SET(map, ISL_MAP_NORMALIZED);
9771 return map;
9772 error:
9773 isl_map_free(map);
9774 return NULL;
9777 struct isl_set *isl_set_normalize(struct isl_set *set)
9779 return set_from_map(isl_map_normalize(set_to_map(set)));
9782 isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
9783 __isl_keep isl_map *map2)
9785 int i;
9786 isl_bool equal;
9788 if (!map1 || !map2)
9789 return isl_bool_error;
9791 if (map1 == map2)
9792 return isl_bool_true;
9793 if (!isl_space_is_equal(map1->dim, map2->dim))
9794 return isl_bool_false;
9796 map1 = isl_map_copy(map1);
9797 map2 = isl_map_copy(map2);
9798 map1 = isl_map_normalize(map1);
9799 map2 = isl_map_normalize(map2);
9800 if (!map1 || !map2)
9801 goto error;
9802 equal = map1->n == map2->n;
9803 for (i = 0; equal && i < map1->n; ++i) {
9804 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
9805 if (equal < 0)
9806 goto error;
9808 isl_map_free(map1);
9809 isl_map_free(map2);
9810 return equal;
9811 error:
9812 isl_map_free(map1);
9813 isl_map_free(map2);
9814 return isl_bool_error;
9817 isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
9818 __isl_keep isl_set *set2)
9820 return isl_map_plain_is_equal(set_to_map(set1), set_to_map(set2));
9823 /* Return the basic maps in "map" as a list.
9825 __isl_give isl_basic_map_list *isl_map_get_basic_map_list(
9826 __isl_keep isl_map *map)
9828 int i;
9829 isl_ctx *ctx;
9830 isl_basic_map_list *list;
9832 if (!map)
9833 return NULL;
9834 ctx = isl_map_get_ctx(map);
9835 list = isl_basic_map_list_alloc(ctx, map->n);
9837 for (i = 0; i < map->n; ++i) {
9838 isl_basic_map *bmap;
9840 bmap = isl_basic_map_copy(map->p[i]);
9841 list = isl_basic_map_list_add(list, bmap);
9844 return list;
9847 /* Return the intersection of the elements in the non-empty list "list".
9848 * All elements are assumed to live in the same space.
9850 __isl_give isl_basic_map *isl_basic_map_list_intersect(
9851 __isl_take isl_basic_map_list *list)
9853 int i, n;
9854 isl_basic_map *bmap;
9856 if (!list)
9857 return NULL;
9858 n = isl_basic_map_list_n_basic_map(list);
9859 if (n < 1)
9860 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
9861 "expecting non-empty list", goto error);
9863 bmap = isl_basic_map_list_get_basic_map(list, 0);
9864 for (i = 1; i < n; ++i) {
9865 isl_basic_map *bmap_i;
9867 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9868 bmap = isl_basic_map_intersect(bmap, bmap_i);
9871 isl_basic_map_list_free(list);
9872 return bmap;
9873 error:
9874 isl_basic_map_list_free(list);
9875 return NULL;
9878 /* Return the intersection of the elements in the non-empty list "list".
9879 * All elements are assumed to live in the same space.
9881 __isl_give isl_basic_set *isl_basic_set_list_intersect(
9882 __isl_take isl_basic_set_list *list)
9884 return isl_basic_map_list_intersect(list);
9887 /* Return the union of the elements of "list".
9888 * The list is required to have at least one element.
9890 __isl_give isl_set *isl_basic_set_list_union(
9891 __isl_take isl_basic_set_list *list)
9893 int i, n;
9894 isl_space *space;
9895 isl_basic_set *bset;
9896 isl_set *set;
9898 if (!list)
9899 return NULL;
9900 n = isl_basic_set_list_n_basic_set(list);
9901 if (n < 1)
9902 isl_die(isl_basic_set_list_get_ctx(list), isl_error_invalid,
9903 "expecting non-empty list", goto error);
9905 bset = isl_basic_set_list_get_basic_set(list, 0);
9906 space = isl_basic_set_get_space(bset);
9907 isl_basic_set_free(bset);
9909 set = isl_set_alloc_space(space, n, 0);
9910 for (i = 0; i < n; ++i) {
9911 bset = isl_basic_set_list_get_basic_set(list, i);
9912 set = isl_set_add_basic_set(set, bset);
9915 isl_basic_set_list_free(list);
9916 return set;
9917 error:
9918 isl_basic_set_list_free(list);
9919 return NULL;
9922 /* Return the union of the elements in the non-empty list "list".
9923 * All elements are assumed to live in the same space.
9925 __isl_give isl_set *isl_set_list_union(__isl_take isl_set_list *list)
9927 int i, n;
9928 isl_set *set;
9930 if (!list)
9931 return NULL;
9932 n = isl_set_list_n_set(list);
9933 if (n < 1)
9934 isl_die(isl_set_list_get_ctx(list), isl_error_invalid,
9935 "expecting non-empty list", goto error);
9937 set = isl_set_list_get_set(list, 0);
9938 for (i = 1; i < n; ++i) {
9939 isl_set *set_i;
9941 set_i = isl_set_list_get_set(list, i);
9942 set = isl_set_union(set, set_i);
9945 isl_set_list_free(list);
9946 return set;
9947 error:
9948 isl_set_list_free(list);
9949 return NULL;
9952 __isl_give isl_basic_map *isl_basic_map_product(
9953 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9955 isl_space *dim_result = NULL;
9956 struct isl_basic_map *bmap;
9957 unsigned in1, in2, out1, out2, nparam, total, pos;
9958 struct isl_dim_map *dim_map1, *dim_map2;
9960 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
9961 goto error;
9962 dim_result = isl_space_product(isl_space_copy(bmap1->dim),
9963 isl_space_copy(bmap2->dim));
9965 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9966 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9967 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9968 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9969 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9971 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
9972 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9973 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9974 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9975 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9976 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9977 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9978 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9979 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9980 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9981 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9983 bmap = isl_basic_map_alloc_space(dim_result,
9984 bmap1->n_div + bmap2->n_div,
9985 bmap1->n_eq + bmap2->n_eq,
9986 bmap1->n_ineq + bmap2->n_ineq);
9987 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9988 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9989 bmap = isl_basic_map_simplify(bmap);
9990 return isl_basic_map_finalize(bmap);
9991 error:
9992 isl_basic_map_free(bmap1);
9993 isl_basic_map_free(bmap2);
9994 return NULL;
9997 __isl_give isl_basic_map *isl_basic_map_flat_product(
9998 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10000 isl_basic_map *prod;
10002 prod = isl_basic_map_product(bmap1, bmap2);
10003 prod = isl_basic_map_flatten(prod);
10004 return prod;
10007 __isl_give isl_basic_set *isl_basic_set_flat_product(
10008 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
10010 return isl_basic_map_flat_range_product(bset1, bset2);
10013 __isl_give isl_basic_map *isl_basic_map_domain_product(
10014 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10016 isl_space *space_result = NULL;
10017 isl_basic_map *bmap;
10018 unsigned in1, in2, out, nparam, total, pos;
10019 struct isl_dim_map *dim_map1, *dim_map2;
10021 if (!bmap1 || !bmap2)
10022 goto error;
10024 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
10025 isl_space_copy(bmap2->dim));
10027 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
10028 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
10029 out = isl_basic_map_dim(bmap1, isl_dim_out);
10030 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10032 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
10033 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10034 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10035 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10036 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10037 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10038 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
10039 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
10040 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
10041 isl_dim_map_div(dim_map1, bmap1, pos += out);
10042 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10044 bmap = isl_basic_map_alloc_space(space_result,
10045 bmap1->n_div + bmap2->n_div,
10046 bmap1->n_eq + bmap2->n_eq,
10047 bmap1->n_ineq + bmap2->n_ineq);
10048 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10049 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10050 bmap = isl_basic_map_simplify(bmap);
10051 return isl_basic_map_finalize(bmap);
10052 error:
10053 isl_basic_map_free(bmap1);
10054 isl_basic_map_free(bmap2);
10055 return NULL;
10058 __isl_give isl_basic_map *isl_basic_map_range_product(
10059 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10061 isl_bool rational;
10062 isl_space *dim_result = NULL;
10063 isl_basic_map *bmap;
10064 unsigned in, out1, out2, nparam, total, pos;
10065 struct isl_dim_map *dim_map1, *dim_map2;
10067 rational = isl_basic_map_is_rational(bmap1);
10068 if (rational >= 0 && rational)
10069 rational = isl_basic_map_is_rational(bmap2);
10070 if (!bmap1 || !bmap2 || rational < 0)
10071 goto error;
10073 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
10074 goto error;
10076 dim_result = isl_space_range_product(isl_space_copy(bmap1->dim),
10077 isl_space_copy(bmap2->dim));
10079 in = isl_basic_map_dim(bmap1, isl_dim_in);
10080 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
10081 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
10082 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10084 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
10085 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10086 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10087 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10088 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10089 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10090 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
10091 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
10092 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
10093 isl_dim_map_div(dim_map1, bmap1, pos += out2);
10094 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10096 bmap = isl_basic_map_alloc_space(dim_result,
10097 bmap1->n_div + bmap2->n_div,
10098 bmap1->n_eq + bmap2->n_eq,
10099 bmap1->n_ineq + bmap2->n_ineq);
10100 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10101 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10102 if (rational)
10103 bmap = isl_basic_map_set_rational(bmap);
10104 bmap = isl_basic_map_simplify(bmap);
10105 return isl_basic_map_finalize(bmap);
10106 error:
10107 isl_basic_map_free(bmap1);
10108 isl_basic_map_free(bmap2);
10109 return NULL;
10112 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
10113 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10115 isl_basic_map *prod;
10117 prod = isl_basic_map_range_product(bmap1, bmap2);
10118 prod = isl_basic_map_flatten_range(prod);
10119 return prod;
10122 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
10123 * and collect the results.
10124 * The result live in the space obtained by calling "space_product"
10125 * on the spaces of "map1" and "map2".
10126 * If "remove_duplicates" is set then the result may contain duplicates
10127 * (even if the inputs do not) and so we try and remove the obvious
10128 * duplicates.
10130 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
10131 __isl_take isl_map *map2,
10132 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
10133 __isl_take isl_space *right),
10134 __isl_give isl_basic_map *(*basic_map_product)(
10135 __isl_take isl_basic_map *left,
10136 __isl_take isl_basic_map *right),
10137 int remove_duplicates)
10139 unsigned flags = 0;
10140 struct isl_map *result;
10141 int i, j;
10142 isl_bool m;
10144 m = isl_map_has_equal_params(map1, map2);
10145 if (m < 0)
10146 goto error;
10147 if (!m)
10148 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
10149 "parameters don't match", goto error);
10151 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
10152 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
10153 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
10155 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
10156 isl_space_copy(map2->dim)),
10157 map1->n * map2->n, flags);
10158 if (!result)
10159 goto error;
10160 for (i = 0; i < map1->n; ++i)
10161 for (j = 0; j < map2->n; ++j) {
10162 struct isl_basic_map *part;
10163 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
10164 isl_basic_map_copy(map2->p[j]));
10165 if (isl_basic_map_is_empty(part))
10166 isl_basic_map_free(part);
10167 else
10168 result = isl_map_add_basic_map(result, part);
10169 if (!result)
10170 goto error;
10172 if (remove_duplicates)
10173 result = isl_map_remove_obvious_duplicates(result);
10174 isl_map_free(map1);
10175 isl_map_free(map2);
10176 return result;
10177 error:
10178 isl_map_free(map1);
10179 isl_map_free(map2);
10180 return NULL;
10183 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
10185 static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
10186 __isl_take isl_map *map2)
10188 return map_product(map1, map2, &isl_space_product,
10189 &isl_basic_map_product, 0);
10192 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
10193 __isl_take isl_map *map2)
10195 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
10198 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
10200 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
10201 __isl_take isl_map *map2)
10203 isl_map *prod;
10205 prod = isl_map_product(map1, map2);
10206 prod = isl_map_flatten(prod);
10207 return prod;
10210 /* Given two set A and B, construct its Cartesian product A x B.
10212 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
10214 return isl_map_range_product(set1, set2);
10217 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
10218 __isl_take isl_set *set2)
10220 return isl_map_flat_range_product(set1, set2);
10223 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10225 static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
10226 __isl_take isl_map *map2)
10228 return map_product(map1, map2, &isl_space_domain_product,
10229 &isl_basic_map_domain_product, 1);
10232 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10234 static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
10235 __isl_take isl_map *map2)
10237 return map_product(map1, map2, &isl_space_range_product,
10238 &isl_basic_map_range_product, 1);
10241 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
10242 __isl_take isl_map *map2)
10244 return isl_map_align_params_map_map_and(map1, map2,
10245 &map_domain_product_aligned);
10248 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
10249 __isl_take isl_map *map2)
10251 return isl_map_align_params_map_map_and(map1, map2,
10252 &map_range_product_aligned);
10255 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10257 __isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
10259 isl_space *space;
10260 int total1, keep1, total2, keep2;
10262 if (!map)
10263 return NULL;
10264 if (!isl_space_domain_is_wrapping(map->dim) ||
10265 !isl_space_range_is_wrapping(map->dim))
10266 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10267 "not a product", return isl_map_free(map));
10269 space = isl_map_get_space(map);
10270 total1 = isl_space_dim(space, isl_dim_in);
10271 total2 = isl_space_dim(space, isl_dim_out);
10272 space = isl_space_factor_domain(space);
10273 keep1 = isl_space_dim(space, isl_dim_in);
10274 keep2 = isl_space_dim(space, isl_dim_out);
10275 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
10276 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
10277 map = isl_map_reset_space(map, space);
10279 return map;
10282 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10284 __isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
10286 isl_space *space;
10287 int total1, keep1, total2, keep2;
10289 if (!map)
10290 return NULL;
10291 if (!isl_space_domain_is_wrapping(map->dim) ||
10292 !isl_space_range_is_wrapping(map->dim))
10293 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10294 "not a product", return isl_map_free(map));
10296 space = isl_map_get_space(map);
10297 total1 = isl_space_dim(space, isl_dim_in);
10298 total2 = isl_space_dim(space, isl_dim_out);
10299 space = isl_space_factor_range(space);
10300 keep1 = isl_space_dim(space, isl_dim_in);
10301 keep2 = isl_space_dim(space, isl_dim_out);
10302 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
10303 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
10304 map = isl_map_reset_space(map, space);
10306 return map;
10309 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10311 __isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
10313 isl_space *space;
10314 int total, keep;
10316 if (!map)
10317 return NULL;
10318 if (!isl_space_domain_is_wrapping(map->dim))
10319 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10320 "domain is not a product", return isl_map_free(map));
10322 space = isl_map_get_space(map);
10323 total = isl_space_dim(space, isl_dim_in);
10324 space = isl_space_domain_factor_domain(space);
10325 keep = isl_space_dim(space, isl_dim_in);
10326 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
10327 map = isl_map_reset_space(map, space);
10329 return map;
10332 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10334 __isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
10336 isl_space *space;
10337 int total, keep;
10339 if (!map)
10340 return NULL;
10341 if (!isl_space_domain_is_wrapping(map->dim))
10342 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10343 "domain is not a product", return isl_map_free(map));
10345 space = isl_map_get_space(map);
10346 total = isl_space_dim(space, isl_dim_in);
10347 space = isl_space_domain_factor_range(space);
10348 keep = isl_space_dim(space, isl_dim_in);
10349 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
10350 map = isl_map_reset_space(map, space);
10352 return map;
10355 /* Given a map A -> [B -> C], extract the map A -> B.
10357 __isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
10359 isl_space *space;
10360 int total, keep;
10362 if (!map)
10363 return NULL;
10364 if (!isl_space_range_is_wrapping(map->dim))
10365 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10366 "range is not a product", return isl_map_free(map));
10368 space = isl_map_get_space(map);
10369 total = isl_space_dim(space, isl_dim_out);
10370 space = isl_space_range_factor_domain(space);
10371 keep = isl_space_dim(space, isl_dim_out);
10372 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
10373 map = isl_map_reset_space(map, space);
10375 return map;
10378 /* Given a map A -> [B -> C], extract the map A -> C.
10380 __isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
10382 isl_space *space;
10383 int total, keep;
10385 if (!map)
10386 return NULL;
10387 if (!isl_space_range_is_wrapping(map->dim))
10388 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10389 "range is not a product", return isl_map_free(map));
10391 space = isl_map_get_space(map);
10392 total = isl_space_dim(space, isl_dim_out);
10393 space = isl_space_range_factor_range(space);
10394 keep = isl_space_dim(space, isl_dim_out);
10395 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
10396 map = isl_map_reset_space(map, space);
10398 return map;
10401 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10403 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
10404 __isl_take isl_map *map2)
10406 isl_map *prod;
10408 prod = isl_map_domain_product(map1, map2);
10409 prod = isl_map_flatten_domain(prod);
10410 return prod;
10413 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10415 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
10416 __isl_take isl_map *map2)
10418 isl_map *prod;
10420 prod = isl_map_range_product(map1, map2);
10421 prod = isl_map_flatten_range(prod);
10422 return prod;
10425 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
10427 int i;
10428 uint32_t hash = isl_hash_init();
10429 unsigned total;
10431 if (!bmap)
10432 return 0;
10433 bmap = isl_basic_map_copy(bmap);
10434 bmap = isl_basic_map_normalize(bmap);
10435 if (!bmap)
10436 return 0;
10437 total = isl_basic_map_total_dim(bmap);
10438 isl_hash_byte(hash, bmap->n_eq & 0xFF);
10439 for (i = 0; i < bmap->n_eq; ++i) {
10440 uint32_t c_hash;
10441 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
10442 isl_hash_hash(hash, c_hash);
10444 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
10445 for (i = 0; i < bmap->n_ineq; ++i) {
10446 uint32_t c_hash;
10447 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
10448 isl_hash_hash(hash, c_hash);
10450 isl_hash_byte(hash, bmap->n_div & 0xFF);
10451 for (i = 0; i < bmap->n_div; ++i) {
10452 uint32_t c_hash;
10453 if (isl_int_is_zero(bmap->div[i][0]))
10454 continue;
10455 isl_hash_byte(hash, i & 0xFF);
10456 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
10457 isl_hash_hash(hash, c_hash);
10459 isl_basic_map_free(bmap);
10460 return hash;
10463 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
10465 return isl_basic_map_get_hash(bset_to_bmap(bset));
10468 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
10470 int i;
10471 uint32_t hash;
10473 if (!map)
10474 return 0;
10475 map = isl_map_copy(map);
10476 map = isl_map_normalize(map);
10477 if (!map)
10478 return 0;
10480 hash = isl_hash_init();
10481 for (i = 0; i < map->n; ++i) {
10482 uint32_t bmap_hash;
10483 bmap_hash = isl_basic_map_get_hash(map->p[i]);
10484 isl_hash_hash(hash, bmap_hash);
10487 isl_map_free(map);
10489 return hash;
10492 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
10494 return isl_map_get_hash(set_to_map(set));
10497 /* Return the number of basic maps in the (current) representation of "map".
10499 int isl_map_n_basic_map(__isl_keep isl_map *map)
10501 return map ? map->n : 0;
10504 int isl_set_n_basic_set(__isl_keep isl_set *set)
10506 return set ? set->n : 0;
10509 isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
10510 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
10512 int i;
10514 if (!map)
10515 return isl_stat_error;
10517 for (i = 0; i < map->n; ++i)
10518 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
10519 return isl_stat_error;
10521 return isl_stat_ok;
10524 isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
10525 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
10527 int i;
10529 if (!set)
10530 return isl_stat_error;
10532 for (i = 0; i < set->n; ++i)
10533 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
10534 return isl_stat_error;
10536 return isl_stat_ok;
10539 /* Return a list of basic sets, the union of which is equal to "set".
10541 __isl_give isl_basic_set_list *isl_set_get_basic_set_list(
10542 __isl_keep isl_set *set)
10544 int i;
10545 isl_basic_set_list *list;
10547 if (!set)
10548 return NULL;
10550 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
10551 for (i = 0; i < set->n; ++i) {
10552 isl_basic_set *bset;
10554 bset = isl_basic_set_copy(set->p[i]);
10555 list = isl_basic_set_list_add(list, bset);
10558 return list;
10561 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
10563 isl_space *dim;
10565 if (!bset)
10566 return NULL;
10568 bset = isl_basic_set_cow(bset);
10569 if (!bset)
10570 return NULL;
10572 dim = isl_basic_set_get_space(bset);
10573 dim = isl_space_lift(dim, bset->n_div);
10574 if (!dim)
10575 goto error;
10576 isl_space_free(bset->dim);
10577 bset->dim = dim;
10578 bset->extra -= bset->n_div;
10579 bset->n_div = 0;
10581 bset = isl_basic_set_finalize(bset);
10583 return bset;
10584 error:
10585 isl_basic_set_free(bset);
10586 return NULL;
10589 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
10591 int i;
10592 isl_space *dim;
10593 unsigned n_div;
10595 set = set_from_map(isl_map_align_divs_internal(set_to_map(set)));
10597 if (!set)
10598 return NULL;
10600 set = isl_set_cow(set);
10601 if (!set)
10602 return NULL;
10604 n_div = set->p[0]->n_div;
10605 dim = isl_set_get_space(set);
10606 dim = isl_space_lift(dim, n_div);
10607 if (!dim)
10608 goto error;
10609 isl_space_free(set->dim);
10610 set->dim = dim;
10612 for (i = 0; i < set->n; ++i) {
10613 set->p[i] = isl_basic_set_lift(set->p[i]);
10614 if (!set->p[i])
10615 goto error;
10618 return set;
10619 error:
10620 isl_set_free(set);
10621 return NULL;
10624 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
10626 unsigned dim;
10627 int size = 0;
10629 if (!bset)
10630 return -1;
10632 dim = isl_basic_set_total_dim(bset);
10633 size += bset->n_eq * (1 + dim);
10634 size += bset->n_ineq * (1 + dim);
10635 size += bset->n_div * (2 + dim);
10637 return size;
10640 int isl_set_size(__isl_keep isl_set *set)
10642 int i;
10643 int size = 0;
10645 if (!set)
10646 return -1;
10648 for (i = 0; i < set->n; ++i)
10649 size += isl_basic_set_size(set->p[i]);
10651 return size;
10654 /* Check if there is any lower bound (if lower == 0) and/or upper
10655 * bound (if upper == 0) on the specified dim.
10657 static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10658 enum isl_dim_type type, unsigned pos, int lower, int upper)
10660 int i;
10662 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
10663 return isl_bool_error;
10665 pos += isl_basic_map_offset(bmap, type);
10667 for (i = 0; i < bmap->n_div; ++i) {
10668 if (isl_int_is_zero(bmap->div[i][0]))
10669 continue;
10670 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
10671 return isl_bool_true;
10674 for (i = 0; i < bmap->n_eq; ++i)
10675 if (!isl_int_is_zero(bmap->eq[i][pos]))
10676 return isl_bool_true;
10678 for (i = 0; i < bmap->n_ineq; ++i) {
10679 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
10680 if (sgn > 0)
10681 lower = 1;
10682 if (sgn < 0)
10683 upper = 1;
10686 return lower && upper;
10689 isl_bool isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10690 enum isl_dim_type type, unsigned pos)
10692 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
10695 isl_bool isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
10696 enum isl_dim_type type, unsigned pos)
10698 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
10701 isl_bool isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
10702 enum isl_dim_type type, unsigned pos)
10704 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
10707 isl_bool isl_map_dim_is_bounded(__isl_keep isl_map *map,
10708 enum isl_dim_type type, unsigned pos)
10710 int i;
10712 if (!map)
10713 return isl_bool_error;
10715 for (i = 0; i < map->n; ++i) {
10716 isl_bool bounded;
10717 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
10718 if (bounded < 0 || !bounded)
10719 return bounded;
10722 return isl_bool_true;
10725 /* Return true if the specified dim is involved in both an upper bound
10726 * and a lower bound.
10728 isl_bool isl_set_dim_is_bounded(__isl_keep isl_set *set,
10729 enum isl_dim_type type, unsigned pos)
10731 return isl_map_dim_is_bounded(set_to_map(set), type, pos);
10734 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10736 static isl_bool has_any_bound(__isl_keep isl_map *map,
10737 enum isl_dim_type type, unsigned pos,
10738 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10739 enum isl_dim_type type, unsigned pos))
10741 int i;
10743 if (!map)
10744 return isl_bool_error;
10746 for (i = 0; i < map->n; ++i) {
10747 isl_bool bounded;
10748 bounded = fn(map->p[i], type, pos);
10749 if (bounded < 0 || bounded)
10750 return bounded;
10753 return isl_bool_false;
10756 /* Return 1 if the specified dim is involved in any lower bound.
10758 isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
10759 enum isl_dim_type type, unsigned pos)
10761 return has_any_bound(set, type, pos,
10762 &isl_basic_map_dim_has_lower_bound);
10765 /* Return 1 if the specified dim is involved in any upper bound.
10767 isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
10768 enum isl_dim_type type, unsigned pos)
10770 return has_any_bound(set, type, pos,
10771 &isl_basic_map_dim_has_upper_bound);
10774 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10776 static isl_bool has_bound(__isl_keep isl_map *map,
10777 enum isl_dim_type type, unsigned pos,
10778 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10779 enum isl_dim_type type, unsigned pos))
10781 int i;
10783 if (!map)
10784 return isl_bool_error;
10786 for (i = 0; i < map->n; ++i) {
10787 isl_bool bounded;
10788 bounded = fn(map->p[i], type, pos);
10789 if (bounded < 0 || !bounded)
10790 return bounded;
10793 return isl_bool_true;
10796 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10798 isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
10799 enum isl_dim_type type, unsigned pos)
10801 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
10804 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10806 isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
10807 enum isl_dim_type type, unsigned pos)
10809 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
10812 /* For each of the "n" variables starting at "first", determine
10813 * the sign of the variable and put the results in the first "n"
10814 * elements of the array "signs".
10815 * Sign
10816 * 1 means that the variable is non-negative
10817 * -1 means that the variable is non-positive
10818 * 0 means the variable attains both positive and negative values.
10820 isl_stat isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
10821 unsigned first, unsigned n, int *signs)
10823 isl_vec *bound = NULL;
10824 struct isl_tab *tab = NULL;
10825 struct isl_tab_undo *snap;
10826 int i;
10828 if (!bset || !signs)
10829 return isl_stat_error;
10831 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
10832 tab = isl_tab_from_basic_set(bset, 0);
10833 if (!bound || !tab)
10834 goto error;
10836 isl_seq_clr(bound->el, bound->size);
10837 isl_int_set_si(bound->el[0], -1);
10839 snap = isl_tab_snap(tab);
10840 for (i = 0; i < n; ++i) {
10841 int empty;
10843 isl_int_set_si(bound->el[1 + first + i], -1);
10844 if (isl_tab_add_ineq(tab, bound->el) < 0)
10845 goto error;
10846 empty = tab->empty;
10847 isl_int_set_si(bound->el[1 + first + i], 0);
10848 if (isl_tab_rollback(tab, snap) < 0)
10849 goto error;
10851 if (empty) {
10852 signs[i] = 1;
10853 continue;
10856 isl_int_set_si(bound->el[1 + first + i], 1);
10857 if (isl_tab_add_ineq(tab, bound->el) < 0)
10858 goto error;
10859 empty = tab->empty;
10860 isl_int_set_si(bound->el[1 + first + i], 0);
10861 if (isl_tab_rollback(tab, snap) < 0)
10862 goto error;
10864 signs[i] = empty ? -1 : 0;
10867 isl_tab_free(tab);
10868 isl_vec_free(bound);
10869 return isl_stat_ok;
10870 error:
10871 isl_tab_free(tab);
10872 isl_vec_free(bound);
10873 return isl_stat_error;
10876 isl_stat isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
10877 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
10879 if (!bset || !signs)
10880 return isl_stat_error;
10881 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
10882 return isl_stat_error);
10884 first += pos(bset->dim, type) - 1;
10885 return isl_basic_set_vars_get_sign(bset, first, n, signs);
10888 /* Is it possible for the integer division "div" to depend (possibly
10889 * indirectly) on any output dimensions?
10891 * If the div is undefined, then we conservatively assume that it
10892 * may depend on them.
10893 * Otherwise, we check if it actually depends on them or on any integer
10894 * divisions that may depend on them.
10896 static isl_bool div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
10898 int i;
10899 unsigned n_out, o_out;
10900 unsigned n_div, o_div;
10902 if (isl_int_is_zero(bmap->div[div][0]))
10903 return isl_bool_true;
10905 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10906 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10908 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
10909 return isl_bool_true;
10911 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10912 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10914 for (i = 0; i < n_div; ++i) {
10915 isl_bool may_involve;
10917 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
10918 continue;
10919 may_involve = div_may_involve_output(bmap, i);
10920 if (may_involve < 0 || may_involve)
10921 return may_involve;
10924 return isl_bool_false;
10927 /* Return the first integer division of "bmap" in the range
10928 * [first, first + n[ that may depend on any output dimensions and
10929 * that has a non-zero coefficient in "c" (where the first coefficient
10930 * in "c" corresponds to integer division "first").
10932 static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
10933 isl_int *c, int first, int n)
10935 int k;
10937 if (!bmap)
10938 return -1;
10940 for (k = first; k < first + n; ++k) {
10941 isl_bool may_involve;
10943 if (isl_int_is_zero(c[k]))
10944 continue;
10945 may_involve = div_may_involve_output(bmap, k);
10946 if (may_involve < 0)
10947 return -1;
10948 if (may_involve)
10949 return k;
10952 return first + n;
10955 /* Look for a pair of inequality constraints in "bmap" of the form
10957 * -l + i >= 0 or i >= l
10958 * and
10959 * n + l - i >= 0 or i <= l + n
10961 * with n < "m" and i the output dimension at position "pos".
10962 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10963 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10964 * and earlier output dimensions, as well as integer divisions that do
10965 * not involve any of the output dimensions.
10967 * Return the index of the first inequality constraint or bmap->n_ineq
10968 * if no such pair can be found.
10970 static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
10971 int pos, isl_int m)
10973 int i, j;
10974 isl_ctx *ctx;
10975 unsigned total;
10976 unsigned n_div, o_div;
10977 unsigned n_out, o_out;
10978 int less;
10980 if (!bmap)
10981 return -1;
10983 ctx = isl_basic_map_get_ctx(bmap);
10984 total = isl_basic_map_total_dim(bmap);
10985 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10986 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10987 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10988 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10989 for (i = 0; i < bmap->n_ineq; ++i) {
10990 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
10991 continue;
10992 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
10993 n_out - (pos + 1)) != -1)
10994 continue;
10995 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
10996 0, n_div) < n_div)
10997 continue;
10998 for (j = i + 1; j < bmap->n_ineq; ++j) {
10999 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
11000 ctx->one))
11001 continue;
11002 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
11003 bmap->ineq[j] + 1, total))
11004 continue;
11005 break;
11007 if (j >= bmap->n_ineq)
11008 continue;
11009 isl_int_add(bmap->ineq[i][0],
11010 bmap->ineq[i][0], bmap->ineq[j][0]);
11011 less = isl_int_abs_lt(bmap->ineq[i][0], m);
11012 isl_int_sub(bmap->ineq[i][0],
11013 bmap->ineq[i][0], bmap->ineq[j][0]);
11014 if (!less)
11015 continue;
11016 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
11017 return i;
11018 else
11019 return j;
11022 return bmap->n_ineq;
11025 /* Return the index of the equality of "bmap" that defines
11026 * the output dimension "pos" in terms of earlier dimensions.
11027 * The equality may also involve integer divisions, as long
11028 * as those integer divisions are defined in terms of
11029 * parameters or input dimensions.
11030 * In this case, *div is set to the number of integer divisions and
11031 * *ineq is set to the number of inequality constraints (provided
11032 * div and ineq are not NULL).
11034 * The equality may also involve a single integer division involving
11035 * the output dimensions (typically only output dimension "pos") as
11036 * long as the coefficient of output dimension "pos" is 1 or -1 and
11037 * there is a pair of constraints i >= l and i <= l + n, with i referring
11038 * to output dimension "pos", l an expression involving only earlier
11039 * dimensions and n smaller than the coefficient of the integer division
11040 * in the equality. In this case, the output dimension can be defined
11041 * in terms of a modulo expression that does not involve the integer division.
11042 * *div is then set to this single integer division and
11043 * *ineq is set to the index of constraint i >= l.
11045 * Return bmap->n_eq if there is no such equality.
11046 * Return -1 on error.
11048 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
11049 int pos, int *div, int *ineq)
11051 int j, k, l;
11052 unsigned n_out, o_out;
11053 unsigned n_div, o_div;
11055 if (!bmap)
11056 return -1;
11058 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11059 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11060 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11061 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11063 if (ineq)
11064 *ineq = bmap->n_ineq;
11065 if (div)
11066 *div = n_div;
11067 for (j = 0; j < bmap->n_eq; ++j) {
11068 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
11069 continue;
11070 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
11071 n_out - (pos + 1)) != -1)
11072 continue;
11073 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11074 0, n_div);
11075 if (k >= n_div)
11076 return j;
11077 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
11078 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
11079 continue;
11080 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11081 k + 1, n_div - (k+1)) < n_div)
11082 continue;
11083 l = find_modulo_constraint_pair(bmap, pos,
11084 bmap->eq[j][o_div + k]);
11085 if (l < 0)
11086 return -1;
11087 if (l >= bmap->n_ineq)
11088 continue;
11089 if (div)
11090 *div = k;
11091 if (ineq)
11092 *ineq = l;
11093 return j;
11096 return bmap->n_eq;
11099 /* Check if the given basic map is obviously single-valued.
11100 * In particular, for each output dimension, check that there is
11101 * an equality that defines the output dimension in terms of
11102 * earlier dimensions.
11104 isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
11106 int i;
11107 unsigned n_out;
11109 if (!bmap)
11110 return isl_bool_error;
11112 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11114 for (i = 0; i < n_out; ++i) {
11115 int eq;
11117 eq = isl_basic_map_output_defining_equality(bmap, i,
11118 NULL, NULL);
11119 if (eq < 0)
11120 return isl_bool_error;
11121 if (eq >= bmap->n_eq)
11122 return isl_bool_false;
11125 return isl_bool_true;
11128 /* Check if the given basic map is single-valued.
11129 * We simply compute
11131 * M \circ M^-1
11133 * and check if the result is a subset of the identity mapping.
11135 isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
11137 isl_space *space;
11138 isl_basic_map *test;
11139 isl_basic_map *id;
11140 isl_bool sv;
11142 sv = isl_basic_map_plain_is_single_valued(bmap);
11143 if (sv < 0 || sv)
11144 return sv;
11146 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
11147 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
11149 space = isl_basic_map_get_space(bmap);
11150 space = isl_space_map_from_set(isl_space_range(space));
11151 id = isl_basic_map_identity(space);
11153 sv = isl_basic_map_is_subset(test, id);
11155 isl_basic_map_free(test);
11156 isl_basic_map_free(id);
11158 return sv;
11161 /* Check if the given map is obviously single-valued.
11163 isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
11165 if (!map)
11166 return isl_bool_error;
11167 if (map->n == 0)
11168 return isl_bool_true;
11169 if (map->n >= 2)
11170 return isl_bool_false;
11172 return isl_basic_map_plain_is_single_valued(map->p[0]);
11175 /* Check if the given map is single-valued.
11176 * We simply compute
11178 * M \circ M^-1
11180 * and check if the result is a subset of the identity mapping.
11182 isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
11184 isl_space *dim;
11185 isl_map *test;
11186 isl_map *id;
11187 isl_bool sv;
11189 sv = isl_map_plain_is_single_valued(map);
11190 if (sv < 0 || sv)
11191 return sv;
11193 test = isl_map_reverse(isl_map_copy(map));
11194 test = isl_map_apply_range(test, isl_map_copy(map));
11196 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
11197 id = isl_map_identity(dim);
11199 sv = isl_map_is_subset(test, id);
11201 isl_map_free(test);
11202 isl_map_free(id);
11204 return sv;
11207 isl_bool isl_map_is_injective(__isl_keep isl_map *map)
11209 isl_bool in;
11211 map = isl_map_copy(map);
11212 map = isl_map_reverse(map);
11213 in = isl_map_is_single_valued(map);
11214 isl_map_free(map);
11216 return in;
11219 /* Check if the given map is obviously injective.
11221 isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
11223 isl_bool in;
11225 map = isl_map_copy(map);
11226 map = isl_map_reverse(map);
11227 in = isl_map_plain_is_single_valued(map);
11228 isl_map_free(map);
11230 return in;
11233 isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
11235 isl_bool sv;
11237 sv = isl_map_is_single_valued(map);
11238 if (sv < 0 || !sv)
11239 return sv;
11241 return isl_map_is_injective(map);
11244 isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
11246 return isl_map_is_single_valued(set_to_map(set));
11249 /* Does "map" only map elements to themselves?
11251 * If the domain and range spaces are different, then "map"
11252 * is considered not to be an identity relation, even if it is empty.
11253 * Otherwise, construct the maximal identity relation and
11254 * check whether "map" is a subset of this relation.
11256 isl_bool isl_map_is_identity(__isl_keep isl_map *map)
11258 isl_space *space;
11259 isl_map *id;
11260 isl_bool equal, is_identity;
11262 space = isl_map_get_space(map);
11263 equal = isl_space_tuple_is_equal(space, isl_dim_in, space, isl_dim_out);
11264 isl_space_free(space);
11265 if (equal < 0 || !equal)
11266 return equal;
11268 id = isl_map_identity(isl_map_get_space(map));
11269 is_identity = isl_map_is_subset(map, id);
11270 isl_map_free(id);
11272 return is_identity;
11275 int isl_map_is_translation(__isl_keep isl_map *map)
11277 int ok;
11278 isl_set *delta;
11280 delta = isl_map_deltas(isl_map_copy(map));
11281 ok = isl_set_is_singleton(delta);
11282 isl_set_free(delta);
11284 return ok;
11287 static int unique(isl_int *p, unsigned pos, unsigned len)
11289 if (isl_seq_first_non_zero(p, pos) != -1)
11290 return 0;
11291 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
11292 return 0;
11293 return 1;
11296 isl_bool isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
11298 int i, j;
11299 unsigned nvar;
11300 unsigned ovar;
11302 if (!bset)
11303 return isl_bool_error;
11305 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
11306 return isl_bool_false;
11308 nvar = isl_basic_set_dim(bset, isl_dim_set);
11309 ovar = isl_space_offset(bset->dim, isl_dim_set);
11310 for (j = 0; j < nvar; ++j) {
11311 int lower = 0, upper = 0;
11312 for (i = 0; i < bset->n_eq; ++i) {
11313 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
11314 continue;
11315 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
11316 return isl_bool_false;
11317 break;
11319 if (i < bset->n_eq)
11320 continue;
11321 for (i = 0; i < bset->n_ineq; ++i) {
11322 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
11323 continue;
11324 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
11325 return isl_bool_false;
11326 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
11327 lower = 1;
11328 else
11329 upper = 1;
11331 if (!lower || !upper)
11332 return isl_bool_false;
11335 return isl_bool_true;
11338 isl_bool isl_set_is_box(__isl_keep isl_set *set)
11340 if (!set)
11341 return isl_bool_error;
11342 if (set->n != 1)
11343 return isl_bool_false;
11345 return isl_basic_set_is_box(set->p[0]);
11348 isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
11350 if (!bset)
11351 return isl_bool_error;
11353 return isl_space_is_wrapping(bset->dim);
11356 isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
11358 if (!set)
11359 return isl_bool_error;
11361 return isl_space_is_wrapping(set->dim);
11364 /* Modify the space of "map" through a call to "change".
11365 * If "can_change" is set (not NULL), then first call it to check
11366 * if the modification is allowed, printing the error message "cannot_change"
11367 * if it is not.
11369 static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
11370 isl_bool (*can_change)(__isl_keep isl_map *map),
11371 const char *cannot_change,
11372 __isl_give isl_space *(*change)(__isl_take isl_space *space))
11374 isl_bool ok;
11375 isl_space *space;
11377 if (!map)
11378 return NULL;
11380 ok = can_change ? can_change(map) : isl_bool_true;
11381 if (ok < 0)
11382 return isl_map_free(map);
11383 if (!ok)
11384 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
11385 return isl_map_free(map));
11387 space = change(isl_map_get_space(map));
11388 map = isl_map_reset_space(map, space);
11390 return map;
11393 /* Is the domain of "map" a wrapped relation?
11395 isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
11397 if (!map)
11398 return isl_bool_error;
11400 return isl_space_domain_is_wrapping(map->dim);
11403 /* Does "map" have a wrapped relation in both domain and range?
11405 isl_bool isl_map_is_product(__isl_keep isl_map *map)
11407 return isl_space_is_product(isl_map_peek_space(map));
11410 /* Is the range of "map" a wrapped relation?
11412 isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
11414 if (!map)
11415 return isl_bool_error;
11417 return isl_space_range_is_wrapping(map->dim);
11420 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
11422 bmap = isl_basic_map_cow(bmap);
11423 if (!bmap)
11424 return NULL;
11426 bmap->dim = isl_space_wrap(bmap->dim);
11427 if (!bmap->dim)
11428 goto error;
11430 bmap = isl_basic_map_finalize(bmap);
11432 return bset_from_bmap(bmap);
11433 error:
11434 isl_basic_map_free(bmap);
11435 return NULL;
11438 /* Given a map A -> B, return the set (A -> B).
11440 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
11442 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
11445 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
11447 bset = isl_basic_set_cow(bset);
11448 if (!bset)
11449 return NULL;
11451 bset->dim = isl_space_unwrap(bset->dim);
11452 if (!bset->dim)
11453 goto error;
11455 bset = isl_basic_set_finalize(bset);
11457 return bset_to_bmap(bset);
11458 error:
11459 isl_basic_set_free(bset);
11460 return NULL;
11463 /* Given a set (A -> B), return the map A -> B.
11464 * Error out if "set" is not of the form (A -> B).
11466 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
11468 return isl_map_change_space(set, &isl_set_is_wrapping,
11469 "not a wrapping set", &isl_space_unwrap);
11472 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
11473 enum isl_dim_type type)
11475 if (!bmap)
11476 return NULL;
11478 if (!isl_space_is_named_or_nested(bmap->dim, type))
11479 return bmap;
11481 bmap = isl_basic_map_cow(bmap);
11482 if (!bmap)
11483 return NULL;
11485 bmap->dim = isl_space_reset(bmap->dim, type);
11486 if (!bmap->dim)
11487 goto error;
11489 bmap = isl_basic_map_finalize(bmap);
11491 return bmap;
11492 error:
11493 isl_basic_map_free(bmap);
11494 return NULL;
11497 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
11498 enum isl_dim_type type)
11500 int i;
11502 if (!map)
11503 return NULL;
11505 if (!isl_space_is_named_or_nested(map->dim, type))
11506 return map;
11508 map = isl_map_cow(map);
11509 if (!map)
11510 return NULL;
11512 for (i = 0; i < map->n; ++i) {
11513 map->p[i] = isl_basic_map_reset(map->p[i], type);
11514 if (!map->p[i])
11515 goto error;
11517 map->dim = isl_space_reset(map->dim, type);
11518 if (!map->dim)
11519 goto error;
11521 return map;
11522 error:
11523 isl_map_free(map);
11524 return NULL;
11527 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
11529 if (!bmap)
11530 return NULL;
11532 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
11533 return bmap;
11535 bmap = isl_basic_map_cow(bmap);
11536 if (!bmap)
11537 return NULL;
11539 bmap->dim = isl_space_flatten(bmap->dim);
11540 if (!bmap->dim)
11541 goto error;
11543 bmap = isl_basic_map_finalize(bmap);
11545 return bmap;
11546 error:
11547 isl_basic_map_free(bmap);
11548 return NULL;
11551 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
11553 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset)));
11556 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
11557 __isl_take isl_basic_map *bmap)
11559 if (!bmap)
11560 return NULL;
11562 if (!bmap->dim->nested[0])
11563 return bmap;
11565 bmap = isl_basic_map_cow(bmap);
11566 if (!bmap)
11567 return NULL;
11569 bmap->dim = isl_space_flatten_domain(bmap->dim);
11570 if (!bmap->dim)
11571 goto error;
11573 bmap = isl_basic_map_finalize(bmap);
11575 return bmap;
11576 error:
11577 isl_basic_map_free(bmap);
11578 return NULL;
11581 __isl_give isl_basic_map *isl_basic_map_flatten_range(
11582 __isl_take isl_basic_map *bmap)
11584 if (!bmap)
11585 return NULL;
11587 if (!bmap->dim->nested[1])
11588 return bmap;
11590 bmap = isl_basic_map_cow(bmap);
11591 if (!bmap)
11592 return NULL;
11594 bmap->dim = isl_space_flatten_range(bmap->dim);
11595 if (!bmap->dim)
11596 goto error;
11598 bmap = isl_basic_map_finalize(bmap);
11600 return bmap;
11601 error:
11602 isl_basic_map_free(bmap);
11603 return NULL;
11606 /* Remove any internal structure from the spaces of domain and range of "map".
11608 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
11610 if (!map)
11611 return NULL;
11613 if (!map->dim->nested[0] && !map->dim->nested[1])
11614 return map;
11616 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
11619 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
11621 return set_from_map(isl_map_flatten(set_to_map(set)));
11624 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
11626 isl_space *dim, *flat_dim;
11627 isl_map *map;
11629 dim = isl_set_get_space(set);
11630 flat_dim = isl_space_flatten(isl_space_copy(dim));
11631 map = isl_map_identity(isl_space_join(isl_space_reverse(dim), flat_dim));
11632 map = isl_map_intersect_domain(map, set);
11634 return map;
11637 /* Remove any internal structure from the space of the domain of "map".
11639 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
11641 if (!map)
11642 return NULL;
11644 if (!map->dim->nested[0])
11645 return map;
11647 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
11650 /* Remove any internal structure from the space of the range of "map".
11652 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
11654 if (!map)
11655 return NULL;
11657 if (!map->dim->nested[1])
11658 return map;
11660 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
11663 /* Reorder the dimensions of "bmap" according to the given dim_map
11664 * and set the dimension specification to "space" and
11665 * perform Gaussian elimination on the result.
11667 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
11668 __isl_take isl_space *space, __isl_take struct isl_dim_map *dim_map)
11670 isl_basic_map *res;
11671 unsigned flags;
11672 unsigned n_div;
11674 if (!bmap || !space || !dim_map)
11675 goto error;
11677 flags = bmap->flags;
11678 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
11679 ISL_FL_CLR(flags, ISL_BASIC_MAP_SORTED);
11680 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
11681 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11682 res = isl_basic_map_alloc_space(space, n_div, bmap->n_eq, bmap->n_ineq);
11683 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
11684 if (res)
11685 res->flags = flags;
11686 res = isl_basic_map_gauss(res, NULL);
11687 res = isl_basic_map_finalize(res);
11688 return res;
11689 error:
11690 free(dim_map);
11691 isl_basic_map_free(bmap);
11692 isl_space_free(space);
11693 return NULL;
11696 /* Reorder the dimensions of "map" according to given reordering.
11698 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
11699 __isl_take isl_reordering *r)
11701 int i;
11702 struct isl_dim_map *dim_map;
11704 map = isl_map_cow(map);
11705 dim_map = isl_dim_map_from_reordering(r);
11706 if (!map || !r || !dim_map)
11707 goto error;
11709 for (i = 0; i < map->n; ++i) {
11710 struct isl_dim_map *dim_map_i;
11711 isl_space *space;
11713 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
11715 space = isl_reordering_get_space(r);
11716 map->p[i] = isl_basic_map_realign(map->p[i], space, dim_map_i);
11718 if (!map->p[i])
11719 goto error;
11722 map = isl_map_reset_space(map, isl_reordering_get_space(r));
11723 map = isl_map_unmark_normalized(map);
11725 isl_reordering_free(r);
11726 free(dim_map);
11727 return map;
11728 error:
11729 free(dim_map);
11730 isl_map_free(map);
11731 isl_reordering_free(r);
11732 return NULL;
11735 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
11736 __isl_take isl_reordering *r)
11738 return set_from_map(isl_map_realign(set_to_map(set), r));
11741 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
11742 __isl_take isl_space *model)
11744 isl_ctx *ctx;
11745 isl_bool aligned;
11747 if (!map || !model)
11748 goto error;
11750 ctx = isl_space_get_ctx(model);
11751 if (!isl_space_has_named_params(model))
11752 isl_die(ctx, isl_error_invalid,
11753 "model has unnamed parameters", goto error);
11754 if (isl_map_check_named_params(map) < 0)
11755 goto error;
11756 aligned = isl_map_space_has_equal_params(map, model);
11757 if (aligned < 0)
11758 goto error;
11759 if (!aligned) {
11760 isl_reordering *exp;
11762 exp = isl_parameter_alignment_reordering(map->dim, model);
11763 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
11764 map = isl_map_realign(map, exp);
11767 isl_space_free(model);
11768 return map;
11769 error:
11770 isl_space_free(model);
11771 isl_map_free(map);
11772 return NULL;
11775 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
11776 __isl_take isl_space *model)
11778 return isl_map_align_params(set, model);
11781 /* Align the parameters of "bmap" to those of "model", introducing
11782 * additional parameters if needed.
11784 __isl_give isl_basic_map *isl_basic_map_align_params(
11785 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
11787 isl_ctx *ctx;
11788 isl_bool equal_params;
11790 if (!bmap || !model)
11791 goto error;
11793 ctx = isl_space_get_ctx(model);
11794 if (!isl_space_has_named_params(model))
11795 isl_die(ctx, isl_error_invalid,
11796 "model has unnamed parameters", goto error);
11797 if (isl_basic_map_check_named_params(bmap) < 0)
11798 goto error;
11799 equal_params = isl_space_has_equal_params(bmap->dim, model);
11800 if (equal_params < 0)
11801 goto error;
11802 if (!equal_params) {
11803 isl_reordering *exp;
11804 struct isl_dim_map *dim_map;
11806 exp = isl_parameter_alignment_reordering(bmap->dim, model);
11807 exp = isl_reordering_extend_space(exp,
11808 isl_basic_map_get_space(bmap));
11809 dim_map = isl_dim_map_from_reordering(exp);
11810 bmap = isl_basic_map_realign(bmap,
11811 isl_reordering_get_space(exp),
11812 isl_dim_map_extend(dim_map, bmap));
11813 isl_reordering_free(exp);
11814 free(dim_map);
11817 isl_space_free(model);
11818 return bmap;
11819 error:
11820 isl_space_free(model);
11821 isl_basic_map_free(bmap);
11822 return NULL;
11825 /* Do "bset" and "space" have the same parameters?
11827 isl_bool isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set *bset,
11828 __isl_keep isl_space *space)
11830 isl_space *bset_space;
11832 bset_space = isl_basic_set_peek_space(bset);
11833 return isl_space_has_equal_params(bset_space, space);
11836 /* Do "map" and "space" have the same parameters?
11838 isl_bool isl_map_space_has_equal_params(__isl_keep isl_map *map,
11839 __isl_keep isl_space *space)
11841 isl_space *map_space;
11843 map_space = isl_map_peek_space(map);
11844 return isl_space_has_equal_params(map_space, space);
11847 /* Do "set" and "space" have the same parameters?
11849 isl_bool isl_set_space_has_equal_params(__isl_keep isl_set *set,
11850 __isl_keep isl_space *space)
11852 return isl_map_space_has_equal_params(set_to_map(set), space);
11855 /* Align the parameters of "bset" to those of "model", introducing
11856 * additional parameters if needed.
11858 __isl_give isl_basic_set *isl_basic_set_align_params(
11859 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
11861 return isl_basic_map_align_params(bset, model);
11864 /* Drop all parameters not referenced by "map".
11866 __isl_give isl_map *isl_map_drop_unused_params(__isl_take isl_map *map)
11868 int i;
11870 if (isl_map_check_named_params(map) < 0)
11871 return isl_map_free(map);
11873 for (i = isl_map_dim(map, isl_dim_param) - 1; i >= 0; i--) {
11874 isl_bool involves;
11876 involves = isl_map_involves_dims(map, isl_dim_param, i, 1);
11877 if (involves < 0)
11878 return isl_map_free(map);
11879 if (!involves)
11880 map = isl_map_project_out(map, isl_dim_param, i, 1);
11883 return map;
11886 /* Drop all parameters not referenced by "set".
11888 __isl_give isl_set *isl_set_drop_unused_params(
11889 __isl_take isl_set *set)
11891 return set_from_map(isl_map_drop_unused_params(set_to_map(set)));
11894 /* Drop all parameters not referenced by "bmap".
11896 __isl_give isl_basic_map *isl_basic_map_drop_unused_params(
11897 __isl_take isl_basic_map *bmap)
11899 int i;
11901 if (isl_basic_map_check_named_params(bmap) < 0)
11902 return isl_basic_map_free(bmap);
11904 for (i = isl_basic_map_dim(bmap, isl_dim_param) - 1; i >= 0; i--) {
11905 isl_bool involves;
11907 involves = isl_basic_map_involves_dims(bmap,
11908 isl_dim_param, i, 1);
11909 if (involves < 0)
11910 return isl_basic_map_free(bmap);
11911 if (!involves)
11912 bmap = isl_basic_map_drop(bmap, isl_dim_param, i, 1);
11915 return bmap;
11918 /* Drop all parameters not referenced by "bset".
11920 __isl_give isl_basic_set *isl_basic_set_drop_unused_params(
11921 __isl_take isl_basic_set *bset)
11923 return bset_from_bmap(isl_basic_map_drop_unused_params(
11924 bset_to_bmap(bset)));
11927 __isl_give isl_mat *isl_basic_map_equalities_matrix(
11928 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11929 enum isl_dim_type c2, enum isl_dim_type c3,
11930 enum isl_dim_type c4, enum isl_dim_type c5)
11932 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11933 struct isl_mat *mat;
11934 int i, j, k;
11935 int pos;
11937 if (!bmap)
11938 return NULL;
11939 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
11940 isl_basic_map_total_dim(bmap) + 1);
11941 if (!mat)
11942 return NULL;
11943 for (i = 0; i < bmap->n_eq; ++i)
11944 for (j = 0, pos = 0; j < 5; ++j) {
11945 int off = isl_basic_map_offset(bmap, c[j]);
11946 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11947 isl_int_set(mat->row[i][pos],
11948 bmap->eq[i][off + k]);
11949 ++pos;
11953 return mat;
11956 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
11957 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11958 enum isl_dim_type c2, enum isl_dim_type c3,
11959 enum isl_dim_type c4, enum isl_dim_type c5)
11961 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11962 struct isl_mat *mat;
11963 int i, j, k;
11964 int pos;
11966 if (!bmap)
11967 return NULL;
11968 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
11969 isl_basic_map_total_dim(bmap) + 1);
11970 if (!mat)
11971 return NULL;
11972 for (i = 0; i < bmap->n_ineq; ++i)
11973 for (j = 0, pos = 0; j < 5; ++j) {
11974 int off = isl_basic_map_offset(bmap, c[j]);
11975 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11976 isl_int_set(mat->row[i][pos],
11977 bmap->ineq[i][off + k]);
11978 ++pos;
11982 return mat;
11985 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
11986 __isl_take isl_space *dim,
11987 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11988 enum isl_dim_type c2, enum isl_dim_type c3,
11989 enum isl_dim_type c4, enum isl_dim_type c5)
11991 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11992 isl_basic_map *bmap;
11993 unsigned total;
11994 unsigned extra;
11995 int i, j, k, l;
11996 int pos;
11998 if (!dim || !eq || !ineq)
11999 goto error;
12001 if (eq->n_col != ineq->n_col)
12002 isl_die(dim->ctx, isl_error_invalid,
12003 "equalities and inequalities matrices should have "
12004 "same number of columns", goto error);
12006 total = 1 + isl_space_dim(dim, isl_dim_all);
12008 if (eq->n_col < total)
12009 isl_die(dim->ctx, isl_error_invalid,
12010 "number of columns too small", goto error);
12012 extra = eq->n_col - total;
12014 bmap = isl_basic_map_alloc_space(isl_space_copy(dim), extra,
12015 eq->n_row, ineq->n_row);
12016 if (!bmap)
12017 goto error;
12018 for (i = 0; i < extra; ++i) {
12019 k = isl_basic_map_alloc_div(bmap);
12020 if (k < 0)
12021 goto error;
12022 isl_int_set_si(bmap->div[k][0], 0);
12024 for (i = 0; i < eq->n_row; ++i) {
12025 l = isl_basic_map_alloc_equality(bmap);
12026 if (l < 0)
12027 goto error;
12028 for (j = 0, pos = 0; j < 5; ++j) {
12029 int off = isl_basic_map_offset(bmap, c[j]);
12030 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
12031 isl_int_set(bmap->eq[l][off + k],
12032 eq->row[i][pos]);
12033 ++pos;
12037 for (i = 0; i < ineq->n_row; ++i) {
12038 l = isl_basic_map_alloc_inequality(bmap);
12039 if (l < 0)
12040 goto error;
12041 for (j = 0, pos = 0; j < 5; ++j) {
12042 int off = isl_basic_map_offset(bmap, c[j]);
12043 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
12044 isl_int_set(bmap->ineq[l][off + k],
12045 ineq->row[i][pos]);
12046 ++pos;
12051 isl_space_free(dim);
12052 isl_mat_free(eq);
12053 isl_mat_free(ineq);
12055 bmap = isl_basic_map_simplify(bmap);
12056 return isl_basic_map_finalize(bmap);
12057 error:
12058 isl_space_free(dim);
12059 isl_mat_free(eq);
12060 isl_mat_free(ineq);
12061 return NULL;
12064 __isl_give isl_mat *isl_basic_set_equalities_matrix(
12065 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
12066 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12068 return isl_basic_map_equalities_matrix(bset_to_bmap(bset),
12069 c1, c2, c3, c4, isl_dim_in);
12072 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
12073 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
12074 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12076 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset),
12077 c1, c2, c3, c4, isl_dim_in);
12080 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
12081 __isl_take isl_space *dim,
12082 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
12083 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12085 isl_basic_map *bmap;
12086 bmap = isl_basic_map_from_constraint_matrices(dim, eq, ineq,
12087 c1, c2, c3, c4, isl_dim_in);
12088 return bset_from_bmap(bmap);
12091 isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
12093 if (!bmap)
12094 return isl_bool_error;
12096 return isl_space_can_zip(bmap->dim);
12099 isl_bool isl_map_can_zip(__isl_keep isl_map *map)
12101 if (!map)
12102 return isl_bool_error;
12104 return isl_space_can_zip(map->dim);
12107 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
12108 * (A -> C) -> (B -> D).
12110 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
12112 unsigned pos;
12113 unsigned n1;
12114 unsigned n2;
12116 if (!bmap)
12117 return NULL;
12119 if (!isl_basic_map_can_zip(bmap))
12120 isl_die(bmap->ctx, isl_error_invalid,
12121 "basic map cannot be zipped", goto error);
12122 pos = isl_basic_map_offset(bmap, isl_dim_in) +
12123 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
12124 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
12125 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
12126 bmap = isl_basic_map_cow(bmap);
12127 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
12128 if (!bmap)
12129 return NULL;
12130 bmap->dim = isl_space_zip(bmap->dim);
12131 if (!bmap->dim)
12132 goto error;
12133 bmap = isl_basic_map_mark_final(bmap);
12134 return bmap;
12135 error:
12136 isl_basic_map_free(bmap);
12137 return NULL;
12140 /* Given a map (A -> B) -> (C -> D), return the corresponding map
12141 * (A -> C) -> (B -> D).
12143 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
12145 int i;
12147 if (!map)
12148 return NULL;
12150 if (!isl_map_can_zip(map))
12151 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
12152 goto error);
12154 map = isl_map_cow(map);
12155 if (!map)
12156 return NULL;
12158 for (i = 0; i < map->n; ++i) {
12159 map->p[i] = isl_basic_map_zip(map->p[i]);
12160 if (!map->p[i])
12161 goto error;
12164 map->dim = isl_space_zip(map->dim);
12165 if (!map->dim)
12166 goto error;
12168 return map;
12169 error:
12170 isl_map_free(map);
12171 return NULL;
12174 /* Can we apply isl_basic_map_curry to "bmap"?
12175 * That is, does it have a nested relation in its domain?
12177 isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
12179 if (!bmap)
12180 return isl_bool_error;
12182 return isl_space_can_curry(bmap->dim);
12185 /* Can we apply isl_map_curry to "map"?
12186 * That is, does it have a nested relation in its domain?
12188 isl_bool isl_map_can_curry(__isl_keep isl_map *map)
12190 if (!map)
12191 return isl_bool_error;
12193 return isl_space_can_curry(map->dim);
12196 /* Given a basic map (A -> B) -> C, return the corresponding basic map
12197 * A -> (B -> C).
12199 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
12202 if (!bmap)
12203 return NULL;
12205 if (!isl_basic_map_can_curry(bmap))
12206 isl_die(bmap->ctx, isl_error_invalid,
12207 "basic map cannot be curried", goto error);
12208 bmap = isl_basic_map_cow(bmap);
12209 if (!bmap)
12210 return NULL;
12211 bmap->dim = isl_space_curry(bmap->dim);
12212 if (!bmap->dim)
12213 goto error;
12214 bmap = isl_basic_map_mark_final(bmap);
12215 return bmap;
12216 error:
12217 isl_basic_map_free(bmap);
12218 return NULL;
12221 /* Given a map (A -> B) -> C, return the corresponding map
12222 * A -> (B -> C).
12224 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
12226 return isl_map_change_space(map, &isl_map_can_curry,
12227 "map cannot be curried", &isl_space_curry);
12230 /* Can isl_map_range_curry be applied to "map"?
12231 * That is, does it have a nested relation in its range,
12232 * the domain of which is itself a nested relation?
12234 isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
12236 if (!map)
12237 return isl_bool_error;
12239 return isl_space_can_range_curry(map->dim);
12242 /* Given a map A -> ((B -> C) -> D), return the corresponding map
12243 * A -> (B -> (C -> D)).
12245 __isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
12247 return isl_map_change_space(map, &isl_map_can_range_curry,
12248 "map range cannot be curried",
12249 &isl_space_range_curry);
12252 /* Can we apply isl_basic_map_uncurry to "bmap"?
12253 * That is, does it have a nested relation in its domain?
12255 isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
12257 if (!bmap)
12258 return isl_bool_error;
12260 return isl_space_can_uncurry(bmap->dim);
12263 /* Can we apply isl_map_uncurry to "map"?
12264 * That is, does it have a nested relation in its domain?
12266 isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
12268 if (!map)
12269 return isl_bool_error;
12271 return isl_space_can_uncurry(map->dim);
12274 /* Given a basic map A -> (B -> C), return the corresponding basic map
12275 * (A -> B) -> C.
12277 __isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
12280 if (!bmap)
12281 return NULL;
12283 if (!isl_basic_map_can_uncurry(bmap))
12284 isl_die(bmap->ctx, isl_error_invalid,
12285 "basic map cannot be uncurried",
12286 return isl_basic_map_free(bmap));
12287 bmap = isl_basic_map_cow(bmap);
12288 if (!bmap)
12289 return NULL;
12290 bmap->dim = isl_space_uncurry(bmap->dim);
12291 if (!bmap->dim)
12292 return isl_basic_map_free(bmap);
12293 bmap = isl_basic_map_mark_final(bmap);
12294 return bmap;
12297 /* Given a map A -> (B -> C), return the corresponding map
12298 * (A -> B) -> C.
12300 __isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
12302 return isl_map_change_space(map, &isl_map_can_uncurry,
12303 "map cannot be uncurried", &isl_space_uncurry);
12306 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
12307 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12309 return isl_map_equate(set, type1, pos1, type2, pos2);
12312 /* Construct a basic map where the given dimensions are equal to each other.
12314 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
12315 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12317 isl_basic_map *bmap = NULL;
12318 int i;
12320 if (!space)
12321 return NULL;
12323 if (pos1 >= isl_space_dim(space, type1))
12324 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12325 "index out of bounds", goto error);
12326 if (pos2 >= isl_space_dim(space, type2))
12327 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12328 "index out of bounds", goto error);
12330 if (type1 == type2 && pos1 == pos2)
12331 return isl_basic_map_universe(space);
12333 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
12334 i = isl_basic_map_alloc_equality(bmap);
12335 if (i < 0)
12336 goto error;
12337 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12338 pos1 += isl_basic_map_offset(bmap, type1);
12339 pos2 += isl_basic_map_offset(bmap, type2);
12340 isl_int_set_si(bmap->eq[i][pos1], -1);
12341 isl_int_set_si(bmap->eq[i][pos2], 1);
12342 bmap = isl_basic_map_finalize(bmap);
12343 isl_space_free(space);
12344 return bmap;
12345 error:
12346 isl_space_free(space);
12347 isl_basic_map_free(bmap);
12348 return NULL;
12351 /* Add a constraint imposing that the given two dimensions are equal.
12353 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
12354 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12356 isl_basic_map *eq;
12358 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12360 bmap = isl_basic_map_intersect(bmap, eq);
12362 return bmap;
12365 /* Add a constraint imposing that the given two dimensions are equal.
12367 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
12368 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12370 isl_basic_map *bmap;
12372 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
12374 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12376 return map;
12379 /* Add a constraint imposing that the given two dimensions have opposite values.
12381 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
12382 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12384 isl_basic_map *bmap = NULL;
12385 int i;
12387 if (!map)
12388 return NULL;
12390 if (pos1 >= isl_map_dim(map, type1))
12391 isl_die(map->ctx, isl_error_invalid,
12392 "index out of bounds", goto error);
12393 if (pos2 >= isl_map_dim(map, type2))
12394 isl_die(map->ctx, isl_error_invalid,
12395 "index out of bounds", goto error);
12397 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
12398 i = isl_basic_map_alloc_equality(bmap);
12399 if (i < 0)
12400 goto error;
12401 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12402 pos1 += isl_basic_map_offset(bmap, type1);
12403 pos2 += isl_basic_map_offset(bmap, type2);
12404 isl_int_set_si(bmap->eq[i][pos1], 1);
12405 isl_int_set_si(bmap->eq[i][pos2], 1);
12406 bmap = isl_basic_map_finalize(bmap);
12408 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12410 return map;
12411 error:
12412 isl_basic_map_free(bmap);
12413 isl_map_free(map);
12414 return NULL;
12417 /* Construct a constraint imposing that the value of the first dimension is
12418 * greater than or equal to that of the second.
12420 static __isl_give isl_constraint *constraint_order_ge(
12421 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
12422 enum isl_dim_type type2, int pos2)
12424 isl_constraint *c;
12426 if (!space)
12427 return NULL;
12429 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
12431 if (pos1 >= isl_constraint_dim(c, type1))
12432 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12433 "index out of bounds", return isl_constraint_free(c));
12434 if (pos2 >= isl_constraint_dim(c, type2))
12435 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12436 "index out of bounds", return isl_constraint_free(c));
12438 if (type1 == type2 && pos1 == pos2)
12439 return c;
12441 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
12442 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
12444 return c;
12447 /* Add a constraint imposing that the value of the first dimension is
12448 * greater than or equal to that of the second.
12450 __isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
12451 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12453 isl_constraint *c;
12454 isl_space *space;
12456 if (type1 == type2 && pos1 == pos2)
12457 return bmap;
12458 space = isl_basic_map_get_space(bmap);
12459 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12460 bmap = isl_basic_map_add_constraint(bmap, c);
12462 return bmap;
12465 /* Add a constraint imposing that the value of the first dimension is
12466 * greater than or equal to that of the second.
12468 __isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
12469 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12471 isl_constraint *c;
12472 isl_space *space;
12474 if (type1 == type2 && pos1 == pos2)
12475 return map;
12476 space = isl_map_get_space(map);
12477 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12478 map = isl_map_add_constraint(map, c);
12480 return map;
12483 /* Add a constraint imposing that the value of the first dimension is
12484 * less than or equal to that of the second.
12486 __isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
12487 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12489 return isl_map_order_ge(map, type2, pos2, type1, pos1);
12492 /* Construct a basic map where the value of the first dimension is
12493 * greater than that of the second.
12495 static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
12496 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12498 isl_basic_map *bmap = NULL;
12499 int i;
12501 if (!space)
12502 return NULL;
12504 if (pos1 >= isl_space_dim(space, type1))
12505 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12506 "index out of bounds", goto error);
12507 if (pos2 >= isl_space_dim(space, type2))
12508 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12509 "index out of bounds", goto error);
12511 if (type1 == type2 && pos1 == pos2)
12512 return isl_basic_map_empty(space);
12514 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
12515 i = isl_basic_map_alloc_inequality(bmap);
12516 if (i < 0)
12517 return isl_basic_map_free(bmap);
12518 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
12519 pos1 += isl_basic_map_offset(bmap, type1);
12520 pos2 += isl_basic_map_offset(bmap, type2);
12521 isl_int_set_si(bmap->ineq[i][pos1], 1);
12522 isl_int_set_si(bmap->ineq[i][pos2], -1);
12523 isl_int_set_si(bmap->ineq[i][0], -1);
12524 bmap = isl_basic_map_finalize(bmap);
12526 return bmap;
12527 error:
12528 isl_space_free(space);
12529 isl_basic_map_free(bmap);
12530 return NULL;
12533 /* Add a constraint imposing that the value of the first dimension is
12534 * greater than that of the second.
12536 __isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
12537 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12539 isl_basic_map *gt;
12541 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12543 bmap = isl_basic_map_intersect(bmap, gt);
12545 return bmap;
12548 /* Add a constraint imposing that the value of the first dimension is
12549 * greater than that of the second.
12551 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
12552 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12554 isl_basic_map *bmap;
12556 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
12558 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12560 return map;
12563 /* Add a constraint imposing that the value of the first dimension is
12564 * smaller than that of the second.
12566 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
12567 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12569 return isl_map_order_gt(map, type2, pos2, type1, pos1);
12572 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
12573 int pos)
12575 isl_aff *div;
12576 isl_local_space *ls;
12578 if (!bmap)
12579 return NULL;
12581 if (!isl_basic_map_divs_known(bmap))
12582 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12583 "some divs are unknown", return NULL);
12585 ls = isl_basic_map_get_local_space(bmap);
12586 div = isl_local_space_get_div(ls, pos);
12587 isl_local_space_free(ls);
12589 return div;
12592 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
12593 int pos)
12595 return isl_basic_map_get_div(bset, pos);
12598 /* Plug in "subs" for dimension "type", "pos" of "bset".
12600 * Let i be the dimension to replace and let "subs" be of the form
12602 * f/d
12604 * Any integer division with a non-zero coefficient for i,
12606 * floor((a i + g)/m)
12608 * is replaced by
12610 * floor((a f + d g)/(m d))
12612 * Constraints of the form
12614 * a i + g
12616 * are replaced by
12618 * a f + d g
12620 * We currently require that "subs" is an integral expression.
12621 * Handling rational expressions may require us to add stride constraints
12622 * as we do in isl_basic_set_preimage_multi_aff.
12624 __isl_give isl_basic_set *isl_basic_set_substitute(
12625 __isl_take isl_basic_set *bset,
12626 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12628 int i;
12629 isl_int v;
12630 isl_ctx *ctx;
12632 if (bset && isl_basic_set_plain_is_empty(bset))
12633 return bset;
12635 bset = isl_basic_set_cow(bset);
12636 if (!bset || !subs)
12637 goto error;
12639 ctx = isl_basic_set_get_ctx(bset);
12640 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
12641 isl_die(ctx, isl_error_invalid,
12642 "spaces don't match", goto error);
12643 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
12644 isl_die(ctx, isl_error_unsupported,
12645 "cannot handle divs yet", goto error);
12646 if (!isl_int_is_one(subs->v->el[0]))
12647 isl_die(ctx, isl_error_invalid,
12648 "can only substitute integer expressions", goto error);
12650 pos += isl_basic_set_offset(bset, type);
12652 isl_int_init(v);
12654 for (i = 0; i < bset->n_eq; ++i) {
12655 if (isl_int_is_zero(bset->eq[i][pos]))
12656 continue;
12657 isl_int_set(v, bset->eq[i][pos]);
12658 isl_int_set_si(bset->eq[i][pos], 0);
12659 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
12660 v, subs->v->el + 1, subs->v->size - 1);
12663 for (i = 0; i < bset->n_ineq; ++i) {
12664 if (isl_int_is_zero(bset->ineq[i][pos]))
12665 continue;
12666 isl_int_set(v, bset->ineq[i][pos]);
12667 isl_int_set_si(bset->ineq[i][pos], 0);
12668 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
12669 v, subs->v->el + 1, subs->v->size - 1);
12672 for (i = 0; i < bset->n_div; ++i) {
12673 if (isl_int_is_zero(bset->div[i][1 + pos]))
12674 continue;
12675 isl_int_set(v, bset->div[i][1 + pos]);
12676 isl_int_set_si(bset->div[i][1 + pos], 0);
12677 isl_seq_combine(bset->div[i] + 1,
12678 subs->v->el[0], bset->div[i] + 1,
12679 v, subs->v->el + 1, subs->v->size - 1);
12680 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
12683 isl_int_clear(v);
12685 bset = isl_basic_set_simplify(bset);
12686 return isl_basic_set_finalize(bset);
12687 error:
12688 isl_basic_set_free(bset);
12689 return NULL;
12692 /* Plug in "subs" for dimension "type", "pos" of "set".
12694 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
12695 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12697 int i;
12699 if (set && isl_set_plain_is_empty(set))
12700 return set;
12702 set = isl_set_cow(set);
12703 if (!set || !subs)
12704 goto error;
12706 for (i = set->n - 1; i >= 0; --i) {
12707 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
12708 set = set_from_map(remove_if_empty(set_to_map(set), i));
12709 if (!set)
12710 return NULL;
12713 return set;
12714 error:
12715 isl_set_free(set);
12716 return NULL;
12719 /* Check if the range of "ma" is compatible with the domain or range
12720 * (depending on "type") of "bmap".
12722 static isl_stat check_basic_map_compatible_range_multi_aff(
12723 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
12724 __isl_keep isl_multi_aff *ma)
12726 isl_bool m;
12727 isl_space *ma_space;
12729 ma_space = isl_multi_aff_get_space(ma);
12731 m = isl_space_has_equal_params(bmap->dim, ma_space);
12732 if (m < 0)
12733 goto error;
12734 if (!m)
12735 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12736 "parameters don't match", goto error);
12737 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
12738 if (m < 0)
12739 goto error;
12740 if (!m)
12741 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12742 "spaces don't match", goto error);
12744 isl_space_free(ma_space);
12745 return isl_stat_ok;
12746 error:
12747 isl_space_free(ma_space);
12748 return isl_stat_error;
12751 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12752 * coefficients before the transformed range of dimensions,
12753 * the "n_after" coefficients after the transformed range of dimensions
12754 * and the coefficients of the other divs in "bmap".
12756 static int set_ma_divs(__isl_keep isl_basic_map *bmap,
12757 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
12759 int i;
12760 int n_param;
12761 int n_set;
12762 isl_local_space *ls;
12764 if (n_div == 0)
12765 return 0;
12767 ls = isl_aff_get_domain_local_space(ma->u.p[0]);
12768 if (!ls)
12769 return -1;
12771 n_param = isl_local_space_dim(ls, isl_dim_param);
12772 n_set = isl_local_space_dim(ls, isl_dim_set);
12773 for (i = 0; i < n_div; ++i) {
12774 int o_bmap = 0, o_ls = 0;
12776 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
12777 o_bmap += 1 + 1 + n_param;
12778 o_ls += 1 + 1 + n_param;
12779 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
12780 o_bmap += n_before;
12781 isl_seq_cpy(bmap->div[i] + o_bmap,
12782 ls->div->row[i] + o_ls, n_set);
12783 o_bmap += n_set;
12784 o_ls += n_set;
12785 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
12786 o_bmap += n_after;
12787 isl_seq_cpy(bmap->div[i] + o_bmap,
12788 ls->div->row[i] + o_ls, n_div);
12789 o_bmap += n_div;
12790 o_ls += n_div;
12791 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
12792 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
12793 goto error;
12796 isl_local_space_free(ls);
12797 return 0;
12798 error:
12799 isl_local_space_free(ls);
12800 return -1;
12803 /* How many stride constraints does "ma" enforce?
12804 * That is, how many of the affine expressions have a denominator
12805 * different from one?
12807 static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
12809 int i;
12810 int strides = 0;
12812 for (i = 0; i < ma->n; ++i)
12813 if (!isl_int_is_one(ma->u.p[i]->v->el[0]))
12814 strides++;
12816 return strides;
12819 /* For each affine expression in ma of the form
12821 * x_i = (f_i y + h_i)/m_i
12823 * with m_i different from one, add a constraint to "bmap"
12824 * of the form
12826 * f_i y + h_i = m_i alpha_i
12828 * with alpha_i an additional existentially quantified variable.
12830 * The input variables of "ma" correspond to a subset of the variables
12831 * of "bmap". There are "n_before" variables in "bmap" before this
12832 * subset and "n_after" variables after this subset.
12833 * The integer divisions of the affine expressions in "ma" are assumed
12834 * to have been aligned. There are "n_div_ma" of them and
12835 * they appear first in "bmap", straight after the "n_after" variables.
12837 static __isl_give isl_basic_map *add_ma_strides(
12838 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
12839 int n_before, int n_after, int n_div_ma)
12841 int i, k;
12842 int div;
12843 int total;
12844 int n_param;
12845 int n_in;
12847 total = isl_basic_map_total_dim(bmap);
12848 n_param = isl_multi_aff_dim(ma, isl_dim_param);
12849 n_in = isl_multi_aff_dim(ma, isl_dim_in);
12850 for (i = 0; i < ma->n; ++i) {
12851 int o_bmap = 0, o_ma = 1;
12853 if (isl_int_is_one(ma->u.p[i]->v->el[0]))
12854 continue;
12855 div = isl_basic_map_alloc_div(bmap);
12856 k = isl_basic_map_alloc_equality(bmap);
12857 if (div < 0 || k < 0)
12858 goto error;
12859 isl_int_set_si(bmap->div[div][0], 0);
12860 isl_seq_cpy(bmap->eq[k] + o_bmap,
12861 ma->u.p[i]->v->el + o_ma, 1 + n_param);
12862 o_bmap += 1 + n_param;
12863 o_ma += 1 + n_param;
12864 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
12865 o_bmap += n_before;
12866 isl_seq_cpy(bmap->eq[k] + o_bmap,
12867 ma->u.p[i]->v->el + o_ma, n_in);
12868 o_bmap += n_in;
12869 o_ma += n_in;
12870 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
12871 o_bmap += n_after;
12872 isl_seq_cpy(bmap->eq[k] + o_bmap,
12873 ma->u.p[i]->v->el + o_ma, n_div_ma);
12874 o_bmap += n_div_ma;
12875 o_ma += n_div_ma;
12876 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
12877 isl_int_neg(bmap->eq[k][1 + total], ma->u.p[i]->v->el[0]);
12878 total++;
12881 return bmap;
12882 error:
12883 isl_basic_map_free(bmap);
12884 return NULL;
12887 /* Replace the domain or range space (depending on "type) of "space" by "set".
12889 static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
12890 enum isl_dim_type type, __isl_take isl_space *set)
12892 if (type == isl_dim_in) {
12893 space = isl_space_range(space);
12894 space = isl_space_map_from_domain_and_range(set, space);
12895 } else {
12896 space = isl_space_domain(space);
12897 space = isl_space_map_from_domain_and_range(space, set);
12900 return space;
12903 /* Compute the preimage of the domain or range (depending on "type")
12904 * of "bmap" under the function represented by "ma".
12905 * In other words, plug in "ma" in the domain or range of "bmap".
12906 * The result is a basic map that lives in the same space as "bmap"
12907 * except that the domain or range has been replaced by
12908 * the domain space of "ma".
12910 * If bmap is represented by
12912 * A(p) + S u + B x + T v + C(divs) >= 0,
12914 * where u and x are input and output dimensions if type == isl_dim_out
12915 * while x and v are input and output dimensions if type == isl_dim_in,
12916 * and ma is represented by
12918 * x = D(p) + F(y) + G(divs')
12920 * then the result is
12922 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12924 * The divs in the input set are similarly adjusted.
12925 * In particular
12927 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12929 * becomes
12931 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12932 * B_i G(divs') + c_i(divs))/n_i)
12934 * If bmap is not a rational map and if F(y) involves any denominators
12936 * x_i = (f_i y + h_i)/m_i
12938 * then additional constraints are added to ensure that we only
12939 * map back integer points. That is we enforce
12941 * f_i y + h_i = m_i alpha_i
12943 * with alpha_i an additional existentially quantified variable.
12945 * We first copy over the divs from "ma".
12946 * Then we add the modified constraints and divs from "bmap".
12947 * Finally, we add the stride constraints, if needed.
12949 __isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
12950 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
12951 __isl_take isl_multi_aff *ma)
12953 int i, k;
12954 isl_space *space;
12955 isl_basic_map *res = NULL;
12956 int n_before, n_after, n_div_bmap, n_div_ma;
12957 isl_int f, c1, c2, g;
12958 isl_bool rational;
12959 int strides;
12961 isl_int_init(f);
12962 isl_int_init(c1);
12963 isl_int_init(c2);
12964 isl_int_init(g);
12966 ma = isl_multi_aff_align_divs(ma);
12967 if (!bmap || !ma)
12968 goto error;
12969 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
12970 goto error;
12972 if (type == isl_dim_in) {
12973 n_before = 0;
12974 n_after = isl_basic_map_dim(bmap, isl_dim_out);
12975 } else {
12976 n_before = isl_basic_map_dim(bmap, isl_dim_in);
12977 n_after = 0;
12979 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
12980 n_div_ma = ma->n ? isl_aff_dim(ma->u.p[0], isl_dim_div) : 0;
12982 space = isl_multi_aff_get_domain_space(ma);
12983 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
12984 rational = isl_basic_map_is_rational(bmap);
12985 strides = rational ? 0 : multi_aff_strides(ma);
12986 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
12987 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
12988 if (rational)
12989 res = isl_basic_map_set_rational(res);
12991 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
12992 if (isl_basic_map_alloc_div(res) < 0)
12993 goto error;
12995 if (set_ma_divs(res, ma, n_before, n_after, n_div_ma) < 0)
12996 goto error;
12998 for (i = 0; i < bmap->n_eq; ++i) {
12999 k = isl_basic_map_alloc_equality(res);
13000 if (k < 0)
13001 goto error;
13002 isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
13003 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13006 for (i = 0; i < bmap->n_ineq; ++i) {
13007 k = isl_basic_map_alloc_inequality(res);
13008 if (k < 0)
13009 goto error;
13010 isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
13011 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13014 for (i = 0; i < bmap->n_div; ++i) {
13015 if (isl_int_is_zero(bmap->div[i][0])) {
13016 isl_int_set_si(res->div[n_div_ma + i][0], 0);
13017 continue;
13019 isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
13020 n_before, n_after, n_div_ma, n_div_bmap,
13021 f, c1, c2, g, 1);
13024 if (strides)
13025 res = add_ma_strides(res, ma, n_before, n_after, n_div_ma);
13027 isl_int_clear(f);
13028 isl_int_clear(c1);
13029 isl_int_clear(c2);
13030 isl_int_clear(g);
13031 isl_basic_map_free(bmap);
13032 isl_multi_aff_free(ma);
13033 res = isl_basic_map_simplify(res);
13034 return isl_basic_map_finalize(res);
13035 error:
13036 isl_int_clear(f);
13037 isl_int_clear(c1);
13038 isl_int_clear(c2);
13039 isl_int_clear(g);
13040 isl_basic_map_free(bmap);
13041 isl_multi_aff_free(ma);
13042 isl_basic_map_free(res);
13043 return NULL;
13046 /* Compute the preimage of "bset" under the function represented by "ma".
13047 * In other words, plug in "ma" in "bset". The result is a basic set
13048 * that lives in the domain space of "ma".
13050 __isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
13051 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
13053 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
13056 /* Compute the preimage of the domain of "bmap" under the function
13057 * represented by "ma".
13058 * In other words, plug in "ma" in the domain of "bmap".
13059 * The result is a basic map that lives in the same space as "bmap"
13060 * except that the domain has been replaced by the domain space of "ma".
13062 __isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
13063 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13065 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
13068 /* Compute the preimage of the range of "bmap" under the function
13069 * represented by "ma".
13070 * In other words, plug in "ma" in the range of "bmap".
13071 * The result is a basic map that lives in the same space as "bmap"
13072 * except that the range has been replaced by the domain space of "ma".
13074 __isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
13075 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13077 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
13080 /* Check if the range of "ma" is compatible with the domain or range
13081 * (depending on "type") of "map".
13082 * Return isl_stat_error if anything is wrong.
13084 static isl_stat check_map_compatible_range_multi_aff(
13085 __isl_keep isl_map *map, enum isl_dim_type type,
13086 __isl_keep isl_multi_aff *ma)
13088 isl_bool m;
13089 isl_space *ma_space;
13091 ma_space = isl_multi_aff_get_space(ma);
13092 m = isl_space_tuple_is_equal(map->dim, type, ma_space, isl_dim_out);
13093 isl_space_free(ma_space);
13094 if (m < 0)
13095 return isl_stat_error;
13096 if (!m)
13097 isl_die(isl_map_get_ctx(map), isl_error_invalid,
13098 "spaces don't match", return isl_stat_error);
13099 return isl_stat_ok;
13102 /* Compute the preimage of the domain or range (depending on "type")
13103 * of "map" under the function represented by "ma".
13104 * In other words, plug in "ma" in the domain or range of "map".
13105 * The result is a map that lives in the same space as "map"
13106 * except that the domain or range has been replaced by
13107 * the domain space of "ma".
13109 * The parameters are assumed to have been aligned.
13111 static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
13112 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13114 int i;
13115 isl_space *space;
13117 map = isl_map_cow(map);
13118 ma = isl_multi_aff_align_divs(ma);
13119 if (!map || !ma)
13120 goto error;
13121 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
13122 goto error;
13124 for (i = 0; i < map->n; ++i) {
13125 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
13126 isl_multi_aff_copy(ma));
13127 if (!map->p[i])
13128 goto error;
13131 space = isl_multi_aff_get_domain_space(ma);
13132 space = isl_space_set(isl_map_get_space(map), type, space);
13134 isl_space_free(map->dim);
13135 map->dim = space;
13136 if (!map->dim)
13137 goto error;
13139 isl_multi_aff_free(ma);
13140 if (map->n > 1)
13141 ISL_F_CLR(map, ISL_MAP_DISJOINT);
13142 ISL_F_CLR(map, ISL_SET_NORMALIZED);
13143 return map;
13144 error:
13145 isl_multi_aff_free(ma);
13146 isl_map_free(map);
13147 return NULL;
13150 /* Compute the preimage of the domain or range (depending on "type")
13151 * of "map" under the function represented by "ma".
13152 * In other words, plug in "ma" in the domain or range of "map".
13153 * The result is a map that lives in the same space as "map"
13154 * except that the domain or range has been replaced by
13155 * the domain space of "ma".
13157 __isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
13158 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13160 isl_bool aligned;
13162 if (!map || !ma)
13163 goto error;
13165 aligned = isl_map_space_has_equal_params(map, ma->space);
13166 if (aligned < 0)
13167 goto error;
13168 if (aligned)
13169 return map_preimage_multi_aff(map, type, ma);
13171 if (isl_map_check_named_params(map) < 0)
13172 goto error;
13173 if (!isl_space_has_named_params(ma->space))
13174 isl_die(map->ctx, isl_error_invalid,
13175 "unaligned unnamed parameters", goto error);
13176 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
13177 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
13179 return map_preimage_multi_aff(map, type, ma);
13180 error:
13181 isl_multi_aff_free(ma);
13182 return isl_map_free(map);
13185 /* Compute the preimage of "set" under the function represented by "ma".
13186 * In other words, plug in "ma" in "set". The result is a set
13187 * that lives in the domain space of "ma".
13189 __isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
13190 __isl_take isl_multi_aff *ma)
13192 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
13195 /* Compute the preimage of the domain of "map" under the function
13196 * represented by "ma".
13197 * In other words, plug in "ma" in the domain of "map".
13198 * The result is a map that lives in the same space as "map"
13199 * except that the domain has been replaced by the domain space of "ma".
13201 __isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
13202 __isl_take isl_multi_aff *ma)
13204 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
13207 /* Compute the preimage of the range of "map" under the function
13208 * represented by "ma".
13209 * In other words, plug in "ma" in the range of "map".
13210 * The result is a map that lives in the same space as "map"
13211 * except that the range has been replaced by the domain space of "ma".
13213 __isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
13214 __isl_take isl_multi_aff *ma)
13216 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
13219 /* Compute the preimage of "map" under the function represented by "pma".
13220 * In other words, plug in "pma" in the domain or range of "map".
13221 * The result is a map that lives in the same space as "map",
13222 * except that the space of type "type" has been replaced by
13223 * the domain space of "pma".
13225 * The parameters of "map" and "pma" are assumed to have been aligned.
13227 static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
13228 __isl_take isl_map *map, enum isl_dim_type type,
13229 __isl_take isl_pw_multi_aff *pma)
13231 int i;
13232 isl_map *res;
13234 if (!pma)
13235 goto error;
13237 if (pma->n == 0) {
13238 isl_pw_multi_aff_free(pma);
13239 res = isl_map_empty(isl_map_get_space(map));
13240 isl_map_free(map);
13241 return res;
13244 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13245 isl_multi_aff_copy(pma->p[0].maff));
13246 if (type == isl_dim_in)
13247 res = isl_map_intersect_domain(res,
13248 isl_map_copy(pma->p[0].set));
13249 else
13250 res = isl_map_intersect_range(res,
13251 isl_map_copy(pma->p[0].set));
13253 for (i = 1; i < pma->n; ++i) {
13254 isl_map *res_i;
13256 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13257 isl_multi_aff_copy(pma->p[i].maff));
13258 if (type == isl_dim_in)
13259 res_i = isl_map_intersect_domain(res_i,
13260 isl_map_copy(pma->p[i].set));
13261 else
13262 res_i = isl_map_intersect_range(res_i,
13263 isl_map_copy(pma->p[i].set));
13264 res = isl_map_union(res, res_i);
13267 isl_pw_multi_aff_free(pma);
13268 isl_map_free(map);
13269 return res;
13270 error:
13271 isl_pw_multi_aff_free(pma);
13272 isl_map_free(map);
13273 return NULL;
13276 /* Compute the preimage of "map" under the function represented by "pma".
13277 * In other words, plug in "pma" in the domain or range of "map".
13278 * The result is a map that lives in the same space as "map",
13279 * except that the space of type "type" has been replaced by
13280 * the domain space of "pma".
13282 __isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
13283 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
13285 isl_bool aligned;
13287 if (!map || !pma)
13288 goto error;
13290 aligned = isl_map_space_has_equal_params(map, pma->dim);
13291 if (aligned < 0)
13292 goto error;
13293 if (aligned)
13294 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13296 if (isl_map_check_named_params(map) < 0)
13297 goto error;
13298 if (isl_pw_multi_aff_check_named_params(pma) < 0)
13299 goto error;
13300 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
13301 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
13303 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13304 error:
13305 isl_pw_multi_aff_free(pma);
13306 return isl_map_free(map);
13309 /* Compute the preimage of "set" under the function represented by "pma".
13310 * In other words, plug in "pma" in "set". The result is a set
13311 * that lives in the domain space of "pma".
13313 __isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
13314 __isl_take isl_pw_multi_aff *pma)
13316 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
13319 /* Compute the preimage of the domain of "map" under the function
13320 * represented by "pma".
13321 * In other words, plug in "pma" in the domain of "map".
13322 * The result is a map that lives in the same space as "map",
13323 * except that domain space has been replaced by the domain space of "pma".
13325 __isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
13326 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13328 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
13331 /* Compute the preimage of the range of "map" under the function
13332 * represented by "pma".
13333 * In other words, plug in "pma" in the range of "map".
13334 * The result is a map that lives in the same space as "map",
13335 * except that range space has been replaced by the domain space of "pma".
13337 __isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
13338 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13340 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
13343 /* Compute the preimage of "map" under the function represented by "mpa".
13344 * In other words, plug in "mpa" in the domain or range of "map".
13345 * The result is a map that lives in the same space as "map",
13346 * except that the space of type "type" has been replaced by
13347 * the domain space of "mpa".
13349 * If the map does not involve any constraints that refer to the
13350 * dimensions of the substituted space, then the only possible
13351 * effect of "mpa" on the map is to map the space to a different space.
13352 * We create a separate isl_multi_aff to effectuate this change
13353 * in order to avoid spurious splitting of the map along the pieces
13354 * of "mpa".
13355 * If "mpa" has a non-trivial explicit domain, however,
13356 * then the full substitution should be performed.
13358 __isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
13359 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
13361 int n;
13362 isl_bool full;
13363 isl_pw_multi_aff *pma;
13365 if (!map || !mpa)
13366 goto error;
13368 n = isl_map_dim(map, type);
13369 full = isl_map_involves_dims(map, type, 0, n);
13370 if (full >= 0 && !full)
13371 full = isl_multi_pw_aff_has_non_trivial_domain(mpa);
13372 if (full < 0)
13373 goto error;
13374 if (!full) {
13375 isl_space *space;
13376 isl_multi_aff *ma;
13378 space = isl_multi_pw_aff_get_space(mpa);
13379 isl_multi_pw_aff_free(mpa);
13380 ma = isl_multi_aff_zero(space);
13381 return isl_map_preimage_multi_aff(map, type, ma);
13384 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
13385 return isl_map_preimage_pw_multi_aff(map, type, pma);
13386 error:
13387 isl_map_free(map);
13388 isl_multi_pw_aff_free(mpa);
13389 return NULL;
13392 /* Compute the preimage of "map" under the function represented by "mpa".
13393 * In other words, plug in "mpa" in the domain "map".
13394 * The result is a map that lives in the same space as "map",
13395 * except that domain space has been replaced by the domain space of "mpa".
13397 __isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
13398 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
13400 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
13403 /* Compute the preimage of "set" by the function represented by "mpa".
13404 * In other words, plug in "mpa" in "set".
13406 __isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
13407 __isl_take isl_multi_pw_aff *mpa)
13409 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);
13412 /* Return a copy of the equality constraints of "bset" as a matrix.
13414 __isl_give isl_mat *isl_basic_set_extract_equalities(
13415 __isl_keep isl_basic_set *bset)
13417 isl_ctx *ctx;
13418 unsigned total;
13420 if (!bset)
13421 return NULL;
13423 ctx = isl_basic_set_get_ctx(bset);
13424 total = 1 + isl_basic_set_dim(bset, isl_dim_all);
13425 return isl_mat_sub_alloc6(ctx, bset->eq, 0, bset->n_eq, 0, total);
13428 /* Are the "n" "coefficients" starting at "first" of the integer division
13429 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13430 * to each other?
13431 * The "coefficient" at position 0 is the denominator.
13432 * The "coefficient" at position 1 is the constant term.
13434 isl_bool isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map *bmap1,
13435 int pos1, __isl_keep isl_basic_map *bmap2, int pos2,
13436 unsigned first, unsigned n)
13438 if (isl_basic_map_check_range(bmap1, isl_dim_div, pos1, 1) < 0)
13439 return isl_bool_error;
13440 if (isl_basic_map_check_range(bmap2, isl_dim_div, pos2, 1) < 0)
13441 return isl_bool_error;
13442 return isl_seq_eq(bmap1->div[pos1] + first,
13443 bmap2->div[pos2] + first, n);
13446 /* Are the integer division expressions at position "pos1" in "bmap1" and
13447 * "pos2" in "bmap2" equal to each other, except that the constant terms
13448 * are different?
13450 isl_bool isl_basic_map_equal_div_expr_except_constant(
13451 __isl_keep isl_basic_map *bmap1, int pos1,
13452 __isl_keep isl_basic_map *bmap2, int pos2)
13454 isl_bool equal;
13455 unsigned total;
13457 if (!bmap1 || !bmap2)
13458 return isl_bool_error;
13459 total = isl_basic_map_total_dim(bmap1);
13460 if (total != isl_basic_map_total_dim(bmap2))
13461 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
13462 "incomparable div expressions", return isl_bool_error);
13463 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13464 0, 1);
13465 if (equal < 0 || !equal)
13466 return equal;
13467 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13468 1, 1);
13469 if (equal < 0 || equal)
13470 return isl_bool_not(equal);
13471 return isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13472 2, total);
13475 /* Replace the numerator of the constant term of the integer division
13476 * expression at position "div" in "bmap" by "value".
13477 * The caller guarantees that this does not change the meaning
13478 * of the input.
13480 __isl_give isl_basic_map *isl_basic_map_set_div_expr_constant_num_si_inplace(
13481 __isl_take isl_basic_map *bmap, int div, int value)
13483 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
13484 return isl_basic_map_free(bmap);
13486 isl_int_set_si(bmap->div[div][1], value);
13488 return bmap;
13491 /* Is the point "inner" internal to inequality constraint "ineq"
13492 * of "bset"?
13493 * The point is considered to be internal to the inequality constraint,
13494 * if it strictly lies on the positive side of the inequality constraint,
13495 * or if it lies on the constraint and the constraint is lexico-positive.
13497 static isl_bool is_internal(__isl_keep isl_vec *inner,
13498 __isl_keep isl_basic_set *bset, int ineq)
13500 isl_ctx *ctx;
13501 int pos;
13502 unsigned total;
13504 if (!inner || !bset)
13505 return isl_bool_error;
13507 ctx = isl_basic_set_get_ctx(bset);
13508 isl_seq_inner_product(inner->el, bset->ineq[ineq], inner->size,
13509 &ctx->normalize_gcd);
13510 if (!isl_int_is_zero(ctx->normalize_gcd))
13511 return isl_int_is_nonneg(ctx->normalize_gcd);
13513 total = isl_basic_set_dim(bset, isl_dim_all);
13514 pos = isl_seq_first_non_zero(bset->ineq[ineq] + 1, total);
13515 return isl_int_is_pos(bset->ineq[ineq][1 + pos]);
13518 /* Tighten the inequality constraints of "bset" that are outward with respect
13519 * to the point "vec".
13520 * That is, tighten the constraints that are not satisfied by "vec".
13522 * "vec" is a point internal to some superset S of "bset" that is used
13523 * to make the subsets of S disjoint, by tightening one half of the constraints
13524 * that separate two subsets. In particular, the constraints of S
13525 * are all satisfied by "vec" and should not be tightened.
13526 * Of the internal constraints, those that have "vec" on the outside
13527 * are tightened. The shared facet is included in the adjacent subset
13528 * with the opposite constraint.
13529 * For constraints that saturate "vec", this criterion cannot be used
13530 * to determine which of the two sides should be tightened.
13531 * Instead, the sign of the first non-zero coefficient is used
13532 * to make this choice. Note that this second criterion is never used
13533 * on the constraints of S since "vec" is interior to "S".
13535 __isl_give isl_basic_set *isl_basic_set_tighten_outward(
13536 __isl_take isl_basic_set *bset, __isl_keep isl_vec *vec)
13538 int j;
13540 bset = isl_basic_set_cow(bset);
13541 if (!bset)
13542 return NULL;
13543 for (j = 0; j < bset->n_ineq; ++j) {
13544 isl_bool internal;
13546 internal = is_internal(vec, bset, j);
13547 if (internal < 0)
13548 return isl_basic_set_free(bset);
13549 if (internal)
13550 continue;
13551 isl_int_sub_ui(bset->ineq[j][0], bset->ineq[j][0], 1);
13554 return bset;
13557 /* Replace the variables x of type "type" starting at "first" in "bmap"
13558 * by x' with x = M x' with M the matrix trans.
13559 * That is, replace the corresponding coefficients c by c M.
13561 * The transformation matrix should be a square matrix.
13563 __isl_give isl_basic_map *isl_basic_map_transform_dims(
13564 __isl_take isl_basic_map *bmap, enum isl_dim_type type, unsigned first,
13565 __isl_take isl_mat *trans)
13567 unsigned pos;
13569 bmap = isl_basic_map_cow(bmap);
13570 if (!bmap || !trans)
13571 goto error;
13573 if (trans->n_row != trans->n_col)
13574 isl_die(trans->ctx, isl_error_invalid,
13575 "expecting square transformation matrix", goto error);
13576 if (first + trans->n_row > isl_basic_map_dim(bmap, type))
13577 isl_die(trans->ctx, isl_error_invalid,
13578 "oversized transformation matrix", goto error);
13580 pos = isl_basic_map_offset(bmap, type) + first;
13582 if (isl_mat_sub_transform(bmap->eq, bmap->n_eq, pos,
13583 isl_mat_copy(trans)) < 0)
13584 goto error;
13585 if (isl_mat_sub_transform(bmap->ineq, bmap->n_ineq, pos,
13586 isl_mat_copy(trans)) < 0)
13587 goto error;
13588 if (isl_mat_sub_transform(bmap->div, bmap->n_div, 1 + pos,
13589 isl_mat_copy(trans)) < 0)
13590 goto error;
13592 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
13593 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
13595 isl_mat_free(trans);
13596 return bmap;
13597 error:
13598 isl_mat_free(trans);
13599 isl_basic_map_free(bmap);
13600 return NULL;
13603 /* Replace the variables x of type "type" starting at "first" in "bset"
13604 * by x' with x = M x' with M the matrix trans.
13605 * That is, replace the corresponding coefficients c by c M.
13607 * The transformation matrix should be a square matrix.
13609 __isl_give isl_basic_set *isl_basic_set_transform_dims(
13610 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned first,
13611 __isl_take isl_mat *trans)
13613 return isl_basic_map_transform_dims(bset, type, first, trans);