isl_map_simplify.c: ok_to_eliminate_div: add memory management annotation
[isl.git] / isl_map.c
blobda19d8e925c2bde8ab2f82e80250b9fdd28f12f8
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/constraint.h>
27 #include "isl_space_private.h"
28 #include "isl_equalities.h"
29 #include <isl_lp_private.h>
30 #include <isl_seq.h>
31 #include <isl/set.h>
32 #include <isl/map.h>
33 #include <isl_reordering.h>
34 #include "isl_sample.h"
35 #include <isl_sort.h>
36 #include "isl_tab.h"
37 #include <isl/vec.h>
38 #include <isl_mat_private.h>
39 #include <isl_vec_private.h>
40 #include <isl_dim_map.h>
41 #include <isl_local_space_private.h>
42 #include <isl_aff_private.h>
43 #include <isl_options_private.h>
44 #include <isl_morph.h>
45 #include <isl_val_private.h>
46 #include <isl/deprecated/map_int.h>
47 #include <isl/deprecated/set_int.h>
49 #include <bset_to_bmap.c>
50 #include <bset_from_bmap.c>
51 #include <set_to_map.c>
52 #include <set_from_map.c>
54 static unsigned n(__isl_keep isl_space *dim, enum isl_dim_type type)
56 switch (type) {
57 case isl_dim_param: return dim->nparam;
58 case isl_dim_in: return dim->n_in;
59 case isl_dim_out: return dim->n_out;
60 case isl_dim_all: return dim->nparam + dim->n_in + dim->n_out;
61 default: return 0;
65 static unsigned pos(__isl_keep isl_space *dim, enum isl_dim_type type)
67 switch (type) {
68 case isl_dim_param: return 1;
69 case isl_dim_in: return 1 + dim->nparam;
70 case isl_dim_out: return 1 + dim->nparam + dim->n_in;
71 default: return 0;
75 unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap,
76 enum isl_dim_type type)
78 if (!bmap)
79 return 0;
80 switch (type) {
81 case isl_dim_cst: return 1;
82 case isl_dim_param:
83 case isl_dim_in:
84 case isl_dim_out: return isl_space_dim(bmap->dim, type);
85 case isl_dim_div: return bmap->n_div;
86 case isl_dim_all: return isl_basic_map_total_dim(bmap);
87 default: return 0;
91 /* Return the space of "map".
93 __isl_keep isl_space *isl_map_peek_space(__isl_keep const isl_map *map)
95 return map ? map->dim : NULL;
98 unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type)
100 return map ? n(map->dim, type) : 0;
103 unsigned isl_set_dim(__isl_keep isl_set *set, enum isl_dim_type type)
105 return set ? n(set->dim, type) : 0;
108 unsigned isl_basic_map_offset(struct isl_basic_map *bmap,
109 enum isl_dim_type type)
111 isl_space *space;
113 if (!bmap)
114 return 0;
116 space = bmap->dim;
117 switch (type) {
118 case isl_dim_cst: return 0;
119 case isl_dim_param: return 1;
120 case isl_dim_in: return 1 + space->nparam;
121 case isl_dim_out: return 1 + space->nparam + space->n_in;
122 case isl_dim_div: return 1 + space->nparam + space->n_in +
123 space->n_out;
124 default: return 0;
128 unsigned isl_basic_set_offset(struct isl_basic_set *bset,
129 enum isl_dim_type type)
131 return isl_basic_map_offset(bset, type);
134 static unsigned map_offset(__isl_keep isl_map *map, enum isl_dim_type type)
136 return pos(map->dim, type);
139 unsigned isl_basic_set_dim(__isl_keep isl_basic_set *bset,
140 enum isl_dim_type type)
142 return isl_basic_map_dim(bset, type);
145 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set *bset)
147 return isl_basic_set_dim(bset, isl_dim_set);
150 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set *bset)
152 return isl_basic_set_dim(bset, isl_dim_param);
155 unsigned isl_basic_set_total_dim(const struct isl_basic_set *bset)
157 if (!bset)
158 return 0;
159 return isl_space_dim(bset->dim, isl_dim_all) + bset->n_div;
162 unsigned isl_set_n_dim(__isl_keep isl_set *set)
164 return isl_set_dim(set, isl_dim_set);
167 unsigned isl_set_n_param(__isl_keep isl_set *set)
169 return isl_set_dim(set, isl_dim_param);
172 unsigned isl_basic_map_n_in(__isl_keep const isl_basic_map *bmap)
174 return bmap ? bmap->dim->n_in : 0;
177 unsigned isl_basic_map_n_out(__isl_keep const isl_basic_map *bmap)
179 return bmap ? bmap->dim->n_out : 0;
182 unsigned isl_basic_map_n_param(__isl_keep const isl_basic_map *bmap)
184 return bmap ? bmap->dim->nparam : 0;
187 unsigned isl_basic_map_n_div(__isl_keep const isl_basic_map *bmap)
189 return bmap ? bmap->n_div : 0;
192 unsigned isl_basic_map_total_dim(const struct isl_basic_map *bmap)
194 return bmap ? isl_space_dim(bmap->dim, isl_dim_all) + bmap->n_div : 0;
197 unsigned isl_map_n_in(const struct isl_map *map)
199 return map ? map->dim->n_in : 0;
202 unsigned isl_map_n_out(const struct isl_map *map)
204 return map ? map->dim->n_out : 0;
207 unsigned isl_map_n_param(const struct isl_map *map)
209 return map ? map->dim->nparam : 0;
212 /* Do "bmap1" and "bmap2" have the same parameters?
214 static isl_bool isl_basic_map_has_equal_params(__isl_keep isl_basic_map *bmap1,
215 __isl_keep isl_basic_map *bmap2)
217 isl_space *space1, *space2;
219 space1 = isl_basic_map_peek_space(bmap1);
220 space2 = isl_basic_map_peek_space(bmap2);
221 return isl_space_has_equal_params(space1, space2);
224 /* Do "map1" and "map2" have the same parameters?
226 isl_bool isl_map_has_equal_params(__isl_keep isl_map *map1,
227 __isl_keep isl_map *map2)
229 isl_space *space1, *space2;
231 space1 = isl_map_peek_space(map1);
232 space2 = isl_map_peek_space(map2);
233 return isl_space_has_equal_params(space1, space2);
236 /* Do "map" and "set" have the same parameters?
238 static isl_bool isl_map_set_has_equal_params(__isl_keep isl_map *map,
239 __isl_keep isl_set *set)
241 return isl_map_has_equal_params(map, set_to_map(set));
244 isl_bool isl_map_compatible_domain(__isl_keep isl_map *map,
245 __isl_keep isl_set *set)
247 isl_bool m;
248 if (!map || !set)
249 return isl_bool_error;
250 m = isl_map_has_equal_params(map, set_to_map(set));
251 if (m < 0 || !m)
252 return m;
253 return isl_space_tuple_is_equal(map->dim, isl_dim_in,
254 set->dim, isl_dim_set);
257 isl_bool isl_basic_map_compatible_domain(__isl_keep isl_basic_map *bmap,
258 __isl_keep isl_basic_set *bset)
260 isl_bool m;
261 if (!bmap || !bset)
262 return isl_bool_error;
263 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
264 if (m < 0 || !m)
265 return m;
266 return isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
267 bset->dim, isl_dim_set);
270 isl_bool isl_map_compatible_range(__isl_keep isl_map *map,
271 __isl_keep isl_set *set)
273 isl_bool m;
274 if (!map || !set)
275 return isl_bool_error;
276 m = isl_map_has_equal_params(map, set_to_map(set));
277 if (m < 0 || !m)
278 return m;
279 return isl_space_tuple_is_equal(map->dim, isl_dim_out,
280 set->dim, isl_dim_set);
283 isl_bool isl_basic_map_compatible_range(__isl_keep isl_basic_map *bmap,
284 __isl_keep isl_basic_set *bset)
286 isl_bool m;
287 if (!bmap || !bset)
288 return isl_bool_error;
289 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
290 if (m < 0 || !m)
291 return m;
292 return isl_space_tuple_is_equal(bmap->dim, isl_dim_out,
293 bset->dim, isl_dim_set);
296 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap)
298 return bmap ? bmap->ctx : NULL;
301 isl_ctx *isl_basic_set_get_ctx(__isl_keep isl_basic_set *bset)
303 return bset ? bset->ctx : NULL;
306 isl_ctx *isl_map_get_ctx(__isl_keep isl_map *map)
308 return map ? map->ctx : NULL;
311 isl_ctx *isl_set_get_ctx(__isl_keep isl_set *set)
313 return set ? set->ctx : NULL;
316 /* Return the space of "bmap".
318 __isl_keep isl_space *isl_basic_map_peek_space(
319 __isl_keep const isl_basic_map *bmap)
321 return bmap ? bmap->dim : NULL;
324 /* Return the space of "bset".
326 __isl_keep isl_space *isl_basic_set_peek_space(__isl_keep isl_basic_set *bset)
328 return isl_basic_map_peek_space(bset_to_bmap(bset));
331 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap)
333 return isl_space_copy(isl_basic_map_peek_space(bmap));
336 __isl_give isl_space *isl_basic_set_get_space(__isl_keep isl_basic_set *bset)
338 return isl_basic_map_get_space(bset_to_bmap(bset));
341 /* Extract the divs in "bmap" as a matrix.
343 __isl_give isl_mat *isl_basic_map_get_divs(__isl_keep isl_basic_map *bmap)
345 int i;
346 isl_ctx *ctx;
347 isl_mat *div;
348 unsigned total;
349 unsigned cols;
351 if (!bmap)
352 return NULL;
354 ctx = isl_basic_map_get_ctx(bmap);
355 total = isl_space_dim(bmap->dim, isl_dim_all);
356 cols = 1 + 1 + total + bmap->n_div;
357 div = isl_mat_alloc(ctx, bmap->n_div, cols);
358 if (!div)
359 return NULL;
361 for (i = 0; i < bmap->n_div; ++i)
362 isl_seq_cpy(div->row[i], bmap->div[i], cols);
364 return div;
367 /* Extract the divs in "bset" as a matrix.
369 __isl_give isl_mat *isl_basic_set_get_divs(__isl_keep isl_basic_set *bset)
371 return isl_basic_map_get_divs(bset);
374 __isl_give isl_local_space *isl_basic_map_get_local_space(
375 __isl_keep isl_basic_map *bmap)
377 isl_mat *div;
379 if (!bmap)
380 return NULL;
382 div = isl_basic_map_get_divs(bmap);
383 return isl_local_space_alloc_div(isl_space_copy(bmap->dim), div);
386 __isl_give isl_local_space *isl_basic_set_get_local_space(
387 __isl_keep isl_basic_set *bset)
389 return isl_basic_map_get_local_space(bset);
392 /* For each known div d = floor(f/m), add the constraints
394 * f - m d >= 0
395 * -(f-(m-1)) + m d >= 0
397 * Do not finalize the result.
399 static __isl_give isl_basic_map *add_known_div_constraints(
400 __isl_take isl_basic_map *bmap)
402 int i;
403 unsigned n_div;
405 if (!bmap)
406 return NULL;
407 n_div = isl_basic_map_dim(bmap, isl_dim_div);
408 if (n_div == 0)
409 return bmap;
410 bmap = isl_basic_map_cow(bmap);
411 bmap = isl_basic_map_extend_constraints(bmap, 0, 2 * n_div);
412 if (!bmap)
413 return NULL;
414 for (i = 0; i < n_div; ++i) {
415 if (isl_int_is_zero(bmap->div[i][0]))
416 continue;
417 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
418 return isl_basic_map_free(bmap);
421 return bmap;
424 __isl_give isl_basic_map *isl_basic_map_from_local_space(
425 __isl_take isl_local_space *ls)
427 int i;
428 int n_div;
429 isl_basic_map *bmap;
431 if (!ls)
432 return NULL;
434 n_div = isl_local_space_dim(ls, isl_dim_div);
435 bmap = isl_basic_map_alloc_space(isl_local_space_get_space(ls),
436 n_div, 0, 2 * n_div);
438 for (i = 0; i < n_div; ++i)
439 if (isl_basic_map_alloc_div(bmap) < 0)
440 goto error;
442 for (i = 0; i < n_div; ++i)
443 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
444 bmap = add_known_div_constraints(bmap);
446 isl_local_space_free(ls);
447 return bmap;
448 error:
449 isl_local_space_free(ls);
450 isl_basic_map_free(bmap);
451 return NULL;
454 __isl_give isl_basic_set *isl_basic_set_from_local_space(
455 __isl_take isl_local_space *ls)
457 return isl_basic_map_from_local_space(ls);
460 __isl_give isl_space *isl_map_get_space(__isl_keep isl_map *map)
462 return isl_space_copy(isl_map_peek_space(map));
465 __isl_give isl_space *isl_set_get_space(__isl_keep isl_set *set)
467 if (!set)
468 return NULL;
469 return isl_space_copy(set->dim);
472 __isl_give isl_basic_map *isl_basic_map_set_tuple_name(
473 __isl_take isl_basic_map *bmap, enum isl_dim_type type, const char *s)
475 bmap = isl_basic_map_cow(bmap);
476 if (!bmap)
477 return NULL;
478 bmap->dim = isl_space_set_tuple_name(bmap->dim, type, s);
479 if (!bmap->dim)
480 goto error;
481 bmap = isl_basic_map_finalize(bmap);
482 return bmap;
483 error:
484 isl_basic_map_free(bmap);
485 return NULL;
488 __isl_give isl_basic_set *isl_basic_set_set_tuple_name(
489 __isl_take isl_basic_set *bset, const char *s)
491 return isl_basic_map_set_tuple_name(bset, isl_dim_set, s);
494 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map *bmap,
495 enum isl_dim_type type)
497 return bmap ? isl_space_get_tuple_name(bmap->dim, type) : NULL;
500 __isl_give isl_map *isl_map_set_tuple_name(__isl_take isl_map *map,
501 enum isl_dim_type type, const char *s)
503 int i;
505 map = isl_map_cow(map);
506 if (!map)
507 return NULL;
509 map->dim = isl_space_set_tuple_name(map->dim, type, s);
510 if (!map->dim)
511 goto error;
513 for (i = 0; i < map->n; ++i) {
514 map->p[i] = isl_basic_map_set_tuple_name(map->p[i], type, s);
515 if (!map->p[i])
516 goto error;
519 return map;
520 error:
521 isl_map_free(map);
522 return NULL;
525 /* Replace the identifier of the tuple of type "type" by "id".
527 __isl_give isl_basic_map *isl_basic_map_set_tuple_id(
528 __isl_take isl_basic_map *bmap,
529 enum isl_dim_type type, __isl_take isl_id *id)
531 bmap = isl_basic_map_cow(bmap);
532 if (!bmap)
533 goto error;
534 bmap->dim = isl_space_set_tuple_id(bmap->dim, type, id);
535 if (!bmap->dim)
536 return isl_basic_map_free(bmap);
537 bmap = isl_basic_map_finalize(bmap);
538 return bmap;
539 error:
540 isl_id_free(id);
541 return NULL;
544 /* Replace the identifier of the tuple by "id".
546 __isl_give isl_basic_set *isl_basic_set_set_tuple_id(
547 __isl_take isl_basic_set *bset, __isl_take isl_id *id)
549 return isl_basic_map_set_tuple_id(bset, isl_dim_set, id);
552 /* Does the input or output tuple have a name?
554 isl_bool isl_map_has_tuple_name(__isl_keep isl_map *map, enum isl_dim_type type)
556 return map ? isl_space_has_tuple_name(map->dim, type) : isl_bool_error;
559 const char *isl_map_get_tuple_name(__isl_keep isl_map *map,
560 enum isl_dim_type type)
562 return map ? isl_space_get_tuple_name(map->dim, type) : NULL;
565 __isl_give isl_set *isl_set_set_tuple_name(__isl_take isl_set *set,
566 const char *s)
568 return set_from_map(isl_map_set_tuple_name(set_to_map(set),
569 isl_dim_set, s));
572 __isl_give isl_map *isl_map_set_tuple_id(__isl_take isl_map *map,
573 enum isl_dim_type type, __isl_take isl_id *id)
575 map = isl_map_cow(map);
576 if (!map)
577 goto error;
579 map->dim = isl_space_set_tuple_id(map->dim, type, id);
581 return isl_map_reset_space(map, isl_space_copy(map->dim));
582 error:
583 isl_id_free(id);
584 return NULL;
587 __isl_give isl_set *isl_set_set_tuple_id(__isl_take isl_set *set,
588 __isl_take isl_id *id)
590 return isl_map_set_tuple_id(set, isl_dim_set, id);
593 __isl_give isl_map *isl_map_reset_tuple_id(__isl_take isl_map *map,
594 enum isl_dim_type type)
596 map = isl_map_cow(map);
597 if (!map)
598 return NULL;
600 map->dim = isl_space_reset_tuple_id(map->dim, type);
602 return isl_map_reset_space(map, isl_space_copy(map->dim));
605 __isl_give isl_set *isl_set_reset_tuple_id(__isl_take isl_set *set)
607 return isl_map_reset_tuple_id(set, isl_dim_set);
610 isl_bool isl_map_has_tuple_id(__isl_keep isl_map *map, enum isl_dim_type type)
612 return map ? isl_space_has_tuple_id(map->dim, type) : isl_bool_error;
615 __isl_give isl_id *isl_map_get_tuple_id(__isl_keep isl_map *map,
616 enum isl_dim_type type)
618 return map ? isl_space_get_tuple_id(map->dim, type) : NULL;
621 isl_bool isl_set_has_tuple_id(__isl_keep isl_set *set)
623 return isl_map_has_tuple_id(set, isl_dim_set);
626 __isl_give isl_id *isl_set_get_tuple_id(__isl_keep isl_set *set)
628 return isl_map_get_tuple_id(set, isl_dim_set);
631 /* Does the set tuple have a name?
633 isl_bool isl_set_has_tuple_name(__isl_keep isl_set *set)
635 if (!set)
636 return isl_bool_error;
637 return isl_space_has_tuple_name(set->dim, isl_dim_set);
641 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set *bset)
643 return bset ? isl_space_get_tuple_name(bset->dim, isl_dim_set) : NULL;
646 const char *isl_set_get_tuple_name(__isl_keep isl_set *set)
648 return set ? isl_space_get_tuple_name(set->dim, isl_dim_set) : NULL;
651 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map *bmap,
652 enum isl_dim_type type, unsigned pos)
654 return bmap ? isl_space_get_dim_name(bmap->dim, type, pos) : NULL;
657 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set *bset,
658 enum isl_dim_type type, unsigned pos)
660 return bset ? isl_space_get_dim_name(bset->dim, type, pos) : NULL;
663 /* Does the given dimension have a name?
665 isl_bool isl_map_has_dim_name(__isl_keep isl_map *map,
666 enum isl_dim_type type, unsigned pos)
668 if (!map)
669 return isl_bool_error;
670 return isl_space_has_dim_name(map->dim, type, pos);
673 const char *isl_map_get_dim_name(__isl_keep isl_map *map,
674 enum isl_dim_type type, unsigned pos)
676 return map ? isl_space_get_dim_name(map->dim, type, pos) : NULL;
679 const char *isl_set_get_dim_name(__isl_keep isl_set *set,
680 enum isl_dim_type type, unsigned pos)
682 return set ? isl_space_get_dim_name(set->dim, type, pos) : NULL;
685 /* Does the given dimension have a name?
687 isl_bool isl_set_has_dim_name(__isl_keep isl_set *set,
688 enum isl_dim_type type, unsigned pos)
690 if (!set)
691 return isl_bool_error;
692 return isl_space_has_dim_name(set->dim, type, pos);
695 __isl_give isl_basic_map *isl_basic_map_set_dim_name(
696 __isl_take isl_basic_map *bmap,
697 enum isl_dim_type type, unsigned pos, const char *s)
699 bmap = isl_basic_map_cow(bmap);
700 if (!bmap)
701 return NULL;
702 bmap->dim = isl_space_set_dim_name(bmap->dim, type, pos, s);
703 if (!bmap->dim)
704 goto error;
705 return isl_basic_map_finalize(bmap);
706 error:
707 isl_basic_map_free(bmap);
708 return NULL;
711 __isl_give isl_map *isl_map_set_dim_name(__isl_take isl_map *map,
712 enum isl_dim_type type, unsigned pos, const char *s)
714 int i;
716 map = isl_map_cow(map);
717 if (!map)
718 return NULL;
720 map->dim = isl_space_set_dim_name(map->dim, type, pos, s);
721 if (!map->dim)
722 goto error;
724 for (i = 0; i < map->n; ++i) {
725 map->p[i] = isl_basic_map_set_dim_name(map->p[i], type, pos, s);
726 if (!map->p[i])
727 goto error;
730 return map;
731 error:
732 isl_map_free(map);
733 return NULL;
736 __isl_give isl_basic_set *isl_basic_set_set_dim_name(
737 __isl_take isl_basic_set *bset,
738 enum isl_dim_type type, unsigned pos, const char *s)
740 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset),
741 type, pos, s));
744 __isl_give isl_set *isl_set_set_dim_name(__isl_take isl_set *set,
745 enum isl_dim_type type, unsigned pos, const char *s)
747 return set_from_map(isl_map_set_dim_name(set_to_map(set),
748 type, pos, s));
751 isl_bool isl_basic_map_has_dim_id(__isl_keep isl_basic_map *bmap,
752 enum isl_dim_type type, unsigned pos)
754 if (!bmap)
755 return isl_bool_error;
756 return isl_space_has_dim_id(bmap->dim, type, pos);
759 __isl_give isl_id *isl_basic_set_get_dim_id(__isl_keep isl_basic_set *bset,
760 enum isl_dim_type type, unsigned pos)
762 return bset ? isl_space_get_dim_id(bset->dim, type, pos) : NULL;
765 isl_bool isl_map_has_dim_id(__isl_keep isl_map *map,
766 enum isl_dim_type type, unsigned pos)
768 return map ? isl_space_has_dim_id(map->dim, type, pos) : isl_bool_error;
771 __isl_give isl_id *isl_map_get_dim_id(__isl_keep isl_map *map,
772 enum isl_dim_type type, unsigned pos)
774 return map ? isl_space_get_dim_id(map->dim, type, pos) : NULL;
777 isl_bool isl_set_has_dim_id(__isl_keep isl_set *set,
778 enum isl_dim_type type, unsigned pos)
780 return isl_map_has_dim_id(set, type, pos);
783 __isl_give isl_id *isl_set_get_dim_id(__isl_keep isl_set *set,
784 enum isl_dim_type type, unsigned pos)
786 return isl_map_get_dim_id(set, type, pos);
789 __isl_give isl_map *isl_map_set_dim_id(__isl_take isl_map *map,
790 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
792 map = isl_map_cow(map);
793 if (!map)
794 goto error;
796 map->dim = isl_space_set_dim_id(map->dim, type, pos, id);
798 return isl_map_reset_space(map, isl_space_copy(map->dim));
799 error:
800 isl_id_free(id);
801 return NULL;
804 __isl_give isl_set *isl_set_set_dim_id(__isl_take isl_set *set,
805 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
807 return isl_map_set_dim_id(set, type, pos, id);
810 int isl_map_find_dim_by_id(__isl_keep isl_map *map, enum isl_dim_type type,
811 __isl_keep isl_id *id)
813 if (!map)
814 return -1;
815 return isl_space_find_dim_by_id(map->dim, type, id);
818 int isl_set_find_dim_by_id(__isl_keep isl_set *set, enum isl_dim_type type,
819 __isl_keep isl_id *id)
821 return isl_map_find_dim_by_id(set, type, id);
824 /* Return the position of the dimension of the given type and name
825 * in "bmap".
826 * Return -1 if no such dimension can be found.
828 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map *bmap,
829 enum isl_dim_type type, const char *name)
831 if (!bmap)
832 return -1;
833 return isl_space_find_dim_by_name(bmap->dim, type, name);
836 int isl_map_find_dim_by_name(__isl_keep isl_map *map, enum isl_dim_type type,
837 const char *name)
839 if (!map)
840 return -1;
841 return isl_space_find_dim_by_name(map->dim, type, name);
844 int isl_set_find_dim_by_name(__isl_keep isl_set *set, enum isl_dim_type type,
845 const char *name)
847 return isl_map_find_dim_by_name(set, type, name);
850 /* Check whether equality i of bset is a pure stride constraint
851 * on a single dimension, i.e., of the form
853 * v = k e
855 * with k a constant and e an existentially quantified variable.
857 isl_bool isl_basic_set_eq_is_stride(__isl_keep isl_basic_set *bset, int i)
859 unsigned nparam;
860 unsigned d;
861 unsigned n_div;
862 int pos1;
863 int pos2;
865 if (!bset)
866 return isl_bool_error;
868 if (!isl_int_is_zero(bset->eq[i][0]))
869 return isl_bool_false;
871 nparam = isl_basic_set_dim(bset, isl_dim_param);
872 d = isl_basic_set_dim(bset, isl_dim_set);
873 n_div = isl_basic_set_dim(bset, isl_dim_div);
875 if (isl_seq_first_non_zero(bset->eq[i] + 1, nparam) != -1)
876 return isl_bool_false;
877 pos1 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam, d);
878 if (pos1 == -1)
879 return isl_bool_false;
880 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + pos1 + 1,
881 d - pos1 - 1) != -1)
882 return isl_bool_false;
884 pos2 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d, n_div);
885 if (pos2 == -1)
886 return isl_bool_false;
887 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d + pos2 + 1,
888 n_div - pos2 - 1) != -1)
889 return isl_bool_false;
890 if (!isl_int_is_one(bset->eq[i][1 + nparam + pos1]) &&
891 !isl_int_is_negone(bset->eq[i][1 + nparam + pos1]))
892 return isl_bool_false;
894 return isl_bool_true;
897 /* Reset the user pointer on all identifiers of parameters and tuples
898 * of the space of "map".
900 __isl_give isl_map *isl_map_reset_user(__isl_take isl_map *map)
902 isl_space *space;
904 space = isl_map_get_space(map);
905 space = isl_space_reset_user(space);
906 map = isl_map_reset_space(map, space);
908 return map;
911 /* Reset the user pointer on all identifiers of parameters and tuples
912 * of the space of "set".
914 __isl_give isl_set *isl_set_reset_user(__isl_take isl_set *set)
916 return isl_map_reset_user(set);
919 isl_bool isl_basic_map_is_rational(__isl_keep isl_basic_map *bmap)
921 if (!bmap)
922 return isl_bool_error;
923 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
926 /* Has "map" been marked as a rational map?
927 * In particular, have all basic maps in "map" been marked this way?
928 * An empty map is not considered to be rational.
929 * Maps where only some of the basic maps are marked rational
930 * are not allowed.
932 isl_bool isl_map_is_rational(__isl_keep isl_map *map)
934 int i;
935 isl_bool rational;
937 if (!map)
938 return isl_bool_error;
939 if (map->n == 0)
940 return isl_bool_false;
941 rational = isl_basic_map_is_rational(map->p[0]);
942 if (rational < 0)
943 return rational;
944 for (i = 1; i < map->n; ++i) {
945 isl_bool rational_i;
947 rational_i = isl_basic_map_is_rational(map->p[i]);
948 if (rational_i < 0)
949 return rational_i;
950 if (rational != rational_i)
951 isl_die(isl_map_get_ctx(map), isl_error_unsupported,
952 "mixed rational and integer basic maps "
953 "not supported", return isl_bool_error);
956 return rational;
959 /* Has "set" been marked as a rational set?
960 * In particular, have all basic set in "set" been marked this way?
961 * An empty set is not considered to be rational.
962 * Sets where only some of the basic sets are marked rational
963 * are not allowed.
965 isl_bool isl_set_is_rational(__isl_keep isl_set *set)
967 return isl_map_is_rational(set);
970 int isl_basic_set_is_rational(__isl_keep isl_basic_set *bset)
972 return isl_basic_map_is_rational(bset);
975 /* Does "bmap" contain any rational points?
977 * If "bmap" has an equality for each dimension, equating the dimension
978 * to an integer constant, then it has no rational points, even if it
979 * is marked as rational.
981 isl_bool isl_basic_map_has_rational(__isl_keep isl_basic_map *bmap)
983 isl_bool has_rational = isl_bool_true;
984 unsigned total;
986 if (!bmap)
987 return isl_bool_error;
988 if (isl_basic_map_plain_is_empty(bmap))
989 return isl_bool_false;
990 if (!isl_basic_map_is_rational(bmap))
991 return isl_bool_false;
992 bmap = isl_basic_map_copy(bmap);
993 bmap = isl_basic_map_implicit_equalities(bmap);
994 if (!bmap)
995 return isl_bool_error;
996 total = isl_basic_map_total_dim(bmap);
997 if (bmap->n_eq == total) {
998 int i, j;
999 for (i = 0; i < bmap->n_eq; ++i) {
1000 j = isl_seq_first_non_zero(bmap->eq[i] + 1, total);
1001 if (j < 0)
1002 break;
1003 if (!isl_int_is_one(bmap->eq[i][1 + j]) &&
1004 !isl_int_is_negone(bmap->eq[i][1 + j]))
1005 break;
1006 j = isl_seq_first_non_zero(bmap->eq[i] + 1 + j + 1,
1007 total - j - 1);
1008 if (j >= 0)
1009 break;
1011 if (i == bmap->n_eq)
1012 has_rational = isl_bool_false;
1014 isl_basic_map_free(bmap);
1016 return has_rational;
1019 /* Does "map" contain any rational points?
1021 isl_bool isl_map_has_rational(__isl_keep isl_map *map)
1023 int i;
1024 isl_bool has_rational;
1026 if (!map)
1027 return isl_bool_error;
1028 for (i = 0; i < map->n; ++i) {
1029 has_rational = isl_basic_map_has_rational(map->p[i]);
1030 if (has_rational < 0 || has_rational)
1031 return has_rational;
1033 return isl_bool_false;
1036 /* Does "set" contain any rational points?
1038 isl_bool isl_set_has_rational(__isl_keep isl_set *set)
1040 return isl_map_has_rational(set);
1043 /* Is this basic set a parameter domain?
1045 isl_bool isl_basic_set_is_params(__isl_keep isl_basic_set *bset)
1047 if (!bset)
1048 return isl_bool_error;
1049 return isl_space_is_params(bset->dim);
1052 /* Is this set a parameter domain?
1054 isl_bool isl_set_is_params(__isl_keep isl_set *set)
1056 if (!set)
1057 return isl_bool_error;
1058 return isl_space_is_params(set->dim);
1061 /* Is this map actually a parameter domain?
1062 * Users should never call this function. Outside of isl,
1063 * a map can never be a parameter domain.
1065 isl_bool isl_map_is_params(__isl_keep isl_map *map)
1067 if (!map)
1068 return isl_bool_error;
1069 return isl_space_is_params(map->dim);
1072 static struct isl_basic_map *basic_map_init(struct isl_ctx *ctx,
1073 struct isl_basic_map *bmap, unsigned extra,
1074 unsigned n_eq, unsigned n_ineq)
1076 int i;
1077 size_t row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + extra;
1079 bmap->ctx = ctx;
1080 isl_ctx_ref(ctx);
1082 bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
1083 if (isl_blk_is_error(bmap->block))
1084 goto error;
1086 bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
1087 if ((n_ineq + n_eq) && !bmap->ineq)
1088 goto error;
1090 if (extra == 0) {
1091 bmap->block2 = isl_blk_empty();
1092 bmap->div = NULL;
1093 } else {
1094 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
1095 if (isl_blk_is_error(bmap->block2))
1096 goto error;
1098 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
1099 if (!bmap->div)
1100 goto error;
1103 for (i = 0; i < n_ineq + n_eq; ++i)
1104 bmap->ineq[i] = bmap->block.data + i * row_size;
1106 for (i = 0; i < extra; ++i)
1107 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
1109 bmap->ref = 1;
1110 bmap->flags = 0;
1111 bmap->c_size = n_eq + n_ineq;
1112 bmap->eq = bmap->ineq + n_ineq;
1113 bmap->extra = extra;
1114 bmap->n_eq = 0;
1115 bmap->n_ineq = 0;
1116 bmap->n_div = 0;
1117 bmap->sample = NULL;
1119 return bmap;
1120 error:
1121 isl_basic_map_free(bmap);
1122 return NULL;
1125 struct isl_basic_set *isl_basic_set_alloc(struct isl_ctx *ctx,
1126 unsigned nparam, unsigned dim, unsigned extra,
1127 unsigned n_eq, unsigned n_ineq)
1129 struct isl_basic_map *bmap;
1130 isl_space *space;
1132 space = isl_space_set_alloc(ctx, nparam, dim);
1133 if (!space)
1134 return NULL;
1136 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1137 return bset_from_bmap(bmap);
1140 struct isl_basic_set *isl_basic_set_alloc_space(__isl_take isl_space *dim,
1141 unsigned extra, unsigned n_eq, unsigned n_ineq)
1143 struct isl_basic_map *bmap;
1144 if (!dim)
1145 return NULL;
1146 isl_assert(dim->ctx, dim->n_in == 0, goto error);
1147 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1148 return bset_from_bmap(bmap);
1149 error:
1150 isl_space_free(dim);
1151 return NULL;
1154 struct isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *dim,
1155 unsigned extra, unsigned n_eq, unsigned n_ineq)
1157 struct isl_basic_map *bmap;
1159 if (!dim)
1160 return NULL;
1161 bmap = isl_calloc_type(dim->ctx, struct isl_basic_map);
1162 if (!bmap)
1163 goto error;
1164 bmap->dim = dim;
1166 return basic_map_init(dim->ctx, bmap, extra, n_eq, n_ineq);
1167 error:
1168 isl_space_free(dim);
1169 return NULL;
1172 struct isl_basic_map *isl_basic_map_alloc(struct isl_ctx *ctx,
1173 unsigned nparam, unsigned in, unsigned out, unsigned extra,
1174 unsigned n_eq, unsigned n_ineq)
1176 struct isl_basic_map *bmap;
1177 isl_space *dim;
1179 dim = isl_space_alloc(ctx, nparam, in, out);
1180 if (!dim)
1181 return NULL;
1183 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1184 return bmap;
1187 static void dup_constraints(
1188 struct isl_basic_map *dst, struct isl_basic_map *src)
1190 int i;
1191 unsigned total = isl_basic_map_total_dim(src);
1193 for (i = 0; i < src->n_eq; ++i) {
1194 int j = isl_basic_map_alloc_equality(dst);
1195 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
1198 for (i = 0; i < src->n_ineq; ++i) {
1199 int j = isl_basic_map_alloc_inequality(dst);
1200 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
1203 for (i = 0; i < src->n_div; ++i) {
1204 int j = isl_basic_map_alloc_div(dst);
1205 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
1207 ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
1210 struct isl_basic_map *isl_basic_map_dup(struct isl_basic_map *bmap)
1212 struct isl_basic_map *dup;
1214 if (!bmap)
1215 return NULL;
1216 dup = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
1217 bmap->n_div, bmap->n_eq, bmap->n_ineq);
1218 if (!dup)
1219 return NULL;
1220 dup_constraints(dup, bmap);
1221 dup->flags = bmap->flags;
1222 dup->sample = isl_vec_copy(bmap->sample);
1223 return dup;
1226 struct isl_basic_set *isl_basic_set_dup(struct isl_basic_set *bset)
1228 struct isl_basic_map *dup;
1230 dup = isl_basic_map_dup(bset_to_bmap(bset));
1231 return bset_from_bmap(dup);
1234 struct isl_basic_set *isl_basic_set_copy(struct isl_basic_set *bset)
1236 if (!bset)
1237 return NULL;
1239 if (ISL_F_ISSET(bset, ISL_BASIC_SET_FINAL)) {
1240 bset->ref++;
1241 return bset;
1243 return isl_basic_set_dup(bset);
1246 struct isl_set *isl_set_copy(struct isl_set *set)
1248 if (!set)
1249 return NULL;
1251 set->ref++;
1252 return set;
1255 struct isl_basic_map *isl_basic_map_copy(struct isl_basic_map *bmap)
1257 if (!bmap)
1258 return NULL;
1260 if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
1261 bmap->ref++;
1262 return bmap;
1264 bmap = isl_basic_map_dup(bmap);
1265 if (bmap)
1266 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1267 return bmap;
1270 struct isl_map *isl_map_copy(struct isl_map *map)
1272 if (!map)
1273 return NULL;
1275 map->ref++;
1276 return map;
1279 __isl_null isl_basic_map *isl_basic_map_free(__isl_take isl_basic_map *bmap)
1281 if (!bmap)
1282 return NULL;
1284 if (--bmap->ref > 0)
1285 return NULL;
1287 isl_ctx_deref(bmap->ctx);
1288 free(bmap->div);
1289 isl_blk_free(bmap->ctx, bmap->block2);
1290 free(bmap->ineq);
1291 isl_blk_free(bmap->ctx, bmap->block);
1292 isl_vec_free(bmap->sample);
1293 isl_space_free(bmap->dim);
1294 free(bmap);
1296 return NULL;
1299 __isl_null isl_basic_set *isl_basic_set_free(__isl_take isl_basic_set *bset)
1301 return isl_basic_map_free(bset_to_bmap(bset));
1304 static int room_for_con(struct isl_basic_map *bmap, unsigned n)
1306 return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
1309 /* Check that "map" has only named parameters, reporting an error
1310 * if it does not.
1312 isl_stat isl_map_check_named_params(__isl_keep isl_map *map)
1314 return isl_space_check_named_params(isl_map_peek_space(map));
1317 /* Check that "bmap1" and "bmap2" have the same parameters,
1318 * reporting an error if they do not.
1320 static isl_stat isl_basic_map_check_equal_params(
1321 __isl_keep isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
1323 isl_bool match;
1325 match = isl_basic_map_has_equal_params(bmap1, bmap2);
1326 if (match < 0)
1327 return isl_stat_error;
1328 if (!match)
1329 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
1330 "parameters don't match", return isl_stat_error);
1331 return isl_stat_ok;
1334 __isl_give isl_map *isl_map_align_params_map_map_and(
1335 __isl_take isl_map *map1, __isl_take isl_map *map2,
1336 __isl_give isl_map *(*fn)(__isl_take isl_map *map1,
1337 __isl_take isl_map *map2))
1339 if (!map1 || !map2)
1340 goto error;
1341 if (isl_map_has_equal_params(map1, map2))
1342 return fn(map1, map2);
1343 if (isl_map_check_named_params(map1) < 0)
1344 goto error;
1345 if (isl_map_check_named_params(map2) < 0)
1346 goto error;
1347 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1348 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1349 return fn(map1, map2);
1350 error:
1351 isl_map_free(map1);
1352 isl_map_free(map2);
1353 return NULL;
1356 isl_bool isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
1357 __isl_keep isl_map *map2,
1358 isl_bool (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
1360 isl_bool r;
1362 if (!map1 || !map2)
1363 return isl_bool_error;
1364 if (isl_map_has_equal_params(map1, map2))
1365 return fn(map1, map2);
1366 if (isl_map_check_named_params(map1) < 0)
1367 return isl_bool_error;
1368 if (isl_map_check_named_params(map2) < 0)
1369 return isl_bool_error;
1370 map1 = isl_map_copy(map1);
1371 map2 = isl_map_copy(map2);
1372 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1373 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1374 r = fn(map1, map2);
1375 isl_map_free(map1);
1376 isl_map_free(map2);
1377 return r;
1380 int isl_basic_map_alloc_equality(struct isl_basic_map *bmap)
1382 struct isl_ctx *ctx;
1383 if (!bmap)
1384 return -1;
1385 ctx = bmap->ctx;
1386 isl_assert(ctx, room_for_con(bmap, 1), return -1);
1387 isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
1388 return -1);
1389 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1390 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1391 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1392 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1393 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1394 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1395 isl_int *t;
1396 int j = isl_basic_map_alloc_inequality(bmap);
1397 if (j < 0)
1398 return -1;
1399 t = bmap->ineq[j];
1400 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1401 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1402 bmap->eq[-1] = t;
1403 bmap->n_eq++;
1404 bmap->n_ineq--;
1405 bmap->eq--;
1406 return 0;
1408 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
1409 bmap->extra - bmap->n_div);
1410 return bmap->n_eq++;
1413 int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
1415 return isl_basic_map_alloc_equality(bset_to_bmap(bset));
1418 int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
1420 if (!bmap)
1421 return -1;
1422 isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
1423 bmap->n_eq -= n;
1424 return 0;
1427 int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
1429 return isl_basic_map_free_equality(bset_to_bmap(bset), n);
1432 int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
1434 isl_int *t;
1435 if (!bmap)
1436 return -1;
1437 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1439 if (pos != bmap->n_eq - 1) {
1440 t = bmap->eq[pos];
1441 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
1442 bmap->eq[bmap->n_eq - 1] = t;
1444 bmap->n_eq--;
1445 return 0;
1448 /* Turn inequality "pos" of "bmap" into an equality.
1450 * In particular, we move the inequality in front of the equalities
1451 * and move the last inequality in the position of the moved inequality.
1452 * Note that isl_tab_make_equalities_explicit depends on this particular
1453 * change in the ordering of the constraints.
1455 void isl_basic_map_inequality_to_equality(
1456 struct isl_basic_map *bmap, unsigned pos)
1458 isl_int *t;
1460 t = bmap->ineq[pos];
1461 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1462 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1463 bmap->eq[-1] = t;
1464 bmap->n_eq++;
1465 bmap->n_ineq--;
1466 bmap->eq--;
1467 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1468 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1469 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1470 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1473 static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
1475 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1478 int isl_basic_map_alloc_inequality(struct isl_basic_map *bmap)
1480 struct isl_ctx *ctx;
1481 if (!bmap)
1482 return -1;
1483 ctx = bmap->ctx;
1484 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1485 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1486 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1487 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1488 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1489 isl_seq_clr(bmap->ineq[bmap->n_ineq] +
1490 1 + isl_basic_map_total_dim(bmap),
1491 bmap->extra - bmap->n_div);
1492 return bmap->n_ineq++;
1495 int isl_basic_set_alloc_inequality(struct isl_basic_set *bset)
1497 return isl_basic_map_alloc_inequality(bset_to_bmap(bset));
1500 int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
1502 if (!bmap)
1503 return -1;
1504 isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
1505 bmap->n_ineq -= n;
1506 return 0;
1509 int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
1511 return isl_basic_map_free_inequality(bset_to_bmap(bset), n);
1514 int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
1516 isl_int *t;
1517 if (!bmap)
1518 return -1;
1519 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1521 if (pos != bmap->n_ineq - 1) {
1522 t = bmap->ineq[pos];
1523 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1524 bmap->ineq[bmap->n_ineq - 1] = t;
1525 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1527 bmap->n_ineq--;
1528 return 0;
1531 int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
1533 return isl_basic_map_drop_inequality(bset_to_bmap(bset), pos);
1536 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1537 isl_int *eq)
1539 int k;
1541 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1542 if (!bmap)
1543 return NULL;
1544 k = isl_basic_map_alloc_equality(bmap);
1545 if (k < 0)
1546 goto error;
1547 isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
1548 return bmap;
1549 error:
1550 isl_basic_map_free(bmap);
1551 return NULL;
1554 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1555 isl_int *eq)
1557 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset), eq));
1560 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1561 isl_int *ineq)
1563 int k;
1565 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1566 if (!bmap)
1567 return NULL;
1568 k = isl_basic_map_alloc_inequality(bmap);
1569 if (k < 0)
1570 goto error;
1571 isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
1572 return bmap;
1573 error:
1574 isl_basic_map_free(bmap);
1575 return NULL;
1578 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1579 isl_int *ineq)
1581 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset), ineq));
1584 int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
1586 if (!bmap)
1587 return -1;
1588 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1589 isl_seq_clr(bmap->div[bmap->n_div] +
1590 1 + 1 + isl_basic_map_total_dim(bmap),
1591 bmap->extra - bmap->n_div);
1592 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1593 return bmap->n_div++;
1596 int isl_basic_set_alloc_div(struct isl_basic_set *bset)
1598 return isl_basic_map_alloc_div(bset_to_bmap(bset));
1601 /* Check that there are "n" dimensions of type "type" starting at "first"
1602 * in "bmap".
1604 static isl_stat isl_basic_map_check_range(__isl_keep isl_basic_map *bmap,
1605 enum isl_dim_type type, unsigned first, unsigned n)
1607 unsigned dim;
1609 if (!bmap)
1610 return isl_stat_error;
1611 dim = isl_basic_map_dim(bmap, type);
1612 if (first + n > dim || first + n < first)
1613 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1614 "position or range out of bounds",
1615 return isl_stat_error);
1616 return isl_stat_ok;
1619 /* Insert an extra integer division, prescribed by "div", to "bmap"
1620 * at (integer division) position "pos".
1622 * The integer division is first added at the end and then moved
1623 * into the right position.
1625 __isl_give isl_basic_map *isl_basic_map_insert_div(
1626 __isl_take isl_basic_map *bmap, int pos, __isl_keep isl_vec *div)
1628 int i, k;
1630 bmap = isl_basic_map_cow(bmap);
1631 if (!bmap || !div)
1632 return isl_basic_map_free(bmap);
1634 if (div->size != 1 + 1 + isl_basic_map_dim(bmap, isl_dim_all))
1635 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1636 "unexpected size", return isl_basic_map_free(bmap));
1637 if (isl_basic_map_check_range(bmap, isl_dim_div, pos, 0) < 0)
1638 return isl_basic_map_free(bmap);
1640 bmap = isl_basic_map_extend_space(bmap,
1641 isl_basic_map_get_space(bmap), 1, 0, 2);
1642 k = isl_basic_map_alloc_div(bmap);
1643 if (k < 0)
1644 return isl_basic_map_free(bmap);
1645 isl_seq_cpy(bmap->div[k], div->el, div->size);
1646 isl_int_set_si(bmap->div[k][div->size], 0);
1648 for (i = k; i > pos; --i)
1649 isl_basic_map_swap_div(bmap, i, i - 1);
1651 return bmap;
1654 isl_stat isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
1656 if (!bmap)
1657 return isl_stat_error;
1658 isl_assert(bmap->ctx, n <= bmap->n_div, return isl_stat_error);
1659 bmap->n_div -= n;
1660 return isl_stat_ok;
1663 /* Copy constraint from src to dst, putting the vars of src at offset
1664 * dim_off in dst and the divs of src at offset div_off in dst.
1665 * If both sets are actually map, then dim_off applies to the input
1666 * variables.
1668 static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
1669 struct isl_basic_map *src_map, isl_int *src,
1670 unsigned in_off, unsigned out_off, unsigned div_off)
1672 unsigned src_nparam = isl_basic_map_dim(src_map, isl_dim_param);
1673 unsigned dst_nparam = isl_basic_map_dim(dst_map, isl_dim_param);
1674 unsigned src_in = isl_basic_map_dim(src_map, isl_dim_in);
1675 unsigned dst_in = isl_basic_map_dim(dst_map, isl_dim_in);
1676 unsigned src_out = isl_basic_map_dim(src_map, isl_dim_out);
1677 unsigned dst_out = isl_basic_map_dim(dst_map, isl_dim_out);
1678 isl_int_set(dst[0], src[0]);
1679 isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
1680 if (dst_nparam > src_nparam)
1681 isl_seq_clr(dst+1+src_nparam,
1682 dst_nparam - src_nparam);
1683 isl_seq_clr(dst+1+dst_nparam, in_off);
1684 isl_seq_cpy(dst+1+dst_nparam+in_off,
1685 src+1+src_nparam,
1686 isl_min(dst_in-in_off, src_in));
1687 if (dst_in-in_off > src_in)
1688 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
1689 dst_in - in_off - src_in);
1690 isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
1691 isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
1692 src+1+src_nparam+src_in,
1693 isl_min(dst_out-out_off, src_out));
1694 if (dst_out-out_off > src_out)
1695 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
1696 dst_out - out_off - src_out);
1697 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
1698 isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
1699 src+1+src_nparam+src_in+src_out,
1700 isl_min(dst_map->extra-div_off, src_map->n_div));
1701 if (dst_map->n_div-div_off > src_map->n_div)
1702 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
1703 div_off+src_map->n_div,
1704 dst_map->n_div - div_off - src_map->n_div);
1707 static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
1708 struct isl_basic_map *src_map, isl_int *src,
1709 unsigned in_off, unsigned out_off, unsigned div_off)
1711 isl_int_set(dst[0], src[0]);
1712 copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
1715 static __isl_give isl_basic_map *add_constraints(
1716 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2,
1717 unsigned i_pos, unsigned o_pos)
1719 int i;
1720 unsigned div_off;
1722 if (!bmap1 || !bmap2)
1723 goto error;
1725 div_off = bmap1->n_div;
1727 for (i = 0; i < bmap2->n_eq; ++i) {
1728 int i1 = isl_basic_map_alloc_equality(bmap1);
1729 if (i1 < 0)
1730 goto error;
1731 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
1732 i_pos, o_pos, div_off);
1735 for (i = 0; i < bmap2->n_ineq; ++i) {
1736 int i1 = isl_basic_map_alloc_inequality(bmap1);
1737 if (i1 < 0)
1738 goto error;
1739 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
1740 i_pos, o_pos, div_off);
1743 for (i = 0; i < bmap2->n_div; ++i) {
1744 int i1 = isl_basic_map_alloc_div(bmap1);
1745 if (i1 < 0)
1746 goto error;
1747 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
1748 i_pos, o_pos, div_off);
1751 isl_basic_map_free(bmap2);
1753 return bmap1;
1755 error:
1756 isl_basic_map_free(bmap1);
1757 isl_basic_map_free(bmap2);
1758 return NULL;
1761 struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
1762 struct isl_basic_set *bset2, unsigned pos)
1764 return bset_from_bmap(add_constraints(bset_to_bmap(bset1),
1765 bset_to_bmap(bset2), 0, pos));
1768 struct isl_basic_map *isl_basic_map_extend_space(struct isl_basic_map *base,
1769 __isl_take isl_space *dim, unsigned extra,
1770 unsigned n_eq, unsigned n_ineq)
1772 struct isl_basic_map *ext;
1773 unsigned flags;
1774 int dims_ok;
1776 if (!dim)
1777 goto error;
1779 if (!base)
1780 goto error;
1782 dims_ok = isl_space_is_equal(base->dim, dim) &&
1783 base->extra >= base->n_div + extra;
1785 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1786 room_for_ineq(base, n_ineq)) {
1787 isl_space_free(dim);
1788 return base;
1791 isl_assert(base->ctx, base->dim->nparam <= dim->nparam, goto error);
1792 isl_assert(base->ctx, base->dim->n_in <= dim->n_in, goto error);
1793 isl_assert(base->ctx, base->dim->n_out <= dim->n_out, goto error);
1794 extra += base->extra;
1795 n_eq += base->n_eq;
1796 n_ineq += base->n_ineq;
1798 ext = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1799 dim = NULL;
1800 if (!ext)
1801 goto error;
1803 if (dims_ok)
1804 ext->sample = isl_vec_copy(base->sample);
1805 flags = base->flags;
1806 ext = add_constraints(ext, base, 0, 0);
1807 if (ext) {
1808 ext->flags = flags;
1809 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
1812 return ext;
1814 error:
1815 isl_space_free(dim);
1816 isl_basic_map_free(base);
1817 return NULL;
1820 struct isl_basic_set *isl_basic_set_extend_space(struct isl_basic_set *base,
1821 __isl_take isl_space *dim, unsigned extra,
1822 unsigned n_eq, unsigned n_ineq)
1824 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base),
1825 dim, extra, n_eq, n_ineq));
1828 struct isl_basic_map *isl_basic_map_extend_constraints(
1829 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
1831 if (!base)
1832 return NULL;
1833 return isl_basic_map_extend_space(base, isl_space_copy(base->dim),
1834 0, n_eq, n_ineq);
1837 struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
1838 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
1839 unsigned n_eq, unsigned n_ineq)
1841 struct isl_basic_map *bmap;
1842 isl_space *dim;
1844 if (!base)
1845 return NULL;
1846 dim = isl_space_alloc(base->ctx, nparam, n_in, n_out);
1847 if (!dim)
1848 goto error;
1850 bmap = isl_basic_map_extend_space(base, dim, extra, n_eq, n_ineq);
1851 return bmap;
1852 error:
1853 isl_basic_map_free(base);
1854 return NULL;
1857 struct isl_basic_set *isl_basic_set_extend(struct isl_basic_set *base,
1858 unsigned nparam, unsigned dim, unsigned extra,
1859 unsigned n_eq, unsigned n_ineq)
1861 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base),
1862 nparam, 0, dim, extra, n_eq, n_ineq));
1865 struct isl_basic_set *isl_basic_set_extend_constraints(
1866 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1868 isl_basic_map *bmap = bset_to_bmap(base);
1869 bmap = isl_basic_map_extend_constraints(bmap, n_eq, n_ineq);
1870 return bset_from_bmap(bmap);
1873 struct isl_basic_set *isl_basic_set_cow(struct isl_basic_set *bset)
1875 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset)));
1878 struct isl_basic_map *isl_basic_map_cow(struct isl_basic_map *bmap)
1880 if (!bmap)
1881 return NULL;
1883 if (bmap->ref > 1) {
1884 bmap->ref--;
1885 bmap = isl_basic_map_dup(bmap);
1887 if (bmap) {
1888 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
1889 ISL_F_CLR(bmap, ISL_BASIC_MAP_REDUCED_COEFFICIENTS);
1891 return bmap;
1894 /* Clear all cached information in "map", either because it is about
1895 * to be modified or because it is being freed.
1896 * Always return the same pointer that is passed in.
1897 * This is needed for the use in isl_map_free.
1899 static __isl_give isl_map *clear_caches(__isl_take isl_map *map)
1901 isl_basic_map_free(map->cached_simple_hull[0]);
1902 isl_basic_map_free(map->cached_simple_hull[1]);
1903 map->cached_simple_hull[0] = NULL;
1904 map->cached_simple_hull[1] = NULL;
1905 return map;
1908 struct isl_set *isl_set_cow(struct isl_set *set)
1910 return isl_map_cow(set);
1913 /* Return an isl_map that is equal to "map" and that has only
1914 * a single reference.
1916 * If the original input already has only one reference, then
1917 * simply return it, but clear all cached information, since
1918 * it may be rendered invalid by the operations that will be
1919 * performed on the result.
1921 * Otherwise, create a duplicate (without any cached information).
1923 struct isl_map *isl_map_cow(struct isl_map *map)
1925 if (!map)
1926 return NULL;
1928 if (map->ref == 1)
1929 return clear_caches(map);
1930 map->ref--;
1931 return isl_map_dup(map);
1934 static void swap_vars(struct isl_blk blk, isl_int *a,
1935 unsigned a_len, unsigned b_len)
1937 isl_seq_cpy(blk.data, a+a_len, b_len);
1938 isl_seq_cpy(blk.data+b_len, a, a_len);
1939 isl_seq_cpy(a, blk.data, b_len+a_len);
1942 static __isl_give isl_basic_map *isl_basic_map_swap_vars(
1943 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
1945 int i;
1946 struct isl_blk blk;
1948 if (!bmap)
1949 goto error;
1951 isl_assert(bmap->ctx,
1952 pos + n1 + n2 <= 1 + isl_basic_map_total_dim(bmap), goto error);
1954 if (n1 == 0 || n2 == 0)
1955 return bmap;
1957 bmap = isl_basic_map_cow(bmap);
1958 if (!bmap)
1959 return NULL;
1961 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
1962 if (isl_blk_is_error(blk))
1963 goto error;
1965 for (i = 0; i < bmap->n_eq; ++i)
1966 swap_vars(blk,
1967 bmap->eq[i] + pos, n1, n2);
1969 for (i = 0; i < bmap->n_ineq; ++i)
1970 swap_vars(blk,
1971 bmap->ineq[i] + pos, n1, n2);
1973 for (i = 0; i < bmap->n_div; ++i)
1974 swap_vars(blk,
1975 bmap->div[i]+1 + pos, n1, n2);
1977 isl_blk_free(bmap->ctx, blk);
1979 ISL_F_CLR(bmap, ISL_BASIC_SET_NORMALIZED);
1980 bmap = isl_basic_map_gauss(bmap, NULL);
1981 return isl_basic_map_finalize(bmap);
1982 error:
1983 isl_basic_map_free(bmap);
1984 return NULL;
1987 struct isl_basic_map *isl_basic_map_set_to_empty(struct isl_basic_map *bmap)
1989 int i = 0;
1990 unsigned total;
1991 if (!bmap)
1992 goto error;
1993 total = isl_basic_map_total_dim(bmap);
1994 if (isl_basic_map_free_div(bmap, bmap->n_div) < 0)
1995 return isl_basic_map_free(bmap);
1996 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
1997 if (bmap->n_eq > 0)
1998 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
1999 else {
2000 i = isl_basic_map_alloc_equality(bmap);
2001 if (i < 0)
2002 goto error;
2004 isl_int_set_si(bmap->eq[i][0], 1);
2005 isl_seq_clr(bmap->eq[i]+1, total);
2006 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
2007 isl_vec_free(bmap->sample);
2008 bmap->sample = NULL;
2009 return isl_basic_map_finalize(bmap);
2010 error:
2011 isl_basic_map_free(bmap);
2012 return NULL;
2015 struct isl_basic_set *isl_basic_set_set_to_empty(struct isl_basic_set *bset)
2017 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset)));
2020 __isl_give isl_basic_map *isl_basic_map_set_rational(
2021 __isl_take isl_basic_map *bmap)
2023 if (!bmap)
2024 return NULL;
2026 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
2027 return bmap;
2029 bmap = isl_basic_map_cow(bmap);
2030 if (!bmap)
2031 return NULL;
2033 ISL_F_SET(bmap, ISL_BASIC_MAP_RATIONAL);
2035 return isl_basic_map_finalize(bmap);
2038 __isl_give isl_basic_set *isl_basic_set_set_rational(
2039 __isl_take isl_basic_set *bset)
2041 return isl_basic_map_set_rational(bset);
2044 __isl_give isl_basic_set *isl_basic_set_set_integral(
2045 __isl_take isl_basic_set *bset)
2047 if (!bset)
2048 return NULL;
2050 if (!ISL_F_ISSET(bset, ISL_BASIC_MAP_RATIONAL))
2051 return bset;
2053 bset = isl_basic_set_cow(bset);
2054 if (!bset)
2055 return NULL;
2057 ISL_F_CLR(bset, ISL_BASIC_MAP_RATIONAL);
2059 return isl_basic_set_finalize(bset);
2062 __isl_give isl_map *isl_map_set_rational(__isl_take isl_map *map)
2064 int i;
2066 map = isl_map_cow(map);
2067 if (!map)
2068 return NULL;
2069 for (i = 0; i < map->n; ++i) {
2070 map->p[i] = isl_basic_map_set_rational(map->p[i]);
2071 if (!map->p[i])
2072 goto error;
2074 return map;
2075 error:
2076 isl_map_free(map);
2077 return NULL;
2080 __isl_give isl_set *isl_set_set_rational(__isl_take isl_set *set)
2082 return isl_map_set_rational(set);
2085 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
2086 * of "bmap").
2088 static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
2090 isl_int *t = bmap->div[a];
2091 bmap->div[a] = bmap->div[b];
2092 bmap->div[b] = t;
2095 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
2096 * div definitions accordingly.
2098 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
2100 int i;
2101 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
2103 swap_div(bmap, a, b);
2105 for (i = 0; i < bmap->n_eq; ++i)
2106 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
2108 for (i = 0; i < bmap->n_ineq; ++i)
2109 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
2111 for (i = 0; i < bmap->n_div; ++i)
2112 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
2113 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2116 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
2117 * div definitions accordingly.
2119 void isl_basic_set_swap_div(__isl_keep isl_basic_set *bset, int a, int b)
2121 isl_basic_map_swap_div(bset, a, b);
2124 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
2126 isl_seq_cpy(c, c + n, rem);
2127 isl_seq_clr(c + rem, n);
2130 /* Drop n dimensions starting at first.
2132 * In principle, this frees up some extra variables as the number
2133 * of columns remains constant, but we would have to extend
2134 * the div array too as the number of rows in this array is assumed
2135 * to be equal to extra.
2137 struct isl_basic_set *isl_basic_set_drop_dims(
2138 struct isl_basic_set *bset, unsigned first, unsigned n)
2140 return isl_basic_map_drop(bset_to_bmap(bset), isl_dim_set, first, n);
2143 /* Move "n" divs starting at "first" to the end of the list of divs.
2145 static struct isl_basic_map *move_divs_last(struct isl_basic_map *bmap,
2146 unsigned first, unsigned n)
2148 isl_int **div;
2149 int i;
2151 if (first + n == bmap->n_div)
2152 return bmap;
2154 div = isl_alloc_array(bmap->ctx, isl_int *, n);
2155 if (!div)
2156 goto error;
2157 for (i = 0; i < n; ++i)
2158 div[i] = bmap->div[first + i];
2159 for (i = 0; i < bmap->n_div - first - n; ++i)
2160 bmap->div[first + i] = bmap->div[first + n + i];
2161 for (i = 0; i < n; ++i)
2162 bmap->div[bmap->n_div - n + i] = div[i];
2163 free(div);
2164 return bmap;
2165 error:
2166 isl_basic_map_free(bmap);
2167 return NULL;
2170 /* Drop "n" dimensions of type "type" starting at "first".
2172 * In principle, this frees up some extra variables as the number
2173 * of columns remains constant, but we would have to extend
2174 * the div array too as the number of rows in this array is assumed
2175 * to be equal to extra.
2177 struct isl_basic_map *isl_basic_map_drop(struct isl_basic_map *bmap,
2178 enum isl_dim_type type, unsigned first, unsigned n)
2180 int i;
2181 unsigned dim;
2182 unsigned offset;
2183 unsigned left;
2185 if (!bmap)
2186 goto error;
2188 dim = isl_basic_map_dim(bmap, type);
2189 isl_assert(bmap->ctx, first + n <= dim, goto error);
2191 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2192 return bmap;
2194 bmap = isl_basic_map_cow(bmap);
2195 if (!bmap)
2196 return NULL;
2198 offset = isl_basic_map_offset(bmap, type) + first;
2199 left = isl_basic_map_total_dim(bmap) - (offset - 1) - n;
2200 for (i = 0; i < bmap->n_eq; ++i)
2201 constraint_drop_vars(bmap->eq[i]+offset, n, left);
2203 for (i = 0; i < bmap->n_ineq; ++i)
2204 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
2206 for (i = 0; i < bmap->n_div; ++i)
2207 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
2209 if (type == isl_dim_div) {
2210 bmap = move_divs_last(bmap, first, n);
2211 if (!bmap)
2212 goto error;
2213 if (isl_basic_map_free_div(bmap, n) < 0)
2214 return isl_basic_map_free(bmap);
2215 } else
2216 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
2217 if (!bmap->dim)
2218 goto error;
2220 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2221 bmap = isl_basic_map_simplify(bmap);
2222 return isl_basic_map_finalize(bmap);
2223 error:
2224 isl_basic_map_free(bmap);
2225 return NULL;
2228 __isl_give isl_basic_set *isl_basic_set_drop(__isl_take isl_basic_set *bset,
2229 enum isl_dim_type type, unsigned first, unsigned n)
2231 return bset_from_bmap(isl_basic_map_drop(bset_to_bmap(bset),
2232 type, first, n));
2235 struct isl_map *isl_map_drop(struct isl_map *map,
2236 enum isl_dim_type type, unsigned first, unsigned n)
2238 int i;
2240 if (!map)
2241 goto error;
2243 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
2245 if (n == 0 && !isl_space_is_named_or_nested(map->dim, type))
2246 return map;
2247 map = isl_map_cow(map);
2248 if (!map)
2249 goto error;
2250 map->dim = isl_space_drop_dims(map->dim, type, first, n);
2251 if (!map->dim)
2252 goto error;
2254 for (i = 0; i < map->n; ++i) {
2255 map->p[i] = isl_basic_map_drop(map->p[i], type, first, n);
2256 if (!map->p[i])
2257 goto error;
2259 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2261 return map;
2262 error:
2263 isl_map_free(map);
2264 return NULL;
2267 struct isl_set *isl_set_drop(struct isl_set *set,
2268 enum isl_dim_type type, unsigned first, unsigned n)
2270 return set_from_map(isl_map_drop(set_to_map(set), type, first, n));
2274 * We don't cow, as the div is assumed to be redundant.
2276 __isl_give isl_basic_map *isl_basic_map_drop_div(
2277 __isl_take isl_basic_map *bmap, unsigned div)
2279 int i;
2280 unsigned pos;
2282 if (!bmap)
2283 goto error;
2285 pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
2287 isl_assert(bmap->ctx, div < bmap->n_div, goto error);
2289 for (i = 0; i < bmap->n_eq; ++i)
2290 constraint_drop_vars(bmap->eq[i]+pos, 1, bmap->extra-div-1);
2292 for (i = 0; i < bmap->n_ineq; ++i) {
2293 if (!isl_int_is_zero(bmap->ineq[i][pos])) {
2294 isl_basic_map_drop_inequality(bmap, i);
2295 --i;
2296 continue;
2298 constraint_drop_vars(bmap->ineq[i]+pos, 1, bmap->extra-div-1);
2301 for (i = 0; i < bmap->n_div; ++i)
2302 constraint_drop_vars(bmap->div[i]+1+pos, 1, bmap->extra-div-1);
2304 if (div != bmap->n_div - 1) {
2305 int j;
2306 isl_int *t = bmap->div[div];
2308 for (j = div; j < bmap->n_div - 1; ++j)
2309 bmap->div[j] = bmap->div[j+1];
2311 bmap->div[bmap->n_div - 1] = t;
2313 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2314 if (isl_basic_map_free_div(bmap, 1) < 0)
2315 return isl_basic_map_free(bmap);
2317 return bmap;
2318 error:
2319 isl_basic_map_free(bmap);
2320 return NULL;
2323 /* Eliminate the specified n dimensions starting at first from the
2324 * constraints, without removing the dimensions from the space.
2325 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2327 __isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
2328 enum isl_dim_type type, unsigned first, unsigned n)
2330 int i;
2332 if (!map)
2333 return NULL;
2334 if (n == 0)
2335 return map;
2337 if (first + n > isl_map_dim(map, type) || first + n < first)
2338 isl_die(map->ctx, isl_error_invalid,
2339 "index out of bounds", goto error);
2341 map = isl_map_cow(map);
2342 if (!map)
2343 return NULL;
2345 for (i = 0; i < map->n; ++i) {
2346 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
2347 if (!map->p[i])
2348 goto error;
2350 return map;
2351 error:
2352 isl_map_free(map);
2353 return NULL;
2356 /* Eliminate the specified n dimensions starting at first from the
2357 * constraints, without removing the dimensions from the space.
2358 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2360 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
2361 enum isl_dim_type type, unsigned first, unsigned n)
2363 return set_from_map(isl_map_eliminate(set_to_map(set), type, first, n));
2366 /* Eliminate the specified n dimensions starting at first from the
2367 * constraints, without removing the dimensions from the space.
2368 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2370 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
2371 unsigned first, unsigned n)
2373 return isl_set_eliminate(set, isl_dim_set, first, n);
2376 __isl_give isl_basic_map *isl_basic_map_remove_divs(
2377 __isl_take isl_basic_map *bmap)
2379 if (!bmap)
2380 return NULL;
2381 bmap = isl_basic_map_eliminate_vars(bmap,
2382 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
2383 if (!bmap)
2384 return NULL;
2385 bmap->n_div = 0;
2386 return isl_basic_map_finalize(bmap);
2389 __isl_give isl_basic_set *isl_basic_set_remove_divs(
2390 __isl_take isl_basic_set *bset)
2392 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset)));
2395 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
2397 int i;
2399 if (!map)
2400 return NULL;
2401 if (map->n == 0)
2402 return map;
2404 map = isl_map_cow(map);
2405 if (!map)
2406 return NULL;
2408 for (i = 0; i < map->n; ++i) {
2409 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
2410 if (!map->p[i])
2411 goto error;
2413 return map;
2414 error:
2415 isl_map_free(map);
2416 return NULL;
2419 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
2421 return isl_map_remove_divs(set);
2424 struct isl_basic_map *isl_basic_map_remove_dims(struct isl_basic_map *bmap,
2425 enum isl_dim_type type, unsigned first, unsigned n)
2427 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2428 return isl_basic_map_free(bmap);
2429 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2430 return bmap;
2431 bmap = isl_basic_map_eliminate_vars(bmap,
2432 isl_basic_map_offset(bmap, type) - 1 + first, n);
2433 if (!bmap)
2434 return bmap;
2435 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
2436 return bmap;
2437 bmap = isl_basic_map_drop(bmap, type, first, n);
2438 return bmap;
2441 /* Return true if the definition of the given div (recursively) involves
2442 * any of the given variables.
2444 static isl_bool div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
2445 unsigned first, unsigned n)
2447 int i;
2448 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2450 if (isl_int_is_zero(bmap->div[div][0]))
2451 return isl_bool_false;
2452 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
2453 return isl_bool_true;
2455 for (i = bmap->n_div - 1; i >= 0; --i) {
2456 isl_bool involves;
2458 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2459 continue;
2460 involves = div_involves_vars(bmap, i, first, n);
2461 if (involves < 0 || involves)
2462 return involves;
2465 return isl_bool_false;
2468 /* Try and add a lower and/or upper bound on "div" to "bmap"
2469 * based on inequality "i".
2470 * "total" is the total number of variables (excluding the divs).
2471 * "v" is a temporary object that can be used during the calculations.
2472 * If "lb" is set, then a lower bound should be constructed.
2473 * If "ub" is set, then an upper bound should be constructed.
2475 * The calling function has already checked that the inequality does not
2476 * reference "div", but we still need to check that the inequality is
2477 * of the right form. We'll consider the case where we want to construct
2478 * a lower bound. The construction of upper bounds is similar.
2480 * Let "div" be of the form
2482 * q = floor((a + f(x))/d)
2484 * We essentially check if constraint "i" is of the form
2486 * b + f(x) >= 0
2488 * so that we can use it to derive a lower bound on "div".
2489 * However, we allow a slightly more general form
2491 * b + g(x) >= 0
2493 * with the condition that the coefficients of g(x) - f(x) are all
2494 * divisible by d.
2495 * Rewriting this constraint as
2497 * 0 >= -b - g(x)
2499 * adding a + f(x) to both sides and dividing by d, we obtain
2501 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2503 * Taking the floor on both sides, we obtain
2505 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2507 * or
2509 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2511 * In the case of an upper bound, we construct the constraint
2513 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2516 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2517 __isl_take isl_basic_map *bmap, int div, int i,
2518 unsigned total, isl_int v, int lb, int ub)
2520 int j;
2522 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2523 if (lb) {
2524 isl_int_sub(v, bmap->ineq[i][1 + j],
2525 bmap->div[div][1 + 1 + j]);
2526 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2528 if (ub) {
2529 isl_int_add(v, bmap->ineq[i][1 + j],
2530 bmap->div[div][1 + 1 + j]);
2531 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2534 if (!lb && !ub)
2535 return bmap;
2537 bmap = isl_basic_map_cow(bmap);
2538 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2539 if (lb) {
2540 int k = isl_basic_map_alloc_inequality(bmap);
2541 if (k < 0)
2542 goto error;
2543 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2544 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2545 bmap->div[div][1 + j]);
2546 isl_int_cdiv_q(bmap->ineq[k][j],
2547 bmap->ineq[k][j], bmap->div[div][0]);
2549 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2551 if (ub) {
2552 int k = isl_basic_map_alloc_inequality(bmap);
2553 if (k < 0)
2554 goto error;
2555 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2556 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2557 bmap->div[div][1 + j]);
2558 isl_int_fdiv_q(bmap->ineq[k][j],
2559 bmap->ineq[k][j], bmap->div[div][0]);
2561 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2564 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2565 return bmap;
2566 error:
2567 isl_basic_map_free(bmap);
2568 return NULL;
2571 /* This function is called right before "div" is eliminated from "bmap"
2572 * using Fourier-Motzkin.
2573 * Look through the constraints of "bmap" for constraints on the argument
2574 * of the integer division and use them to construct constraints on the
2575 * integer division itself. These constraints can then be combined
2576 * during the Fourier-Motzkin elimination.
2577 * Note that it is only useful to introduce lower bounds on "div"
2578 * if "bmap" already contains upper bounds on "div" as the newly
2579 * introduce lower bounds can then be combined with the pre-existing
2580 * upper bounds. Similarly for upper bounds.
2581 * We therefore first check if "bmap" contains any lower and/or upper bounds
2582 * on "div".
2584 * It is interesting to note that the introduction of these constraints
2585 * can indeed lead to more accurate results, even when compared to
2586 * deriving constraints on the argument of "div" from constraints on "div".
2587 * Consider, for example, the set
2589 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2591 * The second constraint can be rewritten as
2593 * 2 * [(-i-2j+3)/4] + k >= 0
2595 * from which we can derive
2597 * -i - 2j + 3 >= -2k
2599 * or
2601 * i + 2j <= 3 + 2k
2603 * Combined with the first constraint, we obtain
2605 * -3 <= 3 + 2k or k >= -3
2607 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2608 * the first constraint, we obtain
2610 * [(i + 2j)/4] >= [-3/4] = -1
2612 * Combining this constraint with the second constraint, we obtain
2614 * k >= -2
2616 static __isl_give isl_basic_map *insert_bounds_on_div(
2617 __isl_take isl_basic_map *bmap, int div)
2619 int i;
2620 int check_lb, check_ub;
2621 isl_int v;
2622 unsigned total;
2624 if (!bmap)
2625 return NULL;
2627 if (isl_int_is_zero(bmap->div[div][0]))
2628 return bmap;
2630 total = isl_space_dim(bmap->dim, isl_dim_all);
2632 check_lb = 0;
2633 check_ub = 0;
2634 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
2635 int s = isl_int_sgn(bmap->ineq[i][1 + total + div]);
2636 if (s > 0)
2637 check_ub = 1;
2638 if (s < 0)
2639 check_lb = 1;
2642 if (!check_lb && !check_ub)
2643 return bmap;
2645 isl_int_init(v);
2647 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
2648 if (!isl_int_is_zero(bmap->ineq[i][1 + total + div]))
2649 continue;
2651 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, total, v,
2652 check_lb, check_ub);
2655 isl_int_clear(v);
2657 return bmap;
2660 /* Remove all divs (recursively) involving any of the given dimensions
2661 * in their definitions.
2663 __isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
2664 __isl_take isl_basic_map *bmap,
2665 enum isl_dim_type type, unsigned first, unsigned n)
2667 int i;
2669 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2670 return isl_basic_map_free(bmap);
2671 first += isl_basic_map_offset(bmap, type);
2673 for (i = bmap->n_div - 1; i >= 0; --i) {
2674 isl_bool involves;
2676 involves = div_involves_vars(bmap, i, first, n);
2677 if (involves < 0)
2678 return isl_basic_map_free(bmap);
2679 if (!involves)
2680 continue;
2681 bmap = insert_bounds_on_div(bmap, i);
2682 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2683 if (!bmap)
2684 return NULL;
2685 i = bmap->n_div;
2688 return bmap;
2691 __isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
2692 __isl_take isl_basic_set *bset,
2693 enum isl_dim_type type, unsigned first, unsigned n)
2695 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
2698 __isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
2699 enum isl_dim_type type, unsigned first, unsigned n)
2701 int i;
2703 if (!map)
2704 return NULL;
2705 if (map->n == 0)
2706 return map;
2708 map = isl_map_cow(map);
2709 if (!map)
2710 return NULL;
2712 for (i = 0; i < map->n; ++i) {
2713 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2714 type, first, n);
2715 if (!map->p[i])
2716 goto error;
2718 return map;
2719 error:
2720 isl_map_free(map);
2721 return NULL;
2724 __isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2725 enum isl_dim_type type, unsigned first, unsigned n)
2727 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set),
2728 type, first, n));
2731 /* Does the description of "bmap" depend on the specified dimensions?
2732 * We also check whether the dimensions appear in any of the div definitions.
2733 * In principle there is no need for this check. If the dimensions appear
2734 * in a div definition, they also appear in the defining constraints of that
2735 * div.
2737 isl_bool isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
2738 enum isl_dim_type type, unsigned first, unsigned n)
2740 int i;
2742 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2743 return isl_bool_error;
2745 first += isl_basic_map_offset(bmap, type);
2746 for (i = 0; i < bmap->n_eq; ++i)
2747 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
2748 return isl_bool_true;
2749 for (i = 0; i < bmap->n_ineq; ++i)
2750 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
2751 return isl_bool_true;
2752 for (i = 0; i < bmap->n_div; ++i) {
2753 if (isl_int_is_zero(bmap->div[i][0]))
2754 continue;
2755 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
2756 return isl_bool_true;
2759 return isl_bool_false;
2762 isl_bool isl_map_involves_dims(__isl_keep isl_map *map,
2763 enum isl_dim_type type, unsigned first, unsigned n)
2765 int i;
2767 if (!map)
2768 return isl_bool_error;
2770 if (first + n > isl_map_dim(map, type))
2771 isl_die(map->ctx, isl_error_invalid,
2772 "index out of bounds", return isl_bool_error);
2774 for (i = 0; i < map->n; ++i) {
2775 isl_bool involves = isl_basic_map_involves_dims(map->p[i],
2776 type, first, n);
2777 if (involves < 0 || involves)
2778 return involves;
2781 return isl_bool_false;
2784 isl_bool isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
2785 enum isl_dim_type type, unsigned first, unsigned n)
2787 return isl_basic_map_involves_dims(bset, type, first, n);
2790 isl_bool isl_set_involves_dims(__isl_keep isl_set *set,
2791 enum isl_dim_type type, unsigned first, unsigned n)
2793 return isl_map_involves_dims(set, type, first, n);
2796 /* Drop all constraints in bmap that involve any of the dimensions
2797 * first to first+n-1.
2799 static __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving(
2800 __isl_take isl_basic_map *bmap, unsigned first, unsigned n)
2802 int i;
2804 if (n == 0)
2805 return bmap;
2807 bmap = isl_basic_map_cow(bmap);
2809 if (!bmap)
2810 return NULL;
2812 for (i = bmap->n_eq - 1; i >= 0; --i) {
2813 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) == -1)
2814 continue;
2815 isl_basic_map_drop_equality(bmap, i);
2818 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2819 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) == -1)
2820 continue;
2821 isl_basic_map_drop_inequality(bmap, i);
2824 bmap = isl_basic_map_add_known_div_constraints(bmap);
2825 return bmap;
2828 /* Drop all constraints in bset that involve any of the dimensions
2829 * first to first+n-1.
2831 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving(
2832 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2834 return isl_basic_map_drop_constraints_involving(bset, first, n);
2837 /* Drop all constraints in bmap that do not involve any of the dimensions
2838 * first to first + n - 1 of the given type.
2840 __isl_give isl_basic_map *isl_basic_map_drop_constraints_not_involving_dims(
2841 __isl_take isl_basic_map *bmap,
2842 enum isl_dim_type type, unsigned first, unsigned n)
2844 int i;
2846 if (n == 0) {
2847 isl_space *space = isl_basic_map_get_space(bmap);
2848 isl_basic_map_free(bmap);
2849 return isl_basic_map_universe(space);
2851 bmap = isl_basic_map_cow(bmap);
2852 if (!bmap)
2853 return NULL;
2855 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2856 return isl_basic_map_free(bmap);
2858 first += isl_basic_map_offset(bmap, type) - 1;
2860 for (i = bmap->n_eq - 1; i >= 0; --i) {
2861 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) != -1)
2862 continue;
2863 isl_basic_map_drop_equality(bmap, i);
2866 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2867 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) != -1)
2868 continue;
2869 isl_basic_map_drop_inequality(bmap, i);
2872 bmap = isl_basic_map_add_known_div_constraints(bmap);
2873 return bmap;
2876 /* Drop all constraints in bset that do not involve any of the dimensions
2877 * first to first + n - 1 of the given type.
2879 __isl_give isl_basic_set *isl_basic_set_drop_constraints_not_involving_dims(
2880 __isl_take isl_basic_set *bset,
2881 enum isl_dim_type type, unsigned first, unsigned n)
2883 return isl_basic_map_drop_constraints_not_involving_dims(bset,
2884 type, first, n);
2887 /* Drop all constraints in bmap that involve any of the dimensions
2888 * first to first + n - 1 of the given type.
2890 __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving_dims(
2891 __isl_take isl_basic_map *bmap,
2892 enum isl_dim_type type, unsigned first, unsigned n)
2894 if (!bmap)
2895 return NULL;
2896 if (n == 0)
2897 return bmap;
2899 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2900 return isl_basic_map_free(bmap);
2902 bmap = isl_basic_map_remove_divs_involving_dims(bmap, type, first, n);
2903 first += isl_basic_map_offset(bmap, type) - 1;
2904 return isl_basic_map_drop_constraints_involving(bmap, first, n);
2907 /* Drop all constraints in bset that involve any of the dimensions
2908 * first to first + n - 1 of the given type.
2910 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving_dims(
2911 __isl_take isl_basic_set *bset,
2912 enum isl_dim_type type, unsigned first, unsigned n)
2914 return isl_basic_map_drop_constraints_involving_dims(bset,
2915 type, first, n);
2918 /* Drop constraints from "map" by applying "drop" to each basic map.
2920 static __isl_give isl_map *drop_constraints(__isl_take isl_map *map,
2921 enum isl_dim_type type, unsigned first, unsigned n,
2922 __isl_give isl_basic_map *(*drop)(__isl_take isl_basic_map *bmap,
2923 enum isl_dim_type type, unsigned first, unsigned n))
2925 int i;
2926 unsigned dim;
2928 if (!map)
2929 return NULL;
2931 dim = isl_map_dim(map, type);
2932 if (first + n > dim || first + n < first)
2933 isl_die(isl_map_get_ctx(map), isl_error_invalid,
2934 "index out of bounds", return isl_map_free(map));
2936 map = isl_map_cow(map);
2937 if (!map)
2938 return NULL;
2940 for (i = 0; i < map->n; ++i) {
2941 map->p[i] = drop(map->p[i], type, first, n);
2942 if (!map->p[i])
2943 return isl_map_free(map);
2946 if (map->n > 1)
2947 ISL_F_CLR(map, ISL_MAP_DISJOINT);
2949 return map;
2952 /* Drop all constraints in map that involve any of the dimensions
2953 * first to first + n - 1 of the given type.
2955 __isl_give isl_map *isl_map_drop_constraints_involving_dims(
2956 __isl_take isl_map *map,
2957 enum isl_dim_type type, unsigned first, unsigned n)
2959 if (n == 0)
2960 return map;
2961 return drop_constraints(map, type, first, n,
2962 &isl_basic_map_drop_constraints_involving_dims);
2965 /* Drop all constraints in "map" that do not involve any of the dimensions
2966 * first to first + n - 1 of the given type.
2968 __isl_give isl_map *isl_map_drop_constraints_not_involving_dims(
2969 __isl_take isl_map *map,
2970 enum isl_dim_type type, unsigned first, unsigned n)
2972 if (n == 0) {
2973 isl_space *space = isl_map_get_space(map);
2974 isl_map_free(map);
2975 return isl_map_universe(space);
2977 return drop_constraints(map, type, first, n,
2978 &isl_basic_map_drop_constraints_not_involving_dims);
2981 /* Drop all constraints in set that involve any of the dimensions
2982 * first to first + n - 1 of the given type.
2984 __isl_give isl_set *isl_set_drop_constraints_involving_dims(
2985 __isl_take isl_set *set,
2986 enum isl_dim_type type, unsigned first, unsigned n)
2988 return isl_map_drop_constraints_involving_dims(set, type, first, n);
2991 /* Drop all constraints in "set" that do not involve any of the dimensions
2992 * first to first + n - 1 of the given type.
2994 __isl_give isl_set *isl_set_drop_constraints_not_involving_dims(
2995 __isl_take isl_set *set,
2996 enum isl_dim_type type, unsigned first, unsigned n)
2998 return isl_map_drop_constraints_not_involving_dims(set, type, first, n);
3001 /* Does local variable "div" of "bmap" have a complete explicit representation?
3002 * Having a complete explicit representation requires not only
3003 * an explicit representation, but also that all local variables
3004 * that appear in this explicit representation in turn have
3005 * a complete explicit representation.
3007 isl_bool isl_basic_map_div_is_known(__isl_keep isl_basic_map *bmap, int div)
3009 int i;
3010 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
3011 isl_bool marked;
3013 marked = isl_basic_map_div_is_marked_unknown(bmap, div);
3014 if (marked < 0 || marked)
3015 return isl_bool_not(marked);
3017 for (i = bmap->n_div - 1; i >= 0; --i) {
3018 isl_bool known;
3020 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
3021 continue;
3022 known = isl_basic_map_div_is_known(bmap, i);
3023 if (known < 0 || !known)
3024 return known;
3027 return isl_bool_true;
3030 /* Remove all divs that are unknown or defined in terms of unknown divs.
3032 __isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
3033 __isl_take isl_basic_map *bmap)
3035 int i;
3037 if (!bmap)
3038 return NULL;
3040 for (i = bmap->n_div - 1; i >= 0; --i) {
3041 if (isl_basic_map_div_is_known(bmap, i))
3042 continue;
3043 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
3044 if (!bmap)
3045 return NULL;
3046 i = bmap->n_div;
3049 return bmap;
3052 /* Remove all divs that are unknown or defined in terms of unknown divs.
3054 __isl_give isl_basic_set *isl_basic_set_remove_unknown_divs(
3055 __isl_take isl_basic_set *bset)
3057 return isl_basic_map_remove_unknown_divs(bset);
3060 __isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
3062 int i;
3064 if (!map)
3065 return NULL;
3066 if (map->n == 0)
3067 return map;
3069 map = isl_map_cow(map);
3070 if (!map)
3071 return NULL;
3073 for (i = 0; i < map->n; ++i) {
3074 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
3075 if (!map->p[i])
3076 goto error;
3078 return map;
3079 error:
3080 isl_map_free(map);
3081 return NULL;
3084 __isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
3086 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set)));
3089 __isl_give isl_basic_set *isl_basic_set_remove_dims(
3090 __isl_take isl_basic_set *bset,
3091 enum isl_dim_type type, unsigned first, unsigned n)
3093 isl_basic_map *bmap = bset_to_bmap(bset);
3094 bmap = isl_basic_map_remove_dims(bmap, type, first, n);
3095 return bset_from_bmap(bmap);
3098 struct isl_map *isl_map_remove_dims(struct isl_map *map,
3099 enum isl_dim_type type, unsigned first, unsigned n)
3101 int i;
3103 if (n == 0)
3104 return map;
3106 map = isl_map_cow(map);
3107 if (!map)
3108 return NULL;
3109 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
3111 for (i = 0; i < map->n; ++i) {
3112 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
3113 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
3114 if (!map->p[i])
3115 goto error;
3117 map = isl_map_drop(map, type, first, n);
3118 return map;
3119 error:
3120 isl_map_free(map);
3121 return NULL;
3124 __isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
3125 enum isl_dim_type type, unsigned first, unsigned n)
3127 return set_from_map(isl_map_remove_dims(set_to_map(bset),
3128 type, first, n));
3131 /* Project out n inputs starting at first using Fourier-Motzkin */
3132 struct isl_map *isl_map_remove_inputs(struct isl_map *map,
3133 unsigned first, unsigned n)
3135 return isl_map_remove_dims(map, isl_dim_in, first, n);
3138 static void dump_term(struct isl_basic_map *bmap,
3139 isl_int c, int pos, FILE *out)
3141 const char *name;
3142 unsigned in = isl_basic_map_dim(bmap, isl_dim_in);
3143 unsigned dim = in + isl_basic_map_dim(bmap, isl_dim_out);
3144 unsigned nparam = isl_basic_map_dim(bmap, isl_dim_param);
3145 if (!pos)
3146 isl_int_print(out, c, 0);
3147 else {
3148 if (!isl_int_is_one(c))
3149 isl_int_print(out, c, 0);
3150 if (pos < 1 + nparam) {
3151 name = isl_space_get_dim_name(bmap->dim,
3152 isl_dim_param, pos - 1);
3153 if (name)
3154 fprintf(out, "%s", name);
3155 else
3156 fprintf(out, "p%d", pos - 1);
3157 } else if (pos < 1 + nparam + in)
3158 fprintf(out, "i%d", pos - 1 - nparam);
3159 else if (pos < 1 + nparam + dim)
3160 fprintf(out, "o%d", pos - 1 - nparam - in);
3161 else
3162 fprintf(out, "e%d", pos - 1 - nparam - dim);
3166 static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
3167 int sign, FILE *out)
3169 int i;
3170 int first;
3171 unsigned len = 1 + isl_basic_map_total_dim(bmap);
3172 isl_int v;
3174 isl_int_init(v);
3175 for (i = 0, first = 1; i < len; ++i) {
3176 if (isl_int_sgn(c[i]) * sign <= 0)
3177 continue;
3178 if (!first)
3179 fprintf(out, " + ");
3180 first = 0;
3181 isl_int_abs(v, c[i]);
3182 dump_term(bmap, v, i, out);
3184 isl_int_clear(v);
3185 if (first)
3186 fprintf(out, "0");
3189 static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
3190 const char *op, FILE *out, int indent)
3192 int i;
3194 fprintf(out, "%*s", indent, "");
3196 dump_constraint_sign(bmap, c, 1, out);
3197 fprintf(out, " %s ", op);
3198 dump_constraint_sign(bmap, c, -1, out);
3200 fprintf(out, "\n");
3202 for (i = bmap->n_div; i < bmap->extra; ++i) {
3203 if (isl_int_is_zero(c[1+isl_space_dim(bmap->dim, isl_dim_all)+i]))
3204 continue;
3205 fprintf(out, "%*s", indent, "");
3206 fprintf(out, "ERROR: unused div coefficient not zero\n");
3207 abort();
3211 static void dump_constraints(struct isl_basic_map *bmap,
3212 isl_int **c, unsigned n,
3213 const char *op, FILE *out, int indent)
3215 int i;
3217 for (i = 0; i < n; ++i)
3218 dump_constraint(bmap, c[i], op, out, indent);
3221 static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
3223 int j;
3224 int first = 1;
3225 unsigned total = isl_basic_map_total_dim(bmap);
3227 for (j = 0; j < 1 + total; ++j) {
3228 if (isl_int_is_zero(exp[j]))
3229 continue;
3230 if (!first && isl_int_is_pos(exp[j]))
3231 fprintf(out, "+");
3232 dump_term(bmap, exp[j], j, out);
3233 first = 0;
3237 static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
3239 int i;
3241 dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
3242 dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
3244 for (i = 0; i < bmap->n_div; ++i) {
3245 fprintf(out, "%*s", indent, "");
3246 fprintf(out, "e%d = [(", i);
3247 dump_affine(bmap, bmap->div[i]+1, out);
3248 fprintf(out, ")/");
3249 isl_int_print(out, bmap->div[i][0], 0);
3250 fprintf(out, "]\n");
3254 void isl_basic_set_print_internal(struct isl_basic_set *bset,
3255 FILE *out, int indent)
3257 if (!bset) {
3258 fprintf(out, "null basic set\n");
3259 return;
3262 fprintf(out, "%*s", indent, "");
3263 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
3264 bset->ref, bset->dim->nparam, bset->dim->n_out,
3265 bset->extra, bset->flags);
3266 dump(bset_to_bmap(bset), out, indent);
3269 void isl_basic_map_print_internal(struct isl_basic_map *bmap,
3270 FILE *out, int indent)
3272 if (!bmap) {
3273 fprintf(out, "null basic map\n");
3274 return;
3277 fprintf(out, "%*s", indent, "");
3278 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
3279 "flags: %x, n_name: %d\n",
3280 bmap->ref,
3281 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
3282 bmap->extra, bmap->flags, bmap->dim->n_id);
3283 dump(bmap, out, indent);
3286 int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
3288 unsigned total;
3289 if (!bmap)
3290 return -1;
3291 total = isl_basic_map_total_dim(bmap);
3292 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
3293 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
3294 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
3295 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
3296 return 0;
3299 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *space, int n,
3300 unsigned flags)
3302 if (!space)
3303 return NULL;
3304 if (isl_space_dim(space, isl_dim_in) != 0)
3305 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3306 "set cannot have input dimensions", goto error);
3307 return isl_map_alloc_space(space, n, flags);
3308 error:
3309 isl_space_free(space);
3310 return NULL;
3313 /* Make sure "map" has room for at least "n" more basic maps.
3315 struct isl_map *isl_map_grow(struct isl_map *map, int n)
3317 int i;
3318 struct isl_map *grown = NULL;
3320 if (!map)
3321 return NULL;
3322 isl_assert(map->ctx, n >= 0, goto error);
3323 if (map->n + n <= map->size)
3324 return map;
3325 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
3326 if (!grown)
3327 goto error;
3328 for (i = 0; i < map->n; ++i) {
3329 grown->p[i] = isl_basic_map_copy(map->p[i]);
3330 if (!grown->p[i])
3331 goto error;
3332 grown->n++;
3334 isl_map_free(map);
3335 return grown;
3336 error:
3337 isl_map_free(grown);
3338 isl_map_free(map);
3339 return NULL;
3342 /* Make sure "set" has room for at least "n" more basic sets.
3344 struct isl_set *isl_set_grow(struct isl_set *set, int n)
3346 return set_from_map(isl_map_grow(set_to_map(set), n));
3349 struct isl_set *isl_set_from_basic_set(struct isl_basic_set *bset)
3351 return isl_map_from_basic_map(bset);
3354 struct isl_map *isl_map_from_basic_map(struct isl_basic_map *bmap)
3356 struct isl_map *map;
3358 if (!bmap)
3359 return NULL;
3361 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
3362 return isl_map_add_basic_map(map, bmap);
3365 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
3366 __isl_take isl_basic_set *bset)
3368 return set_from_map(isl_map_add_basic_map(set_to_map(set),
3369 bset_to_bmap(bset)));
3372 __isl_null isl_set *isl_set_free(__isl_take isl_set *set)
3374 return isl_map_free(set);
3377 void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
3379 int i;
3381 if (!set) {
3382 fprintf(out, "null set\n");
3383 return;
3386 fprintf(out, "%*s", indent, "");
3387 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3388 set->ref, set->n, set->dim->nparam, set->dim->n_out,
3389 set->flags);
3390 for (i = 0; i < set->n; ++i) {
3391 fprintf(out, "%*s", indent, "");
3392 fprintf(out, "basic set %d:\n", i);
3393 isl_basic_set_print_internal(set->p[i], out, indent+4);
3397 void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
3399 int i;
3401 if (!map) {
3402 fprintf(out, "null map\n");
3403 return;
3406 fprintf(out, "%*s", indent, "");
3407 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3408 "flags: %x, n_name: %d\n",
3409 map->ref, map->n, map->dim->nparam, map->dim->n_in,
3410 map->dim->n_out, map->flags, map->dim->n_id);
3411 for (i = 0; i < map->n; ++i) {
3412 fprintf(out, "%*s", indent, "");
3413 fprintf(out, "basic map %d:\n", i);
3414 isl_basic_map_print_internal(map->p[i], out, indent+4);
3418 struct isl_basic_map *isl_basic_map_intersect_domain(
3419 struct isl_basic_map *bmap, struct isl_basic_set *bset)
3421 struct isl_basic_map *bmap_domain;
3423 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3424 goto error;
3426 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
3427 isl_assert(bset->ctx,
3428 isl_basic_map_compatible_domain(bmap, bset), goto error);
3430 bmap = isl_basic_map_cow(bmap);
3431 if (!bmap)
3432 goto error;
3433 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3434 bset->n_div, bset->n_eq, bset->n_ineq);
3435 bmap_domain = isl_basic_map_from_domain(bset);
3436 bmap = add_constraints(bmap, bmap_domain, 0, 0);
3438 bmap = isl_basic_map_simplify(bmap);
3439 return isl_basic_map_finalize(bmap);
3440 error:
3441 isl_basic_map_free(bmap);
3442 isl_basic_set_free(bset);
3443 return NULL;
3446 /* Check that the space of "bset" is the same as that of the range of "bmap".
3448 static isl_stat isl_basic_map_check_compatible_range(
3449 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3451 isl_bool ok;
3453 ok = isl_basic_map_compatible_range(bmap, bset);
3454 if (ok < 0)
3455 return isl_stat_error;
3456 if (!ok)
3457 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3458 "incompatible spaces", return isl_stat_error);
3460 return isl_stat_ok;
3463 struct isl_basic_map *isl_basic_map_intersect_range(
3464 struct isl_basic_map *bmap, struct isl_basic_set *bset)
3466 struct isl_basic_map *bmap_range;
3468 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3469 goto error;
3471 if (isl_space_dim(bset->dim, isl_dim_set) != 0 &&
3472 isl_basic_map_check_compatible_range(bmap, bset) < 0)
3473 goto error;
3475 if (isl_basic_set_plain_is_universe(bset)) {
3476 isl_basic_set_free(bset);
3477 return bmap;
3480 bmap = isl_basic_map_cow(bmap);
3481 if (!bmap)
3482 goto error;
3483 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3484 bset->n_div, bset->n_eq, bset->n_ineq);
3485 bmap_range = bset_to_bmap(bset);
3486 bmap = add_constraints(bmap, bmap_range, 0, 0);
3488 bmap = isl_basic_map_simplify(bmap);
3489 return isl_basic_map_finalize(bmap);
3490 error:
3491 isl_basic_map_free(bmap);
3492 isl_basic_set_free(bset);
3493 return NULL;
3496 isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
3497 __isl_keep isl_vec *vec)
3499 int i;
3500 unsigned total;
3501 isl_int s;
3503 if (!bmap || !vec)
3504 return isl_bool_error;
3506 total = 1 + isl_basic_map_total_dim(bmap);
3507 if (total != vec->size)
3508 return isl_bool_false;
3510 isl_int_init(s);
3512 for (i = 0; i < bmap->n_eq; ++i) {
3513 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
3514 if (!isl_int_is_zero(s)) {
3515 isl_int_clear(s);
3516 return isl_bool_false;
3520 for (i = 0; i < bmap->n_ineq; ++i) {
3521 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
3522 if (isl_int_is_neg(s)) {
3523 isl_int_clear(s);
3524 return isl_bool_false;
3528 isl_int_clear(s);
3530 return isl_bool_true;
3533 isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
3534 __isl_keep isl_vec *vec)
3536 return isl_basic_map_contains(bset_to_bmap(bset), vec);
3539 struct isl_basic_map *isl_basic_map_intersect(
3540 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
3542 struct isl_vec *sample = NULL;
3544 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
3545 goto error;
3546 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
3547 isl_space_dim(bmap1->dim, isl_dim_param) &&
3548 isl_space_dim(bmap2->dim, isl_dim_all) !=
3549 isl_space_dim(bmap2->dim, isl_dim_param))
3550 return isl_basic_map_intersect(bmap2, bmap1);
3552 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
3553 isl_space_dim(bmap2->dim, isl_dim_param))
3554 isl_assert(bmap1->ctx,
3555 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
3557 if (isl_basic_map_plain_is_empty(bmap1)) {
3558 isl_basic_map_free(bmap2);
3559 return bmap1;
3561 if (isl_basic_map_plain_is_empty(bmap2)) {
3562 isl_basic_map_free(bmap1);
3563 return bmap2;
3566 if (bmap1->sample &&
3567 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
3568 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
3569 sample = isl_vec_copy(bmap1->sample);
3570 else if (bmap2->sample &&
3571 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
3572 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
3573 sample = isl_vec_copy(bmap2->sample);
3575 bmap1 = isl_basic_map_cow(bmap1);
3576 if (!bmap1)
3577 goto error;
3578 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
3579 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
3580 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
3582 if (!bmap1)
3583 isl_vec_free(sample);
3584 else if (sample) {
3585 isl_vec_free(bmap1->sample);
3586 bmap1->sample = sample;
3589 bmap1 = isl_basic_map_simplify(bmap1);
3590 return isl_basic_map_finalize(bmap1);
3591 error:
3592 if (sample)
3593 isl_vec_free(sample);
3594 isl_basic_map_free(bmap1);
3595 isl_basic_map_free(bmap2);
3596 return NULL;
3599 struct isl_basic_set *isl_basic_set_intersect(
3600 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
3602 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1),
3603 bset_to_bmap(bset2)));
3606 __isl_give isl_basic_set *isl_basic_set_intersect_params(
3607 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3609 return isl_basic_set_intersect(bset1, bset2);
3612 /* Special case of isl_map_intersect, where both map1 and map2
3613 * are convex, without any divs and such that either map1 or map2
3614 * contains a single constraint. This constraint is then simply
3615 * added to the other map.
3617 static __isl_give isl_map *map_intersect_add_constraint(
3618 __isl_take isl_map *map1, __isl_take isl_map *map2)
3620 isl_assert(map1->ctx, map1->n == 1, goto error);
3621 isl_assert(map2->ctx, map1->n == 1, goto error);
3622 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
3623 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
3625 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
3626 return isl_map_intersect(map2, map1);
3628 map1 = isl_map_cow(map1);
3629 if (!map1)
3630 goto error;
3631 if (isl_map_plain_is_empty(map1)) {
3632 isl_map_free(map2);
3633 return map1;
3635 map1->p[0] = isl_basic_map_cow(map1->p[0]);
3636 if (map2->p[0]->n_eq == 1)
3637 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
3638 else
3639 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
3640 map2->p[0]->ineq[0]);
3642 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
3643 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
3644 if (!map1->p[0])
3645 goto error;
3647 if (isl_basic_map_plain_is_empty(map1->p[0])) {
3648 isl_basic_map_free(map1->p[0]);
3649 map1->n = 0;
3652 isl_map_free(map2);
3654 return map1;
3655 error:
3656 isl_map_free(map1);
3657 isl_map_free(map2);
3658 return NULL;
3661 /* map2 may be either a parameter domain or a map living in the same
3662 * space as map1.
3664 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3665 __isl_take isl_map *map2)
3667 unsigned flags = 0;
3668 isl_map *result;
3669 int i, j;
3671 if (!map1 || !map2)
3672 goto error;
3674 if ((isl_map_plain_is_empty(map1) ||
3675 isl_map_plain_is_universe(map2)) &&
3676 isl_space_is_equal(map1->dim, map2->dim)) {
3677 isl_map_free(map2);
3678 return map1;
3680 if ((isl_map_plain_is_empty(map2) ||
3681 isl_map_plain_is_universe(map1)) &&
3682 isl_space_is_equal(map1->dim, map2->dim)) {
3683 isl_map_free(map1);
3684 return map2;
3687 if (map1->n == 1 && map2->n == 1 &&
3688 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
3689 isl_space_is_equal(map1->dim, map2->dim) &&
3690 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3691 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3692 return map_intersect_add_constraint(map1, map2);
3694 if (isl_space_dim(map2->dim, isl_dim_all) !=
3695 isl_space_dim(map2->dim, isl_dim_param))
3696 isl_assert(map1->ctx,
3697 isl_space_is_equal(map1->dim, map2->dim), goto error);
3699 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3700 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3701 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3703 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3704 map1->n * map2->n, flags);
3705 if (!result)
3706 goto error;
3707 for (i = 0; i < map1->n; ++i)
3708 for (j = 0; j < map2->n; ++j) {
3709 struct isl_basic_map *part;
3710 part = isl_basic_map_intersect(
3711 isl_basic_map_copy(map1->p[i]),
3712 isl_basic_map_copy(map2->p[j]));
3713 if (isl_basic_map_is_empty(part) < 0)
3714 part = isl_basic_map_free(part);
3715 result = isl_map_add_basic_map(result, part);
3716 if (!result)
3717 goto error;
3719 isl_map_free(map1);
3720 isl_map_free(map2);
3721 return result;
3722 error:
3723 isl_map_free(map1);
3724 isl_map_free(map2);
3725 return NULL;
3728 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3729 __isl_take isl_map *map2)
3731 if (!map1 || !map2)
3732 goto error;
3733 if (!isl_space_is_equal(map1->dim, map2->dim))
3734 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
3735 "spaces don't match", goto error);
3736 return map_intersect_internal(map1, map2);
3737 error:
3738 isl_map_free(map1);
3739 isl_map_free(map2);
3740 return NULL;
3743 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3744 __isl_take isl_map *map2)
3746 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
3749 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
3751 return set_from_map(isl_map_intersect(set_to_map(set1),
3752 set_to_map(set2)));
3755 /* map_intersect_internal accepts intersections
3756 * with parameter domains, so we can just call that function.
3758 static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
3759 __isl_take isl_set *params)
3761 return map_intersect_internal(map, params);
3764 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
3765 __isl_take isl_map *map2)
3767 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
3770 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3771 __isl_take isl_set *params)
3773 return isl_map_intersect_params(set, params);
3776 struct isl_basic_map *isl_basic_map_reverse(struct isl_basic_map *bmap)
3778 isl_space *space;
3779 unsigned pos, n1, n2;
3781 if (!bmap)
3782 return NULL;
3783 bmap = isl_basic_map_cow(bmap);
3784 if (!bmap)
3785 return NULL;
3786 space = isl_space_reverse(isl_space_copy(bmap->dim));
3787 pos = isl_basic_map_offset(bmap, isl_dim_in);
3788 n1 = isl_basic_map_dim(bmap, isl_dim_in);
3789 n2 = isl_basic_map_dim(bmap, isl_dim_out);
3790 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
3791 return isl_basic_map_reset_space(bmap, space);
3794 static __isl_give isl_basic_map *basic_map_space_reset(
3795 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
3797 isl_space *space;
3799 if (!bmap)
3800 return NULL;
3801 if (!isl_space_is_named_or_nested(bmap->dim, type))
3802 return bmap;
3804 space = isl_basic_map_get_space(bmap);
3805 space = isl_space_reset(space, type);
3806 bmap = isl_basic_map_reset_space(bmap, space);
3807 return bmap;
3810 __isl_give isl_basic_map *isl_basic_map_insert_dims(
3811 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3812 unsigned pos, unsigned n)
3814 isl_bool rational;
3815 isl_space *res_dim;
3816 struct isl_basic_map *res;
3817 struct isl_dim_map *dim_map;
3818 unsigned total, off;
3819 enum isl_dim_type t;
3821 if (n == 0)
3822 return basic_map_space_reset(bmap, type);
3824 if (!bmap)
3825 return NULL;
3827 res_dim = isl_space_insert_dims(isl_basic_map_get_space(bmap), type, pos, n);
3829 total = isl_basic_map_total_dim(bmap) + n;
3830 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3831 off = 0;
3832 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3833 if (t != type) {
3834 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3835 } else {
3836 unsigned size = isl_basic_map_dim(bmap, t);
3837 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3838 0, pos, off);
3839 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3840 pos, size - pos, off + pos + n);
3842 off += isl_space_dim(res_dim, t);
3844 isl_dim_map_div(dim_map, bmap, off);
3846 res = isl_basic_map_alloc_space(res_dim,
3847 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3848 rational = isl_basic_map_is_rational(bmap);
3849 if (rational < 0)
3850 res = isl_basic_map_free(res);
3851 if (rational)
3852 res = isl_basic_map_set_rational(res);
3853 if (isl_basic_map_plain_is_empty(bmap)) {
3854 isl_basic_map_free(bmap);
3855 free(dim_map);
3856 return isl_basic_map_set_to_empty(res);
3858 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3859 return isl_basic_map_finalize(res);
3862 __isl_give isl_basic_set *isl_basic_set_insert_dims(
3863 __isl_take isl_basic_set *bset,
3864 enum isl_dim_type type, unsigned pos, unsigned n)
3866 return isl_basic_map_insert_dims(bset, type, pos, n);
3869 __isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
3870 enum isl_dim_type type, unsigned n)
3872 if (!bmap)
3873 return NULL;
3874 return isl_basic_map_insert_dims(bmap, type,
3875 isl_basic_map_dim(bmap, type), n);
3878 __isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
3879 enum isl_dim_type type, unsigned n)
3881 if (!bset)
3882 return NULL;
3883 isl_assert(bset->ctx, type != isl_dim_in, goto error);
3884 return isl_basic_map_add_dims(bset, type, n);
3885 error:
3886 isl_basic_set_free(bset);
3887 return NULL;
3890 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
3891 enum isl_dim_type type)
3893 isl_space *space;
3895 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3896 return map;
3898 space = isl_map_get_space(map);
3899 space = isl_space_reset(space, type);
3900 map = isl_map_reset_space(map, space);
3901 return map;
3904 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3905 enum isl_dim_type type, unsigned pos, unsigned n)
3907 int i;
3909 if (n == 0)
3910 return map_space_reset(map, type);
3912 map = isl_map_cow(map);
3913 if (!map)
3914 return NULL;
3916 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3917 if (!map->dim)
3918 goto error;
3920 for (i = 0; i < map->n; ++i) {
3921 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3922 if (!map->p[i])
3923 goto error;
3926 return map;
3927 error:
3928 isl_map_free(map);
3929 return NULL;
3932 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
3933 enum isl_dim_type type, unsigned pos, unsigned n)
3935 return isl_map_insert_dims(set, type, pos, n);
3938 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
3939 enum isl_dim_type type, unsigned n)
3941 if (!map)
3942 return NULL;
3943 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
3946 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
3947 enum isl_dim_type type, unsigned n)
3949 if (!set)
3950 return NULL;
3951 isl_assert(set->ctx, type != isl_dim_in, goto error);
3952 return set_from_map(isl_map_add_dims(set_to_map(set), type, n));
3953 error:
3954 isl_set_free(set);
3955 return NULL;
3958 __isl_give isl_basic_map *isl_basic_map_move_dims(
3959 __isl_take isl_basic_map *bmap,
3960 enum isl_dim_type dst_type, unsigned dst_pos,
3961 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3963 struct isl_dim_map *dim_map;
3964 struct isl_basic_map *res;
3965 enum isl_dim_type t;
3966 unsigned total, off;
3968 if (!bmap)
3969 return NULL;
3970 if (n == 0) {
3971 bmap = isl_basic_map_reset(bmap, src_type);
3972 bmap = isl_basic_map_reset(bmap, dst_type);
3973 return bmap;
3976 if (isl_basic_map_check_range(bmap, src_type, src_pos, n) < 0)
3977 return isl_basic_map_free(bmap);
3979 if (dst_type == src_type && dst_pos == src_pos)
3980 return bmap;
3982 isl_assert(bmap->ctx, dst_type != src_type, goto error);
3984 if (pos(bmap->dim, dst_type) + dst_pos ==
3985 pos(bmap->dim, src_type) + src_pos +
3986 ((src_type < dst_type) ? n : 0)) {
3987 bmap = isl_basic_map_cow(bmap);
3988 if (!bmap)
3989 return NULL;
3991 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
3992 src_type, src_pos, n);
3993 if (!bmap->dim)
3994 goto error;
3996 bmap = isl_basic_map_finalize(bmap);
3998 return bmap;
4001 total = isl_basic_map_total_dim(bmap);
4002 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4004 off = 0;
4005 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4006 unsigned size = isl_space_dim(bmap->dim, t);
4007 if (t == dst_type) {
4008 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4009 0, dst_pos, off);
4010 off += dst_pos;
4011 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
4012 src_pos, n, off);
4013 off += n;
4014 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4015 dst_pos, size - dst_pos, off);
4016 off += size - dst_pos;
4017 } else if (t == src_type) {
4018 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4019 0, src_pos, off);
4020 off += src_pos;
4021 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4022 src_pos + n, size - src_pos - n, off);
4023 off += size - src_pos - n;
4024 } else {
4025 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4026 off += size;
4029 isl_dim_map_div(dim_map, bmap, off);
4031 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4032 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4033 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4034 if (!bmap)
4035 goto error;
4037 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4038 src_type, src_pos, n);
4039 if (!bmap->dim)
4040 goto error;
4042 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
4043 bmap = isl_basic_map_gauss(bmap, NULL);
4044 bmap = isl_basic_map_finalize(bmap);
4046 return bmap;
4047 error:
4048 isl_basic_map_free(bmap);
4049 return NULL;
4052 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
4053 enum isl_dim_type dst_type, unsigned dst_pos,
4054 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4056 isl_basic_map *bmap = bset_to_bmap(bset);
4057 bmap = isl_basic_map_move_dims(bmap, dst_type, dst_pos,
4058 src_type, src_pos, n);
4059 return bset_from_bmap(bmap);
4062 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
4063 enum isl_dim_type dst_type, unsigned dst_pos,
4064 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4066 if (!set)
4067 return NULL;
4068 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
4069 return set_from_map(isl_map_move_dims(set_to_map(set),
4070 dst_type, dst_pos, src_type, src_pos, n));
4071 error:
4072 isl_set_free(set);
4073 return NULL;
4076 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
4077 enum isl_dim_type dst_type, unsigned dst_pos,
4078 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4080 int i;
4082 if (!map)
4083 return NULL;
4084 if (n == 0) {
4085 map = isl_map_reset(map, src_type);
4086 map = isl_map_reset(map, dst_type);
4087 return map;
4090 isl_assert(map->ctx, src_pos + n <= isl_map_dim(map, src_type),
4091 goto error);
4093 if (dst_type == src_type && dst_pos == src_pos)
4094 return map;
4096 isl_assert(map->ctx, dst_type != src_type, goto error);
4098 map = isl_map_cow(map);
4099 if (!map)
4100 return NULL;
4102 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
4103 if (!map->dim)
4104 goto error;
4106 for (i = 0; i < map->n; ++i) {
4107 map->p[i] = isl_basic_map_move_dims(map->p[i],
4108 dst_type, dst_pos,
4109 src_type, src_pos, n);
4110 if (!map->p[i])
4111 goto error;
4114 return map;
4115 error:
4116 isl_map_free(map);
4117 return NULL;
4120 /* Move the specified dimensions to the last columns right before
4121 * the divs. Don't change the dimension specification of bmap.
4122 * That's the responsibility of the caller.
4124 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
4125 enum isl_dim_type type, unsigned first, unsigned n)
4127 struct isl_dim_map *dim_map;
4128 struct isl_basic_map *res;
4129 enum isl_dim_type t;
4130 unsigned total, off;
4132 if (!bmap)
4133 return NULL;
4134 if (pos(bmap->dim, type) + first + n ==
4135 1 + isl_space_dim(bmap->dim, isl_dim_all))
4136 return bmap;
4138 total = isl_basic_map_total_dim(bmap);
4139 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4141 off = 0;
4142 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4143 unsigned size = isl_space_dim(bmap->dim, t);
4144 if (t == type) {
4145 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4146 0, first, off);
4147 off += first;
4148 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4149 first, n, total - bmap->n_div - n);
4150 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4151 first + n, size - (first + n), off);
4152 off += size - (first + n);
4153 } else {
4154 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4155 off += size;
4158 isl_dim_map_div(dim_map, bmap, off + n);
4160 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4161 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4162 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4163 return res;
4166 /* Insert "n" rows in the divs of "bmap".
4168 * The number of columns is not changed, which means that the last
4169 * dimensions of "bmap" are being reintepreted as the new divs.
4170 * The space of "bmap" is not adjusted, however, which means
4171 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
4172 * from the space of "bmap" is the responsibility of the caller.
4174 static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
4175 int n)
4177 int i;
4178 size_t row_size;
4179 isl_int **new_div;
4180 isl_int *old;
4182 bmap = isl_basic_map_cow(bmap);
4183 if (!bmap)
4184 return NULL;
4186 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
4187 old = bmap->block2.data;
4188 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
4189 (bmap->extra + n) * (1 + row_size));
4190 if (!bmap->block2.data)
4191 return isl_basic_map_free(bmap);
4192 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
4193 if (!new_div)
4194 return isl_basic_map_free(bmap);
4195 for (i = 0; i < n; ++i) {
4196 new_div[i] = bmap->block2.data +
4197 (bmap->extra + i) * (1 + row_size);
4198 isl_seq_clr(new_div[i], 1 + row_size);
4200 for (i = 0; i < bmap->extra; ++i)
4201 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
4202 free(bmap->div);
4203 bmap->div = new_div;
4204 bmap->n_div += n;
4205 bmap->extra += n;
4207 return bmap;
4210 /* Drop constraints from "bmap" that only involve the variables
4211 * of "type" in the range [first, first + n] that are not related
4212 * to any of the variables outside that interval.
4213 * These constraints cannot influence the values for the variables
4214 * outside the interval, except in case they cause "bmap" to be empty.
4215 * Only drop the constraints if "bmap" is known to be non-empty.
4217 static __isl_give isl_basic_map *drop_irrelevant_constraints(
4218 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
4219 unsigned first, unsigned n)
4221 int i;
4222 int *groups;
4223 unsigned dim, n_div;
4224 isl_bool non_empty;
4226 non_empty = isl_basic_map_plain_is_non_empty(bmap);
4227 if (non_empty < 0)
4228 return isl_basic_map_free(bmap);
4229 if (!non_empty)
4230 return bmap;
4232 dim = isl_basic_map_dim(bmap, isl_dim_all);
4233 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4234 groups = isl_calloc_array(isl_basic_map_get_ctx(bmap), int, dim);
4235 if (!groups)
4236 return isl_basic_map_free(bmap);
4237 first += isl_basic_map_offset(bmap, type) - 1;
4238 for (i = 0; i < first; ++i)
4239 groups[i] = -1;
4240 for (i = first + n; i < dim - n_div; ++i)
4241 groups[i] = -1;
4243 bmap = isl_basic_map_drop_unrelated_constraints(bmap, groups);
4245 return bmap;
4248 /* Turn the n dimensions of type type, starting at first
4249 * into existentially quantified variables.
4251 * If a subset of the projected out variables are unrelated
4252 * to any of the variables that remain, then the constraints
4253 * involving this subset are simply dropped first.
4255 __isl_give isl_basic_map *isl_basic_map_project_out(
4256 __isl_take isl_basic_map *bmap,
4257 enum isl_dim_type type, unsigned first, unsigned n)
4259 isl_bool empty;
4261 if (n == 0)
4262 return basic_map_space_reset(bmap, type);
4263 if (type == isl_dim_div)
4264 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
4265 "cannot project out existentially quantified variables",
4266 return isl_basic_map_free(bmap));
4268 empty = isl_basic_map_plain_is_empty(bmap);
4269 if (empty < 0)
4270 return isl_basic_map_free(bmap);
4271 if (empty)
4272 bmap = isl_basic_map_set_to_empty(bmap);
4274 bmap = drop_irrelevant_constraints(bmap, type, first, n);
4275 if (!bmap)
4276 return NULL;
4278 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
4279 return isl_basic_map_remove_dims(bmap, type, first, n);
4281 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
4282 return isl_basic_map_free(bmap);
4284 bmap = move_last(bmap, type, first, n);
4285 bmap = isl_basic_map_cow(bmap);
4286 bmap = insert_div_rows(bmap, n);
4287 if (!bmap)
4288 return NULL;
4290 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
4291 if (!bmap->dim)
4292 goto error;
4293 bmap = isl_basic_map_simplify(bmap);
4294 bmap = isl_basic_map_drop_redundant_divs(bmap);
4295 return isl_basic_map_finalize(bmap);
4296 error:
4297 isl_basic_map_free(bmap);
4298 return NULL;
4301 /* Turn the n dimensions of type type, starting at first
4302 * into existentially quantified variables.
4304 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
4305 enum isl_dim_type type, unsigned first, unsigned n)
4307 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset),
4308 type, first, n));
4311 /* Turn the n dimensions of type type, starting at first
4312 * into existentially quantified variables.
4314 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
4315 enum isl_dim_type type, unsigned first, unsigned n)
4317 int i;
4319 if (!map)
4320 return NULL;
4322 if (n == 0)
4323 return map_space_reset(map, type);
4325 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
4327 map = isl_map_cow(map);
4328 if (!map)
4329 return NULL;
4331 map->dim = isl_space_drop_dims(map->dim, type, first, n);
4332 if (!map->dim)
4333 goto error;
4335 for (i = 0; i < map->n; ++i) {
4336 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
4337 if (!map->p[i])
4338 goto error;
4341 return map;
4342 error:
4343 isl_map_free(map);
4344 return NULL;
4347 /* Turn the n dimensions of type type, starting at first
4348 * into existentially quantified variables.
4350 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
4351 enum isl_dim_type type, unsigned first, unsigned n)
4353 return set_from_map(isl_map_project_out(set_to_map(set),
4354 type, first, n));
4357 /* Return a map that projects the elements in "set" onto their
4358 * "n" set dimensions starting at "first".
4359 * "type" should be equal to isl_dim_set.
4361 __isl_give isl_map *isl_set_project_onto_map(__isl_take isl_set *set,
4362 enum isl_dim_type type, unsigned first, unsigned n)
4364 int i;
4365 int dim;
4366 isl_map *map;
4368 if (!set)
4369 return NULL;
4370 if (type != isl_dim_set)
4371 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4372 "only set dimensions can be projected out", goto error);
4373 dim = isl_set_dim(set, isl_dim_set);
4374 if (first + n > dim || first + n < first)
4375 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4376 "index out of bounds", goto error);
4378 map = isl_map_from_domain(set);
4379 map = isl_map_add_dims(map, isl_dim_out, n);
4380 for (i = 0; i < n; ++i)
4381 map = isl_map_equate(map, isl_dim_in, first + i,
4382 isl_dim_out, i);
4383 return map;
4384 error:
4385 isl_set_free(set);
4386 return NULL;
4389 static struct isl_basic_map *add_divs(struct isl_basic_map *bmap, unsigned n)
4391 int i, j;
4393 for (i = 0; i < n; ++i) {
4394 j = isl_basic_map_alloc_div(bmap);
4395 if (j < 0)
4396 goto error;
4397 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
4399 return bmap;
4400 error:
4401 isl_basic_map_free(bmap);
4402 return NULL;
4405 struct isl_basic_map *isl_basic_map_apply_range(
4406 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4408 isl_space *dim_result = NULL;
4409 struct isl_basic_map *bmap;
4410 unsigned n_in, n_out, n, nparam, total, pos;
4411 struct isl_dim_map *dim_map1, *dim_map2;
4413 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4414 goto error;
4415 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_out,
4416 bmap2->dim, isl_dim_in))
4417 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4418 "spaces don't match", goto error);
4420 dim_result = isl_space_join(isl_space_copy(bmap1->dim),
4421 isl_space_copy(bmap2->dim));
4423 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4424 n_out = isl_basic_map_dim(bmap2, isl_dim_out);
4425 n = isl_basic_map_dim(bmap1, isl_dim_out);
4426 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4428 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
4429 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4430 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
4431 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4432 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
4433 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4434 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
4435 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
4436 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4437 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4438 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4440 bmap = isl_basic_map_alloc_space(dim_result,
4441 bmap1->n_div + bmap2->n_div + n,
4442 bmap1->n_eq + bmap2->n_eq,
4443 bmap1->n_ineq + bmap2->n_ineq);
4444 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4445 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4446 bmap = add_divs(bmap, n);
4447 bmap = isl_basic_map_simplify(bmap);
4448 bmap = isl_basic_map_drop_redundant_divs(bmap);
4449 return isl_basic_map_finalize(bmap);
4450 error:
4451 isl_basic_map_free(bmap1);
4452 isl_basic_map_free(bmap2);
4453 return NULL;
4456 struct isl_basic_set *isl_basic_set_apply(
4457 struct isl_basic_set *bset, struct isl_basic_map *bmap)
4459 if (!bset || !bmap)
4460 goto error;
4462 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
4463 goto error);
4465 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset),
4466 bmap));
4467 error:
4468 isl_basic_set_free(bset);
4469 isl_basic_map_free(bmap);
4470 return NULL;
4473 struct isl_basic_map *isl_basic_map_apply_domain(
4474 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4476 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4477 goto error;
4478 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_in,
4479 bmap2->dim, isl_dim_in))
4480 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4481 "spaces don't match", goto error);
4483 bmap1 = isl_basic_map_reverse(bmap1);
4484 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
4485 return isl_basic_map_reverse(bmap1);
4486 error:
4487 isl_basic_map_free(bmap1);
4488 isl_basic_map_free(bmap2);
4489 return NULL;
4492 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4493 * A \cap B -> f(A) + f(B)
4495 struct isl_basic_map *isl_basic_map_sum(
4496 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4498 unsigned n_in, n_out, nparam, total, pos;
4499 struct isl_basic_map *bmap = NULL;
4500 struct isl_dim_map *dim_map1, *dim_map2;
4501 int i;
4503 if (!bmap1 || !bmap2)
4504 goto error;
4506 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
4507 goto error);
4509 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4510 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4511 n_out = isl_basic_map_dim(bmap1, isl_dim_out);
4513 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
4514 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4515 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
4516 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4517 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
4518 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4519 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4520 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
4521 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4522 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4523 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
4525 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
4526 bmap1->n_div + bmap2->n_div + 2 * n_out,
4527 bmap1->n_eq + bmap2->n_eq + n_out,
4528 bmap1->n_ineq + bmap2->n_ineq);
4529 for (i = 0; i < n_out; ++i) {
4530 int j = isl_basic_map_alloc_equality(bmap);
4531 if (j < 0)
4532 goto error;
4533 isl_seq_clr(bmap->eq[j], 1+total);
4534 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
4535 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
4536 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
4538 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4539 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4540 bmap = add_divs(bmap, 2 * n_out);
4542 bmap = isl_basic_map_simplify(bmap);
4543 return isl_basic_map_finalize(bmap);
4544 error:
4545 isl_basic_map_free(bmap);
4546 isl_basic_map_free(bmap1);
4547 isl_basic_map_free(bmap2);
4548 return NULL;
4551 /* Given two maps A -> f(A) and B -> g(B), construct a map
4552 * A \cap B -> f(A) + f(B)
4554 struct isl_map *isl_map_sum(struct isl_map *map1, struct isl_map *map2)
4556 struct isl_map *result;
4557 int i, j;
4559 if (!map1 || !map2)
4560 goto error;
4562 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
4564 result = isl_map_alloc_space(isl_space_copy(map1->dim),
4565 map1->n * map2->n, 0);
4566 if (!result)
4567 goto error;
4568 for (i = 0; i < map1->n; ++i)
4569 for (j = 0; j < map2->n; ++j) {
4570 struct isl_basic_map *part;
4571 part = isl_basic_map_sum(
4572 isl_basic_map_copy(map1->p[i]),
4573 isl_basic_map_copy(map2->p[j]));
4574 if (isl_basic_map_is_empty(part))
4575 isl_basic_map_free(part);
4576 else
4577 result = isl_map_add_basic_map(result, part);
4578 if (!result)
4579 goto error;
4581 isl_map_free(map1);
4582 isl_map_free(map2);
4583 return result;
4584 error:
4585 isl_map_free(map1);
4586 isl_map_free(map2);
4587 return NULL;
4590 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
4591 __isl_take isl_set *set2)
4593 return set_from_map(isl_map_sum(set_to_map(set1), set_to_map(set2)));
4596 /* Given a basic map A -> f(A), construct A -> -f(A).
4598 struct isl_basic_map *isl_basic_map_neg(struct isl_basic_map *bmap)
4600 int i, j;
4601 unsigned off, n;
4603 bmap = isl_basic_map_cow(bmap);
4604 if (!bmap)
4605 return NULL;
4607 n = isl_basic_map_dim(bmap, isl_dim_out);
4608 off = isl_basic_map_offset(bmap, isl_dim_out);
4609 for (i = 0; i < bmap->n_eq; ++i)
4610 for (j = 0; j < n; ++j)
4611 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
4612 for (i = 0; i < bmap->n_ineq; ++i)
4613 for (j = 0; j < n; ++j)
4614 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
4615 for (i = 0; i < bmap->n_div; ++i)
4616 for (j = 0; j < n; ++j)
4617 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
4618 bmap = isl_basic_map_gauss(bmap, NULL);
4619 return isl_basic_map_finalize(bmap);
4622 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
4624 return isl_basic_map_neg(bset);
4627 /* Given a map A -> f(A), construct A -> -f(A).
4629 struct isl_map *isl_map_neg(struct isl_map *map)
4631 int i;
4633 map = isl_map_cow(map);
4634 if (!map)
4635 return NULL;
4637 for (i = 0; i < map->n; ++i) {
4638 map->p[i] = isl_basic_map_neg(map->p[i]);
4639 if (!map->p[i])
4640 goto error;
4643 return map;
4644 error:
4645 isl_map_free(map);
4646 return NULL;
4649 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
4651 return set_from_map(isl_map_neg(set_to_map(set)));
4654 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4655 * A -> floor(f(A)/d).
4657 struct isl_basic_map *isl_basic_map_floordiv(struct isl_basic_map *bmap,
4658 isl_int d)
4660 unsigned n_in, n_out, nparam, total, pos;
4661 struct isl_basic_map *result = NULL;
4662 struct isl_dim_map *dim_map;
4663 int i;
4665 if (!bmap)
4666 return NULL;
4668 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4669 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4670 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4672 total = nparam + n_in + n_out + bmap->n_div + n_out;
4673 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4674 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
4675 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
4676 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
4677 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
4679 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
4680 bmap->n_div + n_out,
4681 bmap->n_eq, bmap->n_ineq + 2 * n_out);
4682 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
4683 result = add_divs(result, n_out);
4684 for (i = 0; i < n_out; ++i) {
4685 int j;
4686 j = isl_basic_map_alloc_inequality(result);
4687 if (j < 0)
4688 goto error;
4689 isl_seq_clr(result->ineq[j], 1+total);
4690 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
4691 isl_int_set_si(result->ineq[j][1+pos+i], 1);
4692 j = isl_basic_map_alloc_inequality(result);
4693 if (j < 0)
4694 goto error;
4695 isl_seq_clr(result->ineq[j], 1+total);
4696 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
4697 isl_int_set_si(result->ineq[j][1+pos+i], -1);
4698 isl_int_sub_ui(result->ineq[j][0], d, 1);
4701 result = isl_basic_map_simplify(result);
4702 return isl_basic_map_finalize(result);
4703 error:
4704 isl_basic_map_free(result);
4705 return NULL;
4708 /* Given a map A -> f(A) and an integer d, construct a map
4709 * A -> floor(f(A)/d).
4711 struct isl_map *isl_map_floordiv(struct isl_map *map, isl_int d)
4713 int i;
4715 map = isl_map_cow(map);
4716 if (!map)
4717 return NULL;
4719 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4720 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
4721 for (i = 0; i < map->n; ++i) {
4722 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
4723 if (!map->p[i])
4724 goto error;
4727 return map;
4728 error:
4729 isl_map_free(map);
4730 return NULL;
4733 /* Given a map A -> f(A) and an integer d, construct a map
4734 * A -> floor(f(A)/d).
4736 __isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
4737 __isl_take isl_val *d)
4739 if (!map || !d)
4740 goto error;
4741 if (!isl_val_is_int(d))
4742 isl_die(isl_val_get_ctx(d), isl_error_invalid,
4743 "expecting integer denominator", goto error);
4744 map = isl_map_floordiv(map, d->n);
4745 isl_val_free(d);
4746 return map;
4747 error:
4748 isl_map_free(map);
4749 isl_val_free(d);
4750 return NULL;
4753 static __isl_give isl_basic_map *var_equal(__isl_take isl_basic_map *bmap,
4754 unsigned pos)
4756 int i;
4757 unsigned nparam;
4758 unsigned n_in;
4760 i = isl_basic_map_alloc_equality(bmap);
4761 if (i < 0)
4762 goto error;
4763 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4764 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4765 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
4766 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
4767 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
4768 return isl_basic_map_finalize(bmap);
4769 error:
4770 isl_basic_map_free(bmap);
4771 return NULL;
4774 /* Add a constraint to "bmap" expressing i_pos < o_pos
4776 static __isl_give isl_basic_map *var_less(__isl_take isl_basic_map *bmap,
4777 unsigned pos)
4779 int i;
4780 unsigned nparam;
4781 unsigned n_in;
4783 i = isl_basic_map_alloc_inequality(bmap);
4784 if (i < 0)
4785 goto error;
4786 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4787 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4788 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4789 isl_int_set_si(bmap->ineq[i][0], -1);
4790 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4791 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4792 return isl_basic_map_finalize(bmap);
4793 error:
4794 isl_basic_map_free(bmap);
4795 return NULL;
4798 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4800 static __isl_give isl_basic_map *var_less_or_equal(
4801 __isl_take isl_basic_map *bmap, unsigned pos)
4803 int i;
4804 unsigned nparam;
4805 unsigned n_in;
4807 i = isl_basic_map_alloc_inequality(bmap);
4808 if (i < 0)
4809 goto error;
4810 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4811 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4812 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4813 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4814 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4815 return isl_basic_map_finalize(bmap);
4816 error:
4817 isl_basic_map_free(bmap);
4818 return NULL;
4821 /* Add a constraint to "bmap" expressing i_pos > o_pos
4823 static __isl_give isl_basic_map *var_more(__isl_take isl_basic_map *bmap,
4824 unsigned pos)
4826 int i;
4827 unsigned nparam;
4828 unsigned n_in;
4830 i = isl_basic_map_alloc_inequality(bmap);
4831 if (i < 0)
4832 goto error;
4833 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4834 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4835 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4836 isl_int_set_si(bmap->ineq[i][0], -1);
4837 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4838 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4839 return isl_basic_map_finalize(bmap);
4840 error:
4841 isl_basic_map_free(bmap);
4842 return NULL;
4845 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4847 static __isl_give isl_basic_map *var_more_or_equal(
4848 __isl_take isl_basic_map *bmap, unsigned pos)
4850 int i;
4851 unsigned nparam;
4852 unsigned n_in;
4854 i = isl_basic_map_alloc_inequality(bmap);
4855 if (i < 0)
4856 goto error;
4857 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4858 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4859 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4860 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4861 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4862 return isl_basic_map_finalize(bmap);
4863 error:
4864 isl_basic_map_free(bmap);
4865 return NULL;
4868 __isl_give isl_basic_map *isl_basic_map_equal(
4869 __isl_take isl_space *dim, unsigned n_equal)
4871 int i;
4872 struct isl_basic_map *bmap;
4873 bmap = isl_basic_map_alloc_space(dim, 0, n_equal, 0);
4874 if (!bmap)
4875 return NULL;
4876 for (i = 0; i < n_equal && bmap; ++i)
4877 bmap = var_equal(bmap, i);
4878 return isl_basic_map_finalize(bmap);
4881 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4883 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *dim,
4884 unsigned pos)
4886 int i;
4887 struct isl_basic_map *bmap;
4888 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4889 if (!bmap)
4890 return NULL;
4891 for (i = 0; i < pos && bmap; ++i)
4892 bmap = var_equal(bmap, i);
4893 if (bmap)
4894 bmap = var_less(bmap, pos);
4895 return isl_basic_map_finalize(bmap);
4898 /* Return a relation on "dim" expressing i_[0..pos] <<= o_[0..pos]
4900 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
4901 __isl_take isl_space *dim, unsigned pos)
4903 int i;
4904 isl_basic_map *bmap;
4906 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4907 for (i = 0; i < pos; ++i)
4908 bmap = var_equal(bmap, i);
4909 bmap = var_less_or_equal(bmap, pos);
4910 return isl_basic_map_finalize(bmap);
4913 /* Return a relation on "dim" expressing i_pos > o_pos
4915 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *dim,
4916 unsigned pos)
4918 int i;
4919 struct isl_basic_map *bmap;
4920 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4921 if (!bmap)
4922 return NULL;
4923 for (i = 0; i < pos && bmap; ++i)
4924 bmap = var_equal(bmap, i);
4925 if (bmap)
4926 bmap = var_more(bmap, pos);
4927 return isl_basic_map_finalize(bmap);
4930 /* Return a relation on "dim" expressing i_[0..pos] >>= o_[0..pos]
4932 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
4933 __isl_take isl_space *dim, unsigned pos)
4935 int i;
4936 isl_basic_map *bmap;
4938 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4939 for (i = 0; i < pos; ++i)
4940 bmap = var_equal(bmap, i);
4941 bmap = var_more_or_equal(bmap, pos);
4942 return isl_basic_map_finalize(bmap);
4945 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *dims,
4946 unsigned n, int equal)
4948 struct isl_map *map;
4949 int i;
4951 if (n == 0 && equal)
4952 return isl_map_universe(dims);
4954 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
4956 for (i = 0; i + 1 < n; ++i)
4957 map = isl_map_add_basic_map(map,
4958 isl_basic_map_less_at(isl_space_copy(dims), i));
4959 if (n > 0) {
4960 if (equal)
4961 map = isl_map_add_basic_map(map,
4962 isl_basic_map_less_or_equal_at(dims, n - 1));
4963 else
4964 map = isl_map_add_basic_map(map,
4965 isl_basic_map_less_at(dims, n - 1));
4966 } else
4967 isl_space_free(dims);
4969 return map;
4972 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *dims, int equal)
4974 if (!dims)
4975 return NULL;
4976 return map_lex_lte_first(dims, dims->n_out, equal);
4979 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
4981 return map_lex_lte_first(dim, n, 0);
4984 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
4986 return map_lex_lte_first(dim, n, 1);
4989 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
4991 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
4994 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
4996 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
4999 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *dims,
5000 unsigned n, int equal)
5002 struct isl_map *map;
5003 int i;
5005 if (n == 0 && equal)
5006 return isl_map_universe(dims);
5008 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
5010 for (i = 0; i + 1 < n; ++i)
5011 map = isl_map_add_basic_map(map,
5012 isl_basic_map_more_at(isl_space_copy(dims), i));
5013 if (n > 0) {
5014 if (equal)
5015 map = isl_map_add_basic_map(map,
5016 isl_basic_map_more_or_equal_at(dims, n - 1));
5017 else
5018 map = isl_map_add_basic_map(map,
5019 isl_basic_map_more_at(dims, n - 1));
5020 } else
5021 isl_space_free(dims);
5023 return map;
5026 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *dims, int equal)
5028 if (!dims)
5029 return NULL;
5030 return map_lex_gte_first(dims, dims->n_out, equal);
5033 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
5035 return map_lex_gte_first(dim, n, 0);
5038 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
5040 return map_lex_gte_first(dim, n, 1);
5043 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
5045 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
5048 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
5050 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
5053 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
5054 __isl_take isl_set *set2)
5056 isl_map *map;
5057 map = isl_map_lex_le(isl_set_get_space(set1));
5058 map = isl_map_intersect_domain(map, set1);
5059 map = isl_map_intersect_range(map, set2);
5060 return map;
5063 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
5064 __isl_take isl_set *set2)
5066 isl_map *map;
5067 map = isl_map_lex_lt(isl_set_get_space(set1));
5068 map = isl_map_intersect_domain(map, set1);
5069 map = isl_map_intersect_range(map, set2);
5070 return map;
5073 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
5074 __isl_take isl_set *set2)
5076 isl_map *map;
5077 map = isl_map_lex_ge(isl_set_get_space(set1));
5078 map = isl_map_intersect_domain(map, set1);
5079 map = isl_map_intersect_range(map, set2);
5080 return map;
5083 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
5084 __isl_take isl_set *set2)
5086 isl_map *map;
5087 map = isl_map_lex_gt(isl_set_get_space(set1));
5088 map = isl_map_intersect_domain(map, set1);
5089 map = isl_map_intersect_range(map, set2);
5090 return map;
5093 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
5094 __isl_take isl_map *map2)
5096 isl_map *map;
5097 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
5098 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5099 map = isl_map_apply_range(map, isl_map_reverse(map2));
5100 return map;
5103 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
5104 __isl_take isl_map *map2)
5106 isl_map *map;
5107 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
5108 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5109 map = isl_map_apply_range(map, isl_map_reverse(map2));
5110 return map;
5113 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
5114 __isl_take isl_map *map2)
5116 isl_map *map;
5117 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
5118 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5119 map = isl_map_apply_range(map, isl_map_reverse(map2));
5120 return map;
5123 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
5124 __isl_take isl_map *map2)
5126 isl_map *map;
5127 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
5128 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5129 map = isl_map_apply_range(map, isl_map_reverse(map2));
5130 return map;
5133 /* For a div d = floor(f/m), add the constraint
5135 * f - m d >= 0
5137 static isl_stat add_upper_div_constraint(__isl_keep isl_basic_map *bmap,
5138 unsigned pos, isl_int *div)
5140 int i;
5141 unsigned total = isl_basic_map_total_dim(bmap);
5143 i = isl_basic_map_alloc_inequality(bmap);
5144 if (i < 0)
5145 return isl_stat_error;
5146 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
5147 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
5149 return isl_stat_ok;
5152 /* For a div d = floor(f/m), add the constraint
5154 * -(f-(m-1)) + m d >= 0
5156 static isl_stat add_lower_div_constraint(__isl_keep isl_basic_map *bmap,
5157 unsigned pos, isl_int *div)
5159 int i;
5160 unsigned total = isl_basic_map_total_dim(bmap);
5162 i = isl_basic_map_alloc_inequality(bmap);
5163 if (i < 0)
5164 return isl_stat_error;
5165 isl_seq_neg(bmap->ineq[i], div + 1, 1 + total);
5166 isl_int_set(bmap->ineq[i][1 + pos], div[0]);
5167 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
5168 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
5170 return isl_stat_ok;
5173 /* For a div d = floor(f/m), add the constraints
5175 * f - m d >= 0
5176 * -(f-(m-1)) + m d >= 0
5178 * Note that the second constraint is the negation of
5180 * f - m d >= m
5182 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
5183 unsigned pos, isl_int *div)
5185 if (add_upper_div_constraint(bmap, pos, div) < 0)
5186 return -1;
5187 if (add_lower_div_constraint(bmap, pos, div) < 0)
5188 return -1;
5189 return 0;
5192 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
5193 unsigned pos, isl_int *div)
5195 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset),
5196 pos, div);
5199 int isl_basic_map_add_div_constraints(struct isl_basic_map *bmap, unsigned div)
5201 unsigned total = isl_basic_map_total_dim(bmap);
5202 unsigned div_pos = total - bmap->n_div + div;
5204 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
5205 bmap->div[div]);
5208 /* For each known div d = floor(f/m), add the constraints
5210 * f - m d >= 0
5211 * -(f-(m-1)) + m d >= 0
5213 * Remove duplicate constraints in case of some these div constraints
5214 * already appear in "bmap".
5216 __isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
5217 __isl_take isl_basic_map *bmap)
5219 unsigned n_div;
5221 if (!bmap)
5222 return NULL;
5223 n_div = isl_basic_map_dim(bmap, isl_dim_div);
5224 if (n_div == 0)
5225 return bmap;
5227 bmap = add_known_div_constraints(bmap);
5228 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
5229 bmap = isl_basic_map_finalize(bmap);
5230 return bmap;
5233 /* Add the div constraint of sign "sign" for div "div" of "bmap".
5235 * In particular, if this div is of the form d = floor(f/m),
5236 * then add the constraint
5238 * f - m d >= 0
5240 * if sign < 0 or the constraint
5242 * -(f-(m-1)) + m d >= 0
5244 * if sign > 0.
5246 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map *bmap,
5247 unsigned div, int sign)
5249 unsigned total;
5250 unsigned div_pos;
5252 if (!bmap)
5253 return -1;
5255 total = isl_basic_map_total_dim(bmap);
5256 div_pos = total - bmap->n_div + div;
5258 if (sign < 0)
5259 return add_upper_div_constraint(bmap, div_pos, bmap->div[div]);
5260 else
5261 return add_lower_div_constraint(bmap, div_pos, bmap->div[div]);
5264 struct isl_basic_set *isl_basic_map_underlying_set(
5265 struct isl_basic_map *bmap)
5267 if (!bmap)
5268 goto error;
5269 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
5270 bmap->n_div == 0 &&
5271 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
5272 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
5273 return bset_from_bmap(bmap);
5274 bmap = isl_basic_map_cow(bmap);
5275 if (!bmap)
5276 goto error;
5277 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
5278 if (!bmap->dim)
5279 goto error;
5280 bmap->extra -= bmap->n_div;
5281 bmap->n_div = 0;
5282 bmap = isl_basic_map_finalize(bmap);
5283 return bset_from_bmap(bmap);
5284 error:
5285 isl_basic_map_free(bmap);
5286 return NULL;
5289 __isl_give isl_basic_set *isl_basic_set_underlying_set(
5290 __isl_take isl_basic_set *bset)
5292 return isl_basic_map_underlying_set(bset_to_bmap(bset));
5295 /* Replace each element in "list" by the result of applying
5296 * isl_basic_map_underlying_set to the element.
5298 __isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
5299 __isl_take isl_basic_map_list *list)
5301 int i, n;
5303 if (!list)
5304 return NULL;
5306 n = isl_basic_map_list_n_basic_map(list);
5307 for (i = 0; i < n; ++i) {
5308 isl_basic_map *bmap;
5309 isl_basic_set *bset;
5311 bmap = isl_basic_map_list_get_basic_map(list, i);
5312 bset = isl_basic_set_underlying_set(bmap);
5313 list = isl_basic_set_list_set_basic_set(list, i, bset);
5316 return list;
5319 struct isl_basic_map *isl_basic_map_overlying_set(
5320 struct isl_basic_set *bset, struct isl_basic_map *like)
5322 struct isl_basic_map *bmap;
5323 struct isl_ctx *ctx;
5324 unsigned total;
5325 int i;
5327 if (!bset || !like)
5328 goto error;
5329 ctx = bset->ctx;
5330 isl_assert(ctx, bset->n_div == 0, goto error);
5331 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
5332 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
5333 goto error);
5334 if (like->n_div == 0) {
5335 isl_space *space = isl_basic_map_get_space(like);
5336 isl_basic_map_free(like);
5337 return isl_basic_map_reset_space(bset, space);
5339 bset = isl_basic_set_cow(bset);
5340 if (!bset)
5341 goto error;
5342 total = bset->dim->n_out + bset->extra;
5343 bmap = bset_to_bmap(bset);
5344 isl_space_free(bmap->dim);
5345 bmap->dim = isl_space_copy(like->dim);
5346 if (!bmap->dim)
5347 goto error;
5348 bmap->n_div = like->n_div;
5349 bmap->extra += like->n_div;
5350 if (bmap->extra) {
5351 unsigned ltotal;
5352 isl_int **div;
5353 ltotal = total - bmap->extra + like->extra;
5354 if (ltotal > total)
5355 ltotal = total;
5356 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
5357 bmap->extra * (1 + 1 + total));
5358 if (isl_blk_is_error(bmap->block2))
5359 goto error;
5360 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
5361 if (!div)
5362 goto error;
5363 bmap->div = div;
5364 for (i = 0; i < bmap->extra; ++i)
5365 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
5366 for (i = 0; i < like->n_div; ++i) {
5367 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
5368 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
5370 bmap = isl_basic_map_add_known_div_constraints(bmap);
5372 isl_basic_map_free(like);
5373 bmap = isl_basic_map_simplify(bmap);
5374 bmap = isl_basic_map_finalize(bmap);
5375 return bmap;
5376 error:
5377 isl_basic_map_free(like);
5378 isl_basic_set_free(bset);
5379 return NULL;
5382 struct isl_basic_set *isl_basic_set_from_underlying_set(
5383 struct isl_basic_set *bset, struct isl_basic_set *like)
5385 return bset_from_bmap(isl_basic_map_overlying_set(bset,
5386 bset_to_bmap(like)));
5389 struct isl_set *isl_map_underlying_set(struct isl_map *map)
5391 int i;
5393 map = isl_map_cow(map);
5394 if (!map)
5395 return NULL;
5396 map->dim = isl_space_cow(map->dim);
5397 if (!map->dim)
5398 goto error;
5400 for (i = 1; i < map->n; ++i)
5401 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
5402 goto error);
5403 for (i = 0; i < map->n; ++i) {
5404 map->p[i] = bset_to_bmap(
5405 isl_basic_map_underlying_set(map->p[i]));
5406 if (!map->p[i])
5407 goto error;
5409 if (map->n == 0)
5410 map->dim = isl_space_underlying(map->dim, 0);
5411 else {
5412 isl_space_free(map->dim);
5413 map->dim = isl_space_copy(map->p[0]->dim);
5415 if (!map->dim)
5416 goto error;
5417 return set_from_map(map);
5418 error:
5419 isl_map_free(map);
5420 return NULL;
5423 /* Replace the space of "bmap" by "space".
5425 * If the space of "bmap" is identical to "space" (including the identifiers
5426 * of the input and output dimensions), then simply return the original input.
5428 __isl_give isl_basic_map *isl_basic_map_reset_space(
5429 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
5431 isl_bool equal;
5432 isl_space *bmap_space;
5434 bmap_space = isl_basic_map_peek_space(bmap);
5435 equal = isl_space_is_equal(bmap_space, space);
5436 if (equal >= 0 && equal)
5437 equal = isl_space_has_equal_ids(bmap_space, space);
5438 if (equal < 0)
5439 goto error;
5440 if (equal) {
5441 isl_space_free(space);
5442 return bmap;
5444 bmap = isl_basic_map_cow(bmap);
5445 if (!bmap || !space)
5446 goto error;
5448 isl_space_free(bmap->dim);
5449 bmap->dim = space;
5451 bmap = isl_basic_map_finalize(bmap);
5453 return bmap;
5454 error:
5455 isl_basic_map_free(bmap);
5456 isl_space_free(space);
5457 return NULL;
5460 __isl_give isl_basic_set *isl_basic_set_reset_space(
5461 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
5463 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset),
5464 dim));
5467 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
5468 __isl_take isl_space *dim)
5470 int i;
5472 map = isl_map_cow(map);
5473 if (!map || !dim)
5474 goto error;
5476 for (i = 0; i < map->n; ++i) {
5477 map->p[i] = isl_basic_map_reset_space(map->p[i],
5478 isl_space_copy(dim));
5479 if (!map->p[i])
5480 goto error;
5482 isl_space_free(map->dim);
5483 map->dim = dim;
5485 return map;
5486 error:
5487 isl_map_free(map);
5488 isl_space_free(dim);
5489 return NULL;
5492 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
5493 __isl_take isl_space *dim)
5495 return set_from_map(isl_map_reset_space(set_to_map(set), dim));
5498 /* Compute the parameter domain of the given basic set.
5500 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
5502 isl_bool is_params;
5503 isl_space *space;
5504 unsigned n;
5506 is_params = isl_basic_set_is_params(bset);
5507 if (is_params < 0)
5508 return isl_basic_set_free(bset);
5509 if (is_params)
5510 return bset;
5512 n = isl_basic_set_dim(bset, isl_dim_set);
5513 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
5514 space = isl_basic_set_get_space(bset);
5515 space = isl_space_params(space);
5516 bset = isl_basic_set_reset_space(bset, space);
5517 return bset;
5520 /* Construct a zero-dimensional basic set with the given parameter domain.
5522 __isl_give isl_basic_set *isl_basic_set_from_params(
5523 __isl_take isl_basic_set *bset)
5525 isl_space *space;
5526 space = isl_basic_set_get_space(bset);
5527 space = isl_space_set_from_params(space);
5528 bset = isl_basic_set_reset_space(bset, space);
5529 return bset;
5532 /* Compute the parameter domain of the given set.
5534 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
5536 isl_space *space;
5537 unsigned n;
5539 if (isl_set_is_params(set))
5540 return set;
5542 n = isl_set_dim(set, isl_dim_set);
5543 set = isl_set_project_out(set, isl_dim_set, 0, n);
5544 space = isl_set_get_space(set);
5545 space = isl_space_params(space);
5546 set = isl_set_reset_space(set, space);
5547 return set;
5550 /* Construct a zero-dimensional set with the given parameter domain.
5552 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
5554 isl_space *space;
5555 space = isl_set_get_space(set);
5556 space = isl_space_set_from_params(space);
5557 set = isl_set_reset_space(set, space);
5558 return set;
5561 /* Compute the parameter domain of the given map.
5563 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
5565 isl_space *space;
5566 unsigned n;
5568 n = isl_map_dim(map, isl_dim_in);
5569 map = isl_map_project_out(map, isl_dim_in, 0, n);
5570 n = isl_map_dim(map, isl_dim_out);
5571 map = isl_map_project_out(map, isl_dim_out, 0, n);
5572 space = isl_map_get_space(map);
5573 space = isl_space_params(space);
5574 map = isl_map_reset_space(map, space);
5575 return map;
5578 struct isl_basic_set *isl_basic_map_domain(struct isl_basic_map *bmap)
5580 isl_space *space;
5581 unsigned n_out;
5583 if (!bmap)
5584 return NULL;
5585 space = isl_space_domain(isl_basic_map_get_space(bmap));
5587 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5588 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
5590 return isl_basic_map_reset_space(bmap, space);
5593 isl_bool isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
5595 if (!bmap)
5596 return isl_bool_error;
5597 return isl_space_may_be_set(bmap->dim);
5600 /* Is this basic map actually a set?
5601 * Users should never call this function. Outside of isl,
5602 * the type should indicate whether something is a set or a map.
5604 isl_bool isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
5606 if (!bmap)
5607 return isl_bool_error;
5608 return isl_space_is_set(bmap->dim);
5611 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
5613 isl_bool is_set;
5615 is_set = isl_basic_map_is_set(bmap);
5616 if (is_set < 0)
5617 goto error;
5618 if (is_set)
5619 return bmap;
5620 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
5621 error:
5622 isl_basic_map_free(bmap);
5623 return NULL;
5626 __isl_give isl_basic_map *isl_basic_map_domain_map(
5627 __isl_take isl_basic_map *bmap)
5629 int i;
5630 isl_space *dim;
5631 isl_basic_map *domain;
5632 int nparam, n_in, n_out;
5634 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5635 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5636 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5638 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
5639 domain = isl_basic_map_universe(dim);
5641 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5642 bmap = isl_basic_map_apply_range(bmap, domain);
5643 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
5645 for (i = 0; i < n_in; ++i)
5646 bmap = isl_basic_map_equate(bmap, isl_dim_in, i,
5647 isl_dim_out, i);
5649 bmap = isl_basic_map_gauss(bmap, NULL);
5650 return isl_basic_map_finalize(bmap);
5653 __isl_give isl_basic_map *isl_basic_map_range_map(
5654 __isl_take isl_basic_map *bmap)
5656 int i;
5657 isl_space *dim;
5658 isl_basic_map *range;
5659 int nparam, n_in, n_out;
5661 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5662 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5663 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5665 dim = isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap)));
5666 range = isl_basic_map_universe(dim);
5668 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5669 bmap = isl_basic_map_apply_range(bmap, range);
5670 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
5672 for (i = 0; i < n_out; ++i)
5673 bmap = isl_basic_map_equate(bmap, isl_dim_in, n_in + i,
5674 isl_dim_out, i);
5676 bmap = isl_basic_map_gauss(bmap, NULL);
5677 return isl_basic_map_finalize(bmap);
5680 int isl_map_may_be_set(__isl_keep isl_map *map)
5682 if (!map)
5683 return -1;
5684 return isl_space_may_be_set(map->dim);
5687 /* Is this map actually a set?
5688 * Users should never call this function. Outside of isl,
5689 * the type should indicate whether something is a set or a map.
5691 isl_bool isl_map_is_set(__isl_keep isl_map *map)
5693 if (!map)
5694 return isl_bool_error;
5695 return isl_space_is_set(map->dim);
5698 struct isl_set *isl_map_range(struct isl_map *map)
5700 int i;
5701 isl_bool is_set;
5702 struct isl_set *set;
5704 is_set = isl_map_is_set(map);
5705 if (is_set < 0)
5706 goto error;
5707 if (is_set)
5708 return set_from_map(map);
5710 map = isl_map_cow(map);
5711 if (!map)
5712 goto error;
5714 set = set_from_map(map);
5715 set->dim = isl_space_range(set->dim);
5716 if (!set->dim)
5717 goto error;
5718 for (i = 0; i < map->n; ++i) {
5719 set->p[i] = isl_basic_map_range(map->p[i]);
5720 if (!set->p[i])
5721 goto error;
5723 ISL_F_CLR(set, ISL_MAP_DISJOINT);
5724 ISL_F_CLR(set, ISL_SET_NORMALIZED);
5725 return set;
5726 error:
5727 isl_map_free(map);
5728 return NULL;
5731 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
5733 int i;
5735 map = isl_map_cow(map);
5736 if (!map)
5737 return NULL;
5739 map->dim = isl_space_domain_map(map->dim);
5740 if (!map->dim)
5741 goto error;
5742 for (i = 0; i < map->n; ++i) {
5743 map->p[i] = isl_basic_map_domain_map(map->p[i]);
5744 if (!map->p[i])
5745 goto error;
5747 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5748 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5749 return map;
5750 error:
5751 isl_map_free(map);
5752 return NULL;
5755 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
5757 int i;
5758 isl_space *range_dim;
5760 map = isl_map_cow(map);
5761 if (!map)
5762 return NULL;
5764 range_dim = isl_space_range(isl_map_get_space(map));
5765 range_dim = isl_space_from_range(range_dim);
5766 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
5767 map->dim = isl_space_join(map->dim, range_dim);
5768 if (!map->dim)
5769 goto error;
5770 for (i = 0; i < map->n; ++i) {
5771 map->p[i] = isl_basic_map_range_map(map->p[i]);
5772 if (!map->p[i])
5773 goto error;
5775 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5776 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5777 return map;
5778 error:
5779 isl_map_free(map);
5780 return NULL;
5783 /* Given a wrapped map of the form A[B -> C],
5784 * return the map A[B -> C] -> B.
5786 __isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
5788 isl_id *id;
5789 isl_map *map;
5791 if (!set)
5792 return NULL;
5793 if (!isl_set_has_tuple_id(set))
5794 return isl_map_domain_map(isl_set_unwrap(set));
5796 id = isl_set_get_tuple_id(set);
5797 map = isl_map_domain_map(isl_set_unwrap(set));
5798 map = isl_map_set_tuple_id(map, isl_dim_in, id);
5800 return map;
5803 __isl_give isl_basic_map *isl_basic_map_from_domain(
5804 __isl_take isl_basic_set *bset)
5806 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
5809 __isl_give isl_basic_map *isl_basic_map_from_range(
5810 __isl_take isl_basic_set *bset)
5812 isl_space *space;
5813 space = isl_basic_set_get_space(bset);
5814 space = isl_space_from_range(space);
5815 bset = isl_basic_set_reset_space(bset, space);
5816 return bset_to_bmap(bset);
5819 /* Create a relation with the given set as range.
5820 * The domain of the created relation is a zero-dimensional
5821 * flat anonymous space.
5823 __isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
5825 isl_space *space;
5826 space = isl_set_get_space(set);
5827 space = isl_space_from_range(space);
5828 set = isl_set_reset_space(set, space);
5829 return set_to_map(set);
5832 /* Create a relation with the given set as domain.
5833 * The range of the created relation is a zero-dimensional
5834 * flat anonymous space.
5836 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
5838 return isl_map_reverse(isl_map_from_range(set));
5841 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
5842 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
5844 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
5847 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
5848 __isl_take isl_set *range)
5850 return isl_map_apply_range(isl_map_reverse(domain), range);
5853 /* Return a newly allocated isl_map with given space and flags and
5854 * room for "n" basic maps.
5855 * Make sure that all cached information is cleared.
5857 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *space, int n,
5858 unsigned flags)
5860 struct isl_map *map;
5862 if (!space)
5863 return NULL;
5864 if (n < 0)
5865 isl_die(space->ctx, isl_error_internal,
5866 "negative number of basic maps", goto error);
5867 map = isl_calloc(space->ctx, struct isl_map,
5868 sizeof(struct isl_map) +
5869 (n - 1) * sizeof(struct isl_basic_map *));
5870 if (!map)
5871 goto error;
5873 map->ctx = space->ctx;
5874 isl_ctx_ref(map->ctx);
5875 map->ref = 1;
5876 map->size = n;
5877 map->n = 0;
5878 map->dim = space;
5879 map->flags = flags;
5880 return map;
5881 error:
5882 isl_space_free(space);
5883 return NULL;
5886 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *dim)
5888 struct isl_basic_map *bmap;
5889 bmap = isl_basic_map_alloc_space(dim, 0, 1, 0);
5890 bmap = isl_basic_map_set_to_empty(bmap);
5891 return bmap;
5894 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *dim)
5896 struct isl_basic_set *bset;
5897 bset = isl_basic_set_alloc_space(dim, 0, 1, 0);
5898 bset = isl_basic_set_set_to_empty(bset);
5899 return bset;
5902 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *dim)
5904 struct isl_basic_map *bmap;
5905 bmap = isl_basic_map_alloc_space(dim, 0, 0, 0);
5906 bmap = isl_basic_map_finalize(bmap);
5907 return bmap;
5910 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *dim)
5912 struct isl_basic_set *bset;
5913 bset = isl_basic_set_alloc_space(dim, 0, 0, 0);
5914 bset = isl_basic_set_finalize(bset);
5915 return bset;
5918 __isl_give isl_basic_map *isl_basic_map_nat_universe(__isl_take isl_space *dim)
5920 int i;
5921 unsigned total = isl_space_dim(dim, isl_dim_all);
5922 isl_basic_map *bmap;
5924 bmap= isl_basic_map_alloc_space(dim, 0, 0, total);
5925 for (i = 0; i < total; ++i) {
5926 int k = isl_basic_map_alloc_inequality(bmap);
5927 if (k < 0)
5928 goto error;
5929 isl_seq_clr(bmap->ineq[k], 1 + total);
5930 isl_int_set_si(bmap->ineq[k][1 + i], 1);
5932 return bmap;
5933 error:
5934 isl_basic_map_free(bmap);
5935 return NULL;
5938 __isl_give isl_basic_set *isl_basic_set_nat_universe(__isl_take isl_space *dim)
5940 return isl_basic_map_nat_universe(dim);
5943 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
5945 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
5948 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
5950 return isl_map_nat_universe(dim);
5953 __isl_give isl_map *isl_map_empty(__isl_take isl_space *dim)
5955 return isl_map_alloc_space(dim, 0, ISL_MAP_DISJOINT);
5958 __isl_give isl_set *isl_set_empty(__isl_take isl_space *dim)
5960 return isl_set_alloc_space(dim, 0, ISL_MAP_DISJOINT);
5963 __isl_give isl_map *isl_map_universe(__isl_take isl_space *dim)
5965 struct isl_map *map;
5966 if (!dim)
5967 return NULL;
5968 map = isl_map_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5969 map = isl_map_add_basic_map(map, isl_basic_map_universe(dim));
5970 return map;
5973 __isl_give isl_set *isl_set_universe(__isl_take isl_space *dim)
5975 struct isl_set *set;
5976 if (!dim)
5977 return NULL;
5978 set = isl_set_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5979 set = isl_set_add_basic_set(set, isl_basic_set_universe(dim));
5980 return set;
5983 struct isl_map *isl_map_dup(struct isl_map *map)
5985 int i;
5986 struct isl_map *dup;
5988 if (!map)
5989 return NULL;
5990 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
5991 for (i = 0; i < map->n; ++i)
5992 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
5993 return dup;
5996 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
5997 __isl_take isl_basic_map *bmap)
5999 if (!bmap || !map)
6000 goto error;
6001 if (isl_basic_map_plain_is_empty(bmap)) {
6002 isl_basic_map_free(bmap);
6003 return map;
6005 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
6006 isl_assert(map->ctx, map->n < map->size, goto error);
6007 map->p[map->n] = bmap;
6008 map->n++;
6009 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6010 return map;
6011 error:
6012 if (map)
6013 isl_map_free(map);
6014 if (bmap)
6015 isl_basic_map_free(bmap);
6016 return NULL;
6019 __isl_null isl_map *isl_map_free(__isl_take isl_map *map)
6021 int i;
6023 if (!map)
6024 return NULL;
6026 if (--map->ref > 0)
6027 return NULL;
6029 clear_caches(map);
6030 isl_ctx_deref(map->ctx);
6031 for (i = 0; i < map->n; ++i)
6032 isl_basic_map_free(map->p[i]);
6033 isl_space_free(map->dim);
6034 free(map);
6036 return NULL;
6039 static struct isl_basic_map *isl_basic_map_fix_pos_si(
6040 struct isl_basic_map *bmap, unsigned pos, int value)
6042 int j;
6044 bmap = isl_basic_map_cow(bmap);
6045 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6046 j = isl_basic_map_alloc_equality(bmap);
6047 if (j < 0)
6048 goto error;
6049 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6050 isl_int_set_si(bmap->eq[j][pos], -1);
6051 isl_int_set_si(bmap->eq[j][0], value);
6052 bmap = isl_basic_map_simplify(bmap);
6053 return isl_basic_map_finalize(bmap);
6054 error:
6055 isl_basic_map_free(bmap);
6056 return NULL;
6059 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
6060 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
6062 int j;
6064 bmap = isl_basic_map_cow(bmap);
6065 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6066 j = isl_basic_map_alloc_equality(bmap);
6067 if (j < 0)
6068 goto error;
6069 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6070 isl_int_set_si(bmap->eq[j][pos], -1);
6071 isl_int_set(bmap->eq[j][0], value);
6072 bmap = isl_basic_map_simplify(bmap);
6073 return isl_basic_map_finalize(bmap);
6074 error:
6075 isl_basic_map_free(bmap);
6076 return NULL;
6079 struct isl_basic_map *isl_basic_map_fix_si(struct isl_basic_map *bmap,
6080 enum isl_dim_type type, unsigned pos, int value)
6082 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6083 return isl_basic_map_free(bmap);
6084 return isl_basic_map_fix_pos_si(bmap,
6085 isl_basic_map_offset(bmap, type) + pos, value);
6088 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
6089 enum isl_dim_type type, unsigned pos, isl_int value)
6091 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6092 return isl_basic_map_free(bmap);
6093 return isl_basic_map_fix_pos(bmap,
6094 isl_basic_map_offset(bmap, type) + pos, value);
6097 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
6098 * to be equal to "v".
6100 __isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
6101 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6103 if (!bmap || !v)
6104 goto error;
6105 if (!isl_val_is_int(v))
6106 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
6107 "expecting integer value", goto error);
6108 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6109 goto error;
6110 pos += isl_basic_map_offset(bmap, type);
6111 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
6112 isl_val_free(v);
6113 return bmap;
6114 error:
6115 isl_basic_map_free(bmap);
6116 isl_val_free(v);
6117 return NULL;
6120 /* Fix the value of the variable at position "pos" of type "type" of "bset"
6121 * to be equal to "v".
6123 __isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
6124 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6126 return isl_basic_map_fix_val(bset, type, pos, v);
6129 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
6130 enum isl_dim_type type, unsigned pos, int value)
6132 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6133 type, pos, value));
6136 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
6137 enum isl_dim_type type, unsigned pos, isl_int value)
6139 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset),
6140 type, pos, value));
6143 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
6144 unsigned input, int value)
6146 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
6149 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
6150 unsigned dim, int value)
6152 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6153 isl_dim_set, dim, value));
6156 static int remove_if_empty(__isl_keep isl_map *map, int i)
6158 int empty = isl_basic_map_plain_is_empty(map->p[i]);
6160 if (empty < 0)
6161 return -1;
6162 if (!empty)
6163 return 0;
6165 isl_basic_map_free(map->p[i]);
6166 if (i != map->n - 1) {
6167 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6168 map->p[i] = map->p[map->n - 1];
6170 map->n--;
6172 return 0;
6175 /* Perform "fn" on each basic map of "map", where we may not be holding
6176 * the only reference to "map".
6177 * In particular, "fn" should be a semantics preserving operation
6178 * that we want to apply to all copies of "map". We therefore need
6179 * to be careful not to modify "map" in a way that breaks "map"
6180 * in case anything goes wrong.
6182 __isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
6183 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
6185 struct isl_basic_map *bmap;
6186 int i;
6188 if (!map)
6189 return NULL;
6191 for (i = map->n - 1; i >= 0; --i) {
6192 bmap = isl_basic_map_copy(map->p[i]);
6193 bmap = fn(bmap);
6194 if (!bmap)
6195 goto error;
6196 isl_basic_map_free(map->p[i]);
6197 map->p[i] = bmap;
6198 if (remove_if_empty(map, i) < 0)
6199 goto error;
6202 return map;
6203 error:
6204 isl_map_free(map);
6205 return NULL;
6208 struct isl_map *isl_map_fix_si(struct isl_map *map,
6209 enum isl_dim_type type, unsigned pos, int value)
6211 int i;
6213 map = isl_map_cow(map);
6214 if (!map)
6215 return NULL;
6217 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6218 for (i = map->n - 1; i >= 0; --i) {
6219 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
6220 if (remove_if_empty(map, i) < 0)
6221 goto error;
6223 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6224 return map;
6225 error:
6226 isl_map_free(map);
6227 return NULL;
6230 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
6231 enum isl_dim_type type, unsigned pos, int value)
6233 return set_from_map(isl_map_fix_si(set_to_map(set), type, pos, value));
6236 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
6237 enum isl_dim_type type, unsigned pos, isl_int value)
6239 int i;
6241 map = isl_map_cow(map);
6242 if (!map)
6243 return NULL;
6245 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6246 for (i = 0; i < map->n; ++i) {
6247 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
6248 if (!map->p[i])
6249 goto error;
6251 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6252 return map;
6253 error:
6254 isl_map_free(map);
6255 return NULL;
6258 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
6259 enum isl_dim_type type, unsigned pos, isl_int value)
6261 return set_from_map(isl_map_fix(set_to_map(set), type, pos, value));
6264 /* Fix the value of the variable at position "pos" of type "type" of "map"
6265 * to be equal to "v".
6267 __isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
6268 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6270 int i;
6272 map = isl_map_cow(map);
6273 if (!map || !v)
6274 goto error;
6276 if (!isl_val_is_int(v))
6277 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6278 "expecting integer value", goto error);
6279 if (pos >= isl_map_dim(map, type))
6280 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6281 "index out of bounds", goto error);
6282 for (i = map->n - 1; i >= 0; --i) {
6283 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
6284 isl_val_copy(v));
6285 if (remove_if_empty(map, i) < 0)
6286 goto error;
6288 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6289 isl_val_free(v);
6290 return map;
6291 error:
6292 isl_map_free(map);
6293 isl_val_free(v);
6294 return NULL;
6297 /* Fix the value of the variable at position "pos" of type "type" of "set"
6298 * to be equal to "v".
6300 __isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
6301 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6303 return isl_map_fix_val(set, type, pos, v);
6306 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
6307 unsigned input, int value)
6309 return isl_map_fix_si(map, isl_dim_in, input, value);
6312 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
6314 return set_from_map(isl_map_fix_si(set_to_map(set),
6315 isl_dim_set, dim, value));
6318 static __isl_give isl_basic_map *basic_map_bound_si(
6319 __isl_take isl_basic_map *bmap,
6320 enum isl_dim_type type, unsigned pos, int value, int upper)
6322 int j;
6324 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6325 return isl_basic_map_free(bmap);
6326 pos += isl_basic_map_offset(bmap, type);
6327 bmap = isl_basic_map_cow(bmap);
6328 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6329 j = isl_basic_map_alloc_inequality(bmap);
6330 if (j < 0)
6331 goto error;
6332 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6333 if (upper) {
6334 isl_int_set_si(bmap->ineq[j][pos], -1);
6335 isl_int_set_si(bmap->ineq[j][0], value);
6336 } else {
6337 isl_int_set_si(bmap->ineq[j][pos], 1);
6338 isl_int_set_si(bmap->ineq[j][0], -value);
6340 bmap = isl_basic_map_simplify(bmap);
6341 return isl_basic_map_finalize(bmap);
6342 error:
6343 isl_basic_map_free(bmap);
6344 return NULL;
6347 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
6348 __isl_take isl_basic_map *bmap,
6349 enum isl_dim_type type, unsigned pos, int value)
6351 return basic_map_bound_si(bmap, type, pos, value, 0);
6354 /* Constrain the values of the given dimension to be no greater than "value".
6356 __isl_give isl_basic_map *isl_basic_map_upper_bound_si(
6357 __isl_take isl_basic_map *bmap,
6358 enum isl_dim_type type, unsigned pos, int value)
6360 return basic_map_bound_si(bmap, type, pos, value, 1);
6363 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
6364 enum isl_dim_type type, unsigned pos, int value, int upper)
6366 int i;
6368 map = isl_map_cow(map);
6369 if (!map)
6370 return NULL;
6372 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6373 for (i = 0; i < map->n; ++i) {
6374 map->p[i] = basic_map_bound_si(map->p[i],
6375 type, pos, value, upper);
6376 if (!map->p[i])
6377 goto error;
6379 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6380 return map;
6381 error:
6382 isl_map_free(map);
6383 return NULL;
6386 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
6387 enum isl_dim_type type, unsigned pos, int value)
6389 return map_bound_si(map, type, pos, value, 0);
6392 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
6393 enum isl_dim_type type, unsigned pos, int value)
6395 return map_bound_si(map, type, pos, value, 1);
6398 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
6399 enum isl_dim_type type, unsigned pos, int value)
6401 return set_from_map(isl_map_lower_bound_si(set_to_map(set),
6402 type, pos, value));
6405 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
6406 enum isl_dim_type type, unsigned pos, int value)
6408 return isl_map_upper_bound_si(set, type, pos, value);
6411 /* Bound the given variable of "bmap" from below (or above is "upper"
6412 * is set) to "value".
6414 static __isl_give isl_basic_map *basic_map_bound(
6415 __isl_take isl_basic_map *bmap,
6416 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6418 int j;
6420 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6421 return isl_basic_map_free(bmap);
6422 pos += isl_basic_map_offset(bmap, type);
6423 bmap = isl_basic_map_cow(bmap);
6424 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6425 j = isl_basic_map_alloc_inequality(bmap);
6426 if (j < 0)
6427 goto error;
6428 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6429 if (upper) {
6430 isl_int_set_si(bmap->ineq[j][pos], -1);
6431 isl_int_set(bmap->ineq[j][0], value);
6432 } else {
6433 isl_int_set_si(bmap->ineq[j][pos], 1);
6434 isl_int_neg(bmap->ineq[j][0], value);
6436 bmap = isl_basic_map_simplify(bmap);
6437 return isl_basic_map_finalize(bmap);
6438 error:
6439 isl_basic_map_free(bmap);
6440 return NULL;
6443 /* Bound the given variable of "map" from below (or above is "upper"
6444 * is set) to "value".
6446 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
6447 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6449 int i;
6451 map = isl_map_cow(map);
6452 if (!map)
6453 return NULL;
6455 if (pos >= isl_map_dim(map, type))
6456 isl_die(map->ctx, isl_error_invalid,
6457 "index out of bounds", goto error);
6458 for (i = map->n - 1; i >= 0; --i) {
6459 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
6460 if (remove_if_empty(map, i) < 0)
6461 goto error;
6463 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6464 return map;
6465 error:
6466 isl_map_free(map);
6467 return NULL;
6470 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
6471 enum isl_dim_type type, unsigned pos, isl_int value)
6473 return map_bound(map, type, pos, value, 0);
6476 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
6477 enum isl_dim_type type, unsigned pos, isl_int value)
6479 return map_bound(map, type, pos, value, 1);
6482 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
6483 enum isl_dim_type type, unsigned pos, isl_int value)
6485 return isl_map_lower_bound(set, type, pos, value);
6488 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
6489 enum isl_dim_type type, unsigned pos, isl_int value)
6491 return isl_map_upper_bound(set, type, pos, value);
6494 /* Force the values of the variable at position "pos" of type "type" of "set"
6495 * to be no smaller than "value".
6497 __isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
6498 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6500 if (!value)
6501 goto error;
6502 if (!isl_val_is_int(value))
6503 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6504 "expecting integer value", goto error);
6505 set = isl_set_lower_bound(set, type, pos, value->n);
6506 isl_val_free(value);
6507 return set;
6508 error:
6509 isl_val_free(value);
6510 isl_set_free(set);
6511 return NULL;
6514 /* Force the values of the variable at position "pos" of type "type" of "set"
6515 * to be no greater than "value".
6517 __isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
6518 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6520 if (!value)
6521 goto error;
6522 if (!isl_val_is_int(value))
6523 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6524 "expecting integer value", goto error);
6525 set = isl_set_upper_bound(set, type, pos, value->n);
6526 isl_val_free(value);
6527 return set;
6528 error:
6529 isl_val_free(value);
6530 isl_set_free(set);
6531 return NULL;
6534 struct isl_map *isl_map_reverse(struct isl_map *map)
6536 int i;
6538 map = isl_map_cow(map);
6539 if (!map)
6540 return NULL;
6542 map->dim = isl_space_reverse(map->dim);
6543 if (!map->dim)
6544 goto error;
6545 for (i = 0; i < map->n; ++i) {
6546 map->p[i] = isl_basic_map_reverse(map->p[i]);
6547 if (!map->p[i])
6548 goto error;
6550 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6551 return map;
6552 error:
6553 isl_map_free(map);
6554 return NULL;
6557 #undef TYPE
6558 #define TYPE isl_pw_multi_aff
6559 #undef SUFFIX
6560 #define SUFFIX _pw_multi_aff
6561 #undef EMPTY
6562 #define EMPTY isl_pw_multi_aff_empty
6563 #undef ADD
6564 #define ADD isl_pw_multi_aff_union_add
6565 #include "isl_map_lexopt_templ.c"
6567 /* Given a map "map", compute the lexicographically minimal
6568 * (or maximal) image element for each domain element in dom,
6569 * in the form of an isl_pw_multi_aff.
6570 * If "empty" is not NULL, then set *empty to those elements in dom that
6571 * do not have an image element.
6572 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6573 * should be computed over the domain of "map". "empty" is also NULL
6574 * in this case.
6576 * We first compute the lexicographically minimal or maximal element
6577 * in the first basic map. This results in a partial solution "res"
6578 * and a subset "todo" of dom that still need to be handled.
6579 * We then consider each of the remaining maps in "map" and successively
6580 * update both "res" and "todo".
6581 * If "empty" is NULL, then the todo sets are not needed and therefore
6582 * also not computed.
6584 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
6585 __isl_take isl_map *map, __isl_take isl_set *dom,
6586 __isl_give isl_set **empty, unsigned flags)
6588 int i;
6589 int full;
6590 isl_pw_multi_aff *res;
6591 isl_set *todo;
6593 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6594 if (!map || (!full && !dom))
6595 goto error;
6597 if (isl_map_plain_is_empty(map)) {
6598 if (empty)
6599 *empty = dom;
6600 else
6601 isl_set_free(dom);
6602 return isl_pw_multi_aff_from_map(map);
6605 res = basic_map_partial_lexopt_pw_multi_aff(
6606 isl_basic_map_copy(map->p[0]),
6607 isl_set_copy(dom), empty, flags);
6609 if (empty)
6610 todo = *empty;
6611 for (i = 1; i < map->n; ++i) {
6612 isl_pw_multi_aff *res_i;
6614 res_i = basic_map_partial_lexopt_pw_multi_aff(
6615 isl_basic_map_copy(map->p[i]),
6616 isl_set_copy(dom), empty, flags);
6618 if (ISL_FL_ISSET(flags, ISL_OPT_MAX))
6619 res = isl_pw_multi_aff_union_lexmax(res, res_i);
6620 else
6621 res = isl_pw_multi_aff_union_lexmin(res, res_i);
6623 if (empty)
6624 todo = isl_set_intersect(todo, *empty);
6627 isl_set_free(dom);
6628 isl_map_free(map);
6630 if (empty)
6631 *empty = todo;
6633 return res;
6634 error:
6635 if (empty)
6636 *empty = NULL;
6637 isl_set_free(dom);
6638 isl_map_free(map);
6639 return NULL;
6642 #undef TYPE
6643 #define TYPE isl_map
6644 #undef SUFFIX
6645 #define SUFFIX
6646 #undef EMPTY
6647 #define EMPTY isl_map_empty
6648 #undef ADD
6649 #define ADD isl_map_union_disjoint
6650 #include "isl_map_lexopt_templ.c"
6652 /* Given a map "map", compute the lexicographically minimal
6653 * (or maximal) image element for each domain element in "dom",
6654 * in the form of an isl_map.
6655 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6656 * do not have an image element.
6657 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6658 * should be computed over the domain of "map". "empty" is also NULL
6659 * in this case.
6661 * If the input consists of more than one disjunct, then first
6662 * compute the desired result in the form of an isl_pw_multi_aff and
6663 * then convert that into an isl_map.
6665 * This function used to have an explicit implementation in terms
6666 * of isl_maps, but it would continually intersect the domains of
6667 * partial results with the complement of the domain of the next
6668 * partial solution, potentially leading to an explosion in the number
6669 * of disjuncts if there are several disjuncts in the input.
6670 * An even earlier implementation of this function would look for
6671 * better results in the domain of the partial result and for extra
6672 * results in the complement of this domain, which would lead to
6673 * even more splintering.
6675 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
6676 __isl_take isl_map *map, __isl_take isl_set *dom,
6677 __isl_give isl_set **empty, unsigned flags)
6679 int full;
6680 struct isl_map *res;
6681 isl_pw_multi_aff *pma;
6683 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6684 if (!map || (!full && !dom))
6685 goto error;
6687 if (isl_map_plain_is_empty(map)) {
6688 if (empty)
6689 *empty = dom;
6690 else
6691 isl_set_free(dom);
6692 return map;
6695 if (map->n == 1) {
6696 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
6697 dom, empty, flags);
6698 isl_map_free(map);
6699 return res;
6702 pma = isl_map_partial_lexopt_aligned_pw_multi_aff(map, dom, empty,
6703 flags);
6704 return isl_map_from_pw_multi_aff(pma);
6705 error:
6706 if (empty)
6707 *empty = NULL;
6708 isl_set_free(dom);
6709 isl_map_free(map);
6710 return NULL;
6713 __isl_give isl_map *isl_map_partial_lexmax(
6714 __isl_take isl_map *map, __isl_take isl_set *dom,
6715 __isl_give isl_set **empty)
6717 return isl_map_partial_lexopt(map, dom, empty, ISL_OPT_MAX);
6720 __isl_give isl_map *isl_map_partial_lexmin(
6721 __isl_take isl_map *map, __isl_take isl_set *dom,
6722 __isl_give isl_set **empty)
6724 return isl_map_partial_lexopt(map, dom, empty, 0);
6727 __isl_give isl_set *isl_set_partial_lexmin(
6728 __isl_take isl_set *set, __isl_take isl_set *dom,
6729 __isl_give isl_set **empty)
6731 return set_from_map(isl_map_partial_lexmin(set_to_map(set),
6732 dom, empty));
6735 __isl_give isl_set *isl_set_partial_lexmax(
6736 __isl_take isl_set *set, __isl_take isl_set *dom,
6737 __isl_give isl_set **empty)
6739 return set_from_map(isl_map_partial_lexmax(set_to_map(set),
6740 dom, empty));
6743 /* Compute the lexicographic minimum (or maximum if "flags" includes
6744 * ISL_OPT_MAX) of "bset" over its parametric domain.
6746 __isl_give isl_set *isl_basic_set_lexopt(__isl_take isl_basic_set *bset,
6747 unsigned flags)
6749 return isl_basic_map_lexopt(bset, flags);
6752 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
6754 return isl_basic_map_lexopt(bmap, ISL_OPT_MAX);
6757 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
6759 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset)));
6762 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
6764 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset)));
6767 /* Compute the lexicographic minimum of "bset" over its parametric domain
6768 * for the purpose of quantifier elimination.
6769 * That is, find an explicit representation for all the existentially
6770 * quantified variables in "bset" by computing their lexicographic
6771 * minimum.
6773 static __isl_give isl_set *isl_basic_set_lexmin_compute_divs(
6774 __isl_take isl_basic_set *bset)
6776 return isl_basic_set_lexopt(bset, ISL_OPT_QE);
6779 /* Extract the first and only affine expression from list
6780 * and then add it to *pwaff with the given dom.
6781 * This domain is known to be disjoint from other domains
6782 * because of the way isl_basic_map_foreach_lexmax works.
6784 static isl_stat update_dim_opt(__isl_take isl_basic_set *dom,
6785 __isl_take isl_aff_list *list, void *user)
6787 isl_ctx *ctx = isl_basic_set_get_ctx(dom);
6788 isl_aff *aff;
6789 isl_pw_aff **pwaff = user;
6790 isl_pw_aff *pwaff_i;
6792 if (!list)
6793 goto error;
6794 if (isl_aff_list_n_aff(list) != 1)
6795 isl_die(ctx, isl_error_internal,
6796 "expecting single element list", goto error);
6798 aff = isl_aff_list_get_aff(list, 0);
6799 pwaff_i = isl_pw_aff_alloc(isl_set_from_basic_set(dom), aff);
6801 *pwaff = isl_pw_aff_add_disjoint(*pwaff, pwaff_i);
6803 isl_aff_list_free(list);
6805 return isl_stat_ok;
6806 error:
6807 isl_basic_set_free(dom);
6808 isl_aff_list_free(list);
6809 return isl_stat_error;
6812 /* Given a basic map with one output dimension, compute the minimum or
6813 * maximum of that dimension as an isl_pw_aff.
6815 * The isl_pw_aff is constructed by having isl_basic_map_foreach_lexopt
6816 * call update_dim_opt on each leaf of the result.
6818 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
6819 int max)
6821 isl_space *dim = isl_basic_map_get_space(bmap);
6822 isl_pw_aff *pwaff;
6823 isl_stat r;
6825 dim = isl_space_from_domain(isl_space_domain(dim));
6826 dim = isl_space_add_dims(dim, isl_dim_out, 1);
6827 pwaff = isl_pw_aff_empty(dim);
6829 r = isl_basic_map_foreach_lexopt(bmap, max, &update_dim_opt, &pwaff);
6830 if (r < 0)
6831 return isl_pw_aff_free(pwaff);
6833 return pwaff;
6836 /* Compute the minimum or maximum of the given output dimension
6837 * as a function of the parameters and the input dimensions,
6838 * but independently of the other output dimensions.
6840 * We first project out the other output dimension and then compute
6841 * the "lexicographic" maximum in each basic map, combining the results
6842 * using isl_pw_aff_union_max.
6844 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
6845 int max)
6847 int i;
6848 isl_pw_aff *pwaff;
6849 unsigned n_out;
6851 n_out = isl_map_dim(map, isl_dim_out);
6852 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
6853 map = isl_map_project_out(map, isl_dim_out, 0, pos);
6854 if (!map)
6855 return NULL;
6857 if (map->n == 0) {
6858 isl_space *dim = isl_map_get_space(map);
6859 isl_map_free(map);
6860 return isl_pw_aff_empty(dim);
6863 pwaff = basic_map_dim_opt(map->p[0], max);
6864 for (i = 1; i < map->n; ++i) {
6865 isl_pw_aff *pwaff_i;
6867 pwaff_i = basic_map_dim_opt(map->p[i], max);
6868 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
6871 isl_map_free(map);
6873 return pwaff;
6876 /* Compute the minimum of the given output dimension as a function of the
6877 * parameters and input dimensions, but independently of
6878 * the other output dimensions.
6880 __isl_give isl_pw_aff *isl_map_dim_min(__isl_take isl_map *map, int pos)
6882 return map_dim_opt(map, pos, 0);
6885 /* Compute the maximum of the given output dimension as a function of the
6886 * parameters and input dimensions, but independently of
6887 * the other output dimensions.
6889 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
6891 return map_dim_opt(map, pos, 1);
6894 /* Compute the minimum or maximum of the given set dimension
6895 * as a function of the parameters,
6896 * but independently of the other set dimensions.
6898 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
6899 int max)
6901 return map_dim_opt(set, pos, max);
6904 /* Compute the maximum of the given set dimension as a function of the
6905 * parameters, but independently of the other set dimensions.
6907 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
6909 return set_dim_opt(set, pos, 1);
6912 /* Compute the minimum of the given set dimension as a function of the
6913 * parameters, but independently of the other set dimensions.
6915 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
6917 return set_dim_opt(set, pos, 0);
6920 /* Apply a preimage specified by "mat" on the parameters of "bset".
6921 * bset is assumed to have only parameters and divs.
6923 static __isl_give isl_basic_set *basic_set_parameter_preimage(
6924 __isl_take isl_basic_set *bset, __isl_take isl_mat *mat)
6926 unsigned nparam;
6928 if (!bset || !mat)
6929 goto error;
6931 bset->dim = isl_space_cow(bset->dim);
6932 if (!bset->dim)
6933 goto error;
6935 nparam = isl_basic_set_dim(bset, isl_dim_param);
6937 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
6939 bset->dim->nparam = 0;
6940 bset->dim->n_out = nparam;
6941 bset = isl_basic_set_preimage(bset, mat);
6942 if (bset) {
6943 bset->dim->nparam = bset->dim->n_out;
6944 bset->dim->n_out = 0;
6946 return bset;
6947 error:
6948 isl_mat_free(mat);
6949 isl_basic_set_free(bset);
6950 return NULL;
6953 /* Apply a preimage specified by "mat" on the parameters of "set".
6954 * set is assumed to have only parameters and divs.
6956 static __isl_give isl_set *set_parameter_preimage(__isl_take isl_set *set,
6957 __isl_take isl_mat *mat)
6959 isl_space *space;
6960 unsigned nparam;
6962 if (!set || !mat)
6963 goto error;
6965 nparam = isl_set_dim(set, isl_dim_param);
6967 if (mat->n_row != 1 + nparam)
6968 isl_die(isl_set_get_ctx(set), isl_error_internal,
6969 "unexpected number of rows", goto error);
6971 space = isl_set_get_space(set);
6972 space = isl_space_move_dims(space, isl_dim_set, 0,
6973 isl_dim_param, 0, nparam);
6974 set = isl_set_reset_space(set, space);
6975 set = isl_set_preimage(set, mat);
6976 nparam = isl_set_dim(set, isl_dim_out);
6977 space = isl_set_get_space(set);
6978 space = isl_space_move_dims(space, isl_dim_param, 0,
6979 isl_dim_out, 0, nparam);
6980 set = isl_set_reset_space(set, space);
6981 return set;
6982 error:
6983 isl_mat_free(mat);
6984 isl_set_free(set);
6985 return NULL;
6988 /* Intersect the basic set "bset" with the affine space specified by the
6989 * equalities in "eq".
6991 static __isl_give isl_basic_set *basic_set_append_equalities(
6992 __isl_take isl_basic_set *bset, __isl_take isl_mat *eq)
6994 int i, k;
6995 unsigned len;
6997 if (!bset || !eq)
6998 goto error;
7000 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
7001 eq->n_row, 0);
7002 if (!bset)
7003 goto error;
7005 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
7006 for (i = 0; i < eq->n_row; ++i) {
7007 k = isl_basic_set_alloc_equality(bset);
7008 if (k < 0)
7009 goto error;
7010 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
7011 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
7013 isl_mat_free(eq);
7015 bset = isl_basic_set_gauss(bset, NULL);
7016 bset = isl_basic_set_finalize(bset);
7018 return bset;
7019 error:
7020 isl_mat_free(eq);
7021 isl_basic_set_free(bset);
7022 return NULL;
7025 /* Intersect the set "set" with the affine space specified by the
7026 * equalities in "eq".
7028 static struct isl_set *set_append_equalities(struct isl_set *set,
7029 struct isl_mat *eq)
7031 int i;
7033 if (!set || !eq)
7034 goto error;
7036 for (i = 0; i < set->n; ++i) {
7037 set->p[i] = basic_set_append_equalities(set->p[i],
7038 isl_mat_copy(eq));
7039 if (!set->p[i])
7040 goto error;
7042 isl_mat_free(eq);
7043 return set;
7044 error:
7045 isl_mat_free(eq);
7046 isl_set_free(set);
7047 return NULL;
7050 /* Given a basic set "bset" that only involves parameters and existentially
7051 * quantified variables, return the index of the first equality
7052 * that only involves parameters. If there is no such equality then
7053 * return bset->n_eq.
7055 * This function assumes that isl_basic_set_gauss has been called on "bset".
7057 static int first_parameter_equality(__isl_keep isl_basic_set *bset)
7059 int i, j;
7060 unsigned nparam, n_div;
7062 if (!bset)
7063 return -1;
7065 nparam = isl_basic_set_dim(bset, isl_dim_param);
7066 n_div = isl_basic_set_dim(bset, isl_dim_div);
7068 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
7069 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
7070 ++i;
7073 return i;
7076 /* Compute an explicit representation for the existentially quantified
7077 * variables in "bset" by computing the "minimal value" of the set
7078 * variables. Since there are no set variables, the computation of
7079 * the minimal value essentially computes an explicit representation
7080 * of the non-empty part(s) of "bset".
7082 * The input only involves parameters and existentially quantified variables.
7083 * All equalities among parameters have been removed.
7085 * Since the existentially quantified variables in the result are in general
7086 * going to be different from those in the input, we first replace
7087 * them by the minimal number of variables based on their equalities.
7088 * This should simplify the parametric integer programming.
7090 static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
7092 isl_morph *morph1, *morph2;
7093 isl_set *set;
7094 unsigned n;
7096 if (!bset)
7097 return NULL;
7098 if (bset->n_eq == 0)
7099 return isl_basic_set_lexmin_compute_divs(bset);
7101 morph1 = isl_basic_set_parameter_compression(bset);
7102 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
7103 bset = isl_basic_set_lift(bset);
7104 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
7105 bset = isl_morph_basic_set(morph2, bset);
7106 n = isl_basic_set_dim(bset, isl_dim_set);
7107 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
7109 set = isl_basic_set_lexmin_compute_divs(bset);
7111 set = isl_morph_set(isl_morph_inverse(morph1), set);
7113 return set;
7116 /* Project the given basic set onto its parameter domain, possibly introducing
7117 * new, explicit, existential variables in the constraints.
7118 * The input has parameters and (possibly implicit) existential variables.
7119 * The output has the same parameters, but only
7120 * explicit existentially quantified variables.
7122 * The actual projection is performed by pip, but pip doesn't seem
7123 * to like equalities very much, so we first remove the equalities
7124 * among the parameters by performing a variable compression on
7125 * the parameters. Afterward, an inverse transformation is performed
7126 * and the equalities among the parameters are inserted back in.
7128 * The variable compression on the parameters may uncover additional
7129 * equalities that were only implicit before. We therefore check
7130 * if there are any new parameter equalities in the result and
7131 * if so recurse. The removal of parameter equalities is required
7132 * for the parameter compression performed by base_compute_divs.
7134 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
7136 int i;
7137 struct isl_mat *eq;
7138 struct isl_mat *T, *T2;
7139 struct isl_set *set;
7140 unsigned nparam;
7142 bset = isl_basic_set_cow(bset);
7143 if (!bset)
7144 return NULL;
7146 if (bset->n_eq == 0)
7147 return base_compute_divs(bset);
7149 bset = isl_basic_set_gauss(bset, NULL);
7150 if (!bset)
7151 return NULL;
7152 if (isl_basic_set_plain_is_empty(bset))
7153 return isl_set_from_basic_set(bset);
7155 i = first_parameter_equality(bset);
7156 if (i == bset->n_eq)
7157 return base_compute_divs(bset);
7159 nparam = isl_basic_set_dim(bset, isl_dim_param);
7160 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
7161 0, 1 + nparam);
7162 eq = isl_mat_cow(eq);
7163 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
7164 if (T && T->n_col == 0) {
7165 isl_mat_free(T);
7166 isl_mat_free(T2);
7167 isl_mat_free(eq);
7168 bset = isl_basic_set_set_to_empty(bset);
7169 return isl_set_from_basic_set(bset);
7171 bset = basic_set_parameter_preimage(bset, T);
7173 i = first_parameter_equality(bset);
7174 if (!bset)
7175 set = NULL;
7176 else if (i == bset->n_eq)
7177 set = base_compute_divs(bset);
7178 else
7179 set = parameter_compute_divs(bset);
7180 set = set_parameter_preimage(set, T2);
7181 set = set_append_equalities(set, eq);
7182 return set;
7185 /* Insert the divs from "ls" before those of "bmap".
7187 * The number of columns is not changed, which means that the last
7188 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7189 * The caller is responsible for removing the same number of dimensions
7190 * from the space of "bmap".
7192 static __isl_give isl_basic_map *insert_divs_from_local_space(
7193 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
7195 int i;
7196 int n_div;
7197 int old_n_div;
7199 n_div = isl_local_space_dim(ls, isl_dim_div);
7200 if (n_div == 0)
7201 return bmap;
7203 old_n_div = bmap->n_div;
7204 bmap = insert_div_rows(bmap, n_div);
7205 if (!bmap)
7206 return NULL;
7208 for (i = 0; i < n_div; ++i) {
7209 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
7210 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
7213 return bmap;
7216 /* Replace the space of "bmap" by the space and divs of "ls".
7218 * If "ls" has any divs, then we simplify the result since we may
7219 * have discovered some additional equalities that could simplify
7220 * the div expressions.
7222 static __isl_give isl_basic_map *basic_replace_space_by_local_space(
7223 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
7225 int n_div;
7227 bmap = isl_basic_map_cow(bmap);
7228 if (!bmap || !ls)
7229 goto error;
7231 n_div = isl_local_space_dim(ls, isl_dim_div);
7232 bmap = insert_divs_from_local_space(bmap, ls);
7233 if (!bmap)
7234 goto error;
7236 isl_space_free(bmap->dim);
7237 bmap->dim = isl_local_space_get_space(ls);
7238 if (!bmap->dim)
7239 goto error;
7241 isl_local_space_free(ls);
7242 if (n_div > 0)
7243 bmap = isl_basic_map_simplify(bmap);
7244 bmap = isl_basic_map_finalize(bmap);
7245 return bmap;
7246 error:
7247 isl_basic_map_free(bmap);
7248 isl_local_space_free(ls);
7249 return NULL;
7252 /* Replace the space of "map" by the space and divs of "ls".
7254 static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
7255 __isl_take isl_local_space *ls)
7257 int i;
7259 map = isl_map_cow(map);
7260 if (!map || !ls)
7261 goto error;
7263 for (i = 0; i < map->n; ++i) {
7264 map->p[i] = basic_replace_space_by_local_space(map->p[i],
7265 isl_local_space_copy(ls));
7266 if (!map->p[i])
7267 goto error;
7269 isl_space_free(map->dim);
7270 map->dim = isl_local_space_get_space(ls);
7271 if (!map->dim)
7272 goto error;
7274 isl_local_space_free(ls);
7275 return map;
7276 error:
7277 isl_local_space_free(ls);
7278 isl_map_free(map);
7279 return NULL;
7282 /* Compute an explicit representation for the existentially
7283 * quantified variables for which do not know any explicit representation yet.
7285 * We first sort the existentially quantified variables so that the
7286 * existentially quantified variables for which we already have an explicit
7287 * representation are placed before those for which we do not.
7288 * The input dimensions, the output dimensions and the existentially
7289 * quantified variables for which we already have an explicit
7290 * representation are then turned into parameters.
7291 * compute_divs returns a map with the same parameters and
7292 * no input or output dimensions and the dimension specification
7293 * is reset to that of the input, including the existentially quantified
7294 * variables for which we already had an explicit representation.
7296 static struct isl_map *compute_divs(struct isl_basic_map *bmap)
7298 struct isl_basic_set *bset;
7299 struct isl_set *set;
7300 struct isl_map *map;
7301 isl_space *dim;
7302 isl_local_space *ls;
7303 unsigned nparam;
7304 unsigned n_in;
7305 unsigned n_out;
7306 int n_known;
7307 int i;
7309 bmap = isl_basic_map_sort_divs(bmap);
7310 bmap = isl_basic_map_cow(bmap);
7311 if (!bmap)
7312 return NULL;
7314 n_known = isl_basic_map_first_unknown_div(bmap);
7315 if (n_known < 0)
7316 return isl_map_from_basic_map(isl_basic_map_free(bmap));
7318 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7319 n_in = isl_basic_map_dim(bmap, isl_dim_in);
7320 n_out = isl_basic_map_dim(bmap, isl_dim_out);
7321 dim = isl_space_set_alloc(bmap->ctx,
7322 nparam + n_in + n_out + n_known, 0);
7323 if (!dim)
7324 goto error;
7326 ls = isl_basic_map_get_local_space(bmap);
7327 ls = isl_local_space_drop_dims(ls, isl_dim_div,
7328 n_known, bmap->n_div - n_known);
7329 if (n_known > 0) {
7330 for (i = n_known; i < bmap->n_div; ++i)
7331 swap_div(bmap, i - n_known, i);
7332 bmap->n_div -= n_known;
7333 bmap->extra -= n_known;
7335 bmap = isl_basic_map_reset_space(bmap, dim);
7336 bset = bset_from_bmap(bmap);
7338 set = parameter_compute_divs(bset);
7339 map = set_to_map(set);
7340 map = replace_space_by_local_space(map, ls);
7342 return map;
7343 error:
7344 isl_basic_map_free(bmap);
7345 return NULL;
7348 /* Remove the explicit representation of local variable "div",
7349 * if there is any.
7351 __isl_give isl_basic_map *isl_basic_map_mark_div_unknown(
7352 __isl_take isl_basic_map *bmap, int div)
7354 isl_bool unknown;
7356 unknown = isl_basic_map_div_is_marked_unknown(bmap, div);
7357 if (unknown < 0)
7358 return isl_basic_map_free(bmap);
7359 if (unknown)
7360 return bmap;
7362 bmap = isl_basic_map_cow(bmap);
7363 if (!bmap)
7364 return NULL;
7365 isl_int_set_si(bmap->div[div][0], 0);
7366 return bmap;
7369 /* Is local variable "div" of "bmap" marked as not having an explicit
7370 * representation?
7371 * Note that even if "div" is not marked in this way and therefore
7372 * has an explicit representation, this representation may still
7373 * depend (indirectly) on other local variables that do not
7374 * have an explicit representation.
7376 isl_bool isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map *bmap,
7377 int div)
7379 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
7380 return isl_bool_error;
7381 return isl_int_is_zero(bmap->div[div][0]);
7384 /* Return the position of the first local variable that does not
7385 * have an explicit representation.
7386 * Return the total number of local variables if they all have
7387 * an explicit representation.
7388 * Return -1 on error.
7390 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map *bmap)
7392 int i;
7394 if (!bmap)
7395 return -1;
7397 for (i = 0; i < bmap->n_div; ++i) {
7398 if (!isl_basic_map_div_is_known(bmap, i))
7399 return i;
7401 return bmap->n_div;
7404 /* Return the position of the first local variable that does not
7405 * have an explicit representation.
7406 * Return the total number of local variables if they all have
7407 * an explicit representation.
7408 * Return -1 on error.
7410 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set *bset)
7412 return isl_basic_map_first_unknown_div(bset);
7415 /* Does "bmap" have an explicit representation for all local variables?
7417 isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
7419 int first, n;
7421 n = isl_basic_map_dim(bmap, isl_dim_div);
7422 first = isl_basic_map_first_unknown_div(bmap);
7423 if (first < 0)
7424 return isl_bool_error;
7425 return first == n;
7428 /* Do all basic maps in "map" have an explicit representation
7429 * for all local variables?
7431 isl_bool isl_map_divs_known(__isl_keep isl_map *map)
7433 int i;
7435 if (!map)
7436 return isl_bool_error;
7438 for (i = 0; i < map->n; ++i) {
7439 int known = isl_basic_map_divs_known(map->p[i]);
7440 if (known <= 0)
7441 return known;
7444 return isl_bool_true;
7447 /* If bmap contains any unknown divs, then compute explicit
7448 * expressions for them. However, this computation may be
7449 * quite expensive, so first try to remove divs that aren't
7450 * strictly needed.
7452 struct isl_map *isl_basic_map_compute_divs(struct isl_basic_map *bmap)
7454 int known;
7455 struct isl_map *map;
7457 known = isl_basic_map_divs_known(bmap);
7458 if (known < 0)
7459 goto error;
7460 if (known)
7461 return isl_map_from_basic_map(bmap);
7463 bmap = isl_basic_map_drop_redundant_divs(bmap);
7465 known = isl_basic_map_divs_known(bmap);
7466 if (known < 0)
7467 goto error;
7468 if (known)
7469 return isl_map_from_basic_map(bmap);
7471 map = compute_divs(bmap);
7472 return map;
7473 error:
7474 isl_basic_map_free(bmap);
7475 return NULL;
7478 struct isl_map *isl_map_compute_divs(struct isl_map *map)
7480 int i;
7481 int known;
7482 struct isl_map *res;
7484 if (!map)
7485 return NULL;
7486 if (map->n == 0)
7487 return map;
7489 known = isl_map_divs_known(map);
7490 if (known < 0) {
7491 isl_map_free(map);
7492 return NULL;
7494 if (known)
7495 return map;
7497 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
7498 for (i = 1 ; i < map->n; ++i) {
7499 struct isl_map *r2;
7500 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
7501 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
7502 res = isl_map_union_disjoint(res, r2);
7503 else
7504 res = isl_map_union(res, r2);
7506 isl_map_free(map);
7508 return res;
7511 struct isl_set *isl_basic_set_compute_divs(struct isl_basic_set *bset)
7513 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset)));
7516 struct isl_set *isl_set_compute_divs(struct isl_set *set)
7518 return set_from_map(isl_map_compute_divs(set_to_map(set)));
7521 struct isl_set *isl_map_domain(struct isl_map *map)
7523 int i;
7524 struct isl_set *set;
7526 if (!map)
7527 goto error;
7529 map = isl_map_cow(map);
7530 if (!map)
7531 return NULL;
7533 set = set_from_map(map);
7534 set->dim = isl_space_domain(set->dim);
7535 if (!set->dim)
7536 goto error;
7537 for (i = 0; i < map->n; ++i) {
7538 set->p[i] = isl_basic_map_domain(map->p[i]);
7539 if (!set->p[i])
7540 goto error;
7542 ISL_F_CLR(set, ISL_MAP_DISJOINT);
7543 ISL_F_CLR(set, ISL_SET_NORMALIZED);
7544 return set;
7545 error:
7546 isl_map_free(map);
7547 return NULL;
7550 /* Return the union of "map1" and "map2", where we assume for now that
7551 * "map1" and "map2" are disjoint. Note that the basic maps inside
7552 * "map1" or "map2" may not be disjoint from each other.
7553 * Also note that this function is also called from isl_map_union,
7554 * which takes care of handling the situation where "map1" and "map2"
7555 * may not be disjoint.
7557 * If one of the inputs is empty, we can simply return the other input.
7558 * Similarly, if one of the inputs is universal, then it is equal to the union.
7560 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
7561 __isl_take isl_map *map2)
7563 int i;
7564 unsigned flags = 0;
7565 struct isl_map *map = NULL;
7566 int is_universe;
7568 if (!map1 || !map2)
7569 goto error;
7571 if (!isl_space_is_equal(map1->dim, map2->dim))
7572 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
7573 "spaces don't match", goto error);
7575 if (map1->n == 0) {
7576 isl_map_free(map1);
7577 return map2;
7579 if (map2->n == 0) {
7580 isl_map_free(map2);
7581 return map1;
7584 is_universe = isl_map_plain_is_universe(map1);
7585 if (is_universe < 0)
7586 goto error;
7587 if (is_universe) {
7588 isl_map_free(map2);
7589 return map1;
7592 is_universe = isl_map_plain_is_universe(map2);
7593 if (is_universe < 0)
7594 goto error;
7595 if (is_universe) {
7596 isl_map_free(map1);
7597 return map2;
7600 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
7601 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
7602 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7604 map = isl_map_alloc_space(isl_space_copy(map1->dim),
7605 map1->n + map2->n, flags);
7606 if (!map)
7607 goto error;
7608 for (i = 0; i < map1->n; ++i) {
7609 map = isl_map_add_basic_map(map,
7610 isl_basic_map_copy(map1->p[i]));
7611 if (!map)
7612 goto error;
7614 for (i = 0; i < map2->n; ++i) {
7615 map = isl_map_add_basic_map(map,
7616 isl_basic_map_copy(map2->p[i]));
7617 if (!map)
7618 goto error;
7620 isl_map_free(map1);
7621 isl_map_free(map2);
7622 return map;
7623 error:
7624 isl_map_free(map);
7625 isl_map_free(map1);
7626 isl_map_free(map2);
7627 return NULL;
7630 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7631 * guaranteed to be disjoint by the caller.
7633 * Note that this functions is called from within isl_map_make_disjoint,
7634 * so we have to be careful not to touch the constraints of the inputs
7635 * in any way.
7637 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
7638 __isl_take isl_map *map2)
7640 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
7643 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7644 * not be disjoint. The parameters are assumed to have been aligned.
7646 * We currently simply call map_union_disjoint, the internal operation
7647 * of which does not really depend on the inputs being disjoint.
7648 * If the result contains more than one basic map, then we clear
7649 * the disjoint flag since the result may contain basic maps from
7650 * both inputs and these are not guaranteed to be disjoint.
7652 * As a special case, if "map1" and "map2" are obviously equal,
7653 * then we simply return "map1".
7655 static __isl_give isl_map *map_union_aligned(__isl_take isl_map *map1,
7656 __isl_take isl_map *map2)
7658 int equal;
7660 if (!map1 || !map2)
7661 goto error;
7663 equal = isl_map_plain_is_equal(map1, map2);
7664 if (equal < 0)
7665 goto error;
7666 if (equal) {
7667 isl_map_free(map2);
7668 return map1;
7671 map1 = map_union_disjoint(map1, map2);
7672 if (!map1)
7673 return NULL;
7674 if (map1->n > 1)
7675 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
7676 return map1;
7677 error:
7678 isl_map_free(map1);
7679 isl_map_free(map2);
7680 return NULL;
7683 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7684 * not be disjoint.
7686 __isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
7687 __isl_take isl_map *map2)
7689 return isl_map_align_params_map_map_and(map1, map2, &map_union_aligned);
7692 struct isl_set *isl_set_union_disjoint(
7693 struct isl_set *set1, struct isl_set *set2)
7695 return set_from_map(isl_map_union_disjoint(set_to_map(set1),
7696 set_to_map(set2)));
7699 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
7701 return set_from_map(isl_map_union(set_to_map(set1), set_to_map(set2)));
7704 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7705 * the results.
7707 * "map" and "set" are assumed to be compatible and non-NULL.
7709 static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
7710 __isl_take isl_set *set,
7711 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
7712 __isl_take isl_basic_set *bset))
7714 unsigned flags = 0;
7715 struct isl_map *result;
7716 int i, j;
7718 if (isl_set_plain_is_universe(set)) {
7719 isl_set_free(set);
7720 return map;
7723 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
7724 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
7725 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7727 result = isl_map_alloc_space(isl_space_copy(map->dim),
7728 map->n * set->n, flags);
7729 for (i = 0; result && i < map->n; ++i)
7730 for (j = 0; j < set->n; ++j) {
7731 result = isl_map_add_basic_map(result,
7732 fn(isl_basic_map_copy(map->p[i]),
7733 isl_basic_set_copy(set->p[j])));
7734 if (!result)
7735 break;
7738 isl_map_free(map);
7739 isl_set_free(set);
7740 return result;
7743 static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
7744 __isl_take isl_set *set)
7746 isl_bool ok;
7748 ok = isl_map_compatible_range(map, set);
7749 if (ok < 0)
7750 goto error;
7751 if (!ok)
7752 isl_die(set->ctx, isl_error_invalid,
7753 "incompatible spaces", goto error);
7755 return map_intersect_set(map, set, &isl_basic_map_intersect_range);
7756 error:
7757 isl_map_free(map);
7758 isl_set_free(set);
7759 return NULL;
7762 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
7763 __isl_take isl_set *set)
7765 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
7768 static __isl_give isl_map *map_intersect_domain(__isl_take isl_map *map,
7769 __isl_take isl_set *set)
7771 isl_bool ok;
7773 ok = isl_map_compatible_domain(map, set);
7774 if (ok < 0)
7775 goto error;
7776 if (!ok)
7777 isl_die(set->ctx, isl_error_invalid,
7778 "incompatible spaces", goto error);
7780 return map_intersect_set(map, set, &isl_basic_map_intersect_domain);
7781 error:
7782 isl_map_free(map);
7783 isl_set_free(set);
7784 return NULL;
7787 __isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
7788 __isl_take isl_set *set)
7790 return isl_map_align_params_map_map_and(map, set,
7791 &map_intersect_domain);
7794 static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
7795 __isl_take isl_map *map2)
7797 if (!map1 || !map2)
7798 goto error;
7799 map1 = isl_map_reverse(map1);
7800 map1 = isl_map_apply_range(map1, map2);
7801 return isl_map_reverse(map1);
7802 error:
7803 isl_map_free(map1);
7804 isl_map_free(map2);
7805 return NULL;
7808 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
7809 __isl_take isl_map *map2)
7811 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
7814 static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
7815 __isl_take isl_map *map2)
7817 isl_space *dim_result;
7818 struct isl_map *result;
7819 int i, j;
7821 if (!map1 || !map2)
7822 goto error;
7824 dim_result = isl_space_join(isl_space_copy(map1->dim),
7825 isl_space_copy(map2->dim));
7827 result = isl_map_alloc_space(dim_result, map1->n * map2->n, 0);
7828 if (!result)
7829 goto error;
7830 for (i = 0; i < map1->n; ++i)
7831 for (j = 0; j < map2->n; ++j) {
7832 result = isl_map_add_basic_map(result,
7833 isl_basic_map_apply_range(
7834 isl_basic_map_copy(map1->p[i]),
7835 isl_basic_map_copy(map2->p[j])));
7836 if (!result)
7837 goto error;
7839 isl_map_free(map1);
7840 isl_map_free(map2);
7841 if (result && result->n <= 1)
7842 ISL_F_SET(result, ISL_MAP_DISJOINT);
7843 return result;
7844 error:
7845 isl_map_free(map1);
7846 isl_map_free(map2);
7847 return NULL;
7850 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
7851 __isl_take isl_map *map2)
7853 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
7857 * returns range - domain
7859 struct isl_basic_set *isl_basic_map_deltas(struct isl_basic_map *bmap)
7861 isl_space *target_space;
7862 struct isl_basic_set *bset;
7863 unsigned dim;
7864 unsigned nparam;
7865 int i;
7867 if (!bmap)
7868 goto error;
7869 isl_assert(bmap->ctx, isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
7870 bmap->dim, isl_dim_out),
7871 goto error);
7872 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
7873 dim = isl_basic_map_dim(bmap, isl_dim_in);
7874 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7875 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
7876 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
7877 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
7878 for (i = 0; i < dim; ++i) {
7879 int j = isl_basic_map_alloc_equality(bmap);
7880 if (j < 0) {
7881 bmap = isl_basic_map_free(bmap);
7882 break;
7884 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
7885 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
7886 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
7887 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
7889 bset = isl_basic_map_domain(bmap);
7890 bset = isl_basic_set_reset_space(bset, target_space);
7891 return bset;
7892 error:
7893 isl_basic_map_free(bmap);
7894 return NULL;
7898 * returns range - domain
7900 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
7902 int i;
7903 isl_space *dim;
7904 struct isl_set *result;
7906 if (!map)
7907 return NULL;
7909 isl_assert(map->ctx, isl_space_tuple_is_equal(map->dim, isl_dim_in,
7910 map->dim, isl_dim_out),
7911 goto error);
7912 dim = isl_map_get_space(map);
7913 dim = isl_space_domain(dim);
7914 result = isl_set_alloc_space(dim, map->n, 0);
7915 if (!result)
7916 goto error;
7917 for (i = 0; i < map->n; ++i)
7918 result = isl_set_add_basic_set(result,
7919 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
7920 isl_map_free(map);
7921 return result;
7922 error:
7923 isl_map_free(map);
7924 return NULL;
7928 * returns [domain -> range] -> range - domain
7930 __isl_give isl_basic_map *isl_basic_map_deltas_map(
7931 __isl_take isl_basic_map *bmap)
7933 int i, k;
7934 isl_space *dim;
7935 isl_basic_map *domain;
7936 int nparam, n;
7937 unsigned total;
7939 if (!isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
7940 bmap->dim, isl_dim_out))
7941 isl_die(bmap->ctx, isl_error_invalid,
7942 "domain and range don't match", goto error);
7944 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7945 n = isl_basic_map_dim(bmap, isl_dim_in);
7947 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
7948 domain = isl_basic_map_universe(dim);
7950 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
7951 bmap = isl_basic_map_apply_range(bmap, domain);
7952 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
7954 total = isl_basic_map_total_dim(bmap);
7956 for (i = 0; i < n; ++i) {
7957 k = isl_basic_map_alloc_equality(bmap);
7958 if (k < 0)
7959 goto error;
7960 isl_seq_clr(bmap->eq[k], 1 + total);
7961 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
7962 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
7963 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
7966 bmap = isl_basic_map_gauss(bmap, NULL);
7967 return isl_basic_map_finalize(bmap);
7968 error:
7969 isl_basic_map_free(bmap);
7970 return NULL;
7974 * returns [domain -> range] -> range - domain
7976 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
7978 int i;
7979 isl_space *domain_dim;
7981 if (!map)
7982 return NULL;
7984 if (!isl_space_tuple_is_equal(map->dim, isl_dim_in,
7985 map->dim, isl_dim_out))
7986 isl_die(map->ctx, isl_error_invalid,
7987 "domain and range don't match", goto error);
7989 map = isl_map_cow(map);
7990 if (!map)
7991 return NULL;
7993 domain_dim = isl_space_from_range(isl_space_domain(isl_map_get_space(map)));
7994 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
7995 map->dim = isl_space_join(map->dim, domain_dim);
7996 if (!map->dim)
7997 goto error;
7998 for (i = 0; i < map->n; ++i) {
7999 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
8000 if (!map->p[i])
8001 goto error;
8003 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
8004 return map;
8005 error:
8006 isl_map_free(map);
8007 return NULL;
8010 static __isl_give isl_basic_map *basic_map_identity(__isl_take isl_space *dims)
8012 struct isl_basic_map *bmap;
8013 unsigned nparam;
8014 unsigned dim;
8015 int i;
8017 if (!dims)
8018 return NULL;
8020 nparam = dims->nparam;
8021 dim = dims->n_out;
8022 bmap = isl_basic_map_alloc_space(dims, 0, dim, 0);
8023 if (!bmap)
8024 goto error;
8026 for (i = 0; i < dim; ++i) {
8027 int j = isl_basic_map_alloc_equality(bmap);
8028 if (j < 0)
8029 goto error;
8030 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8031 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8032 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
8034 return isl_basic_map_finalize(bmap);
8035 error:
8036 isl_basic_map_free(bmap);
8037 return NULL;
8040 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *dim)
8042 if (!dim)
8043 return NULL;
8044 if (dim->n_in != dim->n_out)
8045 isl_die(dim->ctx, isl_error_invalid,
8046 "number of input and output dimensions needs to be "
8047 "the same", goto error);
8048 return basic_map_identity(dim);
8049 error:
8050 isl_space_free(dim);
8051 return NULL;
8054 __isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
8056 return isl_map_from_basic_map(isl_basic_map_identity(dim));
8059 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
8061 isl_space *dim = isl_set_get_space(set);
8062 isl_map *id;
8063 id = isl_map_identity(isl_space_map_from_set(dim));
8064 return isl_map_intersect_range(id, set);
8067 /* Construct a basic set with all set dimensions having only non-negative
8068 * values.
8070 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
8071 __isl_take isl_space *space)
8073 int i;
8074 unsigned nparam;
8075 unsigned dim;
8076 struct isl_basic_set *bset;
8078 if (!space)
8079 return NULL;
8080 nparam = space->nparam;
8081 dim = space->n_out;
8082 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
8083 if (!bset)
8084 return NULL;
8085 for (i = 0; i < dim; ++i) {
8086 int k = isl_basic_set_alloc_inequality(bset);
8087 if (k < 0)
8088 goto error;
8089 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
8090 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
8092 return bset;
8093 error:
8094 isl_basic_set_free(bset);
8095 return NULL;
8098 /* Construct the half-space x_pos >= 0.
8100 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *dim,
8101 int pos)
8103 int k;
8104 isl_basic_set *nonneg;
8106 nonneg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8107 k = isl_basic_set_alloc_inequality(nonneg);
8108 if (k < 0)
8109 goto error;
8110 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
8111 isl_int_set_si(nonneg->ineq[k][pos], 1);
8113 return isl_basic_set_finalize(nonneg);
8114 error:
8115 isl_basic_set_free(nonneg);
8116 return NULL;
8119 /* Construct the half-space x_pos <= -1.
8121 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *dim, int pos)
8123 int k;
8124 isl_basic_set *neg;
8126 neg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8127 k = isl_basic_set_alloc_inequality(neg);
8128 if (k < 0)
8129 goto error;
8130 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
8131 isl_int_set_si(neg->ineq[k][0], -1);
8132 isl_int_set_si(neg->ineq[k][pos], -1);
8134 return isl_basic_set_finalize(neg);
8135 error:
8136 isl_basic_set_free(neg);
8137 return NULL;
8140 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
8141 enum isl_dim_type type, unsigned first, unsigned n)
8143 int i;
8144 unsigned offset;
8145 isl_basic_set *nonneg;
8146 isl_basic_set *neg;
8148 if (!set)
8149 return NULL;
8150 if (n == 0)
8151 return set;
8153 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
8155 offset = pos(set->dim, type);
8156 for (i = 0; i < n; ++i) {
8157 nonneg = nonneg_halfspace(isl_set_get_space(set),
8158 offset + first + i);
8159 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
8161 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
8164 return set;
8165 error:
8166 isl_set_free(set);
8167 return NULL;
8170 static isl_stat foreach_orthant(__isl_take isl_set *set, int *signs, int first,
8171 int len,
8172 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8173 void *user)
8175 isl_set *half;
8177 if (!set)
8178 return isl_stat_error;
8179 if (isl_set_plain_is_empty(set)) {
8180 isl_set_free(set);
8181 return isl_stat_ok;
8183 if (first == len)
8184 return fn(set, signs, user);
8186 signs[first] = 1;
8187 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
8188 1 + first));
8189 half = isl_set_intersect(half, isl_set_copy(set));
8190 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
8191 goto error;
8193 signs[first] = -1;
8194 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
8195 1 + first));
8196 half = isl_set_intersect(half, set);
8197 return foreach_orthant(half, signs, first + 1, len, fn, user);
8198 error:
8199 isl_set_free(set);
8200 return isl_stat_error;
8203 /* Call "fn" on the intersections of "set" with each of the orthants
8204 * (except for obviously empty intersections). The orthant is identified
8205 * by the signs array, with each entry having value 1 or -1 according
8206 * to the sign of the corresponding variable.
8208 isl_stat isl_set_foreach_orthant(__isl_keep isl_set *set,
8209 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8210 void *user)
8212 unsigned nparam;
8213 unsigned nvar;
8214 int *signs;
8215 isl_stat r;
8217 if (!set)
8218 return isl_stat_error;
8219 if (isl_set_plain_is_empty(set))
8220 return isl_stat_ok;
8222 nparam = isl_set_dim(set, isl_dim_param);
8223 nvar = isl_set_dim(set, isl_dim_set);
8225 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
8227 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
8228 fn, user);
8230 free(signs);
8232 return r;
8235 isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8237 return isl_map_is_equal(set_to_map(set1), set_to_map(set2));
8240 isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
8241 __isl_keep isl_basic_map *bmap2)
8243 int is_subset;
8244 struct isl_map *map1;
8245 struct isl_map *map2;
8247 if (!bmap1 || !bmap2)
8248 return isl_bool_error;
8250 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
8251 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
8253 is_subset = isl_map_is_subset(map1, map2);
8255 isl_map_free(map1);
8256 isl_map_free(map2);
8258 return is_subset;
8261 isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
8262 __isl_keep isl_basic_set *bset2)
8264 return isl_basic_map_is_subset(bset1, bset2);
8267 isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
8268 __isl_keep isl_basic_map *bmap2)
8270 isl_bool is_subset;
8272 if (!bmap1 || !bmap2)
8273 return isl_bool_error;
8274 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8275 if (is_subset != isl_bool_true)
8276 return is_subset;
8277 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8278 return is_subset;
8281 isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
8282 __isl_keep isl_basic_set *bset2)
8284 return isl_basic_map_is_equal(
8285 bset_to_bmap(bset1), bset_to_bmap(bset2));
8288 isl_bool isl_map_is_empty(__isl_keep isl_map *map)
8290 int i;
8291 int is_empty;
8293 if (!map)
8294 return isl_bool_error;
8295 for (i = 0; i < map->n; ++i) {
8296 is_empty = isl_basic_map_is_empty(map->p[i]);
8297 if (is_empty < 0)
8298 return isl_bool_error;
8299 if (!is_empty)
8300 return isl_bool_false;
8302 return isl_bool_true;
8305 isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
8307 return map ? map->n == 0 : isl_bool_error;
8310 isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
8312 return set ? set->n == 0 : isl_bool_error;
8315 isl_bool isl_set_is_empty(__isl_keep isl_set *set)
8317 return isl_map_is_empty(set_to_map(set));
8320 isl_bool isl_map_has_equal_space(__isl_keep isl_map *map1,
8321 __isl_keep isl_map *map2)
8323 if (!map1 || !map2)
8324 return isl_bool_error;
8326 return isl_space_is_equal(map1->dim, map2->dim);
8329 isl_bool isl_set_has_equal_space(__isl_keep isl_set *set1,
8330 __isl_keep isl_set *set2)
8332 if (!set1 || !set2)
8333 return isl_bool_error;
8335 return isl_space_is_equal(set1->dim, set2->dim);
8338 static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8340 isl_bool is_subset;
8342 if (!map1 || !map2)
8343 return isl_bool_error;
8344 is_subset = isl_map_is_subset(map1, map2);
8345 if (is_subset != isl_bool_true)
8346 return is_subset;
8347 is_subset = isl_map_is_subset(map2, map1);
8348 return is_subset;
8351 /* Is "map1" equal to "map2"?
8353 * First check if they are obviously equal.
8354 * If not, then perform a more detailed analysis.
8356 isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8358 isl_bool equal;
8360 equal = isl_map_plain_is_equal(map1, map2);
8361 if (equal < 0 || equal)
8362 return equal;
8363 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
8366 isl_bool isl_basic_map_is_strict_subset(
8367 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8369 isl_bool is_subset;
8371 if (!bmap1 || !bmap2)
8372 return isl_bool_error;
8373 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8374 if (is_subset != isl_bool_true)
8375 return is_subset;
8376 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8377 if (is_subset == isl_bool_error)
8378 return is_subset;
8379 return !is_subset;
8382 isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
8383 __isl_keep isl_map *map2)
8385 isl_bool is_subset;
8387 if (!map1 || !map2)
8388 return isl_bool_error;
8389 is_subset = isl_map_is_subset(map1, map2);
8390 if (is_subset != isl_bool_true)
8391 return is_subset;
8392 is_subset = isl_map_is_subset(map2, map1);
8393 if (is_subset == isl_bool_error)
8394 return is_subset;
8395 return !is_subset;
8398 isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
8399 __isl_keep isl_set *set2)
8401 return isl_map_is_strict_subset(set_to_map(set1), set_to_map(set2));
8404 /* Is "bmap" obviously equal to the universe with the same space?
8406 * That is, does it not have any constraints?
8408 isl_bool isl_basic_map_plain_is_universe(__isl_keep isl_basic_map *bmap)
8410 if (!bmap)
8411 return isl_bool_error;
8412 return bmap->n_eq == 0 && bmap->n_ineq == 0;
8415 /* Is "bset" obviously equal to the universe with the same space?
8417 isl_bool isl_basic_set_plain_is_universe(__isl_keep isl_basic_set *bset)
8419 return isl_basic_map_plain_is_universe(bset);
8422 /* If "c" does not involve any existentially quantified variables,
8423 * then set *univ to false and abort
8425 static isl_stat involves_divs(__isl_take isl_constraint *c, void *user)
8427 isl_bool *univ = user;
8428 unsigned n;
8430 n = isl_constraint_dim(c, isl_dim_div);
8431 *univ = isl_constraint_involves_dims(c, isl_dim_div, 0, n);
8432 isl_constraint_free(c);
8433 if (*univ < 0 || !*univ)
8434 return isl_stat_error;
8435 return isl_stat_ok;
8438 /* Is "bmap" equal to the universe with the same space?
8440 * First check if it is obviously equal to the universe.
8441 * If not and if there are any constraints not involving
8442 * existentially quantified variables, then it is certainly
8443 * not equal to the universe.
8444 * Otherwise, check if the universe is a subset of "bmap".
8446 isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
8448 isl_bool univ;
8449 isl_basic_map *test;
8451 univ = isl_basic_map_plain_is_universe(bmap);
8452 if (univ < 0 || univ)
8453 return univ;
8454 if (isl_basic_map_dim(bmap, isl_dim_div) == 0)
8455 return isl_bool_false;
8456 univ = isl_bool_true;
8457 if (isl_basic_map_foreach_constraint(bmap, &involves_divs, &univ) < 0 &&
8458 univ)
8459 return isl_bool_error;
8460 if (univ < 0 || !univ)
8461 return univ;
8462 test = isl_basic_map_universe(isl_basic_map_get_space(bmap));
8463 univ = isl_basic_map_is_subset(test, bmap);
8464 isl_basic_map_free(test);
8465 return univ;
8468 /* Is "bset" equal to the universe with the same space?
8470 isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
8472 return isl_basic_map_is_universe(bset);
8475 isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
8477 int i;
8479 if (!map)
8480 return isl_bool_error;
8482 for (i = 0; i < map->n; ++i) {
8483 isl_bool r = isl_basic_map_plain_is_universe(map->p[i]);
8484 if (r < 0 || r)
8485 return r;
8488 return isl_bool_false;
8491 isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
8493 return isl_map_plain_is_universe(set_to_map(set));
8496 isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
8498 struct isl_basic_set *bset = NULL;
8499 struct isl_vec *sample = NULL;
8500 isl_bool empty, non_empty;
8502 if (!bmap)
8503 return isl_bool_error;
8505 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
8506 return isl_bool_true;
8508 if (isl_basic_map_plain_is_universe(bmap))
8509 return isl_bool_false;
8511 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
8512 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
8513 copy = isl_basic_map_remove_redundancies(copy);
8514 empty = isl_basic_map_plain_is_empty(copy);
8515 isl_basic_map_free(copy);
8516 return empty;
8519 non_empty = isl_basic_map_plain_is_non_empty(bmap);
8520 if (non_empty < 0)
8521 return isl_bool_error;
8522 if (non_empty)
8523 return isl_bool_false;
8524 isl_vec_free(bmap->sample);
8525 bmap->sample = NULL;
8526 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
8527 if (!bset)
8528 return isl_bool_error;
8529 sample = isl_basic_set_sample_vec(bset);
8530 if (!sample)
8531 return isl_bool_error;
8532 empty = sample->size == 0;
8533 isl_vec_free(bmap->sample);
8534 bmap->sample = sample;
8535 if (empty)
8536 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
8538 return empty;
8541 isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
8543 if (!bmap)
8544 return isl_bool_error;
8545 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
8548 isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
8550 if (!bset)
8551 return isl_bool_error;
8552 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
8555 /* Is "bmap" known to be non-empty?
8557 * That is, is the cached sample still valid?
8559 isl_bool isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map *bmap)
8561 unsigned total;
8563 if (!bmap)
8564 return isl_bool_error;
8565 if (!bmap->sample)
8566 return isl_bool_false;
8567 total = 1 + isl_basic_map_total_dim(bmap);
8568 if (bmap->sample->size != total)
8569 return isl_bool_false;
8570 return isl_basic_map_contains(bmap, bmap->sample);
8573 isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
8575 return isl_basic_map_is_empty(bset_to_bmap(bset));
8578 struct isl_map *isl_basic_map_union(
8579 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8581 struct isl_map *map;
8582 if (!bmap1 || !bmap2)
8583 goto error;
8585 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
8587 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
8588 if (!map)
8589 goto error;
8590 map = isl_map_add_basic_map(map, bmap1);
8591 map = isl_map_add_basic_map(map, bmap2);
8592 return map;
8593 error:
8594 isl_basic_map_free(bmap1);
8595 isl_basic_map_free(bmap2);
8596 return NULL;
8599 struct isl_set *isl_basic_set_union(
8600 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
8602 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1),
8603 bset_to_bmap(bset2)));
8606 /* Order divs such that any div only depends on previous divs */
8607 struct isl_basic_map *isl_basic_map_order_divs(struct isl_basic_map *bmap)
8609 int i;
8610 unsigned off;
8612 if (!bmap)
8613 return NULL;
8615 off = isl_space_dim(bmap->dim, isl_dim_all);
8617 for (i = 0; i < bmap->n_div; ++i) {
8618 int pos;
8619 if (isl_int_is_zero(bmap->div[i][0]))
8620 continue;
8621 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
8622 bmap->n_div-i);
8623 if (pos == -1)
8624 continue;
8625 if (pos == 0)
8626 isl_die(isl_basic_map_get_ctx(bmap), isl_error_internal,
8627 "integer division depends on itself",
8628 return isl_basic_map_free(bmap));
8629 isl_basic_map_swap_div(bmap, i, i + pos);
8630 --i;
8632 return bmap;
8635 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
8637 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset)));
8640 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
8642 int i;
8644 if (!map)
8645 return 0;
8647 for (i = 0; i < map->n; ++i) {
8648 map->p[i] = isl_basic_map_order_divs(map->p[i]);
8649 if (!map->p[i])
8650 goto error;
8653 return map;
8654 error:
8655 isl_map_free(map);
8656 return NULL;
8659 /* Sort the local variables of "bset".
8661 __isl_give isl_basic_set *isl_basic_set_sort_divs(
8662 __isl_take isl_basic_set *bset)
8664 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset)));
8667 /* Apply the expansion computed by isl_merge_divs.
8668 * The expansion itself is given by "exp" while the resulting
8669 * list of divs is given by "div".
8671 * Move the integer divisions of "bmap" into the right position
8672 * according to "exp" and then introduce the additional integer
8673 * divisions, adding div constraints.
8674 * The moving should be done first to avoid moving coefficients
8675 * in the definitions of the extra integer divisions.
8677 __isl_give isl_basic_map *isl_basic_map_expand_divs(
8678 __isl_take isl_basic_map *bmap, __isl_take isl_mat *div, int *exp)
8680 int i, j;
8681 int n_div;
8683 bmap = isl_basic_map_cow(bmap);
8684 if (!bmap || !div)
8685 goto error;
8687 if (div->n_row < bmap->n_div)
8688 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
8689 "not an expansion", goto error);
8691 n_div = bmap->n_div;
8692 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
8693 div->n_row - n_div, 0,
8694 2 * (div->n_row - n_div));
8696 for (i = n_div; i < div->n_row; ++i)
8697 if (isl_basic_map_alloc_div(bmap) < 0)
8698 goto error;
8700 for (j = n_div - 1; j >= 0; --j) {
8701 if (exp[j] == j)
8702 break;
8703 isl_basic_map_swap_div(bmap, j, exp[j]);
8705 j = 0;
8706 for (i = 0; i < div->n_row; ++i) {
8707 if (j < n_div && exp[j] == i) {
8708 j++;
8709 } else {
8710 isl_seq_cpy(bmap->div[i], div->row[i], div->n_col);
8711 if (isl_basic_map_div_is_marked_unknown(bmap, i))
8712 continue;
8713 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
8714 goto error;
8718 isl_mat_free(div);
8719 return bmap;
8720 error:
8721 isl_basic_map_free(bmap);
8722 isl_mat_free(div);
8723 return NULL;
8726 /* Apply the expansion computed by isl_merge_divs.
8727 * The expansion itself is given by "exp" while the resulting
8728 * list of divs is given by "div".
8730 __isl_give isl_basic_set *isl_basic_set_expand_divs(
8731 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
8733 return isl_basic_map_expand_divs(bset, div, exp);
8736 /* Look for a div in dst that corresponds to the div "div" in src.
8737 * The divs before "div" in src and dst are assumed to be the same.
8739 * Returns -1 if no corresponding div was found and the position
8740 * of the corresponding div in dst otherwise.
8742 static int find_div(__isl_keep isl_basic_map *dst,
8743 __isl_keep isl_basic_map *src, unsigned div)
8745 int i;
8747 unsigned total = isl_space_dim(src->dim, isl_dim_all);
8749 isl_assert(dst->ctx, div <= dst->n_div, return -1);
8750 for (i = div; i < dst->n_div; ++i)
8751 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
8752 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
8753 dst->n_div - div) == -1)
8754 return i;
8755 return -1;
8758 /* Align the divs of "dst" to those of "src", adding divs from "src"
8759 * if needed. That is, make sure that the first src->n_div divs
8760 * of the result are equal to those of src.
8762 * The result is not finalized as by design it will have redundant
8763 * divs if any divs from "src" were copied.
8765 __isl_give isl_basic_map *isl_basic_map_align_divs(
8766 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
8768 int i;
8769 int known, extended;
8770 unsigned total;
8772 if (!dst || !src)
8773 return isl_basic_map_free(dst);
8775 if (src->n_div == 0)
8776 return dst;
8778 known = isl_basic_map_divs_known(src);
8779 if (known < 0)
8780 return isl_basic_map_free(dst);
8781 if (!known)
8782 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
8783 "some src divs are unknown",
8784 return isl_basic_map_free(dst));
8786 src = isl_basic_map_order_divs(src);
8788 extended = 0;
8789 total = isl_space_dim(src->dim, isl_dim_all);
8790 for (i = 0; i < src->n_div; ++i) {
8791 int j = find_div(dst, src, i);
8792 if (j < 0) {
8793 if (!extended) {
8794 int extra = src->n_div - i;
8795 dst = isl_basic_map_cow(dst);
8796 if (!dst)
8797 return NULL;
8798 dst = isl_basic_map_extend_space(dst,
8799 isl_space_copy(dst->dim),
8800 extra, 0, 2 * extra);
8801 extended = 1;
8803 j = isl_basic_map_alloc_div(dst);
8804 if (j < 0)
8805 return isl_basic_map_free(dst);
8806 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
8807 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
8808 if (isl_basic_map_add_div_constraints(dst, j) < 0)
8809 return isl_basic_map_free(dst);
8811 if (j != i)
8812 isl_basic_map_swap_div(dst, i, j);
8814 return dst;
8817 __isl_give isl_map *isl_map_align_divs_internal(__isl_take isl_map *map)
8819 int i;
8821 if (!map)
8822 return NULL;
8823 if (map->n == 0)
8824 return map;
8825 map = isl_map_compute_divs(map);
8826 map = isl_map_cow(map);
8827 if (!map)
8828 return NULL;
8830 for (i = 1; i < map->n; ++i)
8831 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
8832 for (i = 1; i < map->n; ++i) {
8833 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
8834 if (!map->p[i])
8835 return isl_map_free(map);
8838 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
8839 return map;
8842 __isl_give isl_map *isl_map_align_divs(__isl_take isl_map *map)
8844 return isl_map_align_divs_internal(map);
8847 struct isl_set *isl_set_align_divs(struct isl_set *set)
8849 return set_from_map(isl_map_align_divs_internal(set_to_map(set)));
8852 /* Align the divs of the basic maps in "map" to those
8853 * of the basic maps in "list", as well as to the other basic maps in "map".
8854 * The elements in "list" are assumed to have known divs.
8856 __isl_give isl_map *isl_map_align_divs_to_basic_map_list(
8857 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
8859 int i, n;
8861 map = isl_map_compute_divs(map);
8862 map = isl_map_cow(map);
8863 if (!map || !list)
8864 return isl_map_free(map);
8865 if (map->n == 0)
8866 return map;
8868 n = isl_basic_map_list_n_basic_map(list);
8869 for (i = 0; i < n; ++i) {
8870 isl_basic_map *bmap;
8872 bmap = isl_basic_map_list_get_basic_map(list, i);
8873 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
8874 isl_basic_map_free(bmap);
8876 if (!map->p[0])
8877 return isl_map_free(map);
8879 return isl_map_align_divs_internal(map);
8882 /* Align the divs of each element of "list" to those of "bmap".
8883 * Both "bmap" and the elements of "list" are assumed to have known divs.
8885 __isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
8886 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
8888 int i, n;
8890 if (!list || !bmap)
8891 return isl_basic_map_list_free(list);
8893 n = isl_basic_map_list_n_basic_map(list);
8894 for (i = 0; i < n; ++i) {
8895 isl_basic_map *bmap_i;
8897 bmap_i = isl_basic_map_list_get_basic_map(list, i);
8898 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
8899 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
8902 return list;
8905 static __isl_give isl_set *set_apply( __isl_take isl_set *set,
8906 __isl_take isl_map *map)
8908 isl_bool ok;
8910 ok = isl_map_compatible_domain(map, set);
8911 if (ok < 0)
8912 goto error;
8913 if (!ok)
8914 isl_die(isl_set_get_ctx(set), isl_error_invalid,
8915 "incompatible spaces", goto error);
8916 map = isl_map_intersect_domain(map, set);
8917 set = isl_map_range(map);
8918 return set;
8919 error:
8920 isl_set_free(set);
8921 isl_map_free(map);
8922 return NULL;
8925 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
8926 __isl_take isl_map *map)
8928 return isl_map_align_params_map_map_and(set, map, &set_apply);
8931 /* There is no need to cow as removing empty parts doesn't change
8932 * the meaning of the set.
8934 struct isl_map *isl_map_remove_empty_parts(struct isl_map *map)
8936 int i;
8938 if (!map)
8939 return NULL;
8941 for (i = map->n - 1; i >= 0; --i)
8942 remove_if_empty(map, i);
8944 return map;
8947 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
8949 return set_from_map(isl_map_remove_empty_parts(set_to_map(set)));
8952 /* Given two basic sets bset1 and bset2, compute the maximal difference
8953 * between the values of dimension pos in bset1 and those in bset2
8954 * for any common value of the parameters and dimensions preceding pos.
8956 static enum isl_lp_result basic_set_maximal_difference_at(
8957 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
8958 int pos, isl_int *opt)
8960 isl_basic_map *bmap1;
8961 isl_basic_map *bmap2;
8962 struct isl_ctx *ctx;
8963 struct isl_vec *obj;
8964 unsigned total;
8965 unsigned nparam;
8966 unsigned dim1;
8967 enum isl_lp_result res;
8969 if (!bset1 || !bset2)
8970 return isl_lp_error;
8972 nparam = isl_basic_set_n_param(bset1);
8973 dim1 = isl_basic_set_n_dim(bset1);
8975 bmap1 = isl_basic_map_from_range(isl_basic_set_copy(bset1));
8976 bmap2 = isl_basic_map_from_range(isl_basic_set_copy(bset2));
8977 bmap1 = isl_basic_map_move_dims(bmap1, isl_dim_in, 0,
8978 isl_dim_out, 0, pos);
8979 bmap2 = isl_basic_map_move_dims(bmap2, isl_dim_in, 0,
8980 isl_dim_out, 0, pos);
8981 bmap1 = isl_basic_map_range_product(bmap1, bmap2);
8982 if (!bmap1)
8983 return isl_lp_error;
8985 total = isl_basic_map_total_dim(bmap1);
8986 ctx = bmap1->ctx;
8987 obj = isl_vec_alloc(ctx, 1 + total);
8988 if (!obj)
8989 goto error;
8990 isl_seq_clr(obj->block.data, 1 + total);
8991 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
8992 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
8993 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
8994 opt, NULL, NULL);
8995 isl_basic_map_free(bmap1);
8996 isl_vec_free(obj);
8997 return res;
8998 error:
8999 isl_basic_map_free(bmap1);
9000 return isl_lp_error;
9003 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
9004 * for any common value of the parameters and dimensions preceding pos
9005 * in both basic sets, the values of dimension pos in bset1 are
9006 * smaller or larger than those in bset2.
9008 * Returns
9009 * 1 if bset1 follows bset2
9010 * -1 if bset1 precedes bset2
9011 * 0 if bset1 and bset2 are incomparable
9012 * -2 if some error occurred.
9014 int isl_basic_set_compare_at(struct isl_basic_set *bset1,
9015 struct isl_basic_set *bset2, int pos)
9017 isl_int opt;
9018 enum isl_lp_result res;
9019 int cmp;
9021 isl_int_init(opt);
9023 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
9025 if (res == isl_lp_empty)
9026 cmp = 0;
9027 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
9028 res == isl_lp_unbounded)
9029 cmp = 1;
9030 else if (res == isl_lp_ok && isl_int_is_neg(opt))
9031 cmp = -1;
9032 else
9033 cmp = -2;
9035 isl_int_clear(opt);
9036 return cmp;
9039 /* Given two basic sets bset1 and bset2, check whether
9040 * for any common value of the parameters and dimensions preceding pos
9041 * there is a value of dimension pos in bset1 that is larger
9042 * than a value of the same dimension in bset2.
9044 * Return
9045 * 1 if there exists such a pair
9046 * 0 if there is no such pair, but there is a pair of equal values
9047 * -1 otherwise
9048 * -2 if some error occurred.
9050 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
9051 __isl_keep isl_basic_set *bset2, int pos)
9053 isl_int opt;
9054 enum isl_lp_result res;
9055 int cmp;
9057 isl_int_init(opt);
9059 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
9061 if (res == isl_lp_empty)
9062 cmp = -1;
9063 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
9064 res == isl_lp_unbounded)
9065 cmp = 1;
9066 else if (res == isl_lp_ok && isl_int_is_neg(opt))
9067 cmp = -1;
9068 else if (res == isl_lp_ok)
9069 cmp = 0;
9070 else
9071 cmp = -2;
9073 isl_int_clear(opt);
9074 return cmp;
9077 /* Given two sets set1 and set2, check whether
9078 * for any common value of the parameters and dimensions preceding pos
9079 * there is a value of dimension pos in set1 that is larger
9080 * than a value of the same dimension in set2.
9082 * Return
9083 * 1 if there exists such a pair
9084 * 0 if there is no such pair, but there is a pair of equal values
9085 * -1 otherwise
9086 * -2 if some error occurred.
9088 int isl_set_follows_at(__isl_keep isl_set *set1,
9089 __isl_keep isl_set *set2, int pos)
9091 int i, j;
9092 int follows = -1;
9094 if (!set1 || !set2)
9095 return -2;
9097 for (i = 0; i < set1->n; ++i)
9098 for (j = 0; j < set2->n; ++j) {
9099 int f;
9100 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
9101 if (f == 1 || f == -2)
9102 return f;
9103 if (f > follows)
9104 follows = f;
9107 return follows;
9110 static isl_bool isl_basic_map_plain_has_fixed_var(
9111 __isl_keep isl_basic_map *bmap, unsigned pos, isl_int *val)
9113 int i;
9114 int d;
9115 unsigned total;
9117 if (!bmap)
9118 return isl_bool_error;
9119 total = isl_basic_map_total_dim(bmap);
9120 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
9121 for (; d+1 > pos; --d)
9122 if (!isl_int_is_zero(bmap->eq[i][1+d]))
9123 break;
9124 if (d != pos)
9125 continue;
9126 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
9127 return isl_bool_false;
9128 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
9129 return isl_bool_false;
9130 if (!isl_int_is_one(bmap->eq[i][1+d]))
9131 return isl_bool_false;
9132 if (val)
9133 isl_int_neg(*val, bmap->eq[i][0]);
9134 return isl_bool_true;
9136 return isl_bool_false;
9139 static isl_bool isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
9140 unsigned pos, isl_int *val)
9142 int i;
9143 isl_int v;
9144 isl_int tmp;
9145 isl_bool fixed;
9147 if (!map)
9148 return isl_bool_error;
9149 if (map->n == 0)
9150 return isl_bool_false;
9151 if (map->n == 1)
9152 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
9153 isl_int_init(v);
9154 isl_int_init(tmp);
9155 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
9156 for (i = 1; fixed == isl_bool_true && i < map->n; ++i) {
9157 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
9158 if (fixed == isl_bool_true && isl_int_ne(tmp, v))
9159 fixed = isl_bool_false;
9161 if (val)
9162 isl_int_set(*val, v);
9163 isl_int_clear(tmp);
9164 isl_int_clear(v);
9165 return fixed;
9168 static isl_bool isl_basic_set_plain_has_fixed_var(
9169 __isl_keep isl_basic_set *bset, unsigned pos, isl_int *val)
9171 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset),
9172 pos, val);
9175 isl_bool isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
9176 enum isl_dim_type type, unsigned pos, isl_int *val)
9178 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
9179 return isl_bool_error;
9180 return isl_basic_map_plain_has_fixed_var(bmap,
9181 isl_basic_map_offset(bmap, type) - 1 + pos, val);
9184 /* If "bmap" obviously lies on a hyperplane where the given dimension
9185 * has a fixed value, then return that value.
9186 * Otherwise return NaN.
9188 __isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
9189 __isl_keep isl_basic_map *bmap,
9190 enum isl_dim_type type, unsigned pos)
9192 isl_ctx *ctx;
9193 isl_val *v;
9194 isl_bool fixed;
9196 if (!bmap)
9197 return NULL;
9198 ctx = isl_basic_map_get_ctx(bmap);
9199 v = isl_val_alloc(ctx);
9200 if (!v)
9201 return NULL;
9202 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
9203 if (fixed < 0)
9204 return isl_val_free(v);
9205 if (fixed) {
9206 isl_int_set_si(v->d, 1);
9207 return v;
9209 isl_val_free(v);
9210 return isl_val_nan(ctx);
9213 isl_bool isl_map_plain_is_fixed(__isl_keep isl_map *map,
9214 enum isl_dim_type type, unsigned pos, isl_int *val)
9216 if (pos >= isl_map_dim(map, type))
9217 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9218 "position out of bounds", return isl_bool_error);
9219 return isl_map_plain_has_fixed_var(map,
9220 map_offset(map, type) - 1 + pos, val);
9223 /* If "map" obviously lies on a hyperplane where the given dimension
9224 * has a fixed value, then return that value.
9225 * Otherwise return NaN.
9227 __isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
9228 enum isl_dim_type type, unsigned pos)
9230 isl_ctx *ctx;
9231 isl_val *v;
9232 isl_bool fixed;
9234 if (!map)
9235 return NULL;
9236 ctx = isl_map_get_ctx(map);
9237 v = isl_val_alloc(ctx);
9238 if (!v)
9239 return NULL;
9240 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
9241 if (fixed < 0)
9242 return isl_val_free(v);
9243 if (fixed) {
9244 isl_int_set_si(v->d, 1);
9245 return v;
9247 isl_val_free(v);
9248 return isl_val_nan(ctx);
9251 /* If "set" obviously lies on a hyperplane where the given dimension
9252 * has a fixed value, then return that value.
9253 * Otherwise return NaN.
9255 __isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
9256 enum isl_dim_type type, unsigned pos)
9258 return isl_map_plain_get_val_if_fixed(set, type, pos);
9261 isl_bool isl_set_plain_is_fixed(__isl_keep isl_set *set,
9262 enum isl_dim_type type, unsigned pos, isl_int *val)
9264 return isl_map_plain_is_fixed(set, type, pos, val);
9267 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9268 * then return this fixed value in *val.
9270 isl_bool isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
9271 unsigned dim, isl_int *val)
9273 return isl_basic_set_plain_has_fixed_var(bset,
9274 isl_basic_set_n_param(bset) + dim, val);
9277 /* Return -1 if the constraint "c1" should be sorted before "c2"
9278 * and 1 if it should be sorted after "c2".
9279 * Return 0 if the two constraints are the same (up to the constant term).
9281 * In particular, if a constraint involves later variables than another
9282 * then it is sorted after this other constraint.
9283 * uset_gist depends on constraints without existentially quantified
9284 * variables sorting first.
9286 * For constraints that have the same latest variable, those
9287 * with the same coefficient for this latest variable (first in absolute value
9288 * and then in actual value) are grouped together.
9289 * This is useful for detecting pairs of constraints that can
9290 * be chained in their printed representation.
9292 * Finally, within a group, constraints are sorted according to
9293 * their coefficients (excluding the constant term).
9295 static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
9297 isl_int **c1 = (isl_int **) p1;
9298 isl_int **c2 = (isl_int **) p2;
9299 int l1, l2;
9300 unsigned size = *(unsigned *) arg;
9301 int cmp;
9303 l1 = isl_seq_last_non_zero(*c1 + 1, size);
9304 l2 = isl_seq_last_non_zero(*c2 + 1, size);
9306 if (l1 != l2)
9307 return l1 - l2;
9309 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9310 if (cmp != 0)
9311 return cmp;
9312 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9313 if (cmp != 0)
9314 return -cmp;
9316 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
9319 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9320 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9321 * and 0 if the two constraints are the same (up to the constant term).
9323 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
9324 isl_int *c1, isl_int *c2)
9326 unsigned total;
9328 if (!bmap)
9329 return -2;
9330 total = isl_basic_map_total_dim(bmap);
9331 return sort_constraint_cmp(&c1, &c2, &total);
9334 __isl_give isl_basic_map *isl_basic_map_sort_constraints(
9335 __isl_take isl_basic_map *bmap)
9337 unsigned total;
9339 if (!bmap)
9340 return NULL;
9341 if (bmap->n_ineq == 0)
9342 return bmap;
9343 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9344 return bmap;
9345 total = isl_basic_map_total_dim(bmap);
9346 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
9347 &sort_constraint_cmp, &total) < 0)
9348 return isl_basic_map_free(bmap);
9349 return bmap;
9352 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
9353 __isl_take isl_basic_set *bset)
9355 isl_basic_map *bmap = bset_to_bmap(bset);
9356 return bset_from_bmap(isl_basic_map_sort_constraints(bmap));
9359 struct isl_basic_map *isl_basic_map_normalize(struct isl_basic_map *bmap)
9361 if (!bmap)
9362 return NULL;
9363 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9364 return bmap;
9365 bmap = isl_basic_map_remove_redundancies(bmap);
9366 bmap = isl_basic_map_sort_constraints(bmap);
9367 if (bmap)
9368 ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED);
9369 return bmap;
9371 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map *bmap1,
9372 __isl_keep isl_basic_map *bmap2)
9374 int i, cmp;
9375 unsigned total;
9376 isl_space *space1, *space2;
9378 if (!bmap1 || !bmap2)
9379 return -1;
9381 if (bmap1 == bmap2)
9382 return 0;
9383 space1 = isl_basic_map_peek_space(bmap1);
9384 space2 = isl_basic_map_peek_space(bmap2);
9385 cmp = isl_space_cmp(space1, space2);
9386 if (cmp)
9387 return cmp;
9388 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
9389 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
9390 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
9391 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
9392 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9393 return 0;
9394 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
9395 return 1;
9396 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9397 return -1;
9398 if (bmap1->n_eq != bmap2->n_eq)
9399 return bmap1->n_eq - bmap2->n_eq;
9400 if (bmap1->n_ineq != bmap2->n_ineq)
9401 return bmap1->n_ineq - bmap2->n_ineq;
9402 if (bmap1->n_div != bmap2->n_div)
9403 return bmap1->n_div - bmap2->n_div;
9404 total = isl_basic_map_total_dim(bmap1);
9405 for (i = 0; i < bmap1->n_eq; ++i) {
9406 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
9407 if (cmp)
9408 return cmp;
9410 for (i = 0; i < bmap1->n_ineq; ++i) {
9411 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
9412 if (cmp)
9413 return cmp;
9415 for (i = 0; i < bmap1->n_div; ++i) {
9416 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
9417 if (cmp)
9418 return cmp;
9420 return 0;
9423 int isl_basic_set_plain_cmp(__isl_keep isl_basic_set *bset1,
9424 __isl_keep isl_basic_set *bset2)
9426 return isl_basic_map_plain_cmp(bset1, bset2);
9429 int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
9431 int i, cmp;
9433 if (set1 == set2)
9434 return 0;
9435 if (set1->n != set2->n)
9436 return set1->n - set2->n;
9438 for (i = 0; i < set1->n; ++i) {
9439 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
9440 if (cmp)
9441 return cmp;
9444 return 0;
9447 isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
9448 __isl_keep isl_basic_map *bmap2)
9450 if (!bmap1 || !bmap2)
9451 return isl_bool_error;
9452 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
9455 isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
9456 __isl_keep isl_basic_set *bset2)
9458 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1),
9459 bset_to_bmap(bset2));
9462 static int qsort_bmap_cmp(const void *p1, const void *p2)
9464 isl_basic_map *bmap1 = *(isl_basic_map **) p1;
9465 isl_basic_map *bmap2 = *(isl_basic_map **) p2;
9467 return isl_basic_map_plain_cmp(bmap1, bmap2);
9470 /* Sort the basic maps of "map" and remove duplicate basic maps.
9472 * While removing basic maps, we make sure that the basic maps remain
9473 * sorted because isl_map_normalize expects the basic maps of the result
9474 * to be sorted.
9476 static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
9478 int i, j;
9480 map = isl_map_remove_empty_parts(map);
9481 if (!map)
9482 return NULL;
9483 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
9484 for (i = map->n - 1; i >= 1; --i) {
9485 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
9486 continue;
9487 isl_basic_map_free(map->p[i-1]);
9488 for (j = i; j < map->n; ++j)
9489 map->p[j - 1] = map->p[j];
9490 map->n--;
9493 return map;
9496 /* Remove obvious duplicates among the basic maps of "map".
9498 * Unlike isl_map_normalize, this function does not remove redundant
9499 * constraints and only removes duplicates that have exactly the same
9500 * constraints in the input. It does sort the constraints and
9501 * the basic maps to ease the detection of duplicates.
9503 * If "map" has already been normalized or if the basic maps are
9504 * disjoint, then there can be no duplicates.
9506 __isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
9508 int i;
9509 isl_basic_map *bmap;
9511 if (!map)
9512 return NULL;
9513 if (map->n <= 1)
9514 return map;
9515 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
9516 return map;
9517 for (i = 0; i < map->n; ++i) {
9518 bmap = isl_basic_map_copy(map->p[i]);
9519 bmap = isl_basic_map_sort_constraints(bmap);
9520 if (!bmap)
9521 return isl_map_free(map);
9522 isl_basic_map_free(map->p[i]);
9523 map->p[i] = bmap;
9526 map = sort_and_remove_duplicates(map);
9527 return map;
9530 /* We normalize in place, but if anything goes wrong we need
9531 * to return NULL, so we need to make sure we don't change the
9532 * meaning of any possible other copies of map.
9534 __isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
9536 int i;
9537 struct isl_basic_map *bmap;
9539 if (!map)
9540 return NULL;
9541 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
9542 return map;
9543 for (i = 0; i < map->n; ++i) {
9544 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
9545 if (!bmap)
9546 goto error;
9547 isl_basic_map_free(map->p[i]);
9548 map->p[i] = bmap;
9551 map = sort_and_remove_duplicates(map);
9552 if (map)
9553 ISL_F_SET(map, ISL_MAP_NORMALIZED);
9554 return map;
9555 error:
9556 isl_map_free(map);
9557 return NULL;
9560 struct isl_set *isl_set_normalize(struct isl_set *set)
9562 return set_from_map(isl_map_normalize(set_to_map(set)));
9565 isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
9566 __isl_keep isl_map *map2)
9568 int i;
9569 isl_bool equal;
9571 if (!map1 || !map2)
9572 return isl_bool_error;
9574 if (map1 == map2)
9575 return isl_bool_true;
9576 if (!isl_space_is_equal(map1->dim, map2->dim))
9577 return isl_bool_false;
9579 map1 = isl_map_copy(map1);
9580 map2 = isl_map_copy(map2);
9581 map1 = isl_map_normalize(map1);
9582 map2 = isl_map_normalize(map2);
9583 if (!map1 || !map2)
9584 goto error;
9585 equal = map1->n == map2->n;
9586 for (i = 0; equal && i < map1->n; ++i) {
9587 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
9588 if (equal < 0)
9589 goto error;
9591 isl_map_free(map1);
9592 isl_map_free(map2);
9593 return equal;
9594 error:
9595 isl_map_free(map1);
9596 isl_map_free(map2);
9597 return isl_bool_error;
9600 isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
9601 __isl_keep isl_set *set2)
9603 return isl_map_plain_is_equal(set_to_map(set1), set_to_map(set2));
9606 /* Return the basic maps in "map" as a list.
9608 __isl_give isl_basic_map_list *isl_map_get_basic_map_list(
9609 __isl_keep isl_map *map)
9611 int i;
9612 isl_ctx *ctx;
9613 isl_basic_map_list *list;
9615 if (!map)
9616 return NULL;
9617 ctx = isl_map_get_ctx(map);
9618 list = isl_basic_map_list_alloc(ctx, map->n);
9620 for (i = 0; i < map->n; ++i) {
9621 isl_basic_map *bmap;
9623 bmap = isl_basic_map_copy(map->p[i]);
9624 list = isl_basic_map_list_add(list, bmap);
9627 return list;
9630 /* Return the intersection of the elements in the non-empty list "list".
9631 * All elements are assumed to live in the same space.
9633 __isl_give isl_basic_map *isl_basic_map_list_intersect(
9634 __isl_take isl_basic_map_list *list)
9636 int i, n;
9637 isl_basic_map *bmap;
9639 if (!list)
9640 return NULL;
9641 n = isl_basic_map_list_n_basic_map(list);
9642 if (n < 1)
9643 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
9644 "expecting non-empty list", goto error);
9646 bmap = isl_basic_map_list_get_basic_map(list, 0);
9647 for (i = 1; i < n; ++i) {
9648 isl_basic_map *bmap_i;
9650 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9651 bmap = isl_basic_map_intersect(bmap, bmap_i);
9654 isl_basic_map_list_free(list);
9655 return bmap;
9656 error:
9657 isl_basic_map_list_free(list);
9658 return NULL;
9661 /* Return the intersection of the elements in the non-empty list "list".
9662 * All elements are assumed to live in the same space.
9664 __isl_give isl_basic_set *isl_basic_set_list_intersect(
9665 __isl_take isl_basic_set_list *list)
9667 return isl_basic_map_list_intersect(list);
9670 /* Return the union of the elements of "list".
9671 * The list is required to have at least one element.
9673 __isl_give isl_set *isl_basic_set_list_union(
9674 __isl_take isl_basic_set_list *list)
9676 int i, n;
9677 isl_space *space;
9678 isl_basic_set *bset;
9679 isl_set *set;
9681 if (!list)
9682 return NULL;
9683 n = isl_basic_set_list_n_basic_set(list);
9684 if (n < 1)
9685 isl_die(isl_basic_set_list_get_ctx(list), isl_error_invalid,
9686 "expecting non-empty list", goto error);
9688 bset = isl_basic_set_list_get_basic_set(list, 0);
9689 space = isl_basic_set_get_space(bset);
9690 isl_basic_set_free(bset);
9692 set = isl_set_alloc_space(space, n, 0);
9693 for (i = 0; i < n; ++i) {
9694 bset = isl_basic_set_list_get_basic_set(list, i);
9695 set = isl_set_add_basic_set(set, bset);
9698 isl_basic_set_list_free(list);
9699 return set;
9700 error:
9701 isl_basic_set_list_free(list);
9702 return NULL;
9705 /* Return the union of the elements in the non-empty list "list".
9706 * All elements are assumed to live in the same space.
9708 __isl_give isl_set *isl_set_list_union(__isl_take isl_set_list *list)
9710 int i, n;
9711 isl_set *set;
9713 if (!list)
9714 return NULL;
9715 n = isl_set_list_n_set(list);
9716 if (n < 1)
9717 isl_die(isl_set_list_get_ctx(list), isl_error_invalid,
9718 "expecting non-empty list", goto error);
9720 set = isl_set_list_get_set(list, 0);
9721 for (i = 1; i < n; ++i) {
9722 isl_set *set_i;
9724 set_i = isl_set_list_get_set(list, i);
9725 set = isl_set_union(set, set_i);
9728 isl_set_list_free(list);
9729 return set;
9730 error:
9731 isl_set_list_free(list);
9732 return NULL;
9735 struct isl_basic_map *isl_basic_map_product(
9736 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
9738 isl_space *dim_result = NULL;
9739 struct isl_basic_map *bmap;
9740 unsigned in1, in2, out1, out2, nparam, total, pos;
9741 struct isl_dim_map *dim_map1, *dim_map2;
9743 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
9744 goto error;
9745 dim_result = isl_space_product(isl_space_copy(bmap1->dim),
9746 isl_space_copy(bmap2->dim));
9748 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9749 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9750 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9751 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9752 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9754 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
9755 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9756 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9757 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9758 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9759 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9760 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9761 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9762 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9763 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9764 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9766 bmap = isl_basic_map_alloc_space(dim_result,
9767 bmap1->n_div + bmap2->n_div,
9768 bmap1->n_eq + bmap2->n_eq,
9769 bmap1->n_ineq + bmap2->n_ineq);
9770 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9771 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9772 bmap = isl_basic_map_simplify(bmap);
9773 return isl_basic_map_finalize(bmap);
9774 error:
9775 isl_basic_map_free(bmap1);
9776 isl_basic_map_free(bmap2);
9777 return NULL;
9780 __isl_give isl_basic_map *isl_basic_map_flat_product(
9781 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9783 isl_basic_map *prod;
9785 prod = isl_basic_map_product(bmap1, bmap2);
9786 prod = isl_basic_map_flatten(prod);
9787 return prod;
9790 __isl_give isl_basic_set *isl_basic_set_flat_product(
9791 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
9793 return isl_basic_map_flat_range_product(bset1, bset2);
9796 __isl_give isl_basic_map *isl_basic_map_domain_product(
9797 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9799 isl_space *space_result = NULL;
9800 isl_basic_map *bmap;
9801 unsigned in1, in2, out, nparam, total, pos;
9802 struct isl_dim_map *dim_map1, *dim_map2;
9804 if (!bmap1 || !bmap2)
9805 goto error;
9807 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
9808 isl_space_copy(bmap2->dim));
9810 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9811 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9812 out = isl_basic_map_dim(bmap1, isl_dim_out);
9813 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9815 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
9816 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9817 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9818 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9819 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9820 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9821 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9822 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9823 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
9824 isl_dim_map_div(dim_map1, bmap1, pos += out);
9825 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9827 bmap = isl_basic_map_alloc_space(space_result,
9828 bmap1->n_div + bmap2->n_div,
9829 bmap1->n_eq + bmap2->n_eq,
9830 bmap1->n_ineq + bmap2->n_ineq);
9831 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9832 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9833 bmap = isl_basic_map_simplify(bmap);
9834 return isl_basic_map_finalize(bmap);
9835 error:
9836 isl_basic_map_free(bmap1);
9837 isl_basic_map_free(bmap2);
9838 return NULL;
9841 __isl_give isl_basic_map *isl_basic_map_range_product(
9842 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9844 isl_bool rational;
9845 isl_space *dim_result = NULL;
9846 isl_basic_map *bmap;
9847 unsigned in, out1, out2, nparam, total, pos;
9848 struct isl_dim_map *dim_map1, *dim_map2;
9850 rational = isl_basic_map_is_rational(bmap1);
9851 if (rational >= 0 && rational)
9852 rational = isl_basic_map_is_rational(bmap2);
9853 if (!bmap1 || !bmap2 || rational < 0)
9854 goto error;
9856 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
9857 goto error;
9859 dim_result = isl_space_range_product(isl_space_copy(bmap1->dim),
9860 isl_space_copy(bmap2->dim));
9862 in = isl_basic_map_dim(bmap1, isl_dim_in);
9863 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9864 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9865 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9867 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
9868 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9869 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9870 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9871 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9872 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9873 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
9874 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
9875 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9876 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9877 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9879 bmap = isl_basic_map_alloc_space(dim_result,
9880 bmap1->n_div + bmap2->n_div,
9881 bmap1->n_eq + bmap2->n_eq,
9882 bmap1->n_ineq + bmap2->n_ineq);
9883 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9884 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9885 if (rational)
9886 bmap = isl_basic_map_set_rational(bmap);
9887 bmap = isl_basic_map_simplify(bmap);
9888 return isl_basic_map_finalize(bmap);
9889 error:
9890 isl_basic_map_free(bmap1);
9891 isl_basic_map_free(bmap2);
9892 return NULL;
9895 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
9896 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9898 isl_basic_map *prod;
9900 prod = isl_basic_map_range_product(bmap1, bmap2);
9901 prod = isl_basic_map_flatten_range(prod);
9902 return prod;
9905 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
9906 * and collect the results.
9907 * The result live in the space obtained by calling "space_product"
9908 * on the spaces of "map1" and "map2".
9909 * If "remove_duplicates" is set then the result may contain duplicates
9910 * (even if the inputs do not) and so we try and remove the obvious
9911 * duplicates.
9913 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
9914 __isl_take isl_map *map2,
9915 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
9916 __isl_take isl_space *right),
9917 __isl_give isl_basic_map *(*basic_map_product)(
9918 __isl_take isl_basic_map *left,
9919 __isl_take isl_basic_map *right),
9920 int remove_duplicates)
9922 unsigned flags = 0;
9923 struct isl_map *result;
9924 int i, j;
9925 isl_bool m;
9927 m = isl_map_has_equal_params(map1, map2);
9928 if (m < 0)
9929 goto error;
9930 if (!m)
9931 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
9932 "parameters don't match", goto error);
9934 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
9935 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
9936 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
9938 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
9939 isl_space_copy(map2->dim)),
9940 map1->n * map2->n, flags);
9941 if (!result)
9942 goto error;
9943 for (i = 0; i < map1->n; ++i)
9944 for (j = 0; j < map2->n; ++j) {
9945 struct isl_basic_map *part;
9946 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
9947 isl_basic_map_copy(map2->p[j]));
9948 if (isl_basic_map_is_empty(part))
9949 isl_basic_map_free(part);
9950 else
9951 result = isl_map_add_basic_map(result, part);
9952 if (!result)
9953 goto error;
9955 if (remove_duplicates)
9956 result = isl_map_remove_obvious_duplicates(result);
9957 isl_map_free(map1);
9958 isl_map_free(map2);
9959 return result;
9960 error:
9961 isl_map_free(map1);
9962 isl_map_free(map2);
9963 return NULL;
9966 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
9968 static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
9969 __isl_take isl_map *map2)
9971 return map_product(map1, map2, &isl_space_product,
9972 &isl_basic_map_product, 0);
9975 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
9976 __isl_take isl_map *map2)
9978 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
9981 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
9983 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
9984 __isl_take isl_map *map2)
9986 isl_map *prod;
9988 prod = isl_map_product(map1, map2);
9989 prod = isl_map_flatten(prod);
9990 return prod;
9993 /* Given two set A and B, construct its Cartesian product A x B.
9995 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
9997 return isl_map_range_product(set1, set2);
10000 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
10001 __isl_take isl_set *set2)
10003 return isl_map_flat_range_product(set1, set2);
10006 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10008 static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
10009 __isl_take isl_map *map2)
10011 return map_product(map1, map2, &isl_space_domain_product,
10012 &isl_basic_map_domain_product, 1);
10015 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10017 static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
10018 __isl_take isl_map *map2)
10020 return map_product(map1, map2, &isl_space_range_product,
10021 &isl_basic_map_range_product, 1);
10024 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
10025 __isl_take isl_map *map2)
10027 return isl_map_align_params_map_map_and(map1, map2,
10028 &map_domain_product_aligned);
10031 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
10032 __isl_take isl_map *map2)
10034 return isl_map_align_params_map_map_and(map1, map2,
10035 &map_range_product_aligned);
10038 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10040 __isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
10042 isl_space *space;
10043 int total1, keep1, total2, keep2;
10045 if (!map)
10046 return NULL;
10047 if (!isl_space_domain_is_wrapping(map->dim) ||
10048 !isl_space_range_is_wrapping(map->dim))
10049 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10050 "not a product", return isl_map_free(map));
10052 space = isl_map_get_space(map);
10053 total1 = isl_space_dim(space, isl_dim_in);
10054 total2 = isl_space_dim(space, isl_dim_out);
10055 space = isl_space_factor_domain(space);
10056 keep1 = isl_space_dim(space, isl_dim_in);
10057 keep2 = isl_space_dim(space, isl_dim_out);
10058 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
10059 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
10060 map = isl_map_reset_space(map, space);
10062 return map;
10065 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10067 __isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
10069 isl_space *space;
10070 int total1, keep1, total2, keep2;
10072 if (!map)
10073 return NULL;
10074 if (!isl_space_domain_is_wrapping(map->dim) ||
10075 !isl_space_range_is_wrapping(map->dim))
10076 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10077 "not a product", return isl_map_free(map));
10079 space = isl_map_get_space(map);
10080 total1 = isl_space_dim(space, isl_dim_in);
10081 total2 = isl_space_dim(space, isl_dim_out);
10082 space = isl_space_factor_range(space);
10083 keep1 = isl_space_dim(space, isl_dim_in);
10084 keep2 = isl_space_dim(space, isl_dim_out);
10085 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
10086 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
10087 map = isl_map_reset_space(map, space);
10089 return map;
10092 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10094 __isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
10096 isl_space *space;
10097 int total, keep;
10099 if (!map)
10100 return NULL;
10101 if (!isl_space_domain_is_wrapping(map->dim))
10102 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10103 "domain is not a product", return isl_map_free(map));
10105 space = isl_map_get_space(map);
10106 total = isl_space_dim(space, isl_dim_in);
10107 space = isl_space_domain_factor_domain(space);
10108 keep = isl_space_dim(space, isl_dim_in);
10109 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
10110 map = isl_map_reset_space(map, space);
10112 return map;
10115 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10117 __isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
10119 isl_space *space;
10120 int total, keep;
10122 if (!map)
10123 return NULL;
10124 if (!isl_space_domain_is_wrapping(map->dim))
10125 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10126 "domain is not a product", return isl_map_free(map));
10128 space = isl_map_get_space(map);
10129 total = isl_space_dim(space, isl_dim_in);
10130 space = isl_space_domain_factor_range(space);
10131 keep = isl_space_dim(space, isl_dim_in);
10132 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
10133 map = isl_map_reset_space(map, space);
10135 return map;
10138 /* Given a map A -> [B -> C], extract the map A -> B.
10140 __isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
10142 isl_space *space;
10143 int total, keep;
10145 if (!map)
10146 return NULL;
10147 if (!isl_space_range_is_wrapping(map->dim))
10148 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10149 "range is not a product", return isl_map_free(map));
10151 space = isl_map_get_space(map);
10152 total = isl_space_dim(space, isl_dim_out);
10153 space = isl_space_range_factor_domain(space);
10154 keep = isl_space_dim(space, isl_dim_out);
10155 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
10156 map = isl_map_reset_space(map, space);
10158 return map;
10161 /* Given a map A -> [B -> C], extract the map A -> C.
10163 __isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
10165 isl_space *space;
10166 int total, keep;
10168 if (!map)
10169 return NULL;
10170 if (!isl_space_range_is_wrapping(map->dim))
10171 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10172 "range is not a product", return isl_map_free(map));
10174 space = isl_map_get_space(map);
10175 total = isl_space_dim(space, isl_dim_out);
10176 space = isl_space_range_factor_range(space);
10177 keep = isl_space_dim(space, isl_dim_out);
10178 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
10179 map = isl_map_reset_space(map, space);
10181 return map;
10184 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10186 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
10187 __isl_take isl_map *map2)
10189 isl_map *prod;
10191 prod = isl_map_domain_product(map1, map2);
10192 prod = isl_map_flatten_domain(prod);
10193 return prod;
10196 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10198 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
10199 __isl_take isl_map *map2)
10201 isl_map *prod;
10203 prod = isl_map_range_product(map1, map2);
10204 prod = isl_map_flatten_range(prod);
10205 return prod;
10208 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
10210 int i;
10211 uint32_t hash = isl_hash_init();
10212 unsigned total;
10214 if (!bmap)
10215 return 0;
10216 bmap = isl_basic_map_copy(bmap);
10217 bmap = isl_basic_map_normalize(bmap);
10218 if (!bmap)
10219 return 0;
10220 total = isl_basic_map_total_dim(bmap);
10221 isl_hash_byte(hash, bmap->n_eq & 0xFF);
10222 for (i = 0; i < bmap->n_eq; ++i) {
10223 uint32_t c_hash;
10224 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
10225 isl_hash_hash(hash, c_hash);
10227 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
10228 for (i = 0; i < bmap->n_ineq; ++i) {
10229 uint32_t c_hash;
10230 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
10231 isl_hash_hash(hash, c_hash);
10233 isl_hash_byte(hash, bmap->n_div & 0xFF);
10234 for (i = 0; i < bmap->n_div; ++i) {
10235 uint32_t c_hash;
10236 if (isl_int_is_zero(bmap->div[i][0]))
10237 continue;
10238 isl_hash_byte(hash, i & 0xFF);
10239 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
10240 isl_hash_hash(hash, c_hash);
10242 isl_basic_map_free(bmap);
10243 return hash;
10246 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
10248 return isl_basic_map_get_hash(bset_to_bmap(bset));
10251 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
10253 int i;
10254 uint32_t hash;
10256 if (!map)
10257 return 0;
10258 map = isl_map_copy(map);
10259 map = isl_map_normalize(map);
10260 if (!map)
10261 return 0;
10263 hash = isl_hash_init();
10264 for (i = 0; i < map->n; ++i) {
10265 uint32_t bmap_hash;
10266 bmap_hash = isl_basic_map_get_hash(map->p[i]);
10267 isl_hash_hash(hash, bmap_hash);
10270 isl_map_free(map);
10272 return hash;
10275 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
10277 return isl_map_get_hash(set_to_map(set));
10280 /* Return the number of basic maps in the (current) representation of "map".
10282 int isl_map_n_basic_map(__isl_keep isl_map *map)
10284 return map ? map->n : 0;
10287 int isl_set_n_basic_set(__isl_keep isl_set *set)
10289 return set ? set->n : 0;
10292 isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
10293 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
10295 int i;
10297 if (!map)
10298 return isl_stat_error;
10300 for (i = 0; i < map->n; ++i)
10301 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
10302 return isl_stat_error;
10304 return isl_stat_ok;
10307 isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
10308 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
10310 int i;
10312 if (!set)
10313 return isl_stat_error;
10315 for (i = 0; i < set->n; ++i)
10316 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
10317 return isl_stat_error;
10319 return isl_stat_ok;
10322 /* Return a list of basic sets, the union of which is equal to "set".
10324 __isl_give isl_basic_set_list *isl_set_get_basic_set_list(
10325 __isl_keep isl_set *set)
10327 int i;
10328 isl_basic_set_list *list;
10330 if (!set)
10331 return NULL;
10333 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
10334 for (i = 0; i < set->n; ++i) {
10335 isl_basic_set *bset;
10337 bset = isl_basic_set_copy(set->p[i]);
10338 list = isl_basic_set_list_add(list, bset);
10341 return list;
10344 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
10346 isl_space *dim;
10348 if (!bset)
10349 return NULL;
10351 bset = isl_basic_set_cow(bset);
10352 if (!bset)
10353 return NULL;
10355 dim = isl_basic_set_get_space(bset);
10356 dim = isl_space_lift(dim, bset->n_div);
10357 if (!dim)
10358 goto error;
10359 isl_space_free(bset->dim);
10360 bset->dim = dim;
10361 bset->extra -= bset->n_div;
10362 bset->n_div = 0;
10364 bset = isl_basic_set_finalize(bset);
10366 return bset;
10367 error:
10368 isl_basic_set_free(bset);
10369 return NULL;
10372 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
10374 int i;
10375 isl_space *dim;
10376 unsigned n_div;
10378 set = set_from_map(isl_map_align_divs_internal(set_to_map(set)));
10380 if (!set)
10381 return NULL;
10383 set = isl_set_cow(set);
10384 if (!set)
10385 return NULL;
10387 n_div = set->p[0]->n_div;
10388 dim = isl_set_get_space(set);
10389 dim = isl_space_lift(dim, n_div);
10390 if (!dim)
10391 goto error;
10392 isl_space_free(set->dim);
10393 set->dim = dim;
10395 for (i = 0; i < set->n; ++i) {
10396 set->p[i] = isl_basic_set_lift(set->p[i]);
10397 if (!set->p[i])
10398 goto error;
10401 return set;
10402 error:
10403 isl_set_free(set);
10404 return NULL;
10407 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
10409 unsigned dim;
10410 int size = 0;
10412 if (!bset)
10413 return -1;
10415 dim = isl_basic_set_total_dim(bset);
10416 size += bset->n_eq * (1 + dim);
10417 size += bset->n_ineq * (1 + dim);
10418 size += bset->n_div * (2 + dim);
10420 return size;
10423 int isl_set_size(__isl_keep isl_set *set)
10425 int i;
10426 int size = 0;
10428 if (!set)
10429 return -1;
10431 for (i = 0; i < set->n; ++i)
10432 size += isl_basic_set_size(set->p[i]);
10434 return size;
10437 /* Check if there is any lower bound (if lower == 0) and/or upper
10438 * bound (if upper == 0) on the specified dim.
10440 static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10441 enum isl_dim_type type, unsigned pos, int lower, int upper)
10443 int i;
10445 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
10446 return isl_bool_error;
10448 pos += isl_basic_map_offset(bmap, type);
10450 for (i = 0; i < bmap->n_div; ++i) {
10451 if (isl_int_is_zero(bmap->div[i][0]))
10452 continue;
10453 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
10454 return isl_bool_true;
10457 for (i = 0; i < bmap->n_eq; ++i)
10458 if (!isl_int_is_zero(bmap->eq[i][pos]))
10459 return isl_bool_true;
10461 for (i = 0; i < bmap->n_ineq; ++i) {
10462 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
10463 if (sgn > 0)
10464 lower = 1;
10465 if (sgn < 0)
10466 upper = 1;
10469 return lower && upper;
10472 isl_bool isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10473 enum isl_dim_type type, unsigned pos)
10475 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
10478 isl_bool isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
10479 enum isl_dim_type type, unsigned pos)
10481 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
10484 isl_bool isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
10485 enum isl_dim_type type, unsigned pos)
10487 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
10490 isl_bool isl_map_dim_is_bounded(__isl_keep isl_map *map,
10491 enum isl_dim_type type, unsigned pos)
10493 int i;
10495 if (!map)
10496 return isl_bool_error;
10498 for (i = 0; i < map->n; ++i) {
10499 isl_bool bounded;
10500 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
10501 if (bounded < 0 || !bounded)
10502 return bounded;
10505 return isl_bool_true;
10508 /* Return true if the specified dim is involved in both an upper bound
10509 * and a lower bound.
10511 isl_bool isl_set_dim_is_bounded(__isl_keep isl_set *set,
10512 enum isl_dim_type type, unsigned pos)
10514 return isl_map_dim_is_bounded(set_to_map(set), type, pos);
10517 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10519 static isl_bool has_any_bound(__isl_keep isl_map *map,
10520 enum isl_dim_type type, unsigned pos,
10521 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10522 enum isl_dim_type type, unsigned pos))
10524 int i;
10526 if (!map)
10527 return isl_bool_error;
10529 for (i = 0; i < map->n; ++i) {
10530 isl_bool bounded;
10531 bounded = fn(map->p[i], type, pos);
10532 if (bounded < 0 || bounded)
10533 return bounded;
10536 return isl_bool_false;
10539 /* Return 1 if the specified dim is involved in any lower bound.
10541 isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
10542 enum isl_dim_type type, unsigned pos)
10544 return has_any_bound(set, type, pos,
10545 &isl_basic_map_dim_has_lower_bound);
10548 /* Return 1 if the specified dim is involved in any upper bound.
10550 isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
10551 enum isl_dim_type type, unsigned pos)
10553 return has_any_bound(set, type, pos,
10554 &isl_basic_map_dim_has_upper_bound);
10557 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10559 static isl_bool has_bound(__isl_keep isl_map *map,
10560 enum isl_dim_type type, unsigned pos,
10561 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10562 enum isl_dim_type type, unsigned pos))
10564 int i;
10566 if (!map)
10567 return isl_bool_error;
10569 for (i = 0; i < map->n; ++i) {
10570 isl_bool bounded;
10571 bounded = fn(map->p[i], type, pos);
10572 if (bounded < 0 || !bounded)
10573 return bounded;
10576 return isl_bool_true;
10579 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10581 isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
10582 enum isl_dim_type type, unsigned pos)
10584 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
10587 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10589 isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
10590 enum isl_dim_type type, unsigned pos)
10592 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
10595 /* For each of the "n" variables starting at "first", determine
10596 * the sign of the variable and put the results in the first "n"
10597 * elements of the array "signs".
10598 * Sign
10599 * 1 means that the variable is non-negative
10600 * -1 means that the variable is non-positive
10601 * 0 means the variable attains both positive and negative values.
10603 isl_stat isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
10604 unsigned first, unsigned n, int *signs)
10606 isl_vec *bound = NULL;
10607 struct isl_tab *tab = NULL;
10608 struct isl_tab_undo *snap;
10609 int i;
10611 if (!bset || !signs)
10612 return isl_stat_error;
10614 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
10615 tab = isl_tab_from_basic_set(bset, 0);
10616 if (!bound || !tab)
10617 goto error;
10619 isl_seq_clr(bound->el, bound->size);
10620 isl_int_set_si(bound->el[0], -1);
10622 snap = isl_tab_snap(tab);
10623 for (i = 0; i < n; ++i) {
10624 int empty;
10626 isl_int_set_si(bound->el[1 + first + i], -1);
10627 if (isl_tab_add_ineq(tab, bound->el) < 0)
10628 goto error;
10629 empty = tab->empty;
10630 isl_int_set_si(bound->el[1 + first + i], 0);
10631 if (isl_tab_rollback(tab, snap) < 0)
10632 goto error;
10634 if (empty) {
10635 signs[i] = 1;
10636 continue;
10639 isl_int_set_si(bound->el[1 + first + i], 1);
10640 if (isl_tab_add_ineq(tab, bound->el) < 0)
10641 goto error;
10642 empty = tab->empty;
10643 isl_int_set_si(bound->el[1 + first + i], 0);
10644 if (isl_tab_rollback(tab, snap) < 0)
10645 goto error;
10647 signs[i] = empty ? -1 : 0;
10650 isl_tab_free(tab);
10651 isl_vec_free(bound);
10652 return isl_stat_ok;
10653 error:
10654 isl_tab_free(tab);
10655 isl_vec_free(bound);
10656 return isl_stat_error;
10659 isl_stat isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
10660 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
10662 if (!bset || !signs)
10663 return isl_stat_error;
10664 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
10665 return isl_stat_error);
10667 first += pos(bset->dim, type) - 1;
10668 return isl_basic_set_vars_get_sign(bset, first, n, signs);
10671 /* Is it possible for the integer division "div" to depend (possibly
10672 * indirectly) on any output dimensions?
10674 * If the div is undefined, then we conservatively assume that it
10675 * may depend on them.
10676 * Otherwise, we check if it actually depends on them or on any integer
10677 * divisions that may depend on them.
10679 static isl_bool div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
10681 int i;
10682 unsigned n_out, o_out;
10683 unsigned n_div, o_div;
10685 if (isl_int_is_zero(bmap->div[div][0]))
10686 return isl_bool_true;
10688 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10689 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10691 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
10692 return isl_bool_true;
10694 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10695 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10697 for (i = 0; i < n_div; ++i) {
10698 isl_bool may_involve;
10700 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
10701 continue;
10702 may_involve = div_may_involve_output(bmap, i);
10703 if (may_involve < 0 || may_involve)
10704 return may_involve;
10707 return isl_bool_false;
10710 /* Return the first integer division of "bmap" in the range
10711 * [first, first + n[ that may depend on any output dimensions and
10712 * that has a non-zero coefficient in "c" (where the first coefficient
10713 * in "c" corresponds to integer division "first").
10715 static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
10716 isl_int *c, int first, int n)
10718 int k;
10720 if (!bmap)
10721 return -1;
10723 for (k = first; k < first + n; ++k) {
10724 isl_bool may_involve;
10726 if (isl_int_is_zero(c[k]))
10727 continue;
10728 may_involve = div_may_involve_output(bmap, k);
10729 if (may_involve < 0)
10730 return -1;
10731 if (may_involve)
10732 return k;
10735 return first + n;
10738 /* Look for a pair of inequality constraints in "bmap" of the form
10740 * -l + i >= 0 or i >= l
10741 * and
10742 * n + l - i >= 0 or i <= l + n
10744 * with n < "m" and i the output dimension at position "pos".
10745 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10746 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10747 * and earlier output dimensions, as well as integer divisions that do
10748 * not involve any of the output dimensions.
10750 * Return the index of the first inequality constraint or bmap->n_ineq
10751 * if no such pair can be found.
10753 static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
10754 int pos, isl_int m)
10756 int i, j;
10757 isl_ctx *ctx;
10758 unsigned total;
10759 unsigned n_div, o_div;
10760 unsigned n_out, o_out;
10761 int less;
10763 if (!bmap)
10764 return -1;
10766 ctx = isl_basic_map_get_ctx(bmap);
10767 total = isl_basic_map_total_dim(bmap);
10768 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10769 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10770 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10771 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10772 for (i = 0; i < bmap->n_ineq; ++i) {
10773 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
10774 continue;
10775 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
10776 n_out - (pos + 1)) != -1)
10777 continue;
10778 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
10779 0, n_div) < n_div)
10780 continue;
10781 for (j = i + 1; j < bmap->n_ineq; ++j) {
10782 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
10783 ctx->one))
10784 continue;
10785 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
10786 bmap->ineq[j] + 1, total))
10787 continue;
10788 break;
10790 if (j >= bmap->n_ineq)
10791 continue;
10792 isl_int_add(bmap->ineq[i][0],
10793 bmap->ineq[i][0], bmap->ineq[j][0]);
10794 less = isl_int_abs_lt(bmap->ineq[i][0], m);
10795 isl_int_sub(bmap->ineq[i][0],
10796 bmap->ineq[i][0], bmap->ineq[j][0]);
10797 if (!less)
10798 continue;
10799 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
10800 return i;
10801 else
10802 return j;
10805 return bmap->n_ineq;
10808 /* Return the index of the equality of "bmap" that defines
10809 * the output dimension "pos" in terms of earlier dimensions.
10810 * The equality may also involve integer divisions, as long
10811 * as those integer divisions are defined in terms of
10812 * parameters or input dimensions.
10813 * In this case, *div is set to the number of integer divisions and
10814 * *ineq is set to the number of inequality constraints (provided
10815 * div and ineq are not NULL).
10817 * The equality may also involve a single integer division involving
10818 * the output dimensions (typically only output dimension "pos") as
10819 * long as the coefficient of output dimension "pos" is 1 or -1 and
10820 * there is a pair of constraints i >= l and i <= l + n, with i referring
10821 * to output dimension "pos", l an expression involving only earlier
10822 * dimensions and n smaller than the coefficient of the integer division
10823 * in the equality. In this case, the output dimension can be defined
10824 * in terms of a modulo expression that does not involve the integer division.
10825 * *div is then set to this single integer division and
10826 * *ineq is set to the index of constraint i >= l.
10828 * Return bmap->n_eq if there is no such equality.
10829 * Return -1 on error.
10831 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
10832 int pos, int *div, int *ineq)
10834 int j, k, l;
10835 unsigned n_out, o_out;
10836 unsigned n_div, o_div;
10838 if (!bmap)
10839 return -1;
10841 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10842 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10843 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10844 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10846 if (ineq)
10847 *ineq = bmap->n_ineq;
10848 if (div)
10849 *div = n_div;
10850 for (j = 0; j < bmap->n_eq; ++j) {
10851 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
10852 continue;
10853 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
10854 n_out - (pos + 1)) != -1)
10855 continue;
10856 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
10857 0, n_div);
10858 if (k >= n_div)
10859 return j;
10860 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
10861 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
10862 continue;
10863 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
10864 k + 1, n_div - (k+1)) < n_div)
10865 continue;
10866 l = find_modulo_constraint_pair(bmap, pos,
10867 bmap->eq[j][o_div + k]);
10868 if (l < 0)
10869 return -1;
10870 if (l >= bmap->n_ineq)
10871 continue;
10872 if (div)
10873 *div = k;
10874 if (ineq)
10875 *ineq = l;
10876 return j;
10879 return bmap->n_eq;
10882 /* Check if the given basic map is obviously single-valued.
10883 * In particular, for each output dimension, check that there is
10884 * an equality that defines the output dimension in terms of
10885 * earlier dimensions.
10887 isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
10889 int i;
10890 unsigned n_out;
10892 if (!bmap)
10893 return isl_bool_error;
10895 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10897 for (i = 0; i < n_out; ++i) {
10898 int eq;
10900 eq = isl_basic_map_output_defining_equality(bmap, i,
10901 NULL, NULL);
10902 if (eq < 0)
10903 return isl_bool_error;
10904 if (eq >= bmap->n_eq)
10905 return isl_bool_false;
10908 return isl_bool_true;
10911 /* Check if the given basic map is single-valued.
10912 * We simply compute
10914 * M \circ M^-1
10916 * and check if the result is a subset of the identity mapping.
10918 isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
10920 isl_space *space;
10921 isl_basic_map *test;
10922 isl_basic_map *id;
10923 isl_bool sv;
10925 sv = isl_basic_map_plain_is_single_valued(bmap);
10926 if (sv < 0 || sv)
10927 return sv;
10929 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
10930 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
10932 space = isl_basic_map_get_space(bmap);
10933 space = isl_space_map_from_set(isl_space_range(space));
10934 id = isl_basic_map_identity(space);
10936 sv = isl_basic_map_is_subset(test, id);
10938 isl_basic_map_free(test);
10939 isl_basic_map_free(id);
10941 return sv;
10944 /* Check if the given map is obviously single-valued.
10946 isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
10948 if (!map)
10949 return isl_bool_error;
10950 if (map->n == 0)
10951 return isl_bool_true;
10952 if (map->n >= 2)
10953 return isl_bool_false;
10955 return isl_basic_map_plain_is_single_valued(map->p[0]);
10958 /* Check if the given map is single-valued.
10959 * We simply compute
10961 * M \circ M^-1
10963 * and check if the result is a subset of the identity mapping.
10965 isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
10967 isl_space *dim;
10968 isl_map *test;
10969 isl_map *id;
10970 isl_bool sv;
10972 sv = isl_map_plain_is_single_valued(map);
10973 if (sv < 0 || sv)
10974 return sv;
10976 test = isl_map_reverse(isl_map_copy(map));
10977 test = isl_map_apply_range(test, isl_map_copy(map));
10979 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
10980 id = isl_map_identity(dim);
10982 sv = isl_map_is_subset(test, id);
10984 isl_map_free(test);
10985 isl_map_free(id);
10987 return sv;
10990 isl_bool isl_map_is_injective(__isl_keep isl_map *map)
10992 isl_bool in;
10994 map = isl_map_copy(map);
10995 map = isl_map_reverse(map);
10996 in = isl_map_is_single_valued(map);
10997 isl_map_free(map);
10999 return in;
11002 /* Check if the given map is obviously injective.
11004 isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
11006 isl_bool in;
11008 map = isl_map_copy(map);
11009 map = isl_map_reverse(map);
11010 in = isl_map_plain_is_single_valued(map);
11011 isl_map_free(map);
11013 return in;
11016 isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
11018 isl_bool sv;
11020 sv = isl_map_is_single_valued(map);
11021 if (sv < 0 || !sv)
11022 return sv;
11024 return isl_map_is_injective(map);
11027 isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
11029 return isl_map_is_single_valued(set_to_map(set));
11032 /* Does "map" only map elements to themselves?
11034 * If the domain and range spaces are different, then "map"
11035 * is considered not to be an identity relation, even if it is empty.
11036 * Otherwise, construct the maximal identity relation and
11037 * check whether "map" is a subset of this relation.
11039 isl_bool isl_map_is_identity(__isl_keep isl_map *map)
11041 isl_space *space;
11042 isl_map *id;
11043 isl_bool equal, is_identity;
11045 space = isl_map_get_space(map);
11046 equal = isl_space_tuple_is_equal(space, isl_dim_in, space, isl_dim_out);
11047 isl_space_free(space);
11048 if (equal < 0 || !equal)
11049 return equal;
11051 id = isl_map_identity(isl_map_get_space(map));
11052 is_identity = isl_map_is_subset(map, id);
11053 isl_map_free(id);
11055 return is_identity;
11058 int isl_map_is_translation(__isl_keep isl_map *map)
11060 int ok;
11061 isl_set *delta;
11063 delta = isl_map_deltas(isl_map_copy(map));
11064 ok = isl_set_is_singleton(delta);
11065 isl_set_free(delta);
11067 return ok;
11070 static int unique(isl_int *p, unsigned pos, unsigned len)
11072 if (isl_seq_first_non_zero(p, pos) != -1)
11073 return 0;
11074 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
11075 return 0;
11076 return 1;
11079 isl_bool isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
11081 int i, j;
11082 unsigned nvar;
11083 unsigned ovar;
11085 if (!bset)
11086 return isl_bool_error;
11088 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
11089 return isl_bool_false;
11091 nvar = isl_basic_set_dim(bset, isl_dim_set);
11092 ovar = isl_space_offset(bset->dim, isl_dim_set);
11093 for (j = 0; j < nvar; ++j) {
11094 int lower = 0, upper = 0;
11095 for (i = 0; i < bset->n_eq; ++i) {
11096 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
11097 continue;
11098 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
11099 return isl_bool_false;
11100 break;
11102 if (i < bset->n_eq)
11103 continue;
11104 for (i = 0; i < bset->n_ineq; ++i) {
11105 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
11106 continue;
11107 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
11108 return isl_bool_false;
11109 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
11110 lower = 1;
11111 else
11112 upper = 1;
11114 if (!lower || !upper)
11115 return isl_bool_false;
11118 return isl_bool_true;
11121 isl_bool isl_set_is_box(__isl_keep isl_set *set)
11123 if (!set)
11124 return isl_bool_error;
11125 if (set->n != 1)
11126 return isl_bool_false;
11128 return isl_basic_set_is_box(set->p[0]);
11131 isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
11133 if (!bset)
11134 return isl_bool_error;
11136 return isl_space_is_wrapping(bset->dim);
11139 isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
11141 if (!set)
11142 return isl_bool_error;
11144 return isl_space_is_wrapping(set->dim);
11147 /* Modify the space of "map" through a call to "change".
11148 * If "can_change" is set (not NULL), then first call it to check
11149 * if the modification is allowed, printing the error message "cannot_change"
11150 * if it is not.
11152 static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
11153 isl_bool (*can_change)(__isl_keep isl_map *map),
11154 const char *cannot_change,
11155 __isl_give isl_space *(*change)(__isl_take isl_space *space))
11157 isl_bool ok;
11158 isl_space *space;
11160 if (!map)
11161 return NULL;
11163 ok = can_change ? can_change(map) : isl_bool_true;
11164 if (ok < 0)
11165 return isl_map_free(map);
11166 if (!ok)
11167 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
11168 return isl_map_free(map));
11170 space = change(isl_map_get_space(map));
11171 map = isl_map_reset_space(map, space);
11173 return map;
11176 /* Is the domain of "map" a wrapped relation?
11178 isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
11180 if (!map)
11181 return isl_bool_error;
11183 return isl_space_domain_is_wrapping(map->dim);
11186 /* Is the range of "map" a wrapped relation?
11188 isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
11190 if (!map)
11191 return isl_bool_error;
11193 return isl_space_range_is_wrapping(map->dim);
11196 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
11198 bmap = isl_basic_map_cow(bmap);
11199 if (!bmap)
11200 return NULL;
11202 bmap->dim = isl_space_wrap(bmap->dim);
11203 if (!bmap->dim)
11204 goto error;
11206 bmap = isl_basic_map_finalize(bmap);
11208 return bset_from_bmap(bmap);
11209 error:
11210 isl_basic_map_free(bmap);
11211 return NULL;
11214 /* Given a map A -> B, return the set (A -> B).
11216 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
11218 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
11221 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
11223 bset = isl_basic_set_cow(bset);
11224 if (!bset)
11225 return NULL;
11227 bset->dim = isl_space_unwrap(bset->dim);
11228 if (!bset->dim)
11229 goto error;
11231 bset = isl_basic_set_finalize(bset);
11233 return bset_to_bmap(bset);
11234 error:
11235 isl_basic_set_free(bset);
11236 return NULL;
11239 /* Given a set (A -> B), return the map A -> B.
11240 * Error out if "set" is not of the form (A -> B).
11242 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
11244 return isl_map_change_space(set, &isl_set_is_wrapping,
11245 "not a wrapping set", &isl_space_unwrap);
11248 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
11249 enum isl_dim_type type)
11251 if (!bmap)
11252 return NULL;
11254 if (!isl_space_is_named_or_nested(bmap->dim, type))
11255 return bmap;
11257 bmap = isl_basic_map_cow(bmap);
11258 if (!bmap)
11259 return NULL;
11261 bmap->dim = isl_space_reset(bmap->dim, type);
11262 if (!bmap->dim)
11263 goto error;
11265 bmap = isl_basic_map_finalize(bmap);
11267 return bmap;
11268 error:
11269 isl_basic_map_free(bmap);
11270 return NULL;
11273 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
11274 enum isl_dim_type type)
11276 int i;
11278 if (!map)
11279 return NULL;
11281 if (!isl_space_is_named_or_nested(map->dim, type))
11282 return map;
11284 map = isl_map_cow(map);
11285 if (!map)
11286 return NULL;
11288 for (i = 0; i < map->n; ++i) {
11289 map->p[i] = isl_basic_map_reset(map->p[i], type);
11290 if (!map->p[i])
11291 goto error;
11293 map->dim = isl_space_reset(map->dim, type);
11294 if (!map->dim)
11295 goto error;
11297 return map;
11298 error:
11299 isl_map_free(map);
11300 return NULL;
11303 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
11305 if (!bmap)
11306 return NULL;
11308 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
11309 return bmap;
11311 bmap = isl_basic_map_cow(bmap);
11312 if (!bmap)
11313 return NULL;
11315 bmap->dim = isl_space_flatten(bmap->dim);
11316 if (!bmap->dim)
11317 goto error;
11319 bmap = isl_basic_map_finalize(bmap);
11321 return bmap;
11322 error:
11323 isl_basic_map_free(bmap);
11324 return NULL;
11327 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
11329 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset)));
11332 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
11333 __isl_take isl_basic_map *bmap)
11335 if (!bmap)
11336 return NULL;
11338 if (!bmap->dim->nested[0])
11339 return bmap;
11341 bmap = isl_basic_map_cow(bmap);
11342 if (!bmap)
11343 return NULL;
11345 bmap->dim = isl_space_flatten_domain(bmap->dim);
11346 if (!bmap->dim)
11347 goto error;
11349 bmap = isl_basic_map_finalize(bmap);
11351 return bmap;
11352 error:
11353 isl_basic_map_free(bmap);
11354 return NULL;
11357 __isl_give isl_basic_map *isl_basic_map_flatten_range(
11358 __isl_take isl_basic_map *bmap)
11360 if (!bmap)
11361 return NULL;
11363 if (!bmap->dim->nested[1])
11364 return bmap;
11366 bmap = isl_basic_map_cow(bmap);
11367 if (!bmap)
11368 return NULL;
11370 bmap->dim = isl_space_flatten_range(bmap->dim);
11371 if (!bmap->dim)
11372 goto error;
11374 bmap = isl_basic_map_finalize(bmap);
11376 return bmap;
11377 error:
11378 isl_basic_map_free(bmap);
11379 return NULL;
11382 /* Remove any internal structure from the spaces of domain and range of "map".
11384 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
11386 if (!map)
11387 return NULL;
11389 if (!map->dim->nested[0] && !map->dim->nested[1])
11390 return map;
11392 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
11395 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
11397 return set_from_map(isl_map_flatten(set_to_map(set)));
11400 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
11402 isl_space *dim, *flat_dim;
11403 isl_map *map;
11405 dim = isl_set_get_space(set);
11406 flat_dim = isl_space_flatten(isl_space_copy(dim));
11407 map = isl_map_identity(isl_space_join(isl_space_reverse(dim), flat_dim));
11408 map = isl_map_intersect_domain(map, set);
11410 return map;
11413 /* Remove any internal structure from the space of the domain of "map".
11415 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
11417 if (!map)
11418 return NULL;
11420 if (!map->dim->nested[0])
11421 return map;
11423 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
11426 /* Remove any internal structure from the space of the range of "map".
11428 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
11430 if (!map)
11431 return NULL;
11433 if (!map->dim->nested[1])
11434 return map;
11436 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
11439 /* Reorder the dimensions of "bmap" according to the given dim_map
11440 * and set the dimension specification to "dim" and
11441 * perform Gaussian elimination on the result.
11443 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
11444 __isl_take isl_space *dim, __isl_take struct isl_dim_map *dim_map)
11446 isl_basic_map *res;
11447 unsigned flags;
11449 bmap = isl_basic_map_cow(bmap);
11450 if (!bmap || !dim || !dim_map)
11451 goto error;
11453 flags = bmap->flags;
11454 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
11455 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED);
11456 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
11457 res = isl_basic_map_alloc_space(dim,
11458 bmap->n_div, bmap->n_eq, bmap->n_ineq);
11459 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
11460 if (res)
11461 res->flags = flags;
11462 res = isl_basic_map_gauss(res, NULL);
11463 res = isl_basic_map_finalize(res);
11464 return res;
11465 error:
11466 free(dim_map);
11467 isl_basic_map_free(bmap);
11468 isl_space_free(dim);
11469 return NULL;
11472 /* Reorder the dimensions of "map" according to given reordering.
11474 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
11475 __isl_take isl_reordering *r)
11477 int i;
11478 struct isl_dim_map *dim_map;
11480 map = isl_map_cow(map);
11481 dim_map = isl_dim_map_from_reordering(r);
11482 if (!map || !r || !dim_map)
11483 goto error;
11485 for (i = 0; i < map->n; ++i) {
11486 struct isl_dim_map *dim_map_i;
11488 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
11490 map->p[i] = isl_basic_map_realign(map->p[i],
11491 isl_space_copy(r->dim), dim_map_i);
11493 if (!map->p[i])
11494 goto error;
11497 map = isl_map_reset_space(map, isl_space_copy(r->dim));
11499 isl_reordering_free(r);
11500 free(dim_map);
11501 return map;
11502 error:
11503 free(dim_map);
11504 isl_map_free(map);
11505 isl_reordering_free(r);
11506 return NULL;
11509 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
11510 __isl_take isl_reordering *r)
11512 return set_from_map(isl_map_realign(set_to_map(set), r));
11515 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
11516 __isl_take isl_space *model)
11518 isl_ctx *ctx;
11519 isl_bool aligned;
11521 if (!map || !model)
11522 goto error;
11524 ctx = isl_space_get_ctx(model);
11525 if (!isl_space_has_named_params(model))
11526 isl_die(ctx, isl_error_invalid,
11527 "model has unnamed parameters", goto error);
11528 if (isl_map_check_named_params(map) < 0)
11529 goto error;
11530 aligned = isl_map_space_has_equal_params(map, model);
11531 if (aligned < 0)
11532 goto error;
11533 if (!aligned) {
11534 isl_reordering *exp;
11536 model = isl_space_drop_dims(model, isl_dim_in,
11537 0, isl_space_dim(model, isl_dim_in));
11538 model = isl_space_drop_dims(model, isl_dim_out,
11539 0, isl_space_dim(model, isl_dim_out));
11540 exp = isl_parameter_alignment_reordering(map->dim, model);
11541 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
11542 map = isl_map_realign(map, exp);
11545 isl_space_free(model);
11546 return map;
11547 error:
11548 isl_space_free(model);
11549 isl_map_free(map);
11550 return NULL;
11553 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
11554 __isl_take isl_space *model)
11556 return isl_map_align_params(set, model);
11559 /* Align the parameters of "bmap" to those of "model", introducing
11560 * additional parameters if needed.
11562 __isl_give isl_basic_map *isl_basic_map_align_params(
11563 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
11565 isl_ctx *ctx;
11566 isl_bool equal_params;
11568 if (!bmap || !model)
11569 goto error;
11571 ctx = isl_space_get_ctx(model);
11572 if (!isl_space_has_named_params(model))
11573 isl_die(ctx, isl_error_invalid,
11574 "model has unnamed parameters", goto error);
11575 if (!isl_space_has_named_params(bmap->dim))
11576 isl_die(ctx, isl_error_invalid,
11577 "relation has unnamed parameters", goto error);
11578 equal_params = isl_space_has_equal_params(bmap->dim, model);
11579 if (equal_params < 0)
11580 goto error;
11581 if (!equal_params) {
11582 isl_reordering *exp;
11583 struct isl_dim_map *dim_map;
11585 model = isl_space_drop_dims(model, isl_dim_in,
11586 0, isl_space_dim(model, isl_dim_in));
11587 model = isl_space_drop_dims(model, isl_dim_out,
11588 0, isl_space_dim(model, isl_dim_out));
11589 exp = isl_parameter_alignment_reordering(bmap->dim, model);
11590 exp = isl_reordering_extend_space(exp,
11591 isl_basic_map_get_space(bmap));
11592 dim_map = isl_dim_map_from_reordering(exp);
11593 bmap = isl_basic_map_realign(bmap,
11594 exp ? isl_space_copy(exp->dim) : NULL,
11595 isl_dim_map_extend(dim_map, bmap));
11596 isl_reordering_free(exp);
11597 free(dim_map);
11600 isl_space_free(model);
11601 return bmap;
11602 error:
11603 isl_space_free(model);
11604 isl_basic_map_free(bmap);
11605 return NULL;
11608 /* Do "bset" and "space" have the same parameters?
11610 isl_bool isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set *bset,
11611 __isl_keep isl_space *space)
11613 isl_space *bset_space;
11615 bset_space = isl_basic_set_peek_space(bset);
11616 return isl_space_has_equal_params(bset_space, space);
11619 /* Do "map" and "space" have the same parameters?
11621 isl_bool isl_map_space_has_equal_params(__isl_keep isl_map *map,
11622 __isl_keep isl_space *space)
11624 isl_space *map_space;
11626 map_space = isl_map_peek_space(map);
11627 return isl_space_has_equal_params(map_space, space);
11630 /* Do "set" and "space" have the same parameters?
11632 isl_bool isl_set_space_has_equal_params(__isl_keep isl_set *set,
11633 __isl_keep isl_space *space)
11635 return isl_map_space_has_equal_params(set_to_map(set), space);
11638 /* Align the parameters of "bset" to those of "model", introducing
11639 * additional parameters if needed.
11641 __isl_give isl_basic_set *isl_basic_set_align_params(
11642 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
11644 return isl_basic_map_align_params(bset, model);
11647 __isl_give isl_mat *isl_basic_map_equalities_matrix(
11648 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11649 enum isl_dim_type c2, enum isl_dim_type c3,
11650 enum isl_dim_type c4, enum isl_dim_type c5)
11652 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11653 struct isl_mat *mat;
11654 int i, j, k;
11655 int pos;
11657 if (!bmap)
11658 return NULL;
11659 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
11660 isl_basic_map_total_dim(bmap) + 1);
11661 if (!mat)
11662 return NULL;
11663 for (i = 0; i < bmap->n_eq; ++i)
11664 for (j = 0, pos = 0; j < 5; ++j) {
11665 int off = isl_basic_map_offset(bmap, c[j]);
11666 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11667 isl_int_set(mat->row[i][pos],
11668 bmap->eq[i][off + k]);
11669 ++pos;
11673 return mat;
11676 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
11677 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11678 enum isl_dim_type c2, enum isl_dim_type c3,
11679 enum isl_dim_type c4, enum isl_dim_type c5)
11681 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11682 struct isl_mat *mat;
11683 int i, j, k;
11684 int pos;
11686 if (!bmap)
11687 return NULL;
11688 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
11689 isl_basic_map_total_dim(bmap) + 1);
11690 if (!mat)
11691 return NULL;
11692 for (i = 0; i < bmap->n_ineq; ++i)
11693 for (j = 0, pos = 0; j < 5; ++j) {
11694 int off = isl_basic_map_offset(bmap, c[j]);
11695 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11696 isl_int_set(mat->row[i][pos],
11697 bmap->ineq[i][off + k]);
11698 ++pos;
11702 return mat;
11705 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
11706 __isl_take isl_space *dim,
11707 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11708 enum isl_dim_type c2, enum isl_dim_type c3,
11709 enum isl_dim_type c4, enum isl_dim_type c5)
11711 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11712 isl_basic_map *bmap;
11713 unsigned total;
11714 unsigned extra;
11715 int i, j, k, l;
11716 int pos;
11718 if (!dim || !eq || !ineq)
11719 goto error;
11721 if (eq->n_col != ineq->n_col)
11722 isl_die(dim->ctx, isl_error_invalid,
11723 "equalities and inequalities matrices should have "
11724 "same number of columns", goto error);
11726 total = 1 + isl_space_dim(dim, isl_dim_all);
11728 if (eq->n_col < total)
11729 isl_die(dim->ctx, isl_error_invalid,
11730 "number of columns too small", goto error);
11732 extra = eq->n_col - total;
11734 bmap = isl_basic_map_alloc_space(isl_space_copy(dim), extra,
11735 eq->n_row, ineq->n_row);
11736 if (!bmap)
11737 goto error;
11738 for (i = 0; i < extra; ++i) {
11739 k = isl_basic_map_alloc_div(bmap);
11740 if (k < 0)
11741 goto error;
11742 isl_int_set_si(bmap->div[k][0], 0);
11744 for (i = 0; i < eq->n_row; ++i) {
11745 l = isl_basic_map_alloc_equality(bmap);
11746 if (l < 0)
11747 goto error;
11748 for (j = 0, pos = 0; j < 5; ++j) {
11749 int off = isl_basic_map_offset(bmap, c[j]);
11750 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11751 isl_int_set(bmap->eq[l][off + k],
11752 eq->row[i][pos]);
11753 ++pos;
11757 for (i = 0; i < ineq->n_row; ++i) {
11758 l = isl_basic_map_alloc_inequality(bmap);
11759 if (l < 0)
11760 goto error;
11761 for (j = 0, pos = 0; j < 5; ++j) {
11762 int off = isl_basic_map_offset(bmap, c[j]);
11763 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11764 isl_int_set(bmap->ineq[l][off + k],
11765 ineq->row[i][pos]);
11766 ++pos;
11771 isl_space_free(dim);
11772 isl_mat_free(eq);
11773 isl_mat_free(ineq);
11775 bmap = isl_basic_map_simplify(bmap);
11776 return isl_basic_map_finalize(bmap);
11777 error:
11778 isl_space_free(dim);
11779 isl_mat_free(eq);
11780 isl_mat_free(ineq);
11781 return NULL;
11784 __isl_give isl_mat *isl_basic_set_equalities_matrix(
11785 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11786 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11788 return isl_basic_map_equalities_matrix(bset_to_bmap(bset),
11789 c1, c2, c3, c4, isl_dim_in);
11792 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
11793 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11794 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11796 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset),
11797 c1, c2, c3, c4, isl_dim_in);
11800 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
11801 __isl_take isl_space *dim,
11802 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11803 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11805 isl_basic_map *bmap;
11806 bmap = isl_basic_map_from_constraint_matrices(dim, eq, ineq,
11807 c1, c2, c3, c4, isl_dim_in);
11808 return bset_from_bmap(bmap);
11811 isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
11813 if (!bmap)
11814 return isl_bool_error;
11816 return isl_space_can_zip(bmap->dim);
11819 isl_bool isl_map_can_zip(__isl_keep isl_map *map)
11821 if (!map)
11822 return isl_bool_error;
11824 return isl_space_can_zip(map->dim);
11827 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
11828 * (A -> C) -> (B -> D).
11830 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
11832 unsigned pos;
11833 unsigned n1;
11834 unsigned n2;
11836 if (!bmap)
11837 return NULL;
11839 if (!isl_basic_map_can_zip(bmap))
11840 isl_die(bmap->ctx, isl_error_invalid,
11841 "basic map cannot be zipped", goto error);
11842 pos = isl_basic_map_offset(bmap, isl_dim_in) +
11843 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
11844 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
11845 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
11846 bmap = isl_basic_map_cow(bmap);
11847 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
11848 if (!bmap)
11849 return NULL;
11850 bmap->dim = isl_space_zip(bmap->dim);
11851 if (!bmap->dim)
11852 goto error;
11853 bmap = isl_basic_map_mark_final(bmap);
11854 return bmap;
11855 error:
11856 isl_basic_map_free(bmap);
11857 return NULL;
11860 /* Given a map (A -> B) -> (C -> D), return the corresponding map
11861 * (A -> C) -> (B -> D).
11863 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
11865 int i;
11867 if (!map)
11868 return NULL;
11870 if (!isl_map_can_zip(map))
11871 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
11872 goto error);
11874 map = isl_map_cow(map);
11875 if (!map)
11876 return NULL;
11878 for (i = 0; i < map->n; ++i) {
11879 map->p[i] = isl_basic_map_zip(map->p[i]);
11880 if (!map->p[i])
11881 goto error;
11884 map->dim = isl_space_zip(map->dim);
11885 if (!map->dim)
11886 goto error;
11888 return map;
11889 error:
11890 isl_map_free(map);
11891 return NULL;
11894 /* Can we apply isl_basic_map_curry to "bmap"?
11895 * That is, does it have a nested relation in its domain?
11897 isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
11899 if (!bmap)
11900 return isl_bool_error;
11902 return isl_space_can_curry(bmap->dim);
11905 /* Can we apply isl_map_curry to "map"?
11906 * That is, does it have a nested relation in its domain?
11908 isl_bool isl_map_can_curry(__isl_keep isl_map *map)
11910 if (!map)
11911 return isl_bool_error;
11913 return isl_space_can_curry(map->dim);
11916 /* Given a basic map (A -> B) -> C, return the corresponding basic map
11917 * A -> (B -> C).
11919 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
11922 if (!bmap)
11923 return NULL;
11925 if (!isl_basic_map_can_curry(bmap))
11926 isl_die(bmap->ctx, isl_error_invalid,
11927 "basic map cannot be curried", goto error);
11928 bmap = isl_basic_map_cow(bmap);
11929 if (!bmap)
11930 return NULL;
11931 bmap->dim = isl_space_curry(bmap->dim);
11932 if (!bmap->dim)
11933 goto error;
11934 bmap = isl_basic_map_mark_final(bmap);
11935 return bmap;
11936 error:
11937 isl_basic_map_free(bmap);
11938 return NULL;
11941 /* Given a map (A -> B) -> C, return the corresponding map
11942 * A -> (B -> C).
11944 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
11946 return isl_map_change_space(map, &isl_map_can_curry,
11947 "map cannot be curried", &isl_space_curry);
11950 /* Can isl_map_range_curry be applied to "map"?
11951 * That is, does it have a nested relation in its range,
11952 * the domain of which is itself a nested relation?
11954 isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
11956 if (!map)
11957 return isl_bool_error;
11959 return isl_space_can_range_curry(map->dim);
11962 /* Given a map A -> ((B -> C) -> D), return the corresponding map
11963 * A -> (B -> (C -> D)).
11965 __isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
11967 return isl_map_change_space(map, &isl_map_can_range_curry,
11968 "map range cannot be curried",
11969 &isl_space_range_curry);
11972 /* Can we apply isl_basic_map_uncurry to "bmap"?
11973 * That is, does it have a nested relation in its domain?
11975 isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
11977 if (!bmap)
11978 return isl_bool_error;
11980 return isl_space_can_uncurry(bmap->dim);
11983 /* Can we apply isl_map_uncurry to "map"?
11984 * That is, does it have a nested relation in its domain?
11986 isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
11988 if (!map)
11989 return isl_bool_error;
11991 return isl_space_can_uncurry(map->dim);
11994 /* Given a basic map A -> (B -> C), return the corresponding basic map
11995 * (A -> B) -> C.
11997 __isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
12000 if (!bmap)
12001 return NULL;
12003 if (!isl_basic_map_can_uncurry(bmap))
12004 isl_die(bmap->ctx, isl_error_invalid,
12005 "basic map cannot be uncurried",
12006 return isl_basic_map_free(bmap));
12007 bmap = isl_basic_map_cow(bmap);
12008 if (!bmap)
12009 return NULL;
12010 bmap->dim = isl_space_uncurry(bmap->dim);
12011 if (!bmap->dim)
12012 return isl_basic_map_free(bmap);
12013 bmap = isl_basic_map_mark_final(bmap);
12014 return bmap;
12017 /* Given a map A -> (B -> C), return the corresponding map
12018 * (A -> B) -> C.
12020 __isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
12022 return isl_map_change_space(map, &isl_map_can_uncurry,
12023 "map cannot be uncurried", &isl_space_uncurry);
12026 /* Construct a basic map mapping the domain of the affine expression
12027 * to a one-dimensional range prescribed by the affine expression.
12028 * If "rational" is set, then construct a rational basic map.
12030 * A NaN affine expression cannot be converted to a basic map.
12032 static __isl_give isl_basic_map *isl_basic_map_from_aff2(
12033 __isl_take isl_aff *aff, int rational)
12035 int k;
12036 int pos;
12037 isl_bool is_nan;
12038 isl_local_space *ls;
12039 isl_basic_map *bmap = NULL;
12041 if (!aff)
12042 return NULL;
12043 is_nan = isl_aff_is_nan(aff);
12044 if (is_nan < 0)
12045 goto error;
12046 if (is_nan)
12047 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
12048 "cannot convert NaN", goto error);
12050 ls = isl_aff_get_local_space(aff);
12051 bmap = isl_basic_map_from_local_space(ls);
12052 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
12053 k = isl_basic_map_alloc_equality(bmap);
12054 if (k < 0)
12055 goto error;
12057 pos = isl_basic_map_offset(bmap, isl_dim_out);
12058 isl_seq_cpy(bmap->eq[k], aff->v->el + 1, pos);
12059 isl_int_neg(bmap->eq[k][pos], aff->v->el[0]);
12060 isl_seq_cpy(bmap->eq[k] + pos + 1, aff->v->el + 1 + pos,
12061 aff->v->size - (pos + 1));
12063 isl_aff_free(aff);
12064 if (rational)
12065 bmap = isl_basic_map_set_rational(bmap);
12066 bmap = isl_basic_map_gauss(bmap, NULL);
12067 bmap = isl_basic_map_finalize(bmap);
12068 return bmap;
12069 error:
12070 isl_aff_free(aff);
12071 isl_basic_map_free(bmap);
12072 return NULL;
12075 /* Construct a basic map mapping the domain of the affine expression
12076 * to a one-dimensional range prescribed by the affine expression.
12078 __isl_give isl_basic_map *isl_basic_map_from_aff(__isl_take isl_aff *aff)
12080 return isl_basic_map_from_aff2(aff, 0);
12083 /* Construct a map mapping the domain of the affine expression
12084 * to a one-dimensional range prescribed by the affine expression.
12086 __isl_give isl_map *isl_map_from_aff(__isl_take isl_aff *aff)
12088 isl_basic_map *bmap;
12090 bmap = isl_basic_map_from_aff(aff);
12091 return isl_map_from_basic_map(bmap);
12094 /* Construct a basic map mapping the domain the multi-affine expression
12095 * to its range, with each dimension in the range equated to the
12096 * corresponding affine expression.
12097 * If "rational" is set, then construct a rational basic map.
12099 __isl_give isl_basic_map *isl_basic_map_from_multi_aff2(
12100 __isl_take isl_multi_aff *maff, int rational)
12102 int i;
12103 isl_space *space;
12104 isl_basic_map *bmap;
12106 if (!maff)
12107 return NULL;
12109 if (isl_space_dim(maff->space, isl_dim_out) != maff->n)
12110 isl_die(isl_multi_aff_get_ctx(maff), isl_error_internal,
12111 "invalid space", goto error);
12113 space = isl_space_domain(isl_multi_aff_get_space(maff));
12114 bmap = isl_basic_map_universe(isl_space_from_domain(space));
12115 if (rational)
12116 bmap = isl_basic_map_set_rational(bmap);
12118 for (i = 0; i < maff->n; ++i) {
12119 isl_aff *aff;
12120 isl_basic_map *bmap_i;
12122 aff = isl_aff_copy(maff->p[i]);
12123 bmap_i = isl_basic_map_from_aff2(aff, rational);
12125 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
12128 bmap = isl_basic_map_reset_space(bmap, isl_multi_aff_get_space(maff));
12130 isl_multi_aff_free(maff);
12131 return bmap;
12132 error:
12133 isl_multi_aff_free(maff);
12134 return NULL;
12137 /* Construct a basic map mapping the domain the multi-affine expression
12138 * to its range, with each dimension in the range equated to the
12139 * corresponding affine expression.
12141 __isl_give isl_basic_map *isl_basic_map_from_multi_aff(
12142 __isl_take isl_multi_aff *ma)
12144 return isl_basic_map_from_multi_aff2(ma, 0);
12147 /* Construct a map mapping the domain the multi-affine expression
12148 * to its range, with each dimension in the range equated to the
12149 * corresponding affine expression.
12151 __isl_give isl_map *isl_map_from_multi_aff(__isl_take isl_multi_aff *maff)
12153 isl_basic_map *bmap;
12155 bmap = isl_basic_map_from_multi_aff(maff);
12156 return isl_map_from_basic_map(bmap);
12159 /* Construct a basic map mapping a domain in the given space to
12160 * to an n-dimensional range, with n the number of elements in the list,
12161 * where each coordinate in the range is prescribed by the
12162 * corresponding affine expression.
12163 * The domains of all affine expressions in the list are assumed to match
12164 * domain_dim.
12166 __isl_give isl_basic_map *isl_basic_map_from_aff_list(
12167 __isl_take isl_space *domain_dim, __isl_take isl_aff_list *list)
12169 int i;
12170 isl_space *dim;
12171 isl_basic_map *bmap;
12173 if (!list)
12174 return NULL;
12176 dim = isl_space_from_domain(domain_dim);
12177 bmap = isl_basic_map_universe(dim);
12179 for (i = 0; i < list->n; ++i) {
12180 isl_aff *aff;
12181 isl_basic_map *bmap_i;
12183 aff = isl_aff_copy(list->p[i]);
12184 bmap_i = isl_basic_map_from_aff(aff);
12186 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
12189 isl_aff_list_free(list);
12190 return bmap;
12193 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
12194 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12196 return isl_map_equate(set, type1, pos1, type2, pos2);
12199 /* Construct a basic map where the given dimensions are equal to each other.
12201 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
12202 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12204 isl_basic_map *bmap = NULL;
12205 int i;
12207 if (!space)
12208 return NULL;
12210 if (pos1 >= isl_space_dim(space, type1))
12211 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12212 "index out of bounds", goto error);
12213 if (pos2 >= isl_space_dim(space, type2))
12214 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12215 "index out of bounds", goto error);
12217 if (type1 == type2 && pos1 == pos2)
12218 return isl_basic_map_universe(space);
12220 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
12221 i = isl_basic_map_alloc_equality(bmap);
12222 if (i < 0)
12223 goto error;
12224 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12225 pos1 += isl_basic_map_offset(bmap, type1);
12226 pos2 += isl_basic_map_offset(bmap, type2);
12227 isl_int_set_si(bmap->eq[i][pos1], -1);
12228 isl_int_set_si(bmap->eq[i][pos2], 1);
12229 bmap = isl_basic_map_finalize(bmap);
12230 isl_space_free(space);
12231 return bmap;
12232 error:
12233 isl_space_free(space);
12234 isl_basic_map_free(bmap);
12235 return NULL;
12238 /* Add a constraint imposing that the given two dimensions are equal.
12240 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
12241 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12243 isl_basic_map *eq;
12245 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12247 bmap = isl_basic_map_intersect(bmap, eq);
12249 return bmap;
12252 /* Add a constraint imposing that the given two dimensions are equal.
12254 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
12255 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12257 isl_basic_map *bmap;
12259 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
12261 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12263 return map;
12266 /* Add a constraint imposing that the given two dimensions have opposite values.
12268 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
12269 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12271 isl_basic_map *bmap = NULL;
12272 int i;
12274 if (!map)
12275 return NULL;
12277 if (pos1 >= isl_map_dim(map, type1))
12278 isl_die(map->ctx, isl_error_invalid,
12279 "index out of bounds", goto error);
12280 if (pos2 >= isl_map_dim(map, type2))
12281 isl_die(map->ctx, isl_error_invalid,
12282 "index out of bounds", goto error);
12284 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
12285 i = isl_basic_map_alloc_equality(bmap);
12286 if (i < 0)
12287 goto error;
12288 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12289 pos1 += isl_basic_map_offset(bmap, type1);
12290 pos2 += isl_basic_map_offset(bmap, type2);
12291 isl_int_set_si(bmap->eq[i][pos1], 1);
12292 isl_int_set_si(bmap->eq[i][pos2], 1);
12293 bmap = isl_basic_map_finalize(bmap);
12295 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12297 return map;
12298 error:
12299 isl_basic_map_free(bmap);
12300 isl_map_free(map);
12301 return NULL;
12304 /* Construct a constraint imposing that the value of the first dimension is
12305 * greater than or equal to that of the second.
12307 static __isl_give isl_constraint *constraint_order_ge(
12308 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
12309 enum isl_dim_type type2, int pos2)
12311 isl_constraint *c;
12313 if (!space)
12314 return NULL;
12316 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
12318 if (pos1 >= isl_constraint_dim(c, type1))
12319 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12320 "index out of bounds", return isl_constraint_free(c));
12321 if (pos2 >= isl_constraint_dim(c, type2))
12322 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12323 "index out of bounds", return isl_constraint_free(c));
12325 if (type1 == type2 && pos1 == pos2)
12326 return c;
12328 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
12329 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
12331 return c;
12334 /* Add a constraint imposing that the value of the first dimension is
12335 * greater than or equal to that of the second.
12337 __isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
12338 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12340 isl_constraint *c;
12341 isl_space *space;
12343 if (type1 == type2 && pos1 == pos2)
12344 return bmap;
12345 space = isl_basic_map_get_space(bmap);
12346 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12347 bmap = isl_basic_map_add_constraint(bmap, c);
12349 return bmap;
12352 /* Add a constraint imposing that the value of the first dimension is
12353 * greater than or equal to that of the second.
12355 __isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
12356 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12358 isl_constraint *c;
12359 isl_space *space;
12361 if (type1 == type2 && pos1 == pos2)
12362 return map;
12363 space = isl_map_get_space(map);
12364 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12365 map = isl_map_add_constraint(map, c);
12367 return map;
12370 /* Add a constraint imposing that the value of the first dimension is
12371 * less than or equal to that of the second.
12373 __isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
12374 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12376 return isl_map_order_ge(map, type2, pos2, type1, pos1);
12379 /* Construct a basic map where the value of the first dimension is
12380 * greater than that of the second.
12382 static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
12383 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12385 isl_basic_map *bmap = NULL;
12386 int i;
12388 if (!space)
12389 return NULL;
12391 if (pos1 >= isl_space_dim(space, type1))
12392 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12393 "index out of bounds", goto error);
12394 if (pos2 >= isl_space_dim(space, type2))
12395 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12396 "index out of bounds", goto error);
12398 if (type1 == type2 && pos1 == pos2)
12399 return isl_basic_map_empty(space);
12401 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
12402 i = isl_basic_map_alloc_inequality(bmap);
12403 if (i < 0)
12404 return isl_basic_map_free(bmap);
12405 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
12406 pos1 += isl_basic_map_offset(bmap, type1);
12407 pos2 += isl_basic_map_offset(bmap, type2);
12408 isl_int_set_si(bmap->ineq[i][pos1], 1);
12409 isl_int_set_si(bmap->ineq[i][pos2], -1);
12410 isl_int_set_si(bmap->ineq[i][0], -1);
12411 bmap = isl_basic_map_finalize(bmap);
12413 return bmap;
12414 error:
12415 isl_space_free(space);
12416 isl_basic_map_free(bmap);
12417 return NULL;
12420 /* Add a constraint imposing that the value of the first dimension is
12421 * greater than that of the second.
12423 __isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
12424 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12426 isl_basic_map *gt;
12428 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12430 bmap = isl_basic_map_intersect(bmap, gt);
12432 return bmap;
12435 /* Add a constraint imposing that the value of the first dimension is
12436 * greater than that of the second.
12438 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
12439 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12441 isl_basic_map *bmap;
12443 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
12445 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12447 return map;
12450 /* Add a constraint imposing that the value of the first dimension is
12451 * smaller than that of the second.
12453 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
12454 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12456 return isl_map_order_gt(map, type2, pos2, type1, pos1);
12459 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
12460 int pos)
12462 isl_aff *div;
12463 isl_local_space *ls;
12465 if (!bmap)
12466 return NULL;
12468 if (!isl_basic_map_divs_known(bmap))
12469 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12470 "some divs are unknown", return NULL);
12472 ls = isl_basic_map_get_local_space(bmap);
12473 div = isl_local_space_get_div(ls, pos);
12474 isl_local_space_free(ls);
12476 return div;
12479 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
12480 int pos)
12482 return isl_basic_map_get_div(bset, pos);
12485 /* Plug in "subs" for dimension "type", "pos" of "bset".
12487 * Let i be the dimension to replace and let "subs" be of the form
12489 * f/d
12491 * Any integer division with a non-zero coefficient for i,
12493 * floor((a i + g)/m)
12495 * is replaced by
12497 * floor((a f + d g)/(m d))
12499 * Constraints of the form
12501 * a i + g
12503 * are replaced by
12505 * a f + d g
12507 * We currently require that "subs" is an integral expression.
12508 * Handling rational expressions may require us to add stride constraints
12509 * as we do in isl_basic_set_preimage_multi_aff.
12511 __isl_give isl_basic_set *isl_basic_set_substitute(
12512 __isl_take isl_basic_set *bset,
12513 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12515 int i;
12516 isl_int v;
12517 isl_ctx *ctx;
12519 if (bset && isl_basic_set_plain_is_empty(bset))
12520 return bset;
12522 bset = isl_basic_set_cow(bset);
12523 if (!bset || !subs)
12524 goto error;
12526 ctx = isl_basic_set_get_ctx(bset);
12527 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
12528 isl_die(ctx, isl_error_invalid,
12529 "spaces don't match", goto error);
12530 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
12531 isl_die(ctx, isl_error_unsupported,
12532 "cannot handle divs yet", goto error);
12533 if (!isl_int_is_one(subs->v->el[0]))
12534 isl_die(ctx, isl_error_invalid,
12535 "can only substitute integer expressions", goto error);
12537 pos += isl_basic_set_offset(bset, type);
12539 isl_int_init(v);
12541 for (i = 0; i < bset->n_eq; ++i) {
12542 if (isl_int_is_zero(bset->eq[i][pos]))
12543 continue;
12544 isl_int_set(v, bset->eq[i][pos]);
12545 isl_int_set_si(bset->eq[i][pos], 0);
12546 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
12547 v, subs->v->el + 1, subs->v->size - 1);
12550 for (i = 0; i < bset->n_ineq; ++i) {
12551 if (isl_int_is_zero(bset->ineq[i][pos]))
12552 continue;
12553 isl_int_set(v, bset->ineq[i][pos]);
12554 isl_int_set_si(bset->ineq[i][pos], 0);
12555 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
12556 v, subs->v->el + 1, subs->v->size - 1);
12559 for (i = 0; i < bset->n_div; ++i) {
12560 if (isl_int_is_zero(bset->div[i][1 + pos]))
12561 continue;
12562 isl_int_set(v, bset->div[i][1 + pos]);
12563 isl_int_set_si(bset->div[i][1 + pos], 0);
12564 isl_seq_combine(bset->div[i] + 1,
12565 subs->v->el[0], bset->div[i] + 1,
12566 v, subs->v->el + 1, subs->v->size - 1);
12567 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
12570 isl_int_clear(v);
12572 bset = isl_basic_set_simplify(bset);
12573 return isl_basic_set_finalize(bset);
12574 error:
12575 isl_basic_set_free(bset);
12576 return NULL;
12579 /* Plug in "subs" for dimension "type", "pos" of "set".
12581 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
12582 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12584 int i;
12586 if (set && isl_set_plain_is_empty(set))
12587 return set;
12589 set = isl_set_cow(set);
12590 if (!set || !subs)
12591 goto error;
12593 for (i = set->n - 1; i >= 0; --i) {
12594 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
12595 if (remove_if_empty(set, i) < 0)
12596 goto error;
12599 return set;
12600 error:
12601 isl_set_free(set);
12602 return NULL;
12605 /* Check if the range of "ma" is compatible with the domain or range
12606 * (depending on "type") of "bmap".
12608 static isl_stat check_basic_map_compatible_range_multi_aff(
12609 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
12610 __isl_keep isl_multi_aff *ma)
12612 isl_bool m;
12613 isl_space *ma_space;
12615 ma_space = isl_multi_aff_get_space(ma);
12617 m = isl_space_has_equal_params(bmap->dim, ma_space);
12618 if (m < 0)
12619 goto error;
12620 if (!m)
12621 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12622 "parameters don't match", goto error);
12623 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
12624 if (m < 0)
12625 goto error;
12626 if (!m)
12627 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12628 "spaces don't match", goto error);
12630 isl_space_free(ma_space);
12631 return isl_stat_ok;
12632 error:
12633 isl_space_free(ma_space);
12634 return isl_stat_error;
12637 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12638 * coefficients before the transformed range of dimensions,
12639 * the "n_after" coefficients after the transformed range of dimensions
12640 * and the coefficients of the other divs in "bmap".
12642 static int set_ma_divs(__isl_keep isl_basic_map *bmap,
12643 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
12645 int i;
12646 int n_param;
12647 int n_set;
12648 isl_local_space *ls;
12650 if (n_div == 0)
12651 return 0;
12653 ls = isl_aff_get_domain_local_space(ma->p[0]);
12654 if (!ls)
12655 return -1;
12657 n_param = isl_local_space_dim(ls, isl_dim_param);
12658 n_set = isl_local_space_dim(ls, isl_dim_set);
12659 for (i = 0; i < n_div; ++i) {
12660 int o_bmap = 0, o_ls = 0;
12662 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
12663 o_bmap += 1 + 1 + n_param;
12664 o_ls += 1 + 1 + n_param;
12665 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
12666 o_bmap += n_before;
12667 isl_seq_cpy(bmap->div[i] + o_bmap,
12668 ls->div->row[i] + o_ls, n_set);
12669 o_bmap += n_set;
12670 o_ls += n_set;
12671 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
12672 o_bmap += n_after;
12673 isl_seq_cpy(bmap->div[i] + o_bmap,
12674 ls->div->row[i] + o_ls, n_div);
12675 o_bmap += n_div;
12676 o_ls += n_div;
12677 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
12678 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
12679 goto error;
12682 isl_local_space_free(ls);
12683 return 0;
12684 error:
12685 isl_local_space_free(ls);
12686 return -1;
12689 /* How many stride constraints does "ma" enforce?
12690 * That is, how many of the affine expressions have a denominator
12691 * different from one?
12693 static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
12695 int i;
12696 int strides = 0;
12698 for (i = 0; i < ma->n; ++i)
12699 if (!isl_int_is_one(ma->p[i]->v->el[0]))
12700 strides++;
12702 return strides;
12705 /* For each affine expression in ma of the form
12707 * x_i = (f_i y + h_i)/m_i
12709 * with m_i different from one, add a constraint to "bmap"
12710 * of the form
12712 * f_i y + h_i = m_i alpha_i
12714 * with alpha_i an additional existentially quantified variable.
12716 * The input variables of "ma" correspond to a subset of the variables
12717 * of "bmap". There are "n_before" variables in "bmap" before this
12718 * subset and "n_after" variables after this subset.
12719 * The integer divisions of the affine expressions in "ma" are assumed
12720 * to have been aligned. There are "n_div_ma" of them and
12721 * they appear first in "bmap", straight after the "n_after" variables.
12723 static __isl_give isl_basic_map *add_ma_strides(
12724 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
12725 int n_before, int n_after, int n_div_ma)
12727 int i, k;
12728 int div;
12729 int total;
12730 int n_param;
12731 int n_in;
12733 total = isl_basic_map_total_dim(bmap);
12734 n_param = isl_multi_aff_dim(ma, isl_dim_param);
12735 n_in = isl_multi_aff_dim(ma, isl_dim_in);
12736 for (i = 0; i < ma->n; ++i) {
12737 int o_bmap = 0, o_ma = 1;
12739 if (isl_int_is_one(ma->p[i]->v->el[0]))
12740 continue;
12741 div = isl_basic_map_alloc_div(bmap);
12742 k = isl_basic_map_alloc_equality(bmap);
12743 if (div < 0 || k < 0)
12744 goto error;
12745 isl_int_set_si(bmap->div[div][0], 0);
12746 isl_seq_cpy(bmap->eq[k] + o_bmap,
12747 ma->p[i]->v->el + o_ma, 1 + n_param);
12748 o_bmap += 1 + n_param;
12749 o_ma += 1 + n_param;
12750 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
12751 o_bmap += n_before;
12752 isl_seq_cpy(bmap->eq[k] + o_bmap,
12753 ma->p[i]->v->el + o_ma, n_in);
12754 o_bmap += n_in;
12755 o_ma += n_in;
12756 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
12757 o_bmap += n_after;
12758 isl_seq_cpy(bmap->eq[k] + o_bmap,
12759 ma->p[i]->v->el + o_ma, n_div_ma);
12760 o_bmap += n_div_ma;
12761 o_ma += n_div_ma;
12762 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
12763 isl_int_neg(bmap->eq[k][1 + total], ma->p[i]->v->el[0]);
12764 total++;
12767 return bmap;
12768 error:
12769 isl_basic_map_free(bmap);
12770 return NULL;
12773 /* Replace the domain or range space (depending on "type) of "space" by "set".
12775 static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
12776 enum isl_dim_type type, __isl_take isl_space *set)
12778 if (type == isl_dim_in) {
12779 space = isl_space_range(space);
12780 space = isl_space_map_from_domain_and_range(set, space);
12781 } else {
12782 space = isl_space_domain(space);
12783 space = isl_space_map_from_domain_and_range(space, set);
12786 return space;
12789 /* Compute the preimage of the domain or range (depending on "type")
12790 * of "bmap" under the function represented by "ma".
12791 * In other words, plug in "ma" in the domain or range of "bmap".
12792 * The result is a basic map that lives in the same space as "bmap"
12793 * except that the domain or range has been replaced by
12794 * the domain space of "ma".
12796 * If bmap is represented by
12798 * A(p) + S u + B x + T v + C(divs) >= 0,
12800 * where u and x are input and output dimensions if type == isl_dim_out
12801 * while x and v are input and output dimensions if type == isl_dim_in,
12802 * and ma is represented by
12804 * x = D(p) + F(y) + G(divs')
12806 * then the result is
12808 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12810 * The divs in the input set are similarly adjusted.
12811 * In particular
12813 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12815 * becomes
12817 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12818 * B_i G(divs') + c_i(divs))/n_i)
12820 * If bmap is not a rational map and if F(y) involves any denominators
12822 * x_i = (f_i y + h_i)/m_i
12824 * then additional constraints are added to ensure that we only
12825 * map back integer points. That is we enforce
12827 * f_i y + h_i = m_i alpha_i
12829 * with alpha_i an additional existentially quantified variable.
12831 * We first copy over the divs from "ma".
12832 * Then we add the modified constraints and divs from "bmap".
12833 * Finally, we add the stride constraints, if needed.
12835 __isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
12836 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
12837 __isl_take isl_multi_aff *ma)
12839 int i, k;
12840 isl_space *space;
12841 isl_basic_map *res = NULL;
12842 int n_before, n_after, n_div_bmap, n_div_ma;
12843 isl_int f, c1, c2, g;
12844 isl_bool rational;
12845 int strides;
12847 isl_int_init(f);
12848 isl_int_init(c1);
12849 isl_int_init(c2);
12850 isl_int_init(g);
12852 ma = isl_multi_aff_align_divs(ma);
12853 if (!bmap || !ma)
12854 goto error;
12855 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
12856 goto error;
12858 if (type == isl_dim_in) {
12859 n_before = 0;
12860 n_after = isl_basic_map_dim(bmap, isl_dim_out);
12861 } else {
12862 n_before = isl_basic_map_dim(bmap, isl_dim_in);
12863 n_after = 0;
12865 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
12866 n_div_ma = ma->n ? isl_aff_dim(ma->p[0], isl_dim_div) : 0;
12868 space = isl_multi_aff_get_domain_space(ma);
12869 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
12870 rational = isl_basic_map_is_rational(bmap);
12871 strides = rational ? 0 : multi_aff_strides(ma);
12872 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
12873 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
12874 if (rational)
12875 res = isl_basic_map_set_rational(res);
12877 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
12878 if (isl_basic_map_alloc_div(res) < 0)
12879 goto error;
12881 if (set_ma_divs(res, ma, n_before, n_after, n_div_ma) < 0)
12882 goto error;
12884 for (i = 0; i < bmap->n_eq; ++i) {
12885 k = isl_basic_map_alloc_equality(res);
12886 if (k < 0)
12887 goto error;
12888 isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
12889 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
12892 for (i = 0; i < bmap->n_ineq; ++i) {
12893 k = isl_basic_map_alloc_inequality(res);
12894 if (k < 0)
12895 goto error;
12896 isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
12897 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
12900 for (i = 0; i < bmap->n_div; ++i) {
12901 if (isl_int_is_zero(bmap->div[i][0])) {
12902 isl_int_set_si(res->div[n_div_ma + i][0], 0);
12903 continue;
12905 isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
12906 n_before, n_after, n_div_ma, n_div_bmap,
12907 f, c1, c2, g, 1);
12910 if (strides)
12911 res = add_ma_strides(res, ma, n_before, n_after, n_div_ma);
12913 isl_int_clear(f);
12914 isl_int_clear(c1);
12915 isl_int_clear(c2);
12916 isl_int_clear(g);
12917 isl_basic_map_free(bmap);
12918 isl_multi_aff_free(ma);
12919 res = isl_basic_map_simplify(res);
12920 return isl_basic_map_finalize(res);
12921 error:
12922 isl_int_clear(f);
12923 isl_int_clear(c1);
12924 isl_int_clear(c2);
12925 isl_int_clear(g);
12926 isl_basic_map_free(bmap);
12927 isl_multi_aff_free(ma);
12928 isl_basic_map_free(res);
12929 return NULL;
12932 /* Compute the preimage of "bset" under the function represented by "ma".
12933 * In other words, plug in "ma" in "bset". The result is a basic set
12934 * that lives in the domain space of "ma".
12936 __isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
12937 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
12939 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
12942 /* Compute the preimage of the domain of "bmap" under the function
12943 * represented by "ma".
12944 * In other words, plug in "ma" in the domain of "bmap".
12945 * The result is a basic map that lives in the same space as "bmap"
12946 * except that the domain has been replaced by the domain space of "ma".
12948 __isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
12949 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
12951 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
12954 /* Compute the preimage of the range of "bmap" under the function
12955 * represented by "ma".
12956 * In other words, plug in "ma" in the range of "bmap".
12957 * The result is a basic map that lives in the same space as "bmap"
12958 * except that the range has been replaced by the domain space of "ma".
12960 __isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
12961 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
12963 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
12966 /* Check if the range of "ma" is compatible with the domain or range
12967 * (depending on "type") of "map".
12968 * Return isl_stat_error if anything is wrong.
12970 static isl_stat check_map_compatible_range_multi_aff(
12971 __isl_keep isl_map *map, enum isl_dim_type type,
12972 __isl_keep isl_multi_aff *ma)
12974 isl_bool m;
12975 isl_space *ma_space;
12977 ma_space = isl_multi_aff_get_space(ma);
12978 m = isl_space_tuple_is_equal(map->dim, type, ma_space, isl_dim_out);
12979 isl_space_free(ma_space);
12980 if (m < 0)
12981 return isl_stat_error;
12982 if (!m)
12983 isl_die(isl_map_get_ctx(map), isl_error_invalid,
12984 "spaces don't match", return isl_stat_error);
12985 return isl_stat_ok;
12988 /* Compute the preimage of the domain or range (depending on "type")
12989 * of "map" under the function represented by "ma".
12990 * In other words, plug in "ma" in the domain or range of "map".
12991 * The result is a map that lives in the same space as "map"
12992 * except that the domain or range has been replaced by
12993 * the domain space of "ma".
12995 * The parameters are assumed to have been aligned.
12997 static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
12998 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13000 int i;
13001 isl_space *space;
13003 map = isl_map_cow(map);
13004 ma = isl_multi_aff_align_divs(ma);
13005 if (!map || !ma)
13006 goto error;
13007 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
13008 goto error;
13010 for (i = 0; i < map->n; ++i) {
13011 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
13012 isl_multi_aff_copy(ma));
13013 if (!map->p[i])
13014 goto error;
13017 space = isl_multi_aff_get_domain_space(ma);
13018 space = isl_space_set(isl_map_get_space(map), type, space);
13020 isl_space_free(map->dim);
13021 map->dim = space;
13022 if (!map->dim)
13023 goto error;
13025 isl_multi_aff_free(ma);
13026 if (map->n > 1)
13027 ISL_F_CLR(map, ISL_MAP_DISJOINT);
13028 ISL_F_CLR(map, ISL_SET_NORMALIZED);
13029 return map;
13030 error:
13031 isl_multi_aff_free(ma);
13032 isl_map_free(map);
13033 return NULL;
13036 /* Compute the preimage of the domain or range (depending on "type")
13037 * of "map" under the function represented by "ma".
13038 * In other words, plug in "ma" in the domain or range of "map".
13039 * The result is a map that lives in the same space as "map"
13040 * except that the domain or range has been replaced by
13041 * the domain space of "ma".
13043 __isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
13044 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13046 isl_bool aligned;
13048 if (!map || !ma)
13049 goto error;
13051 aligned = isl_map_space_has_equal_params(map, ma->space);
13052 if (aligned < 0)
13053 goto error;
13054 if (aligned)
13055 return map_preimage_multi_aff(map, type, ma);
13057 if (isl_map_check_named_params(map) < 0)
13058 goto error;
13059 if (!isl_space_has_named_params(ma->space))
13060 isl_die(map->ctx, isl_error_invalid,
13061 "unaligned unnamed parameters", goto error);
13062 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
13063 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
13065 return map_preimage_multi_aff(map, type, ma);
13066 error:
13067 isl_multi_aff_free(ma);
13068 return isl_map_free(map);
13071 /* Compute the preimage of "set" under the function represented by "ma".
13072 * In other words, plug in "ma" in "set". The result is a set
13073 * that lives in the domain space of "ma".
13075 __isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
13076 __isl_take isl_multi_aff *ma)
13078 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
13081 /* Compute the preimage of the domain of "map" under the function
13082 * represented by "ma".
13083 * In other words, plug in "ma" in the domain of "map".
13084 * The result is a map that lives in the same space as "map"
13085 * except that the domain has been replaced by the domain space of "ma".
13087 __isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
13088 __isl_take isl_multi_aff *ma)
13090 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
13093 /* Compute the preimage of the range of "map" under the function
13094 * represented by "ma".
13095 * In other words, plug in "ma" in the range of "map".
13096 * The result is a map that lives in the same space as "map"
13097 * except that the range has been replaced by the domain space of "ma".
13099 __isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
13100 __isl_take isl_multi_aff *ma)
13102 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
13105 /* Compute the preimage of "map" under the function represented by "pma".
13106 * In other words, plug in "pma" in the domain or range of "map".
13107 * The result is a map that lives in the same space as "map",
13108 * except that the space of type "type" has been replaced by
13109 * the domain space of "pma".
13111 * The parameters of "map" and "pma" are assumed to have been aligned.
13113 static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
13114 __isl_take isl_map *map, enum isl_dim_type type,
13115 __isl_take isl_pw_multi_aff *pma)
13117 int i;
13118 isl_map *res;
13120 if (!pma)
13121 goto error;
13123 if (pma->n == 0) {
13124 isl_pw_multi_aff_free(pma);
13125 res = isl_map_empty(isl_map_get_space(map));
13126 isl_map_free(map);
13127 return res;
13130 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13131 isl_multi_aff_copy(pma->p[0].maff));
13132 if (type == isl_dim_in)
13133 res = isl_map_intersect_domain(res,
13134 isl_map_copy(pma->p[0].set));
13135 else
13136 res = isl_map_intersect_range(res,
13137 isl_map_copy(pma->p[0].set));
13139 for (i = 1; i < pma->n; ++i) {
13140 isl_map *res_i;
13142 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13143 isl_multi_aff_copy(pma->p[i].maff));
13144 if (type == isl_dim_in)
13145 res_i = isl_map_intersect_domain(res_i,
13146 isl_map_copy(pma->p[i].set));
13147 else
13148 res_i = isl_map_intersect_range(res_i,
13149 isl_map_copy(pma->p[i].set));
13150 res = isl_map_union(res, res_i);
13153 isl_pw_multi_aff_free(pma);
13154 isl_map_free(map);
13155 return res;
13156 error:
13157 isl_pw_multi_aff_free(pma);
13158 isl_map_free(map);
13159 return NULL;
13162 /* Compute the preimage of "map" under the function represented by "pma".
13163 * In other words, plug in "pma" in the domain or range of "map".
13164 * The result is a map that lives in the same space as "map",
13165 * except that the space of type "type" has been replaced by
13166 * the domain space of "pma".
13168 __isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
13169 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
13171 isl_bool aligned;
13173 if (!map || !pma)
13174 goto error;
13176 aligned = isl_map_space_has_equal_params(map, pma->dim);
13177 if (aligned < 0)
13178 goto error;
13179 if (aligned)
13180 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13182 if (isl_map_check_named_params(map) < 0)
13183 goto error;
13184 if (!isl_space_has_named_params(pma->dim))
13185 isl_die(map->ctx, isl_error_invalid,
13186 "unaligned unnamed parameters", goto error);
13187 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
13188 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
13190 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13191 error:
13192 isl_pw_multi_aff_free(pma);
13193 return isl_map_free(map);
13196 /* Compute the preimage of "set" under the function represented by "pma".
13197 * In other words, plug in "pma" in "set". The result is a set
13198 * that lives in the domain space of "pma".
13200 __isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
13201 __isl_take isl_pw_multi_aff *pma)
13203 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
13206 /* Compute the preimage of the domain of "map" under the function
13207 * represented by "pma".
13208 * In other words, plug in "pma" in the domain of "map".
13209 * The result is a map that lives in the same space as "map",
13210 * except that domain space has been replaced by the domain space of "pma".
13212 __isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
13213 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13215 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
13218 /* Compute the preimage of the range of "map" under the function
13219 * represented by "pma".
13220 * In other words, plug in "pma" in the range of "map".
13221 * The result is a map that lives in the same space as "map",
13222 * except that range space has been replaced by the domain space of "pma".
13224 __isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
13225 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13227 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
13230 /* Compute the preimage of "map" under the function represented by "mpa".
13231 * In other words, plug in "mpa" in the domain or range of "map".
13232 * The result is a map that lives in the same space as "map",
13233 * except that the space of type "type" has been replaced by
13234 * the domain space of "mpa".
13236 * If the map does not involve any constraints that refer to the
13237 * dimensions of the substituted space, then the only possible
13238 * effect of "mpa" on the map is to map the space to a different space.
13239 * We create a separate isl_multi_aff to effectuate this change
13240 * in order to avoid spurious splitting of the map along the pieces
13241 * of "mpa".
13243 __isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
13244 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
13246 int n;
13247 isl_pw_multi_aff *pma;
13249 if (!map || !mpa)
13250 goto error;
13252 n = isl_map_dim(map, type);
13253 if (!isl_map_involves_dims(map, type, 0, n)) {
13254 isl_space *space;
13255 isl_multi_aff *ma;
13257 space = isl_multi_pw_aff_get_space(mpa);
13258 isl_multi_pw_aff_free(mpa);
13259 ma = isl_multi_aff_zero(space);
13260 return isl_map_preimage_multi_aff(map, type, ma);
13263 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
13264 return isl_map_preimage_pw_multi_aff(map, type, pma);
13265 error:
13266 isl_map_free(map);
13267 isl_multi_pw_aff_free(mpa);
13268 return NULL;
13271 /* Compute the preimage of "map" under the function represented by "mpa".
13272 * In other words, plug in "mpa" in the domain "map".
13273 * The result is a map that lives in the same space as "map",
13274 * except that domain space has been replaced by the domain space of "mpa".
13276 __isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
13277 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
13279 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
13282 /* Compute the preimage of "set" by the function represented by "mpa".
13283 * In other words, plug in "mpa" in "set".
13285 __isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
13286 __isl_take isl_multi_pw_aff *mpa)
13288 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);
13291 /* Are the "n" "coefficients" starting at "first" of the integer division
13292 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13293 * to each other?
13294 * The "coefficient" at position 0 is the denominator.
13295 * The "coefficient" at position 1 is the constant term.
13297 isl_bool isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map *bmap1,
13298 int pos1, __isl_keep isl_basic_map *bmap2, int pos2,
13299 unsigned first, unsigned n)
13301 if (isl_basic_map_check_range(bmap1, isl_dim_div, pos1, 1) < 0)
13302 return isl_bool_error;
13303 if (isl_basic_map_check_range(bmap2, isl_dim_div, pos2, 1) < 0)
13304 return isl_bool_error;
13305 return isl_seq_eq(bmap1->div[pos1] + first,
13306 bmap2->div[pos2] + first, n);
13309 /* Are the integer division expressions at position "pos1" in "bmap1" and
13310 * "pos2" in "bmap2" equal to each other, except that the constant terms
13311 * are different?
13313 isl_bool isl_basic_map_equal_div_expr_except_constant(
13314 __isl_keep isl_basic_map *bmap1, int pos1,
13315 __isl_keep isl_basic_map *bmap2, int pos2)
13317 isl_bool equal;
13318 unsigned total;
13320 if (!bmap1 || !bmap2)
13321 return isl_bool_error;
13322 total = isl_basic_map_total_dim(bmap1);
13323 if (total != isl_basic_map_total_dim(bmap2))
13324 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
13325 "incomparable div expressions", return isl_bool_error);
13326 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13327 0, 1);
13328 if (equal < 0 || !equal)
13329 return equal;
13330 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13331 1, 1);
13332 if (equal < 0 || equal)
13333 return isl_bool_not(equal);
13334 return isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13335 2, total);
13338 /* Replace the numerator of the constant term of the integer division
13339 * expression at position "div" in "bmap" by "value".
13340 * The caller guarantees that this does not change the meaning
13341 * of the input.
13343 __isl_give isl_basic_map *isl_basic_map_set_div_expr_constant_num_si_inplace(
13344 __isl_take isl_basic_map *bmap, int div, int value)
13346 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
13347 return isl_basic_map_free(bmap);
13349 isl_int_set_si(bmap->div[div][1], value);
13351 return bmap;
13354 /* Is the point "inner" internal to inequality constraint "ineq"
13355 * of "bset"?
13356 * The point is considered to be internal to the inequality constraint,
13357 * if it strictly lies on the positive side of the inequality constraint,
13358 * or if it lies on the constraint and the constraint is lexico-positive.
13360 static isl_bool is_internal(__isl_keep isl_vec *inner,
13361 __isl_keep isl_basic_set *bset, int ineq)
13363 isl_ctx *ctx;
13364 int pos;
13365 unsigned total;
13367 if (!inner || !bset)
13368 return isl_bool_error;
13370 ctx = isl_basic_set_get_ctx(bset);
13371 isl_seq_inner_product(inner->el, bset->ineq[ineq], inner->size,
13372 &ctx->normalize_gcd);
13373 if (!isl_int_is_zero(ctx->normalize_gcd))
13374 return isl_int_is_nonneg(ctx->normalize_gcd);
13376 total = isl_basic_set_dim(bset, isl_dim_all);
13377 pos = isl_seq_first_non_zero(bset->ineq[ineq] + 1, total);
13378 return isl_int_is_pos(bset->ineq[ineq][1 + pos]);
13381 /* Tighten the inequality constraints of "bset" that are outward with respect
13382 * to the point "vec".
13383 * That is, tighten the constraints that are not satisfied by "vec".
13385 * "vec" is a point internal to some superset S of "bset" that is used
13386 * to make the subsets of S disjoint, by tightening one half of the constraints
13387 * that separate two subsets. In particular, the constraints of S
13388 * are all satisfied by "vec" and should not be tightened.
13389 * Of the internal constraints, those that have "vec" on the outside
13390 * are tightened. The shared facet is included in the adjacent subset
13391 * with the opposite constraint.
13392 * For constraints that saturate "vec", this criterion cannot be used
13393 * to determine which of the two sides should be tightened.
13394 * Instead, the sign of the first non-zero coefficient is used
13395 * to make this choice. Note that this second criterion is never used
13396 * on the constraints of S since "vec" is interior to "S".
13398 __isl_give isl_basic_set *isl_basic_set_tighten_outward(
13399 __isl_take isl_basic_set *bset, __isl_keep isl_vec *vec)
13401 int j;
13403 bset = isl_basic_set_cow(bset);
13404 if (!bset)
13405 return NULL;
13406 for (j = 0; j < bset->n_ineq; ++j) {
13407 isl_bool internal;
13409 internal = is_internal(vec, bset, j);
13410 if (internal < 0)
13411 return isl_basic_set_free(bset);
13412 if (internal)
13413 continue;
13414 isl_int_sub_ui(bset->ineq[j][0], bset->ineq[j][0], 1);
13417 return bset;
13420 /* Replace the variables x of type "type" starting at "first" in "bmap"
13421 * by x' with x = M x' with M the matrix trans.
13422 * That is, replace the corresponding coefficients c by c M.
13424 * The transformation matrix should be a square matrix.
13426 __isl_give isl_basic_map *isl_basic_map_transform_dims(
13427 __isl_take isl_basic_map *bmap, enum isl_dim_type type, unsigned first,
13428 __isl_take isl_mat *trans)
13430 unsigned pos;
13432 bmap = isl_basic_map_cow(bmap);
13433 if (!bmap || !trans)
13434 goto error;
13436 if (trans->n_row != trans->n_col)
13437 isl_die(trans->ctx, isl_error_invalid,
13438 "expecting square transformation matrix", goto error);
13439 if (first + trans->n_row > isl_basic_map_dim(bmap, type))
13440 isl_die(trans->ctx, isl_error_invalid,
13441 "oversized transformation matrix", goto error);
13443 pos = isl_basic_map_offset(bmap, type) + first;
13445 if (isl_mat_sub_transform(bmap->eq, bmap->n_eq, pos,
13446 isl_mat_copy(trans)) < 0)
13447 goto error;
13448 if (isl_mat_sub_transform(bmap->ineq, bmap->n_ineq, pos,
13449 isl_mat_copy(trans)) < 0)
13450 goto error;
13451 if (isl_mat_sub_transform(bmap->div, bmap->n_div, 1 + pos,
13452 isl_mat_copy(trans)) < 0)
13453 goto error;
13455 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
13456 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
13458 isl_mat_free(trans);
13459 return bmap;
13460 error:
13461 isl_mat_free(trans);
13462 isl_basic_map_free(bmap);
13463 return NULL;
13466 /* Replace the variables x of type "type" starting at "first" in "bset"
13467 * by x' with x = M x' with M the matrix trans.
13468 * That is, replace the corresponding coefficients c by c M.
13470 * The transformation matrix should be a square matrix.
13472 __isl_give isl_basic_set *isl_basic_set_transform_dims(
13473 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned first,
13474 __isl_take isl_mat *trans)
13476 return isl_basic_map_transform_dims(bset, type, first, trans);