isl_scheduler.c: compute_split_schedule: splice nested sequences
[isl.git] / isl_map.c
blobd62c23961efd67c294e04e3e3c370b4472637de9
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
7 * Use of this software is governed by the MIT license
9 * Written by Sven Verdoolaege, K.U.Leuven, Departement
10 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
11 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
12 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
13 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
14 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
15 * B.P. 105 - 78153 Le Chesnay, France
18 #include <string.h>
19 #include <isl_ctx_private.h>
20 #include <isl_map_private.h>
21 #include <isl_blk.h>
22 #include <isl/constraint.h>
23 #include "isl_space_private.h"
24 #include "isl_equalities.h"
25 #include <isl_lp_private.h>
26 #include <isl_seq.h>
27 #include <isl/set.h>
28 #include <isl/map.h>
29 #include <isl_reordering.h>
30 #include "isl_sample.h"
31 #include <isl_sort.h>
32 #include "isl_tab.h"
33 #include <isl/vec.h>
34 #include <isl_mat_private.h>
35 #include <isl_vec_private.h>
36 #include <isl_dim_map.h>
37 #include <isl_local_space_private.h>
38 #include <isl_aff_private.h>
39 #include <isl_options_private.h>
40 #include <isl_morph.h>
41 #include <isl_val_private.h>
42 #include <isl/deprecated/map_int.h>
43 #include <isl/deprecated/set_int.h>
45 static unsigned n(__isl_keep isl_space *dim, enum isl_dim_type type)
47 switch (type) {
48 case isl_dim_param: return dim->nparam;
49 case isl_dim_in: return dim->n_in;
50 case isl_dim_out: return dim->n_out;
51 case isl_dim_all: return dim->nparam + dim->n_in + dim->n_out;
52 default: return 0;
56 static unsigned pos(__isl_keep isl_space *dim, enum isl_dim_type type)
58 switch (type) {
59 case isl_dim_param: return 1;
60 case isl_dim_in: return 1 + dim->nparam;
61 case isl_dim_out: return 1 + dim->nparam + dim->n_in;
62 default: return 0;
66 unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap,
67 enum isl_dim_type type)
69 if (!bmap)
70 return 0;
71 switch (type) {
72 case isl_dim_cst: return 1;
73 case isl_dim_param:
74 case isl_dim_in:
75 case isl_dim_out: return isl_space_dim(bmap->dim, type);
76 case isl_dim_div: return bmap->n_div;
77 case isl_dim_all: return isl_basic_map_total_dim(bmap);
78 default: return 0;
82 unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type)
84 return map ? n(map->dim, type) : 0;
87 unsigned isl_set_dim(__isl_keep isl_set *set, enum isl_dim_type type)
89 return set ? n(set->dim, type) : 0;
92 unsigned isl_basic_map_offset(struct isl_basic_map *bmap,
93 enum isl_dim_type type)
95 isl_space *dim = bmap->dim;
96 switch (type) {
97 case isl_dim_cst: return 0;
98 case isl_dim_param: return 1;
99 case isl_dim_in: return 1 + dim->nparam;
100 case isl_dim_out: return 1 + dim->nparam + dim->n_in;
101 case isl_dim_div: return 1 + dim->nparam + dim->n_in + dim->n_out;
102 default: return 0;
106 unsigned isl_basic_set_offset(struct isl_basic_set *bset,
107 enum isl_dim_type type)
109 return isl_basic_map_offset(bset, type);
112 static unsigned map_offset(struct isl_map *map, enum isl_dim_type type)
114 return pos(map->dim, type);
117 unsigned isl_basic_set_dim(__isl_keep isl_basic_set *bset,
118 enum isl_dim_type type)
120 return isl_basic_map_dim(bset, type);
123 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set *bset)
125 return isl_basic_set_dim(bset, isl_dim_set);
128 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set *bset)
130 return isl_basic_set_dim(bset, isl_dim_param);
133 unsigned isl_basic_set_total_dim(const struct isl_basic_set *bset)
135 if (!bset)
136 return 0;
137 return isl_space_dim(bset->dim, isl_dim_all) + bset->n_div;
140 unsigned isl_set_n_dim(__isl_keep isl_set *set)
142 return isl_set_dim(set, isl_dim_set);
145 unsigned isl_set_n_param(__isl_keep isl_set *set)
147 return isl_set_dim(set, isl_dim_param);
150 unsigned isl_basic_map_n_in(const struct isl_basic_map *bmap)
152 return bmap ? bmap->dim->n_in : 0;
155 unsigned isl_basic_map_n_out(const struct isl_basic_map *bmap)
157 return bmap ? bmap->dim->n_out : 0;
160 unsigned isl_basic_map_n_param(const struct isl_basic_map *bmap)
162 return bmap ? bmap->dim->nparam : 0;
165 unsigned isl_basic_map_n_div(const struct isl_basic_map *bmap)
167 return bmap ? bmap->n_div : 0;
170 unsigned isl_basic_map_total_dim(const struct isl_basic_map *bmap)
172 return bmap ? isl_space_dim(bmap->dim, isl_dim_all) + bmap->n_div : 0;
175 unsigned isl_map_n_in(const struct isl_map *map)
177 return map ? map->dim->n_in : 0;
180 unsigned isl_map_n_out(const struct isl_map *map)
182 return map ? map->dim->n_out : 0;
185 unsigned isl_map_n_param(const struct isl_map *map)
187 return map ? map->dim->nparam : 0;
190 int isl_map_compatible_domain(struct isl_map *map, struct isl_set *set)
192 int m;
193 if (!map || !set)
194 return -1;
195 m = isl_space_match(map->dim, isl_dim_param, set->dim, isl_dim_param);
196 if (m < 0 || !m)
197 return m;
198 return isl_space_tuple_is_equal(map->dim, isl_dim_in,
199 set->dim, isl_dim_set);
202 int isl_basic_map_compatible_domain(struct isl_basic_map *bmap,
203 struct isl_basic_set *bset)
205 int m;
206 if (!bmap || !bset)
207 return -1;
208 m = isl_space_match(bmap->dim, isl_dim_param, bset->dim, isl_dim_param);
209 if (m < 0 || !m)
210 return m;
211 return isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
212 bset->dim, isl_dim_set);
215 int isl_map_compatible_range(__isl_keep isl_map *map, __isl_keep isl_set *set)
217 int m;
218 if (!map || !set)
219 return -1;
220 m = isl_space_match(map->dim, isl_dim_param, set->dim, isl_dim_param);
221 if (m < 0 || !m)
222 return m;
223 return isl_space_tuple_is_equal(map->dim, isl_dim_out,
224 set->dim, isl_dim_set);
227 int isl_basic_map_compatible_range(struct isl_basic_map *bmap,
228 struct isl_basic_set *bset)
230 int m;
231 if (!bmap || !bset)
232 return -1;
233 m = isl_space_match(bmap->dim, isl_dim_param, bset->dim, isl_dim_param);
234 if (m < 0 || !m)
235 return m;
236 return isl_space_tuple_is_equal(bmap->dim, isl_dim_out,
237 bset->dim, isl_dim_set);
240 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap)
242 return bmap ? bmap->ctx : NULL;
245 isl_ctx *isl_basic_set_get_ctx(__isl_keep isl_basic_set *bset)
247 return bset ? bset->ctx : NULL;
250 isl_ctx *isl_map_get_ctx(__isl_keep isl_map *map)
252 return map ? map->ctx : NULL;
255 isl_ctx *isl_set_get_ctx(__isl_keep isl_set *set)
257 return set ? set->ctx : NULL;
260 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap)
262 if (!bmap)
263 return NULL;
264 return isl_space_copy(bmap->dim);
267 __isl_give isl_space *isl_basic_set_get_space(__isl_keep isl_basic_set *bset)
269 if (!bset)
270 return NULL;
271 return isl_space_copy(bset->dim);
274 /* Extract the divs in "bmap" as a matrix.
276 __isl_give isl_mat *isl_basic_map_get_divs(__isl_keep isl_basic_map *bmap)
278 int i;
279 isl_ctx *ctx;
280 isl_mat *div;
281 unsigned total;
282 unsigned cols;
284 if (!bmap)
285 return NULL;
287 ctx = isl_basic_map_get_ctx(bmap);
288 total = isl_space_dim(bmap->dim, isl_dim_all);
289 cols = 1 + 1 + total + bmap->n_div;
290 div = isl_mat_alloc(ctx, bmap->n_div, cols);
291 if (!div)
292 return NULL;
294 for (i = 0; i < bmap->n_div; ++i)
295 isl_seq_cpy(div->row[i], bmap->div[i], cols);
297 return div;
300 /* Extract the divs in "bset" as a matrix.
302 __isl_give isl_mat *isl_basic_set_get_divs(__isl_keep isl_basic_set *bset)
304 return isl_basic_map_get_divs(bset);
307 __isl_give isl_local_space *isl_basic_map_get_local_space(
308 __isl_keep isl_basic_map *bmap)
310 isl_mat *div;
312 if (!bmap)
313 return NULL;
315 div = isl_basic_map_get_divs(bmap);
316 return isl_local_space_alloc_div(isl_space_copy(bmap->dim), div);
319 __isl_give isl_local_space *isl_basic_set_get_local_space(
320 __isl_keep isl_basic_set *bset)
322 return isl_basic_map_get_local_space(bset);
325 /* For each known div d = floor(f/m), add the constraints
327 * f - m d >= 0
328 * -(f-(n-1)) + m d >= 0
330 * Do not finalize the result.
332 static __isl_give isl_basic_map *add_known_div_constraints(
333 __isl_take isl_basic_map *bmap)
335 int i;
336 unsigned n_div;
338 if (!bmap)
339 return NULL;
340 n_div = isl_basic_map_dim(bmap, isl_dim_div);
341 if (n_div == 0)
342 return bmap;
343 bmap = isl_basic_map_cow(bmap);
344 bmap = isl_basic_map_extend_constraints(bmap, 0, 2 * n_div);
345 if (!bmap)
346 return NULL;
347 for (i = 0; i < n_div; ++i) {
348 if (isl_int_is_zero(bmap->div[i][0]))
349 continue;
350 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
351 return isl_basic_map_free(bmap);
354 return bmap;
357 __isl_give isl_basic_map *isl_basic_map_from_local_space(
358 __isl_take isl_local_space *ls)
360 int i;
361 int n_div;
362 isl_basic_map *bmap;
364 if (!ls)
365 return NULL;
367 n_div = isl_local_space_dim(ls, isl_dim_div);
368 bmap = isl_basic_map_alloc_space(isl_local_space_get_space(ls),
369 n_div, 0, 2 * n_div);
371 for (i = 0; i < n_div; ++i)
372 if (isl_basic_map_alloc_div(bmap) < 0)
373 goto error;
375 for (i = 0; i < n_div; ++i)
376 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
377 bmap = add_known_div_constraints(bmap);
379 isl_local_space_free(ls);
380 return bmap;
381 error:
382 isl_local_space_free(ls);
383 isl_basic_map_free(bmap);
384 return NULL;
387 __isl_give isl_basic_set *isl_basic_set_from_local_space(
388 __isl_take isl_local_space *ls)
390 return isl_basic_map_from_local_space(ls);
393 __isl_give isl_space *isl_map_get_space(__isl_keep isl_map *map)
395 if (!map)
396 return NULL;
397 return isl_space_copy(map->dim);
400 __isl_give isl_space *isl_set_get_space(__isl_keep isl_set *set)
402 if (!set)
403 return NULL;
404 return isl_space_copy(set->dim);
407 __isl_give isl_basic_map *isl_basic_map_set_tuple_name(
408 __isl_take isl_basic_map *bmap, enum isl_dim_type type, const char *s)
410 bmap = isl_basic_map_cow(bmap);
411 if (!bmap)
412 return NULL;
413 bmap->dim = isl_space_set_tuple_name(bmap->dim, type, s);
414 if (!bmap->dim)
415 goto error;
416 bmap = isl_basic_map_finalize(bmap);
417 return bmap;
418 error:
419 isl_basic_map_free(bmap);
420 return NULL;
423 __isl_give isl_basic_set *isl_basic_set_set_tuple_name(
424 __isl_take isl_basic_set *bset, const char *s)
426 return isl_basic_map_set_tuple_name(bset, isl_dim_set, s);
429 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map *bmap,
430 enum isl_dim_type type)
432 return bmap ? isl_space_get_tuple_name(bmap->dim, type) : NULL;
435 __isl_give isl_map *isl_map_set_tuple_name(__isl_take isl_map *map,
436 enum isl_dim_type type, const char *s)
438 int i;
440 map = isl_map_cow(map);
441 if (!map)
442 return NULL;
444 map->dim = isl_space_set_tuple_name(map->dim, type, s);
445 if (!map->dim)
446 goto error;
448 for (i = 0; i < map->n; ++i) {
449 map->p[i] = isl_basic_map_set_tuple_name(map->p[i], type, s);
450 if (!map->p[i])
451 goto error;
454 return map;
455 error:
456 isl_map_free(map);
457 return NULL;
460 /* Replace the identifier of the tuple of type "type" by "id".
462 __isl_give isl_basic_map *isl_basic_map_set_tuple_id(
463 __isl_take isl_basic_map *bmap,
464 enum isl_dim_type type, __isl_take isl_id *id)
466 bmap = isl_basic_map_cow(bmap);
467 if (!bmap)
468 goto error;
469 bmap->dim = isl_space_set_tuple_id(bmap->dim, type, id);
470 if (!bmap->dim)
471 return isl_basic_map_free(bmap);
472 bmap = isl_basic_map_finalize(bmap);
473 return bmap;
474 error:
475 isl_id_free(id);
476 return NULL;
479 /* Replace the identifier of the tuple by "id".
481 __isl_give isl_basic_set *isl_basic_set_set_tuple_id(
482 __isl_take isl_basic_set *bset, __isl_take isl_id *id)
484 return isl_basic_map_set_tuple_id(bset, isl_dim_set, id);
487 /* Does the input or output tuple have a name?
489 isl_bool isl_map_has_tuple_name(__isl_keep isl_map *map, enum isl_dim_type type)
491 return map ? isl_space_has_tuple_name(map->dim, type) : isl_bool_error;
494 const char *isl_map_get_tuple_name(__isl_keep isl_map *map,
495 enum isl_dim_type type)
497 return map ? isl_space_get_tuple_name(map->dim, type) : NULL;
500 __isl_give isl_set *isl_set_set_tuple_name(__isl_take isl_set *set,
501 const char *s)
503 return (isl_set *)isl_map_set_tuple_name((isl_map *)set, isl_dim_set, s);
506 __isl_give isl_map *isl_map_set_tuple_id(__isl_take isl_map *map,
507 enum isl_dim_type type, __isl_take isl_id *id)
509 map = isl_map_cow(map);
510 if (!map)
511 goto error;
513 map->dim = isl_space_set_tuple_id(map->dim, type, id);
515 return isl_map_reset_space(map, isl_space_copy(map->dim));
516 error:
517 isl_id_free(id);
518 return NULL;
521 __isl_give isl_set *isl_set_set_tuple_id(__isl_take isl_set *set,
522 __isl_take isl_id *id)
524 return isl_map_set_tuple_id(set, isl_dim_set, id);
527 __isl_give isl_map *isl_map_reset_tuple_id(__isl_take isl_map *map,
528 enum isl_dim_type type)
530 map = isl_map_cow(map);
531 if (!map)
532 return NULL;
534 map->dim = isl_space_reset_tuple_id(map->dim, type);
536 return isl_map_reset_space(map, isl_space_copy(map->dim));
539 __isl_give isl_set *isl_set_reset_tuple_id(__isl_take isl_set *set)
541 return isl_map_reset_tuple_id(set, isl_dim_set);
544 isl_bool isl_map_has_tuple_id(__isl_keep isl_map *map, enum isl_dim_type type)
546 return map ? isl_space_has_tuple_id(map->dim, type) : isl_bool_error;
549 __isl_give isl_id *isl_map_get_tuple_id(__isl_keep isl_map *map,
550 enum isl_dim_type type)
552 return map ? isl_space_get_tuple_id(map->dim, type) : NULL;
555 isl_bool isl_set_has_tuple_id(__isl_keep isl_set *set)
557 return isl_map_has_tuple_id(set, isl_dim_set);
560 __isl_give isl_id *isl_set_get_tuple_id(__isl_keep isl_set *set)
562 return isl_map_get_tuple_id(set, isl_dim_set);
565 /* Does the set tuple have a name?
567 isl_bool isl_set_has_tuple_name(__isl_keep isl_set *set)
569 if (!set)
570 return isl_bool_error;
571 return isl_space_has_tuple_name(set->dim, isl_dim_set);
575 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set *bset)
577 return bset ? isl_space_get_tuple_name(bset->dim, isl_dim_set) : NULL;
580 const char *isl_set_get_tuple_name(__isl_keep isl_set *set)
582 return set ? isl_space_get_tuple_name(set->dim, isl_dim_set) : NULL;
585 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map *bmap,
586 enum isl_dim_type type, unsigned pos)
588 return bmap ? isl_space_get_dim_name(bmap->dim, type, pos) : NULL;
591 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set *bset,
592 enum isl_dim_type type, unsigned pos)
594 return bset ? isl_space_get_dim_name(bset->dim, type, pos) : NULL;
597 /* Does the given dimension have a name?
599 isl_bool isl_map_has_dim_name(__isl_keep isl_map *map,
600 enum isl_dim_type type, unsigned pos)
602 if (!map)
603 return isl_bool_error;
604 return isl_space_has_dim_name(map->dim, type, pos);
607 const char *isl_map_get_dim_name(__isl_keep isl_map *map,
608 enum isl_dim_type type, unsigned pos)
610 return map ? isl_space_get_dim_name(map->dim, type, pos) : NULL;
613 const char *isl_set_get_dim_name(__isl_keep isl_set *set,
614 enum isl_dim_type type, unsigned pos)
616 return set ? isl_space_get_dim_name(set->dim, type, pos) : NULL;
619 /* Does the given dimension have a name?
621 isl_bool isl_set_has_dim_name(__isl_keep isl_set *set,
622 enum isl_dim_type type, unsigned pos)
624 if (!set)
625 return isl_bool_error;
626 return isl_space_has_dim_name(set->dim, type, pos);
629 __isl_give isl_basic_map *isl_basic_map_set_dim_name(
630 __isl_take isl_basic_map *bmap,
631 enum isl_dim_type type, unsigned pos, const char *s)
633 bmap = isl_basic_map_cow(bmap);
634 if (!bmap)
635 return NULL;
636 bmap->dim = isl_space_set_dim_name(bmap->dim, type, pos, s);
637 if (!bmap->dim)
638 goto error;
639 return isl_basic_map_finalize(bmap);
640 error:
641 isl_basic_map_free(bmap);
642 return NULL;
645 __isl_give isl_map *isl_map_set_dim_name(__isl_take isl_map *map,
646 enum isl_dim_type type, unsigned pos, const char *s)
648 int i;
650 map = isl_map_cow(map);
651 if (!map)
652 return NULL;
654 map->dim = isl_space_set_dim_name(map->dim, type, pos, s);
655 if (!map->dim)
656 goto error;
658 for (i = 0; i < map->n; ++i) {
659 map->p[i] = isl_basic_map_set_dim_name(map->p[i], type, pos, s);
660 if (!map->p[i])
661 goto error;
664 return map;
665 error:
666 isl_map_free(map);
667 return NULL;
670 __isl_give isl_basic_set *isl_basic_set_set_dim_name(
671 __isl_take isl_basic_set *bset,
672 enum isl_dim_type type, unsigned pos, const char *s)
674 return (isl_basic_set *)isl_basic_map_set_dim_name(
675 (isl_basic_map *)bset, type, pos, s);
678 __isl_give isl_set *isl_set_set_dim_name(__isl_take isl_set *set,
679 enum isl_dim_type type, unsigned pos, const char *s)
681 return (isl_set *)isl_map_set_dim_name((isl_map *)set, type, pos, s);
684 isl_bool isl_basic_map_has_dim_id(__isl_keep isl_basic_map *bmap,
685 enum isl_dim_type type, unsigned pos)
687 if (!bmap)
688 return isl_bool_error;
689 return isl_space_has_dim_id(bmap->dim, type, pos);
692 __isl_give isl_id *isl_basic_set_get_dim_id(__isl_keep isl_basic_set *bset,
693 enum isl_dim_type type, unsigned pos)
695 return bset ? isl_space_get_dim_id(bset->dim, type, pos) : NULL;
698 isl_bool isl_map_has_dim_id(__isl_keep isl_map *map,
699 enum isl_dim_type type, unsigned pos)
701 return map ? isl_space_has_dim_id(map->dim, type, pos) : isl_bool_error;
704 __isl_give isl_id *isl_map_get_dim_id(__isl_keep isl_map *map,
705 enum isl_dim_type type, unsigned pos)
707 return map ? isl_space_get_dim_id(map->dim, type, pos) : NULL;
710 isl_bool isl_set_has_dim_id(__isl_keep isl_set *set,
711 enum isl_dim_type type, unsigned pos)
713 return isl_map_has_dim_id(set, type, pos);
716 __isl_give isl_id *isl_set_get_dim_id(__isl_keep isl_set *set,
717 enum isl_dim_type type, unsigned pos)
719 return isl_map_get_dim_id(set, type, pos);
722 __isl_give isl_map *isl_map_set_dim_id(__isl_take isl_map *map,
723 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
725 map = isl_map_cow(map);
726 if (!map)
727 goto error;
729 map->dim = isl_space_set_dim_id(map->dim, type, pos, id);
731 return isl_map_reset_space(map, isl_space_copy(map->dim));
732 error:
733 isl_id_free(id);
734 return NULL;
737 __isl_give isl_set *isl_set_set_dim_id(__isl_take isl_set *set,
738 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
740 return isl_map_set_dim_id(set, type, pos, id);
743 int isl_map_find_dim_by_id(__isl_keep isl_map *map, enum isl_dim_type type,
744 __isl_keep isl_id *id)
746 if (!map)
747 return -1;
748 return isl_space_find_dim_by_id(map->dim, type, id);
751 int isl_set_find_dim_by_id(__isl_keep isl_set *set, enum isl_dim_type type,
752 __isl_keep isl_id *id)
754 return isl_map_find_dim_by_id(set, type, id);
757 /* Return the position of the dimension of the given type and name
758 * in "bmap".
759 * Return -1 if no such dimension can be found.
761 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map *bmap,
762 enum isl_dim_type type, const char *name)
764 if (!bmap)
765 return -1;
766 return isl_space_find_dim_by_name(bmap->dim, type, name);
769 int isl_map_find_dim_by_name(__isl_keep isl_map *map, enum isl_dim_type type,
770 const char *name)
772 if (!map)
773 return -1;
774 return isl_space_find_dim_by_name(map->dim, type, name);
777 int isl_set_find_dim_by_name(__isl_keep isl_set *set, enum isl_dim_type type,
778 const char *name)
780 return isl_map_find_dim_by_name(set, type, name);
783 /* Reset the user pointer on all identifiers of parameters and tuples
784 * of the space of "map".
786 __isl_give isl_map *isl_map_reset_user(__isl_take isl_map *map)
788 isl_space *space;
790 space = isl_map_get_space(map);
791 space = isl_space_reset_user(space);
792 map = isl_map_reset_space(map, space);
794 return map;
797 /* Reset the user pointer on all identifiers of parameters and tuples
798 * of the space of "set".
800 __isl_give isl_set *isl_set_reset_user(__isl_take isl_set *set)
802 return isl_map_reset_user(set);
805 int isl_basic_map_is_rational(__isl_keep isl_basic_map *bmap)
807 if (!bmap)
808 return -1;
809 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
812 int isl_basic_set_is_rational(__isl_keep isl_basic_set *bset)
814 return isl_basic_map_is_rational(bset);
817 /* Does "bmap" contain any rational points?
819 * If "bmap" has an equality for each dimension, equating the dimension
820 * to an integer constant, then it has no rational points, even if it
821 * is marked as rational.
823 int isl_basic_map_has_rational(__isl_keep isl_basic_map *bmap)
825 int has_rational = 1;
826 unsigned total;
828 if (!bmap)
829 return -1;
830 if (isl_basic_map_plain_is_empty(bmap))
831 return 0;
832 if (!isl_basic_map_is_rational(bmap))
833 return 0;
834 bmap = isl_basic_map_copy(bmap);
835 bmap = isl_basic_map_implicit_equalities(bmap);
836 if (!bmap)
837 return -1;
838 total = isl_basic_map_total_dim(bmap);
839 if (bmap->n_eq == total) {
840 int i, j;
841 for (i = 0; i < bmap->n_eq; ++i) {
842 j = isl_seq_first_non_zero(bmap->eq[i] + 1, total);
843 if (j < 0)
844 break;
845 if (!isl_int_is_one(bmap->eq[i][1 + j]) &&
846 !isl_int_is_negone(bmap->eq[i][1 + j]))
847 break;
848 j = isl_seq_first_non_zero(bmap->eq[i] + 1 + j + 1,
849 total - j - 1);
850 if (j >= 0)
851 break;
853 if (i == bmap->n_eq)
854 has_rational = 0;
856 isl_basic_map_free(bmap);
858 return has_rational;
861 /* Does "map" contain any rational points?
863 int isl_map_has_rational(__isl_keep isl_map *map)
865 int i;
866 int has_rational;
868 if (!map)
869 return -1;
870 for (i = 0; i < map->n; ++i) {
871 has_rational = isl_basic_map_has_rational(map->p[i]);
872 if (has_rational < 0)
873 return -1;
874 if (has_rational)
875 return 1;
877 return 0;
880 /* Does "set" contain any rational points?
882 int isl_set_has_rational(__isl_keep isl_set *set)
884 return isl_map_has_rational(set);
887 /* Is this basic set a parameter domain?
889 int isl_basic_set_is_params(__isl_keep isl_basic_set *bset)
891 if (!bset)
892 return -1;
893 return isl_space_is_params(bset->dim);
896 /* Is this set a parameter domain?
898 isl_bool isl_set_is_params(__isl_keep isl_set *set)
900 if (!set)
901 return isl_bool_error;
902 return isl_space_is_params(set->dim);
905 /* Is this map actually a parameter domain?
906 * Users should never call this function. Outside of isl,
907 * a map can never be a parameter domain.
909 int isl_map_is_params(__isl_keep isl_map *map)
911 if (!map)
912 return -1;
913 return isl_space_is_params(map->dim);
916 static struct isl_basic_map *basic_map_init(struct isl_ctx *ctx,
917 struct isl_basic_map *bmap, unsigned extra,
918 unsigned n_eq, unsigned n_ineq)
920 int i;
921 size_t row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + extra;
923 bmap->ctx = ctx;
924 isl_ctx_ref(ctx);
926 bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
927 if (isl_blk_is_error(bmap->block))
928 goto error;
930 bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
931 if ((n_ineq + n_eq) && !bmap->ineq)
932 goto error;
934 if (extra == 0) {
935 bmap->block2 = isl_blk_empty();
936 bmap->div = NULL;
937 } else {
938 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
939 if (isl_blk_is_error(bmap->block2))
940 goto error;
942 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
943 if (!bmap->div)
944 goto error;
947 for (i = 0; i < n_ineq + n_eq; ++i)
948 bmap->ineq[i] = bmap->block.data + i * row_size;
950 for (i = 0; i < extra; ++i)
951 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
953 bmap->ref = 1;
954 bmap->flags = 0;
955 bmap->c_size = n_eq + n_ineq;
956 bmap->eq = bmap->ineq + n_ineq;
957 bmap->extra = extra;
958 bmap->n_eq = 0;
959 bmap->n_ineq = 0;
960 bmap->n_div = 0;
961 bmap->sample = NULL;
963 return bmap;
964 error:
965 isl_basic_map_free(bmap);
966 return NULL;
969 struct isl_basic_set *isl_basic_set_alloc(struct isl_ctx *ctx,
970 unsigned nparam, unsigned dim, unsigned extra,
971 unsigned n_eq, unsigned n_ineq)
973 struct isl_basic_map *bmap;
974 isl_space *space;
976 space = isl_space_set_alloc(ctx, nparam, dim);
977 if (!space)
978 return NULL;
980 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
981 return (struct isl_basic_set *)bmap;
984 struct isl_basic_set *isl_basic_set_alloc_space(__isl_take isl_space *dim,
985 unsigned extra, unsigned n_eq, unsigned n_ineq)
987 struct isl_basic_map *bmap;
988 if (!dim)
989 return NULL;
990 isl_assert(dim->ctx, dim->n_in == 0, goto error);
991 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
992 return (struct isl_basic_set *)bmap;
993 error:
994 isl_space_free(dim);
995 return NULL;
998 struct isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *dim,
999 unsigned extra, unsigned n_eq, unsigned n_ineq)
1001 struct isl_basic_map *bmap;
1003 if (!dim)
1004 return NULL;
1005 bmap = isl_calloc_type(dim->ctx, struct isl_basic_map);
1006 if (!bmap)
1007 goto error;
1008 bmap->dim = dim;
1010 return basic_map_init(dim->ctx, bmap, extra, n_eq, n_ineq);
1011 error:
1012 isl_space_free(dim);
1013 return NULL;
1016 struct isl_basic_map *isl_basic_map_alloc(struct isl_ctx *ctx,
1017 unsigned nparam, unsigned in, unsigned out, unsigned extra,
1018 unsigned n_eq, unsigned n_ineq)
1020 struct isl_basic_map *bmap;
1021 isl_space *dim;
1023 dim = isl_space_alloc(ctx, nparam, in, out);
1024 if (!dim)
1025 return NULL;
1027 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1028 return bmap;
1031 static void dup_constraints(
1032 struct isl_basic_map *dst, struct isl_basic_map *src)
1034 int i;
1035 unsigned total = isl_basic_map_total_dim(src);
1037 for (i = 0; i < src->n_eq; ++i) {
1038 int j = isl_basic_map_alloc_equality(dst);
1039 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
1042 for (i = 0; i < src->n_ineq; ++i) {
1043 int j = isl_basic_map_alloc_inequality(dst);
1044 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
1047 for (i = 0; i < src->n_div; ++i) {
1048 int j = isl_basic_map_alloc_div(dst);
1049 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
1051 ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
1054 struct isl_basic_map *isl_basic_map_dup(struct isl_basic_map *bmap)
1056 struct isl_basic_map *dup;
1058 if (!bmap)
1059 return NULL;
1060 dup = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
1061 bmap->n_div, bmap->n_eq, bmap->n_ineq);
1062 if (!dup)
1063 return NULL;
1064 dup_constraints(dup, bmap);
1065 dup->flags = bmap->flags;
1066 dup->sample = isl_vec_copy(bmap->sample);
1067 return dup;
1070 struct isl_basic_set *isl_basic_set_dup(struct isl_basic_set *bset)
1072 struct isl_basic_map *dup;
1074 dup = isl_basic_map_dup((struct isl_basic_map *)bset);
1075 return (struct isl_basic_set *)dup;
1078 struct isl_basic_set *isl_basic_set_copy(struct isl_basic_set *bset)
1080 if (!bset)
1081 return NULL;
1083 if (ISL_F_ISSET(bset, ISL_BASIC_SET_FINAL)) {
1084 bset->ref++;
1085 return bset;
1087 return isl_basic_set_dup(bset);
1090 struct isl_set *isl_set_copy(struct isl_set *set)
1092 if (!set)
1093 return NULL;
1095 set->ref++;
1096 return set;
1099 struct isl_basic_map *isl_basic_map_copy(struct isl_basic_map *bmap)
1101 if (!bmap)
1102 return NULL;
1104 if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
1105 bmap->ref++;
1106 return bmap;
1108 bmap = isl_basic_map_dup(bmap);
1109 if (bmap)
1110 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1111 return bmap;
1114 struct isl_map *isl_map_copy(struct isl_map *map)
1116 if (!map)
1117 return NULL;
1119 map->ref++;
1120 return map;
1123 __isl_null isl_basic_map *isl_basic_map_free(__isl_take isl_basic_map *bmap)
1125 if (!bmap)
1126 return NULL;
1128 if (--bmap->ref > 0)
1129 return NULL;
1131 isl_ctx_deref(bmap->ctx);
1132 free(bmap->div);
1133 isl_blk_free(bmap->ctx, bmap->block2);
1134 free(bmap->ineq);
1135 isl_blk_free(bmap->ctx, bmap->block);
1136 isl_vec_free(bmap->sample);
1137 isl_space_free(bmap->dim);
1138 free(bmap);
1140 return NULL;
1143 __isl_null isl_basic_set *isl_basic_set_free(__isl_take isl_basic_set *bset)
1145 return isl_basic_map_free((struct isl_basic_map *)bset);
1148 static int room_for_con(struct isl_basic_map *bmap, unsigned n)
1150 return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
1153 __isl_give isl_map *isl_map_align_params_map_map_and(
1154 __isl_take isl_map *map1, __isl_take isl_map *map2,
1155 __isl_give isl_map *(*fn)(__isl_take isl_map *map1,
1156 __isl_take isl_map *map2))
1158 if (!map1 || !map2)
1159 goto error;
1160 if (isl_space_match(map1->dim, isl_dim_param, map2->dim, isl_dim_param))
1161 return fn(map1, map2);
1162 if (!isl_space_has_named_params(map1->dim) ||
1163 !isl_space_has_named_params(map2->dim))
1164 isl_die(map1->ctx, isl_error_invalid,
1165 "unaligned unnamed parameters", goto error);
1166 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1167 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1168 return fn(map1, map2);
1169 error:
1170 isl_map_free(map1);
1171 isl_map_free(map2);
1172 return NULL;
1175 isl_bool isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
1176 __isl_keep isl_map *map2,
1177 isl_bool (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
1179 isl_bool r;
1181 if (!map1 || !map2)
1182 return isl_bool_error;
1183 if (isl_space_match(map1->dim, isl_dim_param, map2->dim, isl_dim_param))
1184 return fn(map1, map2);
1185 if (!isl_space_has_named_params(map1->dim) ||
1186 !isl_space_has_named_params(map2->dim))
1187 isl_die(map1->ctx, isl_error_invalid,
1188 "unaligned unnamed parameters", return isl_bool_error);
1189 map1 = isl_map_copy(map1);
1190 map2 = isl_map_copy(map2);
1191 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1192 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1193 r = fn(map1, map2);
1194 isl_map_free(map1);
1195 isl_map_free(map2);
1196 return r;
1199 int isl_basic_map_alloc_equality(struct isl_basic_map *bmap)
1201 struct isl_ctx *ctx;
1202 if (!bmap)
1203 return -1;
1204 ctx = bmap->ctx;
1205 isl_assert(ctx, room_for_con(bmap, 1), return -1);
1206 isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
1207 return -1);
1208 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1209 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1210 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1211 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1212 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1213 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1214 isl_int *t;
1215 int j = isl_basic_map_alloc_inequality(bmap);
1216 if (j < 0)
1217 return -1;
1218 t = bmap->ineq[j];
1219 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1220 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1221 bmap->eq[-1] = t;
1222 bmap->n_eq++;
1223 bmap->n_ineq--;
1224 bmap->eq--;
1225 return 0;
1227 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
1228 bmap->extra - bmap->n_div);
1229 return bmap->n_eq++;
1232 int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
1234 return isl_basic_map_alloc_equality((struct isl_basic_map *)bset);
1237 int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
1239 if (!bmap)
1240 return -1;
1241 isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
1242 bmap->n_eq -= n;
1243 return 0;
1246 int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
1248 return isl_basic_map_free_equality((struct isl_basic_map *)bset, n);
1251 int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
1253 isl_int *t;
1254 if (!bmap)
1255 return -1;
1256 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1258 if (pos != bmap->n_eq - 1) {
1259 t = bmap->eq[pos];
1260 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
1261 bmap->eq[bmap->n_eq - 1] = t;
1263 bmap->n_eq--;
1264 return 0;
1267 int isl_basic_set_drop_equality(struct isl_basic_set *bset, unsigned pos)
1269 return isl_basic_map_drop_equality((struct isl_basic_map *)bset, pos);
1272 /* Turn inequality "pos" of "bmap" into an equality.
1274 * In particular, we move the inequality in front of the equalities
1275 * and move the last inequality in the position of the moved inequality.
1276 * Note that isl_tab_make_equalities_explicit depends on this particular
1277 * change in the ordering of the constraints.
1279 void isl_basic_map_inequality_to_equality(
1280 struct isl_basic_map *bmap, unsigned pos)
1282 isl_int *t;
1284 t = bmap->ineq[pos];
1285 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1286 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1287 bmap->eq[-1] = t;
1288 bmap->n_eq++;
1289 bmap->n_ineq--;
1290 bmap->eq--;
1291 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1292 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1293 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1294 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1297 static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
1299 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1302 int isl_basic_map_alloc_inequality(struct isl_basic_map *bmap)
1304 struct isl_ctx *ctx;
1305 if (!bmap)
1306 return -1;
1307 ctx = bmap->ctx;
1308 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1309 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1310 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1311 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1312 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1313 isl_seq_clr(bmap->ineq[bmap->n_ineq] +
1314 1 + isl_basic_map_total_dim(bmap),
1315 bmap->extra - bmap->n_div);
1316 return bmap->n_ineq++;
1319 int isl_basic_set_alloc_inequality(struct isl_basic_set *bset)
1321 return isl_basic_map_alloc_inequality((struct isl_basic_map *)bset);
1324 int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
1326 if (!bmap)
1327 return -1;
1328 isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
1329 bmap->n_ineq -= n;
1330 return 0;
1333 int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
1335 return isl_basic_map_free_inequality((struct isl_basic_map *)bset, n);
1338 int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
1340 isl_int *t;
1341 if (!bmap)
1342 return -1;
1343 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1345 if (pos != bmap->n_ineq - 1) {
1346 t = bmap->ineq[pos];
1347 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1348 bmap->ineq[bmap->n_ineq - 1] = t;
1349 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1351 bmap->n_ineq--;
1352 return 0;
1355 int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
1357 return isl_basic_map_drop_inequality((struct isl_basic_map *)bset, pos);
1360 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1361 isl_int *eq)
1363 int k;
1365 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1366 if (!bmap)
1367 return NULL;
1368 k = isl_basic_map_alloc_equality(bmap);
1369 if (k < 0)
1370 goto error;
1371 isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
1372 return bmap;
1373 error:
1374 isl_basic_map_free(bmap);
1375 return NULL;
1378 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1379 isl_int *eq)
1381 return (isl_basic_set *)
1382 isl_basic_map_add_eq((isl_basic_map *)bset, eq);
1385 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1386 isl_int *ineq)
1388 int k;
1390 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1391 if (!bmap)
1392 return NULL;
1393 k = isl_basic_map_alloc_inequality(bmap);
1394 if (k < 0)
1395 goto error;
1396 isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
1397 return bmap;
1398 error:
1399 isl_basic_map_free(bmap);
1400 return NULL;
1403 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1404 isl_int *ineq)
1406 return (isl_basic_set *)
1407 isl_basic_map_add_ineq((isl_basic_map *)bset, ineq);
1410 int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
1412 if (!bmap)
1413 return -1;
1414 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1415 isl_seq_clr(bmap->div[bmap->n_div] +
1416 1 + 1 + isl_basic_map_total_dim(bmap),
1417 bmap->extra - bmap->n_div);
1418 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1419 return bmap->n_div++;
1422 int isl_basic_set_alloc_div(struct isl_basic_set *bset)
1424 return isl_basic_map_alloc_div((struct isl_basic_map *)bset);
1427 int isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
1429 if (!bmap)
1430 return -1;
1431 isl_assert(bmap->ctx, n <= bmap->n_div, return -1);
1432 bmap->n_div -= n;
1433 return 0;
1436 int isl_basic_set_free_div(struct isl_basic_set *bset, unsigned n)
1438 return isl_basic_map_free_div((struct isl_basic_map *)bset, n);
1441 /* Copy constraint from src to dst, putting the vars of src at offset
1442 * dim_off in dst and the divs of src at offset div_off in dst.
1443 * If both sets are actually map, then dim_off applies to the input
1444 * variables.
1446 static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
1447 struct isl_basic_map *src_map, isl_int *src,
1448 unsigned in_off, unsigned out_off, unsigned div_off)
1450 unsigned src_nparam = isl_basic_map_n_param(src_map);
1451 unsigned dst_nparam = isl_basic_map_n_param(dst_map);
1452 unsigned src_in = isl_basic_map_n_in(src_map);
1453 unsigned dst_in = isl_basic_map_n_in(dst_map);
1454 unsigned src_out = isl_basic_map_n_out(src_map);
1455 unsigned dst_out = isl_basic_map_n_out(dst_map);
1456 isl_int_set(dst[0], src[0]);
1457 isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
1458 if (dst_nparam > src_nparam)
1459 isl_seq_clr(dst+1+src_nparam,
1460 dst_nparam - src_nparam);
1461 isl_seq_clr(dst+1+dst_nparam, in_off);
1462 isl_seq_cpy(dst+1+dst_nparam+in_off,
1463 src+1+src_nparam,
1464 isl_min(dst_in-in_off, src_in));
1465 if (dst_in-in_off > src_in)
1466 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
1467 dst_in - in_off - src_in);
1468 isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
1469 isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
1470 src+1+src_nparam+src_in,
1471 isl_min(dst_out-out_off, src_out));
1472 if (dst_out-out_off > src_out)
1473 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
1474 dst_out - out_off - src_out);
1475 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
1476 isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
1477 src+1+src_nparam+src_in+src_out,
1478 isl_min(dst_map->extra-div_off, src_map->n_div));
1479 if (dst_map->n_div-div_off > src_map->n_div)
1480 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
1481 div_off+src_map->n_div,
1482 dst_map->n_div - div_off - src_map->n_div);
1485 static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
1486 struct isl_basic_map *src_map, isl_int *src,
1487 unsigned in_off, unsigned out_off, unsigned div_off)
1489 isl_int_set(dst[0], src[0]);
1490 copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
1493 static struct isl_basic_map *add_constraints(struct isl_basic_map *bmap1,
1494 struct isl_basic_map *bmap2, unsigned i_pos, unsigned o_pos)
1496 int i;
1497 unsigned div_off;
1499 if (!bmap1 || !bmap2)
1500 goto error;
1502 div_off = bmap1->n_div;
1504 for (i = 0; i < bmap2->n_eq; ++i) {
1505 int i1 = isl_basic_map_alloc_equality(bmap1);
1506 if (i1 < 0)
1507 goto error;
1508 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
1509 i_pos, o_pos, div_off);
1512 for (i = 0; i < bmap2->n_ineq; ++i) {
1513 int i1 = isl_basic_map_alloc_inequality(bmap1);
1514 if (i1 < 0)
1515 goto error;
1516 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
1517 i_pos, o_pos, div_off);
1520 for (i = 0; i < bmap2->n_div; ++i) {
1521 int i1 = isl_basic_map_alloc_div(bmap1);
1522 if (i1 < 0)
1523 goto error;
1524 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
1525 i_pos, o_pos, div_off);
1528 isl_basic_map_free(bmap2);
1530 return bmap1;
1532 error:
1533 isl_basic_map_free(bmap1);
1534 isl_basic_map_free(bmap2);
1535 return NULL;
1538 struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
1539 struct isl_basic_set *bset2, unsigned pos)
1541 return (struct isl_basic_set *)
1542 add_constraints((struct isl_basic_map *)bset1,
1543 (struct isl_basic_map *)bset2, 0, pos);
1546 struct isl_basic_map *isl_basic_map_extend_space(struct isl_basic_map *base,
1547 __isl_take isl_space *dim, unsigned extra,
1548 unsigned n_eq, unsigned n_ineq)
1550 struct isl_basic_map *ext;
1551 unsigned flags;
1552 int dims_ok;
1554 if (!dim)
1555 goto error;
1557 if (!base)
1558 goto error;
1560 dims_ok = isl_space_is_equal(base->dim, dim) &&
1561 base->extra >= base->n_div + extra;
1563 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1564 room_for_ineq(base, n_ineq)) {
1565 isl_space_free(dim);
1566 return base;
1569 isl_assert(base->ctx, base->dim->nparam <= dim->nparam, goto error);
1570 isl_assert(base->ctx, base->dim->n_in <= dim->n_in, goto error);
1571 isl_assert(base->ctx, base->dim->n_out <= dim->n_out, goto error);
1572 extra += base->extra;
1573 n_eq += base->n_eq;
1574 n_ineq += base->n_ineq;
1576 ext = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1577 dim = NULL;
1578 if (!ext)
1579 goto error;
1581 if (dims_ok)
1582 ext->sample = isl_vec_copy(base->sample);
1583 flags = base->flags;
1584 ext = add_constraints(ext, base, 0, 0);
1585 if (ext) {
1586 ext->flags = flags;
1587 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
1590 return ext;
1592 error:
1593 isl_space_free(dim);
1594 isl_basic_map_free(base);
1595 return NULL;
1598 struct isl_basic_set *isl_basic_set_extend_space(struct isl_basic_set *base,
1599 __isl_take isl_space *dim, unsigned extra,
1600 unsigned n_eq, unsigned n_ineq)
1602 return (struct isl_basic_set *)
1603 isl_basic_map_extend_space((struct isl_basic_map *)base, dim,
1604 extra, n_eq, n_ineq);
1607 struct isl_basic_map *isl_basic_map_extend_constraints(
1608 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
1610 if (!base)
1611 return NULL;
1612 return isl_basic_map_extend_space(base, isl_space_copy(base->dim),
1613 0, n_eq, n_ineq);
1616 struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
1617 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
1618 unsigned n_eq, unsigned n_ineq)
1620 struct isl_basic_map *bmap;
1621 isl_space *dim;
1623 if (!base)
1624 return NULL;
1625 dim = isl_space_alloc(base->ctx, nparam, n_in, n_out);
1626 if (!dim)
1627 goto error;
1629 bmap = isl_basic_map_extend_space(base, dim, extra, n_eq, n_ineq);
1630 return bmap;
1631 error:
1632 isl_basic_map_free(base);
1633 return NULL;
1636 struct isl_basic_set *isl_basic_set_extend(struct isl_basic_set *base,
1637 unsigned nparam, unsigned dim, unsigned extra,
1638 unsigned n_eq, unsigned n_ineq)
1640 return (struct isl_basic_set *)
1641 isl_basic_map_extend((struct isl_basic_map *)base,
1642 nparam, 0, dim, extra, n_eq, n_ineq);
1645 struct isl_basic_set *isl_basic_set_extend_constraints(
1646 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1648 return (struct isl_basic_set *)
1649 isl_basic_map_extend_constraints((struct isl_basic_map *)base,
1650 n_eq, n_ineq);
1653 struct isl_basic_set *isl_basic_set_cow(struct isl_basic_set *bset)
1655 return (struct isl_basic_set *)
1656 isl_basic_map_cow((struct isl_basic_map *)bset);
1659 struct isl_basic_map *isl_basic_map_cow(struct isl_basic_map *bmap)
1661 if (!bmap)
1662 return NULL;
1664 if (bmap->ref > 1) {
1665 bmap->ref--;
1666 bmap = isl_basic_map_dup(bmap);
1668 if (bmap) {
1669 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
1670 ISL_F_CLR(bmap, ISL_BASIC_MAP_REDUCED_COEFFICIENTS);
1672 return bmap;
1675 struct isl_set *isl_set_cow(struct isl_set *set)
1677 if (!set)
1678 return NULL;
1680 if (set->ref == 1)
1681 return set;
1682 set->ref--;
1683 return isl_set_dup(set);
1686 struct isl_map *isl_map_cow(struct isl_map *map)
1688 if (!map)
1689 return NULL;
1691 if (map->ref == 1)
1692 return map;
1693 map->ref--;
1694 return isl_map_dup(map);
1697 static void swap_vars(struct isl_blk blk, isl_int *a,
1698 unsigned a_len, unsigned b_len)
1700 isl_seq_cpy(blk.data, a+a_len, b_len);
1701 isl_seq_cpy(blk.data+b_len, a, a_len);
1702 isl_seq_cpy(a, blk.data, b_len+a_len);
1705 static __isl_give isl_basic_map *isl_basic_map_swap_vars(
1706 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
1708 int i;
1709 struct isl_blk blk;
1711 if (!bmap)
1712 goto error;
1714 isl_assert(bmap->ctx,
1715 pos + n1 + n2 <= 1 + isl_basic_map_total_dim(bmap), goto error);
1717 if (n1 == 0 || n2 == 0)
1718 return bmap;
1720 bmap = isl_basic_map_cow(bmap);
1721 if (!bmap)
1722 return NULL;
1724 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
1725 if (isl_blk_is_error(blk))
1726 goto error;
1728 for (i = 0; i < bmap->n_eq; ++i)
1729 swap_vars(blk,
1730 bmap->eq[i] + pos, n1, n2);
1732 for (i = 0; i < bmap->n_ineq; ++i)
1733 swap_vars(blk,
1734 bmap->ineq[i] + pos, n1, n2);
1736 for (i = 0; i < bmap->n_div; ++i)
1737 swap_vars(blk,
1738 bmap->div[i]+1 + pos, n1, n2);
1740 isl_blk_free(bmap->ctx, blk);
1742 ISL_F_CLR(bmap, ISL_BASIC_SET_NORMALIZED);
1743 bmap = isl_basic_map_gauss(bmap, NULL);
1744 return isl_basic_map_finalize(bmap);
1745 error:
1746 isl_basic_map_free(bmap);
1747 return NULL;
1750 struct isl_basic_map *isl_basic_map_set_to_empty(struct isl_basic_map *bmap)
1752 int i = 0;
1753 unsigned total;
1754 if (!bmap)
1755 goto error;
1756 total = isl_basic_map_total_dim(bmap);
1757 isl_basic_map_free_div(bmap, bmap->n_div);
1758 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
1759 if (bmap->n_eq > 0)
1760 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
1761 else {
1762 i = isl_basic_map_alloc_equality(bmap);
1763 if (i < 0)
1764 goto error;
1766 isl_int_set_si(bmap->eq[i][0], 1);
1767 isl_seq_clr(bmap->eq[i]+1, total);
1768 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
1769 isl_vec_free(bmap->sample);
1770 bmap->sample = NULL;
1771 return isl_basic_map_finalize(bmap);
1772 error:
1773 isl_basic_map_free(bmap);
1774 return NULL;
1777 struct isl_basic_set *isl_basic_set_set_to_empty(struct isl_basic_set *bset)
1779 return (struct isl_basic_set *)
1780 isl_basic_map_set_to_empty((struct isl_basic_map *)bset);
1783 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
1784 * of "bmap").
1786 static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
1788 isl_int *t = bmap->div[a];
1789 bmap->div[a] = bmap->div[b];
1790 bmap->div[b] = t;
1793 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
1794 * div definitions accordingly.
1796 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
1798 int i;
1799 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
1801 swap_div(bmap, a, b);
1803 for (i = 0; i < bmap->n_eq; ++i)
1804 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
1806 for (i = 0; i < bmap->n_ineq; ++i)
1807 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
1809 for (i = 0; i < bmap->n_div; ++i)
1810 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
1811 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1814 /* Eliminate the specified n dimensions starting at first from the
1815 * constraints, without removing the dimensions from the space.
1816 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1818 __isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
1819 enum isl_dim_type type, unsigned first, unsigned n)
1821 int i;
1823 if (!map)
1824 return NULL;
1825 if (n == 0)
1826 return map;
1828 if (first + n > isl_map_dim(map, type) || first + n < first)
1829 isl_die(map->ctx, isl_error_invalid,
1830 "index out of bounds", goto error);
1832 map = isl_map_cow(map);
1833 if (!map)
1834 return NULL;
1836 for (i = 0; i < map->n; ++i) {
1837 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
1838 if (!map->p[i])
1839 goto error;
1841 return map;
1842 error:
1843 isl_map_free(map);
1844 return NULL;
1847 /* Eliminate the specified n dimensions starting at first from the
1848 * constraints, without removing the dimensions from the space.
1849 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1851 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
1852 enum isl_dim_type type, unsigned first, unsigned n)
1854 return (isl_set *)isl_map_eliminate((isl_map *)set, type, first, n);
1857 /* Eliminate the specified n dimensions starting at first from the
1858 * constraints, without removing the dimensions from the space.
1859 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1861 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
1862 unsigned first, unsigned n)
1864 return isl_set_eliminate(set, isl_dim_set, first, n);
1867 __isl_give isl_basic_map *isl_basic_map_remove_divs(
1868 __isl_take isl_basic_map *bmap)
1870 if (!bmap)
1871 return NULL;
1872 bmap = isl_basic_map_eliminate_vars(bmap,
1873 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
1874 if (!bmap)
1875 return NULL;
1876 bmap->n_div = 0;
1877 return isl_basic_map_finalize(bmap);
1880 __isl_give isl_basic_set *isl_basic_set_remove_divs(
1881 __isl_take isl_basic_set *bset)
1883 return (struct isl_basic_set *)isl_basic_map_remove_divs(
1884 (struct isl_basic_map *)bset);
1887 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
1889 int i;
1891 if (!map)
1892 return NULL;
1893 if (map->n == 0)
1894 return map;
1896 map = isl_map_cow(map);
1897 if (!map)
1898 return NULL;
1900 for (i = 0; i < map->n; ++i) {
1901 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
1902 if (!map->p[i])
1903 goto error;
1905 return map;
1906 error:
1907 isl_map_free(map);
1908 return NULL;
1911 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
1913 return isl_map_remove_divs(set);
1916 struct isl_basic_map *isl_basic_map_remove_dims(struct isl_basic_map *bmap,
1917 enum isl_dim_type type, unsigned first, unsigned n)
1919 if (!bmap)
1920 return NULL;
1921 isl_assert(bmap->ctx, first + n <= isl_basic_map_dim(bmap, type),
1922 goto error);
1923 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
1924 return bmap;
1925 bmap = isl_basic_map_eliminate_vars(bmap,
1926 isl_basic_map_offset(bmap, type) - 1 + first, n);
1927 if (!bmap)
1928 return bmap;
1929 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
1930 return bmap;
1931 bmap = isl_basic_map_drop(bmap, type, first, n);
1932 return bmap;
1933 error:
1934 isl_basic_map_free(bmap);
1935 return NULL;
1938 /* Return true if the definition of the given div (recursively) involves
1939 * any of the given variables.
1941 static int div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
1942 unsigned first, unsigned n)
1944 int i;
1945 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
1947 if (isl_int_is_zero(bmap->div[div][0]))
1948 return 0;
1949 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
1950 return 1;
1952 for (i = bmap->n_div - 1; i >= 0; --i) {
1953 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
1954 continue;
1955 if (div_involves_vars(bmap, i, first, n))
1956 return 1;
1959 return 0;
1962 /* Try and add a lower and/or upper bound on "div" to "bmap"
1963 * based on inequality "i".
1964 * "total" is the total number of variables (excluding the divs).
1965 * "v" is a temporary object that can be used during the calculations.
1966 * If "lb" is set, then a lower bound should be constructed.
1967 * If "ub" is set, then an upper bound should be constructed.
1969 * The calling function has already checked that the inequality does not
1970 * reference "div", but we still need to check that the inequality is
1971 * of the right form. We'll consider the case where we want to construct
1972 * a lower bound. The construction of upper bounds is similar.
1974 * Let "div" be of the form
1976 * q = floor((a + f(x))/d)
1978 * We essentially check if constraint "i" is of the form
1980 * b + f(x) >= 0
1982 * so that we can use it to derive a lower bound on "div".
1983 * However, we allow a slightly more general form
1985 * b + g(x) >= 0
1987 * with the condition that the coefficients of g(x) - f(x) are all
1988 * divisible by d.
1989 * Rewriting this constraint as
1991 * 0 >= -b - g(x)
1993 * adding a + f(x) to both sides and dividing by d, we obtain
1995 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
1997 * Taking the floor on both sides, we obtain
1999 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2001 * or
2003 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2005 * In the case of an upper bound, we construct the constraint
2007 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2010 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2011 __isl_take isl_basic_map *bmap, int div, int i,
2012 unsigned total, isl_int v, int lb, int ub)
2014 int j;
2016 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2017 if (lb) {
2018 isl_int_sub(v, bmap->ineq[i][1 + j],
2019 bmap->div[div][1 + 1 + j]);
2020 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2022 if (ub) {
2023 isl_int_add(v, bmap->ineq[i][1 + j],
2024 bmap->div[div][1 + 1 + j]);
2025 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2028 if (!lb && !ub)
2029 return bmap;
2031 bmap = isl_basic_map_cow(bmap);
2032 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2033 if (lb) {
2034 int k = isl_basic_map_alloc_inequality(bmap);
2035 if (k < 0)
2036 goto error;
2037 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2038 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2039 bmap->div[div][1 + j]);
2040 isl_int_cdiv_q(bmap->ineq[k][j],
2041 bmap->ineq[k][j], bmap->div[div][0]);
2043 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2045 if (ub) {
2046 int k = isl_basic_map_alloc_inequality(bmap);
2047 if (k < 0)
2048 goto error;
2049 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2050 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2051 bmap->div[div][1 + j]);
2052 isl_int_fdiv_q(bmap->ineq[k][j],
2053 bmap->ineq[k][j], bmap->div[div][0]);
2055 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2058 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2059 return bmap;
2060 error:
2061 isl_basic_map_free(bmap);
2062 return NULL;
2065 /* This function is called right before "div" is eliminated from "bmap"
2066 * using Fourier-Motzkin.
2067 * Look through the constraints of "bmap" for constraints on the argument
2068 * of the integer division and use them to construct constraints on the
2069 * integer division itself. These constraints can then be combined
2070 * during the Fourier-Motzkin elimination.
2071 * Note that it is only useful to introduce lower bounds on "div"
2072 * if "bmap" already contains upper bounds on "div" as the newly
2073 * introduce lower bounds can then be combined with the pre-existing
2074 * upper bounds. Similarly for upper bounds.
2075 * We therefore first check if "bmap" contains any lower and/or upper bounds
2076 * on "div".
2078 * It is interesting to note that the introduction of these constraints
2079 * can indeed lead to more accurate results, even when compared to
2080 * deriving constraints on the argument of "div" from constraints on "div".
2081 * Consider, for example, the set
2083 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2085 * The second constraint can be rewritten as
2087 * 2 * [(-i-2j+3)/4] + k >= 0
2089 * from which we can derive
2091 * -i - 2j + 3 >= -2k
2093 * or
2095 * i + 2j <= 3 + 2k
2097 * Combined with the first constraint, we obtain
2099 * -3 <= 3 + 2k or k >= -3
2101 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2102 * the first constraint, we obtain
2104 * [(i + 2j)/4] >= [-3/4] = -1
2106 * Combining this constraint with the second constraint, we obtain
2108 * k >= -2
2110 static __isl_give isl_basic_map *insert_bounds_on_div(
2111 __isl_take isl_basic_map *bmap, int div)
2113 int i;
2114 int check_lb, check_ub;
2115 isl_int v;
2116 unsigned total;
2118 if (!bmap)
2119 return NULL;
2121 if (isl_int_is_zero(bmap->div[div][0]))
2122 return bmap;
2124 total = isl_space_dim(bmap->dim, isl_dim_all);
2126 check_lb = 0;
2127 check_ub = 0;
2128 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
2129 int s = isl_int_sgn(bmap->ineq[i][1 + total + div]);
2130 if (s > 0)
2131 check_ub = 1;
2132 if (s < 0)
2133 check_lb = 1;
2136 if (!check_lb && !check_ub)
2137 return bmap;
2139 isl_int_init(v);
2141 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
2142 if (!isl_int_is_zero(bmap->ineq[i][1 + total + div]))
2143 continue;
2145 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, total, v,
2146 check_lb, check_ub);
2149 isl_int_clear(v);
2151 return bmap;
2154 /* Remove all divs (recursively) involving any of the given dimensions
2155 * in their definitions.
2157 __isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
2158 __isl_take isl_basic_map *bmap,
2159 enum isl_dim_type type, unsigned first, unsigned n)
2161 int i;
2163 if (!bmap)
2164 return NULL;
2165 isl_assert(bmap->ctx, first + n <= isl_basic_map_dim(bmap, type),
2166 goto error);
2167 first += isl_basic_map_offset(bmap, type);
2169 for (i = bmap->n_div - 1; i >= 0; --i) {
2170 if (!div_involves_vars(bmap, i, first, n))
2171 continue;
2172 bmap = insert_bounds_on_div(bmap, i);
2173 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2174 if (!bmap)
2175 return NULL;
2176 i = bmap->n_div;
2179 return bmap;
2180 error:
2181 isl_basic_map_free(bmap);
2182 return NULL;
2185 __isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
2186 __isl_take isl_basic_set *bset,
2187 enum isl_dim_type type, unsigned first, unsigned n)
2189 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
2192 __isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
2193 enum isl_dim_type type, unsigned first, unsigned n)
2195 int i;
2197 if (!map)
2198 return NULL;
2199 if (map->n == 0)
2200 return map;
2202 map = isl_map_cow(map);
2203 if (!map)
2204 return NULL;
2206 for (i = 0; i < map->n; ++i) {
2207 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2208 type, first, n);
2209 if (!map->p[i])
2210 goto error;
2212 return map;
2213 error:
2214 isl_map_free(map);
2215 return NULL;
2218 __isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2219 enum isl_dim_type type, unsigned first, unsigned n)
2221 return (isl_set *)isl_map_remove_divs_involving_dims((isl_map *)set,
2222 type, first, n);
2225 /* Does the desciption of "bmap" depend on the specified dimensions?
2226 * We also check whether the dimensions appear in any of the div definitions.
2227 * In principle there is no need for this check. If the dimensions appear
2228 * in a div definition, they also appear in the defining constraints of that
2229 * div.
2231 isl_bool isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
2232 enum isl_dim_type type, unsigned first, unsigned n)
2234 int i;
2236 if (!bmap)
2237 return isl_bool_error;
2239 if (first + n > isl_basic_map_dim(bmap, type))
2240 isl_die(bmap->ctx, isl_error_invalid,
2241 "index out of bounds", return isl_bool_error);
2243 first += isl_basic_map_offset(bmap, type);
2244 for (i = 0; i < bmap->n_eq; ++i)
2245 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
2246 return isl_bool_true;
2247 for (i = 0; i < bmap->n_ineq; ++i)
2248 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
2249 return isl_bool_true;
2250 for (i = 0; i < bmap->n_div; ++i) {
2251 if (isl_int_is_zero(bmap->div[i][0]))
2252 continue;
2253 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
2254 return isl_bool_true;
2257 return isl_bool_false;
2260 isl_bool isl_map_involves_dims(__isl_keep isl_map *map,
2261 enum isl_dim_type type, unsigned first, unsigned n)
2263 int i;
2265 if (!map)
2266 return isl_bool_error;
2268 if (first + n > isl_map_dim(map, type))
2269 isl_die(map->ctx, isl_error_invalid,
2270 "index out of bounds", return isl_bool_error);
2272 for (i = 0; i < map->n; ++i) {
2273 isl_bool involves = isl_basic_map_involves_dims(map->p[i],
2274 type, first, n);
2275 if (involves < 0 || involves)
2276 return involves;
2279 return isl_bool_false;
2282 isl_bool isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
2283 enum isl_dim_type type, unsigned first, unsigned n)
2285 return isl_basic_map_involves_dims(bset, type, first, n);
2288 isl_bool isl_set_involves_dims(__isl_keep isl_set *set,
2289 enum isl_dim_type type, unsigned first, unsigned n)
2291 return isl_map_involves_dims(set, type, first, n);
2294 /* Return true if the definition of the given div is unknown or depends
2295 * on unknown divs.
2297 static int div_is_unknown(__isl_keep isl_basic_map *bmap, int div)
2299 int i;
2300 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2302 if (isl_int_is_zero(bmap->div[div][0]))
2303 return 1;
2305 for (i = bmap->n_div - 1; i >= 0; --i) {
2306 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2307 continue;
2308 if (div_is_unknown(bmap, i))
2309 return 1;
2312 return 0;
2315 /* Remove all divs that are unknown or defined in terms of unknown divs.
2317 __isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
2318 __isl_take isl_basic_map *bmap)
2320 int i;
2322 if (!bmap)
2323 return NULL;
2325 for (i = bmap->n_div - 1; i >= 0; --i) {
2326 if (!div_is_unknown(bmap, i))
2327 continue;
2328 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2329 if (!bmap)
2330 return NULL;
2331 i = bmap->n_div;
2334 return bmap;
2337 /* Remove all divs that are unknown or defined in terms of unknown divs.
2339 __isl_give isl_basic_set *isl_basic_set_remove_unknown_divs(
2340 __isl_take isl_basic_set *bset)
2342 return isl_basic_map_remove_unknown_divs(bset);
2345 __isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
2347 int i;
2349 if (!map)
2350 return NULL;
2351 if (map->n == 0)
2352 return map;
2354 map = isl_map_cow(map);
2355 if (!map)
2356 return NULL;
2358 for (i = 0; i < map->n; ++i) {
2359 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
2360 if (!map->p[i])
2361 goto error;
2363 return map;
2364 error:
2365 isl_map_free(map);
2366 return NULL;
2369 __isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
2371 return (isl_set *)isl_map_remove_unknown_divs((isl_map *)set);
2374 __isl_give isl_basic_set *isl_basic_set_remove_dims(
2375 __isl_take isl_basic_set *bset,
2376 enum isl_dim_type type, unsigned first, unsigned n)
2378 return (isl_basic_set *)
2379 isl_basic_map_remove_dims((isl_basic_map *)bset, type, first, n);
2382 struct isl_map *isl_map_remove_dims(struct isl_map *map,
2383 enum isl_dim_type type, unsigned first, unsigned n)
2385 int i;
2387 if (n == 0)
2388 return map;
2390 map = isl_map_cow(map);
2391 if (!map)
2392 return NULL;
2393 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
2395 for (i = 0; i < map->n; ++i) {
2396 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
2397 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
2398 if (!map->p[i])
2399 goto error;
2401 map = isl_map_drop(map, type, first, n);
2402 return map;
2403 error:
2404 isl_map_free(map);
2405 return NULL;
2408 __isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
2409 enum isl_dim_type type, unsigned first, unsigned n)
2411 return (isl_set *)isl_map_remove_dims((isl_map *)bset, type, first, n);
2414 /* Project out n inputs starting at first using Fourier-Motzkin */
2415 struct isl_map *isl_map_remove_inputs(struct isl_map *map,
2416 unsigned first, unsigned n)
2418 return isl_map_remove_dims(map, isl_dim_in, first, n);
2421 static void dump_term(struct isl_basic_map *bmap,
2422 isl_int c, int pos, FILE *out)
2424 const char *name;
2425 unsigned in = isl_basic_map_n_in(bmap);
2426 unsigned dim = in + isl_basic_map_n_out(bmap);
2427 unsigned nparam = isl_basic_map_n_param(bmap);
2428 if (!pos)
2429 isl_int_print(out, c, 0);
2430 else {
2431 if (!isl_int_is_one(c))
2432 isl_int_print(out, c, 0);
2433 if (pos < 1 + nparam) {
2434 name = isl_space_get_dim_name(bmap->dim,
2435 isl_dim_param, pos - 1);
2436 if (name)
2437 fprintf(out, "%s", name);
2438 else
2439 fprintf(out, "p%d", pos - 1);
2440 } else if (pos < 1 + nparam + in)
2441 fprintf(out, "i%d", pos - 1 - nparam);
2442 else if (pos < 1 + nparam + dim)
2443 fprintf(out, "o%d", pos - 1 - nparam - in);
2444 else
2445 fprintf(out, "e%d", pos - 1 - nparam - dim);
2449 static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
2450 int sign, FILE *out)
2452 int i;
2453 int first;
2454 unsigned len = 1 + isl_basic_map_total_dim(bmap);
2455 isl_int v;
2457 isl_int_init(v);
2458 for (i = 0, first = 1; i < len; ++i) {
2459 if (isl_int_sgn(c[i]) * sign <= 0)
2460 continue;
2461 if (!first)
2462 fprintf(out, " + ");
2463 first = 0;
2464 isl_int_abs(v, c[i]);
2465 dump_term(bmap, v, i, out);
2467 isl_int_clear(v);
2468 if (first)
2469 fprintf(out, "0");
2472 static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
2473 const char *op, FILE *out, int indent)
2475 int i;
2477 fprintf(out, "%*s", indent, "");
2479 dump_constraint_sign(bmap, c, 1, out);
2480 fprintf(out, " %s ", op);
2481 dump_constraint_sign(bmap, c, -1, out);
2483 fprintf(out, "\n");
2485 for (i = bmap->n_div; i < bmap->extra; ++i) {
2486 if (isl_int_is_zero(c[1+isl_space_dim(bmap->dim, isl_dim_all)+i]))
2487 continue;
2488 fprintf(out, "%*s", indent, "");
2489 fprintf(out, "ERROR: unused div coefficient not zero\n");
2490 abort();
2494 static void dump_constraints(struct isl_basic_map *bmap,
2495 isl_int **c, unsigned n,
2496 const char *op, FILE *out, int indent)
2498 int i;
2500 for (i = 0; i < n; ++i)
2501 dump_constraint(bmap, c[i], op, out, indent);
2504 static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
2506 int j;
2507 int first = 1;
2508 unsigned total = isl_basic_map_total_dim(bmap);
2510 for (j = 0; j < 1 + total; ++j) {
2511 if (isl_int_is_zero(exp[j]))
2512 continue;
2513 if (!first && isl_int_is_pos(exp[j]))
2514 fprintf(out, "+");
2515 dump_term(bmap, exp[j], j, out);
2516 first = 0;
2520 static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
2522 int i;
2524 dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
2525 dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
2527 for (i = 0; i < bmap->n_div; ++i) {
2528 fprintf(out, "%*s", indent, "");
2529 fprintf(out, "e%d = [(", i);
2530 dump_affine(bmap, bmap->div[i]+1, out);
2531 fprintf(out, ")/");
2532 isl_int_print(out, bmap->div[i][0], 0);
2533 fprintf(out, "]\n");
2537 void isl_basic_set_print_internal(struct isl_basic_set *bset,
2538 FILE *out, int indent)
2540 if (!bset) {
2541 fprintf(out, "null basic set\n");
2542 return;
2545 fprintf(out, "%*s", indent, "");
2546 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
2547 bset->ref, bset->dim->nparam, bset->dim->n_out,
2548 bset->extra, bset->flags);
2549 dump((struct isl_basic_map *)bset, out, indent);
2552 void isl_basic_map_print_internal(struct isl_basic_map *bmap,
2553 FILE *out, int indent)
2555 if (!bmap) {
2556 fprintf(out, "null basic map\n");
2557 return;
2560 fprintf(out, "%*s", indent, "");
2561 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
2562 "flags: %x, n_name: %d\n",
2563 bmap->ref,
2564 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
2565 bmap->extra, bmap->flags, bmap->dim->n_id);
2566 dump(bmap, out, indent);
2569 int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
2571 unsigned total;
2572 if (!bmap)
2573 return -1;
2574 total = isl_basic_map_total_dim(bmap);
2575 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
2576 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
2577 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
2578 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2579 return 0;
2582 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *dim, int n,
2583 unsigned flags)
2585 struct isl_set *set;
2587 if (!dim)
2588 return NULL;
2589 isl_assert(dim->ctx, dim->n_in == 0, goto error);
2590 isl_assert(dim->ctx, n >= 0, goto error);
2591 set = isl_alloc(dim->ctx, struct isl_set,
2592 sizeof(struct isl_set) +
2593 (n - 1) * sizeof(struct isl_basic_set *));
2594 if (!set)
2595 goto error;
2597 set->ctx = dim->ctx;
2598 isl_ctx_ref(set->ctx);
2599 set->ref = 1;
2600 set->size = n;
2601 set->n = 0;
2602 set->dim = dim;
2603 set->flags = flags;
2604 return set;
2605 error:
2606 isl_space_free(dim);
2607 return NULL;
2610 struct isl_set *isl_set_alloc(struct isl_ctx *ctx,
2611 unsigned nparam, unsigned dim, int n, unsigned flags)
2613 struct isl_set *set;
2614 isl_space *dims;
2616 dims = isl_space_alloc(ctx, nparam, 0, dim);
2617 if (!dims)
2618 return NULL;
2620 set = isl_set_alloc_space(dims, n, flags);
2621 return set;
2624 /* Make sure "map" has room for at least "n" more basic maps.
2626 struct isl_map *isl_map_grow(struct isl_map *map, int n)
2628 int i;
2629 struct isl_map *grown = NULL;
2631 if (!map)
2632 return NULL;
2633 isl_assert(map->ctx, n >= 0, goto error);
2634 if (map->n + n <= map->size)
2635 return map;
2636 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
2637 if (!grown)
2638 goto error;
2639 for (i = 0; i < map->n; ++i) {
2640 grown->p[i] = isl_basic_map_copy(map->p[i]);
2641 if (!grown->p[i])
2642 goto error;
2643 grown->n++;
2645 isl_map_free(map);
2646 return grown;
2647 error:
2648 isl_map_free(grown);
2649 isl_map_free(map);
2650 return NULL;
2653 /* Make sure "set" has room for at least "n" more basic sets.
2655 struct isl_set *isl_set_grow(struct isl_set *set, int n)
2657 return (struct isl_set *)isl_map_grow((struct isl_map *)set, n);
2660 struct isl_set *isl_set_dup(struct isl_set *set)
2662 int i;
2663 struct isl_set *dup;
2665 if (!set)
2666 return NULL;
2668 dup = isl_set_alloc_space(isl_space_copy(set->dim), set->n, set->flags);
2669 if (!dup)
2670 return NULL;
2671 for (i = 0; i < set->n; ++i)
2672 dup = isl_set_add_basic_set(dup, isl_basic_set_copy(set->p[i]));
2673 return dup;
2676 struct isl_set *isl_set_from_basic_set(struct isl_basic_set *bset)
2678 return isl_map_from_basic_map(bset);
2681 struct isl_map *isl_map_from_basic_map(struct isl_basic_map *bmap)
2683 struct isl_map *map;
2685 if (!bmap)
2686 return NULL;
2688 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
2689 return isl_map_add_basic_map(map, bmap);
2692 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
2693 __isl_take isl_basic_set *bset)
2695 return (struct isl_set *)isl_map_add_basic_map((struct isl_map *)set,
2696 (struct isl_basic_map *)bset);
2699 __isl_null isl_set *isl_set_free(__isl_take isl_set *set)
2701 int i;
2703 if (!set)
2704 return NULL;
2706 if (--set->ref > 0)
2707 return NULL;
2709 isl_ctx_deref(set->ctx);
2710 for (i = 0; i < set->n; ++i)
2711 isl_basic_set_free(set->p[i]);
2712 isl_space_free(set->dim);
2713 free(set);
2715 return NULL;
2718 void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
2720 int i;
2722 if (!set) {
2723 fprintf(out, "null set\n");
2724 return;
2727 fprintf(out, "%*s", indent, "");
2728 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
2729 set->ref, set->n, set->dim->nparam, set->dim->n_out,
2730 set->flags);
2731 for (i = 0; i < set->n; ++i) {
2732 fprintf(out, "%*s", indent, "");
2733 fprintf(out, "basic set %d:\n", i);
2734 isl_basic_set_print_internal(set->p[i], out, indent+4);
2738 void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
2740 int i;
2742 if (!map) {
2743 fprintf(out, "null map\n");
2744 return;
2747 fprintf(out, "%*s", indent, "");
2748 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
2749 "flags: %x, n_name: %d\n",
2750 map->ref, map->n, map->dim->nparam, map->dim->n_in,
2751 map->dim->n_out, map->flags, map->dim->n_id);
2752 for (i = 0; i < map->n; ++i) {
2753 fprintf(out, "%*s", indent, "");
2754 fprintf(out, "basic map %d:\n", i);
2755 isl_basic_map_print_internal(map->p[i], out, indent+4);
2759 struct isl_basic_map *isl_basic_map_intersect_domain(
2760 struct isl_basic_map *bmap, struct isl_basic_set *bset)
2762 struct isl_basic_map *bmap_domain;
2764 if (!bmap || !bset)
2765 goto error;
2767 isl_assert(bset->ctx, isl_space_match(bmap->dim, isl_dim_param,
2768 bset->dim, isl_dim_param), goto error);
2770 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
2771 isl_assert(bset->ctx,
2772 isl_basic_map_compatible_domain(bmap, bset), goto error);
2774 bmap = isl_basic_map_cow(bmap);
2775 if (!bmap)
2776 goto error;
2777 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
2778 bset->n_div, bset->n_eq, bset->n_ineq);
2779 bmap_domain = isl_basic_map_from_domain(bset);
2780 bmap = add_constraints(bmap, bmap_domain, 0, 0);
2782 bmap = isl_basic_map_simplify(bmap);
2783 return isl_basic_map_finalize(bmap);
2784 error:
2785 isl_basic_map_free(bmap);
2786 isl_basic_set_free(bset);
2787 return NULL;
2790 struct isl_basic_map *isl_basic_map_intersect_range(
2791 struct isl_basic_map *bmap, struct isl_basic_set *bset)
2793 struct isl_basic_map *bmap_range;
2795 if (!bmap || !bset)
2796 goto error;
2798 isl_assert(bset->ctx, isl_space_match(bmap->dim, isl_dim_param,
2799 bset->dim, isl_dim_param), goto error);
2801 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
2802 isl_assert(bset->ctx,
2803 isl_basic_map_compatible_range(bmap, bset), goto error);
2805 if (isl_basic_set_is_universe(bset)) {
2806 isl_basic_set_free(bset);
2807 return bmap;
2810 bmap = isl_basic_map_cow(bmap);
2811 if (!bmap)
2812 goto error;
2813 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
2814 bset->n_div, bset->n_eq, bset->n_ineq);
2815 bmap_range = isl_basic_map_from_basic_set(bset, isl_space_copy(bset->dim));
2816 bmap = add_constraints(bmap, bmap_range, 0, 0);
2818 bmap = isl_basic_map_simplify(bmap);
2819 return isl_basic_map_finalize(bmap);
2820 error:
2821 isl_basic_map_free(bmap);
2822 isl_basic_set_free(bset);
2823 return NULL;
2826 isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
2827 __isl_keep isl_vec *vec)
2829 int i;
2830 unsigned total;
2831 isl_int s;
2833 if (!bmap || !vec)
2834 return isl_bool_error;
2836 total = 1 + isl_basic_map_total_dim(bmap);
2837 if (total != vec->size)
2838 return isl_bool_error;
2840 isl_int_init(s);
2842 for (i = 0; i < bmap->n_eq; ++i) {
2843 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
2844 if (!isl_int_is_zero(s)) {
2845 isl_int_clear(s);
2846 return isl_bool_false;
2850 for (i = 0; i < bmap->n_ineq; ++i) {
2851 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
2852 if (isl_int_is_neg(s)) {
2853 isl_int_clear(s);
2854 return isl_bool_false;
2858 isl_int_clear(s);
2860 return isl_bool_true;
2863 isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
2864 __isl_keep isl_vec *vec)
2866 return isl_basic_map_contains((struct isl_basic_map *)bset, vec);
2869 struct isl_basic_map *isl_basic_map_intersect(
2870 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
2872 struct isl_vec *sample = NULL;
2874 if (!bmap1 || !bmap2)
2875 goto error;
2877 isl_assert(bmap1->ctx, isl_space_match(bmap1->dim, isl_dim_param,
2878 bmap2->dim, isl_dim_param), goto error);
2879 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
2880 isl_space_dim(bmap1->dim, isl_dim_param) &&
2881 isl_space_dim(bmap2->dim, isl_dim_all) !=
2882 isl_space_dim(bmap2->dim, isl_dim_param))
2883 return isl_basic_map_intersect(bmap2, bmap1);
2885 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
2886 isl_space_dim(bmap2->dim, isl_dim_param))
2887 isl_assert(bmap1->ctx,
2888 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
2890 if (isl_basic_map_plain_is_empty(bmap1)) {
2891 isl_basic_map_free(bmap2);
2892 return bmap1;
2894 if (isl_basic_map_plain_is_empty(bmap2)) {
2895 isl_basic_map_free(bmap1);
2896 return bmap2;
2899 if (bmap1->sample &&
2900 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
2901 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
2902 sample = isl_vec_copy(bmap1->sample);
2903 else if (bmap2->sample &&
2904 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
2905 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
2906 sample = isl_vec_copy(bmap2->sample);
2908 bmap1 = isl_basic_map_cow(bmap1);
2909 if (!bmap1)
2910 goto error;
2911 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
2912 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
2913 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
2915 if (!bmap1)
2916 isl_vec_free(sample);
2917 else if (sample) {
2918 isl_vec_free(bmap1->sample);
2919 bmap1->sample = sample;
2922 bmap1 = isl_basic_map_simplify(bmap1);
2923 return isl_basic_map_finalize(bmap1);
2924 error:
2925 if (sample)
2926 isl_vec_free(sample);
2927 isl_basic_map_free(bmap1);
2928 isl_basic_map_free(bmap2);
2929 return NULL;
2932 struct isl_basic_set *isl_basic_set_intersect(
2933 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
2935 return (struct isl_basic_set *)
2936 isl_basic_map_intersect(
2937 (struct isl_basic_map *)bset1,
2938 (struct isl_basic_map *)bset2);
2941 __isl_give isl_basic_set *isl_basic_set_intersect_params(
2942 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
2944 return isl_basic_set_intersect(bset1, bset2);
2947 /* Special case of isl_map_intersect, where both map1 and map2
2948 * are convex, without any divs and such that either map1 or map2
2949 * contains a single constraint. This constraint is then simply
2950 * added to the other map.
2952 static __isl_give isl_map *map_intersect_add_constraint(
2953 __isl_take isl_map *map1, __isl_take isl_map *map2)
2955 isl_assert(map1->ctx, map1->n == 1, goto error);
2956 isl_assert(map2->ctx, map1->n == 1, goto error);
2957 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
2958 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
2960 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
2961 return isl_map_intersect(map2, map1);
2963 isl_assert(map2->ctx,
2964 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1, goto error);
2966 map1 = isl_map_cow(map1);
2967 if (!map1)
2968 goto error;
2969 if (isl_map_plain_is_empty(map1)) {
2970 isl_map_free(map2);
2971 return map1;
2973 map1->p[0] = isl_basic_map_cow(map1->p[0]);
2974 if (map2->p[0]->n_eq == 1)
2975 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
2976 else
2977 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
2978 map2->p[0]->ineq[0]);
2980 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
2981 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
2982 if (!map1->p[0])
2983 goto error;
2985 if (isl_basic_map_plain_is_empty(map1->p[0])) {
2986 isl_basic_map_free(map1->p[0]);
2987 map1->n = 0;
2990 isl_map_free(map2);
2992 return map1;
2993 error:
2994 isl_map_free(map1);
2995 isl_map_free(map2);
2996 return NULL;
2999 /* map2 may be either a parameter domain or a map living in the same
3000 * space as map1.
3002 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3003 __isl_take isl_map *map2)
3005 unsigned flags = 0;
3006 isl_map *result;
3007 int i, j;
3009 if (!map1 || !map2)
3010 goto error;
3012 if ((isl_map_plain_is_empty(map1) ||
3013 isl_map_plain_is_universe(map2)) &&
3014 isl_space_is_equal(map1->dim, map2->dim)) {
3015 isl_map_free(map2);
3016 return map1;
3018 if ((isl_map_plain_is_empty(map2) ||
3019 isl_map_plain_is_universe(map1)) &&
3020 isl_space_is_equal(map1->dim, map2->dim)) {
3021 isl_map_free(map1);
3022 return map2;
3025 if (map1->n == 1 && map2->n == 1 &&
3026 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
3027 isl_space_is_equal(map1->dim, map2->dim) &&
3028 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3029 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3030 return map_intersect_add_constraint(map1, map2);
3032 if (isl_space_dim(map2->dim, isl_dim_all) !=
3033 isl_space_dim(map2->dim, isl_dim_param))
3034 isl_assert(map1->ctx,
3035 isl_space_is_equal(map1->dim, map2->dim), goto error);
3037 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3038 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3039 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3041 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3042 map1->n * map2->n, flags);
3043 if (!result)
3044 goto error;
3045 for (i = 0; i < map1->n; ++i)
3046 for (j = 0; j < map2->n; ++j) {
3047 struct isl_basic_map *part;
3048 part = isl_basic_map_intersect(
3049 isl_basic_map_copy(map1->p[i]),
3050 isl_basic_map_copy(map2->p[j]));
3051 if (isl_basic_map_is_empty(part) < 0)
3052 part = isl_basic_map_free(part);
3053 result = isl_map_add_basic_map(result, part);
3054 if (!result)
3055 goto error;
3057 isl_map_free(map1);
3058 isl_map_free(map2);
3059 return result;
3060 error:
3061 isl_map_free(map1);
3062 isl_map_free(map2);
3063 return NULL;
3066 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3067 __isl_take isl_map *map2)
3069 if (!map1 || !map2)
3070 goto error;
3071 if (!isl_space_is_equal(map1->dim, map2->dim))
3072 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
3073 "spaces don't match", goto error);
3074 return map_intersect_internal(map1, map2);
3075 error:
3076 isl_map_free(map1);
3077 isl_map_free(map2);
3078 return NULL;
3081 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3082 __isl_take isl_map *map2)
3084 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
3087 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
3089 return (struct isl_set *)
3090 isl_map_intersect((struct isl_map *)set1,
3091 (struct isl_map *)set2);
3094 /* map_intersect_internal accepts intersections
3095 * with parameter domains, so we can just call that function.
3097 static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
3098 __isl_take isl_set *params)
3100 return map_intersect_internal(map, params);
3103 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
3104 __isl_take isl_map *map2)
3106 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
3109 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3110 __isl_take isl_set *params)
3112 return isl_map_intersect_params(set, params);
3115 struct isl_basic_map *isl_basic_map_reverse(struct isl_basic_map *bmap)
3117 isl_space *space;
3118 unsigned pos, n1, n2;
3120 if (!bmap)
3121 return NULL;
3122 bmap = isl_basic_map_cow(bmap);
3123 if (!bmap)
3124 return NULL;
3125 space = isl_space_reverse(isl_space_copy(bmap->dim));
3126 pos = isl_basic_map_offset(bmap, isl_dim_in);
3127 n1 = isl_basic_map_dim(bmap, isl_dim_in);
3128 n2 = isl_basic_map_dim(bmap, isl_dim_out);
3129 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
3130 return isl_basic_map_reset_space(bmap, space);
3133 static __isl_give isl_basic_map *basic_map_space_reset(
3134 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
3136 isl_space *space;
3138 if (!bmap)
3139 return NULL;
3140 if (!isl_space_is_named_or_nested(bmap->dim, type))
3141 return bmap;
3143 space = isl_basic_map_get_space(bmap);
3144 space = isl_space_reset(space, type);
3145 bmap = isl_basic_map_reset_space(bmap, space);
3146 return bmap;
3149 __isl_give isl_basic_map *isl_basic_map_insert_dims(
3150 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3151 unsigned pos, unsigned n)
3153 isl_space *res_dim;
3154 struct isl_basic_map *res;
3155 struct isl_dim_map *dim_map;
3156 unsigned total, off;
3157 enum isl_dim_type t;
3159 if (n == 0)
3160 return basic_map_space_reset(bmap, type);
3162 if (!bmap)
3163 return NULL;
3165 res_dim = isl_space_insert_dims(isl_basic_map_get_space(bmap), type, pos, n);
3167 total = isl_basic_map_total_dim(bmap) + n;
3168 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3169 off = 0;
3170 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3171 if (t != type) {
3172 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3173 } else {
3174 unsigned size = isl_basic_map_dim(bmap, t);
3175 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3176 0, pos, off);
3177 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3178 pos, size - pos, off + pos + n);
3180 off += isl_space_dim(res_dim, t);
3182 isl_dim_map_div(dim_map, bmap, off);
3184 res = isl_basic_map_alloc_space(res_dim,
3185 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3186 if (isl_basic_map_is_rational(bmap))
3187 res = isl_basic_map_set_rational(res);
3188 if (isl_basic_map_plain_is_empty(bmap)) {
3189 isl_basic_map_free(bmap);
3190 free(dim_map);
3191 return isl_basic_map_set_to_empty(res);
3193 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3194 return isl_basic_map_finalize(res);
3197 __isl_give isl_basic_set *isl_basic_set_insert_dims(
3198 __isl_take isl_basic_set *bset,
3199 enum isl_dim_type type, unsigned pos, unsigned n)
3201 return isl_basic_map_insert_dims(bset, type, pos, n);
3204 __isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
3205 enum isl_dim_type type, unsigned n)
3207 if (!bmap)
3208 return NULL;
3209 return isl_basic_map_insert_dims(bmap, type,
3210 isl_basic_map_dim(bmap, type), n);
3213 __isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
3214 enum isl_dim_type type, unsigned n)
3216 if (!bset)
3217 return NULL;
3218 isl_assert(bset->ctx, type != isl_dim_in, goto error);
3219 return isl_basic_map_add_dims(bset, type, n);
3220 error:
3221 isl_basic_set_free(bset);
3222 return NULL;
3225 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
3226 enum isl_dim_type type)
3228 isl_space *space;
3230 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3231 return map;
3233 space = isl_map_get_space(map);
3234 space = isl_space_reset(space, type);
3235 map = isl_map_reset_space(map, space);
3236 return map;
3239 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3240 enum isl_dim_type type, unsigned pos, unsigned n)
3242 int i;
3244 if (n == 0)
3245 return map_space_reset(map, type);
3247 map = isl_map_cow(map);
3248 if (!map)
3249 return NULL;
3251 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3252 if (!map->dim)
3253 goto error;
3255 for (i = 0; i < map->n; ++i) {
3256 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3257 if (!map->p[i])
3258 goto error;
3261 return map;
3262 error:
3263 isl_map_free(map);
3264 return NULL;
3267 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
3268 enum isl_dim_type type, unsigned pos, unsigned n)
3270 return isl_map_insert_dims(set, type, pos, n);
3273 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
3274 enum isl_dim_type type, unsigned n)
3276 if (!map)
3277 return NULL;
3278 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
3281 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
3282 enum isl_dim_type type, unsigned n)
3284 if (!set)
3285 return NULL;
3286 isl_assert(set->ctx, type != isl_dim_in, goto error);
3287 return (isl_set *)isl_map_add_dims((isl_map *)set, type, n);
3288 error:
3289 isl_set_free(set);
3290 return NULL;
3293 __isl_give isl_basic_map *isl_basic_map_move_dims(
3294 __isl_take isl_basic_map *bmap,
3295 enum isl_dim_type dst_type, unsigned dst_pos,
3296 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3298 struct isl_dim_map *dim_map;
3299 struct isl_basic_map *res;
3300 enum isl_dim_type t;
3301 unsigned total, off;
3303 if (!bmap)
3304 return NULL;
3305 if (n == 0)
3306 return bmap;
3308 isl_assert(bmap->ctx, src_pos + n <= isl_basic_map_dim(bmap, src_type),
3309 goto error);
3311 if (dst_type == src_type && dst_pos == src_pos)
3312 return bmap;
3314 isl_assert(bmap->ctx, dst_type != src_type, goto error);
3316 if (pos(bmap->dim, dst_type) + dst_pos ==
3317 pos(bmap->dim, src_type) + src_pos +
3318 ((src_type < dst_type) ? n : 0)) {
3319 bmap = isl_basic_map_cow(bmap);
3320 if (!bmap)
3321 return NULL;
3323 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
3324 src_type, src_pos, n);
3325 if (!bmap->dim)
3326 goto error;
3328 bmap = isl_basic_map_finalize(bmap);
3330 return bmap;
3333 total = isl_basic_map_total_dim(bmap);
3334 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3336 off = 0;
3337 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3338 unsigned size = isl_space_dim(bmap->dim, t);
3339 if (t == dst_type) {
3340 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3341 0, dst_pos, off);
3342 off += dst_pos;
3343 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
3344 src_pos, n, off);
3345 off += n;
3346 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3347 dst_pos, size - dst_pos, off);
3348 off += size - dst_pos;
3349 } else if (t == src_type) {
3350 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3351 0, src_pos, off);
3352 off += src_pos;
3353 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3354 src_pos + n, size - src_pos - n, off);
3355 off += size - src_pos - n;
3356 } else {
3357 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3358 off += size;
3361 isl_dim_map_div(dim_map, bmap, off);
3363 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
3364 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3365 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3366 if (!bmap)
3367 goto error;
3369 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
3370 src_type, src_pos, n);
3371 if (!bmap->dim)
3372 goto error;
3374 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
3375 bmap = isl_basic_map_gauss(bmap, NULL);
3376 bmap = isl_basic_map_finalize(bmap);
3378 return bmap;
3379 error:
3380 isl_basic_map_free(bmap);
3381 return NULL;
3384 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
3385 enum isl_dim_type dst_type, unsigned dst_pos,
3386 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3388 return (isl_basic_set *)isl_basic_map_move_dims(
3389 (isl_basic_map *)bset, dst_type, dst_pos, src_type, src_pos, n);
3392 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
3393 enum isl_dim_type dst_type, unsigned dst_pos,
3394 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3396 if (!set)
3397 return NULL;
3398 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
3399 return (isl_set *)isl_map_move_dims((isl_map *)set, dst_type, dst_pos,
3400 src_type, src_pos, n);
3401 error:
3402 isl_set_free(set);
3403 return NULL;
3406 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
3407 enum isl_dim_type dst_type, unsigned dst_pos,
3408 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3410 int i;
3412 if (!map)
3413 return NULL;
3414 if (n == 0)
3415 return map;
3417 isl_assert(map->ctx, src_pos + n <= isl_map_dim(map, src_type),
3418 goto error);
3420 if (dst_type == src_type && dst_pos == src_pos)
3421 return map;
3423 isl_assert(map->ctx, dst_type != src_type, goto error);
3425 map = isl_map_cow(map);
3426 if (!map)
3427 return NULL;
3429 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
3430 if (!map->dim)
3431 goto error;
3433 for (i = 0; i < map->n; ++i) {
3434 map->p[i] = isl_basic_map_move_dims(map->p[i],
3435 dst_type, dst_pos,
3436 src_type, src_pos, n);
3437 if (!map->p[i])
3438 goto error;
3441 return map;
3442 error:
3443 isl_map_free(map);
3444 return NULL;
3447 /* Move the specified dimensions to the last columns right before
3448 * the divs. Don't change the dimension specification of bmap.
3449 * That's the responsibility of the caller.
3451 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
3452 enum isl_dim_type type, unsigned first, unsigned n)
3454 struct isl_dim_map *dim_map;
3455 struct isl_basic_map *res;
3456 enum isl_dim_type t;
3457 unsigned total, off;
3459 if (!bmap)
3460 return NULL;
3461 if (pos(bmap->dim, type) + first + n ==
3462 1 + isl_space_dim(bmap->dim, isl_dim_all))
3463 return bmap;
3465 total = isl_basic_map_total_dim(bmap);
3466 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3468 off = 0;
3469 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3470 unsigned size = isl_space_dim(bmap->dim, t);
3471 if (t == type) {
3472 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3473 0, first, off);
3474 off += first;
3475 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3476 first, n, total - bmap->n_div - n);
3477 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3478 first + n, size - (first + n), off);
3479 off += size - (first + n);
3480 } else {
3481 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3482 off += size;
3485 isl_dim_map_div(dim_map, bmap, off + n);
3487 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
3488 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3489 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3490 return res;
3493 /* Insert "n" rows in the divs of "bmap".
3495 * The number of columns is not changed, which means that the last
3496 * dimensions of "bmap" are being reintepreted as the new divs.
3497 * The space of "bmap" is not adjusted, however, which means
3498 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
3499 * from the space of "bmap" is the responsibility of the caller.
3501 static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
3502 int n)
3504 int i;
3505 size_t row_size;
3506 isl_int **new_div;
3507 isl_int *old;
3509 bmap = isl_basic_map_cow(bmap);
3510 if (!bmap)
3511 return NULL;
3513 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
3514 old = bmap->block2.data;
3515 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
3516 (bmap->extra + n) * (1 + row_size));
3517 if (!bmap->block2.data)
3518 return isl_basic_map_free(bmap);
3519 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
3520 if (!new_div)
3521 return isl_basic_map_free(bmap);
3522 for (i = 0; i < n; ++i) {
3523 new_div[i] = bmap->block2.data +
3524 (bmap->extra + i) * (1 + row_size);
3525 isl_seq_clr(new_div[i], 1 + row_size);
3527 for (i = 0; i < bmap->extra; ++i)
3528 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
3529 free(bmap->div);
3530 bmap->div = new_div;
3531 bmap->n_div += n;
3532 bmap->extra += n;
3534 return bmap;
3537 /* Turn the n dimensions of type type, starting at first
3538 * into existentially quantified variables.
3540 __isl_give isl_basic_map *isl_basic_map_project_out(
3541 __isl_take isl_basic_map *bmap,
3542 enum isl_dim_type type, unsigned first, unsigned n)
3544 if (n == 0)
3545 return basic_map_space_reset(bmap, type);
3547 if (!bmap)
3548 return NULL;
3550 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
3551 return isl_basic_map_remove_dims(bmap, type, first, n);
3553 isl_assert(bmap->ctx, first + n <= isl_basic_map_dim(bmap, type),
3554 goto error);
3556 bmap = move_last(bmap, type, first, n);
3557 bmap = isl_basic_map_cow(bmap);
3558 bmap = insert_div_rows(bmap, n);
3559 if (!bmap)
3560 return NULL;
3562 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
3563 if (!bmap->dim)
3564 goto error;
3565 bmap = isl_basic_map_simplify(bmap);
3566 bmap = isl_basic_map_drop_redundant_divs(bmap);
3567 return isl_basic_map_finalize(bmap);
3568 error:
3569 isl_basic_map_free(bmap);
3570 return NULL;
3573 /* Turn the n dimensions of type type, starting at first
3574 * into existentially quantified variables.
3576 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
3577 enum isl_dim_type type, unsigned first, unsigned n)
3579 return (isl_basic_set *)isl_basic_map_project_out(
3580 (isl_basic_map *)bset, type, first, n);
3583 /* Turn the n dimensions of type type, starting at first
3584 * into existentially quantified variables.
3586 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
3587 enum isl_dim_type type, unsigned first, unsigned n)
3589 int i;
3591 if (!map)
3592 return NULL;
3594 if (n == 0)
3595 return map_space_reset(map, type);
3597 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
3599 map = isl_map_cow(map);
3600 if (!map)
3601 return NULL;
3603 map->dim = isl_space_drop_dims(map->dim, type, first, n);
3604 if (!map->dim)
3605 goto error;
3607 for (i = 0; i < map->n; ++i) {
3608 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
3609 if (!map->p[i])
3610 goto error;
3613 return map;
3614 error:
3615 isl_map_free(map);
3616 return NULL;
3619 /* Turn the n dimensions of type type, starting at first
3620 * into existentially quantified variables.
3622 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
3623 enum isl_dim_type type, unsigned first, unsigned n)
3625 return (isl_set *)isl_map_project_out((isl_map *)set, type, first, n);
3628 static struct isl_basic_map *add_divs(struct isl_basic_map *bmap, unsigned n)
3630 int i, j;
3632 for (i = 0; i < n; ++i) {
3633 j = isl_basic_map_alloc_div(bmap);
3634 if (j < 0)
3635 goto error;
3636 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
3638 return bmap;
3639 error:
3640 isl_basic_map_free(bmap);
3641 return NULL;
3644 struct isl_basic_map *isl_basic_map_apply_range(
3645 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
3647 isl_space *dim_result = NULL;
3648 struct isl_basic_map *bmap;
3649 unsigned n_in, n_out, n, nparam, total, pos;
3650 struct isl_dim_map *dim_map1, *dim_map2;
3652 if (!bmap1 || !bmap2)
3653 goto error;
3654 if (!isl_space_match(bmap1->dim, isl_dim_param,
3655 bmap2->dim, isl_dim_param))
3656 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
3657 "parameters don't match", goto error);
3658 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_out,
3659 bmap2->dim, isl_dim_in))
3660 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
3661 "spaces don't match", goto error);
3663 dim_result = isl_space_join(isl_space_copy(bmap1->dim),
3664 isl_space_copy(bmap2->dim));
3666 n_in = isl_basic_map_n_in(bmap1);
3667 n_out = isl_basic_map_n_out(bmap2);
3668 n = isl_basic_map_n_out(bmap1);
3669 nparam = isl_basic_map_n_param(bmap1);
3671 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
3672 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
3673 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
3674 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
3675 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
3676 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
3677 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
3678 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
3679 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
3680 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
3681 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
3683 bmap = isl_basic_map_alloc_space(dim_result,
3684 bmap1->n_div + bmap2->n_div + n,
3685 bmap1->n_eq + bmap2->n_eq,
3686 bmap1->n_ineq + bmap2->n_ineq);
3687 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
3688 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
3689 bmap = add_divs(bmap, n);
3690 bmap = isl_basic_map_simplify(bmap);
3691 bmap = isl_basic_map_drop_redundant_divs(bmap);
3692 return isl_basic_map_finalize(bmap);
3693 error:
3694 isl_basic_map_free(bmap1);
3695 isl_basic_map_free(bmap2);
3696 return NULL;
3699 struct isl_basic_set *isl_basic_set_apply(
3700 struct isl_basic_set *bset, struct isl_basic_map *bmap)
3702 if (!bset || !bmap)
3703 goto error;
3705 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
3706 goto error);
3708 return (struct isl_basic_set *)
3709 isl_basic_map_apply_range((struct isl_basic_map *)bset, bmap);
3710 error:
3711 isl_basic_set_free(bset);
3712 isl_basic_map_free(bmap);
3713 return NULL;
3716 struct isl_basic_map *isl_basic_map_apply_domain(
3717 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
3719 if (!bmap1 || !bmap2)
3720 goto error;
3722 isl_assert(bmap1->ctx,
3723 isl_basic_map_n_in(bmap1) == isl_basic_map_n_in(bmap2), goto error);
3724 isl_assert(bmap1->ctx,
3725 isl_basic_map_n_param(bmap1) == isl_basic_map_n_param(bmap2),
3726 goto error);
3728 bmap1 = isl_basic_map_reverse(bmap1);
3729 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
3730 return isl_basic_map_reverse(bmap1);
3731 error:
3732 isl_basic_map_free(bmap1);
3733 isl_basic_map_free(bmap2);
3734 return NULL;
3737 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
3738 * A \cap B -> f(A) + f(B)
3740 struct isl_basic_map *isl_basic_map_sum(
3741 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
3743 unsigned n_in, n_out, nparam, total, pos;
3744 struct isl_basic_map *bmap = NULL;
3745 struct isl_dim_map *dim_map1, *dim_map2;
3746 int i;
3748 if (!bmap1 || !bmap2)
3749 goto error;
3751 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
3752 goto error);
3754 nparam = isl_basic_map_n_param(bmap1);
3755 n_in = isl_basic_map_n_in(bmap1);
3756 n_out = isl_basic_map_n_out(bmap1);
3758 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
3759 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
3760 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
3761 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
3762 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
3763 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
3764 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
3765 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
3766 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
3767 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
3768 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
3770 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
3771 bmap1->n_div + bmap2->n_div + 2 * n_out,
3772 bmap1->n_eq + bmap2->n_eq + n_out,
3773 bmap1->n_ineq + bmap2->n_ineq);
3774 for (i = 0; i < n_out; ++i) {
3775 int j = isl_basic_map_alloc_equality(bmap);
3776 if (j < 0)
3777 goto error;
3778 isl_seq_clr(bmap->eq[j], 1+total);
3779 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
3780 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
3781 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
3783 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
3784 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
3785 bmap = add_divs(bmap, 2 * n_out);
3787 bmap = isl_basic_map_simplify(bmap);
3788 return isl_basic_map_finalize(bmap);
3789 error:
3790 isl_basic_map_free(bmap);
3791 isl_basic_map_free(bmap1);
3792 isl_basic_map_free(bmap2);
3793 return NULL;
3796 /* Given two maps A -> f(A) and B -> g(B), construct a map
3797 * A \cap B -> f(A) + f(B)
3799 struct isl_map *isl_map_sum(struct isl_map *map1, struct isl_map *map2)
3801 struct isl_map *result;
3802 int i, j;
3804 if (!map1 || !map2)
3805 goto error;
3807 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
3809 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3810 map1->n * map2->n, 0);
3811 if (!result)
3812 goto error;
3813 for (i = 0; i < map1->n; ++i)
3814 for (j = 0; j < map2->n; ++j) {
3815 struct isl_basic_map *part;
3816 part = isl_basic_map_sum(
3817 isl_basic_map_copy(map1->p[i]),
3818 isl_basic_map_copy(map2->p[j]));
3819 if (isl_basic_map_is_empty(part))
3820 isl_basic_map_free(part);
3821 else
3822 result = isl_map_add_basic_map(result, part);
3823 if (!result)
3824 goto error;
3826 isl_map_free(map1);
3827 isl_map_free(map2);
3828 return result;
3829 error:
3830 isl_map_free(map1);
3831 isl_map_free(map2);
3832 return NULL;
3835 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
3836 __isl_take isl_set *set2)
3838 return (isl_set *)isl_map_sum((isl_map *)set1, (isl_map *)set2);
3841 /* Given a basic map A -> f(A), construct A -> -f(A).
3843 struct isl_basic_map *isl_basic_map_neg(struct isl_basic_map *bmap)
3845 int i, j;
3846 unsigned off, n;
3848 bmap = isl_basic_map_cow(bmap);
3849 if (!bmap)
3850 return NULL;
3852 n = isl_basic_map_dim(bmap, isl_dim_out);
3853 off = isl_basic_map_offset(bmap, isl_dim_out);
3854 for (i = 0; i < bmap->n_eq; ++i)
3855 for (j = 0; j < n; ++j)
3856 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
3857 for (i = 0; i < bmap->n_ineq; ++i)
3858 for (j = 0; j < n; ++j)
3859 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
3860 for (i = 0; i < bmap->n_div; ++i)
3861 for (j = 0; j < n; ++j)
3862 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
3863 bmap = isl_basic_map_gauss(bmap, NULL);
3864 return isl_basic_map_finalize(bmap);
3867 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
3869 return isl_basic_map_neg(bset);
3872 /* Given a map A -> f(A), construct A -> -f(A).
3874 struct isl_map *isl_map_neg(struct isl_map *map)
3876 int i;
3878 map = isl_map_cow(map);
3879 if (!map)
3880 return NULL;
3882 for (i = 0; i < map->n; ++i) {
3883 map->p[i] = isl_basic_map_neg(map->p[i]);
3884 if (!map->p[i])
3885 goto error;
3888 return map;
3889 error:
3890 isl_map_free(map);
3891 return NULL;
3894 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
3896 return (isl_set *)isl_map_neg((isl_map *)set);
3899 /* Given a basic map A -> f(A) and an integer d, construct a basic map
3900 * A -> floor(f(A)/d).
3902 struct isl_basic_map *isl_basic_map_floordiv(struct isl_basic_map *bmap,
3903 isl_int d)
3905 unsigned n_in, n_out, nparam, total, pos;
3906 struct isl_basic_map *result = NULL;
3907 struct isl_dim_map *dim_map;
3908 int i;
3910 if (!bmap)
3911 return NULL;
3913 nparam = isl_basic_map_n_param(bmap);
3914 n_in = isl_basic_map_n_in(bmap);
3915 n_out = isl_basic_map_n_out(bmap);
3917 total = nparam + n_in + n_out + bmap->n_div + n_out;
3918 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3919 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
3920 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
3921 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
3922 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
3924 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
3925 bmap->n_div + n_out,
3926 bmap->n_eq, bmap->n_ineq + 2 * n_out);
3927 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
3928 result = add_divs(result, n_out);
3929 for (i = 0; i < n_out; ++i) {
3930 int j;
3931 j = isl_basic_map_alloc_inequality(result);
3932 if (j < 0)
3933 goto error;
3934 isl_seq_clr(result->ineq[j], 1+total);
3935 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
3936 isl_int_set_si(result->ineq[j][1+pos+i], 1);
3937 j = isl_basic_map_alloc_inequality(result);
3938 if (j < 0)
3939 goto error;
3940 isl_seq_clr(result->ineq[j], 1+total);
3941 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
3942 isl_int_set_si(result->ineq[j][1+pos+i], -1);
3943 isl_int_sub_ui(result->ineq[j][0], d, 1);
3946 result = isl_basic_map_simplify(result);
3947 return isl_basic_map_finalize(result);
3948 error:
3949 isl_basic_map_free(result);
3950 return NULL;
3953 /* Given a map A -> f(A) and an integer d, construct a map
3954 * A -> floor(f(A)/d).
3956 struct isl_map *isl_map_floordiv(struct isl_map *map, isl_int d)
3958 int i;
3960 map = isl_map_cow(map);
3961 if (!map)
3962 return NULL;
3964 ISL_F_CLR(map, ISL_MAP_DISJOINT);
3965 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
3966 for (i = 0; i < map->n; ++i) {
3967 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
3968 if (!map->p[i])
3969 goto error;
3972 return map;
3973 error:
3974 isl_map_free(map);
3975 return NULL;
3978 /* Given a map A -> f(A) and an integer d, construct a map
3979 * A -> floor(f(A)/d).
3981 __isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
3982 __isl_take isl_val *d)
3984 if (!map || !d)
3985 goto error;
3986 if (!isl_val_is_int(d))
3987 isl_die(isl_val_get_ctx(d), isl_error_invalid,
3988 "expecting integer denominator", goto error);
3989 map = isl_map_floordiv(map, d->n);
3990 isl_val_free(d);
3991 return map;
3992 error:
3993 isl_map_free(map);
3994 isl_val_free(d);
3995 return NULL;
3998 static struct isl_basic_map *var_equal(struct isl_basic_map *bmap, unsigned pos)
4000 int i;
4001 unsigned nparam;
4002 unsigned n_in;
4004 i = isl_basic_map_alloc_equality(bmap);
4005 if (i < 0)
4006 goto error;
4007 nparam = isl_basic_map_n_param(bmap);
4008 n_in = isl_basic_map_n_in(bmap);
4009 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
4010 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
4011 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
4012 return isl_basic_map_finalize(bmap);
4013 error:
4014 isl_basic_map_free(bmap);
4015 return NULL;
4018 /* Add a constraints to "bmap" expressing i_pos < o_pos
4020 static struct isl_basic_map *var_less(struct isl_basic_map *bmap, unsigned pos)
4022 int i;
4023 unsigned nparam;
4024 unsigned n_in;
4026 i = isl_basic_map_alloc_inequality(bmap);
4027 if (i < 0)
4028 goto error;
4029 nparam = isl_basic_map_n_param(bmap);
4030 n_in = isl_basic_map_n_in(bmap);
4031 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4032 isl_int_set_si(bmap->ineq[i][0], -1);
4033 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4034 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4035 return isl_basic_map_finalize(bmap);
4036 error:
4037 isl_basic_map_free(bmap);
4038 return NULL;
4041 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4043 static __isl_give isl_basic_map *var_less_or_equal(
4044 __isl_take isl_basic_map *bmap, unsigned pos)
4046 int i;
4047 unsigned nparam;
4048 unsigned n_in;
4050 i = isl_basic_map_alloc_inequality(bmap);
4051 if (i < 0)
4052 goto error;
4053 nparam = isl_basic_map_n_param(bmap);
4054 n_in = isl_basic_map_n_in(bmap);
4055 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4056 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4057 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4058 return isl_basic_map_finalize(bmap);
4059 error:
4060 isl_basic_map_free(bmap);
4061 return NULL;
4064 /* Add a constraints to "bmap" expressing i_pos > o_pos
4066 static struct isl_basic_map *var_more(struct isl_basic_map *bmap, unsigned pos)
4068 int i;
4069 unsigned nparam;
4070 unsigned n_in;
4072 i = isl_basic_map_alloc_inequality(bmap);
4073 if (i < 0)
4074 goto error;
4075 nparam = isl_basic_map_n_param(bmap);
4076 n_in = isl_basic_map_n_in(bmap);
4077 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4078 isl_int_set_si(bmap->ineq[i][0], -1);
4079 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4080 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4081 return isl_basic_map_finalize(bmap);
4082 error:
4083 isl_basic_map_free(bmap);
4084 return NULL;
4087 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4089 static __isl_give isl_basic_map *var_more_or_equal(
4090 __isl_take isl_basic_map *bmap, unsigned pos)
4092 int i;
4093 unsigned nparam;
4094 unsigned n_in;
4096 i = isl_basic_map_alloc_inequality(bmap);
4097 if (i < 0)
4098 goto error;
4099 nparam = isl_basic_map_n_param(bmap);
4100 n_in = isl_basic_map_n_in(bmap);
4101 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4102 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4103 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4104 return isl_basic_map_finalize(bmap);
4105 error:
4106 isl_basic_map_free(bmap);
4107 return NULL;
4110 __isl_give isl_basic_map *isl_basic_map_equal(
4111 __isl_take isl_space *dim, unsigned n_equal)
4113 int i;
4114 struct isl_basic_map *bmap;
4115 bmap = isl_basic_map_alloc_space(dim, 0, n_equal, 0);
4116 if (!bmap)
4117 return NULL;
4118 for (i = 0; i < n_equal && bmap; ++i)
4119 bmap = var_equal(bmap, i);
4120 return isl_basic_map_finalize(bmap);
4123 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4125 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *dim,
4126 unsigned pos)
4128 int i;
4129 struct isl_basic_map *bmap;
4130 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4131 if (!bmap)
4132 return NULL;
4133 for (i = 0; i < pos && bmap; ++i)
4134 bmap = var_equal(bmap, i);
4135 if (bmap)
4136 bmap = var_less(bmap, pos);
4137 return isl_basic_map_finalize(bmap);
4140 /* Return a relation on of dimension "dim" expressing i_[0..pos] <<= o_[0..pos]
4142 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
4143 __isl_take isl_space *dim, unsigned pos)
4145 int i;
4146 isl_basic_map *bmap;
4148 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4149 for (i = 0; i < pos; ++i)
4150 bmap = var_equal(bmap, i);
4151 bmap = var_less_or_equal(bmap, pos);
4152 return isl_basic_map_finalize(bmap);
4155 /* Return a relation on pairs of sets of dimension "dim" expressing i_pos > o_pos
4157 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *dim,
4158 unsigned pos)
4160 int i;
4161 struct isl_basic_map *bmap;
4162 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4163 if (!bmap)
4164 return NULL;
4165 for (i = 0; i < pos && bmap; ++i)
4166 bmap = var_equal(bmap, i);
4167 if (bmap)
4168 bmap = var_more(bmap, pos);
4169 return isl_basic_map_finalize(bmap);
4172 /* Return a relation on of dimension "dim" expressing i_[0..pos] >>= o_[0..pos]
4174 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
4175 __isl_take isl_space *dim, unsigned pos)
4177 int i;
4178 isl_basic_map *bmap;
4180 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4181 for (i = 0; i < pos; ++i)
4182 bmap = var_equal(bmap, i);
4183 bmap = var_more_or_equal(bmap, pos);
4184 return isl_basic_map_finalize(bmap);
4187 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *dims,
4188 unsigned n, int equal)
4190 struct isl_map *map;
4191 int i;
4193 if (n == 0 && equal)
4194 return isl_map_universe(dims);
4196 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
4198 for (i = 0; i + 1 < n; ++i)
4199 map = isl_map_add_basic_map(map,
4200 isl_basic_map_less_at(isl_space_copy(dims), i));
4201 if (n > 0) {
4202 if (equal)
4203 map = isl_map_add_basic_map(map,
4204 isl_basic_map_less_or_equal_at(dims, n - 1));
4205 else
4206 map = isl_map_add_basic_map(map,
4207 isl_basic_map_less_at(dims, n - 1));
4208 } else
4209 isl_space_free(dims);
4211 return map;
4214 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *dims, int equal)
4216 if (!dims)
4217 return NULL;
4218 return map_lex_lte_first(dims, dims->n_out, equal);
4221 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
4223 return map_lex_lte_first(dim, n, 0);
4226 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
4228 return map_lex_lte_first(dim, n, 1);
4231 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
4233 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
4236 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
4238 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
4241 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *dims,
4242 unsigned n, int equal)
4244 struct isl_map *map;
4245 int i;
4247 if (n == 0 && equal)
4248 return isl_map_universe(dims);
4250 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
4252 for (i = 0; i + 1 < n; ++i)
4253 map = isl_map_add_basic_map(map,
4254 isl_basic_map_more_at(isl_space_copy(dims), i));
4255 if (n > 0) {
4256 if (equal)
4257 map = isl_map_add_basic_map(map,
4258 isl_basic_map_more_or_equal_at(dims, n - 1));
4259 else
4260 map = isl_map_add_basic_map(map,
4261 isl_basic_map_more_at(dims, n - 1));
4262 } else
4263 isl_space_free(dims);
4265 return map;
4268 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *dims, int equal)
4270 if (!dims)
4271 return NULL;
4272 return map_lex_gte_first(dims, dims->n_out, equal);
4275 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
4277 return map_lex_gte_first(dim, n, 0);
4280 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
4282 return map_lex_gte_first(dim, n, 1);
4285 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
4287 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
4290 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
4292 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
4295 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
4296 __isl_take isl_set *set2)
4298 isl_map *map;
4299 map = isl_map_lex_le(isl_set_get_space(set1));
4300 map = isl_map_intersect_domain(map, set1);
4301 map = isl_map_intersect_range(map, set2);
4302 return map;
4305 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
4306 __isl_take isl_set *set2)
4308 isl_map *map;
4309 map = isl_map_lex_lt(isl_set_get_space(set1));
4310 map = isl_map_intersect_domain(map, set1);
4311 map = isl_map_intersect_range(map, set2);
4312 return map;
4315 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
4316 __isl_take isl_set *set2)
4318 isl_map *map;
4319 map = isl_map_lex_ge(isl_set_get_space(set1));
4320 map = isl_map_intersect_domain(map, set1);
4321 map = isl_map_intersect_range(map, set2);
4322 return map;
4325 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
4326 __isl_take isl_set *set2)
4328 isl_map *map;
4329 map = isl_map_lex_gt(isl_set_get_space(set1));
4330 map = isl_map_intersect_domain(map, set1);
4331 map = isl_map_intersect_range(map, set2);
4332 return map;
4335 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
4336 __isl_take isl_map *map2)
4338 isl_map *map;
4339 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
4340 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4341 map = isl_map_apply_range(map, isl_map_reverse(map2));
4342 return map;
4345 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
4346 __isl_take isl_map *map2)
4348 isl_map *map;
4349 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
4350 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4351 map = isl_map_apply_range(map, isl_map_reverse(map2));
4352 return map;
4355 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
4356 __isl_take isl_map *map2)
4358 isl_map *map;
4359 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
4360 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4361 map = isl_map_apply_range(map, isl_map_reverse(map2));
4362 return map;
4365 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
4366 __isl_take isl_map *map2)
4368 isl_map *map;
4369 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
4370 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4371 map = isl_map_apply_range(map, isl_map_reverse(map2));
4372 return map;
4375 __isl_give isl_basic_map *isl_basic_map_from_basic_set(
4376 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
4378 struct isl_basic_map *bmap;
4380 bset = isl_basic_set_cow(bset);
4381 if (!bset || !dim)
4382 goto error;
4384 isl_assert(bset->ctx, isl_space_compatible(bset->dim, dim), goto error);
4385 isl_space_free(bset->dim);
4386 bmap = (struct isl_basic_map *) bset;
4387 bmap->dim = dim;
4388 return isl_basic_map_finalize(bmap);
4389 error:
4390 isl_basic_set_free(bset);
4391 isl_space_free(dim);
4392 return NULL;
4395 /* For a div d = floor(f/m), add the constraint
4397 * f - m d >= 0
4399 static int add_upper_div_constraint(__isl_keep isl_basic_map *bmap,
4400 unsigned pos, isl_int *div)
4402 int i;
4403 unsigned total = isl_basic_map_total_dim(bmap);
4405 i = isl_basic_map_alloc_inequality(bmap);
4406 if (i < 0)
4407 return -1;
4408 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
4409 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
4411 return 0;
4414 /* For a div d = floor(f/m), add the constraint
4416 * -(f-(n-1)) + m d >= 0
4418 static int add_lower_div_constraint(__isl_keep isl_basic_map *bmap,
4419 unsigned pos, isl_int *div)
4421 int i;
4422 unsigned total = isl_basic_map_total_dim(bmap);
4424 i = isl_basic_map_alloc_inequality(bmap);
4425 if (i < 0)
4426 return -1;
4427 isl_seq_neg(bmap->ineq[i], div + 1, 1 + total);
4428 isl_int_set(bmap->ineq[i][1 + pos], div[0]);
4429 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
4430 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
4432 return 0;
4435 /* For a div d = floor(f/m), add the constraints
4437 * f - m d >= 0
4438 * -(f-(n-1)) + m d >= 0
4440 * Note that the second constraint is the negation of
4442 * f - m d >= n
4444 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
4445 unsigned pos, isl_int *div)
4447 if (add_upper_div_constraint(bmap, pos, div) < 0)
4448 return -1;
4449 if (add_lower_div_constraint(bmap, pos, div) < 0)
4450 return -1;
4451 return 0;
4454 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
4455 unsigned pos, isl_int *div)
4457 return isl_basic_map_add_div_constraints_var((isl_basic_map *)bset,
4458 pos, div);
4461 int isl_basic_map_add_div_constraints(struct isl_basic_map *bmap, unsigned div)
4463 unsigned total = isl_basic_map_total_dim(bmap);
4464 unsigned div_pos = total - bmap->n_div + div;
4466 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
4467 bmap->div[div]);
4470 /* For each known div d = floor(f/m), add the constraints
4472 * f - m d >= 0
4473 * -(f-(n-1)) + m d >= 0
4475 * Remove duplicate constraints in case of some these div constraints
4476 * already appear in "bmap".
4478 __isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
4479 __isl_take isl_basic_map *bmap)
4481 unsigned n_div;
4483 if (!bmap)
4484 return NULL;
4485 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4486 if (n_div == 0)
4487 return bmap;
4489 bmap = add_known_div_constraints(bmap);
4490 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
4491 bmap = isl_basic_map_finalize(bmap);
4492 return bmap;
4495 /* Add the div constraint of sign "sign" for div "div" of "bmap".
4497 * In particular, if this div is of the form d = floor(f/m),
4498 * then add the constraint
4500 * f - m d >= 0
4502 * if sign < 0 or the constraint
4504 * -(f-(n-1)) + m d >= 0
4506 * if sign > 0.
4508 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map *bmap,
4509 unsigned div, int sign)
4511 unsigned total;
4512 unsigned div_pos;
4514 if (!bmap)
4515 return -1;
4517 total = isl_basic_map_total_dim(bmap);
4518 div_pos = total - bmap->n_div + div;
4520 if (sign < 0)
4521 return add_upper_div_constraint(bmap, div_pos, bmap->div[div]);
4522 else
4523 return add_lower_div_constraint(bmap, div_pos, bmap->div[div]);
4526 int isl_basic_set_add_div_constraints(struct isl_basic_set *bset, unsigned div)
4528 return isl_basic_map_add_div_constraints(bset, div);
4531 struct isl_basic_set *isl_basic_map_underlying_set(
4532 struct isl_basic_map *bmap)
4534 if (!bmap)
4535 goto error;
4536 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
4537 bmap->n_div == 0 &&
4538 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
4539 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
4540 return (struct isl_basic_set *)bmap;
4541 bmap = isl_basic_map_cow(bmap);
4542 if (!bmap)
4543 goto error;
4544 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
4545 if (!bmap->dim)
4546 goto error;
4547 bmap->extra -= bmap->n_div;
4548 bmap->n_div = 0;
4549 bmap = isl_basic_map_finalize(bmap);
4550 return (struct isl_basic_set *)bmap;
4551 error:
4552 isl_basic_map_free(bmap);
4553 return NULL;
4556 __isl_give isl_basic_set *isl_basic_set_underlying_set(
4557 __isl_take isl_basic_set *bset)
4559 return isl_basic_map_underlying_set((isl_basic_map *)bset);
4562 /* Replace each element in "list" by the result of applying
4563 * isl_basic_map_underlying_set to the element.
4565 __isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
4566 __isl_take isl_basic_map_list *list)
4568 int i, n;
4570 if (!list)
4571 return NULL;
4573 n = isl_basic_map_list_n_basic_map(list);
4574 for (i = 0; i < n; ++i) {
4575 isl_basic_map *bmap;
4576 isl_basic_set *bset;
4578 bmap = isl_basic_map_list_get_basic_map(list, i);
4579 bset = isl_basic_set_underlying_set(bmap);
4580 list = isl_basic_set_list_set_basic_set(list, i, bset);
4583 return list;
4586 struct isl_basic_map *isl_basic_map_overlying_set(
4587 struct isl_basic_set *bset, struct isl_basic_map *like)
4589 struct isl_basic_map *bmap;
4590 struct isl_ctx *ctx;
4591 unsigned total;
4592 int i;
4594 if (!bset || !like)
4595 goto error;
4596 ctx = bset->ctx;
4597 isl_assert(ctx, bset->n_div == 0, goto error);
4598 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
4599 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
4600 goto error);
4601 if (like->n_div == 0) {
4602 isl_space *space = isl_basic_map_get_space(like);
4603 isl_basic_map_free(like);
4604 return isl_basic_map_reset_space(bset, space);
4606 bset = isl_basic_set_cow(bset);
4607 if (!bset)
4608 goto error;
4609 total = bset->dim->n_out + bset->extra;
4610 bmap = (struct isl_basic_map *)bset;
4611 isl_space_free(bmap->dim);
4612 bmap->dim = isl_space_copy(like->dim);
4613 if (!bmap->dim)
4614 goto error;
4615 bmap->n_div = like->n_div;
4616 bmap->extra += like->n_div;
4617 if (bmap->extra) {
4618 unsigned ltotal;
4619 isl_int **div;
4620 ltotal = total - bmap->extra + like->extra;
4621 if (ltotal > total)
4622 ltotal = total;
4623 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
4624 bmap->extra * (1 + 1 + total));
4625 if (isl_blk_is_error(bmap->block2))
4626 goto error;
4627 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
4628 if (!div)
4629 goto error;
4630 bmap->div = div;
4631 for (i = 0; i < bmap->extra; ++i)
4632 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
4633 for (i = 0; i < like->n_div; ++i) {
4634 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
4635 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
4637 bmap = isl_basic_map_add_known_div_constraints(bmap);
4639 isl_basic_map_free(like);
4640 bmap = isl_basic_map_simplify(bmap);
4641 bmap = isl_basic_map_finalize(bmap);
4642 return bmap;
4643 error:
4644 isl_basic_map_free(like);
4645 isl_basic_set_free(bset);
4646 return NULL;
4649 struct isl_basic_set *isl_basic_set_from_underlying_set(
4650 struct isl_basic_set *bset, struct isl_basic_set *like)
4652 return (struct isl_basic_set *)
4653 isl_basic_map_overlying_set(bset, (struct isl_basic_map *)like);
4656 struct isl_set *isl_set_from_underlying_set(
4657 struct isl_set *set, struct isl_basic_set *like)
4659 int i;
4661 if (!set || !like)
4662 goto error;
4663 isl_assert(set->ctx, set->dim->n_out == isl_basic_set_total_dim(like),
4664 goto error);
4665 if (isl_space_is_equal(set->dim, like->dim) && like->n_div == 0) {
4666 isl_basic_set_free(like);
4667 return set;
4669 set = isl_set_cow(set);
4670 if (!set)
4671 goto error;
4672 for (i = 0; i < set->n; ++i) {
4673 set->p[i] = isl_basic_set_from_underlying_set(set->p[i],
4674 isl_basic_set_copy(like));
4675 if (!set->p[i])
4676 goto error;
4678 isl_space_free(set->dim);
4679 set->dim = isl_space_copy(like->dim);
4680 if (!set->dim)
4681 goto error;
4682 isl_basic_set_free(like);
4683 return set;
4684 error:
4685 isl_basic_set_free(like);
4686 isl_set_free(set);
4687 return NULL;
4690 struct isl_set *isl_map_underlying_set(struct isl_map *map)
4692 int i;
4694 map = isl_map_cow(map);
4695 if (!map)
4696 return NULL;
4697 map->dim = isl_space_cow(map->dim);
4698 if (!map->dim)
4699 goto error;
4701 for (i = 1; i < map->n; ++i)
4702 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
4703 goto error);
4704 for (i = 0; i < map->n; ++i) {
4705 map->p[i] = (struct isl_basic_map *)
4706 isl_basic_map_underlying_set(map->p[i]);
4707 if (!map->p[i])
4708 goto error;
4710 if (map->n == 0)
4711 map->dim = isl_space_underlying(map->dim, 0);
4712 else {
4713 isl_space_free(map->dim);
4714 map->dim = isl_space_copy(map->p[0]->dim);
4716 if (!map->dim)
4717 goto error;
4718 return (struct isl_set *)map;
4719 error:
4720 isl_map_free(map);
4721 return NULL;
4724 struct isl_set *isl_set_to_underlying_set(struct isl_set *set)
4726 return (struct isl_set *)isl_map_underlying_set((struct isl_map *)set);
4729 __isl_give isl_basic_map *isl_basic_map_reset_space(
4730 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
4732 isl_bool equal;
4734 if (!bmap)
4735 goto error;
4736 equal = isl_space_is_equal(bmap->dim, space);
4737 if (equal < 0)
4738 goto error;
4739 if (equal) {
4740 isl_space_free(space);
4741 return bmap;
4743 bmap = isl_basic_map_cow(bmap);
4744 if (!bmap || !space)
4745 goto error;
4747 isl_space_free(bmap->dim);
4748 bmap->dim = space;
4750 bmap = isl_basic_map_finalize(bmap);
4752 return bmap;
4753 error:
4754 isl_basic_map_free(bmap);
4755 isl_space_free(space);
4756 return NULL;
4759 __isl_give isl_basic_set *isl_basic_set_reset_space(
4760 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
4762 return (isl_basic_set *)isl_basic_map_reset_space((isl_basic_map *)bset,
4763 dim);
4766 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
4767 __isl_take isl_space *dim)
4769 int i;
4771 map = isl_map_cow(map);
4772 if (!map || !dim)
4773 goto error;
4775 for (i = 0; i < map->n; ++i) {
4776 map->p[i] = isl_basic_map_reset_space(map->p[i],
4777 isl_space_copy(dim));
4778 if (!map->p[i])
4779 goto error;
4781 isl_space_free(map->dim);
4782 map->dim = dim;
4784 return map;
4785 error:
4786 isl_map_free(map);
4787 isl_space_free(dim);
4788 return NULL;
4791 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
4792 __isl_take isl_space *dim)
4794 return (struct isl_set *) isl_map_reset_space((struct isl_map *)set, dim);
4797 /* Compute the parameter domain of the given basic set.
4799 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
4801 isl_space *space;
4802 unsigned n;
4804 if (isl_basic_set_is_params(bset))
4805 return bset;
4807 n = isl_basic_set_dim(bset, isl_dim_set);
4808 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
4809 space = isl_basic_set_get_space(bset);
4810 space = isl_space_params(space);
4811 bset = isl_basic_set_reset_space(bset, space);
4812 return bset;
4815 /* Construct a zero-dimensional basic set with the given parameter domain.
4817 __isl_give isl_basic_set *isl_basic_set_from_params(
4818 __isl_take isl_basic_set *bset)
4820 isl_space *space;
4821 space = isl_basic_set_get_space(bset);
4822 space = isl_space_set_from_params(space);
4823 bset = isl_basic_set_reset_space(bset, space);
4824 return bset;
4827 /* Compute the parameter domain of the given set.
4829 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
4831 isl_space *space;
4832 unsigned n;
4834 if (isl_set_is_params(set))
4835 return set;
4837 n = isl_set_dim(set, isl_dim_set);
4838 set = isl_set_project_out(set, isl_dim_set, 0, n);
4839 space = isl_set_get_space(set);
4840 space = isl_space_params(space);
4841 set = isl_set_reset_space(set, space);
4842 return set;
4845 /* Construct a zero-dimensional set with the given parameter domain.
4847 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
4849 isl_space *space;
4850 space = isl_set_get_space(set);
4851 space = isl_space_set_from_params(space);
4852 set = isl_set_reset_space(set, space);
4853 return set;
4856 /* Compute the parameter domain of the given map.
4858 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
4860 isl_space *space;
4861 unsigned n;
4863 n = isl_map_dim(map, isl_dim_in);
4864 map = isl_map_project_out(map, isl_dim_in, 0, n);
4865 n = isl_map_dim(map, isl_dim_out);
4866 map = isl_map_project_out(map, isl_dim_out, 0, n);
4867 space = isl_map_get_space(map);
4868 space = isl_space_params(space);
4869 map = isl_map_reset_space(map, space);
4870 return map;
4873 struct isl_basic_set *isl_basic_map_domain(struct isl_basic_map *bmap)
4875 isl_space *space;
4876 unsigned n_out;
4878 if (!bmap)
4879 return NULL;
4880 space = isl_space_domain(isl_basic_map_get_space(bmap));
4882 n_out = isl_basic_map_n_out(bmap);
4883 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
4885 return isl_basic_map_reset_space(bmap, space);
4888 int isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
4890 if (!bmap)
4891 return -1;
4892 return isl_space_may_be_set(bmap->dim);
4895 /* Is this basic map actually a set?
4896 * Users should never call this function. Outside of isl,
4897 * the type should indicate whether something is a set or a map.
4899 int isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
4901 if (!bmap)
4902 return -1;
4903 return isl_space_is_set(bmap->dim);
4906 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
4908 if (!bmap)
4909 return NULL;
4910 if (isl_basic_map_is_set(bmap))
4911 return bmap;
4912 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
4915 __isl_give isl_basic_map *isl_basic_map_domain_map(
4916 __isl_take isl_basic_map *bmap)
4918 int i, k;
4919 isl_space *dim;
4920 isl_basic_map *domain;
4921 int nparam, n_in, n_out;
4922 unsigned total;
4924 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4925 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4926 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4928 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
4929 domain = isl_basic_map_universe(dim);
4931 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
4932 bmap = isl_basic_map_apply_range(bmap, domain);
4933 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
4935 total = isl_basic_map_total_dim(bmap);
4937 for (i = 0; i < n_in; ++i) {
4938 k = isl_basic_map_alloc_equality(bmap);
4939 if (k < 0)
4940 goto error;
4941 isl_seq_clr(bmap->eq[k], 1 + total);
4942 isl_int_set_si(bmap->eq[k][1 + nparam + i], -1);
4943 isl_int_set_si(bmap->eq[k][1 + nparam + n_in + n_out + i], 1);
4946 bmap = isl_basic_map_gauss(bmap, NULL);
4947 return isl_basic_map_finalize(bmap);
4948 error:
4949 isl_basic_map_free(bmap);
4950 return NULL;
4953 __isl_give isl_basic_map *isl_basic_map_range_map(
4954 __isl_take isl_basic_map *bmap)
4956 int i, k;
4957 isl_space *dim;
4958 isl_basic_map *range;
4959 int nparam, n_in, n_out;
4960 unsigned total;
4962 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4963 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4964 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4966 dim = isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap)));
4967 range = isl_basic_map_universe(dim);
4969 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
4970 bmap = isl_basic_map_apply_range(bmap, range);
4971 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
4973 total = isl_basic_map_total_dim(bmap);
4975 for (i = 0; i < n_out; ++i) {
4976 k = isl_basic_map_alloc_equality(bmap);
4977 if (k < 0)
4978 goto error;
4979 isl_seq_clr(bmap->eq[k], 1 + total);
4980 isl_int_set_si(bmap->eq[k][1 + nparam + n_in + i], -1);
4981 isl_int_set_si(bmap->eq[k][1 + nparam + n_in + n_out + i], 1);
4984 bmap = isl_basic_map_gauss(bmap, NULL);
4985 return isl_basic_map_finalize(bmap);
4986 error:
4987 isl_basic_map_free(bmap);
4988 return NULL;
4991 int isl_map_may_be_set(__isl_keep isl_map *map)
4993 if (!map)
4994 return -1;
4995 return isl_space_may_be_set(map->dim);
4998 /* Is this map actually a set?
4999 * Users should never call this function. Outside of isl,
5000 * the type should indicate whether something is a set or a map.
5002 int isl_map_is_set(__isl_keep isl_map *map)
5004 if (!map)
5005 return -1;
5006 return isl_space_is_set(map->dim);
5009 struct isl_set *isl_map_range(struct isl_map *map)
5011 int i;
5012 struct isl_set *set;
5014 if (!map)
5015 goto error;
5016 if (isl_map_is_set(map))
5017 return (isl_set *)map;
5019 map = isl_map_cow(map);
5020 if (!map)
5021 goto error;
5023 set = (struct isl_set *) map;
5024 set->dim = isl_space_range(set->dim);
5025 if (!set->dim)
5026 goto error;
5027 for (i = 0; i < map->n; ++i) {
5028 set->p[i] = isl_basic_map_range(map->p[i]);
5029 if (!set->p[i])
5030 goto error;
5032 ISL_F_CLR(set, ISL_MAP_DISJOINT);
5033 ISL_F_CLR(set, ISL_SET_NORMALIZED);
5034 return set;
5035 error:
5036 isl_map_free(map);
5037 return NULL;
5040 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
5042 int i;
5044 map = isl_map_cow(map);
5045 if (!map)
5046 return NULL;
5048 map->dim = isl_space_domain_map(map->dim);
5049 if (!map->dim)
5050 goto error;
5051 for (i = 0; i < map->n; ++i) {
5052 map->p[i] = isl_basic_map_domain_map(map->p[i]);
5053 if (!map->p[i])
5054 goto error;
5056 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5057 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5058 return map;
5059 error:
5060 isl_map_free(map);
5061 return NULL;
5064 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
5066 int i;
5067 isl_space *range_dim;
5069 map = isl_map_cow(map);
5070 if (!map)
5071 return NULL;
5073 range_dim = isl_space_range(isl_map_get_space(map));
5074 range_dim = isl_space_from_range(range_dim);
5075 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
5076 map->dim = isl_space_join(map->dim, range_dim);
5077 if (!map->dim)
5078 goto error;
5079 for (i = 0; i < map->n; ++i) {
5080 map->p[i] = isl_basic_map_range_map(map->p[i]);
5081 if (!map->p[i])
5082 goto error;
5084 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5085 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5086 return map;
5087 error:
5088 isl_map_free(map);
5089 return NULL;
5092 /* Given a wrapped map of the form A[B -> C],
5093 * return the map A[B -> C] -> B.
5095 __isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
5097 isl_id *id;
5098 isl_map *map;
5100 if (!set)
5101 return NULL;
5102 if (!isl_set_has_tuple_id(set))
5103 return isl_map_domain_map(isl_set_unwrap(set));
5105 id = isl_set_get_tuple_id(set);
5106 map = isl_map_domain_map(isl_set_unwrap(set));
5107 map = isl_map_set_tuple_id(map, isl_dim_in, id);
5109 return map;
5112 __isl_give isl_map *isl_map_from_set(__isl_take isl_set *set,
5113 __isl_take isl_space *dim)
5115 int i;
5116 struct isl_map *map = NULL;
5118 set = isl_set_cow(set);
5119 if (!set || !dim)
5120 goto error;
5121 isl_assert(set->ctx, isl_space_compatible(set->dim, dim), goto error);
5122 map = (struct isl_map *)set;
5123 for (i = 0; i < set->n; ++i) {
5124 map->p[i] = isl_basic_map_from_basic_set(
5125 set->p[i], isl_space_copy(dim));
5126 if (!map->p[i])
5127 goto error;
5129 isl_space_free(map->dim);
5130 map->dim = dim;
5131 return map;
5132 error:
5133 isl_space_free(dim);
5134 isl_set_free(set);
5135 return NULL;
5138 __isl_give isl_basic_map *isl_basic_map_from_domain(
5139 __isl_take isl_basic_set *bset)
5141 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
5144 __isl_give isl_basic_map *isl_basic_map_from_range(
5145 __isl_take isl_basic_set *bset)
5147 isl_space *space;
5148 space = isl_basic_set_get_space(bset);
5149 space = isl_space_from_range(space);
5150 bset = isl_basic_set_reset_space(bset, space);
5151 return (isl_basic_map *)bset;
5154 /* Create a relation with the given set as range.
5155 * The domain of the created relation is a zero-dimensional
5156 * flat anonymous space.
5158 __isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
5160 isl_space *space;
5161 space = isl_set_get_space(set);
5162 space = isl_space_from_range(space);
5163 set = isl_set_reset_space(set, space);
5164 return (struct isl_map *)set;
5167 /* Create a relation with the given set as domain.
5168 * The range of the created relation is a zero-dimensional
5169 * flat anonymous space.
5171 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
5173 return isl_map_reverse(isl_map_from_range(set));
5176 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
5177 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
5179 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
5182 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
5183 __isl_take isl_set *range)
5185 return isl_map_apply_range(isl_map_reverse(domain), range);
5188 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *dim, int n,
5189 unsigned flags)
5191 struct isl_map *map;
5193 if (!dim)
5194 return NULL;
5195 if (n < 0)
5196 isl_die(dim->ctx, isl_error_internal,
5197 "negative number of basic maps", goto error);
5198 map = isl_alloc(dim->ctx, struct isl_map,
5199 sizeof(struct isl_map) +
5200 (n - 1) * sizeof(struct isl_basic_map *));
5201 if (!map)
5202 goto error;
5204 map->ctx = dim->ctx;
5205 isl_ctx_ref(map->ctx);
5206 map->ref = 1;
5207 map->size = n;
5208 map->n = 0;
5209 map->dim = dim;
5210 map->flags = flags;
5211 return map;
5212 error:
5213 isl_space_free(dim);
5214 return NULL;
5217 struct isl_map *isl_map_alloc(struct isl_ctx *ctx,
5218 unsigned nparam, unsigned in, unsigned out, int n,
5219 unsigned flags)
5221 struct isl_map *map;
5222 isl_space *dims;
5224 dims = isl_space_alloc(ctx, nparam, in, out);
5225 if (!dims)
5226 return NULL;
5228 map = isl_map_alloc_space(dims, n, flags);
5229 return map;
5232 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *dim)
5234 struct isl_basic_map *bmap;
5235 bmap = isl_basic_map_alloc_space(dim, 0, 1, 0);
5236 bmap = isl_basic_map_set_to_empty(bmap);
5237 return bmap;
5240 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *dim)
5242 struct isl_basic_set *bset;
5243 bset = isl_basic_set_alloc_space(dim, 0, 1, 0);
5244 bset = isl_basic_set_set_to_empty(bset);
5245 return bset;
5248 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *dim)
5250 struct isl_basic_map *bmap;
5251 bmap = isl_basic_map_alloc_space(dim, 0, 0, 0);
5252 bmap = isl_basic_map_finalize(bmap);
5253 return bmap;
5256 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *dim)
5258 struct isl_basic_set *bset;
5259 bset = isl_basic_set_alloc_space(dim, 0, 0, 0);
5260 bset = isl_basic_set_finalize(bset);
5261 return bset;
5264 __isl_give isl_basic_map *isl_basic_map_nat_universe(__isl_take isl_space *dim)
5266 int i;
5267 unsigned total = isl_space_dim(dim, isl_dim_all);
5268 isl_basic_map *bmap;
5270 bmap= isl_basic_map_alloc_space(dim, 0, 0, total);
5271 for (i = 0; i < total; ++i) {
5272 int k = isl_basic_map_alloc_inequality(bmap);
5273 if (k < 0)
5274 goto error;
5275 isl_seq_clr(bmap->ineq[k], 1 + total);
5276 isl_int_set_si(bmap->ineq[k][1 + i], 1);
5278 return bmap;
5279 error:
5280 isl_basic_map_free(bmap);
5281 return NULL;
5284 __isl_give isl_basic_set *isl_basic_set_nat_universe(__isl_take isl_space *dim)
5286 return isl_basic_map_nat_universe(dim);
5289 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
5291 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
5294 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
5296 return isl_map_nat_universe(dim);
5299 __isl_give isl_map *isl_map_empty(__isl_take isl_space *dim)
5301 return isl_map_alloc_space(dim, 0, ISL_MAP_DISJOINT);
5304 __isl_give isl_set *isl_set_empty(__isl_take isl_space *dim)
5306 return isl_set_alloc_space(dim, 0, ISL_MAP_DISJOINT);
5309 __isl_give isl_map *isl_map_universe(__isl_take isl_space *dim)
5311 struct isl_map *map;
5312 if (!dim)
5313 return NULL;
5314 map = isl_map_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5315 map = isl_map_add_basic_map(map, isl_basic_map_universe(dim));
5316 return map;
5319 __isl_give isl_set *isl_set_universe(__isl_take isl_space *dim)
5321 struct isl_set *set;
5322 if (!dim)
5323 return NULL;
5324 set = isl_set_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5325 set = isl_set_add_basic_set(set, isl_basic_set_universe(dim));
5326 return set;
5329 struct isl_map *isl_map_dup(struct isl_map *map)
5331 int i;
5332 struct isl_map *dup;
5334 if (!map)
5335 return NULL;
5336 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
5337 for (i = 0; i < map->n; ++i)
5338 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
5339 return dup;
5342 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
5343 __isl_take isl_basic_map *bmap)
5345 if (!bmap || !map)
5346 goto error;
5347 if (isl_basic_map_plain_is_empty(bmap)) {
5348 isl_basic_map_free(bmap);
5349 return map;
5351 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
5352 isl_assert(map->ctx, map->n < map->size, goto error);
5353 map->p[map->n] = bmap;
5354 map->n++;
5355 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5356 return map;
5357 error:
5358 if (map)
5359 isl_map_free(map);
5360 if (bmap)
5361 isl_basic_map_free(bmap);
5362 return NULL;
5365 __isl_null isl_map *isl_map_free(__isl_take isl_map *map)
5367 int i;
5369 if (!map)
5370 return NULL;
5372 if (--map->ref > 0)
5373 return NULL;
5375 isl_ctx_deref(map->ctx);
5376 for (i = 0; i < map->n; ++i)
5377 isl_basic_map_free(map->p[i]);
5378 isl_space_free(map->dim);
5379 free(map);
5381 return NULL;
5384 static struct isl_basic_map *isl_basic_map_fix_pos_si(
5385 struct isl_basic_map *bmap, unsigned pos, int value)
5387 int j;
5389 bmap = isl_basic_map_cow(bmap);
5390 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
5391 j = isl_basic_map_alloc_equality(bmap);
5392 if (j < 0)
5393 goto error;
5394 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
5395 isl_int_set_si(bmap->eq[j][pos], -1);
5396 isl_int_set_si(bmap->eq[j][0], value);
5397 bmap = isl_basic_map_simplify(bmap);
5398 return isl_basic_map_finalize(bmap);
5399 error:
5400 isl_basic_map_free(bmap);
5401 return NULL;
5404 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
5405 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
5407 int j;
5409 bmap = isl_basic_map_cow(bmap);
5410 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
5411 j = isl_basic_map_alloc_equality(bmap);
5412 if (j < 0)
5413 goto error;
5414 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
5415 isl_int_set_si(bmap->eq[j][pos], -1);
5416 isl_int_set(bmap->eq[j][0], value);
5417 bmap = isl_basic_map_simplify(bmap);
5418 return isl_basic_map_finalize(bmap);
5419 error:
5420 isl_basic_map_free(bmap);
5421 return NULL;
5424 struct isl_basic_map *isl_basic_map_fix_si(struct isl_basic_map *bmap,
5425 enum isl_dim_type type, unsigned pos, int value)
5427 if (!bmap)
5428 return NULL;
5429 isl_assert(bmap->ctx, pos < isl_basic_map_dim(bmap, type), goto error);
5430 return isl_basic_map_fix_pos_si(bmap,
5431 isl_basic_map_offset(bmap, type) + pos, value);
5432 error:
5433 isl_basic_map_free(bmap);
5434 return NULL;
5437 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
5438 enum isl_dim_type type, unsigned pos, isl_int value)
5440 if (!bmap)
5441 return NULL;
5442 isl_assert(bmap->ctx, pos < isl_basic_map_dim(bmap, type), goto error);
5443 return isl_basic_map_fix_pos(bmap,
5444 isl_basic_map_offset(bmap, type) + pos, value);
5445 error:
5446 isl_basic_map_free(bmap);
5447 return NULL;
5450 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
5451 * to be equal to "v".
5453 __isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
5454 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
5456 if (!bmap || !v)
5457 goto error;
5458 if (!isl_val_is_int(v))
5459 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
5460 "expecting integer value", goto error);
5461 if (pos >= isl_basic_map_dim(bmap, type))
5462 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
5463 "index out of bounds", goto error);
5464 pos += isl_basic_map_offset(bmap, type);
5465 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
5466 isl_val_free(v);
5467 return bmap;
5468 error:
5469 isl_basic_map_free(bmap);
5470 isl_val_free(v);
5471 return NULL;
5474 /* Fix the value of the variable at position "pos" of type "type" of "bset"
5475 * to be equal to "v".
5477 __isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
5478 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
5480 return isl_basic_map_fix_val(bset, type, pos, v);
5483 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
5484 enum isl_dim_type type, unsigned pos, int value)
5486 return (struct isl_basic_set *)
5487 isl_basic_map_fix_si((struct isl_basic_map *)bset,
5488 type, pos, value);
5491 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
5492 enum isl_dim_type type, unsigned pos, isl_int value)
5494 return (struct isl_basic_set *)
5495 isl_basic_map_fix((struct isl_basic_map *)bset,
5496 type, pos, value);
5499 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
5500 unsigned input, int value)
5502 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
5505 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
5506 unsigned dim, int value)
5508 return (struct isl_basic_set *)
5509 isl_basic_map_fix_si((struct isl_basic_map *)bset,
5510 isl_dim_set, dim, value);
5513 static int remove_if_empty(__isl_keep isl_map *map, int i)
5515 int empty = isl_basic_map_plain_is_empty(map->p[i]);
5517 if (empty < 0)
5518 return -1;
5519 if (!empty)
5520 return 0;
5522 isl_basic_map_free(map->p[i]);
5523 if (i != map->n - 1) {
5524 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5525 map->p[i] = map->p[map->n - 1];
5527 map->n--;
5529 return 0;
5532 /* Perform "fn" on each basic map of "map", where we may not be holding
5533 * the only reference to "map".
5534 * In particular, "fn" should be a semantics preserving operation
5535 * that we want to apply to all copies of "map". We therefore need
5536 * to be careful not to modify "map" in a way that breaks "map"
5537 * in case anything goes wrong.
5539 __isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
5540 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
5542 struct isl_basic_map *bmap;
5543 int i;
5545 if (!map)
5546 return NULL;
5548 for (i = map->n - 1; i >= 0; --i) {
5549 bmap = isl_basic_map_copy(map->p[i]);
5550 bmap = fn(bmap);
5551 if (!bmap)
5552 goto error;
5553 isl_basic_map_free(map->p[i]);
5554 map->p[i] = bmap;
5555 if (remove_if_empty(map, i) < 0)
5556 goto error;
5559 return map;
5560 error:
5561 isl_map_free(map);
5562 return NULL;
5565 struct isl_map *isl_map_fix_si(struct isl_map *map,
5566 enum isl_dim_type type, unsigned pos, int value)
5568 int i;
5570 map = isl_map_cow(map);
5571 if (!map)
5572 return NULL;
5574 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
5575 for (i = map->n - 1; i >= 0; --i) {
5576 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
5577 if (remove_if_empty(map, i) < 0)
5578 goto error;
5580 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5581 return map;
5582 error:
5583 isl_map_free(map);
5584 return NULL;
5587 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
5588 enum isl_dim_type type, unsigned pos, int value)
5590 return (struct isl_set *)
5591 isl_map_fix_si((struct isl_map *)set, type, pos, value);
5594 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
5595 enum isl_dim_type type, unsigned pos, isl_int value)
5597 int i;
5599 map = isl_map_cow(map);
5600 if (!map)
5601 return NULL;
5603 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
5604 for (i = 0; i < map->n; ++i) {
5605 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
5606 if (!map->p[i])
5607 goto error;
5609 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5610 return map;
5611 error:
5612 isl_map_free(map);
5613 return NULL;
5616 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
5617 enum isl_dim_type type, unsigned pos, isl_int value)
5619 return (struct isl_set *)isl_map_fix((isl_map *)set, type, pos, value);
5622 /* Fix the value of the variable at position "pos" of type "type" of "map"
5623 * to be equal to "v".
5625 __isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
5626 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
5628 int i;
5630 map = isl_map_cow(map);
5631 if (!map || !v)
5632 goto error;
5634 if (!isl_val_is_int(v))
5635 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5636 "expecting integer value", goto error);
5637 if (pos >= isl_map_dim(map, type))
5638 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5639 "index out of bounds", goto error);
5640 for (i = map->n - 1; i >= 0; --i) {
5641 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
5642 isl_val_copy(v));
5643 if (remove_if_empty(map, i) < 0)
5644 goto error;
5646 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5647 isl_val_free(v);
5648 return map;
5649 error:
5650 isl_map_free(map);
5651 isl_val_free(v);
5652 return NULL;
5655 /* Fix the value of the variable at position "pos" of type "type" of "set"
5656 * to be equal to "v".
5658 __isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
5659 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
5661 return isl_map_fix_val(set, type, pos, v);
5664 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
5665 unsigned input, int value)
5667 return isl_map_fix_si(map, isl_dim_in, input, value);
5670 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
5672 return (struct isl_set *)
5673 isl_map_fix_si((struct isl_map *)set, isl_dim_set, dim, value);
5676 static __isl_give isl_basic_map *basic_map_bound_si(
5677 __isl_take isl_basic_map *bmap,
5678 enum isl_dim_type type, unsigned pos, int value, int upper)
5680 int j;
5682 if (!bmap)
5683 return NULL;
5684 isl_assert(bmap->ctx, pos < isl_basic_map_dim(bmap, type), goto error);
5685 pos += isl_basic_map_offset(bmap, type);
5686 bmap = isl_basic_map_cow(bmap);
5687 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
5688 j = isl_basic_map_alloc_inequality(bmap);
5689 if (j < 0)
5690 goto error;
5691 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
5692 if (upper) {
5693 isl_int_set_si(bmap->ineq[j][pos], -1);
5694 isl_int_set_si(bmap->ineq[j][0], value);
5695 } else {
5696 isl_int_set_si(bmap->ineq[j][pos], 1);
5697 isl_int_set_si(bmap->ineq[j][0], -value);
5699 bmap = isl_basic_map_simplify(bmap);
5700 return isl_basic_map_finalize(bmap);
5701 error:
5702 isl_basic_map_free(bmap);
5703 return NULL;
5706 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
5707 __isl_take isl_basic_map *bmap,
5708 enum isl_dim_type type, unsigned pos, int value)
5710 return basic_map_bound_si(bmap, type, pos, value, 0);
5713 /* Constrain the values of the given dimension to be no greater than "value".
5715 __isl_give isl_basic_map *isl_basic_map_upper_bound_si(
5716 __isl_take isl_basic_map *bmap,
5717 enum isl_dim_type type, unsigned pos, int value)
5719 return basic_map_bound_si(bmap, type, pos, value, 1);
5722 struct isl_basic_set *isl_basic_set_lower_bound_dim(struct isl_basic_set *bset,
5723 unsigned dim, isl_int value)
5725 int j;
5727 bset = isl_basic_set_cow(bset);
5728 bset = isl_basic_set_extend_constraints(bset, 0, 1);
5729 j = isl_basic_set_alloc_inequality(bset);
5730 if (j < 0)
5731 goto error;
5732 isl_seq_clr(bset->ineq[j], 1 + isl_basic_set_total_dim(bset));
5733 isl_int_set_si(bset->ineq[j][1 + isl_basic_set_n_param(bset) + dim], 1);
5734 isl_int_neg(bset->ineq[j][0], value);
5735 bset = isl_basic_set_simplify(bset);
5736 return isl_basic_set_finalize(bset);
5737 error:
5738 isl_basic_set_free(bset);
5739 return NULL;
5742 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
5743 enum isl_dim_type type, unsigned pos, int value, int upper)
5745 int i;
5747 map = isl_map_cow(map);
5748 if (!map)
5749 return NULL;
5751 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
5752 for (i = 0; i < map->n; ++i) {
5753 map->p[i] = basic_map_bound_si(map->p[i],
5754 type, pos, value, upper);
5755 if (!map->p[i])
5756 goto error;
5758 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5759 return map;
5760 error:
5761 isl_map_free(map);
5762 return NULL;
5765 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
5766 enum isl_dim_type type, unsigned pos, int value)
5768 return map_bound_si(map, type, pos, value, 0);
5771 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
5772 enum isl_dim_type type, unsigned pos, int value)
5774 return map_bound_si(map, type, pos, value, 1);
5777 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
5778 enum isl_dim_type type, unsigned pos, int value)
5780 return (struct isl_set *)
5781 isl_map_lower_bound_si((struct isl_map *)set, type, pos, value);
5784 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
5785 enum isl_dim_type type, unsigned pos, int value)
5787 return isl_map_upper_bound_si(set, type, pos, value);
5790 /* Bound the given variable of "bmap" from below (or above is "upper"
5791 * is set) to "value".
5793 static __isl_give isl_basic_map *basic_map_bound(
5794 __isl_take isl_basic_map *bmap,
5795 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
5797 int j;
5799 if (!bmap)
5800 return NULL;
5801 if (pos >= isl_basic_map_dim(bmap, type))
5802 isl_die(bmap->ctx, isl_error_invalid,
5803 "index out of bounds", goto error);
5804 pos += isl_basic_map_offset(bmap, type);
5805 bmap = isl_basic_map_cow(bmap);
5806 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
5807 j = isl_basic_map_alloc_inequality(bmap);
5808 if (j < 0)
5809 goto error;
5810 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
5811 if (upper) {
5812 isl_int_set_si(bmap->ineq[j][pos], -1);
5813 isl_int_set(bmap->ineq[j][0], value);
5814 } else {
5815 isl_int_set_si(bmap->ineq[j][pos], 1);
5816 isl_int_neg(bmap->ineq[j][0], value);
5818 bmap = isl_basic_map_simplify(bmap);
5819 return isl_basic_map_finalize(bmap);
5820 error:
5821 isl_basic_map_free(bmap);
5822 return NULL;
5825 /* Bound the given variable of "map" from below (or above is "upper"
5826 * is set) to "value".
5828 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
5829 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
5831 int i;
5833 map = isl_map_cow(map);
5834 if (!map)
5835 return NULL;
5837 if (pos >= isl_map_dim(map, type))
5838 isl_die(map->ctx, isl_error_invalid,
5839 "index out of bounds", goto error);
5840 for (i = map->n - 1; i >= 0; --i) {
5841 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
5842 if (remove_if_empty(map, i) < 0)
5843 goto error;
5845 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5846 return map;
5847 error:
5848 isl_map_free(map);
5849 return NULL;
5852 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
5853 enum isl_dim_type type, unsigned pos, isl_int value)
5855 return map_bound(map, type, pos, value, 0);
5858 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
5859 enum isl_dim_type type, unsigned pos, isl_int value)
5861 return map_bound(map, type, pos, value, 1);
5864 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
5865 enum isl_dim_type type, unsigned pos, isl_int value)
5867 return isl_map_lower_bound(set, type, pos, value);
5870 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
5871 enum isl_dim_type type, unsigned pos, isl_int value)
5873 return isl_map_upper_bound(set, type, pos, value);
5876 /* Force the values of the variable at position "pos" of type "type" of "set"
5877 * to be no smaller than "value".
5879 __isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
5880 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
5882 if (!value)
5883 goto error;
5884 if (!isl_val_is_int(value))
5885 isl_die(isl_set_get_ctx(set), isl_error_invalid,
5886 "expecting integer value", goto error);
5887 set = isl_set_lower_bound(set, type, pos, value->n);
5888 isl_val_free(value);
5889 return set;
5890 error:
5891 isl_val_free(value);
5892 isl_set_free(set);
5893 return NULL;
5896 /* Force the values of the variable at position "pos" of type "type" of "set"
5897 * to be no greater than "value".
5899 __isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
5900 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
5902 if (!value)
5903 goto error;
5904 if (!isl_val_is_int(value))
5905 isl_die(isl_set_get_ctx(set), isl_error_invalid,
5906 "expecting integer value", goto error);
5907 set = isl_set_upper_bound(set, type, pos, value->n);
5908 isl_val_free(value);
5909 return set;
5910 error:
5911 isl_val_free(value);
5912 isl_set_free(set);
5913 return NULL;
5916 struct isl_set *isl_set_lower_bound_dim(struct isl_set *set, unsigned dim,
5917 isl_int value)
5919 int i;
5921 set = isl_set_cow(set);
5922 if (!set)
5923 return NULL;
5925 isl_assert(set->ctx, dim < isl_set_n_dim(set), goto error);
5926 for (i = 0; i < set->n; ++i) {
5927 set->p[i] = isl_basic_set_lower_bound_dim(set->p[i], dim, value);
5928 if (!set->p[i])
5929 goto error;
5931 return set;
5932 error:
5933 isl_set_free(set);
5934 return NULL;
5937 struct isl_map *isl_map_reverse(struct isl_map *map)
5939 int i;
5941 map = isl_map_cow(map);
5942 if (!map)
5943 return NULL;
5945 map->dim = isl_space_reverse(map->dim);
5946 if (!map->dim)
5947 goto error;
5948 for (i = 0; i < map->n; ++i) {
5949 map->p[i] = isl_basic_map_reverse(map->p[i]);
5950 if (!map->p[i])
5951 goto error;
5953 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5954 return map;
5955 error:
5956 isl_map_free(map);
5957 return NULL;
5960 static struct isl_map *isl_basic_map_partial_lexopt(
5961 struct isl_basic_map *bmap, struct isl_basic_set *dom,
5962 struct isl_set **empty, int max)
5964 return isl_tab_basic_map_partial_lexopt(bmap, dom, empty, max);
5967 struct isl_map *isl_basic_map_partial_lexmax(
5968 struct isl_basic_map *bmap, struct isl_basic_set *dom,
5969 struct isl_set **empty)
5971 return isl_basic_map_partial_lexopt(bmap, dom, empty, 1);
5974 struct isl_map *isl_basic_map_partial_lexmin(
5975 struct isl_basic_map *bmap, struct isl_basic_set *dom,
5976 struct isl_set **empty)
5978 return isl_basic_map_partial_lexopt(bmap, dom, empty, 0);
5981 struct isl_set *isl_basic_set_partial_lexmin(
5982 struct isl_basic_set *bset, struct isl_basic_set *dom,
5983 struct isl_set **empty)
5985 return (struct isl_set *)
5986 isl_basic_map_partial_lexmin((struct isl_basic_map *)bset,
5987 dom, empty);
5990 struct isl_set *isl_basic_set_partial_lexmax(
5991 struct isl_basic_set *bset, struct isl_basic_set *dom,
5992 struct isl_set **empty)
5994 return (struct isl_set *)
5995 isl_basic_map_partial_lexmax((struct isl_basic_map *)bset,
5996 dom, empty);
5999 __isl_give isl_pw_multi_aff *isl_basic_map_partial_lexmin_pw_multi_aff(
6000 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
6001 __isl_give isl_set **empty)
6003 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap, dom, empty, 0);
6006 __isl_give isl_pw_multi_aff *isl_basic_map_partial_lexmax_pw_multi_aff(
6007 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
6008 __isl_give isl_set **empty)
6010 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap, dom, empty, 1);
6013 __isl_give isl_pw_multi_aff *isl_basic_set_partial_lexmin_pw_multi_aff(
6014 __isl_take isl_basic_set *bset, __isl_take isl_basic_set *dom,
6015 __isl_give isl_set **empty)
6017 return isl_basic_map_partial_lexmin_pw_multi_aff(bset, dom, empty);
6020 __isl_give isl_pw_multi_aff *isl_basic_set_partial_lexmax_pw_multi_aff(
6021 __isl_take isl_basic_set *bset, __isl_take isl_basic_set *dom,
6022 __isl_give isl_set **empty)
6024 return isl_basic_map_partial_lexmax_pw_multi_aff(bset, dom, empty);
6027 __isl_give isl_pw_multi_aff *isl_basic_map_lexopt_pw_multi_aff(
6028 __isl_take isl_basic_map *bmap, int max)
6030 isl_basic_set *dom = NULL;
6031 isl_space *dom_space;
6033 if (!bmap)
6034 goto error;
6035 dom_space = isl_space_domain(isl_space_copy(bmap->dim));
6036 dom = isl_basic_set_universe(dom_space);
6037 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap, dom, NULL, max);
6038 error:
6039 isl_basic_map_free(bmap);
6040 return NULL;
6043 __isl_give isl_pw_multi_aff *isl_basic_map_lexmin_pw_multi_aff(
6044 __isl_take isl_basic_map *bmap)
6046 return isl_basic_map_lexopt_pw_multi_aff(bmap, 0);
6049 #undef TYPE
6050 #define TYPE isl_pw_multi_aff
6051 #undef SUFFIX
6052 #define SUFFIX _pw_multi_aff
6053 #undef EMPTY
6054 #define EMPTY isl_pw_multi_aff_empty
6055 #undef ADD
6056 #define ADD isl_pw_multi_aff_union_add
6057 #include "isl_map_lexopt_templ.c"
6059 /* Given a map "map", compute the lexicographically minimal
6060 * (or maximal) image element for each domain element in dom,
6061 * in the form of an isl_pw_multi_aff.
6062 * Set *empty to those elements in dom that do not have an image element.
6064 * We first compute the lexicographically minimal or maximal element
6065 * in the first basic map. This results in a partial solution "res"
6066 * and a subset "todo" of dom that still need to be handled.
6067 * We then consider each of the remaining maps in "map" and successively
6068 * update both "res" and "todo".
6070 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
6071 __isl_take isl_map *map, __isl_take isl_set *dom,
6072 __isl_give isl_set **empty, int max)
6074 int i;
6075 isl_pw_multi_aff *res;
6076 isl_set *todo;
6078 if (!map || !dom)
6079 goto error;
6081 if (isl_map_plain_is_empty(map)) {
6082 if (empty)
6083 *empty = dom;
6084 else
6085 isl_set_free(dom);
6086 return isl_pw_multi_aff_from_map(map);
6089 res = basic_map_partial_lexopt_pw_multi_aff(
6090 isl_basic_map_copy(map->p[0]),
6091 isl_set_copy(dom), &todo, max);
6093 for (i = 1; i < map->n; ++i) {
6094 isl_pw_multi_aff *res_i;
6095 isl_set *todo_i;
6097 res_i = basic_map_partial_lexopt_pw_multi_aff(
6098 isl_basic_map_copy(map->p[i]),
6099 isl_set_copy(dom), &todo_i, max);
6101 if (max)
6102 res = isl_pw_multi_aff_union_lexmax(res, res_i);
6103 else
6104 res = isl_pw_multi_aff_union_lexmin(res, res_i);
6106 todo = isl_set_intersect(todo, todo_i);
6109 isl_set_free(dom);
6110 isl_map_free(map);
6112 if (empty)
6113 *empty = todo;
6114 else
6115 isl_set_free(todo);
6117 return res;
6118 error:
6119 if (empty)
6120 *empty = NULL;
6121 isl_set_free(dom);
6122 isl_map_free(map);
6123 return NULL;
6126 #undef TYPE
6127 #define TYPE isl_map
6128 #undef SUFFIX
6129 #define SUFFIX
6130 #undef EMPTY
6131 #define EMPTY isl_map_empty
6132 #undef ADD
6133 #define ADD isl_map_union_disjoint
6134 #include "isl_map_lexopt_templ.c"
6136 /* Given a map "map", compute the lexicographically minimal
6137 * (or maximal) image element for each domain element in dom.
6138 * Set *empty to those elements in dom that do not have an image element.
6140 * We first compute the lexicographically minimal or maximal element
6141 * in the first basic map. This results in a partial solution "res"
6142 * and a subset "todo" of dom that still need to be handled.
6143 * We then consider each of the remaining maps in "map" and successively
6144 * update both "res" and "todo".
6146 * Let res^k and todo^k be the results after k steps and let i = k + 1.
6147 * Assume we are computing the lexicographical maximum.
6148 * We first compute the lexicographically maximal element in basic map i.
6149 * This results in a partial solution res_i and a subset todo_i.
6150 * Then we combine these results with those obtain for the first k basic maps
6151 * to obtain a result that is valid for the first k+1 basic maps.
6152 * In particular, the set where there is no solution is the set where
6153 * there is no solution for the first k basic maps and also no solution
6154 * for the ith basic map, i.e.,
6156 * todo^i = todo^k * todo_i
6158 * On dom(res^k) * dom(res_i), we need to pick the larger of the two
6159 * solutions, arbitrarily breaking ties in favor of res^k.
6160 * That is, when res^k(a) >= res_i(a), we pick res^k and
6161 * when res^k(a) < res_i(a), we pick res_i. (Here, ">=" and "<" denote
6162 * the lexicographic order.)
6163 * In practice, we compute
6165 * res^k * (res_i . "<=")
6167 * and
6169 * res_i * (res^k . "<")
6171 * Finally, we consider the symmetric difference of dom(res^k) and dom(res_i),
6172 * where only one of res^k and res_i provides a solution and we simply pick
6173 * that one, i.e.,
6175 * res^k * todo_i
6176 * and
6177 * res_i * todo^k
6179 * Note that we only compute these intersections when dom(res^k) intersects
6180 * dom(res_i). Otherwise, the only effect of these intersections is to
6181 * potentially break up res^k and res_i into smaller pieces.
6182 * We want to avoid such splintering as much as possible.
6183 * In fact, an earlier implementation of this function would look for
6184 * better results in the domain of res^k and for extra results in todo^k,
6185 * but this would always result in a splintering according to todo^k,
6186 * even when the domain of basic map i is disjoint from the domains of
6187 * the previous basic maps.
6189 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
6190 __isl_take isl_map *map, __isl_take isl_set *dom,
6191 __isl_give isl_set **empty, int max)
6193 int i;
6194 struct isl_map *res;
6195 struct isl_set *todo;
6197 if (!map || !dom)
6198 goto error;
6200 if (isl_map_plain_is_empty(map)) {
6201 if (empty)
6202 *empty = dom;
6203 else
6204 isl_set_free(dom);
6205 return map;
6208 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
6209 isl_set_copy(dom), &todo, max);
6211 for (i = 1; i < map->n; ++i) {
6212 isl_map *lt, *le;
6213 isl_map *res_i;
6214 isl_set *todo_i;
6215 isl_space *dim = isl_space_range(isl_map_get_space(res));
6217 res_i = basic_map_partial_lexopt(isl_basic_map_copy(map->p[i]),
6218 isl_set_copy(dom), &todo_i, max);
6220 if (max) {
6221 lt = isl_map_lex_lt(isl_space_copy(dim));
6222 le = isl_map_lex_le(dim);
6223 } else {
6224 lt = isl_map_lex_gt(isl_space_copy(dim));
6225 le = isl_map_lex_ge(dim);
6227 lt = isl_map_apply_range(isl_map_copy(res), lt);
6228 lt = isl_map_intersect(lt, isl_map_copy(res_i));
6229 le = isl_map_apply_range(isl_map_copy(res_i), le);
6230 le = isl_map_intersect(le, isl_map_copy(res));
6232 if (!isl_map_is_empty(lt) || !isl_map_is_empty(le)) {
6233 res = isl_map_intersect_domain(res,
6234 isl_set_copy(todo_i));
6235 res_i = isl_map_intersect_domain(res_i,
6236 isl_set_copy(todo));
6239 res = isl_map_union_disjoint(res, res_i);
6240 res = isl_map_union_disjoint(res, lt);
6241 res = isl_map_union_disjoint(res, le);
6243 todo = isl_set_intersect(todo, todo_i);
6246 isl_set_free(dom);
6247 isl_map_free(map);
6249 if (empty)
6250 *empty = todo;
6251 else
6252 isl_set_free(todo);
6254 return res;
6255 error:
6256 if (empty)
6257 *empty = NULL;
6258 isl_set_free(dom);
6259 isl_map_free(map);
6260 return NULL;
6263 __isl_give isl_map *isl_map_partial_lexmax(
6264 __isl_take isl_map *map, __isl_take isl_set *dom,
6265 __isl_give isl_set **empty)
6267 return isl_map_partial_lexopt(map, dom, empty, 1);
6270 __isl_give isl_map *isl_map_partial_lexmin(
6271 __isl_take isl_map *map, __isl_take isl_set *dom,
6272 __isl_give isl_set **empty)
6274 return isl_map_partial_lexopt(map, dom, empty, 0);
6277 __isl_give isl_set *isl_set_partial_lexmin(
6278 __isl_take isl_set *set, __isl_take isl_set *dom,
6279 __isl_give isl_set **empty)
6281 return (struct isl_set *)
6282 isl_map_partial_lexmin((struct isl_map *)set,
6283 dom, empty);
6286 __isl_give isl_set *isl_set_partial_lexmax(
6287 __isl_take isl_set *set, __isl_take isl_set *dom,
6288 __isl_give isl_set **empty)
6290 return (struct isl_set *)
6291 isl_map_partial_lexmax((struct isl_map *)set,
6292 dom, empty);
6295 /* Compute the lexicographic minimum (or maximum if "max" is set)
6296 * of "bmap" over its domain.
6298 * Since we are not interested in the part of the domain space where
6299 * there is no solution, we initialize the domain to those constraints
6300 * of "bmap" that only involve the parameters and the input dimensions.
6301 * This relieves the parametric programming engine from detecting those
6302 * inequalities and transferring them to the context. More importantly,
6303 * it ensures that those inequalities are transferred first and not
6304 * intermixed with inequalities that actually split the domain.
6306 __isl_give isl_map *isl_basic_map_lexopt(__isl_take isl_basic_map *bmap, int max)
6308 int n_div;
6309 int n_out;
6310 isl_basic_map *copy;
6311 isl_basic_set *dom;
6313 n_div = isl_basic_map_dim(bmap, isl_dim_div);
6314 n_out = isl_basic_map_dim(bmap, isl_dim_out);
6315 copy = isl_basic_map_copy(bmap);
6316 copy = isl_basic_map_drop_constraints_involving_dims(copy,
6317 isl_dim_div, 0, n_div);
6318 copy = isl_basic_map_drop_constraints_involving_dims(copy,
6319 isl_dim_out, 0, n_out);
6320 dom = isl_basic_map_domain(copy);
6321 return isl_basic_map_partial_lexopt(bmap, dom, NULL, max);
6324 __isl_give isl_map *isl_basic_map_lexmin(__isl_take isl_basic_map *bmap)
6326 return isl_basic_map_lexopt(bmap, 0);
6329 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
6331 return isl_basic_map_lexopt(bmap, 1);
6334 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
6336 return (isl_set *)isl_basic_map_lexmin((isl_basic_map *)bset);
6339 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
6341 return (isl_set *)isl_basic_map_lexmax((isl_basic_map *)bset);
6344 /* Extract the first and only affine expression from list
6345 * and then add it to *pwaff with the given dom.
6346 * This domain is known to be disjoint from other domains
6347 * because of the way isl_basic_map_foreach_lexmax works.
6349 static int update_dim_opt(__isl_take isl_basic_set *dom,
6350 __isl_take isl_aff_list *list, void *user)
6352 isl_ctx *ctx = isl_basic_set_get_ctx(dom);
6353 isl_aff *aff;
6354 isl_pw_aff **pwaff = user;
6355 isl_pw_aff *pwaff_i;
6357 if (!list)
6358 goto error;
6359 if (isl_aff_list_n_aff(list) != 1)
6360 isl_die(ctx, isl_error_internal,
6361 "expecting single element list", goto error);
6363 aff = isl_aff_list_get_aff(list, 0);
6364 pwaff_i = isl_pw_aff_alloc(isl_set_from_basic_set(dom), aff);
6366 *pwaff = isl_pw_aff_add_disjoint(*pwaff, pwaff_i);
6368 isl_aff_list_free(list);
6370 return 0;
6371 error:
6372 isl_basic_set_free(dom);
6373 isl_aff_list_free(list);
6374 return -1;
6377 /* Given a basic map with one output dimension, compute the minimum or
6378 * maximum of that dimension as an isl_pw_aff.
6380 * The isl_pw_aff is constructed by having isl_basic_map_foreach_lexopt
6381 * call update_dim_opt on each leaf of the result.
6383 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
6384 int max)
6386 isl_space *dim = isl_basic_map_get_space(bmap);
6387 isl_pw_aff *pwaff;
6388 int r;
6390 dim = isl_space_from_domain(isl_space_domain(dim));
6391 dim = isl_space_add_dims(dim, isl_dim_out, 1);
6392 pwaff = isl_pw_aff_empty(dim);
6394 r = isl_basic_map_foreach_lexopt(bmap, max, &update_dim_opt, &pwaff);
6395 if (r < 0)
6396 return isl_pw_aff_free(pwaff);
6398 return pwaff;
6401 /* Compute the minimum or maximum of the given output dimension
6402 * as a function of the parameters and the input dimensions,
6403 * but independently of the other output dimensions.
6405 * We first project out the other output dimension and then compute
6406 * the "lexicographic" maximum in each basic map, combining the results
6407 * using isl_pw_aff_union_max.
6409 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
6410 int max)
6412 int i;
6413 isl_pw_aff *pwaff;
6414 unsigned n_out;
6416 n_out = isl_map_dim(map, isl_dim_out);
6417 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
6418 map = isl_map_project_out(map, isl_dim_out, 0, pos);
6419 if (!map)
6420 return NULL;
6422 if (map->n == 0) {
6423 isl_space *dim = isl_map_get_space(map);
6424 isl_map_free(map);
6425 return isl_pw_aff_empty(dim);
6428 pwaff = basic_map_dim_opt(map->p[0], max);
6429 for (i = 1; i < map->n; ++i) {
6430 isl_pw_aff *pwaff_i;
6432 pwaff_i = basic_map_dim_opt(map->p[i], max);
6433 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
6436 isl_map_free(map);
6438 return pwaff;
6441 /* Compute the maximum of the given output dimension as a function of the
6442 * parameters and input dimensions, but independently of
6443 * the other output dimensions.
6445 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
6447 return map_dim_opt(map, pos, 1);
6450 /* Compute the minimum or maximum of the given set dimension
6451 * as a function of the parameters,
6452 * but independently of the other set dimensions.
6454 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
6455 int max)
6457 return map_dim_opt(set, pos, max);
6460 /* Compute the maximum of the given set dimension as a function of the
6461 * parameters, but independently of the other set dimensions.
6463 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
6465 return set_dim_opt(set, pos, 1);
6468 /* Compute the minimum of the given set dimension as a function of the
6469 * parameters, but independently of the other set dimensions.
6471 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
6473 return set_dim_opt(set, pos, 0);
6476 /* Apply a preimage specified by "mat" on the parameters of "bset".
6477 * bset is assumed to have only parameters and divs.
6479 static struct isl_basic_set *basic_set_parameter_preimage(
6480 struct isl_basic_set *bset, struct isl_mat *mat)
6482 unsigned nparam;
6484 if (!bset || !mat)
6485 goto error;
6487 bset->dim = isl_space_cow(bset->dim);
6488 if (!bset->dim)
6489 goto error;
6491 nparam = isl_basic_set_dim(bset, isl_dim_param);
6493 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
6495 bset->dim->nparam = 0;
6496 bset->dim->n_out = nparam;
6497 bset = isl_basic_set_preimage(bset, mat);
6498 if (bset) {
6499 bset->dim->nparam = bset->dim->n_out;
6500 bset->dim->n_out = 0;
6502 return bset;
6503 error:
6504 isl_mat_free(mat);
6505 isl_basic_set_free(bset);
6506 return NULL;
6509 /* Apply a preimage specified by "mat" on the parameters of "set".
6510 * set is assumed to have only parameters and divs.
6512 static struct isl_set *set_parameter_preimage(
6513 struct isl_set *set, struct isl_mat *mat)
6515 isl_space *dim = NULL;
6516 unsigned nparam;
6518 if (!set || !mat)
6519 goto error;
6521 dim = isl_space_copy(set->dim);
6522 dim = isl_space_cow(dim);
6523 if (!dim)
6524 goto error;
6526 nparam = isl_set_dim(set, isl_dim_param);
6528 isl_assert(set->ctx, mat->n_row == 1 + nparam, goto error);
6530 dim->nparam = 0;
6531 dim->n_out = nparam;
6532 isl_set_reset_space(set, dim);
6533 set = isl_set_preimage(set, mat);
6534 if (!set)
6535 goto error2;
6536 dim = isl_space_copy(set->dim);
6537 dim = isl_space_cow(dim);
6538 if (!dim)
6539 goto error2;
6540 dim->nparam = dim->n_out;
6541 dim->n_out = 0;
6542 isl_set_reset_space(set, dim);
6543 return set;
6544 error:
6545 isl_space_free(dim);
6546 isl_mat_free(mat);
6547 error2:
6548 isl_set_free(set);
6549 return NULL;
6552 /* Intersect the basic set "bset" with the affine space specified by the
6553 * equalities in "eq".
6555 static struct isl_basic_set *basic_set_append_equalities(
6556 struct isl_basic_set *bset, struct isl_mat *eq)
6558 int i, k;
6559 unsigned len;
6561 if (!bset || !eq)
6562 goto error;
6564 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
6565 eq->n_row, 0);
6566 if (!bset)
6567 goto error;
6569 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
6570 for (i = 0; i < eq->n_row; ++i) {
6571 k = isl_basic_set_alloc_equality(bset);
6572 if (k < 0)
6573 goto error;
6574 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
6575 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
6577 isl_mat_free(eq);
6579 bset = isl_basic_set_gauss(bset, NULL);
6580 bset = isl_basic_set_finalize(bset);
6582 return bset;
6583 error:
6584 isl_mat_free(eq);
6585 isl_basic_set_free(bset);
6586 return NULL;
6589 /* Intersect the set "set" with the affine space specified by the
6590 * equalities in "eq".
6592 static struct isl_set *set_append_equalities(struct isl_set *set,
6593 struct isl_mat *eq)
6595 int i;
6597 if (!set || !eq)
6598 goto error;
6600 for (i = 0; i < set->n; ++i) {
6601 set->p[i] = basic_set_append_equalities(set->p[i],
6602 isl_mat_copy(eq));
6603 if (!set->p[i])
6604 goto error;
6606 isl_mat_free(eq);
6607 return set;
6608 error:
6609 isl_mat_free(eq);
6610 isl_set_free(set);
6611 return NULL;
6614 /* Given a basic set "bset" that only involves parameters and existentially
6615 * quantified variables, return the index of the first equality
6616 * that only involves parameters. If there is no such equality then
6617 * return bset->n_eq.
6619 * This function assumes that isl_basic_set_gauss has been called on "bset".
6621 static int first_parameter_equality(__isl_keep isl_basic_set *bset)
6623 int i, j;
6624 unsigned nparam, n_div;
6626 if (!bset)
6627 return -1;
6629 nparam = isl_basic_set_dim(bset, isl_dim_param);
6630 n_div = isl_basic_set_dim(bset, isl_dim_div);
6632 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
6633 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
6634 ++i;
6637 return i;
6640 /* Compute an explicit representation for the existentially quantified
6641 * variables in "bset" by computing the "minimal value" of the set
6642 * variables. Since there are no set variables, the computation of
6643 * the minimal value essentially computes an explicit representation
6644 * of the non-empty part(s) of "bset".
6646 * The input only involves parameters and existentially quantified variables.
6647 * All equalities among parameters have been removed.
6649 * Since the existentially quantified variables in the result are in general
6650 * going to be different from those in the input, we first replace
6651 * them by the minimal number of variables based on their equalities.
6652 * This should simplify the parametric integer programming.
6654 static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
6656 isl_morph *morph1, *morph2;
6657 isl_set *set;
6658 unsigned n;
6660 if (!bset)
6661 return NULL;
6662 if (bset->n_eq == 0)
6663 return isl_basic_set_lexmin(bset);
6665 morph1 = isl_basic_set_parameter_compression(bset);
6666 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
6667 bset = isl_basic_set_lift(bset);
6668 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
6669 bset = isl_morph_basic_set(morph2, bset);
6670 n = isl_basic_set_dim(bset, isl_dim_set);
6671 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
6673 set = isl_basic_set_lexmin(bset);
6675 set = isl_morph_set(isl_morph_inverse(morph1), set);
6677 return set;
6680 /* Project the given basic set onto its parameter domain, possibly introducing
6681 * new, explicit, existential variables in the constraints.
6682 * The input has parameters and (possibly implicit) existential variables.
6683 * The output has the same parameters, but only
6684 * explicit existentially quantified variables.
6686 * The actual projection is performed by pip, but pip doesn't seem
6687 * to like equalities very much, so we first remove the equalities
6688 * among the parameters by performing a variable compression on
6689 * the parameters. Afterward, an inverse transformation is performed
6690 * and the equalities among the parameters are inserted back in.
6692 * The variable compression on the parameters may uncover additional
6693 * equalities that were only implicit before. We therefore check
6694 * if there are any new parameter equalities in the result and
6695 * if so recurse. The removal of parameter equalities is required
6696 * for the parameter compression performed by base_compute_divs.
6698 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
6700 int i;
6701 struct isl_mat *eq;
6702 struct isl_mat *T, *T2;
6703 struct isl_set *set;
6704 unsigned nparam;
6706 bset = isl_basic_set_cow(bset);
6707 if (!bset)
6708 return NULL;
6710 if (bset->n_eq == 0)
6711 return base_compute_divs(bset);
6713 bset = isl_basic_set_gauss(bset, NULL);
6714 if (!bset)
6715 return NULL;
6716 if (isl_basic_set_plain_is_empty(bset))
6717 return isl_set_from_basic_set(bset);
6719 i = first_parameter_equality(bset);
6720 if (i == bset->n_eq)
6721 return base_compute_divs(bset);
6723 nparam = isl_basic_set_dim(bset, isl_dim_param);
6724 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
6725 0, 1 + nparam);
6726 eq = isl_mat_cow(eq);
6727 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
6728 if (T && T->n_col == 0) {
6729 isl_mat_free(T);
6730 isl_mat_free(T2);
6731 isl_mat_free(eq);
6732 bset = isl_basic_set_set_to_empty(bset);
6733 return isl_set_from_basic_set(bset);
6735 bset = basic_set_parameter_preimage(bset, T);
6737 i = first_parameter_equality(bset);
6738 if (!bset)
6739 set = NULL;
6740 else if (i == bset->n_eq)
6741 set = base_compute_divs(bset);
6742 else
6743 set = parameter_compute_divs(bset);
6744 set = set_parameter_preimage(set, T2);
6745 set = set_append_equalities(set, eq);
6746 return set;
6749 /* Insert the divs from "ls" before those of "bmap".
6751 * The number of columns is not changed, which means that the last
6752 * dimensions of "bmap" are being reintepreted as the divs from "ls".
6753 * The caller is responsible for removing the same number of dimensions
6754 * from the space of "bmap".
6756 static __isl_give isl_basic_map *insert_divs_from_local_space(
6757 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
6759 int i;
6760 int n_div;
6761 int old_n_div;
6763 n_div = isl_local_space_dim(ls, isl_dim_div);
6764 if (n_div == 0)
6765 return bmap;
6767 old_n_div = bmap->n_div;
6768 bmap = insert_div_rows(bmap, n_div);
6769 if (!bmap)
6770 return NULL;
6772 for (i = 0; i < n_div; ++i) {
6773 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
6774 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
6777 return bmap;
6780 /* Replace the space of "bmap" by the space and divs of "ls".
6782 * If "ls" has any divs, then we simplify the result since we may
6783 * have discovered some additional equalities that could simplify
6784 * the div expressions.
6786 static __isl_give isl_basic_map *basic_replace_space_by_local_space(
6787 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
6789 int n_div;
6791 bmap = isl_basic_map_cow(bmap);
6792 if (!bmap || !ls)
6793 goto error;
6795 n_div = isl_local_space_dim(ls, isl_dim_div);
6796 bmap = insert_divs_from_local_space(bmap, ls);
6797 if (!bmap)
6798 goto error;
6800 isl_space_free(bmap->dim);
6801 bmap->dim = isl_local_space_get_space(ls);
6802 if (!bmap->dim)
6803 goto error;
6805 isl_local_space_free(ls);
6806 if (n_div > 0)
6807 bmap = isl_basic_map_simplify(bmap);
6808 bmap = isl_basic_map_finalize(bmap);
6809 return bmap;
6810 error:
6811 isl_basic_map_free(bmap);
6812 isl_local_space_free(ls);
6813 return NULL;
6816 /* Replace the space of "map" by the space and divs of "ls".
6818 static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
6819 __isl_take isl_local_space *ls)
6821 int i;
6823 map = isl_map_cow(map);
6824 if (!map || !ls)
6825 goto error;
6827 for (i = 0; i < map->n; ++i) {
6828 map->p[i] = basic_replace_space_by_local_space(map->p[i],
6829 isl_local_space_copy(ls));
6830 if (!map->p[i])
6831 goto error;
6833 isl_space_free(map->dim);
6834 map->dim = isl_local_space_get_space(ls);
6835 if (!map->dim)
6836 goto error;
6838 isl_local_space_free(ls);
6839 return map;
6840 error:
6841 isl_local_space_free(ls);
6842 isl_map_free(map);
6843 return NULL;
6846 /* Compute an explicit representation for the existentially
6847 * quantified variables for which do not know any explicit representation yet.
6849 * We first sort the existentially quantified variables so that the
6850 * existentially quantified variables for which we already have an explicit
6851 * representation are placed before those for which we do not.
6852 * The input dimensions, the output dimensions and the existentially
6853 * quantified variables for which we already have an explicit
6854 * representation are then turned into parameters.
6855 * compute_divs returns a map with the same parameters and
6856 * no input or output dimensions and the dimension specification
6857 * is reset to that of the input, including the existentially quantified
6858 * variables for which we already had an explicit representation.
6860 static struct isl_map *compute_divs(struct isl_basic_map *bmap)
6862 struct isl_basic_set *bset;
6863 struct isl_set *set;
6864 struct isl_map *map;
6865 isl_space *dim;
6866 isl_local_space *ls;
6867 unsigned nparam;
6868 unsigned n_in;
6869 unsigned n_out;
6870 unsigned n_known;
6871 int i;
6873 bmap = isl_basic_map_sort_divs(bmap);
6874 bmap = isl_basic_map_cow(bmap);
6875 if (!bmap)
6876 return NULL;
6878 for (n_known = 0; n_known < bmap->n_div; ++n_known)
6879 if (isl_int_is_zero(bmap->div[n_known][0]))
6880 break;
6882 nparam = isl_basic_map_dim(bmap, isl_dim_param);
6883 n_in = isl_basic_map_dim(bmap, isl_dim_in);
6884 n_out = isl_basic_map_dim(bmap, isl_dim_out);
6885 dim = isl_space_set_alloc(bmap->ctx,
6886 nparam + n_in + n_out + n_known, 0);
6887 if (!dim)
6888 goto error;
6890 ls = isl_basic_map_get_local_space(bmap);
6891 ls = isl_local_space_drop_dims(ls, isl_dim_div,
6892 n_known, bmap->n_div - n_known);
6893 if (n_known > 0) {
6894 for (i = n_known; i < bmap->n_div; ++i)
6895 swap_div(bmap, i - n_known, i);
6896 bmap->n_div -= n_known;
6897 bmap->extra -= n_known;
6899 bmap = isl_basic_map_reset_space(bmap, dim);
6900 bset = (struct isl_basic_set *)bmap;
6902 set = parameter_compute_divs(bset);
6903 map = (struct isl_map *)set;
6904 map = replace_space_by_local_space(map, ls);
6906 return map;
6907 error:
6908 isl_basic_map_free(bmap);
6909 return NULL;
6912 /* Does local variable "div" of "bmap" have an explicit representation?
6914 isl_bool isl_basic_map_div_is_known(__isl_keep isl_basic_map *bmap, int div)
6916 if (!bmap)
6917 return isl_bool_error;
6918 if (div < 0 || div >= isl_basic_map_dim(bmap, isl_dim_div))
6919 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
6920 "position out of bounds", return isl_bool_error);
6921 return !isl_int_is_zero(bmap->div[div][0]);
6924 /* Does "bmap" have an explicit representation for all local variables?
6926 isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
6928 int i;
6929 unsigned off;
6931 if (!bmap)
6932 return isl_bool_error;
6934 off = isl_space_dim(bmap->dim, isl_dim_all);
6935 for (i = 0; i < bmap->n_div; ++i) {
6936 if (!isl_basic_map_div_is_known(bmap, i))
6937 return isl_bool_false;
6938 isl_assert(bmap->ctx, isl_int_is_zero(bmap->div[i][1+1+off+i]),
6939 return isl_bool_error);
6941 return isl_bool_true;
6944 /* Do all basic maps in "map" have an explicit representation
6945 * for all local variables?
6947 isl_bool isl_map_divs_known(__isl_keep isl_map *map)
6949 int i;
6951 if (!map)
6952 return isl_bool_error;
6954 for (i = 0; i < map->n; ++i) {
6955 int known = isl_basic_map_divs_known(map->p[i]);
6956 if (known <= 0)
6957 return known;
6960 return isl_bool_true;
6963 /* If bmap contains any unknown divs, then compute explicit
6964 * expressions for them. However, this computation may be
6965 * quite expensive, so first try to remove divs that aren't
6966 * strictly needed.
6968 struct isl_map *isl_basic_map_compute_divs(struct isl_basic_map *bmap)
6970 int known;
6971 struct isl_map *map;
6973 known = isl_basic_map_divs_known(bmap);
6974 if (known < 0)
6975 goto error;
6976 if (known)
6977 return isl_map_from_basic_map(bmap);
6979 bmap = isl_basic_map_drop_redundant_divs(bmap);
6981 known = isl_basic_map_divs_known(bmap);
6982 if (known < 0)
6983 goto error;
6984 if (known)
6985 return isl_map_from_basic_map(bmap);
6987 map = compute_divs(bmap);
6988 return map;
6989 error:
6990 isl_basic_map_free(bmap);
6991 return NULL;
6994 struct isl_map *isl_map_compute_divs(struct isl_map *map)
6996 int i;
6997 int known;
6998 struct isl_map *res;
7000 if (!map)
7001 return NULL;
7002 if (map->n == 0)
7003 return map;
7005 known = isl_map_divs_known(map);
7006 if (known < 0) {
7007 isl_map_free(map);
7008 return NULL;
7010 if (known)
7011 return map;
7013 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
7014 for (i = 1 ; i < map->n; ++i) {
7015 struct isl_map *r2;
7016 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
7017 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
7018 res = isl_map_union_disjoint(res, r2);
7019 else
7020 res = isl_map_union(res, r2);
7022 isl_map_free(map);
7024 return res;
7027 struct isl_set *isl_basic_set_compute_divs(struct isl_basic_set *bset)
7029 return (struct isl_set *)
7030 isl_basic_map_compute_divs((struct isl_basic_map *)bset);
7033 struct isl_set *isl_set_compute_divs(struct isl_set *set)
7035 return (struct isl_set *)
7036 isl_map_compute_divs((struct isl_map *)set);
7039 struct isl_set *isl_map_domain(struct isl_map *map)
7041 int i;
7042 struct isl_set *set;
7044 if (!map)
7045 goto error;
7047 map = isl_map_cow(map);
7048 if (!map)
7049 return NULL;
7051 set = (struct isl_set *)map;
7052 set->dim = isl_space_domain(set->dim);
7053 if (!set->dim)
7054 goto error;
7055 for (i = 0; i < map->n; ++i) {
7056 set->p[i] = isl_basic_map_domain(map->p[i]);
7057 if (!set->p[i])
7058 goto error;
7060 ISL_F_CLR(set, ISL_MAP_DISJOINT);
7061 ISL_F_CLR(set, ISL_SET_NORMALIZED);
7062 return set;
7063 error:
7064 isl_map_free(map);
7065 return NULL;
7068 /* Return the union of "map1" and "map2", where we assume for now that
7069 * "map1" and "map2" are disjoint. Note that the basic maps inside
7070 * "map1" or "map2" may not be disjoint from each other.
7071 * Also note that this function is also called from isl_map_union,
7072 * which takes care of handling the situation where "map1" and "map2"
7073 * may not be disjoint.
7075 * If one of the inputs is empty, we can simply return the other input.
7076 * Similarly, if one of the inputs is universal, then it is equal to the union.
7078 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
7079 __isl_take isl_map *map2)
7081 int i;
7082 unsigned flags = 0;
7083 struct isl_map *map = NULL;
7084 int is_universe;
7086 if (!map1 || !map2)
7087 goto error;
7089 if (!isl_space_is_equal(map1->dim, map2->dim))
7090 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
7091 "spaces don't match", goto error);
7093 if (map1->n == 0) {
7094 isl_map_free(map1);
7095 return map2;
7097 if (map2->n == 0) {
7098 isl_map_free(map2);
7099 return map1;
7102 is_universe = isl_map_plain_is_universe(map1);
7103 if (is_universe < 0)
7104 goto error;
7105 if (is_universe) {
7106 isl_map_free(map2);
7107 return map1;
7110 is_universe = isl_map_plain_is_universe(map2);
7111 if (is_universe < 0)
7112 goto error;
7113 if (is_universe) {
7114 isl_map_free(map1);
7115 return map2;
7118 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
7119 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
7120 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7122 map = isl_map_alloc_space(isl_space_copy(map1->dim),
7123 map1->n + map2->n, flags);
7124 if (!map)
7125 goto error;
7126 for (i = 0; i < map1->n; ++i) {
7127 map = isl_map_add_basic_map(map,
7128 isl_basic_map_copy(map1->p[i]));
7129 if (!map)
7130 goto error;
7132 for (i = 0; i < map2->n; ++i) {
7133 map = isl_map_add_basic_map(map,
7134 isl_basic_map_copy(map2->p[i]));
7135 if (!map)
7136 goto error;
7138 isl_map_free(map1);
7139 isl_map_free(map2);
7140 return map;
7141 error:
7142 isl_map_free(map);
7143 isl_map_free(map1);
7144 isl_map_free(map2);
7145 return NULL;
7148 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7149 * guaranteed to be disjoint by the caller.
7151 * Note that this functions is called from within isl_map_make_disjoint,
7152 * so we have to be careful not to touch the constraints of the inputs
7153 * in any way.
7155 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
7156 __isl_take isl_map *map2)
7158 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
7161 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7162 * not be disjoint. The parameters are assumed to have been aligned.
7164 * We currently simply call map_union_disjoint, the internal operation
7165 * of which does not really depend on the inputs being disjoint.
7166 * If the result contains more than one basic map, then we clear
7167 * the disjoint flag since the result may contain basic maps from
7168 * both inputs and these are not guaranteed to be disjoint.
7170 * As a special case, if "map1" and "map2" are obviously equal,
7171 * then we simply return "map1".
7173 static __isl_give isl_map *map_union_aligned(__isl_take isl_map *map1,
7174 __isl_take isl_map *map2)
7176 int equal;
7178 if (!map1 || !map2)
7179 goto error;
7181 equal = isl_map_plain_is_equal(map1, map2);
7182 if (equal < 0)
7183 goto error;
7184 if (equal) {
7185 isl_map_free(map2);
7186 return map1;
7189 map1 = map_union_disjoint(map1, map2);
7190 if (!map1)
7191 return NULL;
7192 if (map1->n > 1)
7193 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
7194 return map1;
7195 error:
7196 isl_map_free(map1);
7197 isl_map_free(map2);
7198 return NULL;
7201 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7202 * not be disjoint.
7204 __isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
7205 __isl_take isl_map *map2)
7207 return isl_map_align_params_map_map_and(map1, map2, &map_union_aligned);
7210 struct isl_set *isl_set_union_disjoint(
7211 struct isl_set *set1, struct isl_set *set2)
7213 return (struct isl_set *)
7214 isl_map_union_disjoint(
7215 (struct isl_map *)set1, (struct isl_map *)set2);
7218 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
7220 return (struct isl_set *)
7221 isl_map_union((struct isl_map *)set1, (struct isl_map *)set2);
7224 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7225 * the results.
7227 * "map" and "set" are assumed to be compatible and non-NULL.
7229 static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
7230 __isl_take isl_set *set,
7231 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
7232 __isl_take isl_basic_set *bset))
7234 unsigned flags = 0;
7235 struct isl_map *result;
7236 int i, j;
7238 if (isl_set_plain_is_universe(set)) {
7239 isl_set_free(set);
7240 return map;
7243 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
7244 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
7245 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7247 result = isl_map_alloc_space(isl_space_copy(map->dim),
7248 map->n * set->n, flags);
7249 for (i = 0; result && i < map->n; ++i)
7250 for (j = 0; j < set->n; ++j) {
7251 result = isl_map_add_basic_map(result,
7252 fn(isl_basic_map_copy(map->p[i]),
7253 isl_basic_set_copy(set->p[j])));
7254 if (!result)
7255 break;
7258 isl_map_free(map);
7259 isl_set_free(set);
7260 return result;
7263 static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
7264 __isl_take isl_set *set)
7266 if (!map || !set)
7267 goto error;
7269 if (!isl_map_compatible_range(map, set))
7270 isl_die(set->ctx, isl_error_invalid,
7271 "incompatible spaces", goto error);
7273 return map_intersect_set(map, set, &isl_basic_map_intersect_range);
7274 error:
7275 isl_map_free(map);
7276 isl_set_free(set);
7277 return NULL;
7280 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
7281 __isl_take isl_set *set)
7283 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
7286 static __isl_give isl_map *map_intersect_domain(__isl_take isl_map *map,
7287 __isl_take isl_set *set)
7289 if (!map || !set)
7290 goto error;
7292 if (!isl_map_compatible_domain(map, set))
7293 isl_die(set->ctx, isl_error_invalid,
7294 "incompatible spaces", goto error);
7296 return map_intersect_set(map, set, &isl_basic_map_intersect_domain);
7297 error:
7298 isl_map_free(map);
7299 isl_set_free(set);
7300 return NULL;
7303 __isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
7304 __isl_take isl_set *set)
7306 return isl_map_align_params_map_map_and(map, set,
7307 &map_intersect_domain);
7310 static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
7311 __isl_take isl_map *map2)
7313 if (!map1 || !map2)
7314 goto error;
7315 map1 = isl_map_reverse(map1);
7316 map1 = isl_map_apply_range(map1, map2);
7317 return isl_map_reverse(map1);
7318 error:
7319 isl_map_free(map1);
7320 isl_map_free(map2);
7321 return NULL;
7324 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
7325 __isl_take isl_map *map2)
7327 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
7330 static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
7331 __isl_take isl_map *map2)
7333 isl_space *dim_result;
7334 struct isl_map *result;
7335 int i, j;
7337 if (!map1 || !map2)
7338 goto error;
7340 dim_result = isl_space_join(isl_space_copy(map1->dim),
7341 isl_space_copy(map2->dim));
7343 result = isl_map_alloc_space(dim_result, map1->n * map2->n, 0);
7344 if (!result)
7345 goto error;
7346 for (i = 0; i < map1->n; ++i)
7347 for (j = 0; j < map2->n; ++j) {
7348 result = isl_map_add_basic_map(result,
7349 isl_basic_map_apply_range(
7350 isl_basic_map_copy(map1->p[i]),
7351 isl_basic_map_copy(map2->p[j])));
7352 if (!result)
7353 goto error;
7355 isl_map_free(map1);
7356 isl_map_free(map2);
7357 if (result && result->n <= 1)
7358 ISL_F_SET(result, ISL_MAP_DISJOINT);
7359 return result;
7360 error:
7361 isl_map_free(map1);
7362 isl_map_free(map2);
7363 return NULL;
7366 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
7367 __isl_take isl_map *map2)
7369 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
7373 * returns range - domain
7375 struct isl_basic_set *isl_basic_map_deltas(struct isl_basic_map *bmap)
7377 isl_space *target_space;
7378 struct isl_basic_set *bset;
7379 unsigned dim;
7380 unsigned nparam;
7381 int i;
7383 if (!bmap)
7384 goto error;
7385 isl_assert(bmap->ctx, isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
7386 bmap->dim, isl_dim_out),
7387 goto error);
7388 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
7389 dim = isl_basic_map_n_in(bmap);
7390 nparam = isl_basic_map_n_param(bmap);
7391 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
7392 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
7393 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
7394 for (i = 0; i < dim; ++i) {
7395 int j = isl_basic_map_alloc_equality(bmap);
7396 if (j < 0) {
7397 bmap = isl_basic_map_free(bmap);
7398 break;
7400 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
7401 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
7402 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
7403 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
7405 bset = isl_basic_map_domain(bmap);
7406 bset = isl_basic_set_reset_space(bset, target_space);
7407 return bset;
7408 error:
7409 isl_basic_map_free(bmap);
7410 return NULL;
7414 * returns range - domain
7416 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
7418 int i;
7419 isl_space *dim;
7420 struct isl_set *result;
7422 if (!map)
7423 return NULL;
7425 isl_assert(map->ctx, isl_space_tuple_is_equal(map->dim, isl_dim_in,
7426 map->dim, isl_dim_out),
7427 goto error);
7428 dim = isl_map_get_space(map);
7429 dim = isl_space_domain(dim);
7430 result = isl_set_alloc_space(dim, map->n, 0);
7431 if (!result)
7432 goto error;
7433 for (i = 0; i < map->n; ++i)
7434 result = isl_set_add_basic_set(result,
7435 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
7436 isl_map_free(map);
7437 return result;
7438 error:
7439 isl_map_free(map);
7440 return NULL;
7444 * returns [domain -> range] -> range - domain
7446 __isl_give isl_basic_map *isl_basic_map_deltas_map(
7447 __isl_take isl_basic_map *bmap)
7449 int i, k;
7450 isl_space *dim;
7451 isl_basic_map *domain;
7452 int nparam, n;
7453 unsigned total;
7455 if (!isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
7456 bmap->dim, isl_dim_out))
7457 isl_die(bmap->ctx, isl_error_invalid,
7458 "domain and range don't match", goto error);
7460 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7461 n = isl_basic_map_dim(bmap, isl_dim_in);
7463 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
7464 domain = isl_basic_map_universe(dim);
7466 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
7467 bmap = isl_basic_map_apply_range(bmap, domain);
7468 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
7470 total = isl_basic_map_total_dim(bmap);
7472 for (i = 0; i < n; ++i) {
7473 k = isl_basic_map_alloc_equality(bmap);
7474 if (k < 0)
7475 goto error;
7476 isl_seq_clr(bmap->eq[k], 1 + total);
7477 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
7478 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
7479 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
7482 bmap = isl_basic_map_gauss(bmap, NULL);
7483 return isl_basic_map_finalize(bmap);
7484 error:
7485 isl_basic_map_free(bmap);
7486 return NULL;
7490 * returns [domain -> range] -> range - domain
7492 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
7494 int i;
7495 isl_space *domain_dim;
7497 if (!map)
7498 return NULL;
7500 if (!isl_space_tuple_is_equal(map->dim, isl_dim_in,
7501 map->dim, isl_dim_out))
7502 isl_die(map->ctx, isl_error_invalid,
7503 "domain and range don't match", goto error);
7505 map = isl_map_cow(map);
7506 if (!map)
7507 return NULL;
7509 domain_dim = isl_space_from_range(isl_space_domain(isl_map_get_space(map)));
7510 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
7511 map->dim = isl_space_join(map->dim, domain_dim);
7512 if (!map->dim)
7513 goto error;
7514 for (i = 0; i < map->n; ++i) {
7515 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
7516 if (!map->p[i])
7517 goto error;
7519 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
7520 return map;
7521 error:
7522 isl_map_free(map);
7523 return NULL;
7526 static __isl_give isl_basic_map *basic_map_identity(__isl_take isl_space *dims)
7528 struct isl_basic_map *bmap;
7529 unsigned nparam;
7530 unsigned dim;
7531 int i;
7533 if (!dims)
7534 return NULL;
7536 nparam = dims->nparam;
7537 dim = dims->n_out;
7538 bmap = isl_basic_map_alloc_space(dims, 0, dim, 0);
7539 if (!bmap)
7540 goto error;
7542 for (i = 0; i < dim; ++i) {
7543 int j = isl_basic_map_alloc_equality(bmap);
7544 if (j < 0)
7545 goto error;
7546 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
7547 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
7548 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
7550 return isl_basic_map_finalize(bmap);
7551 error:
7552 isl_basic_map_free(bmap);
7553 return NULL;
7556 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *dim)
7558 if (!dim)
7559 return NULL;
7560 if (dim->n_in != dim->n_out)
7561 isl_die(dim->ctx, isl_error_invalid,
7562 "number of input and output dimensions needs to be "
7563 "the same", goto error);
7564 return basic_map_identity(dim);
7565 error:
7566 isl_space_free(dim);
7567 return NULL;
7570 __isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
7572 return isl_map_from_basic_map(isl_basic_map_identity(dim));
7575 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
7577 isl_space *dim = isl_set_get_space(set);
7578 isl_map *id;
7579 id = isl_map_identity(isl_space_map_from_set(dim));
7580 return isl_map_intersect_range(id, set);
7583 /* Construct a basic set with all set dimensions having only non-negative
7584 * values.
7586 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
7587 __isl_take isl_space *space)
7589 int i;
7590 unsigned nparam;
7591 unsigned dim;
7592 struct isl_basic_set *bset;
7594 if (!space)
7595 return NULL;
7596 nparam = space->nparam;
7597 dim = space->n_out;
7598 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
7599 if (!bset)
7600 return NULL;
7601 for (i = 0; i < dim; ++i) {
7602 int k = isl_basic_set_alloc_inequality(bset);
7603 if (k < 0)
7604 goto error;
7605 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
7606 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
7608 return bset;
7609 error:
7610 isl_basic_set_free(bset);
7611 return NULL;
7614 /* Construct the half-space x_pos >= 0.
7616 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *dim,
7617 int pos)
7619 int k;
7620 isl_basic_set *nonneg;
7622 nonneg = isl_basic_set_alloc_space(dim, 0, 0, 1);
7623 k = isl_basic_set_alloc_inequality(nonneg);
7624 if (k < 0)
7625 goto error;
7626 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
7627 isl_int_set_si(nonneg->ineq[k][pos], 1);
7629 return isl_basic_set_finalize(nonneg);
7630 error:
7631 isl_basic_set_free(nonneg);
7632 return NULL;
7635 /* Construct the half-space x_pos <= -1.
7637 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *dim, int pos)
7639 int k;
7640 isl_basic_set *neg;
7642 neg = isl_basic_set_alloc_space(dim, 0, 0, 1);
7643 k = isl_basic_set_alloc_inequality(neg);
7644 if (k < 0)
7645 goto error;
7646 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
7647 isl_int_set_si(neg->ineq[k][0], -1);
7648 isl_int_set_si(neg->ineq[k][pos], -1);
7650 return isl_basic_set_finalize(neg);
7651 error:
7652 isl_basic_set_free(neg);
7653 return NULL;
7656 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
7657 enum isl_dim_type type, unsigned first, unsigned n)
7659 int i;
7660 unsigned offset;
7661 isl_basic_set *nonneg;
7662 isl_basic_set *neg;
7664 if (!set)
7665 return NULL;
7666 if (n == 0)
7667 return set;
7669 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
7671 offset = pos(set->dim, type);
7672 for (i = 0; i < n; ++i) {
7673 nonneg = nonneg_halfspace(isl_set_get_space(set),
7674 offset + first + i);
7675 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
7677 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
7680 return set;
7681 error:
7682 isl_set_free(set);
7683 return NULL;
7686 static int foreach_orthant(__isl_take isl_set *set, int *signs, int first,
7687 int len, int (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
7688 void *user)
7690 isl_set *half;
7692 if (!set)
7693 return -1;
7694 if (isl_set_plain_is_empty(set)) {
7695 isl_set_free(set);
7696 return 0;
7698 if (first == len)
7699 return fn(set, signs, user);
7701 signs[first] = 1;
7702 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
7703 1 + first));
7704 half = isl_set_intersect(half, isl_set_copy(set));
7705 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
7706 goto error;
7708 signs[first] = -1;
7709 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
7710 1 + first));
7711 half = isl_set_intersect(half, set);
7712 return foreach_orthant(half, signs, first + 1, len, fn, user);
7713 error:
7714 isl_set_free(set);
7715 return -1;
7718 /* Call "fn" on the intersections of "set" with each of the orthants
7719 * (except for obviously empty intersections). The orthant is identified
7720 * by the signs array, with each entry having value 1 or -1 according
7721 * to the sign of the corresponding variable.
7723 int isl_set_foreach_orthant(__isl_keep isl_set *set,
7724 int (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
7725 void *user)
7727 unsigned nparam;
7728 unsigned nvar;
7729 int *signs;
7730 int r;
7732 if (!set)
7733 return -1;
7734 if (isl_set_plain_is_empty(set))
7735 return 0;
7737 nparam = isl_set_dim(set, isl_dim_param);
7738 nvar = isl_set_dim(set, isl_dim_set);
7740 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
7742 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
7743 fn, user);
7745 free(signs);
7747 return r;
7750 isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
7752 return isl_map_is_equal((struct isl_map *)set1, (struct isl_map *)set2);
7755 isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
7756 __isl_keep isl_basic_map *bmap2)
7758 int is_subset;
7759 struct isl_map *map1;
7760 struct isl_map *map2;
7762 if (!bmap1 || !bmap2)
7763 return isl_bool_error;
7765 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
7766 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
7768 is_subset = isl_map_is_subset(map1, map2);
7770 isl_map_free(map1);
7771 isl_map_free(map2);
7773 return is_subset;
7776 isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
7777 __isl_keep isl_basic_set *bset2)
7779 return isl_basic_map_is_subset(bset1, bset2);
7782 isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
7783 __isl_keep isl_basic_map *bmap2)
7785 isl_bool is_subset;
7787 if (!bmap1 || !bmap2)
7788 return isl_bool_error;
7789 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
7790 if (is_subset != isl_bool_true)
7791 return is_subset;
7792 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
7793 return is_subset;
7796 isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
7797 __isl_keep isl_basic_set *bset2)
7799 return isl_basic_map_is_equal(
7800 (struct isl_basic_map *)bset1, (struct isl_basic_map *)bset2);
7803 isl_bool isl_map_is_empty(__isl_keep isl_map *map)
7805 int i;
7806 int is_empty;
7808 if (!map)
7809 return isl_bool_error;
7810 for (i = 0; i < map->n; ++i) {
7811 is_empty = isl_basic_map_is_empty(map->p[i]);
7812 if (is_empty < 0)
7813 return isl_bool_error;
7814 if (!is_empty)
7815 return isl_bool_false;
7817 return isl_bool_true;
7820 isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
7822 return map ? map->n == 0 : isl_bool_error;
7825 isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
7827 return set ? set->n == 0 : isl_bool_error;
7830 isl_bool isl_set_is_empty(__isl_keep isl_set *set)
7832 return isl_map_is_empty((struct isl_map *)set);
7835 int isl_map_has_equal_space(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
7837 if (!map1 || !map2)
7838 return -1;
7840 return isl_space_is_equal(map1->dim, map2->dim);
7843 int isl_set_has_equal_space(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
7845 if (!set1 || !set2)
7846 return -1;
7848 return isl_space_is_equal(set1->dim, set2->dim);
7851 static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
7853 isl_bool is_subset;
7855 if (!map1 || !map2)
7856 return isl_bool_error;
7857 is_subset = isl_map_is_subset(map1, map2);
7858 if (is_subset != isl_bool_true)
7859 return is_subset;
7860 is_subset = isl_map_is_subset(map2, map1);
7861 return is_subset;
7864 isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
7866 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
7869 isl_bool isl_basic_map_is_strict_subset(
7870 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
7872 isl_bool is_subset;
7874 if (!bmap1 || !bmap2)
7875 return isl_bool_error;
7876 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
7877 if (is_subset != isl_bool_true)
7878 return is_subset;
7879 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
7880 if (is_subset == isl_bool_error)
7881 return is_subset;
7882 return !is_subset;
7885 isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
7886 __isl_keep isl_map *map2)
7888 isl_bool is_subset;
7890 if (!map1 || !map2)
7891 return isl_bool_error;
7892 is_subset = isl_map_is_subset(map1, map2);
7893 if (is_subset != isl_bool_true)
7894 return is_subset;
7895 is_subset = isl_map_is_subset(map2, map1);
7896 if (is_subset == isl_bool_error)
7897 return is_subset;
7898 return !is_subset;
7901 isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
7902 __isl_keep isl_set *set2)
7904 return isl_map_is_strict_subset((isl_map *)set1, (isl_map *)set2);
7907 isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
7909 if (!bmap)
7910 return isl_bool_error;
7911 return bmap->n_eq == 0 && bmap->n_ineq == 0;
7914 isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
7916 if (!bset)
7917 return isl_bool_error;
7918 return bset->n_eq == 0 && bset->n_ineq == 0;
7921 isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
7923 int i;
7925 if (!map)
7926 return isl_bool_error;
7928 for (i = 0; i < map->n; ++i) {
7929 isl_bool r = isl_basic_map_is_universe(map->p[i]);
7930 if (r < 0 || r)
7931 return r;
7934 return isl_bool_false;
7937 isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
7939 return isl_map_plain_is_universe((isl_map *) set);
7942 isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
7944 struct isl_basic_set *bset = NULL;
7945 struct isl_vec *sample = NULL;
7946 isl_bool empty;
7947 unsigned total;
7949 if (!bmap)
7950 return isl_bool_error;
7952 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
7953 return isl_bool_true;
7955 if (isl_basic_map_is_universe(bmap))
7956 return isl_bool_false;
7958 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
7959 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
7960 copy = isl_basic_map_remove_redundancies(copy);
7961 empty = isl_basic_map_plain_is_empty(copy);
7962 isl_basic_map_free(copy);
7963 return empty;
7966 total = 1 + isl_basic_map_total_dim(bmap);
7967 if (bmap->sample && bmap->sample->size == total) {
7968 int contains = isl_basic_map_contains(bmap, bmap->sample);
7969 if (contains < 0)
7970 return isl_bool_error;
7971 if (contains)
7972 return isl_bool_false;
7974 isl_vec_free(bmap->sample);
7975 bmap->sample = NULL;
7976 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
7977 if (!bset)
7978 return isl_bool_error;
7979 sample = isl_basic_set_sample_vec(bset);
7980 if (!sample)
7981 return isl_bool_error;
7982 empty = sample->size == 0;
7983 isl_vec_free(bmap->sample);
7984 bmap->sample = sample;
7985 if (empty)
7986 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
7988 return empty;
7991 isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
7993 if (!bmap)
7994 return isl_bool_error;
7995 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
7998 isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
8000 if (!bset)
8001 return isl_bool_error;
8002 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
8005 isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
8007 return isl_basic_map_is_empty((struct isl_basic_map *)bset);
8010 struct isl_map *isl_basic_map_union(
8011 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8013 struct isl_map *map;
8014 if (!bmap1 || !bmap2)
8015 goto error;
8017 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
8019 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
8020 if (!map)
8021 goto error;
8022 map = isl_map_add_basic_map(map, bmap1);
8023 map = isl_map_add_basic_map(map, bmap2);
8024 return map;
8025 error:
8026 isl_basic_map_free(bmap1);
8027 isl_basic_map_free(bmap2);
8028 return NULL;
8031 struct isl_set *isl_basic_set_union(
8032 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
8034 return (struct isl_set *)isl_basic_map_union(
8035 (struct isl_basic_map *)bset1,
8036 (struct isl_basic_map *)bset2);
8039 /* Order divs such that any div only depends on previous divs */
8040 struct isl_basic_map *isl_basic_map_order_divs(struct isl_basic_map *bmap)
8042 int i;
8043 unsigned off;
8045 if (!bmap)
8046 return NULL;
8048 off = isl_space_dim(bmap->dim, isl_dim_all);
8050 for (i = 0; i < bmap->n_div; ++i) {
8051 int pos;
8052 if (isl_int_is_zero(bmap->div[i][0]))
8053 continue;
8054 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
8055 bmap->n_div-i);
8056 if (pos == -1)
8057 continue;
8058 isl_basic_map_swap_div(bmap, i, i + pos);
8059 --i;
8061 return bmap;
8064 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
8066 return (struct isl_basic_set *)
8067 isl_basic_map_order_divs((struct isl_basic_map *)bset);
8070 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
8072 int i;
8074 if (!map)
8075 return 0;
8077 for (i = 0; i < map->n; ++i) {
8078 map->p[i] = isl_basic_map_order_divs(map->p[i]);
8079 if (!map->p[i])
8080 goto error;
8083 return map;
8084 error:
8085 isl_map_free(map);
8086 return NULL;
8089 /* Apply the expansion computed by isl_merge_divs.
8090 * The expansion itself is given by "exp" while the resulting
8091 * list of divs is given by "div".
8093 __isl_give isl_basic_set *isl_basic_set_expand_divs(
8094 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
8096 int i, j;
8097 int n_div;
8099 bset = isl_basic_set_cow(bset);
8100 if (!bset || !div)
8101 goto error;
8103 if (div->n_row < bset->n_div)
8104 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
8105 "not an expansion", goto error);
8107 n_div = bset->n_div;
8108 bset = isl_basic_map_extend_space(bset, isl_space_copy(bset->dim),
8109 div->n_row - n_div, 0,
8110 2 * (div->n_row - n_div));
8112 for (i = n_div; i < div->n_row; ++i)
8113 if (isl_basic_set_alloc_div(bset) < 0)
8114 goto error;
8116 j = n_div - 1;
8117 for (i = div->n_row - 1; i >= 0; --i) {
8118 if (j >= 0 && exp[j] == i) {
8119 if (i != j)
8120 isl_basic_map_swap_div(bset, i, j);
8121 j--;
8122 } else {
8123 isl_seq_cpy(bset->div[i], div->row[i], div->n_col);
8124 if (isl_basic_map_add_div_constraints(bset, i) < 0)
8125 goto error;
8129 isl_mat_free(div);
8130 return bset;
8131 error:
8132 isl_basic_set_free(bset);
8133 isl_mat_free(div);
8134 return NULL;
8137 /* Look for a div in dst that corresponds to the div "div" in src.
8138 * The divs before "div" in src and dst are assumed to be the same.
8140 * Returns -1 if no corresponding div was found and the position
8141 * of the corresponding div in dst otherwise.
8143 static int find_div(struct isl_basic_map *dst,
8144 struct isl_basic_map *src, unsigned div)
8146 int i;
8148 unsigned total = isl_space_dim(src->dim, isl_dim_all);
8150 isl_assert(dst->ctx, div <= dst->n_div, return -1);
8151 for (i = div; i < dst->n_div; ++i)
8152 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
8153 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
8154 dst->n_div - div) == -1)
8155 return i;
8156 return -1;
8159 /* Align the divs of "dst" to those of "src", adding divs from "src"
8160 * if needed. That is, make sure that the first src->n_div divs
8161 * of the result are equal to those of src.
8163 * The result is not finalized as by design it will have redundant
8164 * divs if any divs from "src" were copied.
8166 __isl_give isl_basic_map *isl_basic_map_align_divs(
8167 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
8169 int i;
8170 int known, extended;
8171 unsigned total;
8173 if (!dst || !src)
8174 return isl_basic_map_free(dst);
8176 if (src->n_div == 0)
8177 return dst;
8179 known = isl_basic_map_divs_known(src);
8180 if (known < 0)
8181 return isl_basic_map_free(dst);
8182 if (!known)
8183 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
8184 "some src divs are unknown",
8185 return isl_basic_map_free(dst));
8187 src = isl_basic_map_order_divs(src);
8189 extended = 0;
8190 total = isl_space_dim(src->dim, isl_dim_all);
8191 for (i = 0; i < src->n_div; ++i) {
8192 int j = find_div(dst, src, i);
8193 if (j < 0) {
8194 if (!extended) {
8195 int extra = src->n_div - i;
8196 dst = isl_basic_map_cow(dst);
8197 if (!dst)
8198 return NULL;
8199 dst = isl_basic_map_extend_space(dst,
8200 isl_space_copy(dst->dim),
8201 extra, 0, 2 * extra);
8202 extended = 1;
8204 j = isl_basic_map_alloc_div(dst);
8205 if (j < 0)
8206 return isl_basic_map_free(dst);
8207 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
8208 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
8209 if (isl_basic_map_add_div_constraints(dst, j) < 0)
8210 return isl_basic_map_free(dst);
8212 if (j != i)
8213 isl_basic_map_swap_div(dst, i, j);
8215 return dst;
8218 struct isl_basic_set *isl_basic_set_align_divs(
8219 struct isl_basic_set *dst, struct isl_basic_set *src)
8221 return (struct isl_basic_set *)isl_basic_map_align_divs(
8222 (struct isl_basic_map *)dst, (struct isl_basic_map *)src);
8225 struct isl_map *isl_map_align_divs(struct isl_map *map)
8227 int i;
8229 if (!map)
8230 return NULL;
8231 if (map->n == 0)
8232 return map;
8233 map = isl_map_compute_divs(map);
8234 map = isl_map_cow(map);
8235 if (!map)
8236 return NULL;
8238 for (i = 1; i < map->n; ++i)
8239 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
8240 for (i = 1; i < map->n; ++i) {
8241 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
8242 if (!map->p[i])
8243 return isl_map_free(map);
8246 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
8247 return map;
8250 struct isl_set *isl_set_align_divs(struct isl_set *set)
8252 return (struct isl_set *)isl_map_align_divs((struct isl_map *)set);
8255 /* Align the divs of the basic maps in "map" to those
8256 * of the basic maps in "list", as well as to the other basic maps in "map".
8257 * The elements in "list" are assumed to have known divs.
8259 __isl_give isl_map *isl_map_align_divs_to_basic_map_list(
8260 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
8262 int i, n;
8264 map = isl_map_compute_divs(map);
8265 map = isl_map_cow(map);
8266 if (!map || !list)
8267 return isl_map_free(map);
8268 if (map->n == 0)
8269 return map;
8271 n = isl_basic_map_list_n_basic_map(list);
8272 for (i = 0; i < n; ++i) {
8273 isl_basic_map *bmap;
8275 bmap = isl_basic_map_list_get_basic_map(list, i);
8276 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
8277 isl_basic_map_free(bmap);
8279 if (!map->p[0])
8280 return isl_map_free(map);
8282 return isl_map_align_divs(map);
8285 /* Align the divs of each element of "list" to those of "bmap".
8286 * Both "bmap" and the elements of "list" are assumed to have known divs.
8288 __isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
8289 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
8291 int i, n;
8293 if (!list || !bmap)
8294 return isl_basic_map_list_free(list);
8296 n = isl_basic_map_list_n_basic_map(list);
8297 for (i = 0; i < n; ++i) {
8298 isl_basic_map *bmap_i;
8300 bmap_i = isl_basic_map_list_get_basic_map(list, i);
8301 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
8302 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
8305 return list;
8308 static __isl_give isl_set *set_apply( __isl_take isl_set *set,
8309 __isl_take isl_map *map)
8311 if (!set || !map)
8312 goto error;
8313 isl_assert(set->ctx, isl_map_compatible_domain(map, set), goto error);
8314 map = isl_map_intersect_domain(map, set);
8315 set = isl_map_range(map);
8316 return set;
8317 error:
8318 isl_set_free(set);
8319 isl_map_free(map);
8320 return NULL;
8323 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
8324 __isl_take isl_map *map)
8326 return isl_map_align_params_map_map_and(set, map, &set_apply);
8329 /* There is no need to cow as removing empty parts doesn't change
8330 * the meaning of the set.
8332 struct isl_map *isl_map_remove_empty_parts(struct isl_map *map)
8334 int i;
8336 if (!map)
8337 return NULL;
8339 for (i = map->n - 1; i >= 0; --i)
8340 remove_if_empty(map, i);
8342 return map;
8345 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
8347 return (struct isl_set *)
8348 isl_map_remove_empty_parts((struct isl_map *)set);
8351 struct isl_basic_map *isl_map_copy_basic_map(struct isl_map *map)
8353 struct isl_basic_map *bmap;
8354 if (!map || map->n == 0)
8355 return NULL;
8356 bmap = map->p[map->n-1];
8357 isl_assert(map->ctx, ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL), return NULL);
8358 return isl_basic_map_copy(bmap);
8361 struct isl_basic_set *isl_set_copy_basic_set(struct isl_set *set)
8363 return (struct isl_basic_set *)
8364 isl_map_copy_basic_map((struct isl_map *)set);
8367 __isl_give isl_map *isl_map_drop_basic_map(__isl_take isl_map *map,
8368 __isl_keep isl_basic_map *bmap)
8370 int i;
8372 if (!map || !bmap)
8373 goto error;
8374 for (i = map->n-1; i >= 0; --i) {
8375 if (map->p[i] != bmap)
8376 continue;
8377 map = isl_map_cow(map);
8378 if (!map)
8379 goto error;
8380 isl_basic_map_free(map->p[i]);
8381 if (i != map->n-1) {
8382 ISL_F_CLR(map, ISL_SET_NORMALIZED);
8383 map->p[i] = map->p[map->n-1];
8385 map->n--;
8386 return map;
8388 return map;
8389 error:
8390 isl_map_free(map);
8391 return NULL;
8394 struct isl_set *isl_set_drop_basic_set(struct isl_set *set,
8395 struct isl_basic_set *bset)
8397 return (struct isl_set *)isl_map_drop_basic_map((struct isl_map *)set,
8398 (struct isl_basic_map *)bset);
8401 /* Given two basic sets bset1 and bset2, compute the maximal difference
8402 * between the values of dimension pos in bset1 and those in bset2
8403 * for any common value of the parameters and dimensions preceding pos.
8405 static enum isl_lp_result basic_set_maximal_difference_at(
8406 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
8407 int pos, isl_int *opt)
8409 isl_space *dims;
8410 struct isl_basic_map *bmap1 = NULL;
8411 struct isl_basic_map *bmap2 = NULL;
8412 struct isl_ctx *ctx;
8413 struct isl_vec *obj;
8414 unsigned total;
8415 unsigned nparam;
8416 unsigned dim1, dim2;
8417 enum isl_lp_result res;
8419 if (!bset1 || !bset2)
8420 return isl_lp_error;
8422 nparam = isl_basic_set_n_param(bset1);
8423 dim1 = isl_basic_set_n_dim(bset1);
8424 dim2 = isl_basic_set_n_dim(bset2);
8425 dims = isl_space_alloc(bset1->ctx, nparam, pos, dim1 - pos);
8426 bmap1 = isl_basic_map_from_basic_set(isl_basic_set_copy(bset1), dims);
8427 dims = isl_space_alloc(bset2->ctx, nparam, pos, dim2 - pos);
8428 bmap2 = isl_basic_map_from_basic_set(isl_basic_set_copy(bset2), dims);
8429 if (!bmap1 || !bmap2)
8430 goto error;
8431 bmap1 = isl_basic_map_cow(bmap1);
8432 bmap1 = isl_basic_map_extend(bmap1, nparam,
8433 pos, (dim1 - pos) + (dim2 - pos),
8434 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
8435 bmap1 = add_constraints(bmap1, bmap2, 0, dim1 - pos);
8436 if (!bmap1)
8437 goto error2;
8438 total = isl_basic_map_total_dim(bmap1);
8439 ctx = bmap1->ctx;
8440 obj = isl_vec_alloc(ctx, 1 + total);
8441 if (!obj)
8442 goto error2;
8443 isl_seq_clr(obj->block.data, 1 + total);
8444 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
8445 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
8446 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
8447 opt, NULL, NULL);
8448 isl_basic_map_free(bmap1);
8449 isl_vec_free(obj);
8450 return res;
8451 error:
8452 isl_basic_map_free(bmap2);
8453 error2:
8454 isl_basic_map_free(bmap1);
8455 return isl_lp_error;
8458 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
8459 * for any common value of the parameters and dimensions preceding pos
8460 * in both basic sets, the values of dimension pos in bset1 are
8461 * smaller or larger than those in bset2.
8463 * Returns
8464 * 1 if bset1 follows bset2
8465 * -1 if bset1 precedes bset2
8466 * 0 if bset1 and bset2 are incomparable
8467 * -2 if some error occurred.
8469 int isl_basic_set_compare_at(struct isl_basic_set *bset1,
8470 struct isl_basic_set *bset2, int pos)
8472 isl_int opt;
8473 enum isl_lp_result res;
8474 int cmp;
8476 isl_int_init(opt);
8478 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
8480 if (res == isl_lp_empty)
8481 cmp = 0;
8482 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
8483 res == isl_lp_unbounded)
8484 cmp = 1;
8485 else if (res == isl_lp_ok && isl_int_is_neg(opt))
8486 cmp = -1;
8487 else
8488 cmp = -2;
8490 isl_int_clear(opt);
8491 return cmp;
8494 /* Given two basic sets bset1 and bset2, check whether
8495 * for any common value of the parameters and dimensions preceding pos
8496 * there is a value of dimension pos in bset1 that is larger
8497 * than a value of the same dimension in bset2.
8499 * Return
8500 * 1 if there exists such a pair
8501 * 0 if there is no such pair, but there is a pair of equal values
8502 * -1 otherwise
8503 * -2 if some error occurred.
8505 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
8506 __isl_keep isl_basic_set *bset2, int pos)
8508 isl_int opt;
8509 enum isl_lp_result res;
8510 int cmp;
8512 isl_int_init(opt);
8514 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
8516 if (res == isl_lp_empty)
8517 cmp = -1;
8518 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
8519 res == isl_lp_unbounded)
8520 cmp = 1;
8521 else if (res == isl_lp_ok && isl_int_is_neg(opt))
8522 cmp = -1;
8523 else if (res == isl_lp_ok)
8524 cmp = 0;
8525 else
8526 cmp = -2;
8528 isl_int_clear(opt);
8529 return cmp;
8532 /* Given two sets set1 and set2, check whether
8533 * for any common value of the parameters and dimensions preceding pos
8534 * there is a value of dimension pos in set1 that is larger
8535 * than a value of the same dimension in set2.
8537 * Return
8538 * 1 if there exists such a pair
8539 * 0 if there is no such pair, but there is a pair of equal values
8540 * -1 otherwise
8541 * -2 if some error occurred.
8543 int isl_set_follows_at(__isl_keep isl_set *set1,
8544 __isl_keep isl_set *set2, int pos)
8546 int i, j;
8547 int follows = -1;
8549 if (!set1 || !set2)
8550 return -2;
8552 for (i = 0; i < set1->n; ++i)
8553 for (j = 0; j < set2->n; ++j) {
8554 int f;
8555 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
8556 if (f == 1 || f == -2)
8557 return f;
8558 if (f > follows)
8559 follows = f;
8562 return follows;
8565 static int isl_basic_map_plain_has_fixed_var(__isl_keep isl_basic_map *bmap,
8566 unsigned pos, isl_int *val)
8568 int i;
8569 int d;
8570 unsigned total;
8572 if (!bmap)
8573 return -1;
8574 total = isl_basic_map_total_dim(bmap);
8575 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
8576 for (; d+1 > pos; --d)
8577 if (!isl_int_is_zero(bmap->eq[i][1+d]))
8578 break;
8579 if (d != pos)
8580 continue;
8581 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
8582 return 0;
8583 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
8584 return 0;
8585 if (!isl_int_is_one(bmap->eq[i][1+d]))
8586 return 0;
8587 if (val)
8588 isl_int_neg(*val, bmap->eq[i][0]);
8589 return 1;
8591 return 0;
8594 static int isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
8595 unsigned pos, isl_int *val)
8597 int i;
8598 isl_int v;
8599 isl_int tmp;
8600 int fixed;
8602 if (!map)
8603 return -1;
8604 if (map->n == 0)
8605 return 0;
8606 if (map->n == 1)
8607 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
8608 isl_int_init(v);
8609 isl_int_init(tmp);
8610 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
8611 for (i = 1; fixed == 1 && i < map->n; ++i) {
8612 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
8613 if (fixed == 1 && isl_int_ne(tmp, v))
8614 fixed = 0;
8616 if (val)
8617 isl_int_set(*val, v);
8618 isl_int_clear(tmp);
8619 isl_int_clear(v);
8620 return fixed;
8623 static int isl_basic_set_plain_has_fixed_var(__isl_keep isl_basic_set *bset,
8624 unsigned pos, isl_int *val)
8626 return isl_basic_map_plain_has_fixed_var((struct isl_basic_map *)bset,
8627 pos, val);
8630 static int isl_set_plain_has_fixed_var(__isl_keep isl_set *set, unsigned pos,
8631 isl_int *val)
8633 return isl_map_plain_has_fixed_var((struct isl_map *)set, pos, val);
8636 int isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
8637 enum isl_dim_type type, unsigned pos, isl_int *val)
8639 if (pos >= isl_basic_map_dim(bmap, type))
8640 return -1;
8641 return isl_basic_map_plain_has_fixed_var(bmap,
8642 isl_basic_map_offset(bmap, type) - 1 + pos, val);
8645 /* If "bmap" obviously lies on a hyperplane where the given dimension
8646 * has a fixed value, then return that value.
8647 * Otherwise return NaN.
8649 __isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
8650 __isl_keep isl_basic_map *bmap,
8651 enum isl_dim_type type, unsigned pos)
8653 isl_ctx *ctx;
8654 isl_val *v;
8655 int fixed;
8657 if (!bmap)
8658 return NULL;
8659 ctx = isl_basic_map_get_ctx(bmap);
8660 v = isl_val_alloc(ctx);
8661 if (!v)
8662 return NULL;
8663 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
8664 if (fixed < 0)
8665 return isl_val_free(v);
8666 if (fixed) {
8667 isl_int_set_si(v->d, 1);
8668 return v;
8670 isl_val_free(v);
8671 return isl_val_nan(ctx);
8674 int isl_map_plain_is_fixed(__isl_keep isl_map *map,
8675 enum isl_dim_type type, unsigned pos, isl_int *val)
8677 if (pos >= isl_map_dim(map, type))
8678 return -1;
8679 return isl_map_plain_has_fixed_var(map,
8680 map_offset(map, type) - 1 + pos, val);
8683 /* If "map" obviously lies on a hyperplane where the given dimension
8684 * has a fixed value, then return that value.
8685 * Otherwise return NaN.
8687 __isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
8688 enum isl_dim_type type, unsigned pos)
8690 isl_ctx *ctx;
8691 isl_val *v;
8692 int fixed;
8694 if (!map)
8695 return NULL;
8696 ctx = isl_map_get_ctx(map);
8697 v = isl_val_alloc(ctx);
8698 if (!v)
8699 return NULL;
8700 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
8701 if (fixed < 0)
8702 return isl_val_free(v);
8703 if (fixed) {
8704 isl_int_set_si(v->d, 1);
8705 return v;
8707 isl_val_free(v);
8708 return isl_val_nan(ctx);
8711 /* If "set" obviously lies on a hyperplane where the given dimension
8712 * has a fixed value, then return that value.
8713 * Otherwise return NaN.
8715 __isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
8716 enum isl_dim_type type, unsigned pos)
8718 return isl_map_plain_get_val_if_fixed(set, type, pos);
8721 int isl_set_plain_is_fixed(__isl_keep isl_set *set,
8722 enum isl_dim_type type, unsigned pos, isl_int *val)
8724 return isl_map_plain_is_fixed(set, type, pos, val);
8727 /* Check if dimension dim has fixed value and if so and if val is not NULL,
8728 * then return this fixed value in *val.
8730 int isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
8731 unsigned dim, isl_int *val)
8733 return isl_basic_set_plain_has_fixed_var(bset,
8734 isl_basic_set_n_param(bset) + dim, val);
8737 /* Check if dimension dim has fixed value and if so and if val is not NULL,
8738 * then return this fixed value in *val.
8740 int isl_set_plain_dim_is_fixed(__isl_keep isl_set *set,
8741 unsigned dim, isl_int *val)
8743 return isl_set_plain_has_fixed_var(set, isl_set_n_param(set) + dim, val);
8746 /* Check if input variable in has fixed value and if so and if val is not NULL,
8747 * then return this fixed value in *val.
8749 int isl_map_plain_input_is_fixed(__isl_keep isl_map *map,
8750 unsigned in, isl_int *val)
8752 return isl_map_plain_has_fixed_var(map, isl_map_n_param(map) + in, val);
8755 /* Check if dimension dim has an (obvious) fixed lower bound and if so
8756 * and if val is not NULL, then return this lower bound in *val.
8758 int isl_basic_set_plain_dim_has_fixed_lower_bound(
8759 __isl_keep isl_basic_set *bset, unsigned dim, isl_int *val)
8761 int i, i_eq = -1, i_ineq = -1;
8762 isl_int *c;
8763 unsigned total;
8764 unsigned nparam;
8766 if (!bset)
8767 return -1;
8768 total = isl_basic_set_total_dim(bset);
8769 nparam = isl_basic_set_n_param(bset);
8770 for (i = 0; i < bset->n_eq; ++i) {
8771 if (isl_int_is_zero(bset->eq[i][1+nparam+dim]))
8772 continue;
8773 if (i_eq != -1)
8774 return 0;
8775 i_eq = i;
8777 for (i = 0; i < bset->n_ineq; ++i) {
8778 if (!isl_int_is_pos(bset->ineq[i][1+nparam+dim]))
8779 continue;
8780 if (i_eq != -1 || i_ineq != -1)
8781 return 0;
8782 i_ineq = i;
8784 if (i_eq == -1 && i_ineq == -1)
8785 return 0;
8786 c = i_eq != -1 ? bset->eq[i_eq] : bset->ineq[i_ineq];
8787 /* The coefficient should always be one due to normalization. */
8788 if (!isl_int_is_one(c[1+nparam+dim]))
8789 return 0;
8790 if (isl_seq_first_non_zero(c+1, nparam+dim) != -1)
8791 return 0;
8792 if (isl_seq_first_non_zero(c+1+nparam+dim+1,
8793 total - nparam - dim - 1) != -1)
8794 return 0;
8795 if (val)
8796 isl_int_neg(*val, c[0]);
8797 return 1;
8800 int isl_set_plain_dim_has_fixed_lower_bound(__isl_keep isl_set *set,
8801 unsigned dim, isl_int *val)
8803 int i;
8804 isl_int v;
8805 isl_int tmp;
8806 int fixed;
8808 if (!set)
8809 return -1;
8810 if (set->n == 0)
8811 return 0;
8812 if (set->n == 1)
8813 return isl_basic_set_plain_dim_has_fixed_lower_bound(set->p[0],
8814 dim, val);
8815 isl_int_init(v);
8816 isl_int_init(tmp);
8817 fixed = isl_basic_set_plain_dim_has_fixed_lower_bound(set->p[0],
8818 dim, &v);
8819 for (i = 1; fixed == 1 && i < set->n; ++i) {
8820 fixed = isl_basic_set_plain_dim_has_fixed_lower_bound(set->p[i],
8821 dim, &tmp);
8822 if (fixed == 1 && isl_int_ne(tmp, v))
8823 fixed = 0;
8825 if (val)
8826 isl_int_set(*val, v);
8827 isl_int_clear(tmp);
8828 isl_int_clear(v);
8829 return fixed;
8832 /* Return -1 if the constraint "c1" should be sorted before "c2"
8833 * and 1 if it should be sorted after "c2".
8834 * Return 0 if the two constraints are the same (up to the constant term).
8836 * In particular, if a constraint involves later variables than another
8837 * then it is sorted after this other constraint.
8838 * uset_gist depends on constraints without existentially quantified
8839 * variables sorting first.
8841 * For constraints that have the same latest variable, those
8842 * with the same coefficient for this latest variable (first in absolute value
8843 * and then in actual value) are grouped together.
8844 * This is useful for detecting pairs of constraints that can
8845 * be chained in their printed representation.
8847 * Finally, within a group, constraints are sorted according to
8848 * their coefficients (excluding the constant term).
8850 static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
8852 isl_int **c1 = (isl_int **) p1;
8853 isl_int **c2 = (isl_int **) p2;
8854 int l1, l2;
8855 unsigned size = *(unsigned *) arg;
8856 int cmp;
8858 l1 = isl_seq_last_non_zero(*c1 + 1, size);
8859 l2 = isl_seq_last_non_zero(*c2 + 1, size);
8861 if (l1 != l2)
8862 return l1 - l2;
8864 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
8865 if (cmp != 0)
8866 return cmp;
8867 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
8868 if (cmp != 0)
8869 return -cmp;
8871 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
8874 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
8875 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
8876 * and 0 if the two constraints are the same (up to the constant term).
8878 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
8879 isl_int *c1, isl_int *c2)
8881 unsigned total;
8883 if (!bmap)
8884 return -2;
8885 total = isl_basic_map_total_dim(bmap);
8886 return sort_constraint_cmp(&c1, &c2, &total);
8889 __isl_give isl_basic_map *isl_basic_map_sort_constraints(
8890 __isl_take isl_basic_map *bmap)
8892 unsigned total;
8894 if (!bmap)
8895 return NULL;
8896 if (bmap->n_ineq == 0)
8897 return bmap;
8898 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
8899 return bmap;
8900 total = isl_basic_map_total_dim(bmap);
8901 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
8902 &sort_constraint_cmp, &total) < 0)
8903 return isl_basic_map_free(bmap);
8904 return bmap;
8907 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
8908 __isl_take isl_basic_set *bset)
8910 return (struct isl_basic_set *)isl_basic_map_sort_constraints(
8911 (struct isl_basic_map *)bset);
8914 struct isl_basic_map *isl_basic_map_normalize(struct isl_basic_map *bmap)
8916 if (!bmap)
8917 return NULL;
8918 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
8919 return bmap;
8920 bmap = isl_basic_map_remove_redundancies(bmap);
8921 bmap = isl_basic_map_sort_constraints(bmap);
8922 if (bmap)
8923 ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED);
8924 return bmap;
8927 struct isl_basic_set *isl_basic_set_normalize(struct isl_basic_set *bset)
8929 return (struct isl_basic_set *)isl_basic_map_normalize(
8930 (struct isl_basic_map *)bset);
8933 int isl_basic_map_plain_cmp(const __isl_keep isl_basic_map *bmap1,
8934 const __isl_keep isl_basic_map *bmap2)
8936 int i, cmp;
8937 unsigned total;
8939 if (!bmap1 || !bmap2)
8940 return -1;
8942 if (bmap1 == bmap2)
8943 return 0;
8944 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
8945 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
8946 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
8947 if (isl_basic_map_n_param(bmap1) != isl_basic_map_n_param(bmap2))
8948 return isl_basic_map_n_param(bmap1) - isl_basic_map_n_param(bmap2);
8949 if (isl_basic_map_n_in(bmap1) != isl_basic_map_n_in(bmap2))
8950 return isl_basic_map_n_out(bmap1) - isl_basic_map_n_out(bmap2);
8951 if (isl_basic_map_n_out(bmap1) != isl_basic_map_n_out(bmap2))
8952 return isl_basic_map_n_out(bmap1) - isl_basic_map_n_out(bmap2);
8953 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
8954 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
8955 return 0;
8956 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
8957 return 1;
8958 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
8959 return -1;
8960 if (bmap1->n_eq != bmap2->n_eq)
8961 return bmap1->n_eq - bmap2->n_eq;
8962 if (bmap1->n_ineq != bmap2->n_ineq)
8963 return bmap1->n_ineq - bmap2->n_ineq;
8964 if (bmap1->n_div != bmap2->n_div)
8965 return bmap1->n_div - bmap2->n_div;
8966 total = isl_basic_map_total_dim(bmap1);
8967 for (i = 0; i < bmap1->n_eq; ++i) {
8968 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
8969 if (cmp)
8970 return cmp;
8972 for (i = 0; i < bmap1->n_ineq; ++i) {
8973 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
8974 if (cmp)
8975 return cmp;
8977 for (i = 0; i < bmap1->n_div; ++i) {
8978 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
8979 if (cmp)
8980 return cmp;
8982 return 0;
8985 int isl_basic_set_plain_cmp(const __isl_keep isl_basic_set *bset1,
8986 const __isl_keep isl_basic_set *bset2)
8988 return isl_basic_map_plain_cmp(bset1, bset2);
8991 int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8993 int i, cmp;
8995 if (set1 == set2)
8996 return 0;
8997 if (set1->n != set2->n)
8998 return set1->n - set2->n;
9000 for (i = 0; i < set1->n; ++i) {
9001 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
9002 if (cmp)
9003 return cmp;
9006 return 0;
9009 isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
9010 __isl_keep isl_basic_map *bmap2)
9012 if (!bmap1 || !bmap2)
9013 return isl_bool_error;
9014 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
9017 isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
9018 __isl_keep isl_basic_set *bset2)
9020 return isl_basic_map_plain_is_equal((isl_basic_map *)bset1,
9021 (isl_basic_map *)bset2);
9024 static int qsort_bmap_cmp(const void *p1, const void *p2)
9026 const struct isl_basic_map *bmap1 = *(const struct isl_basic_map **)p1;
9027 const struct isl_basic_map *bmap2 = *(const struct isl_basic_map **)p2;
9029 return isl_basic_map_plain_cmp(bmap1, bmap2);
9032 /* Sort the basic maps of "map" and remove duplicate basic maps.
9034 * While removing basic maps, we make sure that the basic maps remain
9035 * sorted because isl_map_normalize expects the basic maps of the result
9036 * to be sorted.
9038 static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
9040 int i, j;
9042 map = isl_map_remove_empty_parts(map);
9043 if (!map)
9044 return NULL;
9045 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
9046 for (i = map->n - 1; i >= 1; --i) {
9047 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
9048 continue;
9049 isl_basic_map_free(map->p[i-1]);
9050 for (j = i; j < map->n; ++j)
9051 map->p[j - 1] = map->p[j];
9052 map->n--;
9055 return map;
9058 /* Remove obvious duplicates among the basic maps of "map".
9060 * Unlike isl_map_normalize, this function does not remove redundant
9061 * constraints and only removes duplicates that have exactly the same
9062 * constraints in the input. It does sort the constraints and
9063 * the basic maps to ease the detection of duplicates.
9065 * If "map" has already been normalized or if the basic maps are
9066 * disjoint, then there can be no duplicates.
9068 __isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
9070 int i;
9071 isl_basic_map *bmap;
9073 if (!map)
9074 return NULL;
9075 if (map->n <= 1)
9076 return map;
9077 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
9078 return map;
9079 for (i = 0; i < map->n; ++i) {
9080 bmap = isl_basic_map_copy(map->p[i]);
9081 bmap = isl_basic_map_sort_constraints(bmap);
9082 if (!bmap)
9083 return isl_map_free(map);
9084 isl_basic_map_free(map->p[i]);
9085 map->p[i] = bmap;
9088 map = sort_and_remove_duplicates(map);
9089 return map;
9092 /* We normalize in place, but if anything goes wrong we need
9093 * to return NULL, so we need to make sure we don't change the
9094 * meaning of any possible other copies of map.
9096 __isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
9098 int i;
9099 struct isl_basic_map *bmap;
9101 if (!map)
9102 return NULL;
9103 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
9104 return map;
9105 for (i = 0; i < map->n; ++i) {
9106 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
9107 if (!bmap)
9108 goto error;
9109 isl_basic_map_free(map->p[i]);
9110 map->p[i] = bmap;
9113 map = sort_and_remove_duplicates(map);
9114 if (map)
9115 ISL_F_SET(map, ISL_MAP_NORMALIZED);
9116 return map;
9117 error:
9118 isl_map_free(map);
9119 return NULL;
9122 struct isl_set *isl_set_normalize(struct isl_set *set)
9124 return (struct isl_set *)isl_map_normalize((struct isl_map *)set);
9127 isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
9128 __isl_keep isl_map *map2)
9130 int i;
9131 isl_bool equal;
9133 if (!map1 || !map2)
9134 return isl_bool_error;
9136 if (map1 == map2)
9137 return isl_bool_true;
9138 if (!isl_space_is_equal(map1->dim, map2->dim))
9139 return isl_bool_false;
9141 map1 = isl_map_copy(map1);
9142 map2 = isl_map_copy(map2);
9143 map1 = isl_map_normalize(map1);
9144 map2 = isl_map_normalize(map2);
9145 if (!map1 || !map2)
9146 goto error;
9147 equal = map1->n == map2->n;
9148 for (i = 0; equal && i < map1->n; ++i) {
9149 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
9150 if (equal < 0)
9151 goto error;
9153 isl_map_free(map1);
9154 isl_map_free(map2);
9155 return equal;
9156 error:
9157 isl_map_free(map1);
9158 isl_map_free(map2);
9159 return isl_bool_error;
9162 isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
9163 __isl_keep isl_set *set2)
9165 return isl_map_plain_is_equal((struct isl_map *)set1,
9166 (struct isl_map *)set2);
9169 /* Return an interval that ranges from min to max (inclusive)
9171 struct isl_basic_set *isl_basic_set_interval(struct isl_ctx *ctx,
9172 isl_int min, isl_int max)
9174 int k;
9175 struct isl_basic_set *bset = NULL;
9177 bset = isl_basic_set_alloc(ctx, 0, 1, 0, 0, 2);
9178 if (!bset)
9179 goto error;
9181 k = isl_basic_set_alloc_inequality(bset);
9182 if (k < 0)
9183 goto error;
9184 isl_int_set_si(bset->ineq[k][1], 1);
9185 isl_int_neg(bset->ineq[k][0], min);
9187 k = isl_basic_set_alloc_inequality(bset);
9188 if (k < 0)
9189 goto error;
9190 isl_int_set_si(bset->ineq[k][1], -1);
9191 isl_int_set(bset->ineq[k][0], max);
9193 return bset;
9194 error:
9195 isl_basic_set_free(bset);
9196 return NULL;
9199 /* Return the basic maps in "map" as a list.
9201 __isl_give isl_basic_map_list *isl_map_get_basic_map_list(
9202 __isl_keep isl_map *map)
9204 int i;
9205 isl_ctx *ctx;
9206 isl_basic_map_list *list;
9208 if (!map)
9209 return NULL;
9210 ctx = isl_map_get_ctx(map);
9211 list = isl_basic_map_list_alloc(ctx, map->n);
9213 for (i = 0; i < map->n; ++i) {
9214 isl_basic_map *bmap;
9216 bmap = isl_basic_map_copy(map->p[i]);
9217 list = isl_basic_map_list_add(list, bmap);
9220 return list;
9223 /* Return the intersection of the elements in the non-empty list "list".
9224 * All elements are assumed to live in the same space.
9226 __isl_give isl_basic_map *isl_basic_map_list_intersect(
9227 __isl_take isl_basic_map_list *list)
9229 int i, n;
9230 isl_basic_map *bmap;
9232 if (!list)
9233 return NULL;
9234 n = isl_basic_map_list_n_basic_map(list);
9235 if (n < 1)
9236 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
9237 "expecting non-empty list", goto error);
9239 bmap = isl_basic_map_list_get_basic_map(list, 0);
9240 for (i = 1; i < n; ++i) {
9241 isl_basic_map *bmap_i;
9243 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9244 bmap = isl_basic_map_intersect(bmap, bmap_i);
9247 isl_basic_map_list_free(list);
9248 return bmap;
9249 error:
9250 isl_basic_map_list_free(list);
9251 return NULL;
9254 /* Return the intersection of the elements in the non-empty list "list".
9255 * All elements are assumed to live in the same space.
9257 __isl_give isl_basic_set *isl_basic_set_list_intersect(
9258 __isl_take isl_basic_set_list *list)
9260 return isl_basic_map_list_intersect(list);
9263 /* Return the Cartesian product of the basic sets in list (in the given order).
9265 __isl_give isl_basic_set *isl_basic_set_list_product(
9266 __isl_take struct isl_basic_set_list *list)
9268 int i;
9269 unsigned dim;
9270 unsigned nparam;
9271 unsigned extra;
9272 unsigned n_eq;
9273 unsigned n_ineq;
9274 struct isl_basic_set *product = NULL;
9276 if (!list)
9277 goto error;
9278 isl_assert(list->ctx, list->n > 0, goto error);
9279 isl_assert(list->ctx, list->p[0], goto error);
9280 nparam = isl_basic_set_n_param(list->p[0]);
9281 dim = isl_basic_set_n_dim(list->p[0]);
9282 extra = list->p[0]->n_div;
9283 n_eq = list->p[0]->n_eq;
9284 n_ineq = list->p[0]->n_ineq;
9285 for (i = 1; i < list->n; ++i) {
9286 isl_assert(list->ctx, list->p[i], goto error);
9287 isl_assert(list->ctx,
9288 nparam == isl_basic_set_n_param(list->p[i]), goto error);
9289 dim += isl_basic_set_n_dim(list->p[i]);
9290 extra += list->p[i]->n_div;
9291 n_eq += list->p[i]->n_eq;
9292 n_ineq += list->p[i]->n_ineq;
9294 product = isl_basic_set_alloc(list->ctx, nparam, dim, extra,
9295 n_eq, n_ineq);
9296 if (!product)
9297 goto error;
9298 dim = 0;
9299 for (i = 0; i < list->n; ++i) {
9300 isl_basic_set_add_constraints(product,
9301 isl_basic_set_copy(list->p[i]), dim);
9302 dim += isl_basic_set_n_dim(list->p[i]);
9304 isl_basic_set_list_free(list);
9305 return product;
9306 error:
9307 isl_basic_set_free(product);
9308 isl_basic_set_list_free(list);
9309 return NULL;
9312 struct isl_basic_map *isl_basic_map_product(
9313 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
9315 isl_space *dim_result = NULL;
9316 struct isl_basic_map *bmap;
9317 unsigned in1, in2, out1, out2, nparam, total, pos;
9318 struct isl_dim_map *dim_map1, *dim_map2;
9320 if (!bmap1 || !bmap2)
9321 goto error;
9323 isl_assert(bmap1->ctx, isl_space_match(bmap1->dim, isl_dim_param,
9324 bmap2->dim, isl_dim_param), goto error);
9325 dim_result = isl_space_product(isl_space_copy(bmap1->dim),
9326 isl_space_copy(bmap2->dim));
9328 in1 = isl_basic_map_n_in(bmap1);
9329 in2 = isl_basic_map_n_in(bmap2);
9330 out1 = isl_basic_map_n_out(bmap1);
9331 out2 = isl_basic_map_n_out(bmap2);
9332 nparam = isl_basic_map_n_param(bmap1);
9334 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
9335 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9336 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9337 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9338 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9339 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9340 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9341 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9342 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9343 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9344 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9346 bmap = isl_basic_map_alloc_space(dim_result,
9347 bmap1->n_div + bmap2->n_div,
9348 bmap1->n_eq + bmap2->n_eq,
9349 bmap1->n_ineq + bmap2->n_ineq);
9350 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9351 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9352 bmap = isl_basic_map_simplify(bmap);
9353 return isl_basic_map_finalize(bmap);
9354 error:
9355 isl_basic_map_free(bmap1);
9356 isl_basic_map_free(bmap2);
9357 return NULL;
9360 __isl_give isl_basic_map *isl_basic_map_flat_product(
9361 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9363 isl_basic_map *prod;
9365 prod = isl_basic_map_product(bmap1, bmap2);
9366 prod = isl_basic_map_flatten(prod);
9367 return prod;
9370 __isl_give isl_basic_set *isl_basic_set_flat_product(
9371 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
9373 return isl_basic_map_flat_range_product(bset1, bset2);
9376 __isl_give isl_basic_map *isl_basic_map_domain_product(
9377 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9379 isl_space *space_result = NULL;
9380 isl_basic_map *bmap;
9381 unsigned in1, in2, out, nparam, total, pos;
9382 struct isl_dim_map *dim_map1, *dim_map2;
9384 if (!bmap1 || !bmap2)
9385 goto error;
9387 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
9388 isl_space_copy(bmap2->dim));
9390 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9391 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9392 out = isl_basic_map_dim(bmap1, isl_dim_out);
9393 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9395 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
9396 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9397 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9398 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9399 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9400 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9401 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9402 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9403 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
9404 isl_dim_map_div(dim_map1, bmap1, pos += out);
9405 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9407 bmap = isl_basic_map_alloc_space(space_result,
9408 bmap1->n_div + bmap2->n_div,
9409 bmap1->n_eq + bmap2->n_eq,
9410 bmap1->n_ineq + bmap2->n_ineq);
9411 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9412 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9413 bmap = isl_basic_map_simplify(bmap);
9414 return isl_basic_map_finalize(bmap);
9415 error:
9416 isl_basic_map_free(bmap1);
9417 isl_basic_map_free(bmap2);
9418 return NULL;
9421 __isl_give isl_basic_map *isl_basic_map_range_product(
9422 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9424 isl_space *dim_result = NULL;
9425 isl_basic_map *bmap;
9426 unsigned in, out1, out2, nparam, total, pos;
9427 struct isl_dim_map *dim_map1, *dim_map2;
9429 if (!bmap1 || !bmap2)
9430 goto error;
9432 if (!isl_space_match(bmap1->dim, isl_dim_param,
9433 bmap2->dim, isl_dim_param))
9434 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
9435 "parameters don't match", goto error);
9437 dim_result = isl_space_range_product(isl_space_copy(bmap1->dim),
9438 isl_space_copy(bmap2->dim));
9440 in = isl_basic_map_dim(bmap1, isl_dim_in);
9441 out1 = isl_basic_map_n_out(bmap1);
9442 out2 = isl_basic_map_n_out(bmap2);
9443 nparam = isl_basic_map_n_param(bmap1);
9445 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
9446 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9447 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9448 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9449 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9450 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9451 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
9452 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
9453 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9454 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9455 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9457 bmap = isl_basic_map_alloc_space(dim_result,
9458 bmap1->n_div + bmap2->n_div,
9459 bmap1->n_eq + bmap2->n_eq,
9460 bmap1->n_ineq + bmap2->n_ineq);
9461 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9462 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9463 bmap = isl_basic_map_simplify(bmap);
9464 return isl_basic_map_finalize(bmap);
9465 error:
9466 isl_basic_map_free(bmap1);
9467 isl_basic_map_free(bmap2);
9468 return NULL;
9471 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
9472 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9474 isl_basic_map *prod;
9476 prod = isl_basic_map_range_product(bmap1, bmap2);
9477 prod = isl_basic_map_flatten_range(prod);
9478 return prod;
9481 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
9482 * and collect the results.
9483 * The result live in the space obtained by calling "space_product"
9484 * on the spaces of "map1" and "map2".
9485 * If "remove_duplicates" is set then the result may contain duplicates
9486 * (even if the inputs do not) and so we try and remove the obvious
9487 * duplicates.
9489 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
9490 __isl_take isl_map *map2,
9491 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
9492 __isl_take isl_space *right),
9493 __isl_give isl_basic_map *(*basic_map_product)(
9494 __isl_take isl_basic_map *left,
9495 __isl_take isl_basic_map *right),
9496 int remove_duplicates)
9498 unsigned flags = 0;
9499 struct isl_map *result;
9500 int i, j;
9502 if (!map1 || !map2)
9503 goto error;
9505 isl_assert(map1->ctx, isl_space_match(map1->dim, isl_dim_param,
9506 map2->dim, isl_dim_param), goto error);
9508 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
9509 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
9510 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
9512 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
9513 isl_space_copy(map2->dim)),
9514 map1->n * map2->n, flags);
9515 if (!result)
9516 goto error;
9517 for (i = 0; i < map1->n; ++i)
9518 for (j = 0; j < map2->n; ++j) {
9519 struct isl_basic_map *part;
9520 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
9521 isl_basic_map_copy(map2->p[j]));
9522 if (isl_basic_map_is_empty(part))
9523 isl_basic_map_free(part);
9524 else
9525 result = isl_map_add_basic_map(result, part);
9526 if (!result)
9527 goto error;
9529 if (remove_duplicates)
9530 result = isl_map_remove_obvious_duplicates(result);
9531 isl_map_free(map1);
9532 isl_map_free(map2);
9533 return result;
9534 error:
9535 isl_map_free(map1);
9536 isl_map_free(map2);
9537 return NULL;
9540 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
9542 static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
9543 __isl_take isl_map *map2)
9545 return map_product(map1, map2, &isl_space_product,
9546 &isl_basic_map_product, 0);
9549 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
9550 __isl_take isl_map *map2)
9552 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
9555 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
9557 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
9558 __isl_take isl_map *map2)
9560 isl_map *prod;
9562 prod = isl_map_product(map1, map2);
9563 prod = isl_map_flatten(prod);
9564 return prod;
9567 /* Given two set A and B, construct its Cartesian product A x B.
9569 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
9571 return isl_map_range_product(set1, set2);
9574 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
9575 __isl_take isl_set *set2)
9577 return isl_map_flat_range_product(set1, set2);
9580 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
9582 static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
9583 __isl_take isl_map *map2)
9585 return map_product(map1, map2, &isl_space_domain_product,
9586 &isl_basic_map_domain_product, 1);
9589 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
9591 static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
9592 __isl_take isl_map *map2)
9594 return map_product(map1, map2, &isl_space_range_product,
9595 &isl_basic_map_range_product, 1);
9598 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
9599 __isl_take isl_map *map2)
9601 return isl_map_align_params_map_map_and(map1, map2,
9602 &map_domain_product_aligned);
9605 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
9606 __isl_take isl_map *map2)
9608 return isl_map_align_params_map_map_and(map1, map2,
9609 &map_range_product_aligned);
9612 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
9614 __isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
9616 isl_space *space;
9617 int total1, keep1, total2, keep2;
9619 if (!map)
9620 return NULL;
9621 if (!isl_space_domain_is_wrapping(map->dim) ||
9622 !isl_space_range_is_wrapping(map->dim))
9623 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9624 "not a product", return isl_map_free(map));
9626 space = isl_map_get_space(map);
9627 total1 = isl_space_dim(space, isl_dim_in);
9628 total2 = isl_space_dim(space, isl_dim_out);
9629 space = isl_space_factor_domain(space);
9630 keep1 = isl_space_dim(space, isl_dim_in);
9631 keep2 = isl_space_dim(space, isl_dim_out);
9632 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
9633 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
9634 map = isl_map_reset_space(map, space);
9636 return map;
9639 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
9641 __isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
9643 isl_space *space;
9644 int total1, keep1, total2, keep2;
9646 if (!map)
9647 return NULL;
9648 if (!isl_space_domain_is_wrapping(map->dim) ||
9649 !isl_space_range_is_wrapping(map->dim))
9650 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9651 "not a product", return isl_map_free(map));
9653 space = isl_map_get_space(map);
9654 total1 = isl_space_dim(space, isl_dim_in);
9655 total2 = isl_space_dim(space, isl_dim_out);
9656 space = isl_space_factor_range(space);
9657 keep1 = isl_space_dim(space, isl_dim_in);
9658 keep2 = isl_space_dim(space, isl_dim_out);
9659 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
9660 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
9661 map = isl_map_reset_space(map, space);
9663 return map;
9666 /* Given a map of the form [A -> B] -> C, return the map A -> C.
9668 __isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
9670 isl_space *space;
9671 int total, keep;
9673 if (!map)
9674 return NULL;
9675 if (!isl_space_domain_is_wrapping(map->dim))
9676 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9677 "domain is not a product", return isl_map_free(map));
9679 space = isl_map_get_space(map);
9680 total = isl_space_dim(space, isl_dim_in);
9681 space = isl_space_domain_factor_domain(space);
9682 keep = isl_space_dim(space, isl_dim_in);
9683 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
9684 map = isl_map_reset_space(map, space);
9686 return map;
9689 /* Given a map of the form [A -> B] -> C, return the map B -> C.
9691 __isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
9693 isl_space *space;
9694 int total, keep;
9696 if (!map)
9697 return NULL;
9698 if (!isl_space_domain_is_wrapping(map->dim))
9699 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9700 "domain is not a product", return isl_map_free(map));
9702 space = isl_map_get_space(map);
9703 total = isl_space_dim(space, isl_dim_in);
9704 space = isl_space_domain_factor_range(space);
9705 keep = isl_space_dim(space, isl_dim_in);
9706 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
9707 map = isl_map_reset_space(map, space);
9709 return map;
9712 /* Given a map A -> [B -> C], extract the map A -> B.
9714 __isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
9716 isl_space *space;
9717 int total, keep;
9719 if (!map)
9720 return NULL;
9721 if (!isl_space_range_is_wrapping(map->dim))
9722 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9723 "range is not a product", return isl_map_free(map));
9725 space = isl_map_get_space(map);
9726 total = isl_space_dim(space, isl_dim_out);
9727 space = isl_space_range_factor_domain(space);
9728 keep = isl_space_dim(space, isl_dim_out);
9729 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
9730 map = isl_map_reset_space(map, space);
9732 return map;
9735 /* Given a map A -> [B -> C], extract the map A -> C.
9737 __isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
9739 isl_space *space;
9740 int total, keep;
9742 if (!map)
9743 return NULL;
9744 if (!isl_space_range_is_wrapping(map->dim))
9745 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9746 "range is not a product", return isl_map_free(map));
9748 space = isl_map_get_space(map);
9749 total = isl_space_dim(space, isl_dim_out);
9750 space = isl_space_range_factor_range(space);
9751 keep = isl_space_dim(space, isl_dim_out);
9752 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
9753 map = isl_map_reset_space(map, space);
9755 return map;
9758 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
9760 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
9761 __isl_take isl_map *map2)
9763 isl_map *prod;
9765 prod = isl_map_domain_product(map1, map2);
9766 prod = isl_map_flatten_domain(prod);
9767 return prod;
9770 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
9772 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
9773 __isl_take isl_map *map2)
9775 isl_map *prod;
9777 prod = isl_map_range_product(map1, map2);
9778 prod = isl_map_flatten_range(prod);
9779 return prod;
9782 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
9784 int i;
9785 uint32_t hash = isl_hash_init();
9786 unsigned total;
9788 if (!bmap)
9789 return 0;
9790 bmap = isl_basic_map_copy(bmap);
9791 bmap = isl_basic_map_normalize(bmap);
9792 if (!bmap)
9793 return 0;
9794 total = isl_basic_map_total_dim(bmap);
9795 isl_hash_byte(hash, bmap->n_eq & 0xFF);
9796 for (i = 0; i < bmap->n_eq; ++i) {
9797 uint32_t c_hash;
9798 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
9799 isl_hash_hash(hash, c_hash);
9801 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
9802 for (i = 0; i < bmap->n_ineq; ++i) {
9803 uint32_t c_hash;
9804 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
9805 isl_hash_hash(hash, c_hash);
9807 isl_hash_byte(hash, bmap->n_div & 0xFF);
9808 for (i = 0; i < bmap->n_div; ++i) {
9809 uint32_t c_hash;
9810 if (isl_int_is_zero(bmap->div[i][0]))
9811 continue;
9812 isl_hash_byte(hash, i & 0xFF);
9813 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
9814 isl_hash_hash(hash, c_hash);
9816 isl_basic_map_free(bmap);
9817 return hash;
9820 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
9822 return isl_basic_map_get_hash((isl_basic_map *)bset);
9825 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
9827 int i;
9828 uint32_t hash;
9830 if (!map)
9831 return 0;
9832 map = isl_map_copy(map);
9833 map = isl_map_normalize(map);
9834 if (!map)
9835 return 0;
9837 hash = isl_hash_init();
9838 for (i = 0; i < map->n; ++i) {
9839 uint32_t bmap_hash;
9840 bmap_hash = isl_basic_map_get_hash(map->p[i]);
9841 isl_hash_hash(hash, bmap_hash);
9844 isl_map_free(map);
9846 return hash;
9849 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
9851 return isl_map_get_hash((isl_map *)set);
9854 /* Check if the value for dimension dim is completely determined
9855 * by the values of the other parameters and variables.
9856 * That is, check if dimension dim is involved in an equality.
9858 int isl_basic_set_dim_is_unique(struct isl_basic_set *bset, unsigned dim)
9860 int i;
9861 unsigned nparam;
9863 if (!bset)
9864 return -1;
9865 nparam = isl_basic_set_n_param(bset);
9866 for (i = 0; i < bset->n_eq; ++i)
9867 if (!isl_int_is_zero(bset->eq[i][1 + nparam + dim]))
9868 return 1;
9869 return 0;
9872 /* Check if the value for dimension dim is completely determined
9873 * by the values of the other parameters and variables.
9874 * That is, check if dimension dim is involved in an equality
9875 * for each of the subsets.
9877 int isl_set_dim_is_unique(struct isl_set *set, unsigned dim)
9879 int i;
9881 if (!set)
9882 return -1;
9883 for (i = 0; i < set->n; ++i) {
9884 int unique;
9885 unique = isl_basic_set_dim_is_unique(set->p[i], dim);
9886 if (unique != 1)
9887 return unique;
9889 return 1;
9892 /* Return the number of basic maps in the (current) representation of "map".
9894 int isl_map_n_basic_map(__isl_keep isl_map *map)
9896 return map ? map->n : 0;
9899 int isl_set_n_basic_set(__isl_keep isl_set *set)
9901 return set ? set->n : 0;
9904 isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
9905 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
9907 int i;
9909 if (!map)
9910 return isl_stat_error;
9912 for (i = 0; i < map->n; ++i)
9913 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
9914 return isl_stat_error;
9916 return isl_stat_ok;
9919 isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
9920 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
9922 int i;
9924 if (!set)
9925 return isl_stat_error;
9927 for (i = 0; i < set->n; ++i)
9928 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
9929 return isl_stat_error;
9931 return isl_stat_ok;
9934 /* Return a list of basic sets, the union of which is equal to "set".
9936 __isl_give isl_basic_set_list *isl_set_get_basic_set_list(
9937 __isl_keep isl_set *set)
9939 int i;
9940 isl_basic_set_list *list;
9942 if (!set)
9943 return NULL;
9945 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
9946 for (i = 0; i < set->n; ++i) {
9947 isl_basic_set *bset;
9949 bset = isl_basic_set_copy(set->p[i]);
9950 list = isl_basic_set_list_add(list, bset);
9953 return list;
9956 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
9958 isl_space *dim;
9960 if (!bset)
9961 return NULL;
9963 bset = isl_basic_set_cow(bset);
9964 if (!bset)
9965 return NULL;
9967 dim = isl_basic_set_get_space(bset);
9968 dim = isl_space_lift(dim, bset->n_div);
9969 if (!dim)
9970 goto error;
9971 isl_space_free(bset->dim);
9972 bset->dim = dim;
9973 bset->extra -= bset->n_div;
9974 bset->n_div = 0;
9976 bset = isl_basic_set_finalize(bset);
9978 return bset;
9979 error:
9980 isl_basic_set_free(bset);
9981 return NULL;
9984 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
9986 int i;
9987 isl_space *dim;
9988 unsigned n_div;
9990 set = isl_set_align_divs(set);
9992 if (!set)
9993 return NULL;
9995 set = isl_set_cow(set);
9996 if (!set)
9997 return NULL;
9999 n_div = set->p[0]->n_div;
10000 dim = isl_set_get_space(set);
10001 dim = isl_space_lift(dim, n_div);
10002 if (!dim)
10003 goto error;
10004 isl_space_free(set->dim);
10005 set->dim = dim;
10007 for (i = 0; i < set->n; ++i) {
10008 set->p[i] = isl_basic_set_lift(set->p[i]);
10009 if (!set->p[i])
10010 goto error;
10013 return set;
10014 error:
10015 isl_set_free(set);
10016 return NULL;
10019 __isl_give isl_map *isl_set_lifting(__isl_take isl_set *set)
10021 isl_space *dim;
10022 struct isl_basic_map *bmap;
10023 unsigned n_set;
10024 unsigned n_div;
10025 unsigned n_param;
10026 unsigned total;
10027 int i, k, l;
10029 set = isl_set_align_divs(set);
10031 if (!set)
10032 return NULL;
10034 dim = isl_set_get_space(set);
10035 if (set->n == 0 || set->p[0]->n_div == 0) {
10036 isl_set_free(set);
10037 return isl_map_identity(isl_space_map_from_set(dim));
10040 n_div = set->p[0]->n_div;
10041 dim = isl_space_map_from_set(dim);
10042 n_param = isl_space_dim(dim, isl_dim_param);
10043 n_set = isl_space_dim(dim, isl_dim_in);
10044 dim = isl_space_extend(dim, n_param, n_set, n_set + n_div);
10045 bmap = isl_basic_map_alloc_space(dim, 0, n_set, 2 * n_div);
10046 for (i = 0; i < n_set; ++i)
10047 bmap = var_equal(bmap, i);
10049 total = n_param + n_set + n_set + n_div;
10050 for (i = 0; i < n_div; ++i) {
10051 k = isl_basic_map_alloc_inequality(bmap);
10052 if (k < 0)
10053 goto error;
10054 isl_seq_cpy(bmap->ineq[k], set->p[0]->div[i]+1, 1+n_param);
10055 isl_seq_clr(bmap->ineq[k]+1+n_param, n_set);
10056 isl_seq_cpy(bmap->ineq[k]+1+n_param+n_set,
10057 set->p[0]->div[i]+1+1+n_param, n_set + n_div);
10058 isl_int_neg(bmap->ineq[k][1+n_param+n_set+n_set+i],
10059 set->p[0]->div[i][0]);
10061 l = isl_basic_map_alloc_inequality(bmap);
10062 if (l < 0)
10063 goto error;
10064 isl_seq_neg(bmap->ineq[l], bmap->ineq[k], 1 + total);
10065 isl_int_add(bmap->ineq[l][0], bmap->ineq[l][0],
10066 set->p[0]->div[i][0]);
10067 isl_int_sub_ui(bmap->ineq[l][0], bmap->ineq[l][0], 1);
10070 isl_set_free(set);
10071 bmap = isl_basic_map_simplify(bmap);
10072 bmap = isl_basic_map_finalize(bmap);
10073 return isl_map_from_basic_map(bmap);
10074 error:
10075 isl_set_free(set);
10076 isl_basic_map_free(bmap);
10077 return NULL;
10080 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
10082 unsigned dim;
10083 int size = 0;
10085 if (!bset)
10086 return -1;
10088 dim = isl_basic_set_total_dim(bset);
10089 size += bset->n_eq * (1 + dim);
10090 size += bset->n_ineq * (1 + dim);
10091 size += bset->n_div * (2 + dim);
10093 return size;
10096 int isl_set_size(__isl_keep isl_set *set)
10098 int i;
10099 int size = 0;
10101 if (!set)
10102 return -1;
10104 for (i = 0; i < set->n; ++i)
10105 size += isl_basic_set_size(set->p[i]);
10107 return size;
10110 /* Check if there is any lower bound (if lower == 0) and/or upper
10111 * bound (if upper == 0) on the specified dim.
10113 static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10114 enum isl_dim_type type, unsigned pos, int lower, int upper)
10116 int i;
10118 if (!bmap)
10119 return isl_bool_error;
10121 isl_assert(bmap->ctx, pos < isl_basic_map_dim(bmap, type),
10122 return isl_bool_error);
10124 pos += isl_basic_map_offset(bmap, type);
10126 for (i = 0; i < bmap->n_div; ++i) {
10127 if (isl_int_is_zero(bmap->div[i][0]))
10128 continue;
10129 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
10130 return isl_bool_true;
10133 for (i = 0; i < bmap->n_eq; ++i)
10134 if (!isl_int_is_zero(bmap->eq[i][pos]))
10135 return isl_bool_true;
10137 for (i = 0; i < bmap->n_ineq; ++i) {
10138 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
10139 if (sgn > 0)
10140 lower = 1;
10141 if (sgn < 0)
10142 upper = 1;
10145 return lower && upper;
10148 int isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10149 enum isl_dim_type type, unsigned pos)
10151 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
10154 isl_bool isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
10155 enum isl_dim_type type, unsigned pos)
10157 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
10160 isl_bool isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
10161 enum isl_dim_type type, unsigned pos)
10163 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
10166 int isl_map_dim_is_bounded(__isl_keep isl_map *map,
10167 enum isl_dim_type type, unsigned pos)
10169 int i;
10171 if (!map)
10172 return -1;
10174 for (i = 0; i < map->n; ++i) {
10175 int bounded;
10176 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
10177 if (bounded < 0 || !bounded)
10178 return bounded;
10181 return 1;
10184 /* Return 1 if the specified dim is involved in both an upper bound
10185 * and a lower bound.
10187 int isl_set_dim_is_bounded(__isl_keep isl_set *set,
10188 enum isl_dim_type type, unsigned pos)
10190 return isl_map_dim_is_bounded((isl_map *)set, type, pos);
10193 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10195 static isl_bool has_any_bound(__isl_keep isl_map *map,
10196 enum isl_dim_type type, unsigned pos,
10197 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10198 enum isl_dim_type type, unsigned pos))
10200 int i;
10202 if (!map)
10203 return isl_bool_error;
10205 for (i = 0; i < map->n; ++i) {
10206 isl_bool bounded;
10207 bounded = fn(map->p[i], type, pos);
10208 if (bounded < 0 || bounded)
10209 return bounded;
10212 return isl_bool_false;
10215 /* Return 1 if the specified dim is involved in any lower bound.
10217 isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
10218 enum isl_dim_type type, unsigned pos)
10220 return has_any_bound(set, type, pos,
10221 &isl_basic_map_dim_has_lower_bound);
10224 /* Return 1 if the specified dim is involved in any upper bound.
10226 isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
10227 enum isl_dim_type type, unsigned pos)
10229 return has_any_bound(set, type, pos,
10230 &isl_basic_map_dim_has_upper_bound);
10233 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10235 static isl_bool has_bound(__isl_keep isl_map *map,
10236 enum isl_dim_type type, unsigned pos,
10237 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10238 enum isl_dim_type type, unsigned pos))
10240 int i;
10242 if (!map)
10243 return isl_bool_error;
10245 for (i = 0; i < map->n; ++i) {
10246 isl_bool bounded;
10247 bounded = fn(map->p[i], type, pos);
10248 if (bounded < 0 || !bounded)
10249 return bounded;
10252 return isl_bool_true;
10255 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10257 isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
10258 enum isl_dim_type type, unsigned pos)
10260 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
10263 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10265 isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
10266 enum isl_dim_type type, unsigned pos)
10268 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
10271 /* For each of the "n" variables starting at "first", determine
10272 * the sign of the variable and put the results in the first "n"
10273 * elements of the array "signs".
10274 * Sign
10275 * 1 means that the variable is non-negative
10276 * -1 means that the variable is non-positive
10277 * 0 means the variable attains both positive and negative values.
10279 int isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
10280 unsigned first, unsigned n, int *signs)
10282 isl_vec *bound = NULL;
10283 struct isl_tab *tab = NULL;
10284 struct isl_tab_undo *snap;
10285 int i;
10287 if (!bset || !signs)
10288 return -1;
10290 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
10291 tab = isl_tab_from_basic_set(bset, 0);
10292 if (!bound || !tab)
10293 goto error;
10295 isl_seq_clr(bound->el, bound->size);
10296 isl_int_set_si(bound->el[0], -1);
10298 snap = isl_tab_snap(tab);
10299 for (i = 0; i < n; ++i) {
10300 int empty;
10302 isl_int_set_si(bound->el[1 + first + i], -1);
10303 if (isl_tab_add_ineq(tab, bound->el) < 0)
10304 goto error;
10305 empty = tab->empty;
10306 isl_int_set_si(bound->el[1 + first + i], 0);
10307 if (isl_tab_rollback(tab, snap) < 0)
10308 goto error;
10310 if (empty) {
10311 signs[i] = 1;
10312 continue;
10315 isl_int_set_si(bound->el[1 + first + i], 1);
10316 if (isl_tab_add_ineq(tab, bound->el) < 0)
10317 goto error;
10318 empty = tab->empty;
10319 isl_int_set_si(bound->el[1 + first + i], 0);
10320 if (isl_tab_rollback(tab, snap) < 0)
10321 goto error;
10323 signs[i] = empty ? -1 : 0;
10326 isl_tab_free(tab);
10327 isl_vec_free(bound);
10328 return 0;
10329 error:
10330 isl_tab_free(tab);
10331 isl_vec_free(bound);
10332 return -1;
10335 int isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
10336 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
10338 if (!bset || !signs)
10339 return -1;
10340 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
10341 return -1);
10343 first += pos(bset->dim, type) - 1;
10344 return isl_basic_set_vars_get_sign(bset, first, n, signs);
10347 /* Is it possible for the integer division "div" to depend (possibly
10348 * indirectly) on any output dimensions?
10350 * If the div is undefined, then we conservatively assume that it
10351 * may depend on them.
10352 * Otherwise, we check if it actually depends on them or on any integer
10353 * divisions that may depend on them.
10355 static int div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
10357 int i;
10358 unsigned n_out, o_out;
10359 unsigned n_div, o_div;
10361 if (isl_int_is_zero(bmap->div[div][0]))
10362 return 1;
10364 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10365 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10367 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
10368 return 1;
10370 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10371 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10373 for (i = 0; i < n_div; ++i) {
10374 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
10375 continue;
10376 if (div_may_involve_output(bmap, i))
10377 return 1;
10380 return 0;
10383 /* Return the first integer division of "bmap" in the range
10384 * [first, first + n[ that may depend on any output dimensions and
10385 * that has a non-zero coefficient in "c" (where the first coefficient
10386 * in "c" corresponds to integer division "first").
10388 static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
10389 isl_int *c, int first, int n)
10391 int k;
10393 if (!bmap)
10394 return -1;
10396 for (k = first; k < first + n; ++k) {
10397 if (isl_int_is_zero(c[k]))
10398 continue;
10399 if (div_may_involve_output(bmap, k))
10400 return k;
10403 return first + n;
10406 /* Look for a pair of inequality constraints in "bmap" of the form
10408 * -l + i >= 0 or i >= l
10409 * and
10410 * n + l - i >= 0 or i <= l + n
10412 * with n < "m" and i the output dimension at position "pos".
10413 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10414 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10415 * and earlier output dimensions, as well as integer divisions that do
10416 * not involve any of the output dimensions.
10418 * Return the index of the first inequality constraint or bmap->n_ineq
10419 * if no such pair can be found.
10421 static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
10422 int pos, isl_int m)
10424 int i, j;
10425 isl_ctx *ctx;
10426 unsigned total;
10427 unsigned n_div, o_div;
10428 unsigned n_out, o_out;
10429 int less;
10431 if (!bmap)
10432 return -1;
10434 ctx = isl_basic_map_get_ctx(bmap);
10435 total = isl_basic_map_total_dim(bmap);
10436 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10437 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10438 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10439 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10440 for (i = 0; i < bmap->n_ineq; ++i) {
10441 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
10442 continue;
10443 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
10444 n_out - (pos + 1)) != -1)
10445 continue;
10446 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
10447 0, n_div) < n_div)
10448 continue;
10449 for (j = i + 1; j < bmap->n_ineq; ++j) {
10450 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
10451 ctx->one))
10452 continue;
10453 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
10454 bmap->ineq[j] + 1, total))
10455 continue;
10456 break;
10458 if (j >= bmap->n_ineq)
10459 continue;
10460 isl_int_add(bmap->ineq[i][0],
10461 bmap->ineq[i][0], bmap->ineq[j][0]);
10462 less = isl_int_abs_lt(bmap->ineq[i][0], m);
10463 isl_int_sub(bmap->ineq[i][0],
10464 bmap->ineq[i][0], bmap->ineq[j][0]);
10465 if (!less)
10466 continue;
10467 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
10468 return i;
10469 else
10470 return j;
10473 return bmap->n_ineq;
10476 /* Return the index of the equality of "bmap" that defines
10477 * the output dimension "pos" in terms of earlier dimensions.
10478 * The equality may also involve integer divisions, as long
10479 * as those integer divisions are defined in terms of
10480 * parameters or input dimensions.
10481 * In this case, *div is set to the number of integer divisions and
10482 * *ineq is set to the number of inequality constraints (provided
10483 * div and ineq are not NULL).
10485 * The equality may also involve a single integer division involving
10486 * the output dimensions (typically only output dimension "pos") as
10487 * long as the coefficient of output dimension "pos" is 1 or -1 and
10488 * there is a pair of constraints i >= l and i <= l + n, with i referring
10489 * to output dimension "pos", l an expression involving only earlier
10490 * dimensions and n smaller than the coefficient of the integer division
10491 * in the equality. In this case, the output dimension can be defined
10492 * in terms of a modulo expression that does not involve the integer division.
10493 * *div is then set to this single integer division and
10494 * *ineq is set to the index of constraint i >= l.
10496 * Return bmap->n_eq if there is no such equality.
10497 * Return -1 on error.
10499 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
10500 int pos, int *div, int *ineq)
10502 int j, k, l;
10503 unsigned n_out, o_out;
10504 unsigned n_div, o_div;
10506 if (!bmap)
10507 return -1;
10509 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10510 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10511 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10512 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10514 if (ineq)
10515 *ineq = bmap->n_ineq;
10516 if (div)
10517 *div = n_div;
10518 for (j = 0; j < bmap->n_eq; ++j) {
10519 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
10520 continue;
10521 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
10522 n_out - (pos + 1)) != -1)
10523 continue;
10524 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
10525 0, n_div);
10526 if (k >= n_div)
10527 return j;
10528 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
10529 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
10530 continue;
10531 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
10532 k + 1, n_div - (k+1)) < n_div)
10533 continue;
10534 l = find_modulo_constraint_pair(bmap, pos,
10535 bmap->eq[j][o_div + k]);
10536 if (l < 0)
10537 return -1;
10538 if (l >= bmap->n_ineq)
10539 continue;
10540 if (div)
10541 *div = k;
10542 if (ineq)
10543 *ineq = l;
10544 return j;
10547 return bmap->n_eq;
10550 /* Check if the given basic map is obviously single-valued.
10551 * In particular, for each output dimension, check that there is
10552 * an equality that defines the output dimension in terms of
10553 * earlier dimensions.
10555 isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
10557 int i;
10558 unsigned n_out;
10560 if (!bmap)
10561 return isl_bool_error;
10563 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10565 for (i = 0; i < n_out; ++i) {
10566 int eq;
10568 eq = isl_basic_map_output_defining_equality(bmap, i,
10569 NULL, NULL);
10570 if (eq < 0)
10571 return isl_bool_error;
10572 if (eq >= bmap->n_eq)
10573 return isl_bool_false;
10576 return isl_bool_true;
10579 /* Check if the given basic map is single-valued.
10580 * We simply compute
10582 * M \circ M^-1
10584 * and check if the result is a subset of the identity mapping.
10586 isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
10588 isl_space *space;
10589 isl_basic_map *test;
10590 isl_basic_map *id;
10591 isl_bool sv;
10593 sv = isl_basic_map_plain_is_single_valued(bmap);
10594 if (sv < 0 || sv)
10595 return sv;
10597 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
10598 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
10600 space = isl_basic_map_get_space(bmap);
10601 space = isl_space_map_from_set(isl_space_range(space));
10602 id = isl_basic_map_identity(space);
10604 sv = isl_basic_map_is_subset(test, id);
10606 isl_basic_map_free(test);
10607 isl_basic_map_free(id);
10609 return sv;
10612 /* Check if the given map is obviously single-valued.
10614 isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
10616 if (!map)
10617 return isl_bool_error;
10618 if (map->n == 0)
10619 return isl_bool_true;
10620 if (map->n >= 2)
10621 return isl_bool_false;
10623 return isl_basic_map_plain_is_single_valued(map->p[0]);
10626 /* Check if the given map is single-valued.
10627 * We simply compute
10629 * M \circ M^-1
10631 * and check if the result is a subset of the identity mapping.
10633 isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
10635 isl_space *dim;
10636 isl_map *test;
10637 isl_map *id;
10638 isl_bool sv;
10640 sv = isl_map_plain_is_single_valued(map);
10641 if (sv < 0 || sv)
10642 return sv;
10644 test = isl_map_reverse(isl_map_copy(map));
10645 test = isl_map_apply_range(test, isl_map_copy(map));
10647 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
10648 id = isl_map_identity(dim);
10650 sv = isl_map_is_subset(test, id);
10652 isl_map_free(test);
10653 isl_map_free(id);
10655 return sv;
10658 isl_bool isl_map_is_injective(__isl_keep isl_map *map)
10660 isl_bool in;
10662 map = isl_map_copy(map);
10663 map = isl_map_reverse(map);
10664 in = isl_map_is_single_valued(map);
10665 isl_map_free(map);
10667 return in;
10670 /* Check if the given map is obviously injective.
10672 isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
10674 isl_bool in;
10676 map = isl_map_copy(map);
10677 map = isl_map_reverse(map);
10678 in = isl_map_plain_is_single_valued(map);
10679 isl_map_free(map);
10681 return in;
10684 isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
10686 isl_bool sv;
10688 sv = isl_map_is_single_valued(map);
10689 if (sv < 0 || !sv)
10690 return sv;
10692 return isl_map_is_injective(map);
10695 isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
10697 return isl_map_is_single_valued((isl_map *)set);
10700 int isl_map_is_translation(__isl_keep isl_map *map)
10702 int ok;
10703 isl_set *delta;
10705 delta = isl_map_deltas(isl_map_copy(map));
10706 ok = isl_set_is_singleton(delta);
10707 isl_set_free(delta);
10709 return ok;
10712 static int unique(isl_int *p, unsigned pos, unsigned len)
10714 if (isl_seq_first_non_zero(p, pos) != -1)
10715 return 0;
10716 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
10717 return 0;
10718 return 1;
10721 int isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
10723 int i, j;
10724 unsigned nvar;
10725 unsigned ovar;
10727 if (!bset)
10728 return -1;
10730 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
10731 return 0;
10733 nvar = isl_basic_set_dim(bset, isl_dim_set);
10734 ovar = isl_space_offset(bset->dim, isl_dim_set);
10735 for (j = 0; j < nvar; ++j) {
10736 int lower = 0, upper = 0;
10737 for (i = 0; i < bset->n_eq; ++i) {
10738 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
10739 continue;
10740 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
10741 return 0;
10742 break;
10744 if (i < bset->n_eq)
10745 continue;
10746 for (i = 0; i < bset->n_ineq; ++i) {
10747 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
10748 continue;
10749 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
10750 return 0;
10751 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
10752 lower = 1;
10753 else
10754 upper = 1;
10756 if (!lower || !upper)
10757 return 0;
10760 return 1;
10763 int isl_set_is_box(__isl_keep isl_set *set)
10765 if (!set)
10766 return -1;
10767 if (set->n != 1)
10768 return 0;
10770 return isl_basic_set_is_box(set->p[0]);
10773 isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
10775 if (!bset)
10776 return isl_bool_error;
10778 return isl_space_is_wrapping(bset->dim);
10781 isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
10783 if (!set)
10784 return isl_bool_error;
10786 return isl_space_is_wrapping(set->dim);
10789 /* Modify the space of "map" through a call to "change".
10790 * If "can_change" is set (not NULL), then first call it to check
10791 * if the modification is allowed, printing the error message "cannot_change"
10792 * if it is not.
10794 static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
10795 isl_bool (*can_change)(__isl_keep isl_map *map),
10796 const char *cannot_change,
10797 __isl_give isl_space *(*change)(__isl_take isl_space *space))
10799 isl_bool ok;
10800 isl_space *space;
10802 if (!map)
10803 return NULL;
10805 ok = can_change ? can_change(map) : isl_bool_true;
10806 if (ok < 0)
10807 return isl_map_free(map);
10808 if (!ok)
10809 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
10810 return isl_map_free(map));
10812 space = change(isl_map_get_space(map));
10813 map = isl_map_reset_space(map, space);
10815 return map;
10818 /* Is the domain of "map" a wrapped relation?
10820 isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
10822 if (!map)
10823 return isl_bool_error;
10825 return isl_space_domain_is_wrapping(map->dim);
10828 /* Is the range of "map" a wrapped relation?
10830 isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
10832 if (!map)
10833 return isl_bool_error;
10835 return isl_space_range_is_wrapping(map->dim);
10838 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
10840 bmap = isl_basic_map_cow(bmap);
10841 if (!bmap)
10842 return NULL;
10844 bmap->dim = isl_space_wrap(bmap->dim);
10845 if (!bmap->dim)
10846 goto error;
10848 bmap = isl_basic_map_finalize(bmap);
10850 return (isl_basic_set *)bmap;
10851 error:
10852 isl_basic_map_free(bmap);
10853 return NULL;
10856 /* Given a map A -> B, return the set (A -> B).
10858 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
10860 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
10863 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
10865 bset = isl_basic_set_cow(bset);
10866 if (!bset)
10867 return NULL;
10869 bset->dim = isl_space_unwrap(bset->dim);
10870 if (!bset->dim)
10871 goto error;
10873 bset = isl_basic_set_finalize(bset);
10875 return (isl_basic_map *)bset;
10876 error:
10877 isl_basic_set_free(bset);
10878 return NULL;
10881 /* Given a set (A -> B), return the map A -> B.
10882 * Error out if "set" is not of the form (A -> B).
10884 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
10886 return isl_map_change_space(set, &isl_set_is_wrapping,
10887 "not a wrapping set", &isl_space_unwrap);
10890 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
10891 enum isl_dim_type type)
10893 if (!bmap)
10894 return NULL;
10896 if (!isl_space_is_named_or_nested(bmap->dim, type))
10897 return bmap;
10899 bmap = isl_basic_map_cow(bmap);
10900 if (!bmap)
10901 return NULL;
10903 bmap->dim = isl_space_reset(bmap->dim, type);
10904 if (!bmap->dim)
10905 goto error;
10907 bmap = isl_basic_map_finalize(bmap);
10909 return bmap;
10910 error:
10911 isl_basic_map_free(bmap);
10912 return NULL;
10915 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
10916 enum isl_dim_type type)
10918 int i;
10920 if (!map)
10921 return NULL;
10923 if (!isl_space_is_named_or_nested(map->dim, type))
10924 return map;
10926 map = isl_map_cow(map);
10927 if (!map)
10928 return NULL;
10930 for (i = 0; i < map->n; ++i) {
10931 map->p[i] = isl_basic_map_reset(map->p[i], type);
10932 if (!map->p[i])
10933 goto error;
10935 map->dim = isl_space_reset(map->dim, type);
10936 if (!map->dim)
10937 goto error;
10939 return map;
10940 error:
10941 isl_map_free(map);
10942 return NULL;
10945 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
10947 if (!bmap)
10948 return NULL;
10950 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
10951 return bmap;
10953 bmap = isl_basic_map_cow(bmap);
10954 if (!bmap)
10955 return NULL;
10957 bmap->dim = isl_space_flatten(bmap->dim);
10958 if (!bmap->dim)
10959 goto error;
10961 bmap = isl_basic_map_finalize(bmap);
10963 return bmap;
10964 error:
10965 isl_basic_map_free(bmap);
10966 return NULL;
10969 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
10971 return (isl_basic_set *)isl_basic_map_flatten((isl_basic_map *)bset);
10974 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
10975 __isl_take isl_basic_map *bmap)
10977 if (!bmap)
10978 return NULL;
10980 if (!bmap->dim->nested[0])
10981 return bmap;
10983 bmap = isl_basic_map_cow(bmap);
10984 if (!bmap)
10985 return NULL;
10987 bmap->dim = isl_space_flatten_domain(bmap->dim);
10988 if (!bmap->dim)
10989 goto error;
10991 bmap = isl_basic_map_finalize(bmap);
10993 return bmap;
10994 error:
10995 isl_basic_map_free(bmap);
10996 return NULL;
10999 __isl_give isl_basic_map *isl_basic_map_flatten_range(
11000 __isl_take isl_basic_map *bmap)
11002 if (!bmap)
11003 return NULL;
11005 if (!bmap->dim->nested[1])
11006 return bmap;
11008 bmap = isl_basic_map_cow(bmap);
11009 if (!bmap)
11010 return NULL;
11012 bmap->dim = isl_space_flatten_range(bmap->dim);
11013 if (!bmap->dim)
11014 goto error;
11016 bmap = isl_basic_map_finalize(bmap);
11018 return bmap;
11019 error:
11020 isl_basic_map_free(bmap);
11021 return NULL;
11024 /* Remove any internal structure from the spaces of domain and range of "map".
11026 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
11028 if (!map)
11029 return NULL;
11031 if (!map->dim->nested[0] && !map->dim->nested[1])
11032 return map;
11034 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
11037 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
11039 return (isl_set *)isl_map_flatten((isl_map *)set);
11042 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
11044 isl_space *dim, *flat_dim;
11045 isl_map *map;
11047 dim = isl_set_get_space(set);
11048 flat_dim = isl_space_flatten(isl_space_copy(dim));
11049 map = isl_map_identity(isl_space_join(isl_space_reverse(dim), flat_dim));
11050 map = isl_map_intersect_domain(map, set);
11052 return map;
11055 /* Remove any internal structure from the space of the domain of "map".
11057 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
11059 if (!map)
11060 return NULL;
11062 if (!map->dim->nested[0])
11063 return map;
11065 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
11068 /* Remove any internal structure from the space of the range of "map".
11070 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
11072 if (!map)
11073 return NULL;
11075 if (!map->dim->nested[1])
11076 return map;
11078 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
11081 /* Reorder the dimensions of "bmap" according to the given dim_map
11082 * and set the dimension specification to "dim".
11084 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
11085 __isl_take isl_space *dim, __isl_take struct isl_dim_map *dim_map)
11087 isl_basic_map *res;
11088 unsigned flags;
11090 bmap = isl_basic_map_cow(bmap);
11091 if (!bmap || !dim || !dim_map)
11092 goto error;
11094 flags = bmap->flags;
11095 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
11096 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED);
11097 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
11098 res = isl_basic_map_alloc_space(dim,
11099 bmap->n_div, bmap->n_eq, bmap->n_ineq);
11100 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
11101 if (res)
11102 res->flags = flags;
11103 res = isl_basic_map_finalize(res);
11104 return res;
11105 error:
11106 free(dim_map);
11107 isl_basic_map_free(bmap);
11108 isl_space_free(dim);
11109 return NULL;
11112 /* Reorder the dimensions of "map" according to given reordering.
11114 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
11115 __isl_take isl_reordering *r)
11117 int i;
11118 struct isl_dim_map *dim_map;
11120 map = isl_map_cow(map);
11121 dim_map = isl_dim_map_from_reordering(r);
11122 if (!map || !r || !dim_map)
11123 goto error;
11125 for (i = 0; i < map->n; ++i) {
11126 struct isl_dim_map *dim_map_i;
11128 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
11130 map->p[i] = isl_basic_map_realign(map->p[i],
11131 isl_space_copy(r->dim), dim_map_i);
11133 if (!map->p[i])
11134 goto error;
11137 map = isl_map_reset_space(map, isl_space_copy(r->dim));
11139 isl_reordering_free(r);
11140 free(dim_map);
11141 return map;
11142 error:
11143 free(dim_map);
11144 isl_map_free(map);
11145 isl_reordering_free(r);
11146 return NULL;
11149 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
11150 __isl_take isl_reordering *r)
11152 return (isl_set *)isl_map_realign((isl_map *)set, r);
11155 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
11156 __isl_take isl_space *model)
11158 isl_ctx *ctx;
11160 if (!map || !model)
11161 goto error;
11163 ctx = isl_space_get_ctx(model);
11164 if (!isl_space_has_named_params(model))
11165 isl_die(ctx, isl_error_invalid,
11166 "model has unnamed parameters", goto error);
11167 if (!isl_space_has_named_params(map->dim))
11168 isl_die(ctx, isl_error_invalid,
11169 "relation has unnamed parameters", goto error);
11170 if (!isl_space_match(map->dim, isl_dim_param, model, isl_dim_param)) {
11171 isl_reordering *exp;
11173 model = isl_space_drop_dims(model, isl_dim_in,
11174 0, isl_space_dim(model, isl_dim_in));
11175 model = isl_space_drop_dims(model, isl_dim_out,
11176 0, isl_space_dim(model, isl_dim_out));
11177 exp = isl_parameter_alignment_reordering(map->dim, model);
11178 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
11179 map = isl_map_realign(map, exp);
11182 isl_space_free(model);
11183 return map;
11184 error:
11185 isl_space_free(model);
11186 isl_map_free(map);
11187 return NULL;
11190 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
11191 __isl_take isl_space *model)
11193 return isl_map_align_params(set, model);
11196 /* Align the parameters of "bmap" to those of "model", introducing
11197 * additional parameters if needed.
11199 __isl_give isl_basic_map *isl_basic_map_align_params(
11200 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
11202 isl_ctx *ctx;
11204 if (!bmap || !model)
11205 goto error;
11207 ctx = isl_space_get_ctx(model);
11208 if (!isl_space_has_named_params(model))
11209 isl_die(ctx, isl_error_invalid,
11210 "model has unnamed parameters", goto error);
11211 if (!isl_space_has_named_params(bmap->dim))
11212 isl_die(ctx, isl_error_invalid,
11213 "relation has unnamed parameters", goto error);
11214 if (!isl_space_match(bmap->dim, isl_dim_param, model, isl_dim_param)) {
11215 isl_reordering *exp;
11216 struct isl_dim_map *dim_map;
11218 model = isl_space_drop_dims(model, isl_dim_in,
11219 0, isl_space_dim(model, isl_dim_in));
11220 model = isl_space_drop_dims(model, isl_dim_out,
11221 0, isl_space_dim(model, isl_dim_out));
11222 exp = isl_parameter_alignment_reordering(bmap->dim, model);
11223 exp = isl_reordering_extend_space(exp,
11224 isl_basic_map_get_space(bmap));
11225 dim_map = isl_dim_map_from_reordering(exp);
11226 bmap = isl_basic_map_realign(bmap,
11227 exp ? isl_space_copy(exp->dim) : NULL,
11228 isl_dim_map_extend(dim_map, bmap));
11229 isl_reordering_free(exp);
11230 free(dim_map);
11233 isl_space_free(model);
11234 return bmap;
11235 error:
11236 isl_space_free(model);
11237 isl_basic_map_free(bmap);
11238 return NULL;
11241 /* Align the parameters of "bset" to those of "model", introducing
11242 * additional parameters if needed.
11244 __isl_give isl_basic_set *isl_basic_set_align_params(
11245 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
11247 return isl_basic_map_align_params(bset, model);
11250 __isl_give isl_mat *isl_basic_map_equalities_matrix(
11251 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11252 enum isl_dim_type c2, enum isl_dim_type c3,
11253 enum isl_dim_type c4, enum isl_dim_type c5)
11255 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11256 struct isl_mat *mat;
11257 int i, j, k;
11258 int pos;
11260 if (!bmap)
11261 return NULL;
11262 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
11263 isl_basic_map_total_dim(bmap) + 1);
11264 if (!mat)
11265 return NULL;
11266 for (i = 0; i < bmap->n_eq; ++i)
11267 for (j = 0, pos = 0; j < 5; ++j) {
11268 int off = isl_basic_map_offset(bmap, c[j]);
11269 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11270 isl_int_set(mat->row[i][pos],
11271 bmap->eq[i][off + k]);
11272 ++pos;
11276 return mat;
11279 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
11280 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11281 enum isl_dim_type c2, enum isl_dim_type c3,
11282 enum isl_dim_type c4, enum isl_dim_type c5)
11284 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11285 struct isl_mat *mat;
11286 int i, j, k;
11287 int pos;
11289 if (!bmap)
11290 return NULL;
11291 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
11292 isl_basic_map_total_dim(bmap) + 1);
11293 if (!mat)
11294 return NULL;
11295 for (i = 0; i < bmap->n_ineq; ++i)
11296 for (j = 0, pos = 0; j < 5; ++j) {
11297 int off = isl_basic_map_offset(bmap, c[j]);
11298 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11299 isl_int_set(mat->row[i][pos],
11300 bmap->ineq[i][off + k]);
11301 ++pos;
11305 return mat;
11308 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
11309 __isl_take isl_space *dim,
11310 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11311 enum isl_dim_type c2, enum isl_dim_type c3,
11312 enum isl_dim_type c4, enum isl_dim_type c5)
11314 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11315 isl_basic_map *bmap;
11316 unsigned total;
11317 unsigned extra;
11318 int i, j, k, l;
11319 int pos;
11321 if (!dim || !eq || !ineq)
11322 goto error;
11324 if (eq->n_col != ineq->n_col)
11325 isl_die(dim->ctx, isl_error_invalid,
11326 "equalities and inequalities matrices should have "
11327 "same number of columns", goto error);
11329 total = 1 + isl_space_dim(dim, isl_dim_all);
11331 if (eq->n_col < total)
11332 isl_die(dim->ctx, isl_error_invalid,
11333 "number of columns too small", goto error);
11335 extra = eq->n_col - total;
11337 bmap = isl_basic_map_alloc_space(isl_space_copy(dim), extra,
11338 eq->n_row, ineq->n_row);
11339 if (!bmap)
11340 goto error;
11341 for (i = 0; i < extra; ++i) {
11342 k = isl_basic_map_alloc_div(bmap);
11343 if (k < 0)
11344 goto error;
11345 isl_int_set_si(bmap->div[k][0], 0);
11347 for (i = 0; i < eq->n_row; ++i) {
11348 l = isl_basic_map_alloc_equality(bmap);
11349 if (l < 0)
11350 goto error;
11351 for (j = 0, pos = 0; j < 5; ++j) {
11352 int off = isl_basic_map_offset(bmap, c[j]);
11353 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11354 isl_int_set(bmap->eq[l][off + k],
11355 eq->row[i][pos]);
11356 ++pos;
11360 for (i = 0; i < ineq->n_row; ++i) {
11361 l = isl_basic_map_alloc_inequality(bmap);
11362 if (l < 0)
11363 goto error;
11364 for (j = 0, pos = 0; j < 5; ++j) {
11365 int off = isl_basic_map_offset(bmap, c[j]);
11366 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11367 isl_int_set(bmap->ineq[l][off + k],
11368 ineq->row[i][pos]);
11369 ++pos;
11374 isl_space_free(dim);
11375 isl_mat_free(eq);
11376 isl_mat_free(ineq);
11378 bmap = isl_basic_map_simplify(bmap);
11379 return isl_basic_map_finalize(bmap);
11380 error:
11381 isl_space_free(dim);
11382 isl_mat_free(eq);
11383 isl_mat_free(ineq);
11384 return NULL;
11387 __isl_give isl_mat *isl_basic_set_equalities_matrix(
11388 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11389 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11391 return isl_basic_map_equalities_matrix((isl_basic_map *)bset,
11392 c1, c2, c3, c4, isl_dim_in);
11395 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
11396 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11397 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11399 return isl_basic_map_inequalities_matrix((isl_basic_map *)bset,
11400 c1, c2, c3, c4, isl_dim_in);
11403 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
11404 __isl_take isl_space *dim,
11405 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11406 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11408 return (isl_basic_set*)
11409 isl_basic_map_from_constraint_matrices(dim, eq, ineq,
11410 c1, c2, c3, c4, isl_dim_in);
11413 isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
11415 if (!bmap)
11416 return isl_bool_error;
11418 return isl_space_can_zip(bmap->dim);
11421 isl_bool isl_map_can_zip(__isl_keep isl_map *map)
11423 if (!map)
11424 return isl_bool_error;
11426 return isl_space_can_zip(map->dim);
11429 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
11430 * (A -> C) -> (B -> D).
11432 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
11434 unsigned pos;
11435 unsigned n1;
11436 unsigned n2;
11438 if (!bmap)
11439 return NULL;
11441 if (!isl_basic_map_can_zip(bmap))
11442 isl_die(bmap->ctx, isl_error_invalid,
11443 "basic map cannot be zipped", goto error);
11444 pos = isl_basic_map_offset(bmap, isl_dim_in) +
11445 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
11446 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
11447 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
11448 bmap = isl_basic_map_cow(bmap);
11449 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
11450 if (!bmap)
11451 return NULL;
11452 bmap->dim = isl_space_zip(bmap->dim);
11453 if (!bmap->dim)
11454 goto error;
11455 bmap = isl_basic_map_mark_final(bmap);
11456 return bmap;
11457 error:
11458 isl_basic_map_free(bmap);
11459 return NULL;
11462 /* Given a map (A -> B) -> (C -> D), return the corresponding map
11463 * (A -> C) -> (B -> D).
11465 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
11467 int i;
11469 if (!map)
11470 return NULL;
11472 if (!isl_map_can_zip(map))
11473 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
11474 goto error);
11476 map = isl_map_cow(map);
11477 if (!map)
11478 return NULL;
11480 for (i = 0; i < map->n; ++i) {
11481 map->p[i] = isl_basic_map_zip(map->p[i]);
11482 if (!map->p[i])
11483 goto error;
11486 map->dim = isl_space_zip(map->dim);
11487 if (!map->dim)
11488 goto error;
11490 return map;
11491 error:
11492 isl_map_free(map);
11493 return NULL;
11496 /* Can we apply isl_basic_map_curry to "bmap"?
11497 * That is, does it have a nested relation in its domain?
11499 isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
11501 if (!bmap)
11502 return isl_bool_error;
11504 return isl_space_can_curry(bmap->dim);
11507 /* Can we apply isl_map_curry to "map"?
11508 * That is, does it have a nested relation in its domain?
11510 isl_bool isl_map_can_curry(__isl_keep isl_map *map)
11512 if (!map)
11513 return isl_bool_error;
11515 return isl_space_can_curry(map->dim);
11518 /* Given a basic map (A -> B) -> C, return the corresponding basic map
11519 * A -> (B -> C).
11521 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
11524 if (!bmap)
11525 return NULL;
11527 if (!isl_basic_map_can_curry(bmap))
11528 isl_die(bmap->ctx, isl_error_invalid,
11529 "basic map cannot be curried", goto error);
11530 bmap = isl_basic_map_cow(bmap);
11531 if (!bmap)
11532 return NULL;
11533 bmap->dim = isl_space_curry(bmap->dim);
11534 if (!bmap->dim)
11535 goto error;
11536 bmap = isl_basic_map_mark_final(bmap);
11537 return bmap;
11538 error:
11539 isl_basic_map_free(bmap);
11540 return NULL;
11543 /* Given a map (A -> B) -> C, return the corresponding map
11544 * A -> (B -> C).
11546 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
11548 return isl_map_change_space(map, &isl_map_can_curry,
11549 "map cannot be curried", &isl_space_curry);
11552 /* Can isl_map_range_curry be applied to "map"?
11553 * That is, does it have a nested relation in its range,
11554 * the domain of which is itself a nested relation?
11556 isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
11558 if (!map)
11559 return isl_bool_error;
11561 return isl_space_can_range_curry(map->dim);
11564 /* Given a map A -> ((B -> C) -> D), return the corresponding map
11565 * A -> (B -> (C -> D)).
11567 __isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
11569 return isl_map_change_space(map, &isl_map_can_range_curry,
11570 "map range cannot be curried",
11571 &isl_space_range_curry);
11574 /* Can we apply isl_basic_map_uncurry to "bmap"?
11575 * That is, does it have a nested relation in its domain?
11577 isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
11579 if (!bmap)
11580 return isl_bool_error;
11582 return isl_space_can_uncurry(bmap->dim);
11585 /* Can we apply isl_map_uncurry to "map"?
11586 * That is, does it have a nested relation in its domain?
11588 isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
11590 if (!map)
11591 return isl_bool_error;
11593 return isl_space_can_uncurry(map->dim);
11596 /* Given a basic map A -> (B -> C), return the corresponding basic map
11597 * (A -> B) -> C.
11599 __isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
11602 if (!bmap)
11603 return NULL;
11605 if (!isl_basic_map_can_uncurry(bmap))
11606 isl_die(bmap->ctx, isl_error_invalid,
11607 "basic map cannot be uncurried",
11608 return isl_basic_map_free(bmap));
11609 bmap = isl_basic_map_cow(bmap);
11610 if (!bmap)
11611 return NULL;
11612 bmap->dim = isl_space_uncurry(bmap->dim);
11613 if (!bmap->dim)
11614 return isl_basic_map_free(bmap);
11615 bmap = isl_basic_map_mark_final(bmap);
11616 return bmap;
11619 /* Given a map A -> (B -> C), return the corresponding map
11620 * (A -> B) -> C.
11622 __isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
11624 return isl_map_change_space(map, &isl_map_can_uncurry,
11625 "map cannot be uncurried", &isl_space_uncurry);
11628 /* Construct a basic map mapping the domain of the affine expression
11629 * to a one-dimensional range prescribed by the affine expression.
11631 __isl_give isl_basic_map *isl_basic_map_from_aff(__isl_take isl_aff *aff)
11633 int k;
11634 int pos;
11635 isl_local_space *ls;
11636 isl_basic_map *bmap;
11638 if (!aff)
11639 return NULL;
11641 ls = isl_aff_get_local_space(aff);
11642 bmap = isl_basic_map_from_local_space(ls);
11643 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
11644 k = isl_basic_map_alloc_equality(bmap);
11645 if (k < 0)
11646 goto error;
11648 pos = isl_basic_map_offset(bmap, isl_dim_out);
11649 isl_seq_cpy(bmap->eq[k], aff->v->el + 1, pos);
11650 isl_int_neg(bmap->eq[k][pos], aff->v->el[0]);
11651 isl_seq_cpy(bmap->eq[k] + pos + 1, aff->v->el + 1 + pos,
11652 aff->v->size - (pos + 1));
11654 isl_aff_free(aff);
11655 bmap = isl_basic_map_finalize(bmap);
11656 return bmap;
11657 error:
11658 isl_aff_free(aff);
11659 isl_basic_map_free(bmap);
11660 return NULL;
11663 /* Construct a map mapping the domain of the affine expression
11664 * to a one-dimensional range prescribed by the affine expression.
11666 __isl_give isl_map *isl_map_from_aff(__isl_take isl_aff *aff)
11668 isl_basic_map *bmap;
11670 bmap = isl_basic_map_from_aff(aff);
11671 return isl_map_from_basic_map(bmap);
11674 /* Construct a basic map mapping the domain the multi-affine expression
11675 * to its range, with each dimension in the range equated to the
11676 * corresponding affine expression.
11678 __isl_give isl_basic_map *isl_basic_map_from_multi_aff(
11679 __isl_take isl_multi_aff *maff)
11681 int i;
11682 isl_space *space;
11683 isl_basic_map *bmap;
11685 if (!maff)
11686 return NULL;
11688 if (isl_space_dim(maff->space, isl_dim_out) != maff->n)
11689 isl_die(isl_multi_aff_get_ctx(maff), isl_error_internal,
11690 "invalid space", goto error);
11692 space = isl_space_domain(isl_multi_aff_get_space(maff));
11693 bmap = isl_basic_map_universe(isl_space_from_domain(space));
11695 for (i = 0; i < maff->n; ++i) {
11696 isl_aff *aff;
11697 isl_basic_map *bmap_i;
11699 aff = isl_aff_copy(maff->p[i]);
11700 bmap_i = isl_basic_map_from_aff(aff);
11702 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
11705 bmap = isl_basic_map_reset_space(bmap, isl_multi_aff_get_space(maff));
11707 isl_multi_aff_free(maff);
11708 return bmap;
11709 error:
11710 isl_multi_aff_free(maff);
11711 return NULL;
11714 /* Construct a map mapping the domain the multi-affine expression
11715 * to its range, with each dimension in the range equated to the
11716 * corresponding affine expression.
11718 __isl_give isl_map *isl_map_from_multi_aff(__isl_take isl_multi_aff *maff)
11720 isl_basic_map *bmap;
11722 bmap = isl_basic_map_from_multi_aff(maff);
11723 return isl_map_from_basic_map(bmap);
11726 /* Construct a basic map mapping a domain in the given space to
11727 * to an n-dimensional range, with n the number of elements in the list,
11728 * where each coordinate in the range is prescribed by the
11729 * corresponding affine expression.
11730 * The domains of all affine expressions in the list are assumed to match
11731 * domain_dim.
11733 __isl_give isl_basic_map *isl_basic_map_from_aff_list(
11734 __isl_take isl_space *domain_dim, __isl_take isl_aff_list *list)
11736 int i;
11737 isl_space *dim;
11738 isl_basic_map *bmap;
11740 if (!list)
11741 return NULL;
11743 dim = isl_space_from_domain(domain_dim);
11744 bmap = isl_basic_map_universe(dim);
11746 for (i = 0; i < list->n; ++i) {
11747 isl_aff *aff;
11748 isl_basic_map *bmap_i;
11750 aff = isl_aff_copy(list->p[i]);
11751 bmap_i = isl_basic_map_from_aff(aff);
11753 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
11756 isl_aff_list_free(list);
11757 return bmap;
11760 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
11761 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11763 return isl_map_equate(set, type1, pos1, type2, pos2);
11766 /* Construct a basic map where the given dimensions are equal to each other.
11768 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
11769 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11771 isl_basic_map *bmap = NULL;
11772 int i;
11774 if (!space)
11775 return NULL;
11777 if (pos1 >= isl_space_dim(space, type1))
11778 isl_die(isl_space_get_ctx(space), isl_error_invalid,
11779 "index out of bounds", goto error);
11780 if (pos2 >= isl_space_dim(space, type2))
11781 isl_die(isl_space_get_ctx(space), isl_error_invalid,
11782 "index out of bounds", goto error);
11784 if (type1 == type2 && pos1 == pos2)
11785 return isl_basic_map_universe(space);
11787 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
11788 i = isl_basic_map_alloc_equality(bmap);
11789 if (i < 0)
11790 goto error;
11791 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
11792 pos1 += isl_basic_map_offset(bmap, type1);
11793 pos2 += isl_basic_map_offset(bmap, type2);
11794 isl_int_set_si(bmap->eq[i][pos1], -1);
11795 isl_int_set_si(bmap->eq[i][pos2], 1);
11796 bmap = isl_basic_map_finalize(bmap);
11797 isl_space_free(space);
11798 return bmap;
11799 error:
11800 isl_space_free(space);
11801 isl_basic_map_free(bmap);
11802 return NULL;
11805 /* Add a constraint imposing that the given two dimensions are equal.
11807 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
11808 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11810 isl_basic_map *eq;
11812 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
11814 bmap = isl_basic_map_intersect(bmap, eq);
11816 return bmap;
11819 /* Add a constraint imposing that the given two dimensions are equal.
11821 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
11822 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11824 isl_basic_map *bmap;
11826 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
11828 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
11830 return map;
11833 /* Add a constraint imposing that the given two dimensions have opposite values.
11835 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
11836 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11838 isl_basic_map *bmap = NULL;
11839 int i;
11841 if (!map)
11842 return NULL;
11844 if (pos1 >= isl_map_dim(map, type1))
11845 isl_die(map->ctx, isl_error_invalid,
11846 "index out of bounds", goto error);
11847 if (pos2 >= isl_map_dim(map, type2))
11848 isl_die(map->ctx, isl_error_invalid,
11849 "index out of bounds", goto error);
11851 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
11852 i = isl_basic_map_alloc_equality(bmap);
11853 if (i < 0)
11854 goto error;
11855 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
11856 pos1 += isl_basic_map_offset(bmap, type1);
11857 pos2 += isl_basic_map_offset(bmap, type2);
11858 isl_int_set_si(bmap->eq[i][pos1], 1);
11859 isl_int_set_si(bmap->eq[i][pos2], 1);
11860 bmap = isl_basic_map_finalize(bmap);
11862 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
11864 return map;
11865 error:
11866 isl_basic_map_free(bmap);
11867 isl_map_free(map);
11868 return NULL;
11871 /* Construct a constraint imposing that the value of the first dimension is
11872 * greater than or equal to that of the second.
11874 static __isl_give isl_constraint *constraint_order_ge(
11875 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
11876 enum isl_dim_type type2, int pos2)
11878 isl_constraint *c;
11880 if (!space)
11881 return NULL;
11883 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
11885 if (pos1 >= isl_constraint_dim(c, type1))
11886 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
11887 "index out of bounds", return isl_constraint_free(c));
11888 if (pos2 >= isl_constraint_dim(c, type2))
11889 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
11890 "index out of bounds", return isl_constraint_free(c));
11892 if (type1 == type2 && pos1 == pos2)
11893 return c;
11895 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
11896 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
11898 return c;
11901 /* Add a constraint imposing that the value of the first dimension is
11902 * greater than or equal to that of the second.
11904 __isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
11905 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11907 isl_constraint *c;
11908 isl_space *space;
11910 if (type1 == type2 && pos1 == pos2)
11911 return bmap;
11912 space = isl_basic_map_get_space(bmap);
11913 c = constraint_order_ge(space, type1, pos1, type2, pos2);
11914 bmap = isl_basic_map_add_constraint(bmap, c);
11916 return bmap;
11919 /* Add a constraint imposing that the value of the first dimension is
11920 * greater than or equal to that of the second.
11922 __isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
11923 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11925 isl_constraint *c;
11926 isl_space *space;
11928 if (type1 == type2 && pos1 == pos2)
11929 return map;
11930 space = isl_map_get_space(map);
11931 c = constraint_order_ge(space, type1, pos1, type2, pos2);
11932 map = isl_map_add_constraint(map, c);
11934 return map;
11937 /* Add a constraint imposing that the value of the first dimension is
11938 * less than or equal to that of the second.
11940 __isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
11941 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11943 return isl_map_order_ge(map, type2, pos2, type1, pos1);
11946 /* Construct a basic map where the value of the first dimension is
11947 * greater than that of the second.
11949 static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
11950 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11952 isl_basic_map *bmap = NULL;
11953 int i;
11955 if (!space)
11956 return NULL;
11958 if (pos1 >= isl_space_dim(space, type1))
11959 isl_die(isl_space_get_ctx(space), isl_error_invalid,
11960 "index out of bounds", goto error);
11961 if (pos2 >= isl_space_dim(space, type2))
11962 isl_die(isl_space_get_ctx(space), isl_error_invalid,
11963 "index out of bounds", goto error);
11965 if (type1 == type2 && pos1 == pos2)
11966 return isl_basic_map_empty(space);
11968 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
11969 i = isl_basic_map_alloc_inequality(bmap);
11970 if (i < 0)
11971 return isl_basic_map_free(bmap);
11972 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
11973 pos1 += isl_basic_map_offset(bmap, type1);
11974 pos2 += isl_basic_map_offset(bmap, type2);
11975 isl_int_set_si(bmap->ineq[i][pos1], 1);
11976 isl_int_set_si(bmap->ineq[i][pos2], -1);
11977 isl_int_set_si(bmap->ineq[i][0], -1);
11978 bmap = isl_basic_map_finalize(bmap);
11980 return bmap;
11981 error:
11982 isl_space_free(space);
11983 isl_basic_map_free(bmap);
11984 return NULL;
11987 /* Add a constraint imposing that the value of the first dimension is
11988 * greater than that of the second.
11990 __isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
11991 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11993 isl_basic_map *gt;
11995 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
11997 bmap = isl_basic_map_intersect(bmap, gt);
11999 return bmap;
12002 /* Add a constraint imposing that the value of the first dimension is
12003 * greater than that of the second.
12005 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
12006 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12008 isl_basic_map *bmap;
12010 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
12012 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12014 return map;
12017 /* Add a constraint imposing that the value of the first dimension is
12018 * smaller than that of the second.
12020 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
12021 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12023 return isl_map_order_gt(map, type2, pos2, type1, pos1);
12026 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
12027 int pos)
12029 isl_aff *div;
12030 isl_local_space *ls;
12032 if (!bmap)
12033 return NULL;
12035 if (!isl_basic_map_divs_known(bmap))
12036 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12037 "some divs are unknown", return NULL);
12039 ls = isl_basic_map_get_local_space(bmap);
12040 div = isl_local_space_get_div(ls, pos);
12041 isl_local_space_free(ls);
12043 return div;
12046 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
12047 int pos)
12049 return isl_basic_map_get_div(bset, pos);
12052 /* Plug in "subs" for dimension "type", "pos" of "bset".
12054 * Let i be the dimension to replace and let "subs" be of the form
12056 * f/d
12058 * Any integer division with a non-zero coefficient for i,
12060 * floor((a i + g)/m)
12062 * is replaced by
12064 * floor((a f + d g)/(m d))
12066 * Constraints of the form
12068 * a i + g
12070 * are replaced by
12072 * a f + d g
12074 * We currently require that "subs" is an integral expression.
12075 * Handling rational expressions may require us to add stride constraints
12076 * as we do in isl_basic_set_preimage_multi_aff.
12078 __isl_give isl_basic_set *isl_basic_set_substitute(
12079 __isl_take isl_basic_set *bset,
12080 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12082 int i;
12083 isl_int v;
12084 isl_ctx *ctx;
12086 if (bset && isl_basic_set_plain_is_empty(bset))
12087 return bset;
12089 bset = isl_basic_set_cow(bset);
12090 if (!bset || !subs)
12091 goto error;
12093 ctx = isl_basic_set_get_ctx(bset);
12094 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
12095 isl_die(ctx, isl_error_invalid,
12096 "spaces don't match", goto error);
12097 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
12098 isl_die(ctx, isl_error_unsupported,
12099 "cannot handle divs yet", goto error);
12100 if (!isl_int_is_one(subs->v->el[0]))
12101 isl_die(ctx, isl_error_invalid,
12102 "can only substitute integer expressions", goto error);
12104 pos += isl_basic_set_offset(bset, type);
12106 isl_int_init(v);
12108 for (i = 0; i < bset->n_eq; ++i) {
12109 if (isl_int_is_zero(bset->eq[i][pos]))
12110 continue;
12111 isl_int_set(v, bset->eq[i][pos]);
12112 isl_int_set_si(bset->eq[i][pos], 0);
12113 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
12114 v, subs->v->el + 1, subs->v->size - 1);
12117 for (i = 0; i < bset->n_ineq; ++i) {
12118 if (isl_int_is_zero(bset->ineq[i][pos]))
12119 continue;
12120 isl_int_set(v, bset->ineq[i][pos]);
12121 isl_int_set_si(bset->ineq[i][pos], 0);
12122 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
12123 v, subs->v->el + 1, subs->v->size - 1);
12126 for (i = 0; i < bset->n_div; ++i) {
12127 if (isl_int_is_zero(bset->div[i][1 + pos]))
12128 continue;
12129 isl_int_set(v, bset->div[i][1 + pos]);
12130 isl_int_set_si(bset->div[i][1 + pos], 0);
12131 isl_seq_combine(bset->div[i] + 1,
12132 subs->v->el[0], bset->div[i] + 1,
12133 v, subs->v->el + 1, subs->v->size - 1);
12134 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
12137 isl_int_clear(v);
12139 bset = isl_basic_set_simplify(bset);
12140 return isl_basic_set_finalize(bset);
12141 error:
12142 isl_basic_set_free(bset);
12143 return NULL;
12146 /* Plug in "subs" for dimension "type", "pos" of "set".
12148 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
12149 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12151 int i;
12153 if (set && isl_set_plain_is_empty(set))
12154 return set;
12156 set = isl_set_cow(set);
12157 if (!set || !subs)
12158 goto error;
12160 for (i = set->n - 1; i >= 0; --i) {
12161 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
12162 if (remove_if_empty(set, i) < 0)
12163 goto error;
12166 return set;
12167 error:
12168 isl_set_free(set);
12169 return NULL;
12172 /* Check if the range of "ma" is compatible with the domain or range
12173 * (depending on "type") of "bmap".
12174 * Return -1 if anything is wrong.
12176 static int check_basic_map_compatible_range_multi_aff(
12177 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
12178 __isl_keep isl_multi_aff *ma)
12180 int m;
12181 isl_space *ma_space;
12183 ma_space = isl_multi_aff_get_space(ma);
12185 m = isl_space_match(bmap->dim, isl_dim_param, ma_space, isl_dim_param);
12186 if (m < 0)
12187 goto error;
12188 if (!m)
12189 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12190 "parameters don't match", goto error);
12191 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
12192 if (m < 0)
12193 goto error;
12194 if (!m)
12195 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12196 "spaces don't match", goto error);
12198 isl_space_free(ma_space);
12199 return m;
12200 error:
12201 isl_space_free(ma_space);
12202 return -1;
12205 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12206 * coefficients before the transformed range of dimensions,
12207 * the "n_after" coefficients after the transformed range of dimensions
12208 * and the coefficients of the other divs in "bmap".
12210 static int set_ma_divs(__isl_keep isl_basic_map *bmap,
12211 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
12213 int i;
12214 int n_param;
12215 int n_set;
12216 isl_local_space *ls;
12218 if (n_div == 0)
12219 return 0;
12221 ls = isl_aff_get_domain_local_space(ma->p[0]);
12222 if (!ls)
12223 return -1;
12225 n_param = isl_local_space_dim(ls, isl_dim_param);
12226 n_set = isl_local_space_dim(ls, isl_dim_set);
12227 for (i = 0; i < n_div; ++i) {
12228 int o_bmap = 0, o_ls = 0;
12230 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
12231 o_bmap += 1 + 1 + n_param;
12232 o_ls += 1 + 1 + n_param;
12233 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
12234 o_bmap += n_before;
12235 isl_seq_cpy(bmap->div[i] + o_bmap,
12236 ls->div->row[i] + o_ls, n_set);
12237 o_bmap += n_set;
12238 o_ls += n_set;
12239 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
12240 o_bmap += n_after;
12241 isl_seq_cpy(bmap->div[i] + o_bmap,
12242 ls->div->row[i] + o_ls, n_div);
12243 o_bmap += n_div;
12244 o_ls += n_div;
12245 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
12246 if (isl_basic_set_add_div_constraints(bmap, i) < 0)
12247 goto error;
12250 isl_local_space_free(ls);
12251 return 0;
12252 error:
12253 isl_local_space_free(ls);
12254 return -1;
12257 /* How many stride constraints does "ma" enforce?
12258 * That is, how many of the affine expressions have a denominator
12259 * different from one?
12261 static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
12263 int i;
12264 int strides = 0;
12266 for (i = 0; i < ma->n; ++i)
12267 if (!isl_int_is_one(ma->p[i]->v->el[0]))
12268 strides++;
12270 return strides;
12273 /* For each affine expression in ma of the form
12275 * x_i = (f_i y + h_i)/m_i
12277 * with m_i different from one, add a constraint to "bmap"
12278 * of the form
12280 * f_i y + h_i = m_i alpha_i
12282 * with alpha_i an additional existentially quantified variable.
12284 static __isl_give isl_basic_map *add_ma_strides(
12285 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
12286 int n_before, int n_after)
12288 int i, k;
12289 int div;
12290 int total;
12291 int n_param;
12292 int n_in;
12293 int n_div;
12295 total = isl_basic_map_total_dim(bmap);
12296 n_param = isl_multi_aff_dim(ma, isl_dim_param);
12297 n_in = isl_multi_aff_dim(ma, isl_dim_in);
12298 n_div = isl_multi_aff_dim(ma, isl_dim_div);
12299 for (i = 0; i < ma->n; ++i) {
12300 int o_bmap = 0, o_ma = 1;
12302 if (isl_int_is_one(ma->p[i]->v->el[0]))
12303 continue;
12304 div = isl_basic_map_alloc_div(bmap);
12305 k = isl_basic_map_alloc_equality(bmap);
12306 if (div < 0 || k < 0)
12307 goto error;
12308 isl_int_set_si(bmap->div[div][0], 0);
12309 isl_seq_cpy(bmap->eq[k] + o_bmap,
12310 ma->p[i]->v->el + o_ma, 1 + n_param);
12311 o_bmap += 1 + n_param;
12312 o_ma += 1 + n_param;
12313 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
12314 o_bmap += n_before;
12315 isl_seq_cpy(bmap->eq[k] + o_bmap,
12316 ma->p[i]->v->el + o_ma, n_in);
12317 o_bmap += n_in;
12318 o_ma += n_in;
12319 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
12320 o_bmap += n_after;
12321 isl_seq_cpy(bmap->eq[k] + o_bmap,
12322 ma->p[i]->v->el + o_ma, n_div);
12323 o_bmap += n_div;
12324 o_ma += n_div;
12325 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
12326 isl_int_neg(bmap->eq[k][1 + total], ma->p[i]->v->el[0]);
12327 total++;
12330 return bmap;
12331 error:
12332 isl_basic_map_free(bmap);
12333 return NULL;
12336 /* Replace the domain or range space (depending on "type) of "space" by "set".
12338 static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
12339 enum isl_dim_type type, __isl_take isl_space *set)
12341 if (type == isl_dim_in) {
12342 space = isl_space_range(space);
12343 space = isl_space_map_from_domain_and_range(set, space);
12344 } else {
12345 space = isl_space_domain(space);
12346 space = isl_space_map_from_domain_and_range(space, set);
12349 return space;
12352 /* Compute the preimage of the domain or range (depending on "type")
12353 * of "bmap" under the function represented by "ma".
12354 * In other words, plug in "ma" in the domain or range of "bmap".
12355 * The result is a basic map that lives in the same space as "bmap"
12356 * except that the domain or range has been replaced by
12357 * the domain space of "ma".
12359 * If bmap is represented by
12361 * A(p) + S u + B x + T v + C(divs) >= 0,
12363 * where u and x are input and output dimensions if type == isl_dim_out
12364 * while x and v are input and output dimensions if type == isl_dim_in,
12365 * and ma is represented by
12367 * x = D(p) + F(y) + G(divs')
12369 * then the result is
12371 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12373 * The divs in the input set are similarly adjusted.
12374 * In particular
12376 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12378 * becomes
12380 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12381 * B_i G(divs') + c_i(divs))/n_i)
12383 * If bmap is not a rational map and if F(y) involves any denominators
12385 * x_i = (f_i y + h_i)/m_i
12387 * then additional constraints are added to ensure that we only
12388 * map back integer points. That is we enforce
12390 * f_i y + h_i = m_i alpha_i
12392 * with alpha_i an additional existentially quantified variable.
12394 * We first copy over the divs from "ma".
12395 * Then we add the modified constraints and divs from "bmap".
12396 * Finally, we add the stride constraints, if needed.
12398 __isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
12399 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
12400 __isl_take isl_multi_aff *ma)
12402 int i, k;
12403 isl_space *space;
12404 isl_basic_map *res = NULL;
12405 int n_before, n_after, n_div_bmap, n_div_ma;
12406 isl_int f, c1, c2, g;
12407 int rational, strides;
12409 isl_int_init(f);
12410 isl_int_init(c1);
12411 isl_int_init(c2);
12412 isl_int_init(g);
12414 ma = isl_multi_aff_align_divs(ma);
12415 if (!bmap || !ma)
12416 goto error;
12417 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
12418 goto error;
12420 if (type == isl_dim_in) {
12421 n_before = 0;
12422 n_after = isl_basic_map_dim(bmap, isl_dim_out);
12423 } else {
12424 n_before = isl_basic_map_dim(bmap, isl_dim_in);
12425 n_after = 0;
12427 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
12428 n_div_ma = ma->n ? isl_aff_dim(ma->p[0], isl_dim_div) : 0;
12430 space = isl_multi_aff_get_domain_space(ma);
12431 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
12432 rational = isl_basic_map_is_rational(bmap);
12433 strides = rational ? 0 : multi_aff_strides(ma);
12434 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
12435 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
12436 if (rational)
12437 res = isl_basic_map_set_rational(res);
12439 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
12440 if (isl_basic_map_alloc_div(res) < 0)
12441 goto error;
12443 if (set_ma_divs(res, ma, n_before, n_after, n_div_ma) < 0)
12444 goto error;
12446 for (i = 0; i < bmap->n_eq; ++i) {
12447 k = isl_basic_map_alloc_equality(res);
12448 if (k < 0)
12449 goto error;
12450 isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
12451 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
12454 for (i = 0; i < bmap->n_ineq; ++i) {
12455 k = isl_basic_map_alloc_inequality(res);
12456 if (k < 0)
12457 goto error;
12458 isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
12459 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
12462 for (i = 0; i < bmap->n_div; ++i) {
12463 if (isl_int_is_zero(bmap->div[i][0])) {
12464 isl_int_set_si(res->div[n_div_ma + i][0], 0);
12465 continue;
12467 isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
12468 n_before, n_after, n_div_ma, n_div_bmap,
12469 f, c1, c2, g, 1);
12472 if (strides)
12473 res = add_ma_strides(res, ma, n_before, n_after);
12475 isl_int_clear(f);
12476 isl_int_clear(c1);
12477 isl_int_clear(c2);
12478 isl_int_clear(g);
12479 isl_basic_map_free(bmap);
12480 isl_multi_aff_free(ma);
12481 res = isl_basic_set_simplify(res);
12482 return isl_basic_map_finalize(res);
12483 error:
12484 isl_int_clear(f);
12485 isl_int_clear(c1);
12486 isl_int_clear(c2);
12487 isl_int_clear(g);
12488 isl_basic_map_free(bmap);
12489 isl_multi_aff_free(ma);
12490 isl_basic_map_free(res);
12491 return NULL;
12494 /* Compute the preimage of "bset" under the function represented by "ma".
12495 * In other words, plug in "ma" in "bset". The result is a basic set
12496 * that lives in the domain space of "ma".
12498 __isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
12499 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
12501 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
12504 /* Compute the preimage of the domain of "bmap" under the function
12505 * represented by "ma".
12506 * In other words, plug in "ma" in the domain of "bmap".
12507 * The result is a basic map that lives in the same space as "bmap"
12508 * except that the domain has been replaced by the domain space of "ma".
12510 __isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
12511 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
12513 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
12516 /* Compute the preimage of the range of "bmap" under the function
12517 * represented by "ma".
12518 * In other words, plug in "ma" in the range of "bmap".
12519 * The result is a basic map that lives in the same space as "bmap"
12520 * except that the range has been replaced by the domain space of "ma".
12522 __isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
12523 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
12525 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
12528 /* Check if the range of "ma" is compatible with the domain or range
12529 * (depending on "type") of "map".
12530 * Return -1 if anything is wrong.
12532 static int check_map_compatible_range_multi_aff(
12533 __isl_keep isl_map *map, enum isl_dim_type type,
12534 __isl_keep isl_multi_aff *ma)
12536 int m;
12537 isl_space *ma_space;
12539 ma_space = isl_multi_aff_get_space(ma);
12540 m = isl_space_tuple_is_equal(map->dim, type, ma_space, isl_dim_out);
12541 isl_space_free(ma_space);
12542 if (m >= 0 && !m)
12543 isl_die(isl_map_get_ctx(map), isl_error_invalid,
12544 "spaces don't match", return -1);
12545 return m;
12548 /* Compute the preimage of the domain or range (depending on "type")
12549 * of "map" under the function represented by "ma".
12550 * In other words, plug in "ma" in the domain or range of "map".
12551 * The result is a map that lives in the same space as "map"
12552 * except that the domain or range has been replaced by
12553 * the domain space of "ma".
12555 * The parameters are assumed to have been aligned.
12557 static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
12558 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
12560 int i;
12561 isl_space *space;
12563 map = isl_map_cow(map);
12564 ma = isl_multi_aff_align_divs(ma);
12565 if (!map || !ma)
12566 goto error;
12567 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
12568 goto error;
12570 for (i = 0; i < map->n; ++i) {
12571 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
12572 isl_multi_aff_copy(ma));
12573 if (!map->p[i])
12574 goto error;
12577 space = isl_multi_aff_get_domain_space(ma);
12578 space = isl_space_set(isl_map_get_space(map), type, space);
12580 isl_space_free(map->dim);
12581 map->dim = space;
12582 if (!map->dim)
12583 goto error;
12585 isl_multi_aff_free(ma);
12586 if (map->n > 1)
12587 ISL_F_CLR(map, ISL_MAP_DISJOINT);
12588 ISL_F_CLR(map, ISL_SET_NORMALIZED);
12589 return map;
12590 error:
12591 isl_multi_aff_free(ma);
12592 isl_map_free(map);
12593 return NULL;
12596 /* Compute the preimage of the domain or range (depending on "type")
12597 * of "map" under the function represented by "ma".
12598 * In other words, plug in "ma" in the domain or range of "map".
12599 * The result is a map that lives in the same space as "map"
12600 * except that the domain or range has been replaced by
12601 * the domain space of "ma".
12603 __isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
12604 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
12606 if (!map || !ma)
12607 goto error;
12609 if (isl_space_match(map->dim, isl_dim_param, ma->space, isl_dim_param))
12610 return map_preimage_multi_aff(map, type, ma);
12612 if (!isl_space_has_named_params(map->dim) ||
12613 !isl_space_has_named_params(ma->space))
12614 isl_die(map->ctx, isl_error_invalid,
12615 "unaligned unnamed parameters", goto error);
12616 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
12617 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
12619 return map_preimage_multi_aff(map, type, ma);
12620 error:
12621 isl_multi_aff_free(ma);
12622 return isl_map_free(map);
12625 /* Compute the preimage of "set" under the function represented by "ma".
12626 * In other words, plug in "ma" in "set". The result is a set
12627 * that lives in the domain space of "ma".
12629 __isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
12630 __isl_take isl_multi_aff *ma)
12632 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
12635 /* Compute the preimage of the domain of "map" under the function
12636 * represented by "ma".
12637 * In other words, plug in "ma" in the domain of "map".
12638 * The result is a map that lives in the same space as "map"
12639 * except that the domain has been replaced by the domain space of "ma".
12641 __isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
12642 __isl_take isl_multi_aff *ma)
12644 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
12647 /* Compute the preimage of the range of "map" under the function
12648 * represented by "ma".
12649 * In other words, plug in "ma" in the range of "map".
12650 * The result is a map that lives in the same space as "map"
12651 * except that the range has been replaced by the domain space of "ma".
12653 __isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
12654 __isl_take isl_multi_aff *ma)
12656 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
12659 /* Compute the preimage of "map" under the function represented by "pma".
12660 * In other words, plug in "pma" in the domain or range of "map".
12661 * The result is a map that lives in the same space as "map",
12662 * except that the space of type "type" has been replaced by
12663 * the domain space of "pma".
12665 * The parameters of "map" and "pma" are assumed to have been aligned.
12667 static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
12668 __isl_take isl_map *map, enum isl_dim_type type,
12669 __isl_take isl_pw_multi_aff *pma)
12671 int i;
12672 isl_map *res;
12674 if (!pma)
12675 goto error;
12677 if (pma->n == 0) {
12678 isl_pw_multi_aff_free(pma);
12679 res = isl_map_empty(isl_map_get_space(map));
12680 isl_map_free(map);
12681 return res;
12684 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
12685 isl_multi_aff_copy(pma->p[0].maff));
12686 if (type == isl_dim_in)
12687 res = isl_map_intersect_domain(res,
12688 isl_map_copy(pma->p[0].set));
12689 else
12690 res = isl_map_intersect_range(res,
12691 isl_map_copy(pma->p[0].set));
12693 for (i = 1; i < pma->n; ++i) {
12694 isl_map *res_i;
12696 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
12697 isl_multi_aff_copy(pma->p[i].maff));
12698 if (type == isl_dim_in)
12699 res_i = isl_map_intersect_domain(res_i,
12700 isl_map_copy(pma->p[i].set));
12701 else
12702 res_i = isl_map_intersect_range(res_i,
12703 isl_map_copy(pma->p[i].set));
12704 res = isl_map_union(res, res_i);
12707 isl_pw_multi_aff_free(pma);
12708 isl_map_free(map);
12709 return res;
12710 error:
12711 isl_pw_multi_aff_free(pma);
12712 isl_map_free(map);
12713 return NULL;
12716 /* Compute the preimage of "map" under the function represented by "pma".
12717 * In other words, plug in "pma" in the domain or range of "map".
12718 * The result is a map that lives in the same space as "map",
12719 * except that the space of type "type" has been replaced by
12720 * the domain space of "pma".
12722 __isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
12723 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
12725 if (!map || !pma)
12726 goto error;
12728 if (isl_space_match(map->dim, isl_dim_param, pma->dim, isl_dim_param))
12729 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
12731 if (!isl_space_has_named_params(map->dim) ||
12732 !isl_space_has_named_params(pma->dim))
12733 isl_die(map->ctx, isl_error_invalid,
12734 "unaligned unnamed parameters", goto error);
12735 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
12736 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
12738 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
12739 error:
12740 isl_pw_multi_aff_free(pma);
12741 return isl_map_free(map);
12744 /* Compute the preimage of "set" under the function represented by "pma".
12745 * In other words, plug in "pma" in "set". The result is a set
12746 * that lives in the domain space of "pma".
12748 __isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
12749 __isl_take isl_pw_multi_aff *pma)
12751 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
12754 /* Compute the preimage of the domain of "map" under the function
12755 * represented by "pma".
12756 * In other words, plug in "pma" in the domain of "map".
12757 * The result is a map that lives in the same space as "map",
12758 * except that domain space has been replaced by the domain space of "pma".
12760 __isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
12761 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
12763 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
12766 /* Compute the preimage of the range of "map" under the function
12767 * represented by "pma".
12768 * In other words, plug in "pma" in the range of "map".
12769 * The result is a map that lives in the same space as "map",
12770 * except that range space has been replaced by the domain space of "pma".
12772 __isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
12773 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
12775 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
12778 /* Compute the preimage of "map" under the function represented by "mpa".
12779 * In other words, plug in "mpa" in the domain or range of "map".
12780 * The result is a map that lives in the same space as "map",
12781 * except that the space of type "type" has been replaced by
12782 * the domain space of "mpa".
12784 * If the map does not involve any constraints that refer to the
12785 * dimensions of the substituted space, then the only possible
12786 * effect of "mpa" on the map is to map the space to a different space.
12787 * We create a separate isl_multi_aff to effectuate this change
12788 * in order to avoid spurious splitting of the map along the pieces
12789 * of "mpa".
12791 __isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
12792 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
12794 int n;
12795 isl_pw_multi_aff *pma;
12797 if (!map || !mpa)
12798 goto error;
12800 n = isl_map_dim(map, type);
12801 if (!isl_map_involves_dims(map, type, 0, n)) {
12802 isl_space *space;
12803 isl_multi_aff *ma;
12805 space = isl_multi_pw_aff_get_space(mpa);
12806 isl_multi_pw_aff_free(mpa);
12807 ma = isl_multi_aff_zero(space);
12808 return isl_map_preimage_multi_aff(map, type, ma);
12811 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
12812 return isl_map_preimage_pw_multi_aff(map, type, pma);
12813 error:
12814 isl_map_free(map);
12815 isl_multi_pw_aff_free(mpa);
12816 return NULL;
12819 /* Compute the preimage of "map" under the function represented by "mpa".
12820 * In other words, plug in "mpa" in the domain "map".
12821 * The result is a map that lives in the same space as "map",
12822 * except that domain space has been replaced by the domain space of "mpa".
12824 __isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
12825 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
12827 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
12830 /* Compute the preimage of "set" by the function represented by "mpa".
12831 * In other words, plug in "mpa" in "set".
12833 __isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
12834 __isl_take isl_multi_pw_aff *mpa)
12836 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);