isl_map_n_*: add memory management annotation
[isl.git] / isl_map.c
blobfcb9d3ddc42d69f1c906df932b2202c888c03deb
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(__isl_keep 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(__isl_keep const 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(__isl_keep const 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(__isl_keep const isl_map *map)
199 return map ? map->dim->n_in : 0;
202 unsigned isl_map_n_out(__isl_keep const isl_map *map)
204 return map ? map->dim->n_out : 0;
207 unsigned isl_map_n_param(__isl_keep const 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 __isl_give isl_basic_map *isl_basic_map_dup(__isl_keep 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 __isl_give isl_basic_set *isl_basic_set_copy(__isl_keep 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 __isl_give isl_set *isl_set_copy(__isl_keep isl_set *set)
1248 if (!set)
1249 return NULL;
1251 set->ref++;
1252 return set;
1255 __isl_give isl_basic_map *isl_basic_map_copy(__isl_keep 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(__isl_keep 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(__isl_keep 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 __isl_give isl_basic_map *isl_basic_map_extend_space(
1769 __isl_take isl_basic_map *base, __isl_take isl_space *dim,
1770 unsigned extra, 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 __isl_give isl_basic_set *isl_basic_set_cow(__isl_take isl_basic_set *bset)
1875 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset)));
1878 __isl_give isl_basic_map *isl_basic_map_cow(__isl_take 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 __isl_give isl_set *isl_set_cow(__isl_take 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 __isl_give isl_basic_map *isl_basic_map_set_to_empty(
1988 __isl_take isl_basic_map *bmap)
1990 int i = 0;
1991 unsigned total;
1992 if (!bmap)
1993 goto error;
1994 total = isl_basic_map_total_dim(bmap);
1995 if (isl_basic_map_free_div(bmap, bmap->n_div) < 0)
1996 return isl_basic_map_free(bmap);
1997 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
1998 if (bmap->n_eq > 0)
1999 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
2000 else {
2001 i = isl_basic_map_alloc_equality(bmap);
2002 if (i < 0)
2003 goto error;
2005 isl_int_set_si(bmap->eq[i][0], 1);
2006 isl_seq_clr(bmap->eq[i]+1, total);
2007 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
2008 isl_vec_free(bmap->sample);
2009 bmap->sample = NULL;
2010 return isl_basic_map_finalize(bmap);
2011 error:
2012 isl_basic_map_free(bmap);
2013 return NULL;
2016 struct isl_basic_set *isl_basic_set_set_to_empty(struct isl_basic_set *bset)
2018 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset)));
2021 __isl_give isl_basic_map *isl_basic_map_set_rational(
2022 __isl_take isl_basic_map *bmap)
2024 if (!bmap)
2025 return NULL;
2027 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
2028 return bmap;
2030 bmap = isl_basic_map_cow(bmap);
2031 if (!bmap)
2032 return NULL;
2034 ISL_F_SET(bmap, ISL_BASIC_MAP_RATIONAL);
2036 return isl_basic_map_finalize(bmap);
2039 __isl_give isl_basic_set *isl_basic_set_set_rational(
2040 __isl_take isl_basic_set *bset)
2042 return isl_basic_map_set_rational(bset);
2045 __isl_give isl_basic_set *isl_basic_set_set_integral(
2046 __isl_take isl_basic_set *bset)
2048 if (!bset)
2049 return NULL;
2051 if (!ISL_F_ISSET(bset, ISL_BASIC_MAP_RATIONAL))
2052 return bset;
2054 bset = isl_basic_set_cow(bset);
2055 if (!bset)
2056 return NULL;
2058 ISL_F_CLR(bset, ISL_BASIC_MAP_RATIONAL);
2060 return isl_basic_set_finalize(bset);
2063 __isl_give isl_map *isl_map_set_rational(__isl_take isl_map *map)
2065 int i;
2067 map = isl_map_cow(map);
2068 if (!map)
2069 return NULL;
2070 for (i = 0; i < map->n; ++i) {
2071 map->p[i] = isl_basic_map_set_rational(map->p[i]);
2072 if (!map->p[i])
2073 goto error;
2075 return map;
2076 error:
2077 isl_map_free(map);
2078 return NULL;
2081 __isl_give isl_set *isl_set_set_rational(__isl_take isl_set *set)
2083 return isl_map_set_rational(set);
2086 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
2087 * of "bmap").
2089 static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
2091 isl_int *t = bmap->div[a];
2092 bmap->div[a] = bmap->div[b];
2093 bmap->div[b] = t;
2096 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
2097 * div definitions accordingly.
2099 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
2101 int i;
2102 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
2104 swap_div(bmap, a, b);
2106 for (i = 0; i < bmap->n_eq; ++i)
2107 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
2109 for (i = 0; i < bmap->n_ineq; ++i)
2110 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
2112 for (i = 0; i < bmap->n_div; ++i)
2113 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
2114 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2117 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
2118 * div definitions accordingly.
2120 void isl_basic_set_swap_div(__isl_keep isl_basic_set *bset, int a, int b)
2122 isl_basic_map_swap_div(bset, a, b);
2125 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
2127 isl_seq_cpy(c, c + n, rem);
2128 isl_seq_clr(c + rem, n);
2131 /* Drop n dimensions starting at first.
2133 * In principle, this frees up some extra variables as the number
2134 * of columns remains constant, but we would have to extend
2135 * the div array too as the number of rows in this array is assumed
2136 * to be equal to extra.
2138 struct isl_basic_set *isl_basic_set_drop_dims(
2139 struct isl_basic_set *bset, unsigned first, unsigned n)
2141 return isl_basic_map_drop(bset_to_bmap(bset), isl_dim_set, first, n);
2144 /* Move "n" divs starting at "first" to the end of the list of divs.
2146 static struct isl_basic_map *move_divs_last(struct isl_basic_map *bmap,
2147 unsigned first, unsigned n)
2149 isl_int **div;
2150 int i;
2152 if (first + n == bmap->n_div)
2153 return bmap;
2155 div = isl_alloc_array(bmap->ctx, isl_int *, n);
2156 if (!div)
2157 goto error;
2158 for (i = 0; i < n; ++i)
2159 div[i] = bmap->div[first + i];
2160 for (i = 0; i < bmap->n_div - first - n; ++i)
2161 bmap->div[first + i] = bmap->div[first + n + i];
2162 for (i = 0; i < n; ++i)
2163 bmap->div[bmap->n_div - n + i] = div[i];
2164 free(div);
2165 return bmap;
2166 error:
2167 isl_basic_map_free(bmap);
2168 return NULL;
2171 /* Drop "n" dimensions of type "type" starting at "first".
2173 * In principle, this frees up some extra variables as the number
2174 * of columns remains constant, but we would have to extend
2175 * the div array too as the number of rows in this array is assumed
2176 * to be equal to extra.
2178 __isl_give isl_basic_map *isl_basic_map_drop(__isl_take isl_basic_map *bmap,
2179 enum isl_dim_type type, unsigned first, unsigned n)
2181 int i;
2182 unsigned dim;
2183 unsigned offset;
2184 unsigned left;
2186 if (!bmap)
2187 goto error;
2189 dim = isl_basic_map_dim(bmap, type);
2190 isl_assert(bmap->ctx, first + n <= dim, goto error);
2192 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2193 return bmap;
2195 bmap = isl_basic_map_cow(bmap);
2196 if (!bmap)
2197 return NULL;
2199 offset = isl_basic_map_offset(bmap, type) + first;
2200 left = isl_basic_map_total_dim(bmap) - (offset - 1) - n;
2201 for (i = 0; i < bmap->n_eq; ++i)
2202 constraint_drop_vars(bmap->eq[i]+offset, n, left);
2204 for (i = 0; i < bmap->n_ineq; ++i)
2205 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
2207 for (i = 0; i < bmap->n_div; ++i)
2208 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
2210 if (type == isl_dim_div) {
2211 bmap = move_divs_last(bmap, first, n);
2212 if (!bmap)
2213 goto error;
2214 if (isl_basic_map_free_div(bmap, n) < 0)
2215 return isl_basic_map_free(bmap);
2216 } else
2217 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
2218 if (!bmap->dim)
2219 goto error;
2221 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2222 bmap = isl_basic_map_simplify(bmap);
2223 return isl_basic_map_finalize(bmap);
2224 error:
2225 isl_basic_map_free(bmap);
2226 return NULL;
2229 __isl_give isl_basic_set *isl_basic_set_drop(__isl_take isl_basic_set *bset,
2230 enum isl_dim_type type, unsigned first, unsigned n)
2232 return bset_from_bmap(isl_basic_map_drop(bset_to_bmap(bset),
2233 type, first, n));
2236 __isl_give isl_map *isl_map_drop(__isl_take isl_map *map,
2237 enum isl_dim_type type, unsigned first, unsigned n)
2239 int i;
2241 if (!map)
2242 goto error;
2244 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
2246 if (n == 0 && !isl_space_is_named_or_nested(map->dim, type))
2247 return map;
2248 map = isl_map_cow(map);
2249 if (!map)
2250 goto error;
2251 map->dim = isl_space_drop_dims(map->dim, type, first, n);
2252 if (!map->dim)
2253 goto error;
2255 for (i = 0; i < map->n; ++i) {
2256 map->p[i] = isl_basic_map_drop(map->p[i], type, first, n);
2257 if (!map->p[i])
2258 goto error;
2260 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2262 return map;
2263 error:
2264 isl_map_free(map);
2265 return NULL;
2268 __isl_give isl_set *isl_set_drop(__isl_take isl_set *set,
2269 enum isl_dim_type type, unsigned first, unsigned n)
2271 return set_from_map(isl_map_drop(set_to_map(set), type, first, n));
2275 * We don't cow, as the div is assumed to be redundant.
2277 __isl_give isl_basic_map *isl_basic_map_drop_div(
2278 __isl_take isl_basic_map *bmap, unsigned div)
2280 int i;
2281 unsigned pos;
2283 if (!bmap)
2284 goto error;
2286 pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
2288 isl_assert(bmap->ctx, div < bmap->n_div, goto error);
2290 for (i = 0; i < bmap->n_eq; ++i)
2291 constraint_drop_vars(bmap->eq[i]+pos, 1, bmap->extra-div-1);
2293 for (i = 0; i < bmap->n_ineq; ++i) {
2294 if (!isl_int_is_zero(bmap->ineq[i][pos])) {
2295 isl_basic_map_drop_inequality(bmap, i);
2296 --i;
2297 continue;
2299 constraint_drop_vars(bmap->ineq[i]+pos, 1, bmap->extra-div-1);
2302 for (i = 0; i < bmap->n_div; ++i)
2303 constraint_drop_vars(bmap->div[i]+1+pos, 1, bmap->extra-div-1);
2305 if (div != bmap->n_div - 1) {
2306 int j;
2307 isl_int *t = bmap->div[div];
2309 for (j = div; j < bmap->n_div - 1; ++j)
2310 bmap->div[j] = bmap->div[j+1];
2312 bmap->div[bmap->n_div - 1] = t;
2314 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2315 if (isl_basic_map_free_div(bmap, 1) < 0)
2316 return isl_basic_map_free(bmap);
2318 return bmap;
2319 error:
2320 isl_basic_map_free(bmap);
2321 return NULL;
2324 /* Eliminate the specified n dimensions starting at first from the
2325 * constraints, without removing the dimensions from the space.
2326 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2328 __isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
2329 enum isl_dim_type type, unsigned first, unsigned n)
2331 int i;
2333 if (!map)
2334 return NULL;
2335 if (n == 0)
2336 return map;
2338 if (first + n > isl_map_dim(map, type) || first + n < first)
2339 isl_die(map->ctx, isl_error_invalid,
2340 "index out of bounds", goto error);
2342 map = isl_map_cow(map);
2343 if (!map)
2344 return NULL;
2346 for (i = 0; i < map->n; ++i) {
2347 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
2348 if (!map->p[i])
2349 goto error;
2351 return map;
2352 error:
2353 isl_map_free(map);
2354 return NULL;
2357 /* Eliminate the specified n dimensions starting at first from the
2358 * constraints, without removing the dimensions from the space.
2359 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2361 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
2362 enum isl_dim_type type, unsigned first, unsigned n)
2364 return set_from_map(isl_map_eliminate(set_to_map(set), type, first, n));
2367 /* Eliminate the specified n dimensions starting at first from the
2368 * constraints, without removing the dimensions from the space.
2369 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2371 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
2372 unsigned first, unsigned n)
2374 return isl_set_eliminate(set, isl_dim_set, first, n);
2377 __isl_give isl_basic_map *isl_basic_map_remove_divs(
2378 __isl_take isl_basic_map *bmap)
2380 if (!bmap)
2381 return NULL;
2382 bmap = isl_basic_map_eliminate_vars(bmap,
2383 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
2384 if (!bmap)
2385 return NULL;
2386 bmap->n_div = 0;
2387 return isl_basic_map_finalize(bmap);
2390 __isl_give isl_basic_set *isl_basic_set_remove_divs(
2391 __isl_take isl_basic_set *bset)
2393 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset)));
2396 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
2398 int i;
2400 if (!map)
2401 return NULL;
2402 if (map->n == 0)
2403 return map;
2405 map = isl_map_cow(map);
2406 if (!map)
2407 return NULL;
2409 for (i = 0; i < map->n; ++i) {
2410 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
2411 if (!map->p[i])
2412 goto error;
2414 return map;
2415 error:
2416 isl_map_free(map);
2417 return NULL;
2420 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
2422 return isl_map_remove_divs(set);
2425 __isl_give isl_basic_map *isl_basic_map_remove_dims(
2426 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
2427 unsigned first, unsigned n)
2429 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2430 return isl_basic_map_free(bmap);
2431 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2432 return bmap;
2433 bmap = isl_basic_map_eliminate_vars(bmap,
2434 isl_basic_map_offset(bmap, type) - 1 + first, n);
2435 if (!bmap)
2436 return bmap;
2437 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
2438 return bmap;
2439 bmap = isl_basic_map_drop(bmap, type, first, n);
2440 return bmap;
2443 /* Return true if the definition of the given div (recursively) involves
2444 * any of the given variables.
2446 static isl_bool div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
2447 unsigned first, unsigned n)
2449 int i;
2450 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2452 if (isl_int_is_zero(bmap->div[div][0]))
2453 return isl_bool_false;
2454 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
2455 return isl_bool_true;
2457 for (i = bmap->n_div - 1; i >= 0; --i) {
2458 isl_bool involves;
2460 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2461 continue;
2462 involves = div_involves_vars(bmap, i, first, n);
2463 if (involves < 0 || involves)
2464 return involves;
2467 return isl_bool_false;
2470 /* Try and add a lower and/or upper bound on "div" to "bmap"
2471 * based on inequality "i".
2472 * "total" is the total number of variables (excluding the divs).
2473 * "v" is a temporary object that can be used during the calculations.
2474 * If "lb" is set, then a lower bound should be constructed.
2475 * If "ub" is set, then an upper bound should be constructed.
2477 * The calling function has already checked that the inequality does not
2478 * reference "div", but we still need to check that the inequality is
2479 * of the right form. We'll consider the case where we want to construct
2480 * a lower bound. The construction of upper bounds is similar.
2482 * Let "div" be of the form
2484 * q = floor((a + f(x))/d)
2486 * We essentially check if constraint "i" is of the form
2488 * b + f(x) >= 0
2490 * so that we can use it to derive a lower bound on "div".
2491 * However, we allow a slightly more general form
2493 * b + g(x) >= 0
2495 * with the condition that the coefficients of g(x) - f(x) are all
2496 * divisible by d.
2497 * Rewriting this constraint as
2499 * 0 >= -b - g(x)
2501 * adding a + f(x) to both sides and dividing by d, we obtain
2503 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2505 * Taking the floor on both sides, we obtain
2507 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2509 * or
2511 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2513 * In the case of an upper bound, we construct the constraint
2515 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2518 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2519 __isl_take isl_basic_map *bmap, int div, int i,
2520 unsigned total, isl_int v, int lb, int ub)
2522 int j;
2524 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2525 if (lb) {
2526 isl_int_sub(v, bmap->ineq[i][1 + j],
2527 bmap->div[div][1 + 1 + j]);
2528 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2530 if (ub) {
2531 isl_int_add(v, bmap->ineq[i][1 + j],
2532 bmap->div[div][1 + 1 + j]);
2533 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2536 if (!lb && !ub)
2537 return bmap;
2539 bmap = isl_basic_map_cow(bmap);
2540 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2541 if (lb) {
2542 int k = isl_basic_map_alloc_inequality(bmap);
2543 if (k < 0)
2544 goto error;
2545 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2546 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2547 bmap->div[div][1 + j]);
2548 isl_int_cdiv_q(bmap->ineq[k][j],
2549 bmap->ineq[k][j], bmap->div[div][0]);
2551 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2553 if (ub) {
2554 int k = isl_basic_map_alloc_inequality(bmap);
2555 if (k < 0)
2556 goto error;
2557 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2558 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2559 bmap->div[div][1 + j]);
2560 isl_int_fdiv_q(bmap->ineq[k][j],
2561 bmap->ineq[k][j], bmap->div[div][0]);
2563 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2566 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2567 return bmap;
2568 error:
2569 isl_basic_map_free(bmap);
2570 return NULL;
2573 /* This function is called right before "div" is eliminated from "bmap"
2574 * using Fourier-Motzkin.
2575 * Look through the constraints of "bmap" for constraints on the argument
2576 * of the integer division and use them to construct constraints on the
2577 * integer division itself. These constraints can then be combined
2578 * during the Fourier-Motzkin elimination.
2579 * Note that it is only useful to introduce lower bounds on "div"
2580 * if "bmap" already contains upper bounds on "div" as the newly
2581 * introduce lower bounds can then be combined with the pre-existing
2582 * upper bounds. Similarly for upper bounds.
2583 * We therefore first check if "bmap" contains any lower and/or upper bounds
2584 * on "div".
2586 * It is interesting to note that the introduction of these constraints
2587 * can indeed lead to more accurate results, even when compared to
2588 * deriving constraints on the argument of "div" from constraints on "div".
2589 * Consider, for example, the set
2591 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2593 * The second constraint can be rewritten as
2595 * 2 * [(-i-2j+3)/4] + k >= 0
2597 * from which we can derive
2599 * -i - 2j + 3 >= -2k
2601 * or
2603 * i + 2j <= 3 + 2k
2605 * Combined with the first constraint, we obtain
2607 * -3 <= 3 + 2k or k >= -3
2609 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2610 * the first constraint, we obtain
2612 * [(i + 2j)/4] >= [-3/4] = -1
2614 * Combining this constraint with the second constraint, we obtain
2616 * k >= -2
2618 static __isl_give isl_basic_map *insert_bounds_on_div(
2619 __isl_take isl_basic_map *bmap, int div)
2621 int i;
2622 int check_lb, check_ub;
2623 isl_int v;
2624 unsigned total;
2626 if (!bmap)
2627 return NULL;
2629 if (isl_int_is_zero(bmap->div[div][0]))
2630 return bmap;
2632 total = isl_space_dim(bmap->dim, isl_dim_all);
2634 check_lb = 0;
2635 check_ub = 0;
2636 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
2637 int s = isl_int_sgn(bmap->ineq[i][1 + total + div]);
2638 if (s > 0)
2639 check_ub = 1;
2640 if (s < 0)
2641 check_lb = 1;
2644 if (!check_lb && !check_ub)
2645 return bmap;
2647 isl_int_init(v);
2649 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
2650 if (!isl_int_is_zero(bmap->ineq[i][1 + total + div]))
2651 continue;
2653 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, total, v,
2654 check_lb, check_ub);
2657 isl_int_clear(v);
2659 return bmap;
2662 /* Remove all divs (recursively) involving any of the given dimensions
2663 * in their definitions.
2665 __isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
2666 __isl_take isl_basic_map *bmap,
2667 enum isl_dim_type type, unsigned first, unsigned n)
2669 int i;
2671 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2672 return isl_basic_map_free(bmap);
2673 first += isl_basic_map_offset(bmap, type);
2675 for (i = bmap->n_div - 1; i >= 0; --i) {
2676 isl_bool involves;
2678 involves = div_involves_vars(bmap, i, first, n);
2679 if (involves < 0)
2680 return isl_basic_map_free(bmap);
2681 if (!involves)
2682 continue;
2683 bmap = insert_bounds_on_div(bmap, i);
2684 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2685 if (!bmap)
2686 return NULL;
2687 i = bmap->n_div;
2690 return bmap;
2693 __isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
2694 __isl_take isl_basic_set *bset,
2695 enum isl_dim_type type, unsigned first, unsigned n)
2697 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
2700 __isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
2701 enum isl_dim_type type, unsigned first, unsigned n)
2703 int i;
2705 if (!map)
2706 return NULL;
2707 if (map->n == 0)
2708 return map;
2710 map = isl_map_cow(map);
2711 if (!map)
2712 return NULL;
2714 for (i = 0; i < map->n; ++i) {
2715 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2716 type, first, n);
2717 if (!map->p[i])
2718 goto error;
2720 return map;
2721 error:
2722 isl_map_free(map);
2723 return NULL;
2726 __isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2727 enum isl_dim_type type, unsigned first, unsigned n)
2729 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set),
2730 type, first, n));
2733 /* Does the description of "bmap" depend on the specified dimensions?
2734 * We also check whether the dimensions appear in any of the div definitions.
2735 * In principle there is no need for this check. If the dimensions appear
2736 * in a div definition, they also appear in the defining constraints of that
2737 * div.
2739 isl_bool isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
2740 enum isl_dim_type type, unsigned first, unsigned n)
2742 int i;
2744 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2745 return isl_bool_error;
2747 first += isl_basic_map_offset(bmap, type);
2748 for (i = 0; i < bmap->n_eq; ++i)
2749 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
2750 return isl_bool_true;
2751 for (i = 0; i < bmap->n_ineq; ++i)
2752 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
2753 return isl_bool_true;
2754 for (i = 0; i < bmap->n_div; ++i) {
2755 if (isl_int_is_zero(bmap->div[i][0]))
2756 continue;
2757 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
2758 return isl_bool_true;
2761 return isl_bool_false;
2764 isl_bool isl_map_involves_dims(__isl_keep isl_map *map,
2765 enum isl_dim_type type, unsigned first, unsigned n)
2767 int i;
2769 if (!map)
2770 return isl_bool_error;
2772 if (first + n > isl_map_dim(map, type))
2773 isl_die(map->ctx, isl_error_invalid,
2774 "index out of bounds", return isl_bool_error);
2776 for (i = 0; i < map->n; ++i) {
2777 isl_bool involves = isl_basic_map_involves_dims(map->p[i],
2778 type, first, n);
2779 if (involves < 0 || involves)
2780 return involves;
2783 return isl_bool_false;
2786 isl_bool isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
2787 enum isl_dim_type type, unsigned first, unsigned n)
2789 return isl_basic_map_involves_dims(bset, type, first, n);
2792 isl_bool isl_set_involves_dims(__isl_keep isl_set *set,
2793 enum isl_dim_type type, unsigned first, unsigned n)
2795 return isl_map_involves_dims(set, type, first, n);
2798 /* Drop all constraints in bmap that involve any of the dimensions
2799 * first to first+n-1.
2801 static __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving(
2802 __isl_take isl_basic_map *bmap, unsigned first, unsigned n)
2804 int i;
2806 if (n == 0)
2807 return bmap;
2809 bmap = isl_basic_map_cow(bmap);
2811 if (!bmap)
2812 return NULL;
2814 for (i = bmap->n_eq - 1; i >= 0; --i) {
2815 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) == -1)
2816 continue;
2817 isl_basic_map_drop_equality(bmap, i);
2820 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2821 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) == -1)
2822 continue;
2823 isl_basic_map_drop_inequality(bmap, i);
2826 bmap = isl_basic_map_add_known_div_constraints(bmap);
2827 return bmap;
2830 /* Drop all constraints in bset that involve any of the dimensions
2831 * first to first+n-1.
2833 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving(
2834 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2836 return isl_basic_map_drop_constraints_involving(bset, first, n);
2839 /* Drop all constraints in bmap that do not involve any of the dimensions
2840 * first to first + n - 1 of the given type.
2842 __isl_give isl_basic_map *isl_basic_map_drop_constraints_not_involving_dims(
2843 __isl_take isl_basic_map *bmap,
2844 enum isl_dim_type type, unsigned first, unsigned n)
2846 int i;
2848 if (n == 0) {
2849 isl_space *space = isl_basic_map_get_space(bmap);
2850 isl_basic_map_free(bmap);
2851 return isl_basic_map_universe(space);
2853 bmap = isl_basic_map_cow(bmap);
2854 if (!bmap)
2855 return NULL;
2857 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2858 return isl_basic_map_free(bmap);
2860 first += isl_basic_map_offset(bmap, type) - 1;
2862 for (i = bmap->n_eq - 1; i >= 0; --i) {
2863 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) != -1)
2864 continue;
2865 isl_basic_map_drop_equality(bmap, i);
2868 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2869 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) != -1)
2870 continue;
2871 isl_basic_map_drop_inequality(bmap, i);
2874 bmap = isl_basic_map_add_known_div_constraints(bmap);
2875 return bmap;
2878 /* Drop all constraints in bset that do not involve any of the dimensions
2879 * first to first + n - 1 of the given type.
2881 __isl_give isl_basic_set *isl_basic_set_drop_constraints_not_involving_dims(
2882 __isl_take isl_basic_set *bset,
2883 enum isl_dim_type type, unsigned first, unsigned n)
2885 return isl_basic_map_drop_constraints_not_involving_dims(bset,
2886 type, first, n);
2889 /* Drop all constraints in bmap that involve any of the dimensions
2890 * first to first + n - 1 of the given type.
2892 __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving_dims(
2893 __isl_take isl_basic_map *bmap,
2894 enum isl_dim_type type, unsigned first, unsigned n)
2896 if (!bmap)
2897 return NULL;
2898 if (n == 0)
2899 return bmap;
2901 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2902 return isl_basic_map_free(bmap);
2904 bmap = isl_basic_map_remove_divs_involving_dims(bmap, type, first, n);
2905 first += isl_basic_map_offset(bmap, type) - 1;
2906 return isl_basic_map_drop_constraints_involving(bmap, first, n);
2909 /* Drop all constraints in bset that involve any of the dimensions
2910 * first to first + n - 1 of the given type.
2912 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving_dims(
2913 __isl_take isl_basic_set *bset,
2914 enum isl_dim_type type, unsigned first, unsigned n)
2916 return isl_basic_map_drop_constraints_involving_dims(bset,
2917 type, first, n);
2920 /* Drop constraints from "map" by applying "drop" to each basic map.
2922 static __isl_give isl_map *drop_constraints(__isl_take isl_map *map,
2923 enum isl_dim_type type, unsigned first, unsigned n,
2924 __isl_give isl_basic_map *(*drop)(__isl_take isl_basic_map *bmap,
2925 enum isl_dim_type type, unsigned first, unsigned n))
2927 int i;
2928 unsigned dim;
2930 if (!map)
2931 return NULL;
2933 dim = isl_map_dim(map, type);
2934 if (first + n > dim || first + n < first)
2935 isl_die(isl_map_get_ctx(map), isl_error_invalid,
2936 "index out of bounds", return isl_map_free(map));
2938 map = isl_map_cow(map);
2939 if (!map)
2940 return NULL;
2942 for (i = 0; i < map->n; ++i) {
2943 map->p[i] = drop(map->p[i], type, first, n);
2944 if (!map->p[i])
2945 return isl_map_free(map);
2948 if (map->n > 1)
2949 ISL_F_CLR(map, ISL_MAP_DISJOINT);
2951 return map;
2954 /* Drop all constraints in map that involve any of the dimensions
2955 * first to first + n - 1 of the given type.
2957 __isl_give isl_map *isl_map_drop_constraints_involving_dims(
2958 __isl_take isl_map *map,
2959 enum isl_dim_type type, unsigned first, unsigned n)
2961 if (n == 0)
2962 return map;
2963 return drop_constraints(map, type, first, n,
2964 &isl_basic_map_drop_constraints_involving_dims);
2967 /* Drop all constraints in "map" that do not involve any of the dimensions
2968 * first to first + n - 1 of the given type.
2970 __isl_give isl_map *isl_map_drop_constraints_not_involving_dims(
2971 __isl_take isl_map *map,
2972 enum isl_dim_type type, unsigned first, unsigned n)
2974 if (n == 0) {
2975 isl_space *space = isl_map_get_space(map);
2976 isl_map_free(map);
2977 return isl_map_universe(space);
2979 return drop_constraints(map, type, first, n,
2980 &isl_basic_map_drop_constraints_not_involving_dims);
2983 /* Drop all constraints in set that involve any of the dimensions
2984 * first to first + n - 1 of the given type.
2986 __isl_give isl_set *isl_set_drop_constraints_involving_dims(
2987 __isl_take isl_set *set,
2988 enum isl_dim_type type, unsigned first, unsigned n)
2990 return isl_map_drop_constraints_involving_dims(set, type, first, n);
2993 /* Drop all constraints in "set" that do not involve any of the dimensions
2994 * first to first + n - 1 of the given type.
2996 __isl_give isl_set *isl_set_drop_constraints_not_involving_dims(
2997 __isl_take isl_set *set,
2998 enum isl_dim_type type, unsigned first, unsigned n)
3000 return isl_map_drop_constraints_not_involving_dims(set, type, first, n);
3003 /* Does local variable "div" of "bmap" have a complete explicit representation?
3004 * Having a complete explicit representation requires not only
3005 * an explicit representation, but also that all local variables
3006 * that appear in this explicit representation in turn have
3007 * a complete explicit representation.
3009 isl_bool isl_basic_map_div_is_known(__isl_keep isl_basic_map *bmap, int div)
3011 int i;
3012 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
3013 isl_bool marked;
3015 marked = isl_basic_map_div_is_marked_unknown(bmap, div);
3016 if (marked < 0 || marked)
3017 return isl_bool_not(marked);
3019 for (i = bmap->n_div - 1; i >= 0; --i) {
3020 isl_bool known;
3022 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
3023 continue;
3024 known = isl_basic_map_div_is_known(bmap, i);
3025 if (known < 0 || !known)
3026 return known;
3029 return isl_bool_true;
3032 /* Remove all divs that are unknown or defined in terms of unknown divs.
3034 __isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
3035 __isl_take isl_basic_map *bmap)
3037 int i;
3039 if (!bmap)
3040 return NULL;
3042 for (i = bmap->n_div - 1; i >= 0; --i) {
3043 if (isl_basic_map_div_is_known(bmap, i))
3044 continue;
3045 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
3046 if (!bmap)
3047 return NULL;
3048 i = bmap->n_div;
3051 return bmap;
3054 /* Remove all divs that are unknown or defined in terms of unknown divs.
3056 __isl_give isl_basic_set *isl_basic_set_remove_unknown_divs(
3057 __isl_take isl_basic_set *bset)
3059 return isl_basic_map_remove_unknown_divs(bset);
3062 __isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
3064 int i;
3066 if (!map)
3067 return NULL;
3068 if (map->n == 0)
3069 return map;
3071 map = isl_map_cow(map);
3072 if (!map)
3073 return NULL;
3075 for (i = 0; i < map->n; ++i) {
3076 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
3077 if (!map->p[i])
3078 goto error;
3080 return map;
3081 error:
3082 isl_map_free(map);
3083 return NULL;
3086 __isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
3088 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set)));
3091 __isl_give isl_basic_set *isl_basic_set_remove_dims(
3092 __isl_take isl_basic_set *bset,
3093 enum isl_dim_type type, unsigned first, unsigned n)
3095 isl_basic_map *bmap = bset_to_bmap(bset);
3096 bmap = isl_basic_map_remove_dims(bmap, type, first, n);
3097 return bset_from_bmap(bmap);
3100 __isl_give isl_map *isl_map_remove_dims(__isl_take isl_map *map,
3101 enum isl_dim_type type, unsigned first, unsigned n)
3103 int i;
3105 if (n == 0)
3106 return map;
3108 map = isl_map_cow(map);
3109 if (!map)
3110 return NULL;
3111 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
3113 for (i = 0; i < map->n; ++i) {
3114 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
3115 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
3116 if (!map->p[i])
3117 goto error;
3119 map = isl_map_drop(map, type, first, n);
3120 return map;
3121 error:
3122 isl_map_free(map);
3123 return NULL;
3126 __isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
3127 enum isl_dim_type type, unsigned first, unsigned n)
3129 return set_from_map(isl_map_remove_dims(set_to_map(bset),
3130 type, first, n));
3133 /* Project out n inputs starting at first using Fourier-Motzkin */
3134 struct isl_map *isl_map_remove_inputs(struct isl_map *map,
3135 unsigned first, unsigned n)
3137 return isl_map_remove_dims(map, isl_dim_in, first, n);
3140 static void dump_term(struct isl_basic_map *bmap,
3141 isl_int c, int pos, FILE *out)
3143 const char *name;
3144 unsigned in = isl_basic_map_dim(bmap, isl_dim_in);
3145 unsigned dim = in + isl_basic_map_dim(bmap, isl_dim_out);
3146 unsigned nparam = isl_basic_map_dim(bmap, isl_dim_param);
3147 if (!pos)
3148 isl_int_print(out, c, 0);
3149 else {
3150 if (!isl_int_is_one(c))
3151 isl_int_print(out, c, 0);
3152 if (pos < 1 + nparam) {
3153 name = isl_space_get_dim_name(bmap->dim,
3154 isl_dim_param, pos - 1);
3155 if (name)
3156 fprintf(out, "%s", name);
3157 else
3158 fprintf(out, "p%d", pos - 1);
3159 } else if (pos < 1 + nparam + in)
3160 fprintf(out, "i%d", pos - 1 - nparam);
3161 else if (pos < 1 + nparam + dim)
3162 fprintf(out, "o%d", pos - 1 - nparam - in);
3163 else
3164 fprintf(out, "e%d", pos - 1 - nparam - dim);
3168 static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
3169 int sign, FILE *out)
3171 int i;
3172 int first;
3173 unsigned len = 1 + isl_basic_map_total_dim(bmap);
3174 isl_int v;
3176 isl_int_init(v);
3177 for (i = 0, first = 1; i < len; ++i) {
3178 if (isl_int_sgn(c[i]) * sign <= 0)
3179 continue;
3180 if (!first)
3181 fprintf(out, " + ");
3182 first = 0;
3183 isl_int_abs(v, c[i]);
3184 dump_term(bmap, v, i, out);
3186 isl_int_clear(v);
3187 if (first)
3188 fprintf(out, "0");
3191 static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
3192 const char *op, FILE *out, int indent)
3194 int i;
3196 fprintf(out, "%*s", indent, "");
3198 dump_constraint_sign(bmap, c, 1, out);
3199 fprintf(out, " %s ", op);
3200 dump_constraint_sign(bmap, c, -1, out);
3202 fprintf(out, "\n");
3204 for (i = bmap->n_div; i < bmap->extra; ++i) {
3205 if (isl_int_is_zero(c[1+isl_space_dim(bmap->dim, isl_dim_all)+i]))
3206 continue;
3207 fprintf(out, "%*s", indent, "");
3208 fprintf(out, "ERROR: unused div coefficient not zero\n");
3209 abort();
3213 static void dump_constraints(struct isl_basic_map *bmap,
3214 isl_int **c, unsigned n,
3215 const char *op, FILE *out, int indent)
3217 int i;
3219 for (i = 0; i < n; ++i)
3220 dump_constraint(bmap, c[i], op, out, indent);
3223 static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
3225 int j;
3226 int first = 1;
3227 unsigned total = isl_basic_map_total_dim(bmap);
3229 for (j = 0; j < 1 + total; ++j) {
3230 if (isl_int_is_zero(exp[j]))
3231 continue;
3232 if (!first && isl_int_is_pos(exp[j]))
3233 fprintf(out, "+");
3234 dump_term(bmap, exp[j], j, out);
3235 first = 0;
3239 static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
3241 int i;
3243 dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
3244 dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
3246 for (i = 0; i < bmap->n_div; ++i) {
3247 fprintf(out, "%*s", indent, "");
3248 fprintf(out, "e%d = [(", i);
3249 dump_affine(bmap, bmap->div[i]+1, out);
3250 fprintf(out, ")/");
3251 isl_int_print(out, bmap->div[i][0], 0);
3252 fprintf(out, "]\n");
3256 void isl_basic_set_print_internal(struct isl_basic_set *bset,
3257 FILE *out, int indent)
3259 if (!bset) {
3260 fprintf(out, "null basic set\n");
3261 return;
3264 fprintf(out, "%*s", indent, "");
3265 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
3266 bset->ref, bset->dim->nparam, bset->dim->n_out,
3267 bset->extra, bset->flags);
3268 dump(bset_to_bmap(bset), out, indent);
3271 void isl_basic_map_print_internal(struct isl_basic_map *bmap,
3272 FILE *out, int indent)
3274 if (!bmap) {
3275 fprintf(out, "null basic map\n");
3276 return;
3279 fprintf(out, "%*s", indent, "");
3280 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
3281 "flags: %x, n_name: %d\n",
3282 bmap->ref,
3283 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
3284 bmap->extra, bmap->flags, bmap->dim->n_id);
3285 dump(bmap, out, indent);
3288 int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
3290 unsigned total;
3291 if (!bmap)
3292 return -1;
3293 total = isl_basic_map_total_dim(bmap);
3294 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
3295 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
3296 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
3297 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
3298 return 0;
3301 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *space, int n,
3302 unsigned flags)
3304 if (!space)
3305 return NULL;
3306 if (isl_space_dim(space, isl_dim_in) != 0)
3307 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3308 "set cannot have input dimensions", goto error);
3309 return isl_map_alloc_space(space, n, flags);
3310 error:
3311 isl_space_free(space);
3312 return NULL;
3315 /* Make sure "map" has room for at least "n" more basic maps.
3317 __isl_give isl_map *isl_map_grow(__isl_take isl_map *map, int n)
3319 int i;
3320 struct isl_map *grown = NULL;
3322 if (!map)
3323 return NULL;
3324 isl_assert(map->ctx, n >= 0, goto error);
3325 if (map->n + n <= map->size)
3326 return map;
3327 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
3328 if (!grown)
3329 goto error;
3330 for (i = 0; i < map->n; ++i) {
3331 grown->p[i] = isl_basic_map_copy(map->p[i]);
3332 if (!grown->p[i])
3333 goto error;
3334 grown->n++;
3336 isl_map_free(map);
3337 return grown;
3338 error:
3339 isl_map_free(grown);
3340 isl_map_free(map);
3341 return NULL;
3344 /* Make sure "set" has room for at least "n" more basic sets.
3346 struct isl_set *isl_set_grow(struct isl_set *set, int n)
3348 return set_from_map(isl_map_grow(set_to_map(set), n));
3351 __isl_give isl_set *isl_set_from_basic_set(__isl_take isl_basic_set *bset)
3353 return isl_map_from_basic_map(bset);
3356 struct isl_map *isl_map_from_basic_map(struct isl_basic_map *bmap)
3358 struct isl_map *map;
3360 if (!bmap)
3361 return NULL;
3363 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
3364 return isl_map_add_basic_map(map, bmap);
3367 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
3368 __isl_take isl_basic_set *bset)
3370 return set_from_map(isl_map_add_basic_map(set_to_map(set),
3371 bset_to_bmap(bset)));
3374 __isl_null isl_set *isl_set_free(__isl_take isl_set *set)
3376 return isl_map_free(set);
3379 void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
3381 int i;
3383 if (!set) {
3384 fprintf(out, "null set\n");
3385 return;
3388 fprintf(out, "%*s", indent, "");
3389 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3390 set->ref, set->n, set->dim->nparam, set->dim->n_out,
3391 set->flags);
3392 for (i = 0; i < set->n; ++i) {
3393 fprintf(out, "%*s", indent, "");
3394 fprintf(out, "basic set %d:\n", i);
3395 isl_basic_set_print_internal(set->p[i], out, indent+4);
3399 void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
3401 int i;
3403 if (!map) {
3404 fprintf(out, "null map\n");
3405 return;
3408 fprintf(out, "%*s", indent, "");
3409 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3410 "flags: %x, n_name: %d\n",
3411 map->ref, map->n, map->dim->nparam, map->dim->n_in,
3412 map->dim->n_out, map->flags, map->dim->n_id);
3413 for (i = 0; i < map->n; ++i) {
3414 fprintf(out, "%*s", indent, "");
3415 fprintf(out, "basic map %d:\n", i);
3416 isl_basic_map_print_internal(map->p[i], out, indent+4);
3420 __isl_give isl_basic_map *isl_basic_map_intersect_domain(
3421 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3423 struct isl_basic_map *bmap_domain;
3425 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3426 goto error;
3428 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
3429 isl_assert(bset->ctx,
3430 isl_basic_map_compatible_domain(bmap, bset), goto error);
3432 bmap = isl_basic_map_cow(bmap);
3433 if (!bmap)
3434 goto error;
3435 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3436 bset->n_div, bset->n_eq, bset->n_ineq);
3437 bmap_domain = isl_basic_map_from_domain(bset);
3438 bmap = add_constraints(bmap, bmap_domain, 0, 0);
3440 bmap = isl_basic_map_simplify(bmap);
3441 return isl_basic_map_finalize(bmap);
3442 error:
3443 isl_basic_map_free(bmap);
3444 isl_basic_set_free(bset);
3445 return NULL;
3448 /* Check that the space of "bset" is the same as that of the range of "bmap".
3450 static isl_stat isl_basic_map_check_compatible_range(
3451 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3453 isl_bool ok;
3455 ok = isl_basic_map_compatible_range(bmap, bset);
3456 if (ok < 0)
3457 return isl_stat_error;
3458 if (!ok)
3459 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3460 "incompatible spaces", return isl_stat_error);
3462 return isl_stat_ok;
3465 __isl_give isl_basic_map *isl_basic_map_intersect_range(
3466 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3468 struct isl_basic_map *bmap_range;
3470 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3471 goto error;
3473 if (isl_space_dim(bset->dim, isl_dim_set) != 0 &&
3474 isl_basic_map_check_compatible_range(bmap, bset) < 0)
3475 goto error;
3477 if (isl_basic_set_plain_is_universe(bset)) {
3478 isl_basic_set_free(bset);
3479 return bmap;
3482 bmap = isl_basic_map_cow(bmap);
3483 if (!bmap)
3484 goto error;
3485 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3486 bset->n_div, bset->n_eq, bset->n_ineq);
3487 bmap_range = bset_to_bmap(bset);
3488 bmap = add_constraints(bmap, bmap_range, 0, 0);
3490 bmap = isl_basic_map_simplify(bmap);
3491 return isl_basic_map_finalize(bmap);
3492 error:
3493 isl_basic_map_free(bmap);
3494 isl_basic_set_free(bset);
3495 return NULL;
3498 isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
3499 __isl_keep isl_vec *vec)
3501 int i;
3502 unsigned total;
3503 isl_int s;
3505 if (!bmap || !vec)
3506 return isl_bool_error;
3508 total = 1 + isl_basic_map_total_dim(bmap);
3509 if (total != vec->size)
3510 return isl_bool_false;
3512 isl_int_init(s);
3514 for (i = 0; i < bmap->n_eq; ++i) {
3515 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
3516 if (!isl_int_is_zero(s)) {
3517 isl_int_clear(s);
3518 return isl_bool_false;
3522 for (i = 0; i < bmap->n_ineq; ++i) {
3523 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
3524 if (isl_int_is_neg(s)) {
3525 isl_int_clear(s);
3526 return isl_bool_false;
3530 isl_int_clear(s);
3532 return isl_bool_true;
3535 isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
3536 __isl_keep isl_vec *vec)
3538 return isl_basic_map_contains(bset_to_bmap(bset), vec);
3541 __isl_give isl_basic_map *isl_basic_map_intersect(
3542 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
3544 struct isl_vec *sample = NULL;
3546 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
3547 goto error;
3548 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
3549 isl_space_dim(bmap1->dim, isl_dim_param) &&
3550 isl_space_dim(bmap2->dim, isl_dim_all) !=
3551 isl_space_dim(bmap2->dim, isl_dim_param))
3552 return isl_basic_map_intersect(bmap2, bmap1);
3554 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
3555 isl_space_dim(bmap2->dim, isl_dim_param))
3556 isl_assert(bmap1->ctx,
3557 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
3559 if (isl_basic_map_plain_is_empty(bmap1)) {
3560 isl_basic_map_free(bmap2);
3561 return bmap1;
3563 if (isl_basic_map_plain_is_empty(bmap2)) {
3564 isl_basic_map_free(bmap1);
3565 return bmap2;
3568 if (bmap1->sample &&
3569 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
3570 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
3571 sample = isl_vec_copy(bmap1->sample);
3572 else if (bmap2->sample &&
3573 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
3574 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
3575 sample = isl_vec_copy(bmap2->sample);
3577 bmap1 = isl_basic_map_cow(bmap1);
3578 if (!bmap1)
3579 goto error;
3580 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
3581 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
3582 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
3584 if (!bmap1)
3585 isl_vec_free(sample);
3586 else if (sample) {
3587 isl_vec_free(bmap1->sample);
3588 bmap1->sample = sample;
3591 bmap1 = isl_basic_map_simplify(bmap1);
3592 return isl_basic_map_finalize(bmap1);
3593 error:
3594 if (sample)
3595 isl_vec_free(sample);
3596 isl_basic_map_free(bmap1);
3597 isl_basic_map_free(bmap2);
3598 return NULL;
3601 struct isl_basic_set *isl_basic_set_intersect(
3602 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
3604 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1),
3605 bset_to_bmap(bset2)));
3608 __isl_give isl_basic_set *isl_basic_set_intersect_params(
3609 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3611 return isl_basic_set_intersect(bset1, bset2);
3614 /* Special case of isl_map_intersect, where both map1 and map2
3615 * are convex, without any divs and such that either map1 or map2
3616 * contains a single constraint. This constraint is then simply
3617 * added to the other map.
3619 static __isl_give isl_map *map_intersect_add_constraint(
3620 __isl_take isl_map *map1, __isl_take isl_map *map2)
3622 isl_assert(map1->ctx, map1->n == 1, goto error);
3623 isl_assert(map2->ctx, map1->n == 1, goto error);
3624 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
3625 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
3627 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
3628 return isl_map_intersect(map2, map1);
3630 map1 = isl_map_cow(map1);
3631 if (!map1)
3632 goto error;
3633 if (isl_map_plain_is_empty(map1)) {
3634 isl_map_free(map2);
3635 return map1;
3637 map1->p[0] = isl_basic_map_cow(map1->p[0]);
3638 if (map2->p[0]->n_eq == 1)
3639 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
3640 else
3641 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
3642 map2->p[0]->ineq[0]);
3644 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
3645 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
3646 if (!map1->p[0])
3647 goto error;
3649 if (isl_basic_map_plain_is_empty(map1->p[0])) {
3650 isl_basic_map_free(map1->p[0]);
3651 map1->n = 0;
3654 isl_map_free(map2);
3656 return map1;
3657 error:
3658 isl_map_free(map1);
3659 isl_map_free(map2);
3660 return NULL;
3663 /* map2 may be either a parameter domain or a map living in the same
3664 * space as map1.
3666 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3667 __isl_take isl_map *map2)
3669 unsigned flags = 0;
3670 isl_map *result;
3671 int i, j;
3673 if (!map1 || !map2)
3674 goto error;
3676 if ((isl_map_plain_is_empty(map1) ||
3677 isl_map_plain_is_universe(map2)) &&
3678 isl_space_is_equal(map1->dim, map2->dim)) {
3679 isl_map_free(map2);
3680 return map1;
3682 if ((isl_map_plain_is_empty(map2) ||
3683 isl_map_plain_is_universe(map1)) &&
3684 isl_space_is_equal(map1->dim, map2->dim)) {
3685 isl_map_free(map1);
3686 return map2;
3689 if (map1->n == 1 && map2->n == 1 &&
3690 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
3691 isl_space_is_equal(map1->dim, map2->dim) &&
3692 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3693 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3694 return map_intersect_add_constraint(map1, map2);
3696 if (isl_space_dim(map2->dim, isl_dim_all) !=
3697 isl_space_dim(map2->dim, isl_dim_param))
3698 isl_assert(map1->ctx,
3699 isl_space_is_equal(map1->dim, map2->dim), goto error);
3701 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3702 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3703 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3705 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3706 map1->n * map2->n, flags);
3707 if (!result)
3708 goto error;
3709 for (i = 0; i < map1->n; ++i)
3710 for (j = 0; j < map2->n; ++j) {
3711 struct isl_basic_map *part;
3712 part = isl_basic_map_intersect(
3713 isl_basic_map_copy(map1->p[i]),
3714 isl_basic_map_copy(map2->p[j]));
3715 if (isl_basic_map_is_empty(part) < 0)
3716 part = isl_basic_map_free(part);
3717 result = isl_map_add_basic_map(result, part);
3718 if (!result)
3719 goto error;
3721 isl_map_free(map1);
3722 isl_map_free(map2);
3723 return result;
3724 error:
3725 isl_map_free(map1);
3726 isl_map_free(map2);
3727 return NULL;
3730 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3731 __isl_take isl_map *map2)
3733 if (!map1 || !map2)
3734 goto error;
3735 if (!isl_space_is_equal(map1->dim, map2->dim))
3736 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
3737 "spaces don't match", goto error);
3738 return map_intersect_internal(map1, map2);
3739 error:
3740 isl_map_free(map1);
3741 isl_map_free(map2);
3742 return NULL;
3745 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3746 __isl_take isl_map *map2)
3748 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
3751 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
3753 return set_from_map(isl_map_intersect(set_to_map(set1),
3754 set_to_map(set2)));
3757 /* map_intersect_internal accepts intersections
3758 * with parameter domains, so we can just call that function.
3760 static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
3761 __isl_take isl_set *params)
3763 return map_intersect_internal(map, params);
3766 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
3767 __isl_take isl_map *map2)
3769 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
3772 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3773 __isl_take isl_set *params)
3775 return isl_map_intersect_params(set, params);
3778 __isl_give isl_basic_map *isl_basic_map_reverse(__isl_take isl_basic_map *bmap)
3780 isl_space *space;
3781 unsigned pos, n1, n2;
3783 if (!bmap)
3784 return NULL;
3785 bmap = isl_basic_map_cow(bmap);
3786 if (!bmap)
3787 return NULL;
3788 space = isl_space_reverse(isl_space_copy(bmap->dim));
3789 pos = isl_basic_map_offset(bmap, isl_dim_in);
3790 n1 = isl_basic_map_dim(bmap, isl_dim_in);
3791 n2 = isl_basic_map_dim(bmap, isl_dim_out);
3792 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
3793 return isl_basic_map_reset_space(bmap, space);
3796 static __isl_give isl_basic_map *basic_map_space_reset(
3797 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
3799 isl_space *space;
3801 if (!bmap)
3802 return NULL;
3803 if (!isl_space_is_named_or_nested(bmap->dim, type))
3804 return bmap;
3806 space = isl_basic_map_get_space(bmap);
3807 space = isl_space_reset(space, type);
3808 bmap = isl_basic_map_reset_space(bmap, space);
3809 return bmap;
3812 __isl_give isl_basic_map *isl_basic_map_insert_dims(
3813 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3814 unsigned pos, unsigned n)
3816 isl_bool rational;
3817 isl_space *res_dim;
3818 struct isl_basic_map *res;
3819 struct isl_dim_map *dim_map;
3820 unsigned total, off;
3821 enum isl_dim_type t;
3823 if (n == 0)
3824 return basic_map_space_reset(bmap, type);
3826 if (!bmap)
3827 return NULL;
3829 res_dim = isl_space_insert_dims(isl_basic_map_get_space(bmap), type, pos, n);
3831 total = isl_basic_map_total_dim(bmap) + n;
3832 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3833 off = 0;
3834 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3835 if (t != type) {
3836 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3837 } else {
3838 unsigned size = isl_basic_map_dim(bmap, t);
3839 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3840 0, pos, off);
3841 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3842 pos, size - pos, off + pos + n);
3844 off += isl_space_dim(res_dim, t);
3846 isl_dim_map_div(dim_map, bmap, off);
3848 res = isl_basic_map_alloc_space(res_dim,
3849 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3850 rational = isl_basic_map_is_rational(bmap);
3851 if (rational < 0)
3852 res = isl_basic_map_free(res);
3853 if (rational)
3854 res = isl_basic_map_set_rational(res);
3855 if (isl_basic_map_plain_is_empty(bmap)) {
3856 isl_basic_map_free(bmap);
3857 free(dim_map);
3858 return isl_basic_map_set_to_empty(res);
3860 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3861 return isl_basic_map_finalize(res);
3864 __isl_give isl_basic_set *isl_basic_set_insert_dims(
3865 __isl_take isl_basic_set *bset,
3866 enum isl_dim_type type, unsigned pos, unsigned n)
3868 return isl_basic_map_insert_dims(bset, type, pos, n);
3871 __isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
3872 enum isl_dim_type type, unsigned n)
3874 if (!bmap)
3875 return NULL;
3876 return isl_basic_map_insert_dims(bmap, type,
3877 isl_basic_map_dim(bmap, type), n);
3880 __isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
3881 enum isl_dim_type type, unsigned n)
3883 if (!bset)
3884 return NULL;
3885 isl_assert(bset->ctx, type != isl_dim_in, goto error);
3886 return isl_basic_map_add_dims(bset, type, n);
3887 error:
3888 isl_basic_set_free(bset);
3889 return NULL;
3892 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
3893 enum isl_dim_type type)
3895 isl_space *space;
3897 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3898 return map;
3900 space = isl_map_get_space(map);
3901 space = isl_space_reset(space, type);
3902 map = isl_map_reset_space(map, space);
3903 return map;
3906 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3907 enum isl_dim_type type, unsigned pos, unsigned n)
3909 int i;
3911 if (n == 0)
3912 return map_space_reset(map, type);
3914 map = isl_map_cow(map);
3915 if (!map)
3916 return NULL;
3918 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3919 if (!map->dim)
3920 goto error;
3922 for (i = 0; i < map->n; ++i) {
3923 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3924 if (!map->p[i])
3925 goto error;
3928 return map;
3929 error:
3930 isl_map_free(map);
3931 return NULL;
3934 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
3935 enum isl_dim_type type, unsigned pos, unsigned n)
3937 return isl_map_insert_dims(set, type, pos, n);
3940 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
3941 enum isl_dim_type type, unsigned n)
3943 if (!map)
3944 return NULL;
3945 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
3948 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
3949 enum isl_dim_type type, unsigned n)
3951 if (!set)
3952 return NULL;
3953 isl_assert(set->ctx, type != isl_dim_in, goto error);
3954 return set_from_map(isl_map_add_dims(set_to_map(set), type, n));
3955 error:
3956 isl_set_free(set);
3957 return NULL;
3960 __isl_give isl_basic_map *isl_basic_map_move_dims(
3961 __isl_take isl_basic_map *bmap,
3962 enum isl_dim_type dst_type, unsigned dst_pos,
3963 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3965 struct isl_dim_map *dim_map;
3966 struct isl_basic_map *res;
3967 enum isl_dim_type t;
3968 unsigned total, off;
3970 if (!bmap)
3971 return NULL;
3972 if (n == 0) {
3973 bmap = isl_basic_map_reset(bmap, src_type);
3974 bmap = isl_basic_map_reset(bmap, dst_type);
3975 return bmap;
3978 if (isl_basic_map_check_range(bmap, src_type, src_pos, n) < 0)
3979 return isl_basic_map_free(bmap);
3981 if (dst_type == src_type && dst_pos == src_pos)
3982 return bmap;
3984 isl_assert(bmap->ctx, dst_type != src_type, goto error);
3986 if (pos(bmap->dim, dst_type) + dst_pos ==
3987 pos(bmap->dim, src_type) + src_pos +
3988 ((src_type < dst_type) ? n : 0)) {
3989 bmap = isl_basic_map_cow(bmap);
3990 if (!bmap)
3991 return NULL;
3993 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
3994 src_type, src_pos, n);
3995 if (!bmap->dim)
3996 goto error;
3998 bmap = isl_basic_map_finalize(bmap);
4000 return bmap;
4003 total = isl_basic_map_total_dim(bmap);
4004 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4006 off = 0;
4007 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4008 unsigned size = isl_space_dim(bmap->dim, t);
4009 if (t == dst_type) {
4010 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4011 0, dst_pos, off);
4012 off += dst_pos;
4013 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
4014 src_pos, n, off);
4015 off += n;
4016 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4017 dst_pos, size - dst_pos, off);
4018 off += size - dst_pos;
4019 } else if (t == src_type) {
4020 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4021 0, src_pos, off);
4022 off += src_pos;
4023 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4024 src_pos + n, size - src_pos - n, off);
4025 off += size - src_pos - n;
4026 } else {
4027 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4028 off += size;
4031 isl_dim_map_div(dim_map, bmap, off);
4033 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4034 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4035 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4036 if (!bmap)
4037 goto error;
4039 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4040 src_type, src_pos, n);
4041 if (!bmap->dim)
4042 goto error;
4044 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
4045 bmap = isl_basic_map_gauss(bmap, NULL);
4046 bmap = isl_basic_map_finalize(bmap);
4048 return bmap;
4049 error:
4050 isl_basic_map_free(bmap);
4051 return NULL;
4054 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
4055 enum isl_dim_type dst_type, unsigned dst_pos,
4056 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4058 isl_basic_map *bmap = bset_to_bmap(bset);
4059 bmap = isl_basic_map_move_dims(bmap, dst_type, dst_pos,
4060 src_type, src_pos, n);
4061 return bset_from_bmap(bmap);
4064 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
4065 enum isl_dim_type dst_type, unsigned dst_pos,
4066 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4068 if (!set)
4069 return NULL;
4070 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
4071 return set_from_map(isl_map_move_dims(set_to_map(set),
4072 dst_type, dst_pos, src_type, src_pos, n));
4073 error:
4074 isl_set_free(set);
4075 return NULL;
4078 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
4079 enum isl_dim_type dst_type, unsigned dst_pos,
4080 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4082 int i;
4084 if (!map)
4085 return NULL;
4086 if (n == 0) {
4087 map = isl_map_reset(map, src_type);
4088 map = isl_map_reset(map, dst_type);
4089 return map;
4092 isl_assert(map->ctx, src_pos + n <= isl_map_dim(map, src_type),
4093 goto error);
4095 if (dst_type == src_type && dst_pos == src_pos)
4096 return map;
4098 isl_assert(map->ctx, dst_type != src_type, goto error);
4100 map = isl_map_cow(map);
4101 if (!map)
4102 return NULL;
4104 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
4105 if (!map->dim)
4106 goto error;
4108 for (i = 0; i < map->n; ++i) {
4109 map->p[i] = isl_basic_map_move_dims(map->p[i],
4110 dst_type, dst_pos,
4111 src_type, src_pos, n);
4112 if (!map->p[i])
4113 goto error;
4116 return map;
4117 error:
4118 isl_map_free(map);
4119 return NULL;
4122 /* Move the specified dimensions to the last columns right before
4123 * the divs. Don't change the dimension specification of bmap.
4124 * That's the responsibility of the caller.
4126 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
4127 enum isl_dim_type type, unsigned first, unsigned n)
4129 struct isl_dim_map *dim_map;
4130 struct isl_basic_map *res;
4131 enum isl_dim_type t;
4132 unsigned total, off;
4134 if (!bmap)
4135 return NULL;
4136 if (pos(bmap->dim, type) + first + n ==
4137 1 + isl_space_dim(bmap->dim, isl_dim_all))
4138 return bmap;
4140 total = isl_basic_map_total_dim(bmap);
4141 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4143 off = 0;
4144 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4145 unsigned size = isl_space_dim(bmap->dim, t);
4146 if (t == type) {
4147 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4148 0, first, off);
4149 off += first;
4150 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4151 first, n, total - bmap->n_div - n);
4152 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4153 first + n, size - (first + n), off);
4154 off += size - (first + n);
4155 } else {
4156 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4157 off += size;
4160 isl_dim_map_div(dim_map, bmap, off + n);
4162 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4163 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4164 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4165 return res;
4168 /* Insert "n" rows in the divs of "bmap".
4170 * The number of columns is not changed, which means that the last
4171 * dimensions of "bmap" are being reintepreted as the new divs.
4172 * The space of "bmap" is not adjusted, however, which means
4173 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
4174 * from the space of "bmap" is the responsibility of the caller.
4176 static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
4177 int n)
4179 int i;
4180 size_t row_size;
4181 isl_int **new_div;
4182 isl_int *old;
4184 bmap = isl_basic_map_cow(bmap);
4185 if (!bmap)
4186 return NULL;
4188 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
4189 old = bmap->block2.data;
4190 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
4191 (bmap->extra + n) * (1 + row_size));
4192 if (!bmap->block2.data)
4193 return isl_basic_map_free(bmap);
4194 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
4195 if (!new_div)
4196 return isl_basic_map_free(bmap);
4197 for (i = 0; i < n; ++i) {
4198 new_div[i] = bmap->block2.data +
4199 (bmap->extra + i) * (1 + row_size);
4200 isl_seq_clr(new_div[i], 1 + row_size);
4202 for (i = 0; i < bmap->extra; ++i)
4203 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
4204 free(bmap->div);
4205 bmap->div = new_div;
4206 bmap->n_div += n;
4207 bmap->extra += n;
4209 return bmap;
4212 /* Drop constraints from "bmap" that only involve the variables
4213 * of "type" in the range [first, first + n] that are not related
4214 * to any of the variables outside that interval.
4215 * These constraints cannot influence the values for the variables
4216 * outside the interval, except in case they cause "bmap" to be empty.
4217 * Only drop the constraints if "bmap" is known to be non-empty.
4219 static __isl_give isl_basic_map *drop_irrelevant_constraints(
4220 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
4221 unsigned first, unsigned n)
4223 int i;
4224 int *groups;
4225 unsigned dim, n_div;
4226 isl_bool non_empty;
4228 non_empty = isl_basic_map_plain_is_non_empty(bmap);
4229 if (non_empty < 0)
4230 return isl_basic_map_free(bmap);
4231 if (!non_empty)
4232 return bmap;
4234 dim = isl_basic_map_dim(bmap, isl_dim_all);
4235 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4236 groups = isl_calloc_array(isl_basic_map_get_ctx(bmap), int, dim);
4237 if (!groups)
4238 return isl_basic_map_free(bmap);
4239 first += isl_basic_map_offset(bmap, type) - 1;
4240 for (i = 0; i < first; ++i)
4241 groups[i] = -1;
4242 for (i = first + n; i < dim - n_div; ++i)
4243 groups[i] = -1;
4245 bmap = isl_basic_map_drop_unrelated_constraints(bmap, groups);
4247 return bmap;
4250 /* Turn the n dimensions of type type, starting at first
4251 * into existentially quantified variables.
4253 * If a subset of the projected out variables are unrelated
4254 * to any of the variables that remain, then the constraints
4255 * involving this subset are simply dropped first.
4257 __isl_give isl_basic_map *isl_basic_map_project_out(
4258 __isl_take isl_basic_map *bmap,
4259 enum isl_dim_type type, unsigned first, unsigned n)
4261 isl_bool empty;
4263 if (n == 0)
4264 return basic_map_space_reset(bmap, type);
4265 if (type == isl_dim_div)
4266 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
4267 "cannot project out existentially quantified variables",
4268 return isl_basic_map_free(bmap));
4270 empty = isl_basic_map_plain_is_empty(bmap);
4271 if (empty < 0)
4272 return isl_basic_map_free(bmap);
4273 if (empty)
4274 bmap = isl_basic_map_set_to_empty(bmap);
4276 bmap = drop_irrelevant_constraints(bmap, type, first, n);
4277 if (!bmap)
4278 return NULL;
4280 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
4281 return isl_basic_map_remove_dims(bmap, type, first, n);
4283 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
4284 return isl_basic_map_free(bmap);
4286 bmap = move_last(bmap, type, first, n);
4287 bmap = isl_basic_map_cow(bmap);
4288 bmap = insert_div_rows(bmap, n);
4289 if (!bmap)
4290 return NULL;
4292 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
4293 if (!bmap->dim)
4294 goto error;
4295 bmap = isl_basic_map_simplify(bmap);
4296 bmap = isl_basic_map_drop_redundant_divs(bmap);
4297 return isl_basic_map_finalize(bmap);
4298 error:
4299 isl_basic_map_free(bmap);
4300 return NULL;
4303 /* Turn the n dimensions of type type, starting at first
4304 * into existentially quantified variables.
4306 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
4307 enum isl_dim_type type, unsigned first, unsigned n)
4309 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset),
4310 type, first, n));
4313 /* Turn the n dimensions of type type, starting at first
4314 * into existentially quantified variables.
4316 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
4317 enum isl_dim_type type, unsigned first, unsigned n)
4319 int i;
4321 if (!map)
4322 return NULL;
4324 if (n == 0)
4325 return map_space_reset(map, type);
4327 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
4329 map = isl_map_cow(map);
4330 if (!map)
4331 return NULL;
4333 map->dim = isl_space_drop_dims(map->dim, type, first, n);
4334 if (!map->dim)
4335 goto error;
4337 for (i = 0; i < map->n; ++i) {
4338 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
4339 if (!map->p[i])
4340 goto error;
4343 return map;
4344 error:
4345 isl_map_free(map);
4346 return NULL;
4349 /* Turn the n dimensions of type type, starting at first
4350 * into existentially quantified variables.
4352 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
4353 enum isl_dim_type type, unsigned first, unsigned n)
4355 return set_from_map(isl_map_project_out(set_to_map(set),
4356 type, first, n));
4359 /* Return a map that projects the elements in "set" onto their
4360 * "n" set dimensions starting at "first".
4361 * "type" should be equal to isl_dim_set.
4363 __isl_give isl_map *isl_set_project_onto_map(__isl_take isl_set *set,
4364 enum isl_dim_type type, unsigned first, unsigned n)
4366 int i;
4367 int dim;
4368 isl_map *map;
4370 if (!set)
4371 return NULL;
4372 if (type != isl_dim_set)
4373 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4374 "only set dimensions can be projected out", goto error);
4375 dim = isl_set_dim(set, isl_dim_set);
4376 if (first + n > dim || first + n < first)
4377 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4378 "index out of bounds", goto error);
4380 map = isl_map_from_domain(set);
4381 map = isl_map_add_dims(map, isl_dim_out, n);
4382 for (i = 0; i < n; ++i)
4383 map = isl_map_equate(map, isl_dim_in, first + i,
4384 isl_dim_out, i);
4385 return map;
4386 error:
4387 isl_set_free(set);
4388 return NULL;
4391 static struct isl_basic_map *add_divs(struct isl_basic_map *bmap, unsigned n)
4393 int i, j;
4395 for (i = 0; i < n; ++i) {
4396 j = isl_basic_map_alloc_div(bmap);
4397 if (j < 0)
4398 goto error;
4399 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
4401 return bmap;
4402 error:
4403 isl_basic_map_free(bmap);
4404 return NULL;
4407 struct isl_basic_map *isl_basic_map_apply_range(
4408 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4410 isl_space *dim_result = NULL;
4411 struct isl_basic_map *bmap;
4412 unsigned n_in, n_out, n, nparam, total, pos;
4413 struct isl_dim_map *dim_map1, *dim_map2;
4415 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4416 goto error;
4417 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_out,
4418 bmap2->dim, isl_dim_in))
4419 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4420 "spaces don't match", goto error);
4422 dim_result = isl_space_join(isl_space_copy(bmap1->dim),
4423 isl_space_copy(bmap2->dim));
4425 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4426 n_out = isl_basic_map_dim(bmap2, isl_dim_out);
4427 n = isl_basic_map_dim(bmap1, isl_dim_out);
4428 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4430 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
4431 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4432 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
4433 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4434 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
4435 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4436 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
4437 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
4438 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4439 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4440 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4442 bmap = isl_basic_map_alloc_space(dim_result,
4443 bmap1->n_div + bmap2->n_div + n,
4444 bmap1->n_eq + bmap2->n_eq,
4445 bmap1->n_ineq + bmap2->n_ineq);
4446 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4447 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4448 bmap = add_divs(bmap, n);
4449 bmap = isl_basic_map_simplify(bmap);
4450 bmap = isl_basic_map_drop_redundant_divs(bmap);
4451 return isl_basic_map_finalize(bmap);
4452 error:
4453 isl_basic_map_free(bmap1);
4454 isl_basic_map_free(bmap2);
4455 return NULL;
4458 struct isl_basic_set *isl_basic_set_apply(
4459 struct isl_basic_set *bset, struct isl_basic_map *bmap)
4461 if (!bset || !bmap)
4462 goto error;
4464 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
4465 goto error);
4467 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset),
4468 bmap));
4469 error:
4470 isl_basic_set_free(bset);
4471 isl_basic_map_free(bmap);
4472 return NULL;
4475 struct isl_basic_map *isl_basic_map_apply_domain(
4476 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4478 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4479 goto error;
4480 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_in,
4481 bmap2->dim, isl_dim_in))
4482 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4483 "spaces don't match", goto error);
4485 bmap1 = isl_basic_map_reverse(bmap1);
4486 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
4487 return isl_basic_map_reverse(bmap1);
4488 error:
4489 isl_basic_map_free(bmap1);
4490 isl_basic_map_free(bmap2);
4491 return NULL;
4494 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4495 * A \cap B -> f(A) + f(B)
4497 __isl_give isl_basic_map *isl_basic_map_sum(__isl_take isl_basic_map *bmap1,
4498 __isl_take isl_basic_map *bmap2)
4500 unsigned n_in, n_out, nparam, total, pos;
4501 struct isl_basic_map *bmap = NULL;
4502 struct isl_dim_map *dim_map1, *dim_map2;
4503 int i;
4505 if (!bmap1 || !bmap2)
4506 goto error;
4508 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
4509 goto error);
4511 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4512 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4513 n_out = isl_basic_map_dim(bmap1, isl_dim_out);
4515 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
4516 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4517 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
4518 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4519 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
4520 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4521 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4522 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
4523 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4524 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4525 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
4527 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
4528 bmap1->n_div + bmap2->n_div + 2 * n_out,
4529 bmap1->n_eq + bmap2->n_eq + n_out,
4530 bmap1->n_ineq + bmap2->n_ineq);
4531 for (i = 0; i < n_out; ++i) {
4532 int j = isl_basic_map_alloc_equality(bmap);
4533 if (j < 0)
4534 goto error;
4535 isl_seq_clr(bmap->eq[j], 1+total);
4536 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
4537 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
4538 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
4540 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4541 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4542 bmap = add_divs(bmap, 2 * n_out);
4544 bmap = isl_basic_map_simplify(bmap);
4545 return isl_basic_map_finalize(bmap);
4546 error:
4547 isl_basic_map_free(bmap);
4548 isl_basic_map_free(bmap1);
4549 isl_basic_map_free(bmap2);
4550 return NULL;
4553 /* Given two maps A -> f(A) and B -> g(B), construct a map
4554 * A \cap B -> f(A) + f(B)
4556 __isl_give isl_map *isl_map_sum(__isl_take isl_map *map1,
4557 __isl_take isl_map *map2)
4559 struct isl_map *result;
4560 int i, j;
4562 if (!map1 || !map2)
4563 goto error;
4565 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
4567 result = isl_map_alloc_space(isl_space_copy(map1->dim),
4568 map1->n * map2->n, 0);
4569 if (!result)
4570 goto error;
4571 for (i = 0; i < map1->n; ++i)
4572 for (j = 0; j < map2->n; ++j) {
4573 struct isl_basic_map *part;
4574 part = isl_basic_map_sum(
4575 isl_basic_map_copy(map1->p[i]),
4576 isl_basic_map_copy(map2->p[j]));
4577 if (isl_basic_map_is_empty(part))
4578 isl_basic_map_free(part);
4579 else
4580 result = isl_map_add_basic_map(result, part);
4581 if (!result)
4582 goto error;
4584 isl_map_free(map1);
4585 isl_map_free(map2);
4586 return result;
4587 error:
4588 isl_map_free(map1);
4589 isl_map_free(map2);
4590 return NULL;
4593 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
4594 __isl_take isl_set *set2)
4596 return set_from_map(isl_map_sum(set_to_map(set1), set_to_map(set2)));
4599 /* Given a basic map A -> f(A), construct A -> -f(A).
4601 __isl_give isl_basic_map *isl_basic_map_neg(__isl_take isl_basic_map *bmap)
4603 int i, j;
4604 unsigned off, n;
4606 bmap = isl_basic_map_cow(bmap);
4607 if (!bmap)
4608 return NULL;
4610 n = isl_basic_map_dim(bmap, isl_dim_out);
4611 off = isl_basic_map_offset(bmap, isl_dim_out);
4612 for (i = 0; i < bmap->n_eq; ++i)
4613 for (j = 0; j < n; ++j)
4614 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
4615 for (i = 0; i < bmap->n_ineq; ++i)
4616 for (j = 0; j < n; ++j)
4617 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
4618 for (i = 0; i < bmap->n_div; ++i)
4619 for (j = 0; j < n; ++j)
4620 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
4621 bmap = isl_basic_map_gauss(bmap, NULL);
4622 return isl_basic_map_finalize(bmap);
4625 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
4627 return isl_basic_map_neg(bset);
4630 /* Given a map A -> f(A), construct A -> -f(A).
4632 __isl_give isl_map *isl_map_neg(__isl_take isl_map *map)
4634 int i;
4636 map = isl_map_cow(map);
4637 if (!map)
4638 return NULL;
4640 for (i = 0; i < map->n; ++i) {
4641 map->p[i] = isl_basic_map_neg(map->p[i]);
4642 if (!map->p[i])
4643 goto error;
4646 return map;
4647 error:
4648 isl_map_free(map);
4649 return NULL;
4652 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
4654 return set_from_map(isl_map_neg(set_to_map(set)));
4657 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4658 * A -> floor(f(A)/d).
4660 __isl_give isl_basic_map *isl_basic_map_floordiv(__isl_take isl_basic_map *bmap,
4661 isl_int d)
4663 unsigned n_in, n_out, nparam, total, pos;
4664 struct isl_basic_map *result = NULL;
4665 struct isl_dim_map *dim_map;
4666 int i;
4668 if (!bmap)
4669 return NULL;
4671 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4672 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4673 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4675 total = nparam + n_in + n_out + bmap->n_div + n_out;
4676 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4677 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
4678 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
4679 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
4680 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
4682 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
4683 bmap->n_div + n_out,
4684 bmap->n_eq, bmap->n_ineq + 2 * n_out);
4685 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
4686 result = add_divs(result, n_out);
4687 for (i = 0; i < n_out; ++i) {
4688 int j;
4689 j = isl_basic_map_alloc_inequality(result);
4690 if (j < 0)
4691 goto error;
4692 isl_seq_clr(result->ineq[j], 1+total);
4693 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
4694 isl_int_set_si(result->ineq[j][1+pos+i], 1);
4695 j = isl_basic_map_alloc_inequality(result);
4696 if (j < 0)
4697 goto error;
4698 isl_seq_clr(result->ineq[j], 1+total);
4699 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
4700 isl_int_set_si(result->ineq[j][1+pos+i], -1);
4701 isl_int_sub_ui(result->ineq[j][0], d, 1);
4704 result = isl_basic_map_simplify(result);
4705 return isl_basic_map_finalize(result);
4706 error:
4707 isl_basic_map_free(result);
4708 return NULL;
4711 /* Given a map A -> f(A) and an integer d, construct a map
4712 * A -> floor(f(A)/d).
4714 struct isl_map *isl_map_floordiv(struct isl_map *map, isl_int d)
4716 int i;
4718 map = isl_map_cow(map);
4719 if (!map)
4720 return NULL;
4722 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4723 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
4724 for (i = 0; i < map->n; ++i) {
4725 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
4726 if (!map->p[i])
4727 goto error;
4730 return map;
4731 error:
4732 isl_map_free(map);
4733 return NULL;
4736 /* Given a map A -> f(A) and an integer d, construct a map
4737 * A -> floor(f(A)/d).
4739 __isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
4740 __isl_take isl_val *d)
4742 if (!map || !d)
4743 goto error;
4744 if (!isl_val_is_int(d))
4745 isl_die(isl_val_get_ctx(d), isl_error_invalid,
4746 "expecting integer denominator", goto error);
4747 map = isl_map_floordiv(map, d->n);
4748 isl_val_free(d);
4749 return map;
4750 error:
4751 isl_map_free(map);
4752 isl_val_free(d);
4753 return NULL;
4756 static __isl_give isl_basic_map *var_equal(__isl_take isl_basic_map *bmap,
4757 unsigned pos)
4759 int i;
4760 unsigned nparam;
4761 unsigned n_in;
4763 i = isl_basic_map_alloc_equality(bmap);
4764 if (i < 0)
4765 goto error;
4766 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4767 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4768 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
4769 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
4770 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
4771 return isl_basic_map_finalize(bmap);
4772 error:
4773 isl_basic_map_free(bmap);
4774 return NULL;
4777 /* Add a constraint to "bmap" expressing i_pos < o_pos
4779 static __isl_give isl_basic_map *var_less(__isl_take isl_basic_map *bmap,
4780 unsigned pos)
4782 int i;
4783 unsigned nparam;
4784 unsigned n_in;
4786 i = isl_basic_map_alloc_inequality(bmap);
4787 if (i < 0)
4788 goto error;
4789 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4790 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4791 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4792 isl_int_set_si(bmap->ineq[i][0], -1);
4793 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4794 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4795 return isl_basic_map_finalize(bmap);
4796 error:
4797 isl_basic_map_free(bmap);
4798 return NULL;
4801 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4803 static __isl_give isl_basic_map *var_less_or_equal(
4804 __isl_take isl_basic_map *bmap, unsigned pos)
4806 int i;
4807 unsigned nparam;
4808 unsigned n_in;
4810 i = isl_basic_map_alloc_inequality(bmap);
4811 if (i < 0)
4812 goto error;
4813 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4814 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4815 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4816 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4817 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4818 return isl_basic_map_finalize(bmap);
4819 error:
4820 isl_basic_map_free(bmap);
4821 return NULL;
4824 /* Add a constraint to "bmap" expressing i_pos > o_pos
4826 static __isl_give isl_basic_map *var_more(__isl_take isl_basic_map *bmap,
4827 unsigned pos)
4829 int i;
4830 unsigned nparam;
4831 unsigned n_in;
4833 i = isl_basic_map_alloc_inequality(bmap);
4834 if (i < 0)
4835 goto error;
4836 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4837 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4838 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4839 isl_int_set_si(bmap->ineq[i][0], -1);
4840 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4841 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4842 return isl_basic_map_finalize(bmap);
4843 error:
4844 isl_basic_map_free(bmap);
4845 return NULL;
4848 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4850 static __isl_give isl_basic_map *var_more_or_equal(
4851 __isl_take isl_basic_map *bmap, unsigned pos)
4853 int i;
4854 unsigned nparam;
4855 unsigned n_in;
4857 i = isl_basic_map_alloc_inequality(bmap);
4858 if (i < 0)
4859 goto error;
4860 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4861 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4862 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4863 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4864 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4865 return isl_basic_map_finalize(bmap);
4866 error:
4867 isl_basic_map_free(bmap);
4868 return NULL;
4871 __isl_give isl_basic_map *isl_basic_map_equal(
4872 __isl_take isl_space *dim, unsigned n_equal)
4874 int i;
4875 struct isl_basic_map *bmap;
4876 bmap = isl_basic_map_alloc_space(dim, 0, n_equal, 0);
4877 if (!bmap)
4878 return NULL;
4879 for (i = 0; i < n_equal && bmap; ++i)
4880 bmap = var_equal(bmap, i);
4881 return isl_basic_map_finalize(bmap);
4884 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4886 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *dim,
4887 unsigned pos)
4889 int i;
4890 struct isl_basic_map *bmap;
4891 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4892 if (!bmap)
4893 return NULL;
4894 for (i = 0; i < pos && bmap; ++i)
4895 bmap = var_equal(bmap, i);
4896 if (bmap)
4897 bmap = var_less(bmap, pos);
4898 return isl_basic_map_finalize(bmap);
4901 /* Return a relation on "dim" expressing i_[0..pos] <<= o_[0..pos]
4903 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
4904 __isl_take isl_space *dim, unsigned pos)
4906 int i;
4907 isl_basic_map *bmap;
4909 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4910 for (i = 0; i < pos; ++i)
4911 bmap = var_equal(bmap, i);
4912 bmap = var_less_or_equal(bmap, pos);
4913 return isl_basic_map_finalize(bmap);
4916 /* Return a relation on "dim" expressing i_pos > o_pos
4918 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *dim,
4919 unsigned pos)
4921 int i;
4922 struct isl_basic_map *bmap;
4923 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4924 if (!bmap)
4925 return NULL;
4926 for (i = 0; i < pos && bmap; ++i)
4927 bmap = var_equal(bmap, i);
4928 if (bmap)
4929 bmap = var_more(bmap, pos);
4930 return isl_basic_map_finalize(bmap);
4933 /* Return a relation on "dim" expressing i_[0..pos] >>= o_[0..pos]
4935 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
4936 __isl_take isl_space *dim, unsigned pos)
4938 int i;
4939 isl_basic_map *bmap;
4941 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4942 for (i = 0; i < pos; ++i)
4943 bmap = var_equal(bmap, i);
4944 bmap = var_more_or_equal(bmap, pos);
4945 return isl_basic_map_finalize(bmap);
4948 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *dims,
4949 unsigned n, int equal)
4951 struct isl_map *map;
4952 int i;
4954 if (n == 0 && equal)
4955 return isl_map_universe(dims);
4957 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
4959 for (i = 0; i + 1 < n; ++i)
4960 map = isl_map_add_basic_map(map,
4961 isl_basic_map_less_at(isl_space_copy(dims), i));
4962 if (n > 0) {
4963 if (equal)
4964 map = isl_map_add_basic_map(map,
4965 isl_basic_map_less_or_equal_at(dims, n - 1));
4966 else
4967 map = isl_map_add_basic_map(map,
4968 isl_basic_map_less_at(dims, n - 1));
4969 } else
4970 isl_space_free(dims);
4972 return map;
4975 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *dims, int equal)
4977 if (!dims)
4978 return NULL;
4979 return map_lex_lte_first(dims, dims->n_out, equal);
4982 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
4984 return map_lex_lte_first(dim, n, 0);
4987 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
4989 return map_lex_lte_first(dim, n, 1);
4992 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
4994 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
4997 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
4999 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
5002 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *dims,
5003 unsigned n, int equal)
5005 struct isl_map *map;
5006 int i;
5008 if (n == 0 && equal)
5009 return isl_map_universe(dims);
5011 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
5013 for (i = 0; i + 1 < n; ++i)
5014 map = isl_map_add_basic_map(map,
5015 isl_basic_map_more_at(isl_space_copy(dims), i));
5016 if (n > 0) {
5017 if (equal)
5018 map = isl_map_add_basic_map(map,
5019 isl_basic_map_more_or_equal_at(dims, n - 1));
5020 else
5021 map = isl_map_add_basic_map(map,
5022 isl_basic_map_more_at(dims, n - 1));
5023 } else
5024 isl_space_free(dims);
5026 return map;
5029 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *dims, int equal)
5031 if (!dims)
5032 return NULL;
5033 return map_lex_gte_first(dims, dims->n_out, equal);
5036 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
5038 return map_lex_gte_first(dim, n, 0);
5041 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
5043 return map_lex_gte_first(dim, n, 1);
5046 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
5048 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
5051 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
5053 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
5056 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
5057 __isl_take isl_set *set2)
5059 isl_map *map;
5060 map = isl_map_lex_le(isl_set_get_space(set1));
5061 map = isl_map_intersect_domain(map, set1);
5062 map = isl_map_intersect_range(map, set2);
5063 return map;
5066 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
5067 __isl_take isl_set *set2)
5069 isl_map *map;
5070 map = isl_map_lex_lt(isl_set_get_space(set1));
5071 map = isl_map_intersect_domain(map, set1);
5072 map = isl_map_intersect_range(map, set2);
5073 return map;
5076 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
5077 __isl_take isl_set *set2)
5079 isl_map *map;
5080 map = isl_map_lex_ge(isl_set_get_space(set1));
5081 map = isl_map_intersect_domain(map, set1);
5082 map = isl_map_intersect_range(map, set2);
5083 return map;
5086 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
5087 __isl_take isl_set *set2)
5089 isl_map *map;
5090 map = isl_map_lex_gt(isl_set_get_space(set1));
5091 map = isl_map_intersect_domain(map, set1);
5092 map = isl_map_intersect_range(map, set2);
5093 return map;
5096 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
5097 __isl_take isl_map *map2)
5099 isl_map *map;
5100 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
5101 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5102 map = isl_map_apply_range(map, isl_map_reverse(map2));
5103 return map;
5106 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
5107 __isl_take isl_map *map2)
5109 isl_map *map;
5110 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
5111 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5112 map = isl_map_apply_range(map, isl_map_reverse(map2));
5113 return map;
5116 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
5117 __isl_take isl_map *map2)
5119 isl_map *map;
5120 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
5121 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5122 map = isl_map_apply_range(map, isl_map_reverse(map2));
5123 return map;
5126 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
5127 __isl_take isl_map *map2)
5129 isl_map *map;
5130 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
5131 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5132 map = isl_map_apply_range(map, isl_map_reverse(map2));
5133 return map;
5136 /* For a div d = floor(f/m), add the constraint
5138 * f - m d >= 0
5140 static isl_stat add_upper_div_constraint(__isl_keep isl_basic_map *bmap,
5141 unsigned pos, isl_int *div)
5143 int i;
5144 unsigned total = isl_basic_map_total_dim(bmap);
5146 i = isl_basic_map_alloc_inequality(bmap);
5147 if (i < 0)
5148 return isl_stat_error;
5149 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
5150 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
5152 return isl_stat_ok;
5155 /* For a div d = floor(f/m), add the constraint
5157 * -(f-(m-1)) + m d >= 0
5159 static isl_stat add_lower_div_constraint(__isl_keep isl_basic_map *bmap,
5160 unsigned pos, isl_int *div)
5162 int i;
5163 unsigned total = isl_basic_map_total_dim(bmap);
5165 i = isl_basic_map_alloc_inequality(bmap);
5166 if (i < 0)
5167 return isl_stat_error;
5168 isl_seq_neg(bmap->ineq[i], div + 1, 1 + total);
5169 isl_int_set(bmap->ineq[i][1 + pos], div[0]);
5170 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
5171 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
5173 return isl_stat_ok;
5176 /* For a div d = floor(f/m), add the constraints
5178 * f - m d >= 0
5179 * -(f-(m-1)) + m d >= 0
5181 * Note that the second constraint is the negation of
5183 * f - m d >= m
5185 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
5186 unsigned pos, isl_int *div)
5188 if (add_upper_div_constraint(bmap, pos, div) < 0)
5189 return -1;
5190 if (add_lower_div_constraint(bmap, pos, div) < 0)
5191 return -1;
5192 return 0;
5195 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
5196 unsigned pos, isl_int *div)
5198 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset),
5199 pos, div);
5202 int isl_basic_map_add_div_constraints(struct isl_basic_map *bmap, unsigned div)
5204 unsigned total = isl_basic_map_total_dim(bmap);
5205 unsigned div_pos = total - bmap->n_div + div;
5207 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
5208 bmap->div[div]);
5211 /* For each known div d = floor(f/m), add the constraints
5213 * f - m d >= 0
5214 * -(f-(m-1)) + m d >= 0
5216 * Remove duplicate constraints in case of some these div constraints
5217 * already appear in "bmap".
5219 __isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
5220 __isl_take isl_basic_map *bmap)
5222 unsigned n_div;
5224 if (!bmap)
5225 return NULL;
5226 n_div = isl_basic_map_dim(bmap, isl_dim_div);
5227 if (n_div == 0)
5228 return bmap;
5230 bmap = add_known_div_constraints(bmap);
5231 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
5232 bmap = isl_basic_map_finalize(bmap);
5233 return bmap;
5236 /* Add the div constraint of sign "sign" for div "div" of "bmap".
5238 * In particular, if this div is of the form d = floor(f/m),
5239 * then add the constraint
5241 * f - m d >= 0
5243 * if sign < 0 or the constraint
5245 * -(f-(m-1)) + m d >= 0
5247 * if sign > 0.
5249 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map *bmap,
5250 unsigned div, int sign)
5252 unsigned total;
5253 unsigned div_pos;
5255 if (!bmap)
5256 return -1;
5258 total = isl_basic_map_total_dim(bmap);
5259 div_pos = total - bmap->n_div + div;
5261 if (sign < 0)
5262 return add_upper_div_constraint(bmap, div_pos, bmap->div[div]);
5263 else
5264 return add_lower_div_constraint(bmap, div_pos, bmap->div[div]);
5267 struct isl_basic_set *isl_basic_map_underlying_set(
5268 struct isl_basic_map *bmap)
5270 if (!bmap)
5271 goto error;
5272 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
5273 bmap->n_div == 0 &&
5274 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
5275 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
5276 return bset_from_bmap(bmap);
5277 bmap = isl_basic_map_cow(bmap);
5278 if (!bmap)
5279 goto error;
5280 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
5281 if (!bmap->dim)
5282 goto error;
5283 bmap->extra -= bmap->n_div;
5284 bmap->n_div = 0;
5285 bmap = isl_basic_map_finalize(bmap);
5286 return bset_from_bmap(bmap);
5287 error:
5288 isl_basic_map_free(bmap);
5289 return NULL;
5292 __isl_give isl_basic_set *isl_basic_set_underlying_set(
5293 __isl_take isl_basic_set *bset)
5295 return isl_basic_map_underlying_set(bset_to_bmap(bset));
5298 /* Replace each element in "list" by the result of applying
5299 * isl_basic_map_underlying_set to the element.
5301 __isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
5302 __isl_take isl_basic_map_list *list)
5304 int i, n;
5306 if (!list)
5307 return NULL;
5309 n = isl_basic_map_list_n_basic_map(list);
5310 for (i = 0; i < n; ++i) {
5311 isl_basic_map *bmap;
5312 isl_basic_set *bset;
5314 bmap = isl_basic_map_list_get_basic_map(list, i);
5315 bset = isl_basic_set_underlying_set(bmap);
5316 list = isl_basic_set_list_set_basic_set(list, i, bset);
5319 return list;
5322 struct isl_basic_map *isl_basic_map_overlying_set(
5323 struct isl_basic_set *bset, struct isl_basic_map *like)
5325 struct isl_basic_map *bmap;
5326 struct isl_ctx *ctx;
5327 unsigned total;
5328 int i;
5330 if (!bset || !like)
5331 goto error;
5332 ctx = bset->ctx;
5333 isl_assert(ctx, bset->n_div == 0, goto error);
5334 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
5335 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
5336 goto error);
5337 if (like->n_div == 0) {
5338 isl_space *space = isl_basic_map_get_space(like);
5339 isl_basic_map_free(like);
5340 return isl_basic_map_reset_space(bset, space);
5342 bset = isl_basic_set_cow(bset);
5343 if (!bset)
5344 goto error;
5345 total = bset->dim->n_out + bset->extra;
5346 bmap = bset_to_bmap(bset);
5347 isl_space_free(bmap->dim);
5348 bmap->dim = isl_space_copy(like->dim);
5349 if (!bmap->dim)
5350 goto error;
5351 bmap->n_div = like->n_div;
5352 bmap->extra += like->n_div;
5353 if (bmap->extra) {
5354 unsigned ltotal;
5355 isl_int **div;
5356 ltotal = total - bmap->extra + like->extra;
5357 if (ltotal > total)
5358 ltotal = total;
5359 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
5360 bmap->extra * (1 + 1 + total));
5361 if (isl_blk_is_error(bmap->block2))
5362 goto error;
5363 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
5364 if (!div)
5365 goto error;
5366 bmap->div = div;
5367 for (i = 0; i < bmap->extra; ++i)
5368 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
5369 for (i = 0; i < like->n_div; ++i) {
5370 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
5371 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
5373 bmap = isl_basic_map_add_known_div_constraints(bmap);
5375 isl_basic_map_free(like);
5376 bmap = isl_basic_map_simplify(bmap);
5377 bmap = isl_basic_map_finalize(bmap);
5378 return bmap;
5379 error:
5380 isl_basic_map_free(like);
5381 isl_basic_set_free(bset);
5382 return NULL;
5385 struct isl_basic_set *isl_basic_set_from_underlying_set(
5386 struct isl_basic_set *bset, struct isl_basic_set *like)
5388 return bset_from_bmap(isl_basic_map_overlying_set(bset,
5389 bset_to_bmap(like)));
5392 struct isl_set *isl_map_underlying_set(struct isl_map *map)
5394 int i;
5396 map = isl_map_cow(map);
5397 if (!map)
5398 return NULL;
5399 map->dim = isl_space_cow(map->dim);
5400 if (!map->dim)
5401 goto error;
5403 for (i = 1; i < map->n; ++i)
5404 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
5405 goto error);
5406 for (i = 0; i < map->n; ++i) {
5407 map->p[i] = bset_to_bmap(
5408 isl_basic_map_underlying_set(map->p[i]));
5409 if (!map->p[i])
5410 goto error;
5412 if (map->n == 0)
5413 map->dim = isl_space_underlying(map->dim, 0);
5414 else {
5415 isl_space_free(map->dim);
5416 map->dim = isl_space_copy(map->p[0]->dim);
5418 if (!map->dim)
5419 goto error;
5420 return set_from_map(map);
5421 error:
5422 isl_map_free(map);
5423 return NULL;
5426 /* Replace the space of "bmap" by "space".
5428 * If the space of "bmap" is identical to "space" (including the identifiers
5429 * of the input and output dimensions), then simply return the original input.
5431 __isl_give isl_basic_map *isl_basic_map_reset_space(
5432 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
5434 isl_bool equal;
5435 isl_space *bmap_space;
5437 bmap_space = isl_basic_map_peek_space(bmap);
5438 equal = isl_space_is_equal(bmap_space, space);
5439 if (equal >= 0 && equal)
5440 equal = isl_space_has_equal_ids(bmap_space, space);
5441 if (equal < 0)
5442 goto error;
5443 if (equal) {
5444 isl_space_free(space);
5445 return bmap;
5447 bmap = isl_basic_map_cow(bmap);
5448 if (!bmap || !space)
5449 goto error;
5451 isl_space_free(bmap->dim);
5452 bmap->dim = space;
5454 bmap = isl_basic_map_finalize(bmap);
5456 return bmap;
5457 error:
5458 isl_basic_map_free(bmap);
5459 isl_space_free(space);
5460 return NULL;
5463 __isl_give isl_basic_set *isl_basic_set_reset_space(
5464 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
5466 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset),
5467 dim));
5470 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
5471 __isl_take isl_space *dim)
5473 int i;
5475 map = isl_map_cow(map);
5476 if (!map || !dim)
5477 goto error;
5479 for (i = 0; i < map->n; ++i) {
5480 map->p[i] = isl_basic_map_reset_space(map->p[i],
5481 isl_space_copy(dim));
5482 if (!map->p[i])
5483 goto error;
5485 isl_space_free(map->dim);
5486 map->dim = dim;
5488 return map;
5489 error:
5490 isl_map_free(map);
5491 isl_space_free(dim);
5492 return NULL;
5495 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
5496 __isl_take isl_space *dim)
5498 return set_from_map(isl_map_reset_space(set_to_map(set), dim));
5501 /* Compute the parameter domain of the given basic set.
5503 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
5505 isl_bool is_params;
5506 isl_space *space;
5507 unsigned n;
5509 is_params = isl_basic_set_is_params(bset);
5510 if (is_params < 0)
5511 return isl_basic_set_free(bset);
5512 if (is_params)
5513 return bset;
5515 n = isl_basic_set_dim(bset, isl_dim_set);
5516 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
5517 space = isl_basic_set_get_space(bset);
5518 space = isl_space_params(space);
5519 bset = isl_basic_set_reset_space(bset, space);
5520 return bset;
5523 /* Construct a zero-dimensional basic set with the given parameter domain.
5525 __isl_give isl_basic_set *isl_basic_set_from_params(
5526 __isl_take isl_basic_set *bset)
5528 isl_space *space;
5529 space = isl_basic_set_get_space(bset);
5530 space = isl_space_set_from_params(space);
5531 bset = isl_basic_set_reset_space(bset, space);
5532 return bset;
5535 /* Compute the parameter domain of the given set.
5537 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
5539 isl_space *space;
5540 unsigned n;
5542 if (isl_set_is_params(set))
5543 return set;
5545 n = isl_set_dim(set, isl_dim_set);
5546 set = isl_set_project_out(set, isl_dim_set, 0, n);
5547 space = isl_set_get_space(set);
5548 space = isl_space_params(space);
5549 set = isl_set_reset_space(set, space);
5550 return set;
5553 /* Construct a zero-dimensional set with the given parameter domain.
5555 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
5557 isl_space *space;
5558 space = isl_set_get_space(set);
5559 space = isl_space_set_from_params(space);
5560 set = isl_set_reset_space(set, space);
5561 return set;
5564 /* Compute the parameter domain of the given map.
5566 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
5568 isl_space *space;
5569 unsigned n;
5571 n = isl_map_dim(map, isl_dim_in);
5572 map = isl_map_project_out(map, isl_dim_in, 0, n);
5573 n = isl_map_dim(map, isl_dim_out);
5574 map = isl_map_project_out(map, isl_dim_out, 0, n);
5575 space = isl_map_get_space(map);
5576 space = isl_space_params(space);
5577 map = isl_map_reset_space(map, space);
5578 return map;
5581 struct isl_basic_set *isl_basic_map_domain(struct isl_basic_map *bmap)
5583 isl_space *space;
5584 unsigned n_out;
5586 if (!bmap)
5587 return NULL;
5588 space = isl_space_domain(isl_basic_map_get_space(bmap));
5590 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5591 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
5593 return isl_basic_map_reset_space(bmap, space);
5596 isl_bool isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
5598 if (!bmap)
5599 return isl_bool_error;
5600 return isl_space_may_be_set(bmap->dim);
5603 /* Is this basic map actually a set?
5604 * Users should never call this function. Outside of isl,
5605 * the type should indicate whether something is a set or a map.
5607 isl_bool isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
5609 if (!bmap)
5610 return isl_bool_error;
5611 return isl_space_is_set(bmap->dim);
5614 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
5616 isl_bool is_set;
5618 is_set = isl_basic_map_is_set(bmap);
5619 if (is_set < 0)
5620 goto error;
5621 if (is_set)
5622 return bmap;
5623 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
5624 error:
5625 isl_basic_map_free(bmap);
5626 return NULL;
5629 __isl_give isl_basic_map *isl_basic_map_domain_map(
5630 __isl_take isl_basic_map *bmap)
5632 int i;
5633 isl_space *dim;
5634 isl_basic_map *domain;
5635 int nparam, n_in, n_out;
5637 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5638 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5639 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5641 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
5642 domain = isl_basic_map_universe(dim);
5644 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5645 bmap = isl_basic_map_apply_range(bmap, domain);
5646 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
5648 for (i = 0; i < n_in; ++i)
5649 bmap = isl_basic_map_equate(bmap, isl_dim_in, i,
5650 isl_dim_out, i);
5652 bmap = isl_basic_map_gauss(bmap, NULL);
5653 return isl_basic_map_finalize(bmap);
5656 __isl_give isl_basic_map *isl_basic_map_range_map(
5657 __isl_take isl_basic_map *bmap)
5659 int i;
5660 isl_space *dim;
5661 isl_basic_map *range;
5662 int nparam, n_in, n_out;
5664 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5665 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5666 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5668 dim = isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap)));
5669 range = isl_basic_map_universe(dim);
5671 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5672 bmap = isl_basic_map_apply_range(bmap, range);
5673 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
5675 for (i = 0; i < n_out; ++i)
5676 bmap = isl_basic_map_equate(bmap, isl_dim_in, n_in + i,
5677 isl_dim_out, i);
5679 bmap = isl_basic_map_gauss(bmap, NULL);
5680 return isl_basic_map_finalize(bmap);
5683 int isl_map_may_be_set(__isl_keep isl_map *map)
5685 if (!map)
5686 return -1;
5687 return isl_space_may_be_set(map->dim);
5690 /* Is this map actually a set?
5691 * Users should never call this function. Outside of isl,
5692 * the type should indicate whether something is a set or a map.
5694 isl_bool isl_map_is_set(__isl_keep isl_map *map)
5696 if (!map)
5697 return isl_bool_error;
5698 return isl_space_is_set(map->dim);
5701 struct isl_set *isl_map_range(struct isl_map *map)
5703 int i;
5704 isl_bool is_set;
5705 struct isl_set *set;
5707 is_set = isl_map_is_set(map);
5708 if (is_set < 0)
5709 goto error;
5710 if (is_set)
5711 return set_from_map(map);
5713 map = isl_map_cow(map);
5714 if (!map)
5715 goto error;
5717 set = set_from_map(map);
5718 set->dim = isl_space_range(set->dim);
5719 if (!set->dim)
5720 goto error;
5721 for (i = 0; i < map->n; ++i) {
5722 set->p[i] = isl_basic_map_range(map->p[i]);
5723 if (!set->p[i])
5724 goto error;
5726 ISL_F_CLR(set, ISL_MAP_DISJOINT);
5727 ISL_F_CLR(set, ISL_SET_NORMALIZED);
5728 return set;
5729 error:
5730 isl_map_free(map);
5731 return NULL;
5734 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
5736 int i;
5738 map = isl_map_cow(map);
5739 if (!map)
5740 return NULL;
5742 map->dim = isl_space_domain_map(map->dim);
5743 if (!map->dim)
5744 goto error;
5745 for (i = 0; i < map->n; ++i) {
5746 map->p[i] = isl_basic_map_domain_map(map->p[i]);
5747 if (!map->p[i])
5748 goto error;
5750 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5751 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5752 return map;
5753 error:
5754 isl_map_free(map);
5755 return NULL;
5758 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
5760 int i;
5761 isl_space *range_dim;
5763 map = isl_map_cow(map);
5764 if (!map)
5765 return NULL;
5767 range_dim = isl_space_range(isl_map_get_space(map));
5768 range_dim = isl_space_from_range(range_dim);
5769 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
5770 map->dim = isl_space_join(map->dim, range_dim);
5771 if (!map->dim)
5772 goto error;
5773 for (i = 0; i < map->n; ++i) {
5774 map->p[i] = isl_basic_map_range_map(map->p[i]);
5775 if (!map->p[i])
5776 goto error;
5778 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5779 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5780 return map;
5781 error:
5782 isl_map_free(map);
5783 return NULL;
5786 /* Given a wrapped map of the form A[B -> C],
5787 * return the map A[B -> C] -> B.
5789 __isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
5791 isl_id *id;
5792 isl_map *map;
5794 if (!set)
5795 return NULL;
5796 if (!isl_set_has_tuple_id(set))
5797 return isl_map_domain_map(isl_set_unwrap(set));
5799 id = isl_set_get_tuple_id(set);
5800 map = isl_map_domain_map(isl_set_unwrap(set));
5801 map = isl_map_set_tuple_id(map, isl_dim_in, id);
5803 return map;
5806 __isl_give isl_basic_map *isl_basic_map_from_domain(
5807 __isl_take isl_basic_set *bset)
5809 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
5812 __isl_give isl_basic_map *isl_basic_map_from_range(
5813 __isl_take isl_basic_set *bset)
5815 isl_space *space;
5816 space = isl_basic_set_get_space(bset);
5817 space = isl_space_from_range(space);
5818 bset = isl_basic_set_reset_space(bset, space);
5819 return bset_to_bmap(bset);
5822 /* Create a relation with the given set as range.
5823 * The domain of the created relation is a zero-dimensional
5824 * flat anonymous space.
5826 __isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
5828 isl_space *space;
5829 space = isl_set_get_space(set);
5830 space = isl_space_from_range(space);
5831 set = isl_set_reset_space(set, space);
5832 return set_to_map(set);
5835 /* Create a relation with the given set as domain.
5836 * The range of the created relation is a zero-dimensional
5837 * flat anonymous space.
5839 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
5841 return isl_map_reverse(isl_map_from_range(set));
5844 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
5845 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
5847 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
5850 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
5851 __isl_take isl_set *range)
5853 return isl_map_apply_range(isl_map_reverse(domain), range);
5856 /* Return a newly allocated isl_map with given space and flags and
5857 * room for "n" basic maps.
5858 * Make sure that all cached information is cleared.
5860 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *space, int n,
5861 unsigned flags)
5863 struct isl_map *map;
5865 if (!space)
5866 return NULL;
5867 if (n < 0)
5868 isl_die(space->ctx, isl_error_internal,
5869 "negative number of basic maps", goto error);
5870 map = isl_calloc(space->ctx, struct isl_map,
5871 sizeof(struct isl_map) +
5872 (n - 1) * sizeof(struct isl_basic_map *));
5873 if (!map)
5874 goto error;
5876 map->ctx = space->ctx;
5877 isl_ctx_ref(map->ctx);
5878 map->ref = 1;
5879 map->size = n;
5880 map->n = 0;
5881 map->dim = space;
5882 map->flags = flags;
5883 return map;
5884 error:
5885 isl_space_free(space);
5886 return NULL;
5889 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *dim)
5891 struct isl_basic_map *bmap;
5892 bmap = isl_basic_map_alloc_space(dim, 0, 1, 0);
5893 bmap = isl_basic_map_set_to_empty(bmap);
5894 return bmap;
5897 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *dim)
5899 struct isl_basic_set *bset;
5900 bset = isl_basic_set_alloc_space(dim, 0, 1, 0);
5901 bset = isl_basic_set_set_to_empty(bset);
5902 return bset;
5905 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *dim)
5907 struct isl_basic_map *bmap;
5908 bmap = isl_basic_map_alloc_space(dim, 0, 0, 0);
5909 bmap = isl_basic_map_finalize(bmap);
5910 return bmap;
5913 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *dim)
5915 struct isl_basic_set *bset;
5916 bset = isl_basic_set_alloc_space(dim, 0, 0, 0);
5917 bset = isl_basic_set_finalize(bset);
5918 return bset;
5921 __isl_give isl_basic_map *isl_basic_map_nat_universe(__isl_take isl_space *dim)
5923 int i;
5924 unsigned total = isl_space_dim(dim, isl_dim_all);
5925 isl_basic_map *bmap;
5927 bmap= isl_basic_map_alloc_space(dim, 0, 0, total);
5928 for (i = 0; i < total; ++i) {
5929 int k = isl_basic_map_alloc_inequality(bmap);
5930 if (k < 0)
5931 goto error;
5932 isl_seq_clr(bmap->ineq[k], 1 + total);
5933 isl_int_set_si(bmap->ineq[k][1 + i], 1);
5935 return bmap;
5936 error:
5937 isl_basic_map_free(bmap);
5938 return NULL;
5941 __isl_give isl_basic_set *isl_basic_set_nat_universe(__isl_take isl_space *dim)
5943 return isl_basic_map_nat_universe(dim);
5946 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
5948 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
5951 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
5953 return isl_map_nat_universe(dim);
5956 __isl_give isl_map *isl_map_empty(__isl_take isl_space *dim)
5958 return isl_map_alloc_space(dim, 0, ISL_MAP_DISJOINT);
5961 __isl_give isl_set *isl_set_empty(__isl_take isl_space *dim)
5963 return isl_set_alloc_space(dim, 0, ISL_MAP_DISJOINT);
5966 __isl_give isl_map *isl_map_universe(__isl_take isl_space *dim)
5968 struct isl_map *map;
5969 if (!dim)
5970 return NULL;
5971 map = isl_map_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5972 map = isl_map_add_basic_map(map, isl_basic_map_universe(dim));
5973 return map;
5976 __isl_give isl_set *isl_set_universe(__isl_take isl_space *dim)
5978 struct isl_set *set;
5979 if (!dim)
5980 return NULL;
5981 set = isl_set_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5982 set = isl_set_add_basic_set(set, isl_basic_set_universe(dim));
5983 return set;
5986 struct isl_map *isl_map_dup(struct isl_map *map)
5988 int i;
5989 struct isl_map *dup;
5991 if (!map)
5992 return NULL;
5993 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
5994 for (i = 0; i < map->n; ++i)
5995 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
5996 return dup;
5999 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
6000 __isl_take isl_basic_map *bmap)
6002 if (!bmap || !map)
6003 goto error;
6004 if (isl_basic_map_plain_is_empty(bmap)) {
6005 isl_basic_map_free(bmap);
6006 return map;
6008 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
6009 isl_assert(map->ctx, map->n < map->size, goto error);
6010 map->p[map->n] = bmap;
6011 map->n++;
6012 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6013 return map;
6014 error:
6015 if (map)
6016 isl_map_free(map);
6017 if (bmap)
6018 isl_basic_map_free(bmap);
6019 return NULL;
6022 __isl_null isl_map *isl_map_free(__isl_take isl_map *map)
6024 int i;
6026 if (!map)
6027 return NULL;
6029 if (--map->ref > 0)
6030 return NULL;
6032 clear_caches(map);
6033 isl_ctx_deref(map->ctx);
6034 for (i = 0; i < map->n; ++i)
6035 isl_basic_map_free(map->p[i]);
6036 isl_space_free(map->dim);
6037 free(map);
6039 return NULL;
6042 static struct isl_basic_map *isl_basic_map_fix_pos_si(
6043 struct isl_basic_map *bmap, unsigned pos, int value)
6045 int j;
6047 bmap = isl_basic_map_cow(bmap);
6048 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6049 j = isl_basic_map_alloc_equality(bmap);
6050 if (j < 0)
6051 goto error;
6052 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6053 isl_int_set_si(bmap->eq[j][pos], -1);
6054 isl_int_set_si(bmap->eq[j][0], value);
6055 bmap = isl_basic_map_simplify(bmap);
6056 return isl_basic_map_finalize(bmap);
6057 error:
6058 isl_basic_map_free(bmap);
6059 return NULL;
6062 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
6063 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
6065 int j;
6067 bmap = isl_basic_map_cow(bmap);
6068 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6069 j = isl_basic_map_alloc_equality(bmap);
6070 if (j < 0)
6071 goto error;
6072 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6073 isl_int_set_si(bmap->eq[j][pos], -1);
6074 isl_int_set(bmap->eq[j][0], value);
6075 bmap = isl_basic_map_simplify(bmap);
6076 return isl_basic_map_finalize(bmap);
6077 error:
6078 isl_basic_map_free(bmap);
6079 return NULL;
6082 __isl_give isl_basic_map *isl_basic_map_fix_si(__isl_take isl_basic_map *bmap,
6083 enum isl_dim_type type, unsigned pos, int value)
6085 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6086 return isl_basic_map_free(bmap);
6087 return isl_basic_map_fix_pos_si(bmap,
6088 isl_basic_map_offset(bmap, type) + pos, value);
6091 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
6092 enum isl_dim_type type, unsigned pos, isl_int value)
6094 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6095 return isl_basic_map_free(bmap);
6096 return isl_basic_map_fix_pos(bmap,
6097 isl_basic_map_offset(bmap, type) + pos, value);
6100 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
6101 * to be equal to "v".
6103 __isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
6104 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6106 if (!bmap || !v)
6107 goto error;
6108 if (!isl_val_is_int(v))
6109 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
6110 "expecting integer value", goto error);
6111 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6112 goto error;
6113 pos += isl_basic_map_offset(bmap, type);
6114 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
6115 isl_val_free(v);
6116 return bmap;
6117 error:
6118 isl_basic_map_free(bmap);
6119 isl_val_free(v);
6120 return NULL;
6123 /* Fix the value of the variable at position "pos" of type "type" of "bset"
6124 * to be equal to "v".
6126 __isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
6127 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6129 return isl_basic_map_fix_val(bset, type, pos, v);
6132 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
6133 enum isl_dim_type type, unsigned pos, int value)
6135 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6136 type, pos, value));
6139 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
6140 enum isl_dim_type type, unsigned pos, isl_int value)
6142 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset),
6143 type, pos, value));
6146 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
6147 unsigned input, int value)
6149 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
6152 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
6153 unsigned dim, int value)
6155 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6156 isl_dim_set, dim, value));
6159 static int remove_if_empty(__isl_keep isl_map *map, int i)
6161 int empty = isl_basic_map_plain_is_empty(map->p[i]);
6163 if (empty < 0)
6164 return -1;
6165 if (!empty)
6166 return 0;
6168 isl_basic_map_free(map->p[i]);
6169 if (i != map->n - 1) {
6170 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6171 map->p[i] = map->p[map->n - 1];
6173 map->n--;
6175 return 0;
6178 /* Perform "fn" on each basic map of "map", where we may not be holding
6179 * the only reference to "map".
6180 * In particular, "fn" should be a semantics preserving operation
6181 * that we want to apply to all copies of "map". We therefore need
6182 * to be careful not to modify "map" in a way that breaks "map"
6183 * in case anything goes wrong.
6185 __isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
6186 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
6188 struct isl_basic_map *bmap;
6189 int i;
6191 if (!map)
6192 return NULL;
6194 for (i = map->n - 1; i >= 0; --i) {
6195 bmap = isl_basic_map_copy(map->p[i]);
6196 bmap = fn(bmap);
6197 if (!bmap)
6198 goto error;
6199 isl_basic_map_free(map->p[i]);
6200 map->p[i] = bmap;
6201 if (remove_if_empty(map, i) < 0)
6202 goto error;
6205 return map;
6206 error:
6207 isl_map_free(map);
6208 return NULL;
6211 __isl_give isl_map *isl_map_fix_si(__isl_take isl_map *map,
6212 enum isl_dim_type type, unsigned pos, int value)
6214 int i;
6216 map = isl_map_cow(map);
6217 if (!map)
6218 return NULL;
6220 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6221 for (i = map->n - 1; i >= 0; --i) {
6222 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
6223 if (remove_if_empty(map, i) < 0)
6224 goto error;
6226 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6227 return map;
6228 error:
6229 isl_map_free(map);
6230 return NULL;
6233 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
6234 enum isl_dim_type type, unsigned pos, int value)
6236 return set_from_map(isl_map_fix_si(set_to_map(set), type, pos, value));
6239 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
6240 enum isl_dim_type type, unsigned pos, isl_int value)
6242 int i;
6244 map = isl_map_cow(map);
6245 if (!map)
6246 return NULL;
6248 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6249 for (i = 0; i < map->n; ++i) {
6250 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
6251 if (!map->p[i])
6252 goto error;
6254 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6255 return map;
6256 error:
6257 isl_map_free(map);
6258 return NULL;
6261 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
6262 enum isl_dim_type type, unsigned pos, isl_int value)
6264 return set_from_map(isl_map_fix(set_to_map(set), type, pos, value));
6267 /* Fix the value of the variable at position "pos" of type "type" of "map"
6268 * to be equal to "v".
6270 __isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
6271 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6273 int i;
6275 map = isl_map_cow(map);
6276 if (!map || !v)
6277 goto error;
6279 if (!isl_val_is_int(v))
6280 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6281 "expecting integer value", goto error);
6282 if (pos >= isl_map_dim(map, type))
6283 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6284 "index out of bounds", goto error);
6285 for (i = map->n - 1; i >= 0; --i) {
6286 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
6287 isl_val_copy(v));
6288 if (remove_if_empty(map, i) < 0)
6289 goto error;
6291 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6292 isl_val_free(v);
6293 return map;
6294 error:
6295 isl_map_free(map);
6296 isl_val_free(v);
6297 return NULL;
6300 /* Fix the value of the variable at position "pos" of type "type" of "set"
6301 * to be equal to "v".
6303 __isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
6304 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6306 return isl_map_fix_val(set, type, pos, v);
6309 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
6310 unsigned input, int value)
6312 return isl_map_fix_si(map, isl_dim_in, input, value);
6315 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
6317 return set_from_map(isl_map_fix_si(set_to_map(set),
6318 isl_dim_set, dim, value));
6321 static __isl_give isl_basic_map *basic_map_bound_si(
6322 __isl_take isl_basic_map *bmap,
6323 enum isl_dim_type type, unsigned pos, int value, int upper)
6325 int j;
6327 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6328 return isl_basic_map_free(bmap);
6329 pos += isl_basic_map_offset(bmap, type);
6330 bmap = isl_basic_map_cow(bmap);
6331 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6332 j = isl_basic_map_alloc_inequality(bmap);
6333 if (j < 0)
6334 goto error;
6335 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6336 if (upper) {
6337 isl_int_set_si(bmap->ineq[j][pos], -1);
6338 isl_int_set_si(bmap->ineq[j][0], value);
6339 } else {
6340 isl_int_set_si(bmap->ineq[j][pos], 1);
6341 isl_int_set_si(bmap->ineq[j][0], -value);
6343 bmap = isl_basic_map_simplify(bmap);
6344 return isl_basic_map_finalize(bmap);
6345 error:
6346 isl_basic_map_free(bmap);
6347 return NULL;
6350 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
6351 __isl_take isl_basic_map *bmap,
6352 enum isl_dim_type type, unsigned pos, int value)
6354 return basic_map_bound_si(bmap, type, pos, value, 0);
6357 /* Constrain the values of the given dimension to be no greater than "value".
6359 __isl_give isl_basic_map *isl_basic_map_upper_bound_si(
6360 __isl_take isl_basic_map *bmap,
6361 enum isl_dim_type type, unsigned pos, int value)
6363 return basic_map_bound_si(bmap, type, pos, value, 1);
6366 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
6367 enum isl_dim_type type, unsigned pos, int value, int upper)
6369 int i;
6371 map = isl_map_cow(map);
6372 if (!map)
6373 return NULL;
6375 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6376 for (i = 0; i < map->n; ++i) {
6377 map->p[i] = basic_map_bound_si(map->p[i],
6378 type, pos, value, upper);
6379 if (!map->p[i])
6380 goto error;
6382 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6383 return map;
6384 error:
6385 isl_map_free(map);
6386 return NULL;
6389 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
6390 enum isl_dim_type type, unsigned pos, int value)
6392 return map_bound_si(map, type, pos, value, 0);
6395 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
6396 enum isl_dim_type type, unsigned pos, int value)
6398 return map_bound_si(map, type, pos, value, 1);
6401 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
6402 enum isl_dim_type type, unsigned pos, int value)
6404 return set_from_map(isl_map_lower_bound_si(set_to_map(set),
6405 type, pos, value));
6408 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
6409 enum isl_dim_type type, unsigned pos, int value)
6411 return isl_map_upper_bound_si(set, type, pos, value);
6414 /* Bound the given variable of "bmap" from below (or above is "upper"
6415 * is set) to "value".
6417 static __isl_give isl_basic_map *basic_map_bound(
6418 __isl_take isl_basic_map *bmap,
6419 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6421 int j;
6423 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6424 return isl_basic_map_free(bmap);
6425 pos += isl_basic_map_offset(bmap, type);
6426 bmap = isl_basic_map_cow(bmap);
6427 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6428 j = isl_basic_map_alloc_inequality(bmap);
6429 if (j < 0)
6430 goto error;
6431 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6432 if (upper) {
6433 isl_int_set_si(bmap->ineq[j][pos], -1);
6434 isl_int_set(bmap->ineq[j][0], value);
6435 } else {
6436 isl_int_set_si(bmap->ineq[j][pos], 1);
6437 isl_int_neg(bmap->ineq[j][0], value);
6439 bmap = isl_basic_map_simplify(bmap);
6440 return isl_basic_map_finalize(bmap);
6441 error:
6442 isl_basic_map_free(bmap);
6443 return NULL;
6446 /* Bound the given variable of "map" from below (or above is "upper"
6447 * is set) to "value".
6449 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
6450 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6452 int i;
6454 map = isl_map_cow(map);
6455 if (!map)
6456 return NULL;
6458 if (pos >= isl_map_dim(map, type))
6459 isl_die(map->ctx, isl_error_invalid,
6460 "index out of bounds", goto error);
6461 for (i = map->n - 1; i >= 0; --i) {
6462 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
6463 if (remove_if_empty(map, i) < 0)
6464 goto error;
6466 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6467 return map;
6468 error:
6469 isl_map_free(map);
6470 return NULL;
6473 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
6474 enum isl_dim_type type, unsigned pos, isl_int value)
6476 return map_bound(map, type, pos, value, 0);
6479 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
6480 enum isl_dim_type type, unsigned pos, isl_int value)
6482 return map_bound(map, type, pos, value, 1);
6485 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
6486 enum isl_dim_type type, unsigned pos, isl_int value)
6488 return isl_map_lower_bound(set, type, pos, value);
6491 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
6492 enum isl_dim_type type, unsigned pos, isl_int value)
6494 return isl_map_upper_bound(set, type, pos, value);
6497 /* Force the values of the variable at position "pos" of type "type" of "set"
6498 * to be no smaller than "value".
6500 __isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
6501 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6503 if (!value)
6504 goto error;
6505 if (!isl_val_is_int(value))
6506 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6507 "expecting integer value", goto error);
6508 set = isl_set_lower_bound(set, type, pos, value->n);
6509 isl_val_free(value);
6510 return set;
6511 error:
6512 isl_val_free(value);
6513 isl_set_free(set);
6514 return NULL;
6517 /* Force the values of the variable at position "pos" of type "type" of "set"
6518 * to be no greater than "value".
6520 __isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
6521 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6523 if (!value)
6524 goto error;
6525 if (!isl_val_is_int(value))
6526 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6527 "expecting integer value", goto error);
6528 set = isl_set_upper_bound(set, type, pos, value->n);
6529 isl_val_free(value);
6530 return set;
6531 error:
6532 isl_val_free(value);
6533 isl_set_free(set);
6534 return NULL;
6537 struct isl_map *isl_map_reverse(struct isl_map *map)
6539 int i;
6541 map = isl_map_cow(map);
6542 if (!map)
6543 return NULL;
6545 map->dim = isl_space_reverse(map->dim);
6546 if (!map->dim)
6547 goto error;
6548 for (i = 0; i < map->n; ++i) {
6549 map->p[i] = isl_basic_map_reverse(map->p[i]);
6550 if (!map->p[i])
6551 goto error;
6553 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6554 return map;
6555 error:
6556 isl_map_free(map);
6557 return NULL;
6560 #undef TYPE
6561 #define TYPE isl_pw_multi_aff
6562 #undef SUFFIX
6563 #define SUFFIX _pw_multi_aff
6564 #undef EMPTY
6565 #define EMPTY isl_pw_multi_aff_empty
6566 #undef ADD
6567 #define ADD isl_pw_multi_aff_union_add
6568 #include "isl_map_lexopt_templ.c"
6570 /* Given a map "map", compute the lexicographically minimal
6571 * (or maximal) image element for each domain element in dom,
6572 * in the form of an isl_pw_multi_aff.
6573 * If "empty" is not NULL, then set *empty to those elements in dom that
6574 * do not have an image element.
6575 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6576 * should be computed over the domain of "map". "empty" is also NULL
6577 * in this case.
6579 * We first compute the lexicographically minimal or maximal element
6580 * in the first basic map. This results in a partial solution "res"
6581 * and a subset "todo" of dom that still need to be handled.
6582 * We then consider each of the remaining maps in "map" and successively
6583 * update both "res" and "todo".
6584 * If "empty" is NULL, then the todo sets are not needed and therefore
6585 * also not computed.
6587 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
6588 __isl_take isl_map *map, __isl_take isl_set *dom,
6589 __isl_give isl_set **empty, unsigned flags)
6591 int i;
6592 int full;
6593 isl_pw_multi_aff *res;
6594 isl_set *todo;
6596 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6597 if (!map || (!full && !dom))
6598 goto error;
6600 if (isl_map_plain_is_empty(map)) {
6601 if (empty)
6602 *empty = dom;
6603 else
6604 isl_set_free(dom);
6605 return isl_pw_multi_aff_from_map(map);
6608 res = basic_map_partial_lexopt_pw_multi_aff(
6609 isl_basic_map_copy(map->p[0]),
6610 isl_set_copy(dom), empty, flags);
6612 if (empty)
6613 todo = *empty;
6614 for (i = 1; i < map->n; ++i) {
6615 isl_pw_multi_aff *res_i;
6617 res_i = basic_map_partial_lexopt_pw_multi_aff(
6618 isl_basic_map_copy(map->p[i]),
6619 isl_set_copy(dom), empty, flags);
6621 if (ISL_FL_ISSET(flags, ISL_OPT_MAX))
6622 res = isl_pw_multi_aff_union_lexmax(res, res_i);
6623 else
6624 res = isl_pw_multi_aff_union_lexmin(res, res_i);
6626 if (empty)
6627 todo = isl_set_intersect(todo, *empty);
6630 isl_set_free(dom);
6631 isl_map_free(map);
6633 if (empty)
6634 *empty = todo;
6636 return res;
6637 error:
6638 if (empty)
6639 *empty = NULL;
6640 isl_set_free(dom);
6641 isl_map_free(map);
6642 return NULL;
6645 #undef TYPE
6646 #define TYPE isl_map
6647 #undef SUFFIX
6648 #define SUFFIX
6649 #undef EMPTY
6650 #define EMPTY isl_map_empty
6651 #undef ADD
6652 #define ADD isl_map_union_disjoint
6653 #include "isl_map_lexopt_templ.c"
6655 /* Given a map "map", compute the lexicographically minimal
6656 * (or maximal) image element for each domain element in "dom",
6657 * in the form of an isl_map.
6658 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6659 * do not have an image element.
6660 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6661 * should be computed over the domain of "map". "empty" is also NULL
6662 * in this case.
6664 * If the input consists of more than one disjunct, then first
6665 * compute the desired result in the form of an isl_pw_multi_aff and
6666 * then convert that into an isl_map.
6668 * This function used to have an explicit implementation in terms
6669 * of isl_maps, but it would continually intersect the domains of
6670 * partial results with the complement of the domain of the next
6671 * partial solution, potentially leading to an explosion in the number
6672 * of disjuncts if there are several disjuncts in the input.
6673 * An even earlier implementation of this function would look for
6674 * better results in the domain of the partial result and for extra
6675 * results in the complement of this domain, which would lead to
6676 * even more splintering.
6678 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
6679 __isl_take isl_map *map, __isl_take isl_set *dom,
6680 __isl_give isl_set **empty, unsigned flags)
6682 int full;
6683 struct isl_map *res;
6684 isl_pw_multi_aff *pma;
6686 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6687 if (!map || (!full && !dom))
6688 goto error;
6690 if (isl_map_plain_is_empty(map)) {
6691 if (empty)
6692 *empty = dom;
6693 else
6694 isl_set_free(dom);
6695 return map;
6698 if (map->n == 1) {
6699 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
6700 dom, empty, flags);
6701 isl_map_free(map);
6702 return res;
6705 pma = isl_map_partial_lexopt_aligned_pw_multi_aff(map, dom, empty,
6706 flags);
6707 return isl_map_from_pw_multi_aff(pma);
6708 error:
6709 if (empty)
6710 *empty = NULL;
6711 isl_set_free(dom);
6712 isl_map_free(map);
6713 return NULL;
6716 __isl_give isl_map *isl_map_partial_lexmax(
6717 __isl_take isl_map *map, __isl_take isl_set *dom,
6718 __isl_give isl_set **empty)
6720 return isl_map_partial_lexopt(map, dom, empty, ISL_OPT_MAX);
6723 __isl_give isl_map *isl_map_partial_lexmin(
6724 __isl_take isl_map *map, __isl_take isl_set *dom,
6725 __isl_give isl_set **empty)
6727 return isl_map_partial_lexopt(map, dom, empty, 0);
6730 __isl_give isl_set *isl_set_partial_lexmin(
6731 __isl_take isl_set *set, __isl_take isl_set *dom,
6732 __isl_give isl_set **empty)
6734 return set_from_map(isl_map_partial_lexmin(set_to_map(set),
6735 dom, empty));
6738 __isl_give isl_set *isl_set_partial_lexmax(
6739 __isl_take isl_set *set, __isl_take isl_set *dom,
6740 __isl_give isl_set **empty)
6742 return set_from_map(isl_map_partial_lexmax(set_to_map(set),
6743 dom, empty));
6746 /* Compute the lexicographic minimum (or maximum if "flags" includes
6747 * ISL_OPT_MAX) of "bset" over its parametric domain.
6749 __isl_give isl_set *isl_basic_set_lexopt(__isl_take isl_basic_set *bset,
6750 unsigned flags)
6752 return isl_basic_map_lexopt(bset, flags);
6755 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
6757 return isl_basic_map_lexopt(bmap, ISL_OPT_MAX);
6760 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
6762 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset)));
6765 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
6767 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset)));
6770 /* Compute the lexicographic minimum of "bset" over its parametric domain
6771 * for the purpose of quantifier elimination.
6772 * That is, find an explicit representation for all the existentially
6773 * quantified variables in "bset" by computing their lexicographic
6774 * minimum.
6776 static __isl_give isl_set *isl_basic_set_lexmin_compute_divs(
6777 __isl_take isl_basic_set *bset)
6779 return isl_basic_set_lexopt(bset, ISL_OPT_QE);
6782 /* Extract the first and only affine expression from list
6783 * and then add it to *pwaff with the given dom.
6784 * This domain is known to be disjoint from other domains
6785 * because of the way isl_basic_map_foreach_lexmax works.
6787 static isl_stat update_dim_opt(__isl_take isl_basic_set *dom,
6788 __isl_take isl_aff_list *list, void *user)
6790 isl_ctx *ctx = isl_basic_set_get_ctx(dom);
6791 isl_aff *aff;
6792 isl_pw_aff **pwaff = user;
6793 isl_pw_aff *pwaff_i;
6795 if (!list)
6796 goto error;
6797 if (isl_aff_list_n_aff(list) != 1)
6798 isl_die(ctx, isl_error_internal,
6799 "expecting single element list", goto error);
6801 aff = isl_aff_list_get_aff(list, 0);
6802 pwaff_i = isl_pw_aff_alloc(isl_set_from_basic_set(dom), aff);
6804 *pwaff = isl_pw_aff_add_disjoint(*pwaff, pwaff_i);
6806 isl_aff_list_free(list);
6808 return isl_stat_ok;
6809 error:
6810 isl_basic_set_free(dom);
6811 isl_aff_list_free(list);
6812 return isl_stat_error;
6815 /* Given a basic map with one output dimension, compute the minimum or
6816 * maximum of that dimension as an isl_pw_aff.
6818 * The isl_pw_aff is constructed by having isl_basic_map_foreach_lexopt
6819 * call update_dim_opt on each leaf of the result.
6821 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
6822 int max)
6824 isl_space *dim = isl_basic_map_get_space(bmap);
6825 isl_pw_aff *pwaff;
6826 isl_stat r;
6828 dim = isl_space_from_domain(isl_space_domain(dim));
6829 dim = isl_space_add_dims(dim, isl_dim_out, 1);
6830 pwaff = isl_pw_aff_empty(dim);
6832 r = isl_basic_map_foreach_lexopt(bmap, max, &update_dim_opt, &pwaff);
6833 if (r < 0)
6834 return isl_pw_aff_free(pwaff);
6836 return pwaff;
6839 /* Compute the minimum or maximum of the given output dimension
6840 * as a function of the parameters and the input dimensions,
6841 * but independently of the other output dimensions.
6843 * We first project out the other output dimension and then compute
6844 * the "lexicographic" maximum in each basic map, combining the results
6845 * using isl_pw_aff_union_max.
6847 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
6848 int max)
6850 int i;
6851 isl_pw_aff *pwaff;
6852 unsigned n_out;
6854 n_out = isl_map_dim(map, isl_dim_out);
6855 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
6856 map = isl_map_project_out(map, isl_dim_out, 0, pos);
6857 if (!map)
6858 return NULL;
6860 if (map->n == 0) {
6861 isl_space *dim = isl_map_get_space(map);
6862 isl_map_free(map);
6863 return isl_pw_aff_empty(dim);
6866 pwaff = basic_map_dim_opt(map->p[0], max);
6867 for (i = 1; i < map->n; ++i) {
6868 isl_pw_aff *pwaff_i;
6870 pwaff_i = basic_map_dim_opt(map->p[i], max);
6871 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
6874 isl_map_free(map);
6876 return pwaff;
6879 /* Compute the minimum of the given output dimension as a function of the
6880 * parameters and input dimensions, but independently of
6881 * the other output dimensions.
6883 __isl_give isl_pw_aff *isl_map_dim_min(__isl_take isl_map *map, int pos)
6885 return map_dim_opt(map, pos, 0);
6888 /* Compute the maximum of the given output dimension as a function of the
6889 * parameters and input dimensions, but independently of
6890 * the other output dimensions.
6892 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
6894 return map_dim_opt(map, pos, 1);
6897 /* Compute the minimum or maximum of the given set dimension
6898 * as a function of the parameters,
6899 * but independently of the other set dimensions.
6901 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
6902 int max)
6904 return map_dim_opt(set, pos, max);
6907 /* Compute the maximum of the given set dimension as a function of the
6908 * parameters, but independently of the other set dimensions.
6910 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
6912 return set_dim_opt(set, pos, 1);
6915 /* Compute the minimum of the given set dimension as a function of the
6916 * parameters, but independently of the other set dimensions.
6918 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
6920 return set_dim_opt(set, pos, 0);
6923 /* Apply a preimage specified by "mat" on the parameters of "bset".
6924 * bset is assumed to have only parameters and divs.
6926 static __isl_give isl_basic_set *basic_set_parameter_preimage(
6927 __isl_take isl_basic_set *bset, __isl_take isl_mat *mat)
6929 unsigned nparam;
6931 if (!bset || !mat)
6932 goto error;
6934 bset->dim = isl_space_cow(bset->dim);
6935 if (!bset->dim)
6936 goto error;
6938 nparam = isl_basic_set_dim(bset, isl_dim_param);
6940 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
6942 bset->dim->nparam = 0;
6943 bset->dim->n_out = nparam;
6944 bset = isl_basic_set_preimage(bset, mat);
6945 if (bset) {
6946 bset->dim->nparam = bset->dim->n_out;
6947 bset->dim->n_out = 0;
6949 return bset;
6950 error:
6951 isl_mat_free(mat);
6952 isl_basic_set_free(bset);
6953 return NULL;
6956 /* Apply a preimage specified by "mat" on the parameters of "set".
6957 * set is assumed to have only parameters and divs.
6959 static __isl_give isl_set *set_parameter_preimage(__isl_take isl_set *set,
6960 __isl_take isl_mat *mat)
6962 isl_space *space;
6963 unsigned nparam;
6965 if (!set || !mat)
6966 goto error;
6968 nparam = isl_set_dim(set, isl_dim_param);
6970 if (mat->n_row != 1 + nparam)
6971 isl_die(isl_set_get_ctx(set), isl_error_internal,
6972 "unexpected number of rows", goto error);
6974 space = isl_set_get_space(set);
6975 space = isl_space_move_dims(space, isl_dim_set, 0,
6976 isl_dim_param, 0, nparam);
6977 set = isl_set_reset_space(set, space);
6978 set = isl_set_preimage(set, mat);
6979 nparam = isl_set_dim(set, isl_dim_out);
6980 space = isl_set_get_space(set);
6981 space = isl_space_move_dims(space, isl_dim_param, 0,
6982 isl_dim_out, 0, nparam);
6983 set = isl_set_reset_space(set, space);
6984 return set;
6985 error:
6986 isl_mat_free(mat);
6987 isl_set_free(set);
6988 return NULL;
6991 /* Intersect the basic set "bset" with the affine space specified by the
6992 * equalities in "eq".
6994 static __isl_give isl_basic_set *basic_set_append_equalities(
6995 __isl_take isl_basic_set *bset, __isl_take isl_mat *eq)
6997 int i, k;
6998 unsigned len;
7000 if (!bset || !eq)
7001 goto error;
7003 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
7004 eq->n_row, 0);
7005 if (!bset)
7006 goto error;
7008 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
7009 for (i = 0; i < eq->n_row; ++i) {
7010 k = isl_basic_set_alloc_equality(bset);
7011 if (k < 0)
7012 goto error;
7013 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
7014 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
7016 isl_mat_free(eq);
7018 bset = isl_basic_set_gauss(bset, NULL);
7019 bset = isl_basic_set_finalize(bset);
7021 return bset;
7022 error:
7023 isl_mat_free(eq);
7024 isl_basic_set_free(bset);
7025 return NULL;
7028 /* Intersect the set "set" with the affine space specified by the
7029 * equalities in "eq".
7031 static struct isl_set *set_append_equalities(struct isl_set *set,
7032 struct isl_mat *eq)
7034 int i;
7036 if (!set || !eq)
7037 goto error;
7039 for (i = 0; i < set->n; ++i) {
7040 set->p[i] = basic_set_append_equalities(set->p[i],
7041 isl_mat_copy(eq));
7042 if (!set->p[i])
7043 goto error;
7045 isl_mat_free(eq);
7046 return set;
7047 error:
7048 isl_mat_free(eq);
7049 isl_set_free(set);
7050 return NULL;
7053 /* Given a basic set "bset" that only involves parameters and existentially
7054 * quantified variables, return the index of the first equality
7055 * that only involves parameters. If there is no such equality then
7056 * return bset->n_eq.
7058 * This function assumes that isl_basic_set_gauss has been called on "bset".
7060 static int first_parameter_equality(__isl_keep isl_basic_set *bset)
7062 int i, j;
7063 unsigned nparam, n_div;
7065 if (!bset)
7066 return -1;
7068 nparam = isl_basic_set_dim(bset, isl_dim_param);
7069 n_div = isl_basic_set_dim(bset, isl_dim_div);
7071 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
7072 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
7073 ++i;
7076 return i;
7079 /* Compute an explicit representation for the existentially quantified
7080 * variables in "bset" by computing the "minimal value" of the set
7081 * variables. Since there are no set variables, the computation of
7082 * the minimal value essentially computes an explicit representation
7083 * of the non-empty part(s) of "bset".
7085 * The input only involves parameters and existentially quantified variables.
7086 * All equalities among parameters have been removed.
7088 * Since the existentially quantified variables in the result are in general
7089 * going to be different from those in the input, we first replace
7090 * them by the minimal number of variables based on their equalities.
7091 * This should simplify the parametric integer programming.
7093 static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
7095 isl_morph *morph1, *morph2;
7096 isl_set *set;
7097 unsigned n;
7099 if (!bset)
7100 return NULL;
7101 if (bset->n_eq == 0)
7102 return isl_basic_set_lexmin_compute_divs(bset);
7104 morph1 = isl_basic_set_parameter_compression(bset);
7105 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
7106 bset = isl_basic_set_lift(bset);
7107 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
7108 bset = isl_morph_basic_set(morph2, bset);
7109 n = isl_basic_set_dim(bset, isl_dim_set);
7110 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
7112 set = isl_basic_set_lexmin_compute_divs(bset);
7114 set = isl_morph_set(isl_morph_inverse(morph1), set);
7116 return set;
7119 /* Project the given basic set onto its parameter domain, possibly introducing
7120 * new, explicit, existential variables in the constraints.
7121 * The input has parameters and (possibly implicit) existential variables.
7122 * The output has the same parameters, but only
7123 * explicit existentially quantified variables.
7125 * The actual projection is performed by pip, but pip doesn't seem
7126 * to like equalities very much, so we first remove the equalities
7127 * among the parameters by performing a variable compression on
7128 * the parameters. Afterward, an inverse transformation is performed
7129 * and the equalities among the parameters are inserted back in.
7131 * The variable compression on the parameters may uncover additional
7132 * equalities that were only implicit before. We therefore check
7133 * if there are any new parameter equalities in the result and
7134 * if so recurse. The removal of parameter equalities is required
7135 * for the parameter compression performed by base_compute_divs.
7137 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
7139 int i;
7140 struct isl_mat *eq;
7141 struct isl_mat *T, *T2;
7142 struct isl_set *set;
7143 unsigned nparam;
7145 bset = isl_basic_set_cow(bset);
7146 if (!bset)
7147 return NULL;
7149 if (bset->n_eq == 0)
7150 return base_compute_divs(bset);
7152 bset = isl_basic_set_gauss(bset, NULL);
7153 if (!bset)
7154 return NULL;
7155 if (isl_basic_set_plain_is_empty(bset))
7156 return isl_set_from_basic_set(bset);
7158 i = first_parameter_equality(bset);
7159 if (i == bset->n_eq)
7160 return base_compute_divs(bset);
7162 nparam = isl_basic_set_dim(bset, isl_dim_param);
7163 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
7164 0, 1 + nparam);
7165 eq = isl_mat_cow(eq);
7166 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
7167 if (T && T->n_col == 0) {
7168 isl_mat_free(T);
7169 isl_mat_free(T2);
7170 isl_mat_free(eq);
7171 bset = isl_basic_set_set_to_empty(bset);
7172 return isl_set_from_basic_set(bset);
7174 bset = basic_set_parameter_preimage(bset, T);
7176 i = first_parameter_equality(bset);
7177 if (!bset)
7178 set = NULL;
7179 else if (i == bset->n_eq)
7180 set = base_compute_divs(bset);
7181 else
7182 set = parameter_compute_divs(bset);
7183 set = set_parameter_preimage(set, T2);
7184 set = set_append_equalities(set, eq);
7185 return set;
7188 /* Insert the divs from "ls" before those of "bmap".
7190 * The number of columns is not changed, which means that the last
7191 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7192 * The caller is responsible for removing the same number of dimensions
7193 * from the space of "bmap".
7195 static __isl_give isl_basic_map *insert_divs_from_local_space(
7196 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
7198 int i;
7199 int n_div;
7200 int old_n_div;
7202 n_div = isl_local_space_dim(ls, isl_dim_div);
7203 if (n_div == 0)
7204 return bmap;
7206 old_n_div = bmap->n_div;
7207 bmap = insert_div_rows(bmap, n_div);
7208 if (!bmap)
7209 return NULL;
7211 for (i = 0; i < n_div; ++i) {
7212 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
7213 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
7216 return bmap;
7219 /* Replace the space of "bmap" by the space and divs of "ls".
7221 * If "ls" has any divs, then we simplify the result since we may
7222 * have discovered some additional equalities that could simplify
7223 * the div expressions.
7225 static __isl_give isl_basic_map *basic_replace_space_by_local_space(
7226 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
7228 int n_div;
7230 bmap = isl_basic_map_cow(bmap);
7231 if (!bmap || !ls)
7232 goto error;
7234 n_div = isl_local_space_dim(ls, isl_dim_div);
7235 bmap = insert_divs_from_local_space(bmap, ls);
7236 if (!bmap)
7237 goto error;
7239 isl_space_free(bmap->dim);
7240 bmap->dim = isl_local_space_get_space(ls);
7241 if (!bmap->dim)
7242 goto error;
7244 isl_local_space_free(ls);
7245 if (n_div > 0)
7246 bmap = isl_basic_map_simplify(bmap);
7247 bmap = isl_basic_map_finalize(bmap);
7248 return bmap;
7249 error:
7250 isl_basic_map_free(bmap);
7251 isl_local_space_free(ls);
7252 return NULL;
7255 /* Replace the space of "map" by the space and divs of "ls".
7257 static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
7258 __isl_take isl_local_space *ls)
7260 int i;
7262 map = isl_map_cow(map);
7263 if (!map || !ls)
7264 goto error;
7266 for (i = 0; i < map->n; ++i) {
7267 map->p[i] = basic_replace_space_by_local_space(map->p[i],
7268 isl_local_space_copy(ls));
7269 if (!map->p[i])
7270 goto error;
7272 isl_space_free(map->dim);
7273 map->dim = isl_local_space_get_space(ls);
7274 if (!map->dim)
7275 goto error;
7277 isl_local_space_free(ls);
7278 return map;
7279 error:
7280 isl_local_space_free(ls);
7281 isl_map_free(map);
7282 return NULL;
7285 /* Compute an explicit representation for the existentially
7286 * quantified variables for which do not know any explicit representation yet.
7288 * We first sort the existentially quantified variables so that the
7289 * existentially quantified variables for which we already have an explicit
7290 * representation are placed before those for which we do not.
7291 * The input dimensions, the output dimensions and the existentially
7292 * quantified variables for which we already have an explicit
7293 * representation are then turned into parameters.
7294 * compute_divs returns a map with the same parameters and
7295 * no input or output dimensions and the dimension specification
7296 * is reset to that of the input, including the existentially quantified
7297 * variables for which we already had an explicit representation.
7299 static struct isl_map *compute_divs(struct isl_basic_map *bmap)
7301 struct isl_basic_set *bset;
7302 struct isl_set *set;
7303 struct isl_map *map;
7304 isl_space *dim;
7305 isl_local_space *ls;
7306 unsigned nparam;
7307 unsigned n_in;
7308 unsigned n_out;
7309 int n_known;
7310 int i;
7312 bmap = isl_basic_map_sort_divs(bmap);
7313 bmap = isl_basic_map_cow(bmap);
7314 if (!bmap)
7315 return NULL;
7317 n_known = isl_basic_map_first_unknown_div(bmap);
7318 if (n_known < 0)
7319 return isl_map_from_basic_map(isl_basic_map_free(bmap));
7321 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7322 n_in = isl_basic_map_dim(bmap, isl_dim_in);
7323 n_out = isl_basic_map_dim(bmap, isl_dim_out);
7324 dim = isl_space_set_alloc(bmap->ctx,
7325 nparam + n_in + n_out + n_known, 0);
7326 if (!dim)
7327 goto error;
7329 ls = isl_basic_map_get_local_space(bmap);
7330 ls = isl_local_space_drop_dims(ls, isl_dim_div,
7331 n_known, bmap->n_div - n_known);
7332 if (n_known > 0) {
7333 for (i = n_known; i < bmap->n_div; ++i)
7334 swap_div(bmap, i - n_known, i);
7335 bmap->n_div -= n_known;
7336 bmap->extra -= n_known;
7338 bmap = isl_basic_map_reset_space(bmap, dim);
7339 bset = bset_from_bmap(bmap);
7341 set = parameter_compute_divs(bset);
7342 map = set_to_map(set);
7343 map = replace_space_by_local_space(map, ls);
7345 return map;
7346 error:
7347 isl_basic_map_free(bmap);
7348 return NULL;
7351 /* Remove the explicit representation of local variable "div",
7352 * if there is any.
7354 __isl_give isl_basic_map *isl_basic_map_mark_div_unknown(
7355 __isl_take isl_basic_map *bmap, int div)
7357 isl_bool unknown;
7359 unknown = isl_basic_map_div_is_marked_unknown(bmap, div);
7360 if (unknown < 0)
7361 return isl_basic_map_free(bmap);
7362 if (unknown)
7363 return bmap;
7365 bmap = isl_basic_map_cow(bmap);
7366 if (!bmap)
7367 return NULL;
7368 isl_int_set_si(bmap->div[div][0], 0);
7369 return bmap;
7372 /* Is local variable "div" of "bmap" marked as not having an explicit
7373 * representation?
7374 * Note that even if "div" is not marked in this way and therefore
7375 * has an explicit representation, this representation may still
7376 * depend (indirectly) on other local variables that do not
7377 * have an explicit representation.
7379 isl_bool isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map *bmap,
7380 int div)
7382 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
7383 return isl_bool_error;
7384 return isl_int_is_zero(bmap->div[div][0]);
7387 /* Return the position of the first local variable that does not
7388 * have an explicit representation.
7389 * Return the total number of local variables if they all have
7390 * an explicit representation.
7391 * Return -1 on error.
7393 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map *bmap)
7395 int i;
7397 if (!bmap)
7398 return -1;
7400 for (i = 0; i < bmap->n_div; ++i) {
7401 if (!isl_basic_map_div_is_known(bmap, i))
7402 return i;
7404 return bmap->n_div;
7407 /* Return the position of the first local variable that does not
7408 * have an explicit representation.
7409 * Return the total number of local variables if they all have
7410 * an explicit representation.
7411 * Return -1 on error.
7413 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set *bset)
7415 return isl_basic_map_first_unknown_div(bset);
7418 /* Does "bmap" have an explicit representation for all local variables?
7420 isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
7422 int first, n;
7424 n = isl_basic_map_dim(bmap, isl_dim_div);
7425 first = isl_basic_map_first_unknown_div(bmap);
7426 if (first < 0)
7427 return isl_bool_error;
7428 return first == n;
7431 /* Do all basic maps in "map" have an explicit representation
7432 * for all local variables?
7434 isl_bool isl_map_divs_known(__isl_keep isl_map *map)
7436 int i;
7438 if (!map)
7439 return isl_bool_error;
7441 for (i = 0; i < map->n; ++i) {
7442 int known = isl_basic_map_divs_known(map->p[i]);
7443 if (known <= 0)
7444 return known;
7447 return isl_bool_true;
7450 /* If bmap contains any unknown divs, then compute explicit
7451 * expressions for them. However, this computation may be
7452 * quite expensive, so first try to remove divs that aren't
7453 * strictly needed.
7455 __isl_give isl_map *isl_basic_map_compute_divs(__isl_take isl_basic_map *bmap)
7457 int known;
7458 struct isl_map *map;
7460 known = isl_basic_map_divs_known(bmap);
7461 if (known < 0)
7462 goto error;
7463 if (known)
7464 return isl_map_from_basic_map(bmap);
7466 bmap = isl_basic_map_drop_redundant_divs(bmap);
7468 known = isl_basic_map_divs_known(bmap);
7469 if (known < 0)
7470 goto error;
7471 if (known)
7472 return isl_map_from_basic_map(bmap);
7474 map = compute_divs(bmap);
7475 return map;
7476 error:
7477 isl_basic_map_free(bmap);
7478 return NULL;
7481 struct isl_map *isl_map_compute_divs(struct isl_map *map)
7483 int i;
7484 int known;
7485 struct isl_map *res;
7487 if (!map)
7488 return NULL;
7489 if (map->n == 0)
7490 return map;
7492 known = isl_map_divs_known(map);
7493 if (known < 0) {
7494 isl_map_free(map);
7495 return NULL;
7497 if (known)
7498 return map;
7500 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
7501 for (i = 1 ; i < map->n; ++i) {
7502 struct isl_map *r2;
7503 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
7504 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
7505 res = isl_map_union_disjoint(res, r2);
7506 else
7507 res = isl_map_union(res, r2);
7509 isl_map_free(map);
7511 return res;
7514 struct isl_set *isl_basic_set_compute_divs(struct isl_basic_set *bset)
7516 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset)));
7519 struct isl_set *isl_set_compute_divs(struct isl_set *set)
7521 return set_from_map(isl_map_compute_divs(set_to_map(set)));
7524 struct isl_set *isl_map_domain(struct isl_map *map)
7526 int i;
7527 struct isl_set *set;
7529 if (!map)
7530 goto error;
7532 map = isl_map_cow(map);
7533 if (!map)
7534 return NULL;
7536 set = set_from_map(map);
7537 set->dim = isl_space_domain(set->dim);
7538 if (!set->dim)
7539 goto error;
7540 for (i = 0; i < map->n; ++i) {
7541 set->p[i] = isl_basic_map_domain(map->p[i]);
7542 if (!set->p[i])
7543 goto error;
7545 ISL_F_CLR(set, ISL_MAP_DISJOINT);
7546 ISL_F_CLR(set, ISL_SET_NORMALIZED);
7547 return set;
7548 error:
7549 isl_map_free(map);
7550 return NULL;
7553 /* Return the union of "map1" and "map2", where we assume for now that
7554 * "map1" and "map2" are disjoint. Note that the basic maps inside
7555 * "map1" or "map2" may not be disjoint from each other.
7556 * Also note that this function is also called from isl_map_union,
7557 * which takes care of handling the situation where "map1" and "map2"
7558 * may not be disjoint.
7560 * If one of the inputs is empty, we can simply return the other input.
7561 * Similarly, if one of the inputs is universal, then it is equal to the union.
7563 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
7564 __isl_take isl_map *map2)
7566 int i;
7567 unsigned flags = 0;
7568 struct isl_map *map = NULL;
7569 int is_universe;
7571 if (!map1 || !map2)
7572 goto error;
7574 if (!isl_space_is_equal(map1->dim, map2->dim))
7575 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
7576 "spaces don't match", goto error);
7578 if (map1->n == 0) {
7579 isl_map_free(map1);
7580 return map2;
7582 if (map2->n == 0) {
7583 isl_map_free(map2);
7584 return map1;
7587 is_universe = isl_map_plain_is_universe(map1);
7588 if (is_universe < 0)
7589 goto error;
7590 if (is_universe) {
7591 isl_map_free(map2);
7592 return map1;
7595 is_universe = isl_map_plain_is_universe(map2);
7596 if (is_universe < 0)
7597 goto error;
7598 if (is_universe) {
7599 isl_map_free(map1);
7600 return map2;
7603 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
7604 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
7605 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7607 map = isl_map_alloc_space(isl_space_copy(map1->dim),
7608 map1->n + map2->n, flags);
7609 if (!map)
7610 goto error;
7611 for (i = 0; i < map1->n; ++i) {
7612 map = isl_map_add_basic_map(map,
7613 isl_basic_map_copy(map1->p[i]));
7614 if (!map)
7615 goto error;
7617 for (i = 0; i < map2->n; ++i) {
7618 map = isl_map_add_basic_map(map,
7619 isl_basic_map_copy(map2->p[i]));
7620 if (!map)
7621 goto error;
7623 isl_map_free(map1);
7624 isl_map_free(map2);
7625 return map;
7626 error:
7627 isl_map_free(map);
7628 isl_map_free(map1);
7629 isl_map_free(map2);
7630 return NULL;
7633 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7634 * guaranteed to be disjoint by the caller.
7636 * Note that this functions is called from within isl_map_make_disjoint,
7637 * so we have to be careful not to touch the constraints of the inputs
7638 * in any way.
7640 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
7641 __isl_take isl_map *map2)
7643 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
7646 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7647 * not be disjoint. The parameters are assumed to have been aligned.
7649 * We currently simply call map_union_disjoint, the internal operation
7650 * of which does not really depend on the inputs being disjoint.
7651 * If the result contains more than one basic map, then we clear
7652 * the disjoint flag since the result may contain basic maps from
7653 * both inputs and these are not guaranteed to be disjoint.
7655 * As a special case, if "map1" and "map2" are obviously equal,
7656 * then we simply return "map1".
7658 static __isl_give isl_map *map_union_aligned(__isl_take isl_map *map1,
7659 __isl_take isl_map *map2)
7661 int equal;
7663 if (!map1 || !map2)
7664 goto error;
7666 equal = isl_map_plain_is_equal(map1, map2);
7667 if (equal < 0)
7668 goto error;
7669 if (equal) {
7670 isl_map_free(map2);
7671 return map1;
7674 map1 = map_union_disjoint(map1, map2);
7675 if (!map1)
7676 return NULL;
7677 if (map1->n > 1)
7678 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
7679 return map1;
7680 error:
7681 isl_map_free(map1);
7682 isl_map_free(map2);
7683 return NULL;
7686 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7687 * not be disjoint.
7689 __isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
7690 __isl_take isl_map *map2)
7692 return isl_map_align_params_map_map_and(map1, map2, &map_union_aligned);
7695 struct isl_set *isl_set_union_disjoint(
7696 struct isl_set *set1, struct isl_set *set2)
7698 return set_from_map(isl_map_union_disjoint(set_to_map(set1),
7699 set_to_map(set2)));
7702 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
7704 return set_from_map(isl_map_union(set_to_map(set1), set_to_map(set2)));
7707 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7708 * the results.
7710 * "map" and "set" are assumed to be compatible and non-NULL.
7712 static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
7713 __isl_take isl_set *set,
7714 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
7715 __isl_take isl_basic_set *bset))
7717 unsigned flags = 0;
7718 struct isl_map *result;
7719 int i, j;
7721 if (isl_set_plain_is_universe(set)) {
7722 isl_set_free(set);
7723 return map;
7726 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
7727 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
7728 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7730 result = isl_map_alloc_space(isl_space_copy(map->dim),
7731 map->n * set->n, flags);
7732 for (i = 0; result && i < map->n; ++i)
7733 for (j = 0; j < set->n; ++j) {
7734 result = isl_map_add_basic_map(result,
7735 fn(isl_basic_map_copy(map->p[i]),
7736 isl_basic_set_copy(set->p[j])));
7737 if (!result)
7738 break;
7741 isl_map_free(map);
7742 isl_set_free(set);
7743 return result;
7746 static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
7747 __isl_take isl_set *set)
7749 isl_bool ok;
7751 ok = isl_map_compatible_range(map, set);
7752 if (ok < 0)
7753 goto error;
7754 if (!ok)
7755 isl_die(set->ctx, isl_error_invalid,
7756 "incompatible spaces", goto error);
7758 return map_intersect_set(map, set, &isl_basic_map_intersect_range);
7759 error:
7760 isl_map_free(map);
7761 isl_set_free(set);
7762 return NULL;
7765 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
7766 __isl_take isl_set *set)
7768 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
7771 static __isl_give isl_map *map_intersect_domain(__isl_take isl_map *map,
7772 __isl_take isl_set *set)
7774 isl_bool ok;
7776 ok = isl_map_compatible_domain(map, set);
7777 if (ok < 0)
7778 goto error;
7779 if (!ok)
7780 isl_die(set->ctx, isl_error_invalid,
7781 "incompatible spaces", goto error);
7783 return map_intersect_set(map, set, &isl_basic_map_intersect_domain);
7784 error:
7785 isl_map_free(map);
7786 isl_set_free(set);
7787 return NULL;
7790 __isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
7791 __isl_take isl_set *set)
7793 return isl_map_align_params_map_map_and(map, set,
7794 &map_intersect_domain);
7797 static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
7798 __isl_take isl_map *map2)
7800 if (!map1 || !map2)
7801 goto error;
7802 map1 = isl_map_reverse(map1);
7803 map1 = isl_map_apply_range(map1, map2);
7804 return isl_map_reverse(map1);
7805 error:
7806 isl_map_free(map1);
7807 isl_map_free(map2);
7808 return NULL;
7811 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
7812 __isl_take isl_map *map2)
7814 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
7817 static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
7818 __isl_take isl_map *map2)
7820 isl_space *dim_result;
7821 struct isl_map *result;
7822 int i, j;
7824 if (!map1 || !map2)
7825 goto error;
7827 dim_result = isl_space_join(isl_space_copy(map1->dim),
7828 isl_space_copy(map2->dim));
7830 result = isl_map_alloc_space(dim_result, map1->n * map2->n, 0);
7831 if (!result)
7832 goto error;
7833 for (i = 0; i < map1->n; ++i)
7834 for (j = 0; j < map2->n; ++j) {
7835 result = isl_map_add_basic_map(result,
7836 isl_basic_map_apply_range(
7837 isl_basic_map_copy(map1->p[i]),
7838 isl_basic_map_copy(map2->p[j])));
7839 if (!result)
7840 goto error;
7842 isl_map_free(map1);
7843 isl_map_free(map2);
7844 if (result && result->n <= 1)
7845 ISL_F_SET(result, ISL_MAP_DISJOINT);
7846 return result;
7847 error:
7848 isl_map_free(map1);
7849 isl_map_free(map2);
7850 return NULL;
7853 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
7854 __isl_take isl_map *map2)
7856 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
7860 * returns range - domain
7862 __isl_give isl_basic_set *isl_basic_map_deltas(__isl_take isl_basic_map *bmap)
7864 isl_space *target_space;
7865 struct isl_basic_set *bset;
7866 unsigned dim;
7867 unsigned nparam;
7868 int i;
7870 if (!bmap)
7871 goto error;
7872 isl_assert(bmap->ctx, isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
7873 bmap->dim, isl_dim_out),
7874 goto error);
7875 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
7876 dim = isl_basic_map_dim(bmap, isl_dim_in);
7877 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7878 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
7879 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
7880 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
7881 for (i = 0; i < dim; ++i) {
7882 int j = isl_basic_map_alloc_equality(bmap);
7883 if (j < 0) {
7884 bmap = isl_basic_map_free(bmap);
7885 break;
7887 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
7888 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
7889 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
7890 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
7892 bset = isl_basic_map_domain(bmap);
7893 bset = isl_basic_set_reset_space(bset, target_space);
7894 return bset;
7895 error:
7896 isl_basic_map_free(bmap);
7897 return NULL;
7901 * returns range - domain
7903 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
7905 int i;
7906 isl_space *dim;
7907 struct isl_set *result;
7909 if (!map)
7910 return NULL;
7912 isl_assert(map->ctx, isl_space_tuple_is_equal(map->dim, isl_dim_in,
7913 map->dim, isl_dim_out),
7914 goto error);
7915 dim = isl_map_get_space(map);
7916 dim = isl_space_domain(dim);
7917 result = isl_set_alloc_space(dim, map->n, 0);
7918 if (!result)
7919 goto error;
7920 for (i = 0; i < map->n; ++i)
7921 result = isl_set_add_basic_set(result,
7922 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
7923 isl_map_free(map);
7924 return result;
7925 error:
7926 isl_map_free(map);
7927 return NULL;
7931 * returns [domain -> range] -> range - domain
7933 __isl_give isl_basic_map *isl_basic_map_deltas_map(
7934 __isl_take isl_basic_map *bmap)
7936 int i, k;
7937 isl_space *dim;
7938 isl_basic_map *domain;
7939 int nparam, n;
7940 unsigned total;
7942 if (!isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
7943 bmap->dim, isl_dim_out))
7944 isl_die(bmap->ctx, isl_error_invalid,
7945 "domain and range don't match", goto error);
7947 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7948 n = isl_basic_map_dim(bmap, isl_dim_in);
7950 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
7951 domain = isl_basic_map_universe(dim);
7953 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
7954 bmap = isl_basic_map_apply_range(bmap, domain);
7955 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
7957 total = isl_basic_map_total_dim(bmap);
7959 for (i = 0; i < n; ++i) {
7960 k = isl_basic_map_alloc_equality(bmap);
7961 if (k < 0)
7962 goto error;
7963 isl_seq_clr(bmap->eq[k], 1 + total);
7964 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
7965 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
7966 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
7969 bmap = isl_basic_map_gauss(bmap, NULL);
7970 return isl_basic_map_finalize(bmap);
7971 error:
7972 isl_basic_map_free(bmap);
7973 return NULL;
7977 * returns [domain -> range] -> range - domain
7979 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
7981 int i;
7982 isl_space *domain_dim;
7984 if (!map)
7985 return NULL;
7987 if (!isl_space_tuple_is_equal(map->dim, isl_dim_in,
7988 map->dim, isl_dim_out))
7989 isl_die(map->ctx, isl_error_invalid,
7990 "domain and range don't match", goto error);
7992 map = isl_map_cow(map);
7993 if (!map)
7994 return NULL;
7996 domain_dim = isl_space_from_range(isl_space_domain(isl_map_get_space(map)));
7997 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
7998 map->dim = isl_space_join(map->dim, domain_dim);
7999 if (!map->dim)
8000 goto error;
8001 for (i = 0; i < map->n; ++i) {
8002 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
8003 if (!map->p[i])
8004 goto error;
8006 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
8007 return map;
8008 error:
8009 isl_map_free(map);
8010 return NULL;
8013 static __isl_give isl_basic_map *basic_map_identity(__isl_take isl_space *dims)
8015 struct isl_basic_map *bmap;
8016 unsigned nparam;
8017 unsigned dim;
8018 int i;
8020 if (!dims)
8021 return NULL;
8023 nparam = dims->nparam;
8024 dim = dims->n_out;
8025 bmap = isl_basic_map_alloc_space(dims, 0, dim, 0);
8026 if (!bmap)
8027 goto error;
8029 for (i = 0; i < dim; ++i) {
8030 int j = isl_basic_map_alloc_equality(bmap);
8031 if (j < 0)
8032 goto error;
8033 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8034 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8035 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
8037 return isl_basic_map_finalize(bmap);
8038 error:
8039 isl_basic_map_free(bmap);
8040 return NULL;
8043 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *dim)
8045 if (!dim)
8046 return NULL;
8047 if (dim->n_in != dim->n_out)
8048 isl_die(dim->ctx, isl_error_invalid,
8049 "number of input and output dimensions needs to be "
8050 "the same", goto error);
8051 return basic_map_identity(dim);
8052 error:
8053 isl_space_free(dim);
8054 return NULL;
8057 __isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
8059 return isl_map_from_basic_map(isl_basic_map_identity(dim));
8062 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
8064 isl_space *dim = isl_set_get_space(set);
8065 isl_map *id;
8066 id = isl_map_identity(isl_space_map_from_set(dim));
8067 return isl_map_intersect_range(id, set);
8070 /* Construct a basic set with all set dimensions having only non-negative
8071 * values.
8073 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
8074 __isl_take isl_space *space)
8076 int i;
8077 unsigned nparam;
8078 unsigned dim;
8079 struct isl_basic_set *bset;
8081 if (!space)
8082 return NULL;
8083 nparam = space->nparam;
8084 dim = space->n_out;
8085 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
8086 if (!bset)
8087 return NULL;
8088 for (i = 0; i < dim; ++i) {
8089 int k = isl_basic_set_alloc_inequality(bset);
8090 if (k < 0)
8091 goto error;
8092 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
8093 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
8095 return bset;
8096 error:
8097 isl_basic_set_free(bset);
8098 return NULL;
8101 /* Construct the half-space x_pos >= 0.
8103 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *dim,
8104 int pos)
8106 int k;
8107 isl_basic_set *nonneg;
8109 nonneg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8110 k = isl_basic_set_alloc_inequality(nonneg);
8111 if (k < 0)
8112 goto error;
8113 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
8114 isl_int_set_si(nonneg->ineq[k][pos], 1);
8116 return isl_basic_set_finalize(nonneg);
8117 error:
8118 isl_basic_set_free(nonneg);
8119 return NULL;
8122 /* Construct the half-space x_pos <= -1.
8124 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *dim, int pos)
8126 int k;
8127 isl_basic_set *neg;
8129 neg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8130 k = isl_basic_set_alloc_inequality(neg);
8131 if (k < 0)
8132 goto error;
8133 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
8134 isl_int_set_si(neg->ineq[k][0], -1);
8135 isl_int_set_si(neg->ineq[k][pos], -1);
8137 return isl_basic_set_finalize(neg);
8138 error:
8139 isl_basic_set_free(neg);
8140 return NULL;
8143 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
8144 enum isl_dim_type type, unsigned first, unsigned n)
8146 int i;
8147 unsigned offset;
8148 isl_basic_set *nonneg;
8149 isl_basic_set *neg;
8151 if (!set)
8152 return NULL;
8153 if (n == 0)
8154 return set;
8156 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
8158 offset = pos(set->dim, type);
8159 for (i = 0; i < n; ++i) {
8160 nonneg = nonneg_halfspace(isl_set_get_space(set),
8161 offset + first + i);
8162 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
8164 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
8167 return set;
8168 error:
8169 isl_set_free(set);
8170 return NULL;
8173 static isl_stat foreach_orthant(__isl_take isl_set *set, int *signs, int first,
8174 int len,
8175 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8176 void *user)
8178 isl_set *half;
8180 if (!set)
8181 return isl_stat_error;
8182 if (isl_set_plain_is_empty(set)) {
8183 isl_set_free(set);
8184 return isl_stat_ok;
8186 if (first == len)
8187 return fn(set, signs, user);
8189 signs[first] = 1;
8190 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
8191 1 + first));
8192 half = isl_set_intersect(half, isl_set_copy(set));
8193 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
8194 goto error;
8196 signs[first] = -1;
8197 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
8198 1 + first));
8199 half = isl_set_intersect(half, set);
8200 return foreach_orthant(half, signs, first + 1, len, fn, user);
8201 error:
8202 isl_set_free(set);
8203 return isl_stat_error;
8206 /* Call "fn" on the intersections of "set" with each of the orthants
8207 * (except for obviously empty intersections). The orthant is identified
8208 * by the signs array, with each entry having value 1 or -1 according
8209 * to the sign of the corresponding variable.
8211 isl_stat isl_set_foreach_orthant(__isl_keep isl_set *set,
8212 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8213 void *user)
8215 unsigned nparam;
8216 unsigned nvar;
8217 int *signs;
8218 isl_stat r;
8220 if (!set)
8221 return isl_stat_error;
8222 if (isl_set_plain_is_empty(set))
8223 return isl_stat_ok;
8225 nparam = isl_set_dim(set, isl_dim_param);
8226 nvar = isl_set_dim(set, isl_dim_set);
8228 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
8230 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
8231 fn, user);
8233 free(signs);
8235 return r;
8238 isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8240 return isl_map_is_equal(set_to_map(set1), set_to_map(set2));
8243 isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
8244 __isl_keep isl_basic_map *bmap2)
8246 int is_subset;
8247 struct isl_map *map1;
8248 struct isl_map *map2;
8250 if (!bmap1 || !bmap2)
8251 return isl_bool_error;
8253 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
8254 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
8256 is_subset = isl_map_is_subset(map1, map2);
8258 isl_map_free(map1);
8259 isl_map_free(map2);
8261 return is_subset;
8264 isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
8265 __isl_keep isl_basic_set *bset2)
8267 return isl_basic_map_is_subset(bset1, bset2);
8270 isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
8271 __isl_keep isl_basic_map *bmap2)
8273 isl_bool is_subset;
8275 if (!bmap1 || !bmap2)
8276 return isl_bool_error;
8277 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8278 if (is_subset != isl_bool_true)
8279 return is_subset;
8280 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8281 return is_subset;
8284 isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
8285 __isl_keep isl_basic_set *bset2)
8287 return isl_basic_map_is_equal(
8288 bset_to_bmap(bset1), bset_to_bmap(bset2));
8291 isl_bool isl_map_is_empty(__isl_keep isl_map *map)
8293 int i;
8294 int is_empty;
8296 if (!map)
8297 return isl_bool_error;
8298 for (i = 0; i < map->n; ++i) {
8299 is_empty = isl_basic_map_is_empty(map->p[i]);
8300 if (is_empty < 0)
8301 return isl_bool_error;
8302 if (!is_empty)
8303 return isl_bool_false;
8305 return isl_bool_true;
8308 isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
8310 return map ? map->n == 0 : isl_bool_error;
8313 isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
8315 return set ? set->n == 0 : isl_bool_error;
8318 isl_bool isl_set_is_empty(__isl_keep isl_set *set)
8320 return isl_map_is_empty(set_to_map(set));
8323 isl_bool isl_map_has_equal_space(__isl_keep isl_map *map1,
8324 __isl_keep isl_map *map2)
8326 if (!map1 || !map2)
8327 return isl_bool_error;
8329 return isl_space_is_equal(map1->dim, map2->dim);
8332 isl_bool isl_set_has_equal_space(__isl_keep isl_set *set1,
8333 __isl_keep isl_set *set2)
8335 if (!set1 || !set2)
8336 return isl_bool_error;
8338 return isl_space_is_equal(set1->dim, set2->dim);
8341 static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8343 isl_bool is_subset;
8345 if (!map1 || !map2)
8346 return isl_bool_error;
8347 is_subset = isl_map_is_subset(map1, map2);
8348 if (is_subset != isl_bool_true)
8349 return is_subset;
8350 is_subset = isl_map_is_subset(map2, map1);
8351 return is_subset;
8354 /* Is "map1" equal to "map2"?
8356 * First check if they are obviously equal.
8357 * If not, then perform a more detailed analysis.
8359 isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8361 isl_bool equal;
8363 equal = isl_map_plain_is_equal(map1, map2);
8364 if (equal < 0 || equal)
8365 return equal;
8366 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
8369 isl_bool isl_basic_map_is_strict_subset(
8370 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8372 isl_bool is_subset;
8374 if (!bmap1 || !bmap2)
8375 return isl_bool_error;
8376 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8377 if (is_subset != isl_bool_true)
8378 return is_subset;
8379 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8380 if (is_subset == isl_bool_error)
8381 return is_subset;
8382 return !is_subset;
8385 isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
8386 __isl_keep isl_map *map2)
8388 isl_bool is_subset;
8390 if (!map1 || !map2)
8391 return isl_bool_error;
8392 is_subset = isl_map_is_subset(map1, map2);
8393 if (is_subset != isl_bool_true)
8394 return is_subset;
8395 is_subset = isl_map_is_subset(map2, map1);
8396 if (is_subset == isl_bool_error)
8397 return is_subset;
8398 return !is_subset;
8401 isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
8402 __isl_keep isl_set *set2)
8404 return isl_map_is_strict_subset(set_to_map(set1), set_to_map(set2));
8407 /* Is "bmap" obviously equal to the universe with the same space?
8409 * That is, does it not have any constraints?
8411 isl_bool isl_basic_map_plain_is_universe(__isl_keep isl_basic_map *bmap)
8413 if (!bmap)
8414 return isl_bool_error;
8415 return bmap->n_eq == 0 && bmap->n_ineq == 0;
8418 /* Is "bset" obviously equal to the universe with the same space?
8420 isl_bool isl_basic_set_plain_is_universe(__isl_keep isl_basic_set *bset)
8422 return isl_basic_map_plain_is_universe(bset);
8425 /* If "c" does not involve any existentially quantified variables,
8426 * then set *univ to false and abort
8428 static isl_stat involves_divs(__isl_take isl_constraint *c, void *user)
8430 isl_bool *univ = user;
8431 unsigned n;
8433 n = isl_constraint_dim(c, isl_dim_div);
8434 *univ = isl_constraint_involves_dims(c, isl_dim_div, 0, n);
8435 isl_constraint_free(c);
8436 if (*univ < 0 || !*univ)
8437 return isl_stat_error;
8438 return isl_stat_ok;
8441 /* Is "bmap" equal to the universe with the same space?
8443 * First check if it is obviously equal to the universe.
8444 * If not and if there are any constraints not involving
8445 * existentially quantified variables, then it is certainly
8446 * not equal to the universe.
8447 * Otherwise, check if the universe is a subset of "bmap".
8449 isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
8451 isl_bool univ;
8452 isl_basic_map *test;
8454 univ = isl_basic_map_plain_is_universe(bmap);
8455 if (univ < 0 || univ)
8456 return univ;
8457 if (isl_basic_map_dim(bmap, isl_dim_div) == 0)
8458 return isl_bool_false;
8459 univ = isl_bool_true;
8460 if (isl_basic_map_foreach_constraint(bmap, &involves_divs, &univ) < 0 &&
8461 univ)
8462 return isl_bool_error;
8463 if (univ < 0 || !univ)
8464 return univ;
8465 test = isl_basic_map_universe(isl_basic_map_get_space(bmap));
8466 univ = isl_basic_map_is_subset(test, bmap);
8467 isl_basic_map_free(test);
8468 return univ;
8471 /* Is "bset" equal to the universe with the same space?
8473 isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
8475 return isl_basic_map_is_universe(bset);
8478 isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
8480 int i;
8482 if (!map)
8483 return isl_bool_error;
8485 for (i = 0; i < map->n; ++i) {
8486 isl_bool r = isl_basic_map_plain_is_universe(map->p[i]);
8487 if (r < 0 || r)
8488 return r;
8491 return isl_bool_false;
8494 isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
8496 return isl_map_plain_is_universe(set_to_map(set));
8499 isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
8501 struct isl_basic_set *bset = NULL;
8502 struct isl_vec *sample = NULL;
8503 isl_bool empty, non_empty;
8505 if (!bmap)
8506 return isl_bool_error;
8508 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
8509 return isl_bool_true;
8511 if (isl_basic_map_plain_is_universe(bmap))
8512 return isl_bool_false;
8514 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
8515 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
8516 copy = isl_basic_map_remove_redundancies(copy);
8517 empty = isl_basic_map_plain_is_empty(copy);
8518 isl_basic_map_free(copy);
8519 return empty;
8522 non_empty = isl_basic_map_plain_is_non_empty(bmap);
8523 if (non_empty < 0)
8524 return isl_bool_error;
8525 if (non_empty)
8526 return isl_bool_false;
8527 isl_vec_free(bmap->sample);
8528 bmap->sample = NULL;
8529 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
8530 if (!bset)
8531 return isl_bool_error;
8532 sample = isl_basic_set_sample_vec(bset);
8533 if (!sample)
8534 return isl_bool_error;
8535 empty = sample->size == 0;
8536 isl_vec_free(bmap->sample);
8537 bmap->sample = sample;
8538 if (empty)
8539 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
8541 return empty;
8544 isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
8546 if (!bmap)
8547 return isl_bool_error;
8548 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
8551 isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
8553 if (!bset)
8554 return isl_bool_error;
8555 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
8558 /* Is "bmap" known to be non-empty?
8560 * That is, is the cached sample still valid?
8562 isl_bool isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map *bmap)
8564 unsigned total;
8566 if (!bmap)
8567 return isl_bool_error;
8568 if (!bmap->sample)
8569 return isl_bool_false;
8570 total = 1 + isl_basic_map_total_dim(bmap);
8571 if (bmap->sample->size != total)
8572 return isl_bool_false;
8573 return isl_basic_map_contains(bmap, bmap->sample);
8576 isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
8578 return isl_basic_map_is_empty(bset_to_bmap(bset));
8581 __isl_give isl_map *isl_basic_map_union(__isl_take isl_basic_map *bmap1,
8582 __isl_take isl_basic_map *bmap2)
8584 struct isl_map *map;
8585 if (!bmap1 || !bmap2)
8586 goto error;
8588 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
8590 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
8591 if (!map)
8592 goto error;
8593 map = isl_map_add_basic_map(map, bmap1);
8594 map = isl_map_add_basic_map(map, bmap2);
8595 return map;
8596 error:
8597 isl_basic_map_free(bmap1);
8598 isl_basic_map_free(bmap2);
8599 return NULL;
8602 struct isl_set *isl_basic_set_union(
8603 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
8605 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1),
8606 bset_to_bmap(bset2)));
8609 /* Order divs such that any div only depends on previous divs */
8610 __isl_give isl_basic_map *isl_basic_map_order_divs(
8611 __isl_take isl_basic_map *bmap)
8613 int i;
8614 unsigned off;
8616 if (!bmap)
8617 return NULL;
8619 off = isl_space_dim(bmap->dim, isl_dim_all);
8621 for (i = 0; i < bmap->n_div; ++i) {
8622 int pos;
8623 if (isl_int_is_zero(bmap->div[i][0]))
8624 continue;
8625 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
8626 bmap->n_div-i);
8627 if (pos == -1)
8628 continue;
8629 if (pos == 0)
8630 isl_die(isl_basic_map_get_ctx(bmap), isl_error_internal,
8631 "integer division depends on itself",
8632 return isl_basic_map_free(bmap));
8633 isl_basic_map_swap_div(bmap, i, i + pos);
8634 --i;
8636 return bmap;
8639 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
8641 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset)));
8644 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
8646 int i;
8648 if (!map)
8649 return 0;
8651 for (i = 0; i < map->n; ++i) {
8652 map->p[i] = isl_basic_map_order_divs(map->p[i]);
8653 if (!map->p[i])
8654 goto error;
8657 return map;
8658 error:
8659 isl_map_free(map);
8660 return NULL;
8663 /* Sort the local variables of "bset".
8665 __isl_give isl_basic_set *isl_basic_set_sort_divs(
8666 __isl_take isl_basic_set *bset)
8668 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset)));
8671 /* Apply the expansion computed by isl_merge_divs.
8672 * The expansion itself is given by "exp" while the resulting
8673 * list of divs is given by "div".
8675 * Move the integer divisions of "bmap" into the right position
8676 * according to "exp" and then introduce the additional integer
8677 * divisions, adding div constraints.
8678 * The moving should be done first to avoid moving coefficients
8679 * in the definitions of the extra integer divisions.
8681 __isl_give isl_basic_map *isl_basic_map_expand_divs(
8682 __isl_take isl_basic_map *bmap, __isl_take isl_mat *div, int *exp)
8684 int i, j;
8685 int n_div;
8687 bmap = isl_basic_map_cow(bmap);
8688 if (!bmap || !div)
8689 goto error;
8691 if (div->n_row < bmap->n_div)
8692 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
8693 "not an expansion", goto error);
8695 n_div = bmap->n_div;
8696 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
8697 div->n_row - n_div, 0,
8698 2 * (div->n_row - n_div));
8700 for (i = n_div; i < div->n_row; ++i)
8701 if (isl_basic_map_alloc_div(bmap) < 0)
8702 goto error;
8704 for (j = n_div - 1; j >= 0; --j) {
8705 if (exp[j] == j)
8706 break;
8707 isl_basic_map_swap_div(bmap, j, exp[j]);
8709 j = 0;
8710 for (i = 0; i < div->n_row; ++i) {
8711 if (j < n_div && exp[j] == i) {
8712 j++;
8713 } else {
8714 isl_seq_cpy(bmap->div[i], div->row[i], div->n_col);
8715 if (isl_basic_map_div_is_marked_unknown(bmap, i))
8716 continue;
8717 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
8718 goto error;
8722 isl_mat_free(div);
8723 return bmap;
8724 error:
8725 isl_basic_map_free(bmap);
8726 isl_mat_free(div);
8727 return NULL;
8730 /* Apply the expansion computed by isl_merge_divs.
8731 * The expansion itself is given by "exp" while the resulting
8732 * list of divs is given by "div".
8734 __isl_give isl_basic_set *isl_basic_set_expand_divs(
8735 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
8737 return isl_basic_map_expand_divs(bset, div, exp);
8740 /* Look for a div in dst that corresponds to the div "div" in src.
8741 * The divs before "div" in src and dst are assumed to be the same.
8743 * Returns -1 if no corresponding div was found and the position
8744 * of the corresponding div in dst otherwise.
8746 static int find_div(__isl_keep isl_basic_map *dst,
8747 __isl_keep isl_basic_map *src, unsigned div)
8749 int i;
8751 unsigned total = isl_space_dim(src->dim, isl_dim_all);
8753 isl_assert(dst->ctx, div <= dst->n_div, return -1);
8754 for (i = div; i < dst->n_div; ++i)
8755 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
8756 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
8757 dst->n_div - div) == -1)
8758 return i;
8759 return -1;
8762 /* Align the divs of "dst" to those of "src", adding divs from "src"
8763 * if needed. That is, make sure that the first src->n_div divs
8764 * of the result are equal to those of src.
8766 * The result is not finalized as by design it will have redundant
8767 * divs if any divs from "src" were copied.
8769 __isl_give isl_basic_map *isl_basic_map_align_divs(
8770 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
8772 int i;
8773 int known, extended;
8774 unsigned total;
8776 if (!dst || !src)
8777 return isl_basic_map_free(dst);
8779 if (src->n_div == 0)
8780 return dst;
8782 known = isl_basic_map_divs_known(src);
8783 if (known < 0)
8784 return isl_basic_map_free(dst);
8785 if (!known)
8786 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
8787 "some src divs are unknown",
8788 return isl_basic_map_free(dst));
8790 src = isl_basic_map_order_divs(src);
8792 extended = 0;
8793 total = isl_space_dim(src->dim, isl_dim_all);
8794 for (i = 0; i < src->n_div; ++i) {
8795 int j = find_div(dst, src, i);
8796 if (j < 0) {
8797 if (!extended) {
8798 int extra = src->n_div - i;
8799 dst = isl_basic_map_cow(dst);
8800 if (!dst)
8801 return NULL;
8802 dst = isl_basic_map_extend_space(dst,
8803 isl_space_copy(dst->dim),
8804 extra, 0, 2 * extra);
8805 extended = 1;
8807 j = isl_basic_map_alloc_div(dst);
8808 if (j < 0)
8809 return isl_basic_map_free(dst);
8810 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
8811 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
8812 if (isl_basic_map_add_div_constraints(dst, j) < 0)
8813 return isl_basic_map_free(dst);
8815 if (j != i)
8816 isl_basic_map_swap_div(dst, i, j);
8818 return dst;
8821 __isl_give isl_map *isl_map_align_divs_internal(__isl_take isl_map *map)
8823 int i;
8825 if (!map)
8826 return NULL;
8827 if (map->n == 0)
8828 return map;
8829 map = isl_map_compute_divs(map);
8830 map = isl_map_cow(map);
8831 if (!map)
8832 return NULL;
8834 for (i = 1; i < map->n; ++i)
8835 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
8836 for (i = 1; i < map->n; ++i) {
8837 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
8838 if (!map->p[i])
8839 return isl_map_free(map);
8842 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
8843 return map;
8846 __isl_give isl_map *isl_map_align_divs(__isl_take isl_map *map)
8848 return isl_map_align_divs_internal(map);
8851 struct isl_set *isl_set_align_divs(struct isl_set *set)
8853 return set_from_map(isl_map_align_divs_internal(set_to_map(set)));
8856 /* Align the divs of the basic maps in "map" to those
8857 * of the basic maps in "list", as well as to the other basic maps in "map".
8858 * The elements in "list" are assumed to have known divs.
8860 __isl_give isl_map *isl_map_align_divs_to_basic_map_list(
8861 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
8863 int i, n;
8865 map = isl_map_compute_divs(map);
8866 map = isl_map_cow(map);
8867 if (!map || !list)
8868 return isl_map_free(map);
8869 if (map->n == 0)
8870 return map;
8872 n = isl_basic_map_list_n_basic_map(list);
8873 for (i = 0; i < n; ++i) {
8874 isl_basic_map *bmap;
8876 bmap = isl_basic_map_list_get_basic_map(list, i);
8877 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
8878 isl_basic_map_free(bmap);
8880 if (!map->p[0])
8881 return isl_map_free(map);
8883 return isl_map_align_divs_internal(map);
8886 /* Align the divs of each element of "list" to those of "bmap".
8887 * Both "bmap" and the elements of "list" are assumed to have known divs.
8889 __isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
8890 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
8892 int i, n;
8894 if (!list || !bmap)
8895 return isl_basic_map_list_free(list);
8897 n = isl_basic_map_list_n_basic_map(list);
8898 for (i = 0; i < n; ++i) {
8899 isl_basic_map *bmap_i;
8901 bmap_i = isl_basic_map_list_get_basic_map(list, i);
8902 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
8903 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
8906 return list;
8909 static __isl_give isl_set *set_apply( __isl_take isl_set *set,
8910 __isl_take isl_map *map)
8912 isl_bool ok;
8914 ok = isl_map_compatible_domain(map, set);
8915 if (ok < 0)
8916 goto error;
8917 if (!ok)
8918 isl_die(isl_set_get_ctx(set), isl_error_invalid,
8919 "incompatible spaces", goto error);
8920 map = isl_map_intersect_domain(map, set);
8921 set = isl_map_range(map);
8922 return set;
8923 error:
8924 isl_set_free(set);
8925 isl_map_free(map);
8926 return NULL;
8929 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
8930 __isl_take isl_map *map)
8932 return isl_map_align_params_map_map_and(set, map, &set_apply);
8935 /* There is no need to cow as removing empty parts doesn't change
8936 * the meaning of the set.
8938 struct isl_map *isl_map_remove_empty_parts(struct isl_map *map)
8940 int i;
8942 if (!map)
8943 return NULL;
8945 for (i = map->n - 1; i >= 0; --i)
8946 remove_if_empty(map, i);
8948 return map;
8951 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
8953 return set_from_map(isl_map_remove_empty_parts(set_to_map(set)));
8956 /* Given two basic sets bset1 and bset2, compute the maximal difference
8957 * between the values of dimension pos in bset1 and those in bset2
8958 * for any common value of the parameters and dimensions preceding pos.
8960 static enum isl_lp_result basic_set_maximal_difference_at(
8961 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
8962 int pos, isl_int *opt)
8964 isl_basic_map *bmap1;
8965 isl_basic_map *bmap2;
8966 struct isl_ctx *ctx;
8967 struct isl_vec *obj;
8968 unsigned total;
8969 unsigned nparam;
8970 unsigned dim1;
8971 enum isl_lp_result res;
8973 if (!bset1 || !bset2)
8974 return isl_lp_error;
8976 nparam = isl_basic_set_n_param(bset1);
8977 dim1 = isl_basic_set_n_dim(bset1);
8979 bmap1 = isl_basic_map_from_range(isl_basic_set_copy(bset1));
8980 bmap2 = isl_basic_map_from_range(isl_basic_set_copy(bset2));
8981 bmap1 = isl_basic_map_move_dims(bmap1, isl_dim_in, 0,
8982 isl_dim_out, 0, pos);
8983 bmap2 = isl_basic_map_move_dims(bmap2, isl_dim_in, 0,
8984 isl_dim_out, 0, pos);
8985 bmap1 = isl_basic_map_range_product(bmap1, bmap2);
8986 if (!bmap1)
8987 return isl_lp_error;
8989 total = isl_basic_map_total_dim(bmap1);
8990 ctx = bmap1->ctx;
8991 obj = isl_vec_alloc(ctx, 1 + total);
8992 if (!obj)
8993 goto error;
8994 isl_seq_clr(obj->block.data, 1 + total);
8995 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
8996 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
8997 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
8998 opt, NULL, NULL);
8999 isl_basic_map_free(bmap1);
9000 isl_vec_free(obj);
9001 return res;
9002 error:
9003 isl_basic_map_free(bmap1);
9004 return isl_lp_error;
9007 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
9008 * for any common value of the parameters and dimensions preceding pos
9009 * in both basic sets, the values of dimension pos in bset1 are
9010 * smaller or larger than those in bset2.
9012 * Returns
9013 * 1 if bset1 follows bset2
9014 * -1 if bset1 precedes bset2
9015 * 0 if bset1 and bset2 are incomparable
9016 * -2 if some error occurred.
9018 int isl_basic_set_compare_at(struct isl_basic_set *bset1,
9019 struct isl_basic_set *bset2, int pos)
9021 isl_int opt;
9022 enum isl_lp_result res;
9023 int cmp;
9025 isl_int_init(opt);
9027 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
9029 if (res == isl_lp_empty)
9030 cmp = 0;
9031 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
9032 res == isl_lp_unbounded)
9033 cmp = 1;
9034 else if (res == isl_lp_ok && isl_int_is_neg(opt))
9035 cmp = -1;
9036 else
9037 cmp = -2;
9039 isl_int_clear(opt);
9040 return cmp;
9043 /* Given two basic sets bset1 and bset2, check whether
9044 * for any common value of the parameters and dimensions preceding pos
9045 * there is a value of dimension pos in bset1 that is larger
9046 * than a value of the same dimension in bset2.
9048 * Return
9049 * 1 if there exists such a pair
9050 * 0 if there is no such pair, but there is a pair of equal values
9051 * -1 otherwise
9052 * -2 if some error occurred.
9054 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
9055 __isl_keep isl_basic_set *bset2, int pos)
9057 isl_int opt;
9058 enum isl_lp_result res;
9059 int cmp;
9061 isl_int_init(opt);
9063 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
9065 if (res == isl_lp_empty)
9066 cmp = -1;
9067 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
9068 res == isl_lp_unbounded)
9069 cmp = 1;
9070 else if (res == isl_lp_ok && isl_int_is_neg(opt))
9071 cmp = -1;
9072 else if (res == isl_lp_ok)
9073 cmp = 0;
9074 else
9075 cmp = -2;
9077 isl_int_clear(opt);
9078 return cmp;
9081 /* Given two sets set1 and set2, check whether
9082 * for any common value of the parameters and dimensions preceding pos
9083 * there is a value of dimension pos in set1 that is larger
9084 * than a value of the same dimension in set2.
9086 * Return
9087 * 1 if there exists such a pair
9088 * 0 if there is no such pair, but there is a pair of equal values
9089 * -1 otherwise
9090 * -2 if some error occurred.
9092 int isl_set_follows_at(__isl_keep isl_set *set1,
9093 __isl_keep isl_set *set2, int pos)
9095 int i, j;
9096 int follows = -1;
9098 if (!set1 || !set2)
9099 return -2;
9101 for (i = 0; i < set1->n; ++i)
9102 for (j = 0; j < set2->n; ++j) {
9103 int f;
9104 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
9105 if (f == 1 || f == -2)
9106 return f;
9107 if (f > follows)
9108 follows = f;
9111 return follows;
9114 static isl_bool isl_basic_map_plain_has_fixed_var(
9115 __isl_keep isl_basic_map *bmap, unsigned pos, isl_int *val)
9117 int i;
9118 int d;
9119 unsigned total;
9121 if (!bmap)
9122 return isl_bool_error;
9123 total = isl_basic_map_total_dim(bmap);
9124 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
9125 for (; d+1 > pos; --d)
9126 if (!isl_int_is_zero(bmap->eq[i][1+d]))
9127 break;
9128 if (d != pos)
9129 continue;
9130 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
9131 return isl_bool_false;
9132 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
9133 return isl_bool_false;
9134 if (!isl_int_is_one(bmap->eq[i][1+d]))
9135 return isl_bool_false;
9136 if (val)
9137 isl_int_neg(*val, bmap->eq[i][0]);
9138 return isl_bool_true;
9140 return isl_bool_false;
9143 static isl_bool isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
9144 unsigned pos, isl_int *val)
9146 int i;
9147 isl_int v;
9148 isl_int tmp;
9149 isl_bool fixed;
9151 if (!map)
9152 return isl_bool_error;
9153 if (map->n == 0)
9154 return isl_bool_false;
9155 if (map->n == 1)
9156 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
9157 isl_int_init(v);
9158 isl_int_init(tmp);
9159 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
9160 for (i = 1; fixed == isl_bool_true && i < map->n; ++i) {
9161 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
9162 if (fixed == isl_bool_true && isl_int_ne(tmp, v))
9163 fixed = isl_bool_false;
9165 if (val)
9166 isl_int_set(*val, v);
9167 isl_int_clear(tmp);
9168 isl_int_clear(v);
9169 return fixed;
9172 static isl_bool isl_basic_set_plain_has_fixed_var(
9173 __isl_keep isl_basic_set *bset, unsigned pos, isl_int *val)
9175 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset),
9176 pos, val);
9179 isl_bool isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
9180 enum isl_dim_type type, unsigned pos, isl_int *val)
9182 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
9183 return isl_bool_error;
9184 return isl_basic_map_plain_has_fixed_var(bmap,
9185 isl_basic_map_offset(bmap, type) - 1 + pos, val);
9188 /* If "bmap" obviously lies on a hyperplane where the given dimension
9189 * has a fixed value, then return that value.
9190 * Otherwise return NaN.
9192 __isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
9193 __isl_keep isl_basic_map *bmap,
9194 enum isl_dim_type type, unsigned pos)
9196 isl_ctx *ctx;
9197 isl_val *v;
9198 isl_bool fixed;
9200 if (!bmap)
9201 return NULL;
9202 ctx = isl_basic_map_get_ctx(bmap);
9203 v = isl_val_alloc(ctx);
9204 if (!v)
9205 return NULL;
9206 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
9207 if (fixed < 0)
9208 return isl_val_free(v);
9209 if (fixed) {
9210 isl_int_set_si(v->d, 1);
9211 return v;
9213 isl_val_free(v);
9214 return isl_val_nan(ctx);
9217 isl_bool isl_map_plain_is_fixed(__isl_keep isl_map *map,
9218 enum isl_dim_type type, unsigned pos, isl_int *val)
9220 if (pos >= isl_map_dim(map, type))
9221 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9222 "position out of bounds", return isl_bool_error);
9223 return isl_map_plain_has_fixed_var(map,
9224 map_offset(map, type) - 1 + pos, val);
9227 /* If "map" obviously lies on a hyperplane where the given dimension
9228 * has a fixed value, then return that value.
9229 * Otherwise return NaN.
9231 __isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
9232 enum isl_dim_type type, unsigned pos)
9234 isl_ctx *ctx;
9235 isl_val *v;
9236 isl_bool fixed;
9238 if (!map)
9239 return NULL;
9240 ctx = isl_map_get_ctx(map);
9241 v = isl_val_alloc(ctx);
9242 if (!v)
9243 return NULL;
9244 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
9245 if (fixed < 0)
9246 return isl_val_free(v);
9247 if (fixed) {
9248 isl_int_set_si(v->d, 1);
9249 return v;
9251 isl_val_free(v);
9252 return isl_val_nan(ctx);
9255 /* If "set" obviously lies on a hyperplane where the given dimension
9256 * has a fixed value, then return that value.
9257 * Otherwise return NaN.
9259 __isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
9260 enum isl_dim_type type, unsigned pos)
9262 return isl_map_plain_get_val_if_fixed(set, type, pos);
9265 isl_bool isl_set_plain_is_fixed(__isl_keep isl_set *set,
9266 enum isl_dim_type type, unsigned pos, isl_int *val)
9268 return isl_map_plain_is_fixed(set, type, pos, val);
9271 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9272 * then return this fixed value in *val.
9274 isl_bool isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
9275 unsigned dim, isl_int *val)
9277 return isl_basic_set_plain_has_fixed_var(bset,
9278 isl_basic_set_n_param(bset) + dim, val);
9281 /* Return -1 if the constraint "c1" should be sorted before "c2"
9282 * and 1 if it should be sorted after "c2".
9283 * Return 0 if the two constraints are the same (up to the constant term).
9285 * In particular, if a constraint involves later variables than another
9286 * then it is sorted after this other constraint.
9287 * uset_gist depends on constraints without existentially quantified
9288 * variables sorting first.
9290 * For constraints that have the same latest variable, those
9291 * with the same coefficient for this latest variable (first in absolute value
9292 * and then in actual value) are grouped together.
9293 * This is useful for detecting pairs of constraints that can
9294 * be chained in their printed representation.
9296 * Finally, within a group, constraints are sorted according to
9297 * their coefficients (excluding the constant term).
9299 static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
9301 isl_int **c1 = (isl_int **) p1;
9302 isl_int **c2 = (isl_int **) p2;
9303 int l1, l2;
9304 unsigned size = *(unsigned *) arg;
9305 int cmp;
9307 l1 = isl_seq_last_non_zero(*c1 + 1, size);
9308 l2 = isl_seq_last_non_zero(*c2 + 1, size);
9310 if (l1 != l2)
9311 return l1 - l2;
9313 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9314 if (cmp != 0)
9315 return cmp;
9316 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9317 if (cmp != 0)
9318 return -cmp;
9320 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
9323 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9324 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9325 * and 0 if the two constraints are the same (up to the constant term).
9327 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
9328 isl_int *c1, isl_int *c2)
9330 unsigned total;
9332 if (!bmap)
9333 return -2;
9334 total = isl_basic_map_total_dim(bmap);
9335 return sort_constraint_cmp(&c1, &c2, &total);
9338 __isl_give isl_basic_map *isl_basic_map_sort_constraints(
9339 __isl_take isl_basic_map *bmap)
9341 unsigned total;
9343 if (!bmap)
9344 return NULL;
9345 if (bmap->n_ineq == 0)
9346 return bmap;
9347 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9348 return bmap;
9349 total = isl_basic_map_total_dim(bmap);
9350 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
9351 &sort_constraint_cmp, &total) < 0)
9352 return isl_basic_map_free(bmap);
9353 return bmap;
9356 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
9357 __isl_take isl_basic_set *bset)
9359 isl_basic_map *bmap = bset_to_bmap(bset);
9360 return bset_from_bmap(isl_basic_map_sort_constraints(bmap));
9363 __isl_give isl_basic_map *isl_basic_map_normalize(
9364 __isl_take isl_basic_map *bmap)
9366 if (!bmap)
9367 return NULL;
9368 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9369 return bmap;
9370 bmap = isl_basic_map_remove_redundancies(bmap);
9371 bmap = isl_basic_map_sort_constraints(bmap);
9372 if (bmap)
9373 ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED);
9374 return bmap;
9376 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map *bmap1,
9377 __isl_keep isl_basic_map *bmap2)
9379 int i, cmp;
9380 unsigned total;
9381 isl_space *space1, *space2;
9383 if (!bmap1 || !bmap2)
9384 return -1;
9386 if (bmap1 == bmap2)
9387 return 0;
9388 space1 = isl_basic_map_peek_space(bmap1);
9389 space2 = isl_basic_map_peek_space(bmap2);
9390 cmp = isl_space_cmp(space1, space2);
9391 if (cmp)
9392 return cmp;
9393 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
9394 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
9395 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
9396 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
9397 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9398 return 0;
9399 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
9400 return 1;
9401 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9402 return -1;
9403 if (bmap1->n_eq != bmap2->n_eq)
9404 return bmap1->n_eq - bmap2->n_eq;
9405 if (bmap1->n_ineq != bmap2->n_ineq)
9406 return bmap1->n_ineq - bmap2->n_ineq;
9407 if (bmap1->n_div != bmap2->n_div)
9408 return bmap1->n_div - bmap2->n_div;
9409 total = isl_basic_map_total_dim(bmap1);
9410 for (i = 0; i < bmap1->n_eq; ++i) {
9411 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
9412 if (cmp)
9413 return cmp;
9415 for (i = 0; i < bmap1->n_ineq; ++i) {
9416 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
9417 if (cmp)
9418 return cmp;
9420 for (i = 0; i < bmap1->n_div; ++i) {
9421 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
9422 if (cmp)
9423 return cmp;
9425 return 0;
9428 int isl_basic_set_plain_cmp(__isl_keep isl_basic_set *bset1,
9429 __isl_keep isl_basic_set *bset2)
9431 return isl_basic_map_plain_cmp(bset1, bset2);
9434 int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
9436 int i, cmp;
9438 if (set1 == set2)
9439 return 0;
9440 if (set1->n != set2->n)
9441 return set1->n - set2->n;
9443 for (i = 0; i < set1->n; ++i) {
9444 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
9445 if (cmp)
9446 return cmp;
9449 return 0;
9452 isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
9453 __isl_keep isl_basic_map *bmap2)
9455 if (!bmap1 || !bmap2)
9456 return isl_bool_error;
9457 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
9460 isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
9461 __isl_keep isl_basic_set *bset2)
9463 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1),
9464 bset_to_bmap(bset2));
9467 static int qsort_bmap_cmp(const void *p1, const void *p2)
9469 isl_basic_map *bmap1 = *(isl_basic_map **) p1;
9470 isl_basic_map *bmap2 = *(isl_basic_map **) p2;
9472 return isl_basic_map_plain_cmp(bmap1, bmap2);
9475 /* Sort the basic maps of "map" and remove duplicate basic maps.
9477 * While removing basic maps, we make sure that the basic maps remain
9478 * sorted because isl_map_normalize expects the basic maps of the result
9479 * to be sorted.
9481 static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
9483 int i, j;
9485 map = isl_map_remove_empty_parts(map);
9486 if (!map)
9487 return NULL;
9488 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
9489 for (i = map->n - 1; i >= 1; --i) {
9490 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
9491 continue;
9492 isl_basic_map_free(map->p[i-1]);
9493 for (j = i; j < map->n; ++j)
9494 map->p[j - 1] = map->p[j];
9495 map->n--;
9498 return map;
9501 /* Remove obvious duplicates among the basic maps of "map".
9503 * Unlike isl_map_normalize, this function does not remove redundant
9504 * constraints and only removes duplicates that have exactly the same
9505 * constraints in the input. It does sort the constraints and
9506 * the basic maps to ease the detection of duplicates.
9508 * If "map" has already been normalized or if the basic maps are
9509 * disjoint, then there can be no duplicates.
9511 __isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
9513 int i;
9514 isl_basic_map *bmap;
9516 if (!map)
9517 return NULL;
9518 if (map->n <= 1)
9519 return map;
9520 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
9521 return map;
9522 for (i = 0; i < map->n; ++i) {
9523 bmap = isl_basic_map_copy(map->p[i]);
9524 bmap = isl_basic_map_sort_constraints(bmap);
9525 if (!bmap)
9526 return isl_map_free(map);
9527 isl_basic_map_free(map->p[i]);
9528 map->p[i] = bmap;
9531 map = sort_and_remove_duplicates(map);
9532 return map;
9535 /* We normalize in place, but if anything goes wrong we need
9536 * to return NULL, so we need to make sure we don't change the
9537 * meaning of any possible other copies of map.
9539 __isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
9541 int i;
9542 struct isl_basic_map *bmap;
9544 if (!map)
9545 return NULL;
9546 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
9547 return map;
9548 for (i = 0; i < map->n; ++i) {
9549 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
9550 if (!bmap)
9551 goto error;
9552 isl_basic_map_free(map->p[i]);
9553 map->p[i] = bmap;
9556 map = sort_and_remove_duplicates(map);
9557 if (map)
9558 ISL_F_SET(map, ISL_MAP_NORMALIZED);
9559 return map;
9560 error:
9561 isl_map_free(map);
9562 return NULL;
9565 struct isl_set *isl_set_normalize(struct isl_set *set)
9567 return set_from_map(isl_map_normalize(set_to_map(set)));
9570 isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
9571 __isl_keep isl_map *map2)
9573 int i;
9574 isl_bool equal;
9576 if (!map1 || !map2)
9577 return isl_bool_error;
9579 if (map1 == map2)
9580 return isl_bool_true;
9581 if (!isl_space_is_equal(map1->dim, map2->dim))
9582 return isl_bool_false;
9584 map1 = isl_map_copy(map1);
9585 map2 = isl_map_copy(map2);
9586 map1 = isl_map_normalize(map1);
9587 map2 = isl_map_normalize(map2);
9588 if (!map1 || !map2)
9589 goto error;
9590 equal = map1->n == map2->n;
9591 for (i = 0; equal && i < map1->n; ++i) {
9592 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
9593 if (equal < 0)
9594 goto error;
9596 isl_map_free(map1);
9597 isl_map_free(map2);
9598 return equal;
9599 error:
9600 isl_map_free(map1);
9601 isl_map_free(map2);
9602 return isl_bool_error;
9605 isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
9606 __isl_keep isl_set *set2)
9608 return isl_map_plain_is_equal(set_to_map(set1), set_to_map(set2));
9611 /* Return the basic maps in "map" as a list.
9613 __isl_give isl_basic_map_list *isl_map_get_basic_map_list(
9614 __isl_keep isl_map *map)
9616 int i;
9617 isl_ctx *ctx;
9618 isl_basic_map_list *list;
9620 if (!map)
9621 return NULL;
9622 ctx = isl_map_get_ctx(map);
9623 list = isl_basic_map_list_alloc(ctx, map->n);
9625 for (i = 0; i < map->n; ++i) {
9626 isl_basic_map *bmap;
9628 bmap = isl_basic_map_copy(map->p[i]);
9629 list = isl_basic_map_list_add(list, bmap);
9632 return list;
9635 /* Return the intersection of the elements in the non-empty list "list".
9636 * All elements are assumed to live in the same space.
9638 __isl_give isl_basic_map *isl_basic_map_list_intersect(
9639 __isl_take isl_basic_map_list *list)
9641 int i, n;
9642 isl_basic_map *bmap;
9644 if (!list)
9645 return NULL;
9646 n = isl_basic_map_list_n_basic_map(list);
9647 if (n < 1)
9648 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
9649 "expecting non-empty list", goto error);
9651 bmap = isl_basic_map_list_get_basic_map(list, 0);
9652 for (i = 1; i < n; ++i) {
9653 isl_basic_map *bmap_i;
9655 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9656 bmap = isl_basic_map_intersect(bmap, bmap_i);
9659 isl_basic_map_list_free(list);
9660 return bmap;
9661 error:
9662 isl_basic_map_list_free(list);
9663 return NULL;
9666 /* Return the intersection of the elements in the non-empty list "list".
9667 * All elements are assumed to live in the same space.
9669 __isl_give isl_basic_set *isl_basic_set_list_intersect(
9670 __isl_take isl_basic_set_list *list)
9672 return isl_basic_map_list_intersect(list);
9675 /* Return the union of the elements of "list".
9676 * The list is required to have at least one element.
9678 __isl_give isl_set *isl_basic_set_list_union(
9679 __isl_take isl_basic_set_list *list)
9681 int i, n;
9682 isl_space *space;
9683 isl_basic_set *bset;
9684 isl_set *set;
9686 if (!list)
9687 return NULL;
9688 n = isl_basic_set_list_n_basic_set(list);
9689 if (n < 1)
9690 isl_die(isl_basic_set_list_get_ctx(list), isl_error_invalid,
9691 "expecting non-empty list", goto error);
9693 bset = isl_basic_set_list_get_basic_set(list, 0);
9694 space = isl_basic_set_get_space(bset);
9695 isl_basic_set_free(bset);
9697 set = isl_set_alloc_space(space, n, 0);
9698 for (i = 0; i < n; ++i) {
9699 bset = isl_basic_set_list_get_basic_set(list, i);
9700 set = isl_set_add_basic_set(set, bset);
9703 isl_basic_set_list_free(list);
9704 return set;
9705 error:
9706 isl_basic_set_list_free(list);
9707 return NULL;
9710 /* Return the union of the elements in the non-empty list "list".
9711 * All elements are assumed to live in the same space.
9713 __isl_give isl_set *isl_set_list_union(__isl_take isl_set_list *list)
9715 int i, n;
9716 isl_set *set;
9718 if (!list)
9719 return NULL;
9720 n = isl_set_list_n_set(list);
9721 if (n < 1)
9722 isl_die(isl_set_list_get_ctx(list), isl_error_invalid,
9723 "expecting non-empty list", goto error);
9725 set = isl_set_list_get_set(list, 0);
9726 for (i = 1; i < n; ++i) {
9727 isl_set *set_i;
9729 set_i = isl_set_list_get_set(list, i);
9730 set = isl_set_union(set, set_i);
9733 isl_set_list_free(list);
9734 return set;
9735 error:
9736 isl_set_list_free(list);
9737 return NULL;
9740 __isl_give isl_basic_map *isl_basic_map_product(
9741 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9743 isl_space *dim_result = NULL;
9744 struct isl_basic_map *bmap;
9745 unsigned in1, in2, out1, out2, nparam, total, pos;
9746 struct isl_dim_map *dim_map1, *dim_map2;
9748 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
9749 goto error;
9750 dim_result = isl_space_product(isl_space_copy(bmap1->dim),
9751 isl_space_copy(bmap2->dim));
9753 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9754 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9755 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9756 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9757 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9759 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
9760 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9761 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9762 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9763 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9764 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9765 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9766 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9767 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9768 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9769 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9771 bmap = isl_basic_map_alloc_space(dim_result,
9772 bmap1->n_div + bmap2->n_div,
9773 bmap1->n_eq + bmap2->n_eq,
9774 bmap1->n_ineq + bmap2->n_ineq);
9775 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9776 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9777 bmap = isl_basic_map_simplify(bmap);
9778 return isl_basic_map_finalize(bmap);
9779 error:
9780 isl_basic_map_free(bmap1);
9781 isl_basic_map_free(bmap2);
9782 return NULL;
9785 __isl_give isl_basic_map *isl_basic_map_flat_product(
9786 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9788 isl_basic_map *prod;
9790 prod = isl_basic_map_product(bmap1, bmap2);
9791 prod = isl_basic_map_flatten(prod);
9792 return prod;
9795 __isl_give isl_basic_set *isl_basic_set_flat_product(
9796 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
9798 return isl_basic_map_flat_range_product(bset1, bset2);
9801 __isl_give isl_basic_map *isl_basic_map_domain_product(
9802 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9804 isl_space *space_result = NULL;
9805 isl_basic_map *bmap;
9806 unsigned in1, in2, out, nparam, total, pos;
9807 struct isl_dim_map *dim_map1, *dim_map2;
9809 if (!bmap1 || !bmap2)
9810 goto error;
9812 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
9813 isl_space_copy(bmap2->dim));
9815 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9816 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9817 out = isl_basic_map_dim(bmap1, isl_dim_out);
9818 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9820 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
9821 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9822 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9823 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9824 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9825 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9826 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9827 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9828 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
9829 isl_dim_map_div(dim_map1, bmap1, pos += out);
9830 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9832 bmap = isl_basic_map_alloc_space(space_result,
9833 bmap1->n_div + bmap2->n_div,
9834 bmap1->n_eq + bmap2->n_eq,
9835 bmap1->n_ineq + bmap2->n_ineq);
9836 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9837 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9838 bmap = isl_basic_map_simplify(bmap);
9839 return isl_basic_map_finalize(bmap);
9840 error:
9841 isl_basic_map_free(bmap1);
9842 isl_basic_map_free(bmap2);
9843 return NULL;
9846 __isl_give isl_basic_map *isl_basic_map_range_product(
9847 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9849 isl_bool rational;
9850 isl_space *dim_result = NULL;
9851 isl_basic_map *bmap;
9852 unsigned in, out1, out2, nparam, total, pos;
9853 struct isl_dim_map *dim_map1, *dim_map2;
9855 rational = isl_basic_map_is_rational(bmap1);
9856 if (rational >= 0 && rational)
9857 rational = isl_basic_map_is_rational(bmap2);
9858 if (!bmap1 || !bmap2 || rational < 0)
9859 goto error;
9861 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
9862 goto error;
9864 dim_result = isl_space_range_product(isl_space_copy(bmap1->dim),
9865 isl_space_copy(bmap2->dim));
9867 in = isl_basic_map_dim(bmap1, isl_dim_in);
9868 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9869 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9870 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9872 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
9873 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9874 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9875 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9876 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9877 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9878 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
9879 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
9880 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9881 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9882 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9884 bmap = isl_basic_map_alloc_space(dim_result,
9885 bmap1->n_div + bmap2->n_div,
9886 bmap1->n_eq + bmap2->n_eq,
9887 bmap1->n_ineq + bmap2->n_ineq);
9888 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9889 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9890 if (rational)
9891 bmap = isl_basic_map_set_rational(bmap);
9892 bmap = isl_basic_map_simplify(bmap);
9893 return isl_basic_map_finalize(bmap);
9894 error:
9895 isl_basic_map_free(bmap1);
9896 isl_basic_map_free(bmap2);
9897 return NULL;
9900 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
9901 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9903 isl_basic_map *prod;
9905 prod = isl_basic_map_range_product(bmap1, bmap2);
9906 prod = isl_basic_map_flatten_range(prod);
9907 return prod;
9910 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
9911 * and collect the results.
9912 * The result live in the space obtained by calling "space_product"
9913 * on the spaces of "map1" and "map2".
9914 * If "remove_duplicates" is set then the result may contain duplicates
9915 * (even if the inputs do not) and so we try and remove the obvious
9916 * duplicates.
9918 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
9919 __isl_take isl_map *map2,
9920 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
9921 __isl_take isl_space *right),
9922 __isl_give isl_basic_map *(*basic_map_product)(
9923 __isl_take isl_basic_map *left,
9924 __isl_take isl_basic_map *right),
9925 int remove_duplicates)
9927 unsigned flags = 0;
9928 struct isl_map *result;
9929 int i, j;
9930 isl_bool m;
9932 m = isl_map_has_equal_params(map1, map2);
9933 if (m < 0)
9934 goto error;
9935 if (!m)
9936 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
9937 "parameters don't match", goto error);
9939 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
9940 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
9941 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
9943 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
9944 isl_space_copy(map2->dim)),
9945 map1->n * map2->n, flags);
9946 if (!result)
9947 goto error;
9948 for (i = 0; i < map1->n; ++i)
9949 for (j = 0; j < map2->n; ++j) {
9950 struct isl_basic_map *part;
9951 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
9952 isl_basic_map_copy(map2->p[j]));
9953 if (isl_basic_map_is_empty(part))
9954 isl_basic_map_free(part);
9955 else
9956 result = isl_map_add_basic_map(result, part);
9957 if (!result)
9958 goto error;
9960 if (remove_duplicates)
9961 result = isl_map_remove_obvious_duplicates(result);
9962 isl_map_free(map1);
9963 isl_map_free(map2);
9964 return result;
9965 error:
9966 isl_map_free(map1);
9967 isl_map_free(map2);
9968 return NULL;
9971 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
9973 static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
9974 __isl_take isl_map *map2)
9976 return map_product(map1, map2, &isl_space_product,
9977 &isl_basic_map_product, 0);
9980 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
9981 __isl_take isl_map *map2)
9983 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
9986 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
9988 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
9989 __isl_take isl_map *map2)
9991 isl_map *prod;
9993 prod = isl_map_product(map1, map2);
9994 prod = isl_map_flatten(prod);
9995 return prod;
9998 /* Given two set A and B, construct its Cartesian product A x B.
10000 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
10002 return isl_map_range_product(set1, set2);
10005 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
10006 __isl_take isl_set *set2)
10008 return isl_map_flat_range_product(set1, set2);
10011 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10013 static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
10014 __isl_take isl_map *map2)
10016 return map_product(map1, map2, &isl_space_domain_product,
10017 &isl_basic_map_domain_product, 1);
10020 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10022 static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
10023 __isl_take isl_map *map2)
10025 return map_product(map1, map2, &isl_space_range_product,
10026 &isl_basic_map_range_product, 1);
10029 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
10030 __isl_take isl_map *map2)
10032 return isl_map_align_params_map_map_and(map1, map2,
10033 &map_domain_product_aligned);
10036 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
10037 __isl_take isl_map *map2)
10039 return isl_map_align_params_map_map_and(map1, map2,
10040 &map_range_product_aligned);
10043 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10045 __isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
10047 isl_space *space;
10048 int total1, keep1, total2, keep2;
10050 if (!map)
10051 return NULL;
10052 if (!isl_space_domain_is_wrapping(map->dim) ||
10053 !isl_space_range_is_wrapping(map->dim))
10054 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10055 "not a product", return isl_map_free(map));
10057 space = isl_map_get_space(map);
10058 total1 = isl_space_dim(space, isl_dim_in);
10059 total2 = isl_space_dim(space, isl_dim_out);
10060 space = isl_space_factor_domain(space);
10061 keep1 = isl_space_dim(space, isl_dim_in);
10062 keep2 = isl_space_dim(space, isl_dim_out);
10063 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
10064 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
10065 map = isl_map_reset_space(map, space);
10067 return map;
10070 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10072 __isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
10074 isl_space *space;
10075 int total1, keep1, total2, keep2;
10077 if (!map)
10078 return NULL;
10079 if (!isl_space_domain_is_wrapping(map->dim) ||
10080 !isl_space_range_is_wrapping(map->dim))
10081 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10082 "not a product", return isl_map_free(map));
10084 space = isl_map_get_space(map);
10085 total1 = isl_space_dim(space, isl_dim_in);
10086 total2 = isl_space_dim(space, isl_dim_out);
10087 space = isl_space_factor_range(space);
10088 keep1 = isl_space_dim(space, isl_dim_in);
10089 keep2 = isl_space_dim(space, isl_dim_out);
10090 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
10091 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
10092 map = isl_map_reset_space(map, space);
10094 return map;
10097 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10099 __isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
10101 isl_space *space;
10102 int total, keep;
10104 if (!map)
10105 return NULL;
10106 if (!isl_space_domain_is_wrapping(map->dim))
10107 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10108 "domain is not a product", return isl_map_free(map));
10110 space = isl_map_get_space(map);
10111 total = isl_space_dim(space, isl_dim_in);
10112 space = isl_space_domain_factor_domain(space);
10113 keep = isl_space_dim(space, isl_dim_in);
10114 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
10115 map = isl_map_reset_space(map, space);
10117 return map;
10120 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10122 __isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
10124 isl_space *space;
10125 int total, keep;
10127 if (!map)
10128 return NULL;
10129 if (!isl_space_domain_is_wrapping(map->dim))
10130 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10131 "domain is not a product", return isl_map_free(map));
10133 space = isl_map_get_space(map);
10134 total = isl_space_dim(space, isl_dim_in);
10135 space = isl_space_domain_factor_range(space);
10136 keep = isl_space_dim(space, isl_dim_in);
10137 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
10138 map = isl_map_reset_space(map, space);
10140 return map;
10143 /* Given a map A -> [B -> C], extract the map A -> B.
10145 __isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
10147 isl_space *space;
10148 int total, keep;
10150 if (!map)
10151 return NULL;
10152 if (!isl_space_range_is_wrapping(map->dim))
10153 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10154 "range is not a product", return isl_map_free(map));
10156 space = isl_map_get_space(map);
10157 total = isl_space_dim(space, isl_dim_out);
10158 space = isl_space_range_factor_domain(space);
10159 keep = isl_space_dim(space, isl_dim_out);
10160 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
10161 map = isl_map_reset_space(map, space);
10163 return map;
10166 /* Given a map A -> [B -> C], extract the map A -> C.
10168 __isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
10170 isl_space *space;
10171 int total, keep;
10173 if (!map)
10174 return NULL;
10175 if (!isl_space_range_is_wrapping(map->dim))
10176 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10177 "range is not a product", return isl_map_free(map));
10179 space = isl_map_get_space(map);
10180 total = isl_space_dim(space, isl_dim_out);
10181 space = isl_space_range_factor_range(space);
10182 keep = isl_space_dim(space, isl_dim_out);
10183 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
10184 map = isl_map_reset_space(map, space);
10186 return map;
10189 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10191 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
10192 __isl_take isl_map *map2)
10194 isl_map *prod;
10196 prod = isl_map_domain_product(map1, map2);
10197 prod = isl_map_flatten_domain(prod);
10198 return prod;
10201 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10203 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
10204 __isl_take isl_map *map2)
10206 isl_map *prod;
10208 prod = isl_map_range_product(map1, map2);
10209 prod = isl_map_flatten_range(prod);
10210 return prod;
10213 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
10215 int i;
10216 uint32_t hash = isl_hash_init();
10217 unsigned total;
10219 if (!bmap)
10220 return 0;
10221 bmap = isl_basic_map_copy(bmap);
10222 bmap = isl_basic_map_normalize(bmap);
10223 if (!bmap)
10224 return 0;
10225 total = isl_basic_map_total_dim(bmap);
10226 isl_hash_byte(hash, bmap->n_eq & 0xFF);
10227 for (i = 0; i < bmap->n_eq; ++i) {
10228 uint32_t c_hash;
10229 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
10230 isl_hash_hash(hash, c_hash);
10232 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
10233 for (i = 0; i < bmap->n_ineq; ++i) {
10234 uint32_t c_hash;
10235 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
10236 isl_hash_hash(hash, c_hash);
10238 isl_hash_byte(hash, bmap->n_div & 0xFF);
10239 for (i = 0; i < bmap->n_div; ++i) {
10240 uint32_t c_hash;
10241 if (isl_int_is_zero(bmap->div[i][0]))
10242 continue;
10243 isl_hash_byte(hash, i & 0xFF);
10244 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
10245 isl_hash_hash(hash, c_hash);
10247 isl_basic_map_free(bmap);
10248 return hash;
10251 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
10253 return isl_basic_map_get_hash(bset_to_bmap(bset));
10256 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
10258 int i;
10259 uint32_t hash;
10261 if (!map)
10262 return 0;
10263 map = isl_map_copy(map);
10264 map = isl_map_normalize(map);
10265 if (!map)
10266 return 0;
10268 hash = isl_hash_init();
10269 for (i = 0; i < map->n; ++i) {
10270 uint32_t bmap_hash;
10271 bmap_hash = isl_basic_map_get_hash(map->p[i]);
10272 isl_hash_hash(hash, bmap_hash);
10275 isl_map_free(map);
10277 return hash;
10280 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
10282 return isl_map_get_hash(set_to_map(set));
10285 /* Return the number of basic maps in the (current) representation of "map".
10287 int isl_map_n_basic_map(__isl_keep isl_map *map)
10289 return map ? map->n : 0;
10292 int isl_set_n_basic_set(__isl_keep isl_set *set)
10294 return set ? set->n : 0;
10297 isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
10298 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
10300 int i;
10302 if (!map)
10303 return isl_stat_error;
10305 for (i = 0; i < map->n; ++i)
10306 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
10307 return isl_stat_error;
10309 return isl_stat_ok;
10312 isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
10313 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
10315 int i;
10317 if (!set)
10318 return isl_stat_error;
10320 for (i = 0; i < set->n; ++i)
10321 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
10322 return isl_stat_error;
10324 return isl_stat_ok;
10327 /* Return a list of basic sets, the union of which is equal to "set".
10329 __isl_give isl_basic_set_list *isl_set_get_basic_set_list(
10330 __isl_keep isl_set *set)
10332 int i;
10333 isl_basic_set_list *list;
10335 if (!set)
10336 return NULL;
10338 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
10339 for (i = 0; i < set->n; ++i) {
10340 isl_basic_set *bset;
10342 bset = isl_basic_set_copy(set->p[i]);
10343 list = isl_basic_set_list_add(list, bset);
10346 return list;
10349 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
10351 isl_space *dim;
10353 if (!bset)
10354 return NULL;
10356 bset = isl_basic_set_cow(bset);
10357 if (!bset)
10358 return NULL;
10360 dim = isl_basic_set_get_space(bset);
10361 dim = isl_space_lift(dim, bset->n_div);
10362 if (!dim)
10363 goto error;
10364 isl_space_free(bset->dim);
10365 bset->dim = dim;
10366 bset->extra -= bset->n_div;
10367 bset->n_div = 0;
10369 bset = isl_basic_set_finalize(bset);
10371 return bset;
10372 error:
10373 isl_basic_set_free(bset);
10374 return NULL;
10377 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
10379 int i;
10380 isl_space *dim;
10381 unsigned n_div;
10383 set = set_from_map(isl_map_align_divs_internal(set_to_map(set)));
10385 if (!set)
10386 return NULL;
10388 set = isl_set_cow(set);
10389 if (!set)
10390 return NULL;
10392 n_div = set->p[0]->n_div;
10393 dim = isl_set_get_space(set);
10394 dim = isl_space_lift(dim, n_div);
10395 if (!dim)
10396 goto error;
10397 isl_space_free(set->dim);
10398 set->dim = dim;
10400 for (i = 0; i < set->n; ++i) {
10401 set->p[i] = isl_basic_set_lift(set->p[i]);
10402 if (!set->p[i])
10403 goto error;
10406 return set;
10407 error:
10408 isl_set_free(set);
10409 return NULL;
10412 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
10414 unsigned dim;
10415 int size = 0;
10417 if (!bset)
10418 return -1;
10420 dim = isl_basic_set_total_dim(bset);
10421 size += bset->n_eq * (1 + dim);
10422 size += bset->n_ineq * (1 + dim);
10423 size += bset->n_div * (2 + dim);
10425 return size;
10428 int isl_set_size(__isl_keep isl_set *set)
10430 int i;
10431 int size = 0;
10433 if (!set)
10434 return -1;
10436 for (i = 0; i < set->n; ++i)
10437 size += isl_basic_set_size(set->p[i]);
10439 return size;
10442 /* Check if there is any lower bound (if lower == 0) and/or upper
10443 * bound (if upper == 0) on the specified dim.
10445 static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10446 enum isl_dim_type type, unsigned pos, int lower, int upper)
10448 int i;
10450 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
10451 return isl_bool_error;
10453 pos += isl_basic_map_offset(bmap, type);
10455 for (i = 0; i < bmap->n_div; ++i) {
10456 if (isl_int_is_zero(bmap->div[i][0]))
10457 continue;
10458 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
10459 return isl_bool_true;
10462 for (i = 0; i < bmap->n_eq; ++i)
10463 if (!isl_int_is_zero(bmap->eq[i][pos]))
10464 return isl_bool_true;
10466 for (i = 0; i < bmap->n_ineq; ++i) {
10467 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
10468 if (sgn > 0)
10469 lower = 1;
10470 if (sgn < 0)
10471 upper = 1;
10474 return lower && upper;
10477 isl_bool isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10478 enum isl_dim_type type, unsigned pos)
10480 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
10483 isl_bool isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
10484 enum isl_dim_type type, unsigned pos)
10486 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
10489 isl_bool isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
10490 enum isl_dim_type type, unsigned pos)
10492 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
10495 isl_bool isl_map_dim_is_bounded(__isl_keep isl_map *map,
10496 enum isl_dim_type type, unsigned pos)
10498 int i;
10500 if (!map)
10501 return isl_bool_error;
10503 for (i = 0; i < map->n; ++i) {
10504 isl_bool bounded;
10505 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
10506 if (bounded < 0 || !bounded)
10507 return bounded;
10510 return isl_bool_true;
10513 /* Return true if the specified dim is involved in both an upper bound
10514 * and a lower bound.
10516 isl_bool isl_set_dim_is_bounded(__isl_keep isl_set *set,
10517 enum isl_dim_type type, unsigned pos)
10519 return isl_map_dim_is_bounded(set_to_map(set), type, pos);
10522 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10524 static isl_bool has_any_bound(__isl_keep isl_map *map,
10525 enum isl_dim_type type, unsigned pos,
10526 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10527 enum isl_dim_type type, unsigned pos))
10529 int i;
10531 if (!map)
10532 return isl_bool_error;
10534 for (i = 0; i < map->n; ++i) {
10535 isl_bool bounded;
10536 bounded = fn(map->p[i], type, pos);
10537 if (bounded < 0 || bounded)
10538 return bounded;
10541 return isl_bool_false;
10544 /* Return 1 if the specified dim is involved in any lower bound.
10546 isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
10547 enum isl_dim_type type, unsigned pos)
10549 return has_any_bound(set, type, pos,
10550 &isl_basic_map_dim_has_lower_bound);
10553 /* Return 1 if the specified dim is involved in any upper bound.
10555 isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
10556 enum isl_dim_type type, unsigned pos)
10558 return has_any_bound(set, type, pos,
10559 &isl_basic_map_dim_has_upper_bound);
10562 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10564 static isl_bool has_bound(__isl_keep isl_map *map,
10565 enum isl_dim_type type, unsigned pos,
10566 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10567 enum isl_dim_type type, unsigned pos))
10569 int i;
10571 if (!map)
10572 return isl_bool_error;
10574 for (i = 0; i < map->n; ++i) {
10575 isl_bool bounded;
10576 bounded = fn(map->p[i], type, pos);
10577 if (bounded < 0 || !bounded)
10578 return bounded;
10581 return isl_bool_true;
10584 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10586 isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
10587 enum isl_dim_type type, unsigned pos)
10589 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
10592 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10594 isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
10595 enum isl_dim_type type, unsigned pos)
10597 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
10600 /* For each of the "n" variables starting at "first", determine
10601 * the sign of the variable and put the results in the first "n"
10602 * elements of the array "signs".
10603 * Sign
10604 * 1 means that the variable is non-negative
10605 * -1 means that the variable is non-positive
10606 * 0 means the variable attains both positive and negative values.
10608 isl_stat isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
10609 unsigned first, unsigned n, int *signs)
10611 isl_vec *bound = NULL;
10612 struct isl_tab *tab = NULL;
10613 struct isl_tab_undo *snap;
10614 int i;
10616 if (!bset || !signs)
10617 return isl_stat_error;
10619 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
10620 tab = isl_tab_from_basic_set(bset, 0);
10621 if (!bound || !tab)
10622 goto error;
10624 isl_seq_clr(bound->el, bound->size);
10625 isl_int_set_si(bound->el[0], -1);
10627 snap = isl_tab_snap(tab);
10628 for (i = 0; i < n; ++i) {
10629 int empty;
10631 isl_int_set_si(bound->el[1 + first + i], -1);
10632 if (isl_tab_add_ineq(tab, bound->el) < 0)
10633 goto error;
10634 empty = tab->empty;
10635 isl_int_set_si(bound->el[1 + first + i], 0);
10636 if (isl_tab_rollback(tab, snap) < 0)
10637 goto error;
10639 if (empty) {
10640 signs[i] = 1;
10641 continue;
10644 isl_int_set_si(bound->el[1 + first + i], 1);
10645 if (isl_tab_add_ineq(tab, bound->el) < 0)
10646 goto error;
10647 empty = tab->empty;
10648 isl_int_set_si(bound->el[1 + first + i], 0);
10649 if (isl_tab_rollback(tab, snap) < 0)
10650 goto error;
10652 signs[i] = empty ? -1 : 0;
10655 isl_tab_free(tab);
10656 isl_vec_free(bound);
10657 return isl_stat_ok;
10658 error:
10659 isl_tab_free(tab);
10660 isl_vec_free(bound);
10661 return isl_stat_error;
10664 isl_stat isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
10665 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
10667 if (!bset || !signs)
10668 return isl_stat_error;
10669 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
10670 return isl_stat_error);
10672 first += pos(bset->dim, type) - 1;
10673 return isl_basic_set_vars_get_sign(bset, first, n, signs);
10676 /* Is it possible for the integer division "div" to depend (possibly
10677 * indirectly) on any output dimensions?
10679 * If the div is undefined, then we conservatively assume that it
10680 * may depend on them.
10681 * Otherwise, we check if it actually depends on them or on any integer
10682 * divisions that may depend on them.
10684 static isl_bool div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
10686 int i;
10687 unsigned n_out, o_out;
10688 unsigned n_div, o_div;
10690 if (isl_int_is_zero(bmap->div[div][0]))
10691 return isl_bool_true;
10693 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10694 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10696 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
10697 return isl_bool_true;
10699 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10700 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10702 for (i = 0; i < n_div; ++i) {
10703 isl_bool may_involve;
10705 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
10706 continue;
10707 may_involve = div_may_involve_output(bmap, i);
10708 if (may_involve < 0 || may_involve)
10709 return may_involve;
10712 return isl_bool_false;
10715 /* Return the first integer division of "bmap" in the range
10716 * [first, first + n[ that may depend on any output dimensions and
10717 * that has a non-zero coefficient in "c" (where the first coefficient
10718 * in "c" corresponds to integer division "first").
10720 static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
10721 isl_int *c, int first, int n)
10723 int k;
10725 if (!bmap)
10726 return -1;
10728 for (k = first; k < first + n; ++k) {
10729 isl_bool may_involve;
10731 if (isl_int_is_zero(c[k]))
10732 continue;
10733 may_involve = div_may_involve_output(bmap, k);
10734 if (may_involve < 0)
10735 return -1;
10736 if (may_involve)
10737 return k;
10740 return first + n;
10743 /* Look for a pair of inequality constraints in "bmap" of the form
10745 * -l + i >= 0 or i >= l
10746 * and
10747 * n + l - i >= 0 or i <= l + n
10749 * with n < "m" and i the output dimension at position "pos".
10750 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10751 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10752 * and earlier output dimensions, as well as integer divisions that do
10753 * not involve any of the output dimensions.
10755 * Return the index of the first inequality constraint or bmap->n_ineq
10756 * if no such pair can be found.
10758 static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
10759 int pos, isl_int m)
10761 int i, j;
10762 isl_ctx *ctx;
10763 unsigned total;
10764 unsigned n_div, o_div;
10765 unsigned n_out, o_out;
10766 int less;
10768 if (!bmap)
10769 return -1;
10771 ctx = isl_basic_map_get_ctx(bmap);
10772 total = isl_basic_map_total_dim(bmap);
10773 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10774 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10775 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10776 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10777 for (i = 0; i < bmap->n_ineq; ++i) {
10778 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
10779 continue;
10780 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
10781 n_out - (pos + 1)) != -1)
10782 continue;
10783 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
10784 0, n_div) < n_div)
10785 continue;
10786 for (j = i + 1; j < bmap->n_ineq; ++j) {
10787 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
10788 ctx->one))
10789 continue;
10790 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
10791 bmap->ineq[j] + 1, total))
10792 continue;
10793 break;
10795 if (j >= bmap->n_ineq)
10796 continue;
10797 isl_int_add(bmap->ineq[i][0],
10798 bmap->ineq[i][0], bmap->ineq[j][0]);
10799 less = isl_int_abs_lt(bmap->ineq[i][0], m);
10800 isl_int_sub(bmap->ineq[i][0],
10801 bmap->ineq[i][0], bmap->ineq[j][0]);
10802 if (!less)
10803 continue;
10804 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
10805 return i;
10806 else
10807 return j;
10810 return bmap->n_ineq;
10813 /* Return the index of the equality of "bmap" that defines
10814 * the output dimension "pos" in terms of earlier dimensions.
10815 * The equality may also involve integer divisions, as long
10816 * as those integer divisions are defined in terms of
10817 * parameters or input dimensions.
10818 * In this case, *div is set to the number of integer divisions and
10819 * *ineq is set to the number of inequality constraints (provided
10820 * div and ineq are not NULL).
10822 * The equality may also involve a single integer division involving
10823 * the output dimensions (typically only output dimension "pos") as
10824 * long as the coefficient of output dimension "pos" is 1 or -1 and
10825 * there is a pair of constraints i >= l and i <= l + n, with i referring
10826 * to output dimension "pos", l an expression involving only earlier
10827 * dimensions and n smaller than the coefficient of the integer division
10828 * in the equality. In this case, the output dimension can be defined
10829 * in terms of a modulo expression that does not involve the integer division.
10830 * *div is then set to this single integer division and
10831 * *ineq is set to the index of constraint i >= l.
10833 * Return bmap->n_eq if there is no such equality.
10834 * Return -1 on error.
10836 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
10837 int pos, int *div, int *ineq)
10839 int j, k, l;
10840 unsigned n_out, o_out;
10841 unsigned n_div, o_div;
10843 if (!bmap)
10844 return -1;
10846 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10847 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10848 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10849 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10851 if (ineq)
10852 *ineq = bmap->n_ineq;
10853 if (div)
10854 *div = n_div;
10855 for (j = 0; j < bmap->n_eq; ++j) {
10856 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
10857 continue;
10858 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
10859 n_out - (pos + 1)) != -1)
10860 continue;
10861 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
10862 0, n_div);
10863 if (k >= n_div)
10864 return j;
10865 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
10866 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
10867 continue;
10868 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
10869 k + 1, n_div - (k+1)) < n_div)
10870 continue;
10871 l = find_modulo_constraint_pair(bmap, pos,
10872 bmap->eq[j][o_div + k]);
10873 if (l < 0)
10874 return -1;
10875 if (l >= bmap->n_ineq)
10876 continue;
10877 if (div)
10878 *div = k;
10879 if (ineq)
10880 *ineq = l;
10881 return j;
10884 return bmap->n_eq;
10887 /* Check if the given basic map is obviously single-valued.
10888 * In particular, for each output dimension, check that there is
10889 * an equality that defines the output dimension in terms of
10890 * earlier dimensions.
10892 isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
10894 int i;
10895 unsigned n_out;
10897 if (!bmap)
10898 return isl_bool_error;
10900 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10902 for (i = 0; i < n_out; ++i) {
10903 int eq;
10905 eq = isl_basic_map_output_defining_equality(bmap, i,
10906 NULL, NULL);
10907 if (eq < 0)
10908 return isl_bool_error;
10909 if (eq >= bmap->n_eq)
10910 return isl_bool_false;
10913 return isl_bool_true;
10916 /* Check if the given basic map is single-valued.
10917 * We simply compute
10919 * M \circ M^-1
10921 * and check if the result is a subset of the identity mapping.
10923 isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
10925 isl_space *space;
10926 isl_basic_map *test;
10927 isl_basic_map *id;
10928 isl_bool sv;
10930 sv = isl_basic_map_plain_is_single_valued(bmap);
10931 if (sv < 0 || sv)
10932 return sv;
10934 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
10935 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
10937 space = isl_basic_map_get_space(bmap);
10938 space = isl_space_map_from_set(isl_space_range(space));
10939 id = isl_basic_map_identity(space);
10941 sv = isl_basic_map_is_subset(test, id);
10943 isl_basic_map_free(test);
10944 isl_basic_map_free(id);
10946 return sv;
10949 /* Check if the given map is obviously single-valued.
10951 isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
10953 if (!map)
10954 return isl_bool_error;
10955 if (map->n == 0)
10956 return isl_bool_true;
10957 if (map->n >= 2)
10958 return isl_bool_false;
10960 return isl_basic_map_plain_is_single_valued(map->p[0]);
10963 /* Check if the given map is single-valued.
10964 * We simply compute
10966 * M \circ M^-1
10968 * and check if the result is a subset of the identity mapping.
10970 isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
10972 isl_space *dim;
10973 isl_map *test;
10974 isl_map *id;
10975 isl_bool sv;
10977 sv = isl_map_plain_is_single_valued(map);
10978 if (sv < 0 || sv)
10979 return sv;
10981 test = isl_map_reverse(isl_map_copy(map));
10982 test = isl_map_apply_range(test, isl_map_copy(map));
10984 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
10985 id = isl_map_identity(dim);
10987 sv = isl_map_is_subset(test, id);
10989 isl_map_free(test);
10990 isl_map_free(id);
10992 return sv;
10995 isl_bool isl_map_is_injective(__isl_keep isl_map *map)
10997 isl_bool in;
10999 map = isl_map_copy(map);
11000 map = isl_map_reverse(map);
11001 in = isl_map_is_single_valued(map);
11002 isl_map_free(map);
11004 return in;
11007 /* Check if the given map is obviously injective.
11009 isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
11011 isl_bool in;
11013 map = isl_map_copy(map);
11014 map = isl_map_reverse(map);
11015 in = isl_map_plain_is_single_valued(map);
11016 isl_map_free(map);
11018 return in;
11021 isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
11023 isl_bool sv;
11025 sv = isl_map_is_single_valued(map);
11026 if (sv < 0 || !sv)
11027 return sv;
11029 return isl_map_is_injective(map);
11032 isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
11034 return isl_map_is_single_valued(set_to_map(set));
11037 /* Does "map" only map elements to themselves?
11039 * If the domain and range spaces are different, then "map"
11040 * is considered not to be an identity relation, even if it is empty.
11041 * Otherwise, construct the maximal identity relation and
11042 * check whether "map" is a subset of this relation.
11044 isl_bool isl_map_is_identity(__isl_keep isl_map *map)
11046 isl_space *space;
11047 isl_map *id;
11048 isl_bool equal, is_identity;
11050 space = isl_map_get_space(map);
11051 equal = isl_space_tuple_is_equal(space, isl_dim_in, space, isl_dim_out);
11052 isl_space_free(space);
11053 if (equal < 0 || !equal)
11054 return equal;
11056 id = isl_map_identity(isl_map_get_space(map));
11057 is_identity = isl_map_is_subset(map, id);
11058 isl_map_free(id);
11060 return is_identity;
11063 int isl_map_is_translation(__isl_keep isl_map *map)
11065 int ok;
11066 isl_set *delta;
11068 delta = isl_map_deltas(isl_map_copy(map));
11069 ok = isl_set_is_singleton(delta);
11070 isl_set_free(delta);
11072 return ok;
11075 static int unique(isl_int *p, unsigned pos, unsigned len)
11077 if (isl_seq_first_non_zero(p, pos) != -1)
11078 return 0;
11079 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
11080 return 0;
11081 return 1;
11084 isl_bool isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
11086 int i, j;
11087 unsigned nvar;
11088 unsigned ovar;
11090 if (!bset)
11091 return isl_bool_error;
11093 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
11094 return isl_bool_false;
11096 nvar = isl_basic_set_dim(bset, isl_dim_set);
11097 ovar = isl_space_offset(bset->dim, isl_dim_set);
11098 for (j = 0; j < nvar; ++j) {
11099 int lower = 0, upper = 0;
11100 for (i = 0; i < bset->n_eq; ++i) {
11101 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
11102 continue;
11103 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
11104 return isl_bool_false;
11105 break;
11107 if (i < bset->n_eq)
11108 continue;
11109 for (i = 0; i < bset->n_ineq; ++i) {
11110 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
11111 continue;
11112 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
11113 return isl_bool_false;
11114 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
11115 lower = 1;
11116 else
11117 upper = 1;
11119 if (!lower || !upper)
11120 return isl_bool_false;
11123 return isl_bool_true;
11126 isl_bool isl_set_is_box(__isl_keep isl_set *set)
11128 if (!set)
11129 return isl_bool_error;
11130 if (set->n != 1)
11131 return isl_bool_false;
11133 return isl_basic_set_is_box(set->p[0]);
11136 isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
11138 if (!bset)
11139 return isl_bool_error;
11141 return isl_space_is_wrapping(bset->dim);
11144 isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
11146 if (!set)
11147 return isl_bool_error;
11149 return isl_space_is_wrapping(set->dim);
11152 /* Modify the space of "map" through a call to "change".
11153 * If "can_change" is set (not NULL), then first call it to check
11154 * if the modification is allowed, printing the error message "cannot_change"
11155 * if it is not.
11157 static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
11158 isl_bool (*can_change)(__isl_keep isl_map *map),
11159 const char *cannot_change,
11160 __isl_give isl_space *(*change)(__isl_take isl_space *space))
11162 isl_bool ok;
11163 isl_space *space;
11165 if (!map)
11166 return NULL;
11168 ok = can_change ? can_change(map) : isl_bool_true;
11169 if (ok < 0)
11170 return isl_map_free(map);
11171 if (!ok)
11172 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
11173 return isl_map_free(map));
11175 space = change(isl_map_get_space(map));
11176 map = isl_map_reset_space(map, space);
11178 return map;
11181 /* Is the domain of "map" a wrapped relation?
11183 isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
11185 if (!map)
11186 return isl_bool_error;
11188 return isl_space_domain_is_wrapping(map->dim);
11191 /* Is the range of "map" a wrapped relation?
11193 isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
11195 if (!map)
11196 return isl_bool_error;
11198 return isl_space_range_is_wrapping(map->dim);
11201 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
11203 bmap = isl_basic_map_cow(bmap);
11204 if (!bmap)
11205 return NULL;
11207 bmap->dim = isl_space_wrap(bmap->dim);
11208 if (!bmap->dim)
11209 goto error;
11211 bmap = isl_basic_map_finalize(bmap);
11213 return bset_from_bmap(bmap);
11214 error:
11215 isl_basic_map_free(bmap);
11216 return NULL;
11219 /* Given a map A -> B, return the set (A -> B).
11221 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
11223 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
11226 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
11228 bset = isl_basic_set_cow(bset);
11229 if (!bset)
11230 return NULL;
11232 bset->dim = isl_space_unwrap(bset->dim);
11233 if (!bset->dim)
11234 goto error;
11236 bset = isl_basic_set_finalize(bset);
11238 return bset_to_bmap(bset);
11239 error:
11240 isl_basic_set_free(bset);
11241 return NULL;
11244 /* Given a set (A -> B), return the map A -> B.
11245 * Error out if "set" is not of the form (A -> B).
11247 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
11249 return isl_map_change_space(set, &isl_set_is_wrapping,
11250 "not a wrapping set", &isl_space_unwrap);
11253 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
11254 enum isl_dim_type type)
11256 if (!bmap)
11257 return NULL;
11259 if (!isl_space_is_named_or_nested(bmap->dim, type))
11260 return bmap;
11262 bmap = isl_basic_map_cow(bmap);
11263 if (!bmap)
11264 return NULL;
11266 bmap->dim = isl_space_reset(bmap->dim, type);
11267 if (!bmap->dim)
11268 goto error;
11270 bmap = isl_basic_map_finalize(bmap);
11272 return bmap;
11273 error:
11274 isl_basic_map_free(bmap);
11275 return NULL;
11278 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
11279 enum isl_dim_type type)
11281 int i;
11283 if (!map)
11284 return NULL;
11286 if (!isl_space_is_named_or_nested(map->dim, type))
11287 return map;
11289 map = isl_map_cow(map);
11290 if (!map)
11291 return NULL;
11293 for (i = 0; i < map->n; ++i) {
11294 map->p[i] = isl_basic_map_reset(map->p[i], type);
11295 if (!map->p[i])
11296 goto error;
11298 map->dim = isl_space_reset(map->dim, type);
11299 if (!map->dim)
11300 goto error;
11302 return map;
11303 error:
11304 isl_map_free(map);
11305 return NULL;
11308 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
11310 if (!bmap)
11311 return NULL;
11313 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
11314 return bmap;
11316 bmap = isl_basic_map_cow(bmap);
11317 if (!bmap)
11318 return NULL;
11320 bmap->dim = isl_space_flatten(bmap->dim);
11321 if (!bmap->dim)
11322 goto error;
11324 bmap = isl_basic_map_finalize(bmap);
11326 return bmap;
11327 error:
11328 isl_basic_map_free(bmap);
11329 return NULL;
11332 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
11334 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset)));
11337 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
11338 __isl_take isl_basic_map *bmap)
11340 if (!bmap)
11341 return NULL;
11343 if (!bmap->dim->nested[0])
11344 return bmap;
11346 bmap = isl_basic_map_cow(bmap);
11347 if (!bmap)
11348 return NULL;
11350 bmap->dim = isl_space_flatten_domain(bmap->dim);
11351 if (!bmap->dim)
11352 goto error;
11354 bmap = isl_basic_map_finalize(bmap);
11356 return bmap;
11357 error:
11358 isl_basic_map_free(bmap);
11359 return NULL;
11362 __isl_give isl_basic_map *isl_basic_map_flatten_range(
11363 __isl_take isl_basic_map *bmap)
11365 if (!bmap)
11366 return NULL;
11368 if (!bmap->dim->nested[1])
11369 return bmap;
11371 bmap = isl_basic_map_cow(bmap);
11372 if (!bmap)
11373 return NULL;
11375 bmap->dim = isl_space_flatten_range(bmap->dim);
11376 if (!bmap->dim)
11377 goto error;
11379 bmap = isl_basic_map_finalize(bmap);
11381 return bmap;
11382 error:
11383 isl_basic_map_free(bmap);
11384 return NULL;
11387 /* Remove any internal structure from the spaces of domain and range of "map".
11389 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
11391 if (!map)
11392 return NULL;
11394 if (!map->dim->nested[0] && !map->dim->nested[1])
11395 return map;
11397 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
11400 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
11402 return set_from_map(isl_map_flatten(set_to_map(set)));
11405 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
11407 isl_space *dim, *flat_dim;
11408 isl_map *map;
11410 dim = isl_set_get_space(set);
11411 flat_dim = isl_space_flatten(isl_space_copy(dim));
11412 map = isl_map_identity(isl_space_join(isl_space_reverse(dim), flat_dim));
11413 map = isl_map_intersect_domain(map, set);
11415 return map;
11418 /* Remove any internal structure from the space of the domain of "map".
11420 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
11422 if (!map)
11423 return NULL;
11425 if (!map->dim->nested[0])
11426 return map;
11428 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
11431 /* Remove any internal structure from the space of the range of "map".
11433 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
11435 if (!map)
11436 return NULL;
11438 if (!map->dim->nested[1])
11439 return map;
11441 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
11444 /* Reorder the dimensions of "bmap" according to the given dim_map
11445 * and set the dimension specification to "dim" and
11446 * perform Gaussian elimination on the result.
11448 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
11449 __isl_take isl_space *dim, __isl_take struct isl_dim_map *dim_map)
11451 isl_basic_map *res;
11452 unsigned flags;
11454 bmap = isl_basic_map_cow(bmap);
11455 if (!bmap || !dim || !dim_map)
11456 goto error;
11458 flags = bmap->flags;
11459 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
11460 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED);
11461 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
11462 res = isl_basic_map_alloc_space(dim,
11463 bmap->n_div, bmap->n_eq, bmap->n_ineq);
11464 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
11465 if (res)
11466 res->flags = flags;
11467 res = isl_basic_map_gauss(res, NULL);
11468 res = isl_basic_map_finalize(res);
11469 return res;
11470 error:
11471 free(dim_map);
11472 isl_basic_map_free(bmap);
11473 isl_space_free(dim);
11474 return NULL;
11477 /* Reorder the dimensions of "map" according to given reordering.
11479 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
11480 __isl_take isl_reordering *r)
11482 int i;
11483 struct isl_dim_map *dim_map;
11485 map = isl_map_cow(map);
11486 dim_map = isl_dim_map_from_reordering(r);
11487 if (!map || !r || !dim_map)
11488 goto error;
11490 for (i = 0; i < map->n; ++i) {
11491 struct isl_dim_map *dim_map_i;
11493 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
11495 map->p[i] = isl_basic_map_realign(map->p[i],
11496 isl_space_copy(r->dim), dim_map_i);
11498 if (!map->p[i])
11499 goto error;
11502 map = isl_map_reset_space(map, isl_space_copy(r->dim));
11504 isl_reordering_free(r);
11505 free(dim_map);
11506 return map;
11507 error:
11508 free(dim_map);
11509 isl_map_free(map);
11510 isl_reordering_free(r);
11511 return NULL;
11514 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
11515 __isl_take isl_reordering *r)
11517 return set_from_map(isl_map_realign(set_to_map(set), r));
11520 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
11521 __isl_take isl_space *model)
11523 isl_ctx *ctx;
11524 isl_bool aligned;
11526 if (!map || !model)
11527 goto error;
11529 ctx = isl_space_get_ctx(model);
11530 if (!isl_space_has_named_params(model))
11531 isl_die(ctx, isl_error_invalid,
11532 "model has unnamed parameters", goto error);
11533 if (isl_map_check_named_params(map) < 0)
11534 goto error;
11535 aligned = isl_map_space_has_equal_params(map, model);
11536 if (aligned < 0)
11537 goto error;
11538 if (!aligned) {
11539 isl_reordering *exp;
11541 model = isl_space_drop_dims(model, isl_dim_in,
11542 0, isl_space_dim(model, isl_dim_in));
11543 model = isl_space_drop_dims(model, isl_dim_out,
11544 0, isl_space_dim(model, isl_dim_out));
11545 exp = isl_parameter_alignment_reordering(map->dim, model);
11546 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
11547 map = isl_map_realign(map, exp);
11550 isl_space_free(model);
11551 return map;
11552 error:
11553 isl_space_free(model);
11554 isl_map_free(map);
11555 return NULL;
11558 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
11559 __isl_take isl_space *model)
11561 return isl_map_align_params(set, model);
11564 /* Align the parameters of "bmap" to those of "model", introducing
11565 * additional parameters if needed.
11567 __isl_give isl_basic_map *isl_basic_map_align_params(
11568 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
11570 isl_ctx *ctx;
11571 isl_bool equal_params;
11573 if (!bmap || !model)
11574 goto error;
11576 ctx = isl_space_get_ctx(model);
11577 if (!isl_space_has_named_params(model))
11578 isl_die(ctx, isl_error_invalid,
11579 "model has unnamed parameters", goto error);
11580 if (!isl_space_has_named_params(bmap->dim))
11581 isl_die(ctx, isl_error_invalid,
11582 "relation has unnamed parameters", goto error);
11583 equal_params = isl_space_has_equal_params(bmap->dim, model);
11584 if (equal_params < 0)
11585 goto error;
11586 if (!equal_params) {
11587 isl_reordering *exp;
11588 struct isl_dim_map *dim_map;
11590 model = isl_space_drop_dims(model, isl_dim_in,
11591 0, isl_space_dim(model, isl_dim_in));
11592 model = isl_space_drop_dims(model, isl_dim_out,
11593 0, isl_space_dim(model, isl_dim_out));
11594 exp = isl_parameter_alignment_reordering(bmap->dim, model);
11595 exp = isl_reordering_extend_space(exp,
11596 isl_basic_map_get_space(bmap));
11597 dim_map = isl_dim_map_from_reordering(exp);
11598 bmap = isl_basic_map_realign(bmap,
11599 exp ? isl_space_copy(exp->dim) : NULL,
11600 isl_dim_map_extend(dim_map, bmap));
11601 isl_reordering_free(exp);
11602 free(dim_map);
11605 isl_space_free(model);
11606 return bmap;
11607 error:
11608 isl_space_free(model);
11609 isl_basic_map_free(bmap);
11610 return NULL;
11613 /* Do "bset" and "space" have the same parameters?
11615 isl_bool isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set *bset,
11616 __isl_keep isl_space *space)
11618 isl_space *bset_space;
11620 bset_space = isl_basic_set_peek_space(bset);
11621 return isl_space_has_equal_params(bset_space, space);
11624 /* Do "map" and "space" have the same parameters?
11626 isl_bool isl_map_space_has_equal_params(__isl_keep isl_map *map,
11627 __isl_keep isl_space *space)
11629 isl_space *map_space;
11631 map_space = isl_map_peek_space(map);
11632 return isl_space_has_equal_params(map_space, space);
11635 /* Do "set" and "space" have the same parameters?
11637 isl_bool isl_set_space_has_equal_params(__isl_keep isl_set *set,
11638 __isl_keep isl_space *space)
11640 return isl_map_space_has_equal_params(set_to_map(set), space);
11643 /* Align the parameters of "bset" to those of "model", introducing
11644 * additional parameters if needed.
11646 __isl_give isl_basic_set *isl_basic_set_align_params(
11647 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
11649 return isl_basic_map_align_params(bset, model);
11652 __isl_give isl_mat *isl_basic_map_equalities_matrix(
11653 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11654 enum isl_dim_type c2, enum isl_dim_type c3,
11655 enum isl_dim_type c4, enum isl_dim_type c5)
11657 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11658 struct isl_mat *mat;
11659 int i, j, k;
11660 int pos;
11662 if (!bmap)
11663 return NULL;
11664 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
11665 isl_basic_map_total_dim(bmap) + 1);
11666 if (!mat)
11667 return NULL;
11668 for (i = 0; i < bmap->n_eq; ++i)
11669 for (j = 0, pos = 0; j < 5; ++j) {
11670 int off = isl_basic_map_offset(bmap, c[j]);
11671 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11672 isl_int_set(mat->row[i][pos],
11673 bmap->eq[i][off + k]);
11674 ++pos;
11678 return mat;
11681 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
11682 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11683 enum isl_dim_type c2, enum isl_dim_type c3,
11684 enum isl_dim_type c4, enum isl_dim_type c5)
11686 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11687 struct isl_mat *mat;
11688 int i, j, k;
11689 int pos;
11691 if (!bmap)
11692 return NULL;
11693 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
11694 isl_basic_map_total_dim(bmap) + 1);
11695 if (!mat)
11696 return NULL;
11697 for (i = 0; i < bmap->n_ineq; ++i)
11698 for (j = 0, pos = 0; j < 5; ++j) {
11699 int off = isl_basic_map_offset(bmap, c[j]);
11700 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11701 isl_int_set(mat->row[i][pos],
11702 bmap->ineq[i][off + k]);
11703 ++pos;
11707 return mat;
11710 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
11711 __isl_take isl_space *dim,
11712 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11713 enum isl_dim_type c2, enum isl_dim_type c3,
11714 enum isl_dim_type c4, enum isl_dim_type c5)
11716 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11717 isl_basic_map *bmap;
11718 unsigned total;
11719 unsigned extra;
11720 int i, j, k, l;
11721 int pos;
11723 if (!dim || !eq || !ineq)
11724 goto error;
11726 if (eq->n_col != ineq->n_col)
11727 isl_die(dim->ctx, isl_error_invalid,
11728 "equalities and inequalities matrices should have "
11729 "same number of columns", goto error);
11731 total = 1 + isl_space_dim(dim, isl_dim_all);
11733 if (eq->n_col < total)
11734 isl_die(dim->ctx, isl_error_invalid,
11735 "number of columns too small", goto error);
11737 extra = eq->n_col - total;
11739 bmap = isl_basic_map_alloc_space(isl_space_copy(dim), extra,
11740 eq->n_row, ineq->n_row);
11741 if (!bmap)
11742 goto error;
11743 for (i = 0; i < extra; ++i) {
11744 k = isl_basic_map_alloc_div(bmap);
11745 if (k < 0)
11746 goto error;
11747 isl_int_set_si(bmap->div[k][0], 0);
11749 for (i = 0; i < eq->n_row; ++i) {
11750 l = isl_basic_map_alloc_equality(bmap);
11751 if (l < 0)
11752 goto error;
11753 for (j = 0, pos = 0; j < 5; ++j) {
11754 int off = isl_basic_map_offset(bmap, c[j]);
11755 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11756 isl_int_set(bmap->eq[l][off + k],
11757 eq->row[i][pos]);
11758 ++pos;
11762 for (i = 0; i < ineq->n_row; ++i) {
11763 l = isl_basic_map_alloc_inequality(bmap);
11764 if (l < 0)
11765 goto error;
11766 for (j = 0, pos = 0; j < 5; ++j) {
11767 int off = isl_basic_map_offset(bmap, c[j]);
11768 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11769 isl_int_set(bmap->ineq[l][off + k],
11770 ineq->row[i][pos]);
11771 ++pos;
11776 isl_space_free(dim);
11777 isl_mat_free(eq);
11778 isl_mat_free(ineq);
11780 bmap = isl_basic_map_simplify(bmap);
11781 return isl_basic_map_finalize(bmap);
11782 error:
11783 isl_space_free(dim);
11784 isl_mat_free(eq);
11785 isl_mat_free(ineq);
11786 return NULL;
11789 __isl_give isl_mat *isl_basic_set_equalities_matrix(
11790 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11791 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11793 return isl_basic_map_equalities_matrix(bset_to_bmap(bset),
11794 c1, c2, c3, c4, isl_dim_in);
11797 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
11798 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11799 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11801 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset),
11802 c1, c2, c3, c4, isl_dim_in);
11805 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
11806 __isl_take isl_space *dim,
11807 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11808 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11810 isl_basic_map *bmap;
11811 bmap = isl_basic_map_from_constraint_matrices(dim, eq, ineq,
11812 c1, c2, c3, c4, isl_dim_in);
11813 return bset_from_bmap(bmap);
11816 isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
11818 if (!bmap)
11819 return isl_bool_error;
11821 return isl_space_can_zip(bmap->dim);
11824 isl_bool isl_map_can_zip(__isl_keep isl_map *map)
11826 if (!map)
11827 return isl_bool_error;
11829 return isl_space_can_zip(map->dim);
11832 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
11833 * (A -> C) -> (B -> D).
11835 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
11837 unsigned pos;
11838 unsigned n1;
11839 unsigned n2;
11841 if (!bmap)
11842 return NULL;
11844 if (!isl_basic_map_can_zip(bmap))
11845 isl_die(bmap->ctx, isl_error_invalid,
11846 "basic map cannot be zipped", goto error);
11847 pos = isl_basic_map_offset(bmap, isl_dim_in) +
11848 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
11849 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
11850 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
11851 bmap = isl_basic_map_cow(bmap);
11852 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
11853 if (!bmap)
11854 return NULL;
11855 bmap->dim = isl_space_zip(bmap->dim);
11856 if (!bmap->dim)
11857 goto error;
11858 bmap = isl_basic_map_mark_final(bmap);
11859 return bmap;
11860 error:
11861 isl_basic_map_free(bmap);
11862 return NULL;
11865 /* Given a map (A -> B) -> (C -> D), return the corresponding map
11866 * (A -> C) -> (B -> D).
11868 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
11870 int i;
11872 if (!map)
11873 return NULL;
11875 if (!isl_map_can_zip(map))
11876 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
11877 goto error);
11879 map = isl_map_cow(map);
11880 if (!map)
11881 return NULL;
11883 for (i = 0; i < map->n; ++i) {
11884 map->p[i] = isl_basic_map_zip(map->p[i]);
11885 if (!map->p[i])
11886 goto error;
11889 map->dim = isl_space_zip(map->dim);
11890 if (!map->dim)
11891 goto error;
11893 return map;
11894 error:
11895 isl_map_free(map);
11896 return NULL;
11899 /* Can we apply isl_basic_map_curry to "bmap"?
11900 * That is, does it have a nested relation in its domain?
11902 isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
11904 if (!bmap)
11905 return isl_bool_error;
11907 return isl_space_can_curry(bmap->dim);
11910 /* Can we apply isl_map_curry to "map"?
11911 * That is, does it have a nested relation in its domain?
11913 isl_bool isl_map_can_curry(__isl_keep isl_map *map)
11915 if (!map)
11916 return isl_bool_error;
11918 return isl_space_can_curry(map->dim);
11921 /* Given a basic map (A -> B) -> C, return the corresponding basic map
11922 * A -> (B -> C).
11924 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
11927 if (!bmap)
11928 return NULL;
11930 if (!isl_basic_map_can_curry(bmap))
11931 isl_die(bmap->ctx, isl_error_invalid,
11932 "basic map cannot be curried", goto error);
11933 bmap = isl_basic_map_cow(bmap);
11934 if (!bmap)
11935 return NULL;
11936 bmap->dim = isl_space_curry(bmap->dim);
11937 if (!bmap->dim)
11938 goto error;
11939 bmap = isl_basic_map_mark_final(bmap);
11940 return bmap;
11941 error:
11942 isl_basic_map_free(bmap);
11943 return NULL;
11946 /* Given a map (A -> B) -> C, return the corresponding map
11947 * A -> (B -> C).
11949 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
11951 return isl_map_change_space(map, &isl_map_can_curry,
11952 "map cannot be curried", &isl_space_curry);
11955 /* Can isl_map_range_curry be applied to "map"?
11956 * That is, does it have a nested relation in its range,
11957 * the domain of which is itself a nested relation?
11959 isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
11961 if (!map)
11962 return isl_bool_error;
11964 return isl_space_can_range_curry(map->dim);
11967 /* Given a map A -> ((B -> C) -> D), return the corresponding map
11968 * A -> (B -> (C -> D)).
11970 __isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
11972 return isl_map_change_space(map, &isl_map_can_range_curry,
11973 "map range cannot be curried",
11974 &isl_space_range_curry);
11977 /* Can we apply isl_basic_map_uncurry to "bmap"?
11978 * That is, does it have a nested relation in its domain?
11980 isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
11982 if (!bmap)
11983 return isl_bool_error;
11985 return isl_space_can_uncurry(bmap->dim);
11988 /* Can we apply isl_map_uncurry to "map"?
11989 * That is, does it have a nested relation in its domain?
11991 isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
11993 if (!map)
11994 return isl_bool_error;
11996 return isl_space_can_uncurry(map->dim);
11999 /* Given a basic map A -> (B -> C), return the corresponding basic map
12000 * (A -> B) -> C.
12002 __isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
12005 if (!bmap)
12006 return NULL;
12008 if (!isl_basic_map_can_uncurry(bmap))
12009 isl_die(bmap->ctx, isl_error_invalid,
12010 "basic map cannot be uncurried",
12011 return isl_basic_map_free(bmap));
12012 bmap = isl_basic_map_cow(bmap);
12013 if (!bmap)
12014 return NULL;
12015 bmap->dim = isl_space_uncurry(bmap->dim);
12016 if (!bmap->dim)
12017 return isl_basic_map_free(bmap);
12018 bmap = isl_basic_map_mark_final(bmap);
12019 return bmap;
12022 /* Given a map A -> (B -> C), return the corresponding map
12023 * (A -> B) -> C.
12025 __isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
12027 return isl_map_change_space(map, &isl_map_can_uncurry,
12028 "map cannot be uncurried", &isl_space_uncurry);
12031 /* Construct a basic map mapping the domain of the affine expression
12032 * to a one-dimensional range prescribed by the affine expression.
12033 * If "rational" is set, then construct a rational basic map.
12035 * A NaN affine expression cannot be converted to a basic map.
12037 static __isl_give isl_basic_map *isl_basic_map_from_aff2(
12038 __isl_take isl_aff *aff, int rational)
12040 int k;
12041 int pos;
12042 isl_bool is_nan;
12043 isl_local_space *ls;
12044 isl_basic_map *bmap = NULL;
12046 if (!aff)
12047 return NULL;
12048 is_nan = isl_aff_is_nan(aff);
12049 if (is_nan < 0)
12050 goto error;
12051 if (is_nan)
12052 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
12053 "cannot convert NaN", goto error);
12055 ls = isl_aff_get_local_space(aff);
12056 bmap = isl_basic_map_from_local_space(ls);
12057 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
12058 k = isl_basic_map_alloc_equality(bmap);
12059 if (k < 0)
12060 goto error;
12062 pos = isl_basic_map_offset(bmap, isl_dim_out);
12063 isl_seq_cpy(bmap->eq[k], aff->v->el + 1, pos);
12064 isl_int_neg(bmap->eq[k][pos], aff->v->el[0]);
12065 isl_seq_cpy(bmap->eq[k] + pos + 1, aff->v->el + 1 + pos,
12066 aff->v->size - (pos + 1));
12068 isl_aff_free(aff);
12069 if (rational)
12070 bmap = isl_basic_map_set_rational(bmap);
12071 bmap = isl_basic_map_gauss(bmap, NULL);
12072 bmap = isl_basic_map_finalize(bmap);
12073 return bmap;
12074 error:
12075 isl_aff_free(aff);
12076 isl_basic_map_free(bmap);
12077 return NULL;
12080 /* Construct a basic map mapping the domain of the affine expression
12081 * to a one-dimensional range prescribed by the affine expression.
12083 __isl_give isl_basic_map *isl_basic_map_from_aff(__isl_take isl_aff *aff)
12085 return isl_basic_map_from_aff2(aff, 0);
12088 /* Construct a map mapping the domain of the affine expression
12089 * to a one-dimensional range prescribed by the affine expression.
12091 __isl_give isl_map *isl_map_from_aff(__isl_take isl_aff *aff)
12093 isl_basic_map *bmap;
12095 bmap = isl_basic_map_from_aff(aff);
12096 return isl_map_from_basic_map(bmap);
12099 /* Construct a basic map mapping the domain the multi-affine expression
12100 * to its range, with each dimension in the range equated to the
12101 * corresponding affine expression.
12102 * If "rational" is set, then construct a rational basic map.
12104 __isl_give isl_basic_map *isl_basic_map_from_multi_aff2(
12105 __isl_take isl_multi_aff *maff, int rational)
12107 int i;
12108 isl_space *space;
12109 isl_basic_map *bmap;
12111 if (!maff)
12112 return NULL;
12114 if (isl_space_dim(maff->space, isl_dim_out) != maff->n)
12115 isl_die(isl_multi_aff_get_ctx(maff), isl_error_internal,
12116 "invalid space", goto error);
12118 space = isl_space_domain(isl_multi_aff_get_space(maff));
12119 bmap = isl_basic_map_universe(isl_space_from_domain(space));
12120 if (rational)
12121 bmap = isl_basic_map_set_rational(bmap);
12123 for (i = 0; i < maff->n; ++i) {
12124 isl_aff *aff;
12125 isl_basic_map *bmap_i;
12127 aff = isl_aff_copy(maff->p[i]);
12128 bmap_i = isl_basic_map_from_aff2(aff, rational);
12130 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
12133 bmap = isl_basic_map_reset_space(bmap, isl_multi_aff_get_space(maff));
12135 isl_multi_aff_free(maff);
12136 return bmap;
12137 error:
12138 isl_multi_aff_free(maff);
12139 return NULL;
12142 /* Construct a basic map mapping the domain the multi-affine expression
12143 * to its range, with each dimension in the range equated to the
12144 * corresponding affine expression.
12146 __isl_give isl_basic_map *isl_basic_map_from_multi_aff(
12147 __isl_take isl_multi_aff *ma)
12149 return isl_basic_map_from_multi_aff2(ma, 0);
12152 /* Construct a map mapping the domain the multi-affine expression
12153 * to its range, with each dimension in the range equated to the
12154 * corresponding affine expression.
12156 __isl_give isl_map *isl_map_from_multi_aff(__isl_take isl_multi_aff *maff)
12158 isl_basic_map *bmap;
12160 bmap = isl_basic_map_from_multi_aff(maff);
12161 return isl_map_from_basic_map(bmap);
12164 /* Construct a basic map mapping a domain in the given space to
12165 * to an n-dimensional range, with n the number of elements in the list,
12166 * where each coordinate in the range is prescribed by the
12167 * corresponding affine expression.
12168 * The domains of all affine expressions in the list are assumed to match
12169 * domain_dim.
12171 __isl_give isl_basic_map *isl_basic_map_from_aff_list(
12172 __isl_take isl_space *domain_dim, __isl_take isl_aff_list *list)
12174 int i;
12175 isl_space *dim;
12176 isl_basic_map *bmap;
12178 if (!list)
12179 return NULL;
12181 dim = isl_space_from_domain(domain_dim);
12182 bmap = isl_basic_map_universe(dim);
12184 for (i = 0; i < list->n; ++i) {
12185 isl_aff *aff;
12186 isl_basic_map *bmap_i;
12188 aff = isl_aff_copy(list->p[i]);
12189 bmap_i = isl_basic_map_from_aff(aff);
12191 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
12194 isl_aff_list_free(list);
12195 return bmap;
12198 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
12199 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12201 return isl_map_equate(set, type1, pos1, type2, pos2);
12204 /* Construct a basic map where the given dimensions are equal to each other.
12206 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
12207 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12209 isl_basic_map *bmap = NULL;
12210 int i;
12212 if (!space)
12213 return NULL;
12215 if (pos1 >= isl_space_dim(space, type1))
12216 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12217 "index out of bounds", goto error);
12218 if (pos2 >= isl_space_dim(space, type2))
12219 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12220 "index out of bounds", goto error);
12222 if (type1 == type2 && pos1 == pos2)
12223 return isl_basic_map_universe(space);
12225 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
12226 i = isl_basic_map_alloc_equality(bmap);
12227 if (i < 0)
12228 goto error;
12229 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12230 pos1 += isl_basic_map_offset(bmap, type1);
12231 pos2 += isl_basic_map_offset(bmap, type2);
12232 isl_int_set_si(bmap->eq[i][pos1], -1);
12233 isl_int_set_si(bmap->eq[i][pos2], 1);
12234 bmap = isl_basic_map_finalize(bmap);
12235 isl_space_free(space);
12236 return bmap;
12237 error:
12238 isl_space_free(space);
12239 isl_basic_map_free(bmap);
12240 return NULL;
12243 /* Add a constraint imposing that the given two dimensions are equal.
12245 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
12246 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12248 isl_basic_map *eq;
12250 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12252 bmap = isl_basic_map_intersect(bmap, eq);
12254 return bmap;
12257 /* Add a constraint imposing that the given two dimensions are equal.
12259 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
12260 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12262 isl_basic_map *bmap;
12264 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
12266 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12268 return map;
12271 /* Add a constraint imposing that the given two dimensions have opposite values.
12273 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
12274 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12276 isl_basic_map *bmap = NULL;
12277 int i;
12279 if (!map)
12280 return NULL;
12282 if (pos1 >= isl_map_dim(map, type1))
12283 isl_die(map->ctx, isl_error_invalid,
12284 "index out of bounds", goto error);
12285 if (pos2 >= isl_map_dim(map, type2))
12286 isl_die(map->ctx, isl_error_invalid,
12287 "index out of bounds", goto error);
12289 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
12290 i = isl_basic_map_alloc_equality(bmap);
12291 if (i < 0)
12292 goto error;
12293 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12294 pos1 += isl_basic_map_offset(bmap, type1);
12295 pos2 += isl_basic_map_offset(bmap, type2);
12296 isl_int_set_si(bmap->eq[i][pos1], 1);
12297 isl_int_set_si(bmap->eq[i][pos2], 1);
12298 bmap = isl_basic_map_finalize(bmap);
12300 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12302 return map;
12303 error:
12304 isl_basic_map_free(bmap);
12305 isl_map_free(map);
12306 return NULL;
12309 /* Construct a constraint imposing that the value of the first dimension is
12310 * greater than or equal to that of the second.
12312 static __isl_give isl_constraint *constraint_order_ge(
12313 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
12314 enum isl_dim_type type2, int pos2)
12316 isl_constraint *c;
12318 if (!space)
12319 return NULL;
12321 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
12323 if (pos1 >= isl_constraint_dim(c, type1))
12324 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12325 "index out of bounds", return isl_constraint_free(c));
12326 if (pos2 >= isl_constraint_dim(c, type2))
12327 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12328 "index out of bounds", return isl_constraint_free(c));
12330 if (type1 == type2 && pos1 == pos2)
12331 return c;
12333 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
12334 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
12336 return c;
12339 /* Add a constraint imposing that the value of the first dimension is
12340 * greater than or equal to that of the second.
12342 __isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
12343 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12345 isl_constraint *c;
12346 isl_space *space;
12348 if (type1 == type2 && pos1 == pos2)
12349 return bmap;
12350 space = isl_basic_map_get_space(bmap);
12351 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12352 bmap = isl_basic_map_add_constraint(bmap, c);
12354 return bmap;
12357 /* Add a constraint imposing that the value of the first dimension is
12358 * greater than or equal to that of the second.
12360 __isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
12361 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12363 isl_constraint *c;
12364 isl_space *space;
12366 if (type1 == type2 && pos1 == pos2)
12367 return map;
12368 space = isl_map_get_space(map);
12369 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12370 map = isl_map_add_constraint(map, c);
12372 return map;
12375 /* Add a constraint imposing that the value of the first dimension is
12376 * less than or equal to that of the second.
12378 __isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
12379 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12381 return isl_map_order_ge(map, type2, pos2, type1, pos1);
12384 /* Construct a basic map where the value of the first dimension is
12385 * greater than that of the second.
12387 static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
12388 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12390 isl_basic_map *bmap = NULL;
12391 int i;
12393 if (!space)
12394 return NULL;
12396 if (pos1 >= isl_space_dim(space, type1))
12397 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12398 "index out of bounds", goto error);
12399 if (pos2 >= isl_space_dim(space, type2))
12400 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12401 "index out of bounds", goto error);
12403 if (type1 == type2 && pos1 == pos2)
12404 return isl_basic_map_empty(space);
12406 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
12407 i = isl_basic_map_alloc_inequality(bmap);
12408 if (i < 0)
12409 return isl_basic_map_free(bmap);
12410 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
12411 pos1 += isl_basic_map_offset(bmap, type1);
12412 pos2 += isl_basic_map_offset(bmap, type2);
12413 isl_int_set_si(bmap->ineq[i][pos1], 1);
12414 isl_int_set_si(bmap->ineq[i][pos2], -1);
12415 isl_int_set_si(bmap->ineq[i][0], -1);
12416 bmap = isl_basic_map_finalize(bmap);
12418 return bmap;
12419 error:
12420 isl_space_free(space);
12421 isl_basic_map_free(bmap);
12422 return NULL;
12425 /* Add a constraint imposing that the value of the first dimension is
12426 * greater than that of the second.
12428 __isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
12429 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12431 isl_basic_map *gt;
12433 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12435 bmap = isl_basic_map_intersect(bmap, gt);
12437 return bmap;
12440 /* Add a constraint imposing that the value of the first dimension is
12441 * greater than that of the second.
12443 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
12444 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12446 isl_basic_map *bmap;
12448 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
12450 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12452 return map;
12455 /* Add a constraint imposing that the value of the first dimension is
12456 * smaller than that of the second.
12458 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
12459 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12461 return isl_map_order_gt(map, type2, pos2, type1, pos1);
12464 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
12465 int pos)
12467 isl_aff *div;
12468 isl_local_space *ls;
12470 if (!bmap)
12471 return NULL;
12473 if (!isl_basic_map_divs_known(bmap))
12474 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12475 "some divs are unknown", return NULL);
12477 ls = isl_basic_map_get_local_space(bmap);
12478 div = isl_local_space_get_div(ls, pos);
12479 isl_local_space_free(ls);
12481 return div;
12484 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
12485 int pos)
12487 return isl_basic_map_get_div(bset, pos);
12490 /* Plug in "subs" for dimension "type", "pos" of "bset".
12492 * Let i be the dimension to replace and let "subs" be of the form
12494 * f/d
12496 * Any integer division with a non-zero coefficient for i,
12498 * floor((a i + g)/m)
12500 * is replaced by
12502 * floor((a f + d g)/(m d))
12504 * Constraints of the form
12506 * a i + g
12508 * are replaced by
12510 * a f + d g
12512 * We currently require that "subs" is an integral expression.
12513 * Handling rational expressions may require us to add stride constraints
12514 * as we do in isl_basic_set_preimage_multi_aff.
12516 __isl_give isl_basic_set *isl_basic_set_substitute(
12517 __isl_take isl_basic_set *bset,
12518 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12520 int i;
12521 isl_int v;
12522 isl_ctx *ctx;
12524 if (bset && isl_basic_set_plain_is_empty(bset))
12525 return bset;
12527 bset = isl_basic_set_cow(bset);
12528 if (!bset || !subs)
12529 goto error;
12531 ctx = isl_basic_set_get_ctx(bset);
12532 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
12533 isl_die(ctx, isl_error_invalid,
12534 "spaces don't match", goto error);
12535 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
12536 isl_die(ctx, isl_error_unsupported,
12537 "cannot handle divs yet", goto error);
12538 if (!isl_int_is_one(subs->v->el[0]))
12539 isl_die(ctx, isl_error_invalid,
12540 "can only substitute integer expressions", goto error);
12542 pos += isl_basic_set_offset(bset, type);
12544 isl_int_init(v);
12546 for (i = 0; i < bset->n_eq; ++i) {
12547 if (isl_int_is_zero(bset->eq[i][pos]))
12548 continue;
12549 isl_int_set(v, bset->eq[i][pos]);
12550 isl_int_set_si(bset->eq[i][pos], 0);
12551 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
12552 v, subs->v->el + 1, subs->v->size - 1);
12555 for (i = 0; i < bset->n_ineq; ++i) {
12556 if (isl_int_is_zero(bset->ineq[i][pos]))
12557 continue;
12558 isl_int_set(v, bset->ineq[i][pos]);
12559 isl_int_set_si(bset->ineq[i][pos], 0);
12560 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
12561 v, subs->v->el + 1, subs->v->size - 1);
12564 for (i = 0; i < bset->n_div; ++i) {
12565 if (isl_int_is_zero(bset->div[i][1 + pos]))
12566 continue;
12567 isl_int_set(v, bset->div[i][1 + pos]);
12568 isl_int_set_si(bset->div[i][1 + pos], 0);
12569 isl_seq_combine(bset->div[i] + 1,
12570 subs->v->el[0], bset->div[i] + 1,
12571 v, subs->v->el + 1, subs->v->size - 1);
12572 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
12575 isl_int_clear(v);
12577 bset = isl_basic_set_simplify(bset);
12578 return isl_basic_set_finalize(bset);
12579 error:
12580 isl_basic_set_free(bset);
12581 return NULL;
12584 /* Plug in "subs" for dimension "type", "pos" of "set".
12586 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
12587 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12589 int i;
12591 if (set && isl_set_plain_is_empty(set))
12592 return set;
12594 set = isl_set_cow(set);
12595 if (!set || !subs)
12596 goto error;
12598 for (i = set->n - 1; i >= 0; --i) {
12599 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
12600 if (remove_if_empty(set, i) < 0)
12601 goto error;
12604 return set;
12605 error:
12606 isl_set_free(set);
12607 return NULL;
12610 /* Check if the range of "ma" is compatible with the domain or range
12611 * (depending on "type") of "bmap".
12613 static isl_stat check_basic_map_compatible_range_multi_aff(
12614 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
12615 __isl_keep isl_multi_aff *ma)
12617 isl_bool m;
12618 isl_space *ma_space;
12620 ma_space = isl_multi_aff_get_space(ma);
12622 m = isl_space_has_equal_params(bmap->dim, ma_space);
12623 if (m < 0)
12624 goto error;
12625 if (!m)
12626 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12627 "parameters don't match", goto error);
12628 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
12629 if (m < 0)
12630 goto error;
12631 if (!m)
12632 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12633 "spaces don't match", goto error);
12635 isl_space_free(ma_space);
12636 return isl_stat_ok;
12637 error:
12638 isl_space_free(ma_space);
12639 return isl_stat_error;
12642 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12643 * coefficients before the transformed range of dimensions,
12644 * the "n_after" coefficients after the transformed range of dimensions
12645 * and the coefficients of the other divs in "bmap".
12647 static int set_ma_divs(__isl_keep isl_basic_map *bmap,
12648 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
12650 int i;
12651 int n_param;
12652 int n_set;
12653 isl_local_space *ls;
12655 if (n_div == 0)
12656 return 0;
12658 ls = isl_aff_get_domain_local_space(ma->p[0]);
12659 if (!ls)
12660 return -1;
12662 n_param = isl_local_space_dim(ls, isl_dim_param);
12663 n_set = isl_local_space_dim(ls, isl_dim_set);
12664 for (i = 0; i < n_div; ++i) {
12665 int o_bmap = 0, o_ls = 0;
12667 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
12668 o_bmap += 1 + 1 + n_param;
12669 o_ls += 1 + 1 + n_param;
12670 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
12671 o_bmap += n_before;
12672 isl_seq_cpy(bmap->div[i] + o_bmap,
12673 ls->div->row[i] + o_ls, n_set);
12674 o_bmap += n_set;
12675 o_ls += n_set;
12676 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
12677 o_bmap += n_after;
12678 isl_seq_cpy(bmap->div[i] + o_bmap,
12679 ls->div->row[i] + o_ls, n_div);
12680 o_bmap += n_div;
12681 o_ls += n_div;
12682 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
12683 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
12684 goto error;
12687 isl_local_space_free(ls);
12688 return 0;
12689 error:
12690 isl_local_space_free(ls);
12691 return -1;
12694 /* How many stride constraints does "ma" enforce?
12695 * That is, how many of the affine expressions have a denominator
12696 * different from one?
12698 static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
12700 int i;
12701 int strides = 0;
12703 for (i = 0; i < ma->n; ++i)
12704 if (!isl_int_is_one(ma->p[i]->v->el[0]))
12705 strides++;
12707 return strides;
12710 /* For each affine expression in ma of the form
12712 * x_i = (f_i y + h_i)/m_i
12714 * with m_i different from one, add a constraint to "bmap"
12715 * of the form
12717 * f_i y + h_i = m_i alpha_i
12719 * with alpha_i an additional existentially quantified variable.
12721 * The input variables of "ma" correspond to a subset of the variables
12722 * of "bmap". There are "n_before" variables in "bmap" before this
12723 * subset and "n_after" variables after this subset.
12724 * The integer divisions of the affine expressions in "ma" are assumed
12725 * to have been aligned. There are "n_div_ma" of them and
12726 * they appear first in "bmap", straight after the "n_after" variables.
12728 static __isl_give isl_basic_map *add_ma_strides(
12729 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
12730 int n_before, int n_after, int n_div_ma)
12732 int i, k;
12733 int div;
12734 int total;
12735 int n_param;
12736 int n_in;
12738 total = isl_basic_map_total_dim(bmap);
12739 n_param = isl_multi_aff_dim(ma, isl_dim_param);
12740 n_in = isl_multi_aff_dim(ma, isl_dim_in);
12741 for (i = 0; i < ma->n; ++i) {
12742 int o_bmap = 0, o_ma = 1;
12744 if (isl_int_is_one(ma->p[i]->v->el[0]))
12745 continue;
12746 div = isl_basic_map_alloc_div(bmap);
12747 k = isl_basic_map_alloc_equality(bmap);
12748 if (div < 0 || k < 0)
12749 goto error;
12750 isl_int_set_si(bmap->div[div][0], 0);
12751 isl_seq_cpy(bmap->eq[k] + o_bmap,
12752 ma->p[i]->v->el + o_ma, 1 + n_param);
12753 o_bmap += 1 + n_param;
12754 o_ma += 1 + n_param;
12755 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
12756 o_bmap += n_before;
12757 isl_seq_cpy(bmap->eq[k] + o_bmap,
12758 ma->p[i]->v->el + o_ma, n_in);
12759 o_bmap += n_in;
12760 o_ma += n_in;
12761 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
12762 o_bmap += n_after;
12763 isl_seq_cpy(bmap->eq[k] + o_bmap,
12764 ma->p[i]->v->el + o_ma, n_div_ma);
12765 o_bmap += n_div_ma;
12766 o_ma += n_div_ma;
12767 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
12768 isl_int_neg(bmap->eq[k][1 + total], ma->p[i]->v->el[0]);
12769 total++;
12772 return bmap;
12773 error:
12774 isl_basic_map_free(bmap);
12775 return NULL;
12778 /* Replace the domain or range space (depending on "type) of "space" by "set".
12780 static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
12781 enum isl_dim_type type, __isl_take isl_space *set)
12783 if (type == isl_dim_in) {
12784 space = isl_space_range(space);
12785 space = isl_space_map_from_domain_and_range(set, space);
12786 } else {
12787 space = isl_space_domain(space);
12788 space = isl_space_map_from_domain_and_range(space, set);
12791 return space;
12794 /* Compute the preimage of the domain or range (depending on "type")
12795 * of "bmap" under the function represented by "ma".
12796 * In other words, plug in "ma" in the domain or range of "bmap".
12797 * The result is a basic map that lives in the same space as "bmap"
12798 * except that the domain or range has been replaced by
12799 * the domain space of "ma".
12801 * If bmap is represented by
12803 * A(p) + S u + B x + T v + C(divs) >= 0,
12805 * where u and x are input and output dimensions if type == isl_dim_out
12806 * while x and v are input and output dimensions if type == isl_dim_in,
12807 * and ma is represented by
12809 * x = D(p) + F(y) + G(divs')
12811 * then the result is
12813 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12815 * The divs in the input set are similarly adjusted.
12816 * In particular
12818 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12820 * becomes
12822 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12823 * B_i G(divs') + c_i(divs))/n_i)
12825 * If bmap is not a rational map and if F(y) involves any denominators
12827 * x_i = (f_i y + h_i)/m_i
12829 * then additional constraints are added to ensure that we only
12830 * map back integer points. That is we enforce
12832 * f_i y + h_i = m_i alpha_i
12834 * with alpha_i an additional existentially quantified variable.
12836 * We first copy over the divs from "ma".
12837 * Then we add the modified constraints and divs from "bmap".
12838 * Finally, we add the stride constraints, if needed.
12840 __isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
12841 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
12842 __isl_take isl_multi_aff *ma)
12844 int i, k;
12845 isl_space *space;
12846 isl_basic_map *res = NULL;
12847 int n_before, n_after, n_div_bmap, n_div_ma;
12848 isl_int f, c1, c2, g;
12849 isl_bool rational;
12850 int strides;
12852 isl_int_init(f);
12853 isl_int_init(c1);
12854 isl_int_init(c2);
12855 isl_int_init(g);
12857 ma = isl_multi_aff_align_divs(ma);
12858 if (!bmap || !ma)
12859 goto error;
12860 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
12861 goto error;
12863 if (type == isl_dim_in) {
12864 n_before = 0;
12865 n_after = isl_basic_map_dim(bmap, isl_dim_out);
12866 } else {
12867 n_before = isl_basic_map_dim(bmap, isl_dim_in);
12868 n_after = 0;
12870 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
12871 n_div_ma = ma->n ? isl_aff_dim(ma->p[0], isl_dim_div) : 0;
12873 space = isl_multi_aff_get_domain_space(ma);
12874 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
12875 rational = isl_basic_map_is_rational(bmap);
12876 strides = rational ? 0 : multi_aff_strides(ma);
12877 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
12878 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
12879 if (rational)
12880 res = isl_basic_map_set_rational(res);
12882 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
12883 if (isl_basic_map_alloc_div(res) < 0)
12884 goto error;
12886 if (set_ma_divs(res, ma, n_before, n_after, n_div_ma) < 0)
12887 goto error;
12889 for (i = 0; i < bmap->n_eq; ++i) {
12890 k = isl_basic_map_alloc_equality(res);
12891 if (k < 0)
12892 goto error;
12893 isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
12894 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
12897 for (i = 0; i < bmap->n_ineq; ++i) {
12898 k = isl_basic_map_alloc_inequality(res);
12899 if (k < 0)
12900 goto error;
12901 isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
12902 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
12905 for (i = 0; i < bmap->n_div; ++i) {
12906 if (isl_int_is_zero(bmap->div[i][0])) {
12907 isl_int_set_si(res->div[n_div_ma + i][0], 0);
12908 continue;
12910 isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
12911 n_before, n_after, n_div_ma, n_div_bmap,
12912 f, c1, c2, g, 1);
12915 if (strides)
12916 res = add_ma_strides(res, ma, n_before, n_after, n_div_ma);
12918 isl_int_clear(f);
12919 isl_int_clear(c1);
12920 isl_int_clear(c2);
12921 isl_int_clear(g);
12922 isl_basic_map_free(bmap);
12923 isl_multi_aff_free(ma);
12924 res = isl_basic_map_simplify(res);
12925 return isl_basic_map_finalize(res);
12926 error:
12927 isl_int_clear(f);
12928 isl_int_clear(c1);
12929 isl_int_clear(c2);
12930 isl_int_clear(g);
12931 isl_basic_map_free(bmap);
12932 isl_multi_aff_free(ma);
12933 isl_basic_map_free(res);
12934 return NULL;
12937 /* Compute the preimage of "bset" under the function represented by "ma".
12938 * In other words, plug in "ma" in "bset". The result is a basic set
12939 * that lives in the domain space of "ma".
12941 __isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
12942 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
12944 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
12947 /* Compute the preimage of the domain of "bmap" under the function
12948 * represented by "ma".
12949 * In other words, plug in "ma" in the domain of "bmap".
12950 * The result is a basic map that lives in the same space as "bmap"
12951 * except that the domain has been replaced by the domain space of "ma".
12953 __isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
12954 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
12956 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
12959 /* Compute the preimage of the range of "bmap" under the function
12960 * represented by "ma".
12961 * In other words, plug in "ma" in the range of "bmap".
12962 * The result is a basic map that lives in the same space as "bmap"
12963 * except that the range has been replaced by the domain space of "ma".
12965 __isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
12966 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
12968 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
12971 /* Check if the range of "ma" is compatible with the domain or range
12972 * (depending on "type") of "map".
12973 * Return isl_stat_error if anything is wrong.
12975 static isl_stat check_map_compatible_range_multi_aff(
12976 __isl_keep isl_map *map, enum isl_dim_type type,
12977 __isl_keep isl_multi_aff *ma)
12979 isl_bool m;
12980 isl_space *ma_space;
12982 ma_space = isl_multi_aff_get_space(ma);
12983 m = isl_space_tuple_is_equal(map->dim, type, ma_space, isl_dim_out);
12984 isl_space_free(ma_space);
12985 if (m < 0)
12986 return isl_stat_error;
12987 if (!m)
12988 isl_die(isl_map_get_ctx(map), isl_error_invalid,
12989 "spaces don't match", return isl_stat_error);
12990 return isl_stat_ok;
12993 /* Compute the preimage of the domain or range (depending on "type")
12994 * of "map" under the function represented by "ma".
12995 * In other words, plug in "ma" in the domain or range of "map".
12996 * The result is a map that lives in the same space as "map"
12997 * except that the domain or range has been replaced by
12998 * the domain space of "ma".
13000 * The parameters are assumed to have been aligned.
13002 static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
13003 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13005 int i;
13006 isl_space *space;
13008 map = isl_map_cow(map);
13009 ma = isl_multi_aff_align_divs(ma);
13010 if (!map || !ma)
13011 goto error;
13012 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
13013 goto error;
13015 for (i = 0; i < map->n; ++i) {
13016 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
13017 isl_multi_aff_copy(ma));
13018 if (!map->p[i])
13019 goto error;
13022 space = isl_multi_aff_get_domain_space(ma);
13023 space = isl_space_set(isl_map_get_space(map), type, space);
13025 isl_space_free(map->dim);
13026 map->dim = space;
13027 if (!map->dim)
13028 goto error;
13030 isl_multi_aff_free(ma);
13031 if (map->n > 1)
13032 ISL_F_CLR(map, ISL_MAP_DISJOINT);
13033 ISL_F_CLR(map, ISL_SET_NORMALIZED);
13034 return map;
13035 error:
13036 isl_multi_aff_free(ma);
13037 isl_map_free(map);
13038 return NULL;
13041 /* Compute the preimage of the domain or range (depending on "type")
13042 * of "map" under the function represented by "ma".
13043 * In other words, plug in "ma" in the domain or range of "map".
13044 * The result is a map that lives in the same space as "map"
13045 * except that the domain or range has been replaced by
13046 * the domain space of "ma".
13048 __isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
13049 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13051 isl_bool aligned;
13053 if (!map || !ma)
13054 goto error;
13056 aligned = isl_map_space_has_equal_params(map, ma->space);
13057 if (aligned < 0)
13058 goto error;
13059 if (aligned)
13060 return map_preimage_multi_aff(map, type, ma);
13062 if (isl_map_check_named_params(map) < 0)
13063 goto error;
13064 if (!isl_space_has_named_params(ma->space))
13065 isl_die(map->ctx, isl_error_invalid,
13066 "unaligned unnamed parameters", goto error);
13067 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
13068 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
13070 return map_preimage_multi_aff(map, type, ma);
13071 error:
13072 isl_multi_aff_free(ma);
13073 return isl_map_free(map);
13076 /* Compute the preimage of "set" under the function represented by "ma".
13077 * In other words, plug in "ma" in "set". The result is a set
13078 * that lives in the domain space of "ma".
13080 __isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
13081 __isl_take isl_multi_aff *ma)
13083 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
13086 /* Compute the preimage of the domain of "map" under the function
13087 * represented by "ma".
13088 * In other words, plug in "ma" in the domain of "map".
13089 * The result is a map that lives in the same space as "map"
13090 * except that the domain has been replaced by the domain space of "ma".
13092 __isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
13093 __isl_take isl_multi_aff *ma)
13095 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
13098 /* Compute the preimage of the range of "map" under the function
13099 * represented by "ma".
13100 * In other words, plug in "ma" in the range of "map".
13101 * The result is a map that lives in the same space as "map"
13102 * except that the range has been replaced by the domain space of "ma".
13104 __isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
13105 __isl_take isl_multi_aff *ma)
13107 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
13110 /* Compute the preimage of "map" under the function represented by "pma".
13111 * In other words, plug in "pma" in the domain or range of "map".
13112 * The result is a map that lives in the same space as "map",
13113 * except that the space of type "type" has been replaced by
13114 * the domain space of "pma".
13116 * The parameters of "map" and "pma" are assumed to have been aligned.
13118 static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
13119 __isl_take isl_map *map, enum isl_dim_type type,
13120 __isl_take isl_pw_multi_aff *pma)
13122 int i;
13123 isl_map *res;
13125 if (!pma)
13126 goto error;
13128 if (pma->n == 0) {
13129 isl_pw_multi_aff_free(pma);
13130 res = isl_map_empty(isl_map_get_space(map));
13131 isl_map_free(map);
13132 return res;
13135 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13136 isl_multi_aff_copy(pma->p[0].maff));
13137 if (type == isl_dim_in)
13138 res = isl_map_intersect_domain(res,
13139 isl_map_copy(pma->p[0].set));
13140 else
13141 res = isl_map_intersect_range(res,
13142 isl_map_copy(pma->p[0].set));
13144 for (i = 1; i < pma->n; ++i) {
13145 isl_map *res_i;
13147 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13148 isl_multi_aff_copy(pma->p[i].maff));
13149 if (type == isl_dim_in)
13150 res_i = isl_map_intersect_domain(res_i,
13151 isl_map_copy(pma->p[i].set));
13152 else
13153 res_i = isl_map_intersect_range(res_i,
13154 isl_map_copy(pma->p[i].set));
13155 res = isl_map_union(res, res_i);
13158 isl_pw_multi_aff_free(pma);
13159 isl_map_free(map);
13160 return res;
13161 error:
13162 isl_pw_multi_aff_free(pma);
13163 isl_map_free(map);
13164 return NULL;
13167 /* Compute the preimage of "map" under the function represented by "pma".
13168 * In other words, plug in "pma" in the domain or range of "map".
13169 * The result is a map that lives in the same space as "map",
13170 * except that the space of type "type" has been replaced by
13171 * the domain space of "pma".
13173 __isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
13174 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
13176 isl_bool aligned;
13178 if (!map || !pma)
13179 goto error;
13181 aligned = isl_map_space_has_equal_params(map, pma->dim);
13182 if (aligned < 0)
13183 goto error;
13184 if (aligned)
13185 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13187 if (isl_map_check_named_params(map) < 0)
13188 goto error;
13189 if (!isl_space_has_named_params(pma->dim))
13190 isl_die(map->ctx, isl_error_invalid,
13191 "unaligned unnamed parameters", goto error);
13192 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
13193 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
13195 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13196 error:
13197 isl_pw_multi_aff_free(pma);
13198 return isl_map_free(map);
13201 /* Compute the preimage of "set" under the function represented by "pma".
13202 * In other words, plug in "pma" in "set". The result is a set
13203 * that lives in the domain space of "pma".
13205 __isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
13206 __isl_take isl_pw_multi_aff *pma)
13208 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
13211 /* Compute the preimage of the domain of "map" under the function
13212 * represented by "pma".
13213 * In other words, plug in "pma" in the domain of "map".
13214 * The result is a map that lives in the same space as "map",
13215 * except that domain space has been replaced by the domain space of "pma".
13217 __isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
13218 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13220 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
13223 /* Compute the preimage of the range of "map" under the function
13224 * represented by "pma".
13225 * In other words, plug in "pma" in the range of "map".
13226 * The result is a map that lives in the same space as "map",
13227 * except that range space has been replaced by the domain space of "pma".
13229 __isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
13230 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13232 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
13235 /* Compute the preimage of "map" under the function represented by "mpa".
13236 * In other words, plug in "mpa" in the domain or range of "map".
13237 * The result is a map that lives in the same space as "map",
13238 * except that the space of type "type" has been replaced by
13239 * the domain space of "mpa".
13241 * If the map does not involve any constraints that refer to the
13242 * dimensions of the substituted space, then the only possible
13243 * effect of "mpa" on the map is to map the space to a different space.
13244 * We create a separate isl_multi_aff to effectuate this change
13245 * in order to avoid spurious splitting of the map along the pieces
13246 * of "mpa".
13248 __isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
13249 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
13251 int n;
13252 isl_pw_multi_aff *pma;
13254 if (!map || !mpa)
13255 goto error;
13257 n = isl_map_dim(map, type);
13258 if (!isl_map_involves_dims(map, type, 0, n)) {
13259 isl_space *space;
13260 isl_multi_aff *ma;
13262 space = isl_multi_pw_aff_get_space(mpa);
13263 isl_multi_pw_aff_free(mpa);
13264 ma = isl_multi_aff_zero(space);
13265 return isl_map_preimage_multi_aff(map, type, ma);
13268 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
13269 return isl_map_preimage_pw_multi_aff(map, type, pma);
13270 error:
13271 isl_map_free(map);
13272 isl_multi_pw_aff_free(mpa);
13273 return NULL;
13276 /* Compute the preimage of "map" under the function represented by "mpa".
13277 * In other words, plug in "mpa" in the domain "map".
13278 * The result is a map that lives in the same space as "map",
13279 * except that domain space has been replaced by the domain space of "mpa".
13281 __isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
13282 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
13284 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
13287 /* Compute the preimage of "set" by the function represented by "mpa".
13288 * In other words, plug in "mpa" in "set".
13290 __isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
13291 __isl_take isl_multi_pw_aff *mpa)
13293 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);
13296 /* Are the "n" "coefficients" starting at "first" of the integer division
13297 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13298 * to each other?
13299 * The "coefficient" at position 0 is the denominator.
13300 * The "coefficient" at position 1 is the constant term.
13302 isl_bool isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map *bmap1,
13303 int pos1, __isl_keep isl_basic_map *bmap2, int pos2,
13304 unsigned first, unsigned n)
13306 if (isl_basic_map_check_range(bmap1, isl_dim_div, pos1, 1) < 0)
13307 return isl_bool_error;
13308 if (isl_basic_map_check_range(bmap2, isl_dim_div, pos2, 1) < 0)
13309 return isl_bool_error;
13310 return isl_seq_eq(bmap1->div[pos1] + first,
13311 bmap2->div[pos2] + first, n);
13314 /* Are the integer division expressions at position "pos1" in "bmap1" and
13315 * "pos2" in "bmap2" equal to each other, except that the constant terms
13316 * are different?
13318 isl_bool isl_basic_map_equal_div_expr_except_constant(
13319 __isl_keep isl_basic_map *bmap1, int pos1,
13320 __isl_keep isl_basic_map *bmap2, int pos2)
13322 isl_bool equal;
13323 unsigned total;
13325 if (!bmap1 || !bmap2)
13326 return isl_bool_error;
13327 total = isl_basic_map_total_dim(bmap1);
13328 if (total != isl_basic_map_total_dim(bmap2))
13329 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
13330 "incomparable div expressions", return isl_bool_error);
13331 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13332 0, 1);
13333 if (equal < 0 || !equal)
13334 return equal;
13335 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13336 1, 1);
13337 if (equal < 0 || equal)
13338 return isl_bool_not(equal);
13339 return isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13340 2, total);
13343 /* Replace the numerator of the constant term of the integer division
13344 * expression at position "div" in "bmap" by "value".
13345 * The caller guarantees that this does not change the meaning
13346 * of the input.
13348 __isl_give isl_basic_map *isl_basic_map_set_div_expr_constant_num_si_inplace(
13349 __isl_take isl_basic_map *bmap, int div, int value)
13351 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
13352 return isl_basic_map_free(bmap);
13354 isl_int_set_si(bmap->div[div][1], value);
13356 return bmap;
13359 /* Is the point "inner" internal to inequality constraint "ineq"
13360 * of "bset"?
13361 * The point is considered to be internal to the inequality constraint,
13362 * if it strictly lies on the positive side of the inequality constraint,
13363 * or if it lies on the constraint and the constraint is lexico-positive.
13365 static isl_bool is_internal(__isl_keep isl_vec *inner,
13366 __isl_keep isl_basic_set *bset, int ineq)
13368 isl_ctx *ctx;
13369 int pos;
13370 unsigned total;
13372 if (!inner || !bset)
13373 return isl_bool_error;
13375 ctx = isl_basic_set_get_ctx(bset);
13376 isl_seq_inner_product(inner->el, bset->ineq[ineq], inner->size,
13377 &ctx->normalize_gcd);
13378 if (!isl_int_is_zero(ctx->normalize_gcd))
13379 return isl_int_is_nonneg(ctx->normalize_gcd);
13381 total = isl_basic_set_dim(bset, isl_dim_all);
13382 pos = isl_seq_first_non_zero(bset->ineq[ineq] + 1, total);
13383 return isl_int_is_pos(bset->ineq[ineq][1 + pos]);
13386 /* Tighten the inequality constraints of "bset" that are outward with respect
13387 * to the point "vec".
13388 * That is, tighten the constraints that are not satisfied by "vec".
13390 * "vec" is a point internal to some superset S of "bset" that is used
13391 * to make the subsets of S disjoint, by tightening one half of the constraints
13392 * that separate two subsets. In particular, the constraints of S
13393 * are all satisfied by "vec" and should not be tightened.
13394 * Of the internal constraints, those that have "vec" on the outside
13395 * are tightened. The shared facet is included in the adjacent subset
13396 * with the opposite constraint.
13397 * For constraints that saturate "vec", this criterion cannot be used
13398 * to determine which of the two sides should be tightened.
13399 * Instead, the sign of the first non-zero coefficient is used
13400 * to make this choice. Note that this second criterion is never used
13401 * on the constraints of S since "vec" is interior to "S".
13403 __isl_give isl_basic_set *isl_basic_set_tighten_outward(
13404 __isl_take isl_basic_set *bset, __isl_keep isl_vec *vec)
13406 int j;
13408 bset = isl_basic_set_cow(bset);
13409 if (!bset)
13410 return NULL;
13411 for (j = 0; j < bset->n_ineq; ++j) {
13412 isl_bool internal;
13414 internal = is_internal(vec, bset, j);
13415 if (internal < 0)
13416 return isl_basic_set_free(bset);
13417 if (internal)
13418 continue;
13419 isl_int_sub_ui(bset->ineq[j][0], bset->ineq[j][0], 1);
13422 return bset;
13425 /* Replace the variables x of type "type" starting at "first" in "bmap"
13426 * by x' with x = M x' with M the matrix trans.
13427 * That is, replace the corresponding coefficients c by c M.
13429 * The transformation matrix should be a square matrix.
13431 __isl_give isl_basic_map *isl_basic_map_transform_dims(
13432 __isl_take isl_basic_map *bmap, enum isl_dim_type type, unsigned first,
13433 __isl_take isl_mat *trans)
13435 unsigned pos;
13437 bmap = isl_basic_map_cow(bmap);
13438 if (!bmap || !trans)
13439 goto error;
13441 if (trans->n_row != trans->n_col)
13442 isl_die(trans->ctx, isl_error_invalid,
13443 "expecting square transformation matrix", goto error);
13444 if (first + trans->n_row > isl_basic_map_dim(bmap, type))
13445 isl_die(trans->ctx, isl_error_invalid,
13446 "oversized transformation matrix", goto error);
13448 pos = isl_basic_map_offset(bmap, type) + first;
13450 if (isl_mat_sub_transform(bmap->eq, bmap->n_eq, pos,
13451 isl_mat_copy(trans)) < 0)
13452 goto error;
13453 if (isl_mat_sub_transform(bmap->ineq, bmap->n_ineq, pos,
13454 isl_mat_copy(trans)) < 0)
13455 goto error;
13456 if (isl_mat_sub_transform(bmap->div, bmap->n_div, 1 + pos,
13457 isl_mat_copy(trans)) < 0)
13458 goto error;
13460 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
13461 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
13463 isl_mat_free(trans);
13464 return bmap;
13465 error:
13466 isl_mat_free(trans);
13467 isl_basic_map_free(bmap);
13468 return NULL;
13471 /* Replace the variables x of type "type" starting at "first" in "bset"
13472 * by x' with x = M x' with M the matrix trans.
13473 * That is, replace the corresponding coefficients c by c M.
13475 * The transformation matrix should be a square matrix.
13477 __isl_give isl_basic_set *isl_basic_set_transform_dims(
13478 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned first,
13479 __isl_take isl_mat *trans)
13481 return isl_basic_map_transform_dims(bset, type, first, trans);