isl_basic_set_dims_get_sign: return isl_stat
[isl.git] / isl_map.c
blobe0877db07665410f5371eac23807dd3ff54bb25d
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2014 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
6 * Copyright 2016 INRIA Paris
7 * Copyright 2016 Sven Verdoolaege
9 * Use of this software is governed by the MIT license
11 * Written by Sven Verdoolaege, K.U.Leuven, Departement
12 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
13 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
14 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
15 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
16 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
17 * B.P. 105 - 78153 Le Chesnay, France
18 * and Centre de Recherche Inria de Paris, 2 rue Simone Iff - Voie DQ12,
19 * CS 42112, 75589 Paris Cedex 12, France
22 #include <string.h>
23 #include <isl_ctx_private.h>
24 #include <isl_map_private.h>
25 #include <isl_blk.h>
26 #include <isl/constraint.h>
27 #include "isl_space_private.h"
28 #include "isl_equalities.h"
29 #include <isl_lp_private.h>
30 #include <isl_seq.h>
31 #include <isl/set.h>
32 #include <isl/map.h>
33 #include <isl_reordering.h>
34 #include "isl_sample.h"
35 #include <isl_sort.h>
36 #include "isl_tab.h"
37 #include <isl/vec.h>
38 #include <isl_mat_private.h>
39 #include <isl_vec_private.h>
40 #include <isl_dim_map.h>
41 #include <isl_local_space_private.h>
42 #include <isl_aff_private.h>
43 #include <isl_options_private.h>
44 #include <isl_morph.h>
45 #include <isl_val_private.h>
46 #include <isl/deprecated/map_int.h>
47 #include <isl/deprecated/set_int.h>
49 #include <bset_to_bmap.c>
50 #include <bset_from_bmap.c>
51 #include <set_to_map.c>
52 #include <set_from_map.c>
54 static unsigned n(__isl_keep isl_space *dim, enum isl_dim_type type)
56 switch (type) {
57 case isl_dim_param: return dim->nparam;
58 case isl_dim_in: return dim->n_in;
59 case isl_dim_out: return dim->n_out;
60 case isl_dim_all: return dim->nparam + dim->n_in + dim->n_out;
61 default: return 0;
65 static unsigned pos(__isl_keep isl_space *dim, enum isl_dim_type type)
67 switch (type) {
68 case isl_dim_param: return 1;
69 case isl_dim_in: return 1 + dim->nparam;
70 case isl_dim_out: return 1 + dim->nparam + dim->n_in;
71 default: return 0;
75 unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap,
76 enum isl_dim_type type)
78 if (!bmap)
79 return 0;
80 switch (type) {
81 case isl_dim_cst: return 1;
82 case isl_dim_param:
83 case isl_dim_in:
84 case isl_dim_out: return isl_space_dim(bmap->dim, type);
85 case isl_dim_div: return bmap->n_div;
86 case isl_dim_all: return isl_basic_map_total_dim(bmap);
87 default: return 0;
91 unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type)
93 return map ? n(map->dim, type) : 0;
96 unsigned isl_set_dim(__isl_keep isl_set *set, enum isl_dim_type type)
98 return set ? n(set->dim, type) : 0;
101 unsigned isl_basic_map_offset(struct isl_basic_map *bmap,
102 enum isl_dim_type type)
104 isl_space *space;
106 if (!bmap)
107 return 0;
109 space = bmap->dim;
110 switch (type) {
111 case isl_dim_cst: return 0;
112 case isl_dim_param: return 1;
113 case isl_dim_in: return 1 + space->nparam;
114 case isl_dim_out: return 1 + space->nparam + space->n_in;
115 case isl_dim_div: return 1 + space->nparam + space->n_in +
116 space->n_out;
117 default: return 0;
121 unsigned isl_basic_set_offset(struct isl_basic_set *bset,
122 enum isl_dim_type type)
124 return isl_basic_map_offset(bset, type);
127 static unsigned map_offset(struct isl_map *map, enum isl_dim_type type)
129 return pos(map->dim, type);
132 unsigned isl_basic_set_dim(__isl_keep isl_basic_set *bset,
133 enum isl_dim_type type)
135 return isl_basic_map_dim(bset, type);
138 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set *bset)
140 return isl_basic_set_dim(bset, isl_dim_set);
143 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set *bset)
145 return isl_basic_set_dim(bset, isl_dim_param);
148 unsigned isl_basic_set_total_dim(const struct isl_basic_set *bset)
150 if (!bset)
151 return 0;
152 return isl_space_dim(bset->dim, isl_dim_all) + bset->n_div;
155 unsigned isl_set_n_dim(__isl_keep isl_set *set)
157 return isl_set_dim(set, isl_dim_set);
160 unsigned isl_set_n_param(__isl_keep isl_set *set)
162 return isl_set_dim(set, isl_dim_param);
165 unsigned isl_basic_map_n_in(const struct isl_basic_map *bmap)
167 return bmap ? bmap->dim->n_in : 0;
170 unsigned isl_basic_map_n_out(const struct isl_basic_map *bmap)
172 return bmap ? bmap->dim->n_out : 0;
175 unsigned isl_basic_map_n_param(const struct isl_basic_map *bmap)
177 return bmap ? bmap->dim->nparam : 0;
180 unsigned isl_basic_map_n_div(const struct isl_basic_map *bmap)
182 return bmap ? bmap->n_div : 0;
185 unsigned isl_basic_map_total_dim(const struct isl_basic_map *bmap)
187 return bmap ? isl_space_dim(bmap->dim, isl_dim_all) + bmap->n_div : 0;
190 unsigned isl_map_n_in(const struct isl_map *map)
192 return map ? map->dim->n_in : 0;
195 unsigned isl_map_n_out(const struct isl_map *map)
197 return map ? map->dim->n_out : 0;
200 unsigned isl_map_n_param(const struct isl_map *map)
202 return map ? map->dim->nparam : 0;
205 isl_bool isl_map_compatible_domain(__isl_keep isl_map *map,
206 __isl_keep isl_set *set)
208 isl_bool m;
209 if (!map || !set)
210 return isl_bool_error;
211 m = isl_space_match(map->dim, isl_dim_param, set->dim, isl_dim_param);
212 if (m < 0 || !m)
213 return m;
214 return isl_space_tuple_is_equal(map->dim, isl_dim_in,
215 set->dim, isl_dim_set);
218 isl_bool isl_basic_map_compatible_domain(__isl_keep isl_basic_map *bmap,
219 __isl_keep isl_basic_set *bset)
221 isl_bool m;
222 if (!bmap || !bset)
223 return isl_bool_error;
224 m = isl_space_match(bmap->dim, isl_dim_param, bset->dim, isl_dim_param);
225 if (m < 0 || !m)
226 return m;
227 return isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
228 bset->dim, isl_dim_set);
231 isl_bool isl_map_compatible_range(__isl_keep isl_map *map,
232 __isl_keep isl_set *set)
234 isl_bool m;
235 if (!map || !set)
236 return isl_bool_error;
237 m = isl_space_match(map->dim, isl_dim_param, set->dim, isl_dim_param);
238 if (m < 0 || !m)
239 return m;
240 return isl_space_tuple_is_equal(map->dim, isl_dim_out,
241 set->dim, isl_dim_set);
244 isl_bool isl_basic_map_compatible_range(__isl_keep isl_basic_map *bmap,
245 __isl_keep isl_basic_set *bset)
247 isl_bool m;
248 if (!bmap || !bset)
249 return isl_bool_error;
250 m = isl_space_match(bmap->dim, isl_dim_param, bset->dim, isl_dim_param);
251 if (m < 0 || !m)
252 return m;
253 return isl_space_tuple_is_equal(bmap->dim, isl_dim_out,
254 bset->dim, isl_dim_set);
257 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap)
259 return bmap ? bmap->ctx : NULL;
262 isl_ctx *isl_basic_set_get_ctx(__isl_keep isl_basic_set *bset)
264 return bset ? bset->ctx : NULL;
267 isl_ctx *isl_map_get_ctx(__isl_keep isl_map *map)
269 return map ? map->ctx : NULL;
272 isl_ctx *isl_set_get_ctx(__isl_keep isl_set *set)
274 return set ? set->ctx : NULL;
277 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap)
279 if (!bmap)
280 return NULL;
281 return isl_space_copy(bmap->dim);
284 __isl_give isl_space *isl_basic_set_get_space(__isl_keep isl_basic_set *bset)
286 if (!bset)
287 return NULL;
288 return isl_space_copy(bset->dim);
291 /* Extract the divs in "bmap" as a matrix.
293 __isl_give isl_mat *isl_basic_map_get_divs(__isl_keep isl_basic_map *bmap)
295 int i;
296 isl_ctx *ctx;
297 isl_mat *div;
298 unsigned total;
299 unsigned cols;
301 if (!bmap)
302 return NULL;
304 ctx = isl_basic_map_get_ctx(bmap);
305 total = isl_space_dim(bmap->dim, isl_dim_all);
306 cols = 1 + 1 + total + bmap->n_div;
307 div = isl_mat_alloc(ctx, bmap->n_div, cols);
308 if (!div)
309 return NULL;
311 for (i = 0; i < bmap->n_div; ++i)
312 isl_seq_cpy(div->row[i], bmap->div[i], cols);
314 return div;
317 /* Extract the divs in "bset" as a matrix.
319 __isl_give isl_mat *isl_basic_set_get_divs(__isl_keep isl_basic_set *bset)
321 return isl_basic_map_get_divs(bset);
324 __isl_give isl_local_space *isl_basic_map_get_local_space(
325 __isl_keep isl_basic_map *bmap)
327 isl_mat *div;
329 if (!bmap)
330 return NULL;
332 div = isl_basic_map_get_divs(bmap);
333 return isl_local_space_alloc_div(isl_space_copy(bmap->dim), div);
336 __isl_give isl_local_space *isl_basic_set_get_local_space(
337 __isl_keep isl_basic_set *bset)
339 return isl_basic_map_get_local_space(bset);
342 /* For each known div d = floor(f/m), add the constraints
344 * f - m d >= 0
345 * -(f-(m-1)) + m d >= 0
347 * Do not finalize the result.
349 static __isl_give isl_basic_map *add_known_div_constraints(
350 __isl_take isl_basic_map *bmap)
352 int i;
353 unsigned n_div;
355 if (!bmap)
356 return NULL;
357 n_div = isl_basic_map_dim(bmap, isl_dim_div);
358 if (n_div == 0)
359 return bmap;
360 bmap = isl_basic_map_cow(bmap);
361 bmap = isl_basic_map_extend_constraints(bmap, 0, 2 * n_div);
362 if (!bmap)
363 return NULL;
364 for (i = 0; i < n_div; ++i) {
365 if (isl_int_is_zero(bmap->div[i][0]))
366 continue;
367 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
368 return isl_basic_map_free(bmap);
371 return bmap;
374 __isl_give isl_basic_map *isl_basic_map_from_local_space(
375 __isl_take isl_local_space *ls)
377 int i;
378 int n_div;
379 isl_basic_map *bmap;
381 if (!ls)
382 return NULL;
384 n_div = isl_local_space_dim(ls, isl_dim_div);
385 bmap = isl_basic_map_alloc_space(isl_local_space_get_space(ls),
386 n_div, 0, 2 * n_div);
388 for (i = 0; i < n_div; ++i)
389 if (isl_basic_map_alloc_div(bmap) < 0)
390 goto error;
392 for (i = 0; i < n_div; ++i)
393 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
394 bmap = add_known_div_constraints(bmap);
396 isl_local_space_free(ls);
397 return bmap;
398 error:
399 isl_local_space_free(ls);
400 isl_basic_map_free(bmap);
401 return NULL;
404 __isl_give isl_basic_set *isl_basic_set_from_local_space(
405 __isl_take isl_local_space *ls)
407 return isl_basic_map_from_local_space(ls);
410 __isl_give isl_space *isl_map_get_space(__isl_keep isl_map *map)
412 if (!map)
413 return NULL;
414 return isl_space_copy(map->dim);
417 __isl_give isl_space *isl_set_get_space(__isl_keep isl_set *set)
419 if (!set)
420 return NULL;
421 return isl_space_copy(set->dim);
424 __isl_give isl_basic_map *isl_basic_map_set_tuple_name(
425 __isl_take isl_basic_map *bmap, enum isl_dim_type type, const char *s)
427 bmap = isl_basic_map_cow(bmap);
428 if (!bmap)
429 return NULL;
430 bmap->dim = isl_space_set_tuple_name(bmap->dim, type, s);
431 if (!bmap->dim)
432 goto error;
433 bmap = isl_basic_map_finalize(bmap);
434 return bmap;
435 error:
436 isl_basic_map_free(bmap);
437 return NULL;
440 __isl_give isl_basic_set *isl_basic_set_set_tuple_name(
441 __isl_take isl_basic_set *bset, const char *s)
443 return isl_basic_map_set_tuple_name(bset, isl_dim_set, s);
446 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map *bmap,
447 enum isl_dim_type type)
449 return bmap ? isl_space_get_tuple_name(bmap->dim, type) : NULL;
452 __isl_give isl_map *isl_map_set_tuple_name(__isl_take isl_map *map,
453 enum isl_dim_type type, const char *s)
455 int i;
457 map = isl_map_cow(map);
458 if (!map)
459 return NULL;
461 map->dim = isl_space_set_tuple_name(map->dim, type, s);
462 if (!map->dim)
463 goto error;
465 for (i = 0; i < map->n; ++i) {
466 map->p[i] = isl_basic_map_set_tuple_name(map->p[i], type, s);
467 if (!map->p[i])
468 goto error;
471 return map;
472 error:
473 isl_map_free(map);
474 return NULL;
477 /* Replace the identifier of the tuple of type "type" by "id".
479 __isl_give isl_basic_map *isl_basic_map_set_tuple_id(
480 __isl_take isl_basic_map *bmap,
481 enum isl_dim_type type, __isl_take isl_id *id)
483 bmap = isl_basic_map_cow(bmap);
484 if (!bmap)
485 goto error;
486 bmap->dim = isl_space_set_tuple_id(bmap->dim, type, id);
487 if (!bmap->dim)
488 return isl_basic_map_free(bmap);
489 bmap = isl_basic_map_finalize(bmap);
490 return bmap;
491 error:
492 isl_id_free(id);
493 return NULL;
496 /* Replace the identifier of the tuple by "id".
498 __isl_give isl_basic_set *isl_basic_set_set_tuple_id(
499 __isl_take isl_basic_set *bset, __isl_take isl_id *id)
501 return isl_basic_map_set_tuple_id(bset, isl_dim_set, id);
504 /* Does the input or output tuple have a name?
506 isl_bool isl_map_has_tuple_name(__isl_keep isl_map *map, enum isl_dim_type type)
508 return map ? isl_space_has_tuple_name(map->dim, type) : isl_bool_error;
511 const char *isl_map_get_tuple_name(__isl_keep isl_map *map,
512 enum isl_dim_type type)
514 return map ? isl_space_get_tuple_name(map->dim, type) : NULL;
517 __isl_give isl_set *isl_set_set_tuple_name(__isl_take isl_set *set,
518 const char *s)
520 return set_from_map(isl_map_set_tuple_name(set_to_map(set),
521 isl_dim_set, s));
524 __isl_give isl_map *isl_map_set_tuple_id(__isl_take isl_map *map,
525 enum isl_dim_type type, __isl_take isl_id *id)
527 map = isl_map_cow(map);
528 if (!map)
529 goto error;
531 map->dim = isl_space_set_tuple_id(map->dim, type, id);
533 return isl_map_reset_space(map, isl_space_copy(map->dim));
534 error:
535 isl_id_free(id);
536 return NULL;
539 __isl_give isl_set *isl_set_set_tuple_id(__isl_take isl_set *set,
540 __isl_take isl_id *id)
542 return isl_map_set_tuple_id(set, isl_dim_set, id);
545 __isl_give isl_map *isl_map_reset_tuple_id(__isl_take isl_map *map,
546 enum isl_dim_type type)
548 map = isl_map_cow(map);
549 if (!map)
550 return NULL;
552 map->dim = isl_space_reset_tuple_id(map->dim, type);
554 return isl_map_reset_space(map, isl_space_copy(map->dim));
557 __isl_give isl_set *isl_set_reset_tuple_id(__isl_take isl_set *set)
559 return isl_map_reset_tuple_id(set, isl_dim_set);
562 isl_bool isl_map_has_tuple_id(__isl_keep isl_map *map, enum isl_dim_type type)
564 return map ? isl_space_has_tuple_id(map->dim, type) : isl_bool_error;
567 __isl_give isl_id *isl_map_get_tuple_id(__isl_keep isl_map *map,
568 enum isl_dim_type type)
570 return map ? isl_space_get_tuple_id(map->dim, type) : NULL;
573 isl_bool isl_set_has_tuple_id(__isl_keep isl_set *set)
575 return isl_map_has_tuple_id(set, isl_dim_set);
578 __isl_give isl_id *isl_set_get_tuple_id(__isl_keep isl_set *set)
580 return isl_map_get_tuple_id(set, isl_dim_set);
583 /* Does the set tuple have a name?
585 isl_bool isl_set_has_tuple_name(__isl_keep isl_set *set)
587 if (!set)
588 return isl_bool_error;
589 return isl_space_has_tuple_name(set->dim, isl_dim_set);
593 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set *bset)
595 return bset ? isl_space_get_tuple_name(bset->dim, isl_dim_set) : NULL;
598 const char *isl_set_get_tuple_name(__isl_keep isl_set *set)
600 return set ? isl_space_get_tuple_name(set->dim, isl_dim_set) : NULL;
603 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map *bmap,
604 enum isl_dim_type type, unsigned pos)
606 return bmap ? isl_space_get_dim_name(bmap->dim, type, pos) : NULL;
609 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set *bset,
610 enum isl_dim_type type, unsigned pos)
612 return bset ? isl_space_get_dim_name(bset->dim, type, pos) : NULL;
615 /* Does the given dimension have a name?
617 isl_bool isl_map_has_dim_name(__isl_keep isl_map *map,
618 enum isl_dim_type type, unsigned pos)
620 if (!map)
621 return isl_bool_error;
622 return isl_space_has_dim_name(map->dim, type, pos);
625 const char *isl_map_get_dim_name(__isl_keep isl_map *map,
626 enum isl_dim_type type, unsigned pos)
628 return map ? isl_space_get_dim_name(map->dim, type, pos) : NULL;
631 const char *isl_set_get_dim_name(__isl_keep isl_set *set,
632 enum isl_dim_type type, unsigned pos)
634 return set ? isl_space_get_dim_name(set->dim, type, pos) : NULL;
637 /* Does the given dimension have a name?
639 isl_bool isl_set_has_dim_name(__isl_keep isl_set *set,
640 enum isl_dim_type type, unsigned pos)
642 if (!set)
643 return isl_bool_error;
644 return isl_space_has_dim_name(set->dim, type, pos);
647 __isl_give isl_basic_map *isl_basic_map_set_dim_name(
648 __isl_take isl_basic_map *bmap,
649 enum isl_dim_type type, unsigned pos, const char *s)
651 bmap = isl_basic_map_cow(bmap);
652 if (!bmap)
653 return NULL;
654 bmap->dim = isl_space_set_dim_name(bmap->dim, type, pos, s);
655 if (!bmap->dim)
656 goto error;
657 return isl_basic_map_finalize(bmap);
658 error:
659 isl_basic_map_free(bmap);
660 return NULL;
663 __isl_give isl_map *isl_map_set_dim_name(__isl_take isl_map *map,
664 enum isl_dim_type type, unsigned pos, const char *s)
666 int i;
668 map = isl_map_cow(map);
669 if (!map)
670 return NULL;
672 map->dim = isl_space_set_dim_name(map->dim, type, pos, s);
673 if (!map->dim)
674 goto error;
676 for (i = 0; i < map->n; ++i) {
677 map->p[i] = isl_basic_map_set_dim_name(map->p[i], type, pos, s);
678 if (!map->p[i])
679 goto error;
682 return map;
683 error:
684 isl_map_free(map);
685 return NULL;
688 __isl_give isl_basic_set *isl_basic_set_set_dim_name(
689 __isl_take isl_basic_set *bset,
690 enum isl_dim_type type, unsigned pos, const char *s)
692 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset),
693 type, pos, s));
696 __isl_give isl_set *isl_set_set_dim_name(__isl_take isl_set *set,
697 enum isl_dim_type type, unsigned pos, const char *s)
699 return set_from_map(isl_map_set_dim_name(set_to_map(set),
700 type, pos, s));
703 isl_bool isl_basic_map_has_dim_id(__isl_keep isl_basic_map *bmap,
704 enum isl_dim_type type, unsigned pos)
706 if (!bmap)
707 return isl_bool_error;
708 return isl_space_has_dim_id(bmap->dim, type, pos);
711 __isl_give isl_id *isl_basic_set_get_dim_id(__isl_keep isl_basic_set *bset,
712 enum isl_dim_type type, unsigned pos)
714 return bset ? isl_space_get_dim_id(bset->dim, type, pos) : NULL;
717 isl_bool isl_map_has_dim_id(__isl_keep isl_map *map,
718 enum isl_dim_type type, unsigned pos)
720 return map ? isl_space_has_dim_id(map->dim, type, pos) : isl_bool_error;
723 __isl_give isl_id *isl_map_get_dim_id(__isl_keep isl_map *map,
724 enum isl_dim_type type, unsigned pos)
726 return map ? isl_space_get_dim_id(map->dim, type, pos) : NULL;
729 isl_bool isl_set_has_dim_id(__isl_keep isl_set *set,
730 enum isl_dim_type type, unsigned pos)
732 return isl_map_has_dim_id(set, type, pos);
735 __isl_give isl_id *isl_set_get_dim_id(__isl_keep isl_set *set,
736 enum isl_dim_type type, unsigned pos)
738 return isl_map_get_dim_id(set, type, pos);
741 __isl_give isl_map *isl_map_set_dim_id(__isl_take isl_map *map,
742 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
744 map = isl_map_cow(map);
745 if (!map)
746 goto error;
748 map->dim = isl_space_set_dim_id(map->dim, type, pos, id);
750 return isl_map_reset_space(map, isl_space_copy(map->dim));
751 error:
752 isl_id_free(id);
753 return NULL;
756 __isl_give isl_set *isl_set_set_dim_id(__isl_take isl_set *set,
757 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
759 return isl_map_set_dim_id(set, type, pos, id);
762 int isl_map_find_dim_by_id(__isl_keep isl_map *map, enum isl_dim_type type,
763 __isl_keep isl_id *id)
765 if (!map)
766 return -1;
767 return isl_space_find_dim_by_id(map->dim, type, id);
770 int isl_set_find_dim_by_id(__isl_keep isl_set *set, enum isl_dim_type type,
771 __isl_keep isl_id *id)
773 return isl_map_find_dim_by_id(set, type, id);
776 /* Return the position of the dimension of the given type and name
777 * in "bmap".
778 * Return -1 if no such dimension can be found.
780 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map *bmap,
781 enum isl_dim_type type, const char *name)
783 if (!bmap)
784 return -1;
785 return isl_space_find_dim_by_name(bmap->dim, type, name);
788 int isl_map_find_dim_by_name(__isl_keep isl_map *map, enum isl_dim_type type,
789 const char *name)
791 if (!map)
792 return -1;
793 return isl_space_find_dim_by_name(map->dim, type, name);
796 int isl_set_find_dim_by_name(__isl_keep isl_set *set, enum isl_dim_type type,
797 const char *name)
799 return isl_map_find_dim_by_name(set, type, name);
802 /* Reset the user pointer on all identifiers of parameters and tuples
803 * of the space of "map".
805 __isl_give isl_map *isl_map_reset_user(__isl_take isl_map *map)
807 isl_space *space;
809 space = isl_map_get_space(map);
810 space = isl_space_reset_user(space);
811 map = isl_map_reset_space(map, space);
813 return map;
816 /* Reset the user pointer on all identifiers of parameters and tuples
817 * of the space of "set".
819 __isl_give isl_set *isl_set_reset_user(__isl_take isl_set *set)
821 return isl_map_reset_user(set);
824 isl_bool isl_basic_map_is_rational(__isl_keep isl_basic_map *bmap)
826 if (!bmap)
827 return isl_bool_error;
828 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
831 /* Has "map" been marked as a rational map?
832 * In particular, have all basic maps in "map" been marked this way?
833 * An empty map is not considered to be rational.
834 * Maps where only some of the basic maps are marked rational
835 * are not allowed.
837 isl_bool isl_map_is_rational(__isl_keep isl_map *map)
839 int i;
840 isl_bool rational;
842 if (!map)
843 return isl_bool_error;
844 if (map->n == 0)
845 return isl_bool_false;
846 rational = isl_basic_map_is_rational(map->p[0]);
847 if (rational < 0)
848 return rational;
849 for (i = 1; i < map->n; ++i) {
850 isl_bool rational_i;
852 rational_i = isl_basic_map_is_rational(map->p[i]);
853 if (rational_i < 0)
854 return rational_i;
855 if (rational != rational_i)
856 isl_die(isl_map_get_ctx(map), isl_error_unsupported,
857 "mixed rational and integer basic maps "
858 "not supported", return isl_bool_error);
861 return rational;
864 /* Has "set" been marked as a rational set?
865 * In particular, have all basic set in "set" been marked this way?
866 * An empty set is not considered to be rational.
867 * Sets where only some of the basic sets are marked rational
868 * are not allowed.
870 isl_bool isl_set_is_rational(__isl_keep isl_set *set)
872 return isl_map_is_rational(set);
875 int isl_basic_set_is_rational(__isl_keep isl_basic_set *bset)
877 return isl_basic_map_is_rational(bset);
880 /* Does "bmap" contain any rational points?
882 * If "bmap" has an equality for each dimension, equating the dimension
883 * to an integer constant, then it has no rational points, even if it
884 * is marked as rational.
886 isl_bool isl_basic_map_has_rational(__isl_keep isl_basic_map *bmap)
888 isl_bool has_rational = isl_bool_true;
889 unsigned total;
891 if (!bmap)
892 return isl_bool_error;
893 if (isl_basic_map_plain_is_empty(bmap))
894 return isl_bool_false;
895 if (!isl_basic_map_is_rational(bmap))
896 return isl_bool_false;
897 bmap = isl_basic_map_copy(bmap);
898 bmap = isl_basic_map_implicit_equalities(bmap);
899 if (!bmap)
900 return isl_bool_error;
901 total = isl_basic_map_total_dim(bmap);
902 if (bmap->n_eq == total) {
903 int i, j;
904 for (i = 0; i < bmap->n_eq; ++i) {
905 j = isl_seq_first_non_zero(bmap->eq[i] + 1, total);
906 if (j < 0)
907 break;
908 if (!isl_int_is_one(bmap->eq[i][1 + j]) &&
909 !isl_int_is_negone(bmap->eq[i][1 + j]))
910 break;
911 j = isl_seq_first_non_zero(bmap->eq[i] + 1 + j + 1,
912 total - j - 1);
913 if (j >= 0)
914 break;
916 if (i == bmap->n_eq)
917 has_rational = isl_bool_false;
919 isl_basic_map_free(bmap);
921 return has_rational;
924 /* Does "map" contain any rational points?
926 isl_bool isl_map_has_rational(__isl_keep isl_map *map)
928 int i;
929 isl_bool has_rational;
931 if (!map)
932 return isl_bool_error;
933 for (i = 0; i < map->n; ++i) {
934 has_rational = isl_basic_map_has_rational(map->p[i]);
935 if (has_rational < 0 || has_rational)
936 return has_rational;
938 return isl_bool_false;
941 /* Does "set" contain any rational points?
943 isl_bool isl_set_has_rational(__isl_keep isl_set *set)
945 return isl_map_has_rational(set);
948 /* Is this basic set a parameter domain?
950 isl_bool isl_basic_set_is_params(__isl_keep isl_basic_set *bset)
952 if (!bset)
953 return isl_bool_error;
954 return isl_space_is_params(bset->dim);
957 /* Is this set a parameter domain?
959 isl_bool isl_set_is_params(__isl_keep isl_set *set)
961 if (!set)
962 return isl_bool_error;
963 return isl_space_is_params(set->dim);
966 /* Is this map actually a parameter domain?
967 * Users should never call this function. Outside of isl,
968 * a map can never be a parameter domain.
970 isl_bool isl_map_is_params(__isl_keep isl_map *map)
972 if (!map)
973 return isl_bool_error;
974 return isl_space_is_params(map->dim);
977 static struct isl_basic_map *basic_map_init(struct isl_ctx *ctx,
978 struct isl_basic_map *bmap, unsigned extra,
979 unsigned n_eq, unsigned n_ineq)
981 int i;
982 size_t row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + extra;
984 bmap->ctx = ctx;
985 isl_ctx_ref(ctx);
987 bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
988 if (isl_blk_is_error(bmap->block))
989 goto error;
991 bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
992 if ((n_ineq + n_eq) && !bmap->ineq)
993 goto error;
995 if (extra == 0) {
996 bmap->block2 = isl_blk_empty();
997 bmap->div = NULL;
998 } else {
999 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
1000 if (isl_blk_is_error(bmap->block2))
1001 goto error;
1003 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
1004 if (!bmap->div)
1005 goto error;
1008 for (i = 0; i < n_ineq + n_eq; ++i)
1009 bmap->ineq[i] = bmap->block.data + i * row_size;
1011 for (i = 0; i < extra; ++i)
1012 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
1014 bmap->ref = 1;
1015 bmap->flags = 0;
1016 bmap->c_size = n_eq + n_ineq;
1017 bmap->eq = bmap->ineq + n_ineq;
1018 bmap->extra = extra;
1019 bmap->n_eq = 0;
1020 bmap->n_ineq = 0;
1021 bmap->n_div = 0;
1022 bmap->sample = NULL;
1024 return bmap;
1025 error:
1026 isl_basic_map_free(bmap);
1027 return NULL;
1030 struct isl_basic_set *isl_basic_set_alloc(struct isl_ctx *ctx,
1031 unsigned nparam, unsigned dim, unsigned extra,
1032 unsigned n_eq, unsigned n_ineq)
1034 struct isl_basic_map *bmap;
1035 isl_space *space;
1037 space = isl_space_set_alloc(ctx, nparam, dim);
1038 if (!space)
1039 return NULL;
1041 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1042 return bset_from_bmap(bmap);
1045 struct isl_basic_set *isl_basic_set_alloc_space(__isl_take isl_space *dim,
1046 unsigned extra, unsigned n_eq, unsigned n_ineq)
1048 struct isl_basic_map *bmap;
1049 if (!dim)
1050 return NULL;
1051 isl_assert(dim->ctx, dim->n_in == 0, goto error);
1052 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1053 return bset_from_bmap(bmap);
1054 error:
1055 isl_space_free(dim);
1056 return NULL;
1059 struct isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *dim,
1060 unsigned extra, unsigned n_eq, unsigned n_ineq)
1062 struct isl_basic_map *bmap;
1064 if (!dim)
1065 return NULL;
1066 bmap = isl_calloc_type(dim->ctx, struct isl_basic_map);
1067 if (!bmap)
1068 goto error;
1069 bmap->dim = dim;
1071 return basic_map_init(dim->ctx, bmap, extra, n_eq, n_ineq);
1072 error:
1073 isl_space_free(dim);
1074 return NULL;
1077 struct isl_basic_map *isl_basic_map_alloc(struct isl_ctx *ctx,
1078 unsigned nparam, unsigned in, unsigned out, unsigned extra,
1079 unsigned n_eq, unsigned n_ineq)
1081 struct isl_basic_map *bmap;
1082 isl_space *dim;
1084 dim = isl_space_alloc(ctx, nparam, in, out);
1085 if (!dim)
1086 return NULL;
1088 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1089 return bmap;
1092 static void dup_constraints(
1093 struct isl_basic_map *dst, struct isl_basic_map *src)
1095 int i;
1096 unsigned total = isl_basic_map_total_dim(src);
1098 for (i = 0; i < src->n_eq; ++i) {
1099 int j = isl_basic_map_alloc_equality(dst);
1100 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
1103 for (i = 0; i < src->n_ineq; ++i) {
1104 int j = isl_basic_map_alloc_inequality(dst);
1105 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
1108 for (i = 0; i < src->n_div; ++i) {
1109 int j = isl_basic_map_alloc_div(dst);
1110 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
1112 ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
1115 struct isl_basic_map *isl_basic_map_dup(struct isl_basic_map *bmap)
1117 struct isl_basic_map *dup;
1119 if (!bmap)
1120 return NULL;
1121 dup = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
1122 bmap->n_div, bmap->n_eq, bmap->n_ineq);
1123 if (!dup)
1124 return NULL;
1125 dup_constraints(dup, bmap);
1126 dup->flags = bmap->flags;
1127 dup->sample = isl_vec_copy(bmap->sample);
1128 return dup;
1131 struct isl_basic_set *isl_basic_set_dup(struct isl_basic_set *bset)
1133 struct isl_basic_map *dup;
1135 dup = isl_basic_map_dup(bset_to_bmap(bset));
1136 return bset_from_bmap(dup);
1139 struct isl_basic_set *isl_basic_set_copy(struct isl_basic_set *bset)
1141 if (!bset)
1142 return NULL;
1144 if (ISL_F_ISSET(bset, ISL_BASIC_SET_FINAL)) {
1145 bset->ref++;
1146 return bset;
1148 return isl_basic_set_dup(bset);
1151 struct isl_set *isl_set_copy(struct isl_set *set)
1153 if (!set)
1154 return NULL;
1156 set->ref++;
1157 return set;
1160 struct isl_basic_map *isl_basic_map_copy(struct isl_basic_map *bmap)
1162 if (!bmap)
1163 return NULL;
1165 if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
1166 bmap->ref++;
1167 return bmap;
1169 bmap = isl_basic_map_dup(bmap);
1170 if (bmap)
1171 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1172 return bmap;
1175 struct isl_map *isl_map_copy(struct isl_map *map)
1177 if (!map)
1178 return NULL;
1180 map->ref++;
1181 return map;
1184 __isl_null isl_basic_map *isl_basic_map_free(__isl_take isl_basic_map *bmap)
1186 if (!bmap)
1187 return NULL;
1189 if (--bmap->ref > 0)
1190 return NULL;
1192 isl_ctx_deref(bmap->ctx);
1193 free(bmap->div);
1194 isl_blk_free(bmap->ctx, bmap->block2);
1195 free(bmap->ineq);
1196 isl_blk_free(bmap->ctx, bmap->block);
1197 isl_vec_free(bmap->sample);
1198 isl_space_free(bmap->dim);
1199 free(bmap);
1201 return NULL;
1204 __isl_null isl_basic_set *isl_basic_set_free(__isl_take isl_basic_set *bset)
1206 return isl_basic_map_free(bset_to_bmap(bset));
1209 static int room_for_con(struct isl_basic_map *bmap, unsigned n)
1211 return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
1214 __isl_give isl_map *isl_map_align_params_map_map_and(
1215 __isl_take isl_map *map1, __isl_take isl_map *map2,
1216 __isl_give isl_map *(*fn)(__isl_take isl_map *map1,
1217 __isl_take isl_map *map2))
1219 if (!map1 || !map2)
1220 goto error;
1221 if (isl_space_match(map1->dim, isl_dim_param, map2->dim, isl_dim_param))
1222 return fn(map1, map2);
1223 if (!isl_space_has_named_params(map1->dim) ||
1224 !isl_space_has_named_params(map2->dim))
1225 isl_die(map1->ctx, isl_error_invalid,
1226 "unaligned unnamed parameters", goto error);
1227 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1228 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1229 return fn(map1, map2);
1230 error:
1231 isl_map_free(map1);
1232 isl_map_free(map2);
1233 return NULL;
1236 isl_bool isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
1237 __isl_keep isl_map *map2,
1238 isl_bool (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
1240 isl_bool r;
1242 if (!map1 || !map2)
1243 return isl_bool_error;
1244 if (isl_space_match(map1->dim, isl_dim_param, map2->dim, isl_dim_param))
1245 return fn(map1, map2);
1246 if (!isl_space_has_named_params(map1->dim) ||
1247 !isl_space_has_named_params(map2->dim))
1248 isl_die(map1->ctx, isl_error_invalid,
1249 "unaligned unnamed parameters", return isl_bool_error);
1250 map1 = isl_map_copy(map1);
1251 map2 = isl_map_copy(map2);
1252 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1253 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1254 r = fn(map1, map2);
1255 isl_map_free(map1);
1256 isl_map_free(map2);
1257 return r;
1260 int isl_basic_map_alloc_equality(struct isl_basic_map *bmap)
1262 struct isl_ctx *ctx;
1263 if (!bmap)
1264 return -1;
1265 ctx = bmap->ctx;
1266 isl_assert(ctx, room_for_con(bmap, 1), return -1);
1267 isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
1268 return -1);
1269 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1270 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1271 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1272 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1273 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1274 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1275 isl_int *t;
1276 int j = isl_basic_map_alloc_inequality(bmap);
1277 if (j < 0)
1278 return -1;
1279 t = bmap->ineq[j];
1280 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1281 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1282 bmap->eq[-1] = t;
1283 bmap->n_eq++;
1284 bmap->n_ineq--;
1285 bmap->eq--;
1286 return 0;
1288 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
1289 bmap->extra - bmap->n_div);
1290 return bmap->n_eq++;
1293 int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
1295 return isl_basic_map_alloc_equality(bset_to_bmap(bset));
1298 int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
1300 if (!bmap)
1301 return -1;
1302 isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
1303 bmap->n_eq -= n;
1304 return 0;
1307 int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
1309 return isl_basic_map_free_equality(bset_to_bmap(bset), n);
1312 int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
1314 isl_int *t;
1315 if (!bmap)
1316 return -1;
1317 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1319 if (pos != bmap->n_eq - 1) {
1320 t = bmap->eq[pos];
1321 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
1322 bmap->eq[bmap->n_eq - 1] = t;
1324 bmap->n_eq--;
1325 return 0;
1328 int isl_basic_set_drop_equality(struct isl_basic_set *bset, unsigned pos)
1330 return isl_basic_map_drop_equality(bset_to_bmap(bset), pos);
1333 /* Turn inequality "pos" of "bmap" into an equality.
1335 * In particular, we move the inequality in front of the equalities
1336 * and move the last inequality in the position of the moved inequality.
1337 * Note that isl_tab_make_equalities_explicit depends on this particular
1338 * change in the ordering of the constraints.
1340 void isl_basic_map_inequality_to_equality(
1341 struct isl_basic_map *bmap, unsigned pos)
1343 isl_int *t;
1345 t = bmap->ineq[pos];
1346 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1347 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1348 bmap->eq[-1] = t;
1349 bmap->n_eq++;
1350 bmap->n_ineq--;
1351 bmap->eq--;
1352 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1353 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1354 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1355 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1358 static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
1360 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1363 int isl_basic_map_alloc_inequality(struct isl_basic_map *bmap)
1365 struct isl_ctx *ctx;
1366 if (!bmap)
1367 return -1;
1368 ctx = bmap->ctx;
1369 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1370 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1371 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1372 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1373 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1374 isl_seq_clr(bmap->ineq[bmap->n_ineq] +
1375 1 + isl_basic_map_total_dim(bmap),
1376 bmap->extra - bmap->n_div);
1377 return bmap->n_ineq++;
1380 int isl_basic_set_alloc_inequality(struct isl_basic_set *bset)
1382 return isl_basic_map_alloc_inequality(bset_to_bmap(bset));
1385 int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
1387 if (!bmap)
1388 return -1;
1389 isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
1390 bmap->n_ineq -= n;
1391 return 0;
1394 int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
1396 return isl_basic_map_free_inequality(bset_to_bmap(bset), n);
1399 int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
1401 isl_int *t;
1402 if (!bmap)
1403 return -1;
1404 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1406 if (pos != bmap->n_ineq - 1) {
1407 t = bmap->ineq[pos];
1408 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1409 bmap->ineq[bmap->n_ineq - 1] = t;
1410 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1412 bmap->n_ineq--;
1413 return 0;
1416 int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
1418 return isl_basic_map_drop_inequality(bset_to_bmap(bset), pos);
1421 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1422 isl_int *eq)
1424 int k;
1426 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1427 if (!bmap)
1428 return NULL;
1429 k = isl_basic_map_alloc_equality(bmap);
1430 if (k < 0)
1431 goto error;
1432 isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
1433 return bmap;
1434 error:
1435 isl_basic_map_free(bmap);
1436 return NULL;
1439 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1440 isl_int *eq)
1442 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset), eq));
1445 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1446 isl_int *ineq)
1448 int k;
1450 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1451 if (!bmap)
1452 return NULL;
1453 k = isl_basic_map_alloc_inequality(bmap);
1454 if (k < 0)
1455 goto error;
1456 isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
1457 return bmap;
1458 error:
1459 isl_basic_map_free(bmap);
1460 return NULL;
1463 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1464 isl_int *ineq)
1466 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset), ineq));
1469 int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
1471 if (!bmap)
1472 return -1;
1473 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1474 isl_seq_clr(bmap->div[bmap->n_div] +
1475 1 + 1 + isl_basic_map_total_dim(bmap),
1476 bmap->extra - bmap->n_div);
1477 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1478 return bmap->n_div++;
1481 int isl_basic_set_alloc_div(struct isl_basic_set *bset)
1483 return isl_basic_map_alloc_div(bset_to_bmap(bset));
1486 /* Check that there are "n" dimensions of type "type" starting at "first"
1487 * in "bmap".
1489 static isl_stat isl_basic_map_check_range(__isl_keep isl_basic_map *bmap,
1490 enum isl_dim_type type, unsigned first, unsigned n)
1492 unsigned dim;
1494 if (!bmap)
1495 return isl_stat_error;
1496 dim = isl_basic_map_dim(bmap, type);
1497 if (first + n > dim || first + n < first)
1498 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1499 "position or range out of bounds",
1500 return isl_stat_error);
1501 return isl_stat_ok;
1504 /* Insert an extra integer division, prescribed by "div", to "bmap"
1505 * at (integer division) position "pos".
1507 * The integer division is first added at the end and then moved
1508 * into the right position.
1510 __isl_give isl_basic_map *isl_basic_map_insert_div(
1511 __isl_take isl_basic_map *bmap, int pos, __isl_keep isl_vec *div)
1513 int i, k;
1515 bmap = isl_basic_map_cow(bmap);
1516 if (!bmap || !div)
1517 return isl_basic_map_free(bmap);
1519 if (div->size != 1 + 1 + isl_basic_map_dim(bmap, isl_dim_all))
1520 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1521 "unexpected size", return isl_basic_map_free(bmap));
1522 if (isl_basic_map_check_range(bmap, isl_dim_div, pos, 0) < 0)
1523 return isl_basic_map_free(bmap);
1525 bmap = isl_basic_map_extend_space(bmap,
1526 isl_basic_map_get_space(bmap), 1, 0, 2);
1527 k = isl_basic_map_alloc_div(bmap);
1528 if (k < 0)
1529 return isl_basic_map_free(bmap);
1530 isl_seq_cpy(bmap->div[k], div->el, div->size);
1531 isl_int_set_si(bmap->div[k][div->size], 0);
1533 for (i = k; i > pos; --i)
1534 isl_basic_map_swap_div(bmap, i, i - 1);
1536 return bmap;
1539 isl_stat isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
1541 if (!bmap)
1542 return isl_stat_error;
1543 isl_assert(bmap->ctx, n <= bmap->n_div, return isl_stat_error);
1544 bmap->n_div -= n;
1545 return isl_stat_ok;
1548 isl_stat isl_basic_set_free_div(struct isl_basic_set *bset, unsigned n)
1550 return isl_basic_map_free_div(bset_to_bmap(bset), n);
1553 /* Copy constraint from src to dst, putting the vars of src at offset
1554 * dim_off in dst and the divs of src at offset div_off in dst.
1555 * If both sets are actually map, then dim_off applies to the input
1556 * variables.
1558 static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
1559 struct isl_basic_map *src_map, isl_int *src,
1560 unsigned in_off, unsigned out_off, unsigned div_off)
1562 unsigned src_nparam = isl_basic_map_n_param(src_map);
1563 unsigned dst_nparam = isl_basic_map_n_param(dst_map);
1564 unsigned src_in = isl_basic_map_n_in(src_map);
1565 unsigned dst_in = isl_basic_map_n_in(dst_map);
1566 unsigned src_out = isl_basic_map_n_out(src_map);
1567 unsigned dst_out = isl_basic_map_n_out(dst_map);
1568 isl_int_set(dst[0], src[0]);
1569 isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
1570 if (dst_nparam > src_nparam)
1571 isl_seq_clr(dst+1+src_nparam,
1572 dst_nparam - src_nparam);
1573 isl_seq_clr(dst+1+dst_nparam, in_off);
1574 isl_seq_cpy(dst+1+dst_nparam+in_off,
1575 src+1+src_nparam,
1576 isl_min(dst_in-in_off, src_in));
1577 if (dst_in-in_off > src_in)
1578 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
1579 dst_in - in_off - src_in);
1580 isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
1581 isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
1582 src+1+src_nparam+src_in,
1583 isl_min(dst_out-out_off, src_out));
1584 if (dst_out-out_off > src_out)
1585 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
1586 dst_out - out_off - src_out);
1587 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
1588 isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
1589 src+1+src_nparam+src_in+src_out,
1590 isl_min(dst_map->extra-div_off, src_map->n_div));
1591 if (dst_map->n_div-div_off > src_map->n_div)
1592 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
1593 div_off+src_map->n_div,
1594 dst_map->n_div - div_off - src_map->n_div);
1597 static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
1598 struct isl_basic_map *src_map, isl_int *src,
1599 unsigned in_off, unsigned out_off, unsigned div_off)
1601 isl_int_set(dst[0], src[0]);
1602 copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
1605 static struct isl_basic_map *add_constraints(struct isl_basic_map *bmap1,
1606 struct isl_basic_map *bmap2, unsigned i_pos, unsigned o_pos)
1608 int i;
1609 unsigned div_off;
1611 if (!bmap1 || !bmap2)
1612 goto error;
1614 div_off = bmap1->n_div;
1616 for (i = 0; i < bmap2->n_eq; ++i) {
1617 int i1 = isl_basic_map_alloc_equality(bmap1);
1618 if (i1 < 0)
1619 goto error;
1620 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
1621 i_pos, o_pos, div_off);
1624 for (i = 0; i < bmap2->n_ineq; ++i) {
1625 int i1 = isl_basic_map_alloc_inequality(bmap1);
1626 if (i1 < 0)
1627 goto error;
1628 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
1629 i_pos, o_pos, div_off);
1632 for (i = 0; i < bmap2->n_div; ++i) {
1633 int i1 = isl_basic_map_alloc_div(bmap1);
1634 if (i1 < 0)
1635 goto error;
1636 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
1637 i_pos, o_pos, div_off);
1640 isl_basic_map_free(bmap2);
1642 return bmap1;
1644 error:
1645 isl_basic_map_free(bmap1);
1646 isl_basic_map_free(bmap2);
1647 return NULL;
1650 struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
1651 struct isl_basic_set *bset2, unsigned pos)
1653 return bset_from_bmap(add_constraints(bset_to_bmap(bset1),
1654 bset_to_bmap(bset2), 0, pos));
1657 struct isl_basic_map *isl_basic_map_extend_space(struct isl_basic_map *base,
1658 __isl_take isl_space *dim, unsigned extra,
1659 unsigned n_eq, unsigned n_ineq)
1661 struct isl_basic_map *ext;
1662 unsigned flags;
1663 int dims_ok;
1665 if (!dim)
1666 goto error;
1668 if (!base)
1669 goto error;
1671 dims_ok = isl_space_is_equal(base->dim, dim) &&
1672 base->extra >= base->n_div + extra;
1674 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1675 room_for_ineq(base, n_ineq)) {
1676 isl_space_free(dim);
1677 return base;
1680 isl_assert(base->ctx, base->dim->nparam <= dim->nparam, goto error);
1681 isl_assert(base->ctx, base->dim->n_in <= dim->n_in, goto error);
1682 isl_assert(base->ctx, base->dim->n_out <= dim->n_out, goto error);
1683 extra += base->extra;
1684 n_eq += base->n_eq;
1685 n_ineq += base->n_ineq;
1687 ext = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1688 dim = NULL;
1689 if (!ext)
1690 goto error;
1692 if (dims_ok)
1693 ext->sample = isl_vec_copy(base->sample);
1694 flags = base->flags;
1695 ext = add_constraints(ext, base, 0, 0);
1696 if (ext) {
1697 ext->flags = flags;
1698 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
1701 return ext;
1703 error:
1704 isl_space_free(dim);
1705 isl_basic_map_free(base);
1706 return NULL;
1709 struct isl_basic_set *isl_basic_set_extend_space(struct isl_basic_set *base,
1710 __isl_take isl_space *dim, unsigned extra,
1711 unsigned n_eq, unsigned n_ineq)
1713 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base),
1714 dim, extra, n_eq, n_ineq));
1717 struct isl_basic_map *isl_basic_map_extend_constraints(
1718 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
1720 if (!base)
1721 return NULL;
1722 return isl_basic_map_extend_space(base, isl_space_copy(base->dim),
1723 0, n_eq, n_ineq);
1726 struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
1727 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
1728 unsigned n_eq, unsigned n_ineq)
1730 struct isl_basic_map *bmap;
1731 isl_space *dim;
1733 if (!base)
1734 return NULL;
1735 dim = isl_space_alloc(base->ctx, nparam, n_in, n_out);
1736 if (!dim)
1737 goto error;
1739 bmap = isl_basic_map_extend_space(base, dim, extra, n_eq, n_ineq);
1740 return bmap;
1741 error:
1742 isl_basic_map_free(base);
1743 return NULL;
1746 struct isl_basic_set *isl_basic_set_extend(struct isl_basic_set *base,
1747 unsigned nparam, unsigned dim, unsigned extra,
1748 unsigned n_eq, unsigned n_ineq)
1750 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base),
1751 nparam, 0, dim, extra, n_eq, n_ineq));
1754 struct isl_basic_set *isl_basic_set_extend_constraints(
1755 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1757 isl_basic_map *bmap = bset_to_bmap(base);
1758 bmap = isl_basic_map_extend_constraints(bmap, n_eq, n_ineq);
1759 return bset_from_bmap(bmap);
1762 struct isl_basic_set *isl_basic_set_cow(struct isl_basic_set *bset)
1764 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset)));
1767 struct isl_basic_map *isl_basic_map_cow(struct isl_basic_map *bmap)
1769 if (!bmap)
1770 return NULL;
1772 if (bmap->ref > 1) {
1773 bmap->ref--;
1774 bmap = isl_basic_map_dup(bmap);
1776 if (bmap) {
1777 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
1778 ISL_F_CLR(bmap, ISL_BASIC_MAP_REDUCED_COEFFICIENTS);
1780 return bmap;
1783 /* Clear all cached information in "map", either because it is about
1784 * to be modified or because it is being freed.
1785 * Always return the same pointer that is passed in.
1786 * This is needed for the use in isl_map_free.
1788 static __isl_give isl_map *clear_caches(__isl_take isl_map *map)
1790 isl_basic_map_free(map->cached_simple_hull[0]);
1791 isl_basic_map_free(map->cached_simple_hull[1]);
1792 map->cached_simple_hull[0] = NULL;
1793 map->cached_simple_hull[1] = NULL;
1794 return map;
1797 struct isl_set *isl_set_cow(struct isl_set *set)
1799 return isl_map_cow(set);
1802 /* Return an isl_map that is equal to "map" and that has only
1803 * a single reference.
1805 * If the original input already has only one reference, then
1806 * simply return it, but clear all cached information, since
1807 * it may be rendered invalid by the operations that will be
1808 * performed on the result.
1810 * Otherwise, create a duplicate (without any cached information).
1812 struct isl_map *isl_map_cow(struct isl_map *map)
1814 if (!map)
1815 return NULL;
1817 if (map->ref == 1)
1818 return clear_caches(map);
1819 map->ref--;
1820 return isl_map_dup(map);
1823 static void swap_vars(struct isl_blk blk, isl_int *a,
1824 unsigned a_len, unsigned b_len)
1826 isl_seq_cpy(blk.data, a+a_len, b_len);
1827 isl_seq_cpy(blk.data+b_len, a, a_len);
1828 isl_seq_cpy(a, blk.data, b_len+a_len);
1831 static __isl_give isl_basic_map *isl_basic_map_swap_vars(
1832 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
1834 int i;
1835 struct isl_blk blk;
1837 if (!bmap)
1838 goto error;
1840 isl_assert(bmap->ctx,
1841 pos + n1 + n2 <= 1 + isl_basic_map_total_dim(bmap), goto error);
1843 if (n1 == 0 || n2 == 0)
1844 return bmap;
1846 bmap = isl_basic_map_cow(bmap);
1847 if (!bmap)
1848 return NULL;
1850 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
1851 if (isl_blk_is_error(blk))
1852 goto error;
1854 for (i = 0; i < bmap->n_eq; ++i)
1855 swap_vars(blk,
1856 bmap->eq[i] + pos, n1, n2);
1858 for (i = 0; i < bmap->n_ineq; ++i)
1859 swap_vars(blk,
1860 bmap->ineq[i] + pos, n1, n2);
1862 for (i = 0; i < bmap->n_div; ++i)
1863 swap_vars(blk,
1864 bmap->div[i]+1 + pos, n1, n2);
1866 isl_blk_free(bmap->ctx, blk);
1868 ISL_F_CLR(bmap, ISL_BASIC_SET_NORMALIZED);
1869 bmap = isl_basic_map_gauss(bmap, NULL);
1870 return isl_basic_map_finalize(bmap);
1871 error:
1872 isl_basic_map_free(bmap);
1873 return NULL;
1876 struct isl_basic_map *isl_basic_map_set_to_empty(struct isl_basic_map *bmap)
1878 int i = 0;
1879 unsigned total;
1880 if (!bmap)
1881 goto error;
1882 total = isl_basic_map_total_dim(bmap);
1883 if (isl_basic_map_free_div(bmap, bmap->n_div) < 0)
1884 return isl_basic_map_free(bmap);
1885 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
1886 if (bmap->n_eq > 0)
1887 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
1888 else {
1889 i = isl_basic_map_alloc_equality(bmap);
1890 if (i < 0)
1891 goto error;
1893 isl_int_set_si(bmap->eq[i][0], 1);
1894 isl_seq_clr(bmap->eq[i]+1, total);
1895 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
1896 isl_vec_free(bmap->sample);
1897 bmap->sample = NULL;
1898 return isl_basic_map_finalize(bmap);
1899 error:
1900 isl_basic_map_free(bmap);
1901 return NULL;
1904 struct isl_basic_set *isl_basic_set_set_to_empty(struct isl_basic_set *bset)
1906 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset)));
1909 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
1910 * of "bmap").
1912 static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
1914 isl_int *t = bmap->div[a];
1915 bmap->div[a] = bmap->div[b];
1916 bmap->div[b] = t;
1919 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
1920 * div definitions accordingly.
1922 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
1924 int i;
1925 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
1927 swap_div(bmap, a, b);
1929 for (i = 0; i < bmap->n_eq; ++i)
1930 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
1932 for (i = 0; i < bmap->n_ineq; ++i)
1933 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
1935 for (i = 0; i < bmap->n_div; ++i)
1936 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
1937 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1940 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
1941 * div definitions accordingly.
1943 void isl_basic_set_swap_div(__isl_keep isl_basic_set *bset, int a, int b)
1945 isl_basic_map_swap_div(bset, a, b);
1948 /* Eliminate the specified n dimensions starting at first from the
1949 * constraints, without removing the dimensions from the space.
1950 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1952 __isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
1953 enum isl_dim_type type, unsigned first, unsigned n)
1955 int i;
1957 if (!map)
1958 return NULL;
1959 if (n == 0)
1960 return map;
1962 if (first + n > isl_map_dim(map, type) || first + n < first)
1963 isl_die(map->ctx, isl_error_invalid,
1964 "index out of bounds", goto error);
1966 map = isl_map_cow(map);
1967 if (!map)
1968 return NULL;
1970 for (i = 0; i < map->n; ++i) {
1971 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
1972 if (!map->p[i])
1973 goto error;
1975 return map;
1976 error:
1977 isl_map_free(map);
1978 return NULL;
1981 /* Eliminate the specified n dimensions starting at first from the
1982 * constraints, without removing the dimensions from the space.
1983 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1985 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
1986 enum isl_dim_type type, unsigned first, unsigned n)
1988 return set_from_map(isl_map_eliminate(set_to_map(set), type, first, n));
1991 /* Eliminate the specified n dimensions starting at first from the
1992 * constraints, without removing the dimensions from the space.
1993 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1995 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
1996 unsigned first, unsigned n)
1998 return isl_set_eliminate(set, isl_dim_set, first, n);
2001 __isl_give isl_basic_map *isl_basic_map_remove_divs(
2002 __isl_take isl_basic_map *bmap)
2004 if (!bmap)
2005 return NULL;
2006 bmap = isl_basic_map_eliminate_vars(bmap,
2007 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
2008 if (!bmap)
2009 return NULL;
2010 bmap->n_div = 0;
2011 return isl_basic_map_finalize(bmap);
2014 __isl_give isl_basic_set *isl_basic_set_remove_divs(
2015 __isl_take isl_basic_set *bset)
2017 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset)));
2020 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
2022 int i;
2024 if (!map)
2025 return NULL;
2026 if (map->n == 0)
2027 return map;
2029 map = isl_map_cow(map);
2030 if (!map)
2031 return NULL;
2033 for (i = 0; i < map->n; ++i) {
2034 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
2035 if (!map->p[i])
2036 goto error;
2038 return map;
2039 error:
2040 isl_map_free(map);
2041 return NULL;
2044 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
2046 return isl_map_remove_divs(set);
2049 struct isl_basic_map *isl_basic_map_remove_dims(struct isl_basic_map *bmap,
2050 enum isl_dim_type type, unsigned first, unsigned n)
2052 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2053 return isl_basic_map_free(bmap);
2054 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2055 return bmap;
2056 bmap = isl_basic_map_eliminate_vars(bmap,
2057 isl_basic_map_offset(bmap, type) - 1 + first, n);
2058 if (!bmap)
2059 return bmap;
2060 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
2061 return bmap;
2062 bmap = isl_basic_map_drop(bmap, type, first, n);
2063 return bmap;
2066 /* Return true if the definition of the given div (recursively) involves
2067 * any of the given variables.
2069 static isl_bool div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
2070 unsigned first, unsigned n)
2072 int i;
2073 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2075 if (isl_int_is_zero(bmap->div[div][0]))
2076 return isl_bool_false;
2077 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
2078 return isl_bool_true;
2080 for (i = bmap->n_div - 1; i >= 0; --i) {
2081 isl_bool involves;
2083 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2084 continue;
2085 involves = div_involves_vars(bmap, i, first, n);
2086 if (involves < 0 || involves)
2087 return involves;
2090 return isl_bool_false;
2093 /* Try and add a lower and/or upper bound on "div" to "bmap"
2094 * based on inequality "i".
2095 * "total" is the total number of variables (excluding the divs).
2096 * "v" is a temporary object that can be used during the calculations.
2097 * If "lb" is set, then a lower bound should be constructed.
2098 * If "ub" is set, then an upper bound should be constructed.
2100 * The calling function has already checked that the inequality does not
2101 * reference "div", but we still need to check that the inequality is
2102 * of the right form. We'll consider the case where we want to construct
2103 * a lower bound. The construction of upper bounds is similar.
2105 * Let "div" be of the form
2107 * q = floor((a + f(x))/d)
2109 * We essentially check if constraint "i" is of the form
2111 * b + f(x) >= 0
2113 * so that we can use it to derive a lower bound on "div".
2114 * However, we allow a slightly more general form
2116 * b + g(x) >= 0
2118 * with the condition that the coefficients of g(x) - f(x) are all
2119 * divisible by d.
2120 * Rewriting this constraint as
2122 * 0 >= -b - g(x)
2124 * adding a + f(x) to both sides and dividing by d, we obtain
2126 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2128 * Taking the floor on both sides, we obtain
2130 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2132 * or
2134 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2136 * In the case of an upper bound, we construct the constraint
2138 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2141 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2142 __isl_take isl_basic_map *bmap, int div, int i,
2143 unsigned total, isl_int v, int lb, int ub)
2145 int j;
2147 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2148 if (lb) {
2149 isl_int_sub(v, bmap->ineq[i][1 + j],
2150 bmap->div[div][1 + 1 + j]);
2151 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2153 if (ub) {
2154 isl_int_add(v, bmap->ineq[i][1 + j],
2155 bmap->div[div][1 + 1 + j]);
2156 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2159 if (!lb && !ub)
2160 return bmap;
2162 bmap = isl_basic_map_cow(bmap);
2163 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2164 if (lb) {
2165 int k = isl_basic_map_alloc_inequality(bmap);
2166 if (k < 0)
2167 goto error;
2168 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2169 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2170 bmap->div[div][1 + j]);
2171 isl_int_cdiv_q(bmap->ineq[k][j],
2172 bmap->ineq[k][j], bmap->div[div][0]);
2174 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2176 if (ub) {
2177 int k = isl_basic_map_alloc_inequality(bmap);
2178 if (k < 0)
2179 goto error;
2180 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2181 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2182 bmap->div[div][1 + j]);
2183 isl_int_fdiv_q(bmap->ineq[k][j],
2184 bmap->ineq[k][j], bmap->div[div][0]);
2186 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2189 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2190 return bmap;
2191 error:
2192 isl_basic_map_free(bmap);
2193 return NULL;
2196 /* This function is called right before "div" is eliminated from "bmap"
2197 * using Fourier-Motzkin.
2198 * Look through the constraints of "bmap" for constraints on the argument
2199 * of the integer division and use them to construct constraints on the
2200 * integer division itself. These constraints can then be combined
2201 * during the Fourier-Motzkin elimination.
2202 * Note that it is only useful to introduce lower bounds on "div"
2203 * if "bmap" already contains upper bounds on "div" as the newly
2204 * introduce lower bounds can then be combined with the pre-existing
2205 * upper bounds. Similarly for upper bounds.
2206 * We therefore first check if "bmap" contains any lower and/or upper bounds
2207 * on "div".
2209 * It is interesting to note that the introduction of these constraints
2210 * can indeed lead to more accurate results, even when compared to
2211 * deriving constraints on the argument of "div" from constraints on "div".
2212 * Consider, for example, the set
2214 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2216 * The second constraint can be rewritten as
2218 * 2 * [(-i-2j+3)/4] + k >= 0
2220 * from which we can derive
2222 * -i - 2j + 3 >= -2k
2224 * or
2226 * i + 2j <= 3 + 2k
2228 * Combined with the first constraint, we obtain
2230 * -3 <= 3 + 2k or k >= -3
2232 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2233 * the first constraint, we obtain
2235 * [(i + 2j)/4] >= [-3/4] = -1
2237 * Combining this constraint with the second constraint, we obtain
2239 * k >= -2
2241 static __isl_give isl_basic_map *insert_bounds_on_div(
2242 __isl_take isl_basic_map *bmap, int div)
2244 int i;
2245 int check_lb, check_ub;
2246 isl_int v;
2247 unsigned total;
2249 if (!bmap)
2250 return NULL;
2252 if (isl_int_is_zero(bmap->div[div][0]))
2253 return bmap;
2255 total = isl_space_dim(bmap->dim, isl_dim_all);
2257 check_lb = 0;
2258 check_ub = 0;
2259 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
2260 int s = isl_int_sgn(bmap->ineq[i][1 + total + div]);
2261 if (s > 0)
2262 check_ub = 1;
2263 if (s < 0)
2264 check_lb = 1;
2267 if (!check_lb && !check_ub)
2268 return bmap;
2270 isl_int_init(v);
2272 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
2273 if (!isl_int_is_zero(bmap->ineq[i][1 + total + div]))
2274 continue;
2276 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, total, v,
2277 check_lb, check_ub);
2280 isl_int_clear(v);
2282 return bmap;
2285 /* Remove all divs (recursively) involving any of the given dimensions
2286 * in their definitions.
2288 __isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
2289 __isl_take isl_basic_map *bmap,
2290 enum isl_dim_type type, unsigned first, unsigned n)
2292 int i;
2294 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2295 return isl_basic_map_free(bmap);
2296 first += isl_basic_map_offset(bmap, type);
2298 for (i = bmap->n_div - 1; i >= 0; --i) {
2299 isl_bool involves;
2301 involves = div_involves_vars(bmap, i, first, n);
2302 if (involves < 0)
2303 return isl_basic_map_free(bmap);
2304 if (!involves)
2305 continue;
2306 bmap = insert_bounds_on_div(bmap, i);
2307 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2308 if (!bmap)
2309 return NULL;
2310 i = bmap->n_div;
2313 return bmap;
2316 __isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
2317 __isl_take isl_basic_set *bset,
2318 enum isl_dim_type type, unsigned first, unsigned n)
2320 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
2323 __isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
2324 enum isl_dim_type type, unsigned first, unsigned n)
2326 int i;
2328 if (!map)
2329 return NULL;
2330 if (map->n == 0)
2331 return map;
2333 map = isl_map_cow(map);
2334 if (!map)
2335 return NULL;
2337 for (i = 0; i < map->n; ++i) {
2338 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2339 type, first, n);
2340 if (!map->p[i])
2341 goto error;
2343 return map;
2344 error:
2345 isl_map_free(map);
2346 return NULL;
2349 __isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2350 enum isl_dim_type type, unsigned first, unsigned n)
2352 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set),
2353 type, first, n));
2356 /* Does the description of "bmap" depend on the specified dimensions?
2357 * We also check whether the dimensions appear in any of the div definitions.
2358 * In principle there is no need for this check. If the dimensions appear
2359 * in a div definition, they also appear in the defining constraints of that
2360 * div.
2362 isl_bool isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
2363 enum isl_dim_type type, unsigned first, unsigned n)
2365 int i;
2367 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2368 return isl_bool_error;
2370 first += isl_basic_map_offset(bmap, type);
2371 for (i = 0; i < bmap->n_eq; ++i)
2372 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
2373 return isl_bool_true;
2374 for (i = 0; i < bmap->n_ineq; ++i)
2375 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
2376 return isl_bool_true;
2377 for (i = 0; i < bmap->n_div; ++i) {
2378 if (isl_int_is_zero(bmap->div[i][0]))
2379 continue;
2380 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
2381 return isl_bool_true;
2384 return isl_bool_false;
2387 isl_bool isl_map_involves_dims(__isl_keep isl_map *map,
2388 enum isl_dim_type type, unsigned first, unsigned n)
2390 int i;
2392 if (!map)
2393 return isl_bool_error;
2395 if (first + n > isl_map_dim(map, type))
2396 isl_die(map->ctx, isl_error_invalid,
2397 "index out of bounds", return isl_bool_error);
2399 for (i = 0; i < map->n; ++i) {
2400 isl_bool involves = isl_basic_map_involves_dims(map->p[i],
2401 type, first, n);
2402 if (involves < 0 || involves)
2403 return involves;
2406 return isl_bool_false;
2409 isl_bool isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
2410 enum isl_dim_type type, unsigned first, unsigned n)
2412 return isl_basic_map_involves_dims(bset, type, first, n);
2415 isl_bool isl_set_involves_dims(__isl_keep isl_set *set,
2416 enum isl_dim_type type, unsigned first, unsigned n)
2418 return isl_map_involves_dims(set, type, first, n);
2421 /* Drop all constraints in bmap that involve any of the dimensions
2422 * first to first+n-1.
2424 static __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving(
2425 __isl_take isl_basic_map *bmap, unsigned first, unsigned n)
2427 int i;
2429 if (n == 0)
2430 return bmap;
2432 bmap = isl_basic_map_cow(bmap);
2434 if (!bmap)
2435 return NULL;
2437 for (i = bmap->n_eq - 1; i >= 0; --i) {
2438 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) == -1)
2439 continue;
2440 isl_basic_map_drop_equality(bmap, i);
2443 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2444 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) == -1)
2445 continue;
2446 isl_basic_map_drop_inequality(bmap, i);
2449 bmap = isl_basic_map_add_known_div_constraints(bmap);
2450 return bmap;
2453 /* Drop all constraints in bset that involve any of the dimensions
2454 * first to first+n-1.
2456 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving(
2457 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2459 return isl_basic_map_drop_constraints_involving(bset, first, n);
2462 /* Drop all constraints in bmap that do not involve any of the dimensions
2463 * first to first + n - 1 of the given type.
2465 __isl_give isl_basic_map *isl_basic_map_drop_constraints_not_involving_dims(
2466 __isl_take isl_basic_map *bmap,
2467 enum isl_dim_type type, unsigned first, unsigned n)
2469 int i;
2471 if (n == 0) {
2472 isl_space *space = isl_basic_map_get_space(bmap);
2473 isl_basic_map_free(bmap);
2474 return isl_basic_map_universe(space);
2476 bmap = isl_basic_map_cow(bmap);
2477 if (!bmap)
2478 return NULL;
2480 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2481 return isl_basic_map_free(bmap);
2483 first += isl_basic_map_offset(bmap, type) - 1;
2485 for (i = bmap->n_eq - 1; i >= 0; --i) {
2486 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) != -1)
2487 continue;
2488 isl_basic_map_drop_equality(bmap, i);
2491 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2492 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) != -1)
2493 continue;
2494 isl_basic_map_drop_inequality(bmap, i);
2497 bmap = isl_basic_map_add_known_div_constraints(bmap);
2498 return bmap;
2501 /* Drop all constraints in bset that do not involve any of the dimensions
2502 * first to first + n - 1 of the given type.
2504 __isl_give isl_basic_set *isl_basic_set_drop_constraints_not_involving_dims(
2505 __isl_take isl_basic_set *bset,
2506 enum isl_dim_type type, unsigned first, unsigned n)
2508 return isl_basic_map_drop_constraints_not_involving_dims(bset,
2509 type, first, n);
2512 /* Drop all constraints in bmap that involve any of the dimensions
2513 * first to first + n - 1 of the given type.
2515 __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving_dims(
2516 __isl_take isl_basic_map *bmap,
2517 enum isl_dim_type type, unsigned first, unsigned n)
2519 if (!bmap)
2520 return NULL;
2521 if (n == 0)
2522 return bmap;
2524 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2525 return isl_basic_map_free(bmap);
2527 bmap = isl_basic_map_remove_divs_involving_dims(bmap, type, first, n);
2528 first += isl_basic_map_offset(bmap, type) - 1;
2529 return isl_basic_map_drop_constraints_involving(bmap, first, n);
2532 /* Drop all constraints in bset that involve any of the dimensions
2533 * first to first + n - 1 of the given type.
2535 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving_dims(
2536 __isl_take isl_basic_set *bset,
2537 enum isl_dim_type type, unsigned first, unsigned n)
2539 return isl_basic_map_drop_constraints_involving_dims(bset,
2540 type, first, n);
2543 /* Drop constraints from "map" by applying "drop" to each basic map.
2545 static __isl_give isl_map *drop_constraints(__isl_take isl_map *map,
2546 enum isl_dim_type type, unsigned first, unsigned n,
2547 __isl_give isl_basic_map *(*drop)(__isl_take isl_basic_map *bmap,
2548 enum isl_dim_type type, unsigned first, unsigned n))
2550 int i;
2551 unsigned dim;
2553 if (!map)
2554 return NULL;
2556 dim = isl_map_dim(map, type);
2557 if (first + n > dim || first + n < first)
2558 isl_die(isl_map_get_ctx(map), isl_error_invalid,
2559 "index out of bounds", return isl_map_free(map));
2561 map = isl_map_cow(map);
2562 if (!map)
2563 return NULL;
2565 for (i = 0; i < map->n; ++i) {
2566 map->p[i] = drop(map->p[i], type, first, n);
2567 if (!map->p[i])
2568 return isl_map_free(map);
2571 if (map->n > 1)
2572 ISL_F_CLR(map, ISL_MAP_DISJOINT);
2574 return map;
2577 /* Drop all constraints in map that involve any of the dimensions
2578 * first to first + n - 1 of the given type.
2580 __isl_give isl_map *isl_map_drop_constraints_involving_dims(
2581 __isl_take isl_map *map,
2582 enum isl_dim_type type, unsigned first, unsigned n)
2584 if (n == 0)
2585 return map;
2586 return drop_constraints(map, type, first, n,
2587 &isl_basic_map_drop_constraints_involving_dims);
2590 /* Drop all constraints in "map" that do not involve any of the dimensions
2591 * first to first + n - 1 of the given type.
2593 __isl_give isl_map *isl_map_drop_constraints_not_involving_dims(
2594 __isl_take isl_map *map,
2595 enum isl_dim_type type, unsigned first, unsigned n)
2597 if (n == 0) {
2598 isl_space *space = isl_map_get_space(map);
2599 isl_map_free(map);
2600 return isl_map_universe(space);
2602 return drop_constraints(map, type, first, n,
2603 &isl_basic_map_drop_constraints_not_involving_dims);
2606 /* Drop all constraints in set that involve any of the dimensions
2607 * first to first + n - 1 of the given type.
2609 __isl_give isl_set *isl_set_drop_constraints_involving_dims(
2610 __isl_take isl_set *set,
2611 enum isl_dim_type type, unsigned first, unsigned n)
2613 return isl_map_drop_constraints_involving_dims(set, type, first, n);
2616 /* Drop all constraints in "set" that do not involve any of the dimensions
2617 * first to first + n - 1 of the given type.
2619 __isl_give isl_set *isl_set_drop_constraints_not_involving_dims(
2620 __isl_take isl_set *set,
2621 enum isl_dim_type type, unsigned first, unsigned n)
2623 return isl_map_drop_constraints_not_involving_dims(set, type, first, n);
2626 /* Does local variable "div" of "bmap" have a complete explicit representation?
2627 * Having a complete explicit representation requires not only
2628 * an explicit representation, but also that all local variables
2629 * that appear in this explicit representation in turn have
2630 * a complete explicit representation.
2632 isl_bool isl_basic_map_div_is_known(__isl_keep isl_basic_map *bmap, int div)
2634 int i;
2635 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2636 isl_bool marked;
2638 marked = isl_basic_map_div_is_marked_unknown(bmap, div);
2639 if (marked < 0 || marked)
2640 return isl_bool_not(marked);
2642 for (i = bmap->n_div - 1; i >= 0; --i) {
2643 isl_bool known;
2645 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2646 continue;
2647 known = isl_basic_map_div_is_known(bmap, i);
2648 if (known < 0 || !known)
2649 return known;
2652 return isl_bool_true;
2655 /* Does local variable "div" of "bset" have a complete explicit representation?
2657 isl_bool isl_basic_set_div_is_known(__isl_keep isl_basic_set *bset, int div)
2659 return isl_basic_map_div_is_known(bset, div);
2662 /* Remove all divs that are unknown or defined in terms of unknown divs.
2664 __isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
2665 __isl_take isl_basic_map *bmap)
2667 int i;
2669 if (!bmap)
2670 return NULL;
2672 for (i = bmap->n_div - 1; i >= 0; --i) {
2673 if (isl_basic_map_div_is_known(bmap, i))
2674 continue;
2675 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2676 if (!bmap)
2677 return NULL;
2678 i = bmap->n_div;
2681 return bmap;
2684 /* Remove all divs that are unknown or defined in terms of unknown divs.
2686 __isl_give isl_basic_set *isl_basic_set_remove_unknown_divs(
2687 __isl_take isl_basic_set *bset)
2689 return isl_basic_map_remove_unknown_divs(bset);
2692 __isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
2694 int i;
2696 if (!map)
2697 return NULL;
2698 if (map->n == 0)
2699 return map;
2701 map = isl_map_cow(map);
2702 if (!map)
2703 return NULL;
2705 for (i = 0; i < map->n; ++i) {
2706 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
2707 if (!map->p[i])
2708 goto error;
2710 return map;
2711 error:
2712 isl_map_free(map);
2713 return NULL;
2716 __isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
2718 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set)));
2721 __isl_give isl_basic_set *isl_basic_set_remove_dims(
2722 __isl_take isl_basic_set *bset,
2723 enum isl_dim_type type, unsigned first, unsigned n)
2725 isl_basic_map *bmap = bset_to_bmap(bset);
2726 bmap = isl_basic_map_remove_dims(bmap, type, first, n);
2727 return bset_from_bmap(bmap);
2730 struct isl_map *isl_map_remove_dims(struct isl_map *map,
2731 enum isl_dim_type type, unsigned first, unsigned n)
2733 int i;
2735 if (n == 0)
2736 return map;
2738 map = isl_map_cow(map);
2739 if (!map)
2740 return NULL;
2741 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
2743 for (i = 0; i < map->n; ++i) {
2744 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
2745 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
2746 if (!map->p[i])
2747 goto error;
2749 map = isl_map_drop(map, type, first, n);
2750 return map;
2751 error:
2752 isl_map_free(map);
2753 return NULL;
2756 __isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
2757 enum isl_dim_type type, unsigned first, unsigned n)
2759 return set_from_map(isl_map_remove_dims(set_to_map(bset),
2760 type, first, n));
2763 /* Project out n inputs starting at first using Fourier-Motzkin */
2764 struct isl_map *isl_map_remove_inputs(struct isl_map *map,
2765 unsigned first, unsigned n)
2767 return isl_map_remove_dims(map, isl_dim_in, first, n);
2770 static void dump_term(struct isl_basic_map *bmap,
2771 isl_int c, int pos, FILE *out)
2773 const char *name;
2774 unsigned in = isl_basic_map_n_in(bmap);
2775 unsigned dim = in + isl_basic_map_n_out(bmap);
2776 unsigned nparam = isl_basic_map_n_param(bmap);
2777 if (!pos)
2778 isl_int_print(out, c, 0);
2779 else {
2780 if (!isl_int_is_one(c))
2781 isl_int_print(out, c, 0);
2782 if (pos < 1 + nparam) {
2783 name = isl_space_get_dim_name(bmap->dim,
2784 isl_dim_param, pos - 1);
2785 if (name)
2786 fprintf(out, "%s", name);
2787 else
2788 fprintf(out, "p%d", pos - 1);
2789 } else if (pos < 1 + nparam + in)
2790 fprintf(out, "i%d", pos - 1 - nparam);
2791 else if (pos < 1 + nparam + dim)
2792 fprintf(out, "o%d", pos - 1 - nparam - in);
2793 else
2794 fprintf(out, "e%d", pos - 1 - nparam - dim);
2798 static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
2799 int sign, FILE *out)
2801 int i;
2802 int first;
2803 unsigned len = 1 + isl_basic_map_total_dim(bmap);
2804 isl_int v;
2806 isl_int_init(v);
2807 for (i = 0, first = 1; i < len; ++i) {
2808 if (isl_int_sgn(c[i]) * sign <= 0)
2809 continue;
2810 if (!first)
2811 fprintf(out, " + ");
2812 first = 0;
2813 isl_int_abs(v, c[i]);
2814 dump_term(bmap, v, i, out);
2816 isl_int_clear(v);
2817 if (first)
2818 fprintf(out, "0");
2821 static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
2822 const char *op, FILE *out, int indent)
2824 int i;
2826 fprintf(out, "%*s", indent, "");
2828 dump_constraint_sign(bmap, c, 1, out);
2829 fprintf(out, " %s ", op);
2830 dump_constraint_sign(bmap, c, -1, out);
2832 fprintf(out, "\n");
2834 for (i = bmap->n_div; i < bmap->extra; ++i) {
2835 if (isl_int_is_zero(c[1+isl_space_dim(bmap->dim, isl_dim_all)+i]))
2836 continue;
2837 fprintf(out, "%*s", indent, "");
2838 fprintf(out, "ERROR: unused div coefficient not zero\n");
2839 abort();
2843 static void dump_constraints(struct isl_basic_map *bmap,
2844 isl_int **c, unsigned n,
2845 const char *op, FILE *out, int indent)
2847 int i;
2849 for (i = 0; i < n; ++i)
2850 dump_constraint(bmap, c[i], op, out, indent);
2853 static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
2855 int j;
2856 int first = 1;
2857 unsigned total = isl_basic_map_total_dim(bmap);
2859 for (j = 0; j < 1 + total; ++j) {
2860 if (isl_int_is_zero(exp[j]))
2861 continue;
2862 if (!first && isl_int_is_pos(exp[j]))
2863 fprintf(out, "+");
2864 dump_term(bmap, exp[j], j, out);
2865 first = 0;
2869 static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
2871 int i;
2873 dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
2874 dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
2876 for (i = 0; i < bmap->n_div; ++i) {
2877 fprintf(out, "%*s", indent, "");
2878 fprintf(out, "e%d = [(", i);
2879 dump_affine(bmap, bmap->div[i]+1, out);
2880 fprintf(out, ")/");
2881 isl_int_print(out, bmap->div[i][0], 0);
2882 fprintf(out, "]\n");
2886 void isl_basic_set_print_internal(struct isl_basic_set *bset,
2887 FILE *out, int indent)
2889 if (!bset) {
2890 fprintf(out, "null basic set\n");
2891 return;
2894 fprintf(out, "%*s", indent, "");
2895 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
2896 bset->ref, bset->dim->nparam, bset->dim->n_out,
2897 bset->extra, bset->flags);
2898 dump(bset_to_bmap(bset), out, indent);
2901 void isl_basic_map_print_internal(struct isl_basic_map *bmap,
2902 FILE *out, int indent)
2904 if (!bmap) {
2905 fprintf(out, "null basic map\n");
2906 return;
2909 fprintf(out, "%*s", indent, "");
2910 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
2911 "flags: %x, n_name: %d\n",
2912 bmap->ref,
2913 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
2914 bmap->extra, bmap->flags, bmap->dim->n_id);
2915 dump(bmap, out, indent);
2918 int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
2920 unsigned total;
2921 if (!bmap)
2922 return -1;
2923 total = isl_basic_map_total_dim(bmap);
2924 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
2925 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
2926 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
2927 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2928 return 0;
2931 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *space, int n,
2932 unsigned flags)
2934 if (!space)
2935 return NULL;
2936 if (isl_space_dim(space, isl_dim_in) != 0)
2937 isl_die(isl_space_get_ctx(space), isl_error_invalid,
2938 "set cannot have input dimensions", goto error);
2939 return isl_map_alloc_space(space, n, flags);
2940 error:
2941 isl_space_free(space);
2942 return NULL;
2945 struct isl_set *isl_set_alloc(struct isl_ctx *ctx,
2946 unsigned nparam, unsigned dim, int n, unsigned flags)
2948 struct isl_set *set;
2949 isl_space *dims;
2951 dims = isl_space_alloc(ctx, nparam, 0, dim);
2952 if (!dims)
2953 return NULL;
2955 set = isl_set_alloc_space(dims, n, flags);
2956 return set;
2959 /* Make sure "map" has room for at least "n" more basic maps.
2961 struct isl_map *isl_map_grow(struct isl_map *map, int n)
2963 int i;
2964 struct isl_map *grown = NULL;
2966 if (!map)
2967 return NULL;
2968 isl_assert(map->ctx, n >= 0, goto error);
2969 if (map->n + n <= map->size)
2970 return map;
2971 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
2972 if (!grown)
2973 goto error;
2974 for (i = 0; i < map->n; ++i) {
2975 grown->p[i] = isl_basic_map_copy(map->p[i]);
2976 if (!grown->p[i])
2977 goto error;
2978 grown->n++;
2980 isl_map_free(map);
2981 return grown;
2982 error:
2983 isl_map_free(grown);
2984 isl_map_free(map);
2985 return NULL;
2988 /* Make sure "set" has room for at least "n" more basic sets.
2990 struct isl_set *isl_set_grow(struct isl_set *set, int n)
2992 return set_from_map(isl_map_grow(set_to_map(set), n));
2995 struct isl_set *isl_set_dup(struct isl_set *set)
2997 int i;
2998 struct isl_set *dup;
3000 if (!set)
3001 return NULL;
3003 dup = isl_set_alloc_space(isl_space_copy(set->dim), set->n, set->flags);
3004 if (!dup)
3005 return NULL;
3006 for (i = 0; i < set->n; ++i)
3007 dup = isl_set_add_basic_set(dup, isl_basic_set_copy(set->p[i]));
3008 return dup;
3011 struct isl_set *isl_set_from_basic_set(struct isl_basic_set *bset)
3013 return isl_map_from_basic_map(bset);
3016 struct isl_map *isl_map_from_basic_map(struct isl_basic_map *bmap)
3018 struct isl_map *map;
3020 if (!bmap)
3021 return NULL;
3023 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
3024 return isl_map_add_basic_map(map, bmap);
3027 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
3028 __isl_take isl_basic_set *bset)
3030 return set_from_map(isl_map_add_basic_map(set_to_map(set),
3031 bset_to_bmap(bset)));
3034 __isl_null isl_set *isl_set_free(__isl_take isl_set *set)
3036 return isl_map_free(set);
3039 void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
3041 int i;
3043 if (!set) {
3044 fprintf(out, "null set\n");
3045 return;
3048 fprintf(out, "%*s", indent, "");
3049 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3050 set->ref, set->n, set->dim->nparam, set->dim->n_out,
3051 set->flags);
3052 for (i = 0; i < set->n; ++i) {
3053 fprintf(out, "%*s", indent, "");
3054 fprintf(out, "basic set %d:\n", i);
3055 isl_basic_set_print_internal(set->p[i], out, indent+4);
3059 void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
3061 int i;
3063 if (!map) {
3064 fprintf(out, "null map\n");
3065 return;
3068 fprintf(out, "%*s", indent, "");
3069 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3070 "flags: %x, n_name: %d\n",
3071 map->ref, map->n, map->dim->nparam, map->dim->n_in,
3072 map->dim->n_out, map->flags, map->dim->n_id);
3073 for (i = 0; i < map->n; ++i) {
3074 fprintf(out, "%*s", indent, "");
3075 fprintf(out, "basic map %d:\n", i);
3076 isl_basic_map_print_internal(map->p[i], out, indent+4);
3080 struct isl_basic_map *isl_basic_map_intersect_domain(
3081 struct isl_basic_map *bmap, struct isl_basic_set *bset)
3083 struct isl_basic_map *bmap_domain;
3085 if (!bmap || !bset)
3086 goto error;
3088 isl_assert(bset->ctx, isl_space_match(bmap->dim, isl_dim_param,
3089 bset->dim, isl_dim_param), goto error);
3091 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
3092 isl_assert(bset->ctx,
3093 isl_basic_map_compatible_domain(bmap, bset), goto error);
3095 bmap = isl_basic_map_cow(bmap);
3096 if (!bmap)
3097 goto error;
3098 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3099 bset->n_div, bset->n_eq, bset->n_ineq);
3100 bmap_domain = isl_basic_map_from_domain(bset);
3101 bmap = add_constraints(bmap, bmap_domain, 0, 0);
3103 bmap = isl_basic_map_simplify(bmap);
3104 return isl_basic_map_finalize(bmap);
3105 error:
3106 isl_basic_map_free(bmap);
3107 isl_basic_set_free(bset);
3108 return NULL;
3111 /* Check that the space of "bset" is the same as that of the range of "bmap".
3113 static isl_stat isl_basic_map_check_compatible_range(
3114 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3116 isl_bool ok;
3118 ok = isl_basic_map_compatible_range(bmap, bset);
3119 if (ok < 0)
3120 return isl_stat_error;
3121 if (!ok)
3122 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3123 "incompatible spaces", return isl_stat_error);
3125 return isl_stat_ok;
3128 struct isl_basic_map *isl_basic_map_intersect_range(
3129 struct isl_basic_map *bmap, struct isl_basic_set *bset)
3131 struct isl_basic_map *bmap_range;
3133 if (!bmap || !bset)
3134 goto error;
3136 isl_assert(bset->ctx, isl_space_match(bmap->dim, isl_dim_param,
3137 bset->dim, isl_dim_param), goto error);
3139 if (isl_space_dim(bset->dim, isl_dim_set) != 0 &&
3140 isl_basic_map_check_compatible_range(bmap, bset) < 0)
3141 goto error;
3143 if (isl_basic_set_plain_is_universe(bset)) {
3144 isl_basic_set_free(bset);
3145 return bmap;
3148 bmap = isl_basic_map_cow(bmap);
3149 if (!bmap)
3150 goto error;
3151 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3152 bset->n_div, bset->n_eq, bset->n_ineq);
3153 bmap_range = bset_to_bmap(bset);
3154 bmap = add_constraints(bmap, bmap_range, 0, 0);
3156 bmap = isl_basic_map_simplify(bmap);
3157 return isl_basic_map_finalize(bmap);
3158 error:
3159 isl_basic_map_free(bmap);
3160 isl_basic_set_free(bset);
3161 return NULL;
3164 isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
3165 __isl_keep isl_vec *vec)
3167 int i;
3168 unsigned total;
3169 isl_int s;
3171 if (!bmap || !vec)
3172 return isl_bool_error;
3174 total = 1 + isl_basic_map_total_dim(bmap);
3175 if (total != vec->size)
3176 return isl_bool_false;
3178 isl_int_init(s);
3180 for (i = 0; i < bmap->n_eq; ++i) {
3181 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
3182 if (!isl_int_is_zero(s)) {
3183 isl_int_clear(s);
3184 return isl_bool_false;
3188 for (i = 0; i < bmap->n_ineq; ++i) {
3189 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
3190 if (isl_int_is_neg(s)) {
3191 isl_int_clear(s);
3192 return isl_bool_false;
3196 isl_int_clear(s);
3198 return isl_bool_true;
3201 isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
3202 __isl_keep isl_vec *vec)
3204 return isl_basic_map_contains(bset_to_bmap(bset), vec);
3207 struct isl_basic_map *isl_basic_map_intersect(
3208 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
3210 struct isl_vec *sample = NULL;
3212 if (!bmap1 || !bmap2)
3213 goto error;
3215 isl_assert(bmap1->ctx, isl_space_match(bmap1->dim, isl_dim_param,
3216 bmap2->dim, isl_dim_param), goto error);
3217 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
3218 isl_space_dim(bmap1->dim, isl_dim_param) &&
3219 isl_space_dim(bmap2->dim, isl_dim_all) !=
3220 isl_space_dim(bmap2->dim, isl_dim_param))
3221 return isl_basic_map_intersect(bmap2, bmap1);
3223 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
3224 isl_space_dim(bmap2->dim, isl_dim_param))
3225 isl_assert(bmap1->ctx,
3226 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
3228 if (isl_basic_map_plain_is_empty(bmap1)) {
3229 isl_basic_map_free(bmap2);
3230 return bmap1;
3232 if (isl_basic_map_plain_is_empty(bmap2)) {
3233 isl_basic_map_free(bmap1);
3234 return bmap2;
3237 if (bmap1->sample &&
3238 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
3239 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
3240 sample = isl_vec_copy(bmap1->sample);
3241 else if (bmap2->sample &&
3242 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
3243 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
3244 sample = isl_vec_copy(bmap2->sample);
3246 bmap1 = isl_basic_map_cow(bmap1);
3247 if (!bmap1)
3248 goto error;
3249 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
3250 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
3251 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
3253 if (!bmap1)
3254 isl_vec_free(sample);
3255 else if (sample) {
3256 isl_vec_free(bmap1->sample);
3257 bmap1->sample = sample;
3260 bmap1 = isl_basic_map_simplify(bmap1);
3261 return isl_basic_map_finalize(bmap1);
3262 error:
3263 if (sample)
3264 isl_vec_free(sample);
3265 isl_basic_map_free(bmap1);
3266 isl_basic_map_free(bmap2);
3267 return NULL;
3270 struct isl_basic_set *isl_basic_set_intersect(
3271 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
3273 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1),
3274 bset_to_bmap(bset2)));
3277 __isl_give isl_basic_set *isl_basic_set_intersect_params(
3278 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3280 return isl_basic_set_intersect(bset1, bset2);
3283 /* Special case of isl_map_intersect, where both map1 and map2
3284 * are convex, without any divs and such that either map1 or map2
3285 * contains a single constraint. This constraint is then simply
3286 * added to the other map.
3288 static __isl_give isl_map *map_intersect_add_constraint(
3289 __isl_take isl_map *map1, __isl_take isl_map *map2)
3291 isl_assert(map1->ctx, map1->n == 1, goto error);
3292 isl_assert(map2->ctx, map1->n == 1, goto error);
3293 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
3294 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
3296 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
3297 return isl_map_intersect(map2, map1);
3299 isl_assert(map2->ctx,
3300 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1, goto error);
3302 map1 = isl_map_cow(map1);
3303 if (!map1)
3304 goto error;
3305 if (isl_map_plain_is_empty(map1)) {
3306 isl_map_free(map2);
3307 return map1;
3309 map1->p[0] = isl_basic_map_cow(map1->p[0]);
3310 if (map2->p[0]->n_eq == 1)
3311 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
3312 else
3313 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
3314 map2->p[0]->ineq[0]);
3316 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
3317 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
3318 if (!map1->p[0])
3319 goto error;
3321 if (isl_basic_map_plain_is_empty(map1->p[0])) {
3322 isl_basic_map_free(map1->p[0]);
3323 map1->n = 0;
3326 isl_map_free(map2);
3328 return map1;
3329 error:
3330 isl_map_free(map1);
3331 isl_map_free(map2);
3332 return NULL;
3335 /* map2 may be either a parameter domain or a map living in the same
3336 * space as map1.
3338 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3339 __isl_take isl_map *map2)
3341 unsigned flags = 0;
3342 isl_map *result;
3343 int i, j;
3345 if (!map1 || !map2)
3346 goto error;
3348 if ((isl_map_plain_is_empty(map1) ||
3349 isl_map_plain_is_universe(map2)) &&
3350 isl_space_is_equal(map1->dim, map2->dim)) {
3351 isl_map_free(map2);
3352 return map1;
3354 if ((isl_map_plain_is_empty(map2) ||
3355 isl_map_plain_is_universe(map1)) &&
3356 isl_space_is_equal(map1->dim, map2->dim)) {
3357 isl_map_free(map1);
3358 return map2;
3361 if (map1->n == 1 && map2->n == 1 &&
3362 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
3363 isl_space_is_equal(map1->dim, map2->dim) &&
3364 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3365 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3366 return map_intersect_add_constraint(map1, map2);
3368 if (isl_space_dim(map2->dim, isl_dim_all) !=
3369 isl_space_dim(map2->dim, isl_dim_param))
3370 isl_assert(map1->ctx,
3371 isl_space_is_equal(map1->dim, map2->dim), goto error);
3373 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3374 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3375 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3377 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3378 map1->n * map2->n, flags);
3379 if (!result)
3380 goto error;
3381 for (i = 0; i < map1->n; ++i)
3382 for (j = 0; j < map2->n; ++j) {
3383 struct isl_basic_map *part;
3384 part = isl_basic_map_intersect(
3385 isl_basic_map_copy(map1->p[i]),
3386 isl_basic_map_copy(map2->p[j]));
3387 if (isl_basic_map_is_empty(part) < 0)
3388 part = isl_basic_map_free(part);
3389 result = isl_map_add_basic_map(result, part);
3390 if (!result)
3391 goto error;
3393 isl_map_free(map1);
3394 isl_map_free(map2);
3395 return result;
3396 error:
3397 isl_map_free(map1);
3398 isl_map_free(map2);
3399 return NULL;
3402 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3403 __isl_take isl_map *map2)
3405 if (!map1 || !map2)
3406 goto error;
3407 if (!isl_space_is_equal(map1->dim, map2->dim))
3408 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
3409 "spaces don't match", goto error);
3410 return map_intersect_internal(map1, map2);
3411 error:
3412 isl_map_free(map1);
3413 isl_map_free(map2);
3414 return NULL;
3417 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3418 __isl_take isl_map *map2)
3420 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
3423 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
3425 return set_from_map(isl_map_intersect(set_to_map(set1),
3426 set_to_map(set2)));
3429 /* map_intersect_internal accepts intersections
3430 * with parameter domains, so we can just call that function.
3432 static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
3433 __isl_take isl_set *params)
3435 return map_intersect_internal(map, params);
3438 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
3439 __isl_take isl_map *map2)
3441 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
3444 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3445 __isl_take isl_set *params)
3447 return isl_map_intersect_params(set, params);
3450 struct isl_basic_map *isl_basic_map_reverse(struct isl_basic_map *bmap)
3452 isl_space *space;
3453 unsigned pos, n1, n2;
3455 if (!bmap)
3456 return NULL;
3457 bmap = isl_basic_map_cow(bmap);
3458 if (!bmap)
3459 return NULL;
3460 space = isl_space_reverse(isl_space_copy(bmap->dim));
3461 pos = isl_basic_map_offset(bmap, isl_dim_in);
3462 n1 = isl_basic_map_dim(bmap, isl_dim_in);
3463 n2 = isl_basic_map_dim(bmap, isl_dim_out);
3464 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
3465 return isl_basic_map_reset_space(bmap, space);
3468 static __isl_give isl_basic_map *basic_map_space_reset(
3469 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
3471 isl_space *space;
3473 if (!bmap)
3474 return NULL;
3475 if (!isl_space_is_named_or_nested(bmap->dim, type))
3476 return bmap;
3478 space = isl_basic_map_get_space(bmap);
3479 space = isl_space_reset(space, type);
3480 bmap = isl_basic_map_reset_space(bmap, space);
3481 return bmap;
3484 __isl_give isl_basic_map *isl_basic_map_insert_dims(
3485 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3486 unsigned pos, unsigned n)
3488 isl_bool rational;
3489 isl_space *res_dim;
3490 struct isl_basic_map *res;
3491 struct isl_dim_map *dim_map;
3492 unsigned total, off;
3493 enum isl_dim_type t;
3495 if (n == 0)
3496 return basic_map_space_reset(bmap, type);
3498 if (!bmap)
3499 return NULL;
3501 res_dim = isl_space_insert_dims(isl_basic_map_get_space(bmap), type, pos, n);
3503 total = isl_basic_map_total_dim(bmap) + n;
3504 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3505 off = 0;
3506 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3507 if (t != type) {
3508 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3509 } else {
3510 unsigned size = isl_basic_map_dim(bmap, t);
3511 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3512 0, pos, off);
3513 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3514 pos, size - pos, off + pos + n);
3516 off += isl_space_dim(res_dim, t);
3518 isl_dim_map_div(dim_map, bmap, off);
3520 res = isl_basic_map_alloc_space(res_dim,
3521 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3522 rational = isl_basic_map_is_rational(bmap);
3523 if (rational < 0)
3524 res = isl_basic_map_free(res);
3525 if (rational)
3526 res = isl_basic_map_set_rational(res);
3527 if (isl_basic_map_plain_is_empty(bmap)) {
3528 isl_basic_map_free(bmap);
3529 free(dim_map);
3530 return isl_basic_map_set_to_empty(res);
3532 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3533 return isl_basic_map_finalize(res);
3536 __isl_give isl_basic_set *isl_basic_set_insert_dims(
3537 __isl_take isl_basic_set *bset,
3538 enum isl_dim_type type, unsigned pos, unsigned n)
3540 return isl_basic_map_insert_dims(bset, type, pos, n);
3543 __isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
3544 enum isl_dim_type type, unsigned n)
3546 if (!bmap)
3547 return NULL;
3548 return isl_basic_map_insert_dims(bmap, type,
3549 isl_basic_map_dim(bmap, type), n);
3552 __isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
3553 enum isl_dim_type type, unsigned n)
3555 if (!bset)
3556 return NULL;
3557 isl_assert(bset->ctx, type != isl_dim_in, goto error);
3558 return isl_basic_map_add_dims(bset, type, n);
3559 error:
3560 isl_basic_set_free(bset);
3561 return NULL;
3564 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
3565 enum isl_dim_type type)
3567 isl_space *space;
3569 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3570 return map;
3572 space = isl_map_get_space(map);
3573 space = isl_space_reset(space, type);
3574 map = isl_map_reset_space(map, space);
3575 return map;
3578 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3579 enum isl_dim_type type, unsigned pos, unsigned n)
3581 int i;
3583 if (n == 0)
3584 return map_space_reset(map, type);
3586 map = isl_map_cow(map);
3587 if (!map)
3588 return NULL;
3590 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3591 if (!map->dim)
3592 goto error;
3594 for (i = 0; i < map->n; ++i) {
3595 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3596 if (!map->p[i])
3597 goto error;
3600 return map;
3601 error:
3602 isl_map_free(map);
3603 return NULL;
3606 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
3607 enum isl_dim_type type, unsigned pos, unsigned n)
3609 return isl_map_insert_dims(set, type, pos, n);
3612 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
3613 enum isl_dim_type type, unsigned n)
3615 if (!map)
3616 return NULL;
3617 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
3620 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
3621 enum isl_dim_type type, unsigned n)
3623 if (!set)
3624 return NULL;
3625 isl_assert(set->ctx, type != isl_dim_in, goto error);
3626 return set_from_map(isl_map_add_dims(set_to_map(set), type, n));
3627 error:
3628 isl_set_free(set);
3629 return NULL;
3632 __isl_give isl_basic_map *isl_basic_map_move_dims(
3633 __isl_take isl_basic_map *bmap,
3634 enum isl_dim_type dst_type, unsigned dst_pos,
3635 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3637 struct isl_dim_map *dim_map;
3638 struct isl_basic_map *res;
3639 enum isl_dim_type t;
3640 unsigned total, off;
3642 if (!bmap)
3643 return NULL;
3644 if (n == 0)
3645 return bmap;
3647 if (isl_basic_map_check_range(bmap, src_type, src_pos, n) < 0)
3648 return isl_basic_map_free(bmap);
3650 if (dst_type == src_type && dst_pos == src_pos)
3651 return bmap;
3653 isl_assert(bmap->ctx, dst_type != src_type, goto error);
3655 if (pos(bmap->dim, dst_type) + dst_pos ==
3656 pos(bmap->dim, src_type) + src_pos +
3657 ((src_type < dst_type) ? n : 0)) {
3658 bmap = isl_basic_map_cow(bmap);
3659 if (!bmap)
3660 return NULL;
3662 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
3663 src_type, src_pos, n);
3664 if (!bmap->dim)
3665 goto error;
3667 bmap = isl_basic_map_finalize(bmap);
3669 return bmap;
3672 total = isl_basic_map_total_dim(bmap);
3673 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3675 off = 0;
3676 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3677 unsigned size = isl_space_dim(bmap->dim, t);
3678 if (t == dst_type) {
3679 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3680 0, dst_pos, off);
3681 off += dst_pos;
3682 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
3683 src_pos, n, off);
3684 off += n;
3685 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3686 dst_pos, size - dst_pos, off);
3687 off += size - dst_pos;
3688 } else if (t == src_type) {
3689 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3690 0, src_pos, off);
3691 off += src_pos;
3692 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3693 src_pos + n, size - src_pos - n, off);
3694 off += size - src_pos - n;
3695 } else {
3696 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3697 off += size;
3700 isl_dim_map_div(dim_map, bmap, off);
3702 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
3703 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3704 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3705 if (!bmap)
3706 goto error;
3708 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
3709 src_type, src_pos, n);
3710 if (!bmap->dim)
3711 goto error;
3713 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
3714 bmap = isl_basic_map_gauss(bmap, NULL);
3715 bmap = isl_basic_map_finalize(bmap);
3717 return bmap;
3718 error:
3719 isl_basic_map_free(bmap);
3720 return NULL;
3723 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
3724 enum isl_dim_type dst_type, unsigned dst_pos,
3725 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3727 isl_basic_map *bmap = bset_to_bmap(bset);
3728 bmap = isl_basic_map_move_dims(bmap, dst_type, dst_pos,
3729 src_type, src_pos, n);
3730 return bset_from_bmap(bmap);
3733 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
3734 enum isl_dim_type dst_type, unsigned dst_pos,
3735 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3737 if (!set)
3738 return NULL;
3739 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
3740 return set_from_map(isl_map_move_dims(set_to_map(set),
3741 dst_type, dst_pos, src_type, src_pos, n));
3742 error:
3743 isl_set_free(set);
3744 return NULL;
3747 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
3748 enum isl_dim_type dst_type, unsigned dst_pos,
3749 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3751 int i;
3753 if (!map)
3754 return NULL;
3755 if (n == 0)
3756 return map;
3758 isl_assert(map->ctx, src_pos + n <= isl_map_dim(map, src_type),
3759 goto error);
3761 if (dst_type == src_type && dst_pos == src_pos)
3762 return map;
3764 isl_assert(map->ctx, dst_type != src_type, goto error);
3766 map = isl_map_cow(map);
3767 if (!map)
3768 return NULL;
3770 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
3771 if (!map->dim)
3772 goto error;
3774 for (i = 0; i < map->n; ++i) {
3775 map->p[i] = isl_basic_map_move_dims(map->p[i],
3776 dst_type, dst_pos,
3777 src_type, src_pos, n);
3778 if (!map->p[i])
3779 goto error;
3782 return map;
3783 error:
3784 isl_map_free(map);
3785 return NULL;
3788 /* Move the specified dimensions to the last columns right before
3789 * the divs. Don't change the dimension specification of bmap.
3790 * That's the responsibility of the caller.
3792 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
3793 enum isl_dim_type type, unsigned first, unsigned n)
3795 struct isl_dim_map *dim_map;
3796 struct isl_basic_map *res;
3797 enum isl_dim_type t;
3798 unsigned total, off;
3800 if (!bmap)
3801 return NULL;
3802 if (pos(bmap->dim, type) + first + n ==
3803 1 + isl_space_dim(bmap->dim, isl_dim_all))
3804 return bmap;
3806 total = isl_basic_map_total_dim(bmap);
3807 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3809 off = 0;
3810 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3811 unsigned size = isl_space_dim(bmap->dim, t);
3812 if (t == type) {
3813 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3814 0, first, off);
3815 off += first;
3816 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3817 first, n, total - bmap->n_div - n);
3818 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3819 first + n, size - (first + n), off);
3820 off += size - (first + n);
3821 } else {
3822 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3823 off += size;
3826 isl_dim_map_div(dim_map, bmap, off + n);
3828 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
3829 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3830 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3831 return res;
3834 /* Insert "n" rows in the divs of "bmap".
3836 * The number of columns is not changed, which means that the last
3837 * dimensions of "bmap" are being reintepreted as the new divs.
3838 * The space of "bmap" is not adjusted, however, which means
3839 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
3840 * from the space of "bmap" is the responsibility of the caller.
3842 static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
3843 int n)
3845 int i;
3846 size_t row_size;
3847 isl_int **new_div;
3848 isl_int *old;
3850 bmap = isl_basic_map_cow(bmap);
3851 if (!bmap)
3852 return NULL;
3854 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
3855 old = bmap->block2.data;
3856 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
3857 (bmap->extra + n) * (1 + row_size));
3858 if (!bmap->block2.data)
3859 return isl_basic_map_free(bmap);
3860 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
3861 if (!new_div)
3862 return isl_basic_map_free(bmap);
3863 for (i = 0; i < n; ++i) {
3864 new_div[i] = bmap->block2.data +
3865 (bmap->extra + i) * (1 + row_size);
3866 isl_seq_clr(new_div[i], 1 + row_size);
3868 for (i = 0; i < bmap->extra; ++i)
3869 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
3870 free(bmap->div);
3871 bmap->div = new_div;
3872 bmap->n_div += n;
3873 bmap->extra += n;
3875 return bmap;
3878 /* Drop constraints from "bmap" that only involve the variables
3879 * of "type" in the range [first, first + n] that are not related
3880 * to any of the variables outside that interval.
3881 * These constraints cannot influence the values for the variables
3882 * outside the interval, except in case they cause "bmap" to be empty.
3883 * Only drop the constraints if "bmap" is known to be non-empty.
3885 static __isl_give isl_basic_map *drop_irrelevant_constraints(
3886 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3887 unsigned first, unsigned n)
3889 int i;
3890 int *groups;
3891 unsigned dim, n_div;
3892 isl_bool non_empty;
3894 non_empty = isl_basic_map_plain_is_non_empty(bmap);
3895 if (non_empty < 0)
3896 return isl_basic_map_free(bmap);
3897 if (!non_empty)
3898 return bmap;
3900 dim = isl_basic_map_dim(bmap, isl_dim_all);
3901 n_div = isl_basic_map_dim(bmap, isl_dim_div);
3902 groups = isl_calloc_array(isl_basic_map_get_ctx(bmap), int, dim);
3903 if (!groups)
3904 return isl_basic_map_free(bmap);
3905 first += isl_basic_map_offset(bmap, type) - 1;
3906 for (i = 0; i < first; ++i)
3907 groups[i] = -1;
3908 for (i = first + n; i < dim - n_div; ++i)
3909 groups[i] = -1;
3911 bmap = isl_basic_map_drop_unrelated_constraints(bmap, groups);
3913 return bmap;
3916 /* Turn the n dimensions of type type, starting at first
3917 * into existentially quantified variables.
3919 * If a subset of the projected out variables are unrelated
3920 * to any of the variables that remain, then the constraints
3921 * involving this subset are simply dropped first.
3923 __isl_give isl_basic_map *isl_basic_map_project_out(
3924 __isl_take isl_basic_map *bmap,
3925 enum isl_dim_type type, unsigned first, unsigned n)
3927 if (n == 0)
3928 return basic_map_space_reset(bmap, type);
3929 if (type == isl_dim_div)
3930 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
3931 "cannot project out existentially quantified variables",
3932 return isl_basic_map_free(bmap));
3934 bmap = drop_irrelevant_constraints(bmap, type, first, n);
3935 if (!bmap)
3936 return NULL;
3938 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
3939 return isl_basic_map_remove_dims(bmap, type, first, n);
3941 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
3942 return isl_basic_map_free(bmap);
3944 bmap = move_last(bmap, type, first, n);
3945 bmap = isl_basic_map_cow(bmap);
3946 bmap = insert_div_rows(bmap, n);
3947 if (!bmap)
3948 return NULL;
3950 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
3951 if (!bmap->dim)
3952 goto error;
3953 bmap = isl_basic_map_simplify(bmap);
3954 bmap = isl_basic_map_drop_redundant_divs(bmap);
3955 return isl_basic_map_finalize(bmap);
3956 error:
3957 isl_basic_map_free(bmap);
3958 return NULL;
3961 /* Turn the n dimensions of type type, starting at first
3962 * into existentially quantified variables.
3964 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
3965 enum isl_dim_type type, unsigned first, unsigned n)
3967 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset),
3968 type, first, n));
3971 /* Turn the n dimensions of type type, starting at first
3972 * into existentially quantified variables.
3974 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
3975 enum isl_dim_type type, unsigned first, unsigned n)
3977 int i;
3979 if (!map)
3980 return NULL;
3982 if (n == 0)
3983 return map_space_reset(map, type);
3985 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
3987 map = isl_map_cow(map);
3988 if (!map)
3989 return NULL;
3991 map->dim = isl_space_drop_dims(map->dim, type, first, n);
3992 if (!map->dim)
3993 goto error;
3995 for (i = 0; i < map->n; ++i) {
3996 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
3997 if (!map->p[i])
3998 goto error;
4001 return map;
4002 error:
4003 isl_map_free(map);
4004 return NULL;
4007 /* Turn the n dimensions of type type, starting at first
4008 * into existentially quantified variables.
4010 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
4011 enum isl_dim_type type, unsigned first, unsigned n)
4013 return set_from_map(isl_map_project_out(set_to_map(set),
4014 type, first, n));
4017 /* Return a map that projects the elements in "set" onto their
4018 * "n" set dimensions starting at "first".
4019 * "type" should be equal to isl_dim_set.
4021 __isl_give isl_map *isl_set_project_onto_map(__isl_take isl_set *set,
4022 enum isl_dim_type type, unsigned first, unsigned n)
4024 int i;
4025 int dim;
4026 isl_map *map;
4028 if (!set)
4029 return NULL;
4030 if (type != isl_dim_set)
4031 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4032 "only set dimensions can be projected out", goto error);
4033 dim = isl_set_dim(set, isl_dim_set);
4034 if (first + n > dim || first + n < first)
4035 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4036 "index out of bounds", goto error);
4038 map = isl_map_from_domain(set);
4039 map = isl_map_add_dims(map, isl_dim_out, n);
4040 for (i = 0; i < n; ++i)
4041 map = isl_map_equate(map, isl_dim_in, first + i,
4042 isl_dim_out, i);
4043 return map;
4044 error:
4045 isl_set_free(set);
4046 return NULL;
4049 static struct isl_basic_map *add_divs(struct isl_basic_map *bmap, unsigned n)
4051 int i, j;
4053 for (i = 0; i < n; ++i) {
4054 j = isl_basic_map_alloc_div(bmap);
4055 if (j < 0)
4056 goto error;
4057 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
4059 return bmap;
4060 error:
4061 isl_basic_map_free(bmap);
4062 return NULL;
4065 struct isl_basic_map *isl_basic_map_apply_range(
4066 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4068 isl_space *dim_result = NULL;
4069 struct isl_basic_map *bmap;
4070 unsigned n_in, n_out, n, nparam, total, pos;
4071 struct isl_dim_map *dim_map1, *dim_map2;
4073 if (!bmap1 || !bmap2)
4074 goto error;
4075 if (!isl_space_match(bmap1->dim, isl_dim_param,
4076 bmap2->dim, isl_dim_param))
4077 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4078 "parameters don't match", goto error);
4079 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_out,
4080 bmap2->dim, isl_dim_in))
4081 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4082 "spaces don't match", goto error);
4084 dim_result = isl_space_join(isl_space_copy(bmap1->dim),
4085 isl_space_copy(bmap2->dim));
4087 n_in = isl_basic_map_n_in(bmap1);
4088 n_out = isl_basic_map_n_out(bmap2);
4089 n = isl_basic_map_n_out(bmap1);
4090 nparam = isl_basic_map_n_param(bmap1);
4092 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
4093 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4094 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
4095 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4096 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
4097 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4098 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
4099 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
4100 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4101 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4102 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4104 bmap = isl_basic_map_alloc_space(dim_result,
4105 bmap1->n_div + bmap2->n_div + n,
4106 bmap1->n_eq + bmap2->n_eq,
4107 bmap1->n_ineq + bmap2->n_ineq);
4108 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4109 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4110 bmap = add_divs(bmap, n);
4111 bmap = isl_basic_map_simplify(bmap);
4112 bmap = isl_basic_map_drop_redundant_divs(bmap);
4113 return isl_basic_map_finalize(bmap);
4114 error:
4115 isl_basic_map_free(bmap1);
4116 isl_basic_map_free(bmap2);
4117 return NULL;
4120 struct isl_basic_set *isl_basic_set_apply(
4121 struct isl_basic_set *bset, struct isl_basic_map *bmap)
4123 if (!bset || !bmap)
4124 goto error;
4126 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
4127 goto error);
4129 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset),
4130 bmap));
4131 error:
4132 isl_basic_set_free(bset);
4133 isl_basic_map_free(bmap);
4134 return NULL;
4137 struct isl_basic_map *isl_basic_map_apply_domain(
4138 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4140 if (!bmap1 || !bmap2)
4141 goto error;
4143 isl_assert(bmap1->ctx,
4144 isl_basic_map_n_in(bmap1) == isl_basic_map_n_in(bmap2), goto error);
4145 isl_assert(bmap1->ctx,
4146 isl_basic_map_n_param(bmap1) == isl_basic_map_n_param(bmap2),
4147 goto error);
4149 bmap1 = isl_basic_map_reverse(bmap1);
4150 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
4151 return isl_basic_map_reverse(bmap1);
4152 error:
4153 isl_basic_map_free(bmap1);
4154 isl_basic_map_free(bmap2);
4155 return NULL;
4158 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4159 * A \cap B -> f(A) + f(B)
4161 struct isl_basic_map *isl_basic_map_sum(
4162 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4164 unsigned n_in, n_out, nparam, total, pos;
4165 struct isl_basic_map *bmap = NULL;
4166 struct isl_dim_map *dim_map1, *dim_map2;
4167 int i;
4169 if (!bmap1 || !bmap2)
4170 goto error;
4172 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
4173 goto error);
4175 nparam = isl_basic_map_n_param(bmap1);
4176 n_in = isl_basic_map_n_in(bmap1);
4177 n_out = isl_basic_map_n_out(bmap1);
4179 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
4180 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4181 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
4182 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4183 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
4184 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4185 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4186 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
4187 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4188 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4189 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
4191 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
4192 bmap1->n_div + bmap2->n_div + 2 * n_out,
4193 bmap1->n_eq + bmap2->n_eq + n_out,
4194 bmap1->n_ineq + bmap2->n_ineq);
4195 for (i = 0; i < n_out; ++i) {
4196 int j = isl_basic_map_alloc_equality(bmap);
4197 if (j < 0)
4198 goto error;
4199 isl_seq_clr(bmap->eq[j], 1+total);
4200 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
4201 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
4202 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
4204 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4205 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4206 bmap = add_divs(bmap, 2 * n_out);
4208 bmap = isl_basic_map_simplify(bmap);
4209 return isl_basic_map_finalize(bmap);
4210 error:
4211 isl_basic_map_free(bmap);
4212 isl_basic_map_free(bmap1);
4213 isl_basic_map_free(bmap2);
4214 return NULL;
4217 /* Given two maps A -> f(A) and B -> g(B), construct a map
4218 * A \cap B -> f(A) + f(B)
4220 struct isl_map *isl_map_sum(struct isl_map *map1, struct isl_map *map2)
4222 struct isl_map *result;
4223 int i, j;
4225 if (!map1 || !map2)
4226 goto error;
4228 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
4230 result = isl_map_alloc_space(isl_space_copy(map1->dim),
4231 map1->n * map2->n, 0);
4232 if (!result)
4233 goto error;
4234 for (i = 0; i < map1->n; ++i)
4235 for (j = 0; j < map2->n; ++j) {
4236 struct isl_basic_map *part;
4237 part = isl_basic_map_sum(
4238 isl_basic_map_copy(map1->p[i]),
4239 isl_basic_map_copy(map2->p[j]));
4240 if (isl_basic_map_is_empty(part))
4241 isl_basic_map_free(part);
4242 else
4243 result = isl_map_add_basic_map(result, part);
4244 if (!result)
4245 goto error;
4247 isl_map_free(map1);
4248 isl_map_free(map2);
4249 return result;
4250 error:
4251 isl_map_free(map1);
4252 isl_map_free(map2);
4253 return NULL;
4256 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
4257 __isl_take isl_set *set2)
4259 return set_from_map(isl_map_sum(set_to_map(set1), set_to_map(set2)));
4262 /* Given a basic map A -> f(A), construct A -> -f(A).
4264 struct isl_basic_map *isl_basic_map_neg(struct isl_basic_map *bmap)
4266 int i, j;
4267 unsigned off, n;
4269 bmap = isl_basic_map_cow(bmap);
4270 if (!bmap)
4271 return NULL;
4273 n = isl_basic_map_dim(bmap, isl_dim_out);
4274 off = isl_basic_map_offset(bmap, isl_dim_out);
4275 for (i = 0; i < bmap->n_eq; ++i)
4276 for (j = 0; j < n; ++j)
4277 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
4278 for (i = 0; i < bmap->n_ineq; ++i)
4279 for (j = 0; j < n; ++j)
4280 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
4281 for (i = 0; i < bmap->n_div; ++i)
4282 for (j = 0; j < n; ++j)
4283 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
4284 bmap = isl_basic_map_gauss(bmap, NULL);
4285 return isl_basic_map_finalize(bmap);
4288 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
4290 return isl_basic_map_neg(bset);
4293 /* Given a map A -> f(A), construct A -> -f(A).
4295 struct isl_map *isl_map_neg(struct isl_map *map)
4297 int i;
4299 map = isl_map_cow(map);
4300 if (!map)
4301 return NULL;
4303 for (i = 0; i < map->n; ++i) {
4304 map->p[i] = isl_basic_map_neg(map->p[i]);
4305 if (!map->p[i])
4306 goto error;
4309 return map;
4310 error:
4311 isl_map_free(map);
4312 return NULL;
4315 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
4317 return set_from_map(isl_map_neg(set_to_map(set)));
4320 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4321 * A -> floor(f(A)/d).
4323 struct isl_basic_map *isl_basic_map_floordiv(struct isl_basic_map *bmap,
4324 isl_int d)
4326 unsigned n_in, n_out, nparam, total, pos;
4327 struct isl_basic_map *result = NULL;
4328 struct isl_dim_map *dim_map;
4329 int i;
4331 if (!bmap)
4332 return NULL;
4334 nparam = isl_basic_map_n_param(bmap);
4335 n_in = isl_basic_map_n_in(bmap);
4336 n_out = isl_basic_map_n_out(bmap);
4338 total = nparam + n_in + n_out + bmap->n_div + n_out;
4339 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4340 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
4341 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
4342 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
4343 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
4345 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
4346 bmap->n_div + n_out,
4347 bmap->n_eq, bmap->n_ineq + 2 * n_out);
4348 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
4349 result = add_divs(result, n_out);
4350 for (i = 0; i < n_out; ++i) {
4351 int j;
4352 j = isl_basic_map_alloc_inequality(result);
4353 if (j < 0)
4354 goto error;
4355 isl_seq_clr(result->ineq[j], 1+total);
4356 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
4357 isl_int_set_si(result->ineq[j][1+pos+i], 1);
4358 j = isl_basic_map_alloc_inequality(result);
4359 if (j < 0)
4360 goto error;
4361 isl_seq_clr(result->ineq[j], 1+total);
4362 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
4363 isl_int_set_si(result->ineq[j][1+pos+i], -1);
4364 isl_int_sub_ui(result->ineq[j][0], d, 1);
4367 result = isl_basic_map_simplify(result);
4368 return isl_basic_map_finalize(result);
4369 error:
4370 isl_basic_map_free(result);
4371 return NULL;
4374 /* Given a map A -> f(A) and an integer d, construct a map
4375 * A -> floor(f(A)/d).
4377 struct isl_map *isl_map_floordiv(struct isl_map *map, isl_int d)
4379 int i;
4381 map = isl_map_cow(map);
4382 if (!map)
4383 return NULL;
4385 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4386 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
4387 for (i = 0; i < map->n; ++i) {
4388 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
4389 if (!map->p[i])
4390 goto error;
4393 return map;
4394 error:
4395 isl_map_free(map);
4396 return NULL;
4399 /* Given a map A -> f(A) and an integer d, construct a map
4400 * A -> floor(f(A)/d).
4402 __isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
4403 __isl_take isl_val *d)
4405 if (!map || !d)
4406 goto error;
4407 if (!isl_val_is_int(d))
4408 isl_die(isl_val_get_ctx(d), isl_error_invalid,
4409 "expecting integer denominator", goto error);
4410 map = isl_map_floordiv(map, d->n);
4411 isl_val_free(d);
4412 return map;
4413 error:
4414 isl_map_free(map);
4415 isl_val_free(d);
4416 return NULL;
4419 static struct isl_basic_map *var_equal(struct isl_basic_map *bmap, unsigned pos)
4421 int i;
4422 unsigned nparam;
4423 unsigned n_in;
4425 i = isl_basic_map_alloc_equality(bmap);
4426 if (i < 0)
4427 goto error;
4428 nparam = isl_basic_map_n_param(bmap);
4429 n_in = isl_basic_map_n_in(bmap);
4430 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
4431 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
4432 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
4433 return isl_basic_map_finalize(bmap);
4434 error:
4435 isl_basic_map_free(bmap);
4436 return NULL;
4439 /* Add a constraint to "bmap" expressing i_pos < o_pos
4441 static struct isl_basic_map *var_less(struct isl_basic_map *bmap, unsigned pos)
4443 int i;
4444 unsigned nparam;
4445 unsigned n_in;
4447 i = isl_basic_map_alloc_inequality(bmap);
4448 if (i < 0)
4449 goto error;
4450 nparam = isl_basic_map_n_param(bmap);
4451 n_in = isl_basic_map_n_in(bmap);
4452 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4453 isl_int_set_si(bmap->ineq[i][0], -1);
4454 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4455 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4456 return isl_basic_map_finalize(bmap);
4457 error:
4458 isl_basic_map_free(bmap);
4459 return NULL;
4462 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4464 static __isl_give isl_basic_map *var_less_or_equal(
4465 __isl_take isl_basic_map *bmap, unsigned pos)
4467 int i;
4468 unsigned nparam;
4469 unsigned n_in;
4471 i = isl_basic_map_alloc_inequality(bmap);
4472 if (i < 0)
4473 goto error;
4474 nparam = isl_basic_map_n_param(bmap);
4475 n_in = isl_basic_map_n_in(bmap);
4476 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4477 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4478 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4479 return isl_basic_map_finalize(bmap);
4480 error:
4481 isl_basic_map_free(bmap);
4482 return NULL;
4485 /* Add a constraint to "bmap" expressing i_pos > o_pos
4487 static struct isl_basic_map *var_more(struct isl_basic_map *bmap, unsigned pos)
4489 int i;
4490 unsigned nparam;
4491 unsigned n_in;
4493 i = isl_basic_map_alloc_inequality(bmap);
4494 if (i < 0)
4495 goto error;
4496 nparam = isl_basic_map_n_param(bmap);
4497 n_in = isl_basic_map_n_in(bmap);
4498 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4499 isl_int_set_si(bmap->ineq[i][0], -1);
4500 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4501 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4502 return isl_basic_map_finalize(bmap);
4503 error:
4504 isl_basic_map_free(bmap);
4505 return NULL;
4508 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4510 static __isl_give isl_basic_map *var_more_or_equal(
4511 __isl_take isl_basic_map *bmap, unsigned pos)
4513 int i;
4514 unsigned nparam;
4515 unsigned n_in;
4517 i = isl_basic_map_alloc_inequality(bmap);
4518 if (i < 0)
4519 goto error;
4520 nparam = isl_basic_map_n_param(bmap);
4521 n_in = isl_basic_map_n_in(bmap);
4522 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4523 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4524 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4525 return isl_basic_map_finalize(bmap);
4526 error:
4527 isl_basic_map_free(bmap);
4528 return NULL;
4531 __isl_give isl_basic_map *isl_basic_map_equal(
4532 __isl_take isl_space *dim, unsigned n_equal)
4534 int i;
4535 struct isl_basic_map *bmap;
4536 bmap = isl_basic_map_alloc_space(dim, 0, n_equal, 0);
4537 if (!bmap)
4538 return NULL;
4539 for (i = 0; i < n_equal && bmap; ++i)
4540 bmap = var_equal(bmap, i);
4541 return isl_basic_map_finalize(bmap);
4544 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4546 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *dim,
4547 unsigned pos)
4549 int i;
4550 struct isl_basic_map *bmap;
4551 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4552 if (!bmap)
4553 return NULL;
4554 for (i = 0; i < pos && bmap; ++i)
4555 bmap = var_equal(bmap, i);
4556 if (bmap)
4557 bmap = var_less(bmap, pos);
4558 return isl_basic_map_finalize(bmap);
4561 /* Return a relation on "dim" expressing i_[0..pos] <<= o_[0..pos]
4563 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
4564 __isl_take isl_space *dim, unsigned pos)
4566 int i;
4567 isl_basic_map *bmap;
4569 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4570 for (i = 0; i < pos; ++i)
4571 bmap = var_equal(bmap, i);
4572 bmap = var_less_or_equal(bmap, pos);
4573 return isl_basic_map_finalize(bmap);
4576 /* Return a relation on "dim" expressing i_pos > o_pos
4578 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *dim,
4579 unsigned pos)
4581 int i;
4582 struct isl_basic_map *bmap;
4583 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4584 if (!bmap)
4585 return NULL;
4586 for (i = 0; i < pos && bmap; ++i)
4587 bmap = var_equal(bmap, i);
4588 if (bmap)
4589 bmap = var_more(bmap, pos);
4590 return isl_basic_map_finalize(bmap);
4593 /* Return a relation on "dim" expressing i_[0..pos] >>= o_[0..pos]
4595 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
4596 __isl_take isl_space *dim, unsigned pos)
4598 int i;
4599 isl_basic_map *bmap;
4601 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4602 for (i = 0; i < pos; ++i)
4603 bmap = var_equal(bmap, i);
4604 bmap = var_more_or_equal(bmap, pos);
4605 return isl_basic_map_finalize(bmap);
4608 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *dims,
4609 unsigned n, int equal)
4611 struct isl_map *map;
4612 int i;
4614 if (n == 0 && equal)
4615 return isl_map_universe(dims);
4617 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
4619 for (i = 0; i + 1 < n; ++i)
4620 map = isl_map_add_basic_map(map,
4621 isl_basic_map_less_at(isl_space_copy(dims), i));
4622 if (n > 0) {
4623 if (equal)
4624 map = isl_map_add_basic_map(map,
4625 isl_basic_map_less_or_equal_at(dims, n - 1));
4626 else
4627 map = isl_map_add_basic_map(map,
4628 isl_basic_map_less_at(dims, n - 1));
4629 } else
4630 isl_space_free(dims);
4632 return map;
4635 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *dims, int equal)
4637 if (!dims)
4638 return NULL;
4639 return map_lex_lte_first(dims, dims->n_out, equal);
4642 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
4644 return map_lex_lte_first(dim, n, 0);
4647 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
4649 return map_lex_lte_first(dim, n, 1);
4652 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
4654 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
4657 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
4659 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
4662 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *dims,
4663 unsigned n, int equal)
4665 struct isl_map *map;
4666 int i;
4668 if (n == 0 && equal)
4669 return isl_map_universe(dims);
4671 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
4673 for (i = 0; i + 1 < n; ++i)
4674 map = isl_map_add_basic_map(map,
4675 isl_basic_map_more_at(isl_space_copy(dims), i));
4676 if (n > 0) {
4677 if (equal)
4678 map = isl_map_add_basic_map(map,
4679 isl_basic_map_more_or_equal_at(dims, n - 1));
4680 else
4681 map = isl_map_add_basic_map(map,
4682 isl_basic_map_more_at(dims, n - 1));
4683 } else
4684 isl_space_free(dims);
4686 return map;
4689 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *dims, int equal)
4691 if (!dims)
4692 return NULL;
4693 return map_lex_gte_first(dims, dims->n_out, equal);
4696 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
4698 return map_lex_gte_first(dim, n, 0);
4701 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
4703 return map_lex_gte_first(dim, n, 1);
4706 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
4708 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
4711 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
4713 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
4716 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
4717 __isl_take isl_set *set2)
4719 isl_map *map;
4720 map = isl_map_lex_le(isl_set_get_space(set1));
4721 map = isl_map_intersect_domain(map, set1);
4722 map = isl_map_intersect_range(map, set2);
4723 return map;
4726 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
4727 __isl_take isl_set *set2)
4729 isl_map *map;
4730 map = isl_map_lex_lt(isl_set_get_space(set1));
4731 map = isl_map_intersect_domain(map, set1);
4732 map = isl_map_intersect_range(map, set2);
4733 return map;
4736 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
4737 __isl_take isl_set *set2)
4739 isl_map *map;
4740 map = isl_map_lex_ge(isl_set_get_space(set1));
4741 map = isl_map_intersect_domain(map, set1);
4742 map = isl_map_intersect_range(map, set2);
4743 return map;
4746 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
4747 __isl_take isl_set *set2)
4749 isl_map *map;
4750 map = isl_map_lex_gt(isl_set_get_space(set1));
4751 map = isl_map_intersect_domain(map, set1);
4752 map = isl_map_intersect_range(map, set2);
4753 return map;
4756 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
4757 __isl_take isl_map *map2)
4759 isl_map *map;
4760 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
4761 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4762 map = isl_map_apply_range(map, isl_map_reverse(map2));
4763 return map;
4766 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
4767 __isl_take isl_map *map2)
4769 isl_map *map;
4770 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
4771 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4772 map = isl_map_apply_range(map, isl_map_reverse(map2));
4773 return map;
4776 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
4777 __isl_take isl_map *map2)
4779 isl_map *map;
4780 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
4781 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4782 map = isl_map_apply_range(map, isl_map_reverse(map2));
4783 return map;
4786 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
4787 __isl_take isl_map *map2)
4789 isl_map *map;
4790 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
4791 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4792 map = isl_map_apply_range(map, isl_map_reverse(map2));
4793 return map;
4796 static __isl_give isl_basic_map *basic_map_from_basic_set(
4797 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
4799 struct isl_basic_map *bmap;
4801 bset = isl_basic_set_cow(bset);
4802 if (!bset || !dim)
4803 goto error;
4805 isl_assert(bset->ctx, isl_space_compatible_internal(bset->dim, dim),
4806 goto error);
4807 isl_space_free(bset->dim);
4808 bmap = bset_to_bmap(bset);
4809 bmap->dim = dim;
4810 return isl_basic_map_finalize(bmap);
4811 error:
4812 isl_basic_set_free(bset);
4813 isl_space_free(dim);
4814 return NULL;
4817 __isl_give isl_basic_map *isl_basic_map_from_basic_set(
4818 __isl_take isl_basic_set *bset, __isl_take isl_space *space)
4820 return basic_map_from_basic_set(bset, space);
4823 /* For a div d = floor(f/m), add the constraint
4825 * f - m d >= 0
4827 static isl_stat add_upper_div_constraint(__isl_keep isl_basic_map *bmap,
4828 unsigned pos, isl_int *div)
4830 int i;
4831 unsigned total = isl_basic_map_total_dim(bmap);
4833 i = isl_basic_map_alloc_inequality(bmap);
4834 if (i < 0)
4835 return isl_stat_error;
4836 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
4837 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
4839 return isl_stat_ok;
4842 /* For a div d = floor(f/m), add the constraint
4844 * -(f-(m-1)) + m d >= 0
4846 static isl_stat add_lower_div_constraint(__isl_keep isl_basic_map *bmap,
4847 unsigned pos, isl_int *div)
4849 int i;
4850 unsigned total = isl_basic_map_total_dim(bmap);
4852 i = isl_basic_map_alloc_inequality(bmap);
4853 if (i < 0)
4854 return isl_stat_error;
4855 isl_seq_neg(bmap->ineq[i], div + 1, 1 + total);
4856 isl_int_set(bmap->ineq[i][1 + pos], div[0]);
4857 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
4858 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
4860 return isl_stat_ok;
4863 /* For a div d = floor(f/m), add the constraints
4865 * f - m d >= 0
4866 * -(f-(m-1)) + m d >= 0
4868 * Note that the second constraint is the negation of
4870 * f - m d >= m
4872 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
4873 unsigned pos, isl_int *div)
4875 if (add_upper_div_constraint(bmap, pos, div) < 0)
4876 return -1;
4877 if (add_lower_div_constraint(bmap, pos, div) < 0)
4878 return -1;
4879 return 0;
4882 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
4883 unsigned pos, isl_int *div)
4885 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset),
4886 pos, div);
4889 int isl_basic_map_add_div_constraints(struct isl_basic_map *bmap, unsigned div)
4891 unsigned total = isl_basic_map_total_dim(bmap);
4892 unsigned div_pos = total - bmap->n_div + div;
4894 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
4895 bmap->div[div]);
4898 /* For each known div d = floor(f/m), add the constraints
4900 * f - m d >= 0
4901 * -(f-(m-1)) + m d >= 0
4903 * Remove duplicate constraints in case of some these div constraints
4904 * already appear in "bmap".
4906 __isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
4907 __isl_take isl_basic_map *bmap)
4909 unsigned n_div;
4911 if (!bmap)
4912 return NULL;
4913 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4914 if (n_div == 0)
4915 return bmap;
4917 bmap = add_known_div_constraints(bmap);
4918 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
4919 bmap = isl_basic_map_finalize(bmap);
4920 return bmap;
4923 /* Add the div constraint of sign "sign" for div "div" of "bmap".
4925 * In particular, if this div is of the form d = floor(f/m),
4926 * then add the constraint
4928 * f - m d >= 0
4930 * if sign < 0 or the constraint
4932 * -(f-(m-1)) + m d >= 0
4934 * if sign > 0.
4936 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map *bmap,
4937 unsigned div, int sign)
4939 unsigned total;
4940 unsigned div_pos;
4942 if (!bmap)
4943 return -1;
4945 total = isl_basic_map_total_dim(bmap);
4946 div_pos = total - bmap->n_div + div;
4948 if (sign < 0)
4949 return add_upper_div_constraint(bmap, div_pos, bmap->div[div]);
4950 else
4951 return add_lower_div_constraint(bmap, div_pos, bmap->div[div]);
4954 int isl_basic_set_add_div_constraints(struct isl_basic_set *bset, unsigned div)
4956 return isl_basic_map_add_div_constraints(bset, div);
4959 struct isl_basic_set *isl_basic_map_underlying_set(
4960 struct isl_basic_map *bmap)
4962 if (!bmap)
4963 goto error;
4964 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
4965 bmap->n_div == 0 &&
4966 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
4967 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
4968 return bset_from_bmap(bmap);
4969 bmap = isl_basic_map_cow(bmap);
4970 if (!bmap)
4971 goto error;
4972 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
4973 if (!bmap->dim)
4974 goto error;
4975 bmap->extra -= bmap->n_div;
4976 bmap->n_div = 0;
4977 bmap = isl_basic_map_finalize(bmap);
4978 return bset_from_bmap(bmap);
4979 error:
4980 isl_basic_map_free(bmap);
4981 return NULL;
4984 __isl_give isl_basic_set *isl_basic_set_underlying_set(
4985 __isl_take isl_basic_set *bset)
4987 return isl_basic_map_underlying_set(bset_to_bmap(bset));
4990 /* Replace each element in "list" by the result of applying
4991 * isl_basic_map_underlying_set to the element.
4993 __isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
4994 __isl_take isl_basic_map_list *list)
4996 int i, n;
4998 if (!list)
4999 return NULL;
5001 n = isl_basic_map_list_n_basic_map(list);
5002 for (i = 0; i < n; ++i) {
5003 isl_basic_map *bmap;
5004 isl_basic_set *bset;
5006 bmap = isl_basic_map_list_get_basic_map(list, i);
5007 bset = isl_basic_set_underlying_set(bmap);
5008 list = isl_basic_set_list_set_basic_set(list, i, bset);
5011 return list;
5014 struct isl_basic_map *isl_basic_map_overlying_set(
5015 struct isl_basic_set *bset, struct isl_basic_map *like)
5017 struct isl_basic_map *bmap;
5018 struct isl_ctx *ctx;
5019 unsigned total;
5020 int i;
5022 if (!bset || !like)
5023 goto error;
5024 ctx = bset->ctx;
5025 isl_assert(ctx, bset->n_div == 0, goto error);
5026 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
5027 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
5028 goto error);
5029 if (like->n_div == 0) {
5030 isl_space *space = isl_basic_map_get_space(like);
5031 isl_basic_map_free(like);
5032 return isl_basic_map_reset_space(bset, space);
5034 bset = isl_basic_set_cow(bset);
5035 if (!bset)
5036 goto error;
5037 total = bset->dim->n_out + bset->extra;
5038 bmap = bset_to_bmap(bset);
5039 isl_space_free(bmap->dim);
5040 bmap->dim = isl_space_copy(like->dim);
5041 if (!bmap->dim)
5042 goto error;
5043 bmap->n_div = like->n_div;
5044 bmap->extra += like->n_div;
5045 if (bmap->extra) {
5046 unsigned ltotal;
5047 isl_int **div;
5048 ltotal = total - bmap->extra + like->extra;
5049 if (ltotal > total)
5050 ltotal = total;
5051 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
5052 bmap->extra * (1 + 1 + total));
5053 if (isl_blk_is_error(bmap->block2))
5054 goto error;
5055 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
5056 if (!div)
5057 goto error;
5058 bmap->div = div;
5059 for (i = 0; i < bmap->extra; ++i)
5060 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
5061 for (i = 0; i < like->n_div; ++i) {
5062 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
5063 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
5065 bmap = isl_basic_map_add_known_div_constraints(bmap);
5067 isl_basic_map_free(like);
5068 bmap = isl_basic_map_simplify(bmap);
5069 bmap = isl_basic_map_finalize(bmap);
5070 return bmap;
5071 error:
5072 isl_basic_map_free(like);
5073 isl_basic_set_free(bset);
5074 return NULL;
5077 struct isl_basic_set *isl_basic_set_from_underlying_set(
5078 struct isl_basic_set *bset, struct isl_basic_set *like)
5080 return bset_from_bmap(isl_basic_map_overlying_set(bset,
5081 bset_to_bmap(like)));
5084 struct isl_set *isl_set_from_underlying_set(
5085 struct isl_set *set, struct isl_basic_set *like)
5087 int i;
5089 if (!set || !like)
5090 goto error;
5091 isl_assert(set->ctx, set->dim->n_out == isl_basic_set_total_dim(like),
5092 goto error);
5093 if (isl_space_is_equal(set->dim, like->dim) && like->n_div == 0) {
5094 isl_basic_set_free(like);
5095 return set;
5097 set = isl_set_cow(set);
5098 if (!set)
5099 goto error;
5100 for (i = 0; i < set->n; ++i) {
5101 set->p[i] = isl_basic_set_from_underlying_set(set->p[i],
5102 isl_basic_set_copy(like));
5103 if (!set->p[i])
5104 goto error;
5106 isl_space_free(set->dim);
5107 set->dim = isl_space_copy(like->dim);
5108 if (!set->dim)
5109 goto error;
5110 isl_basic_set_free(like);
5111 return set;
5112 error:
5113 isl_basic_set_free(like);
5114 isl_set_free(set);
5115 return NULL;
5118 struct isl_set *isl_map_underlying_set(struct isl_map *map)
5120 int i;
5122 map = isl_map_cow(map);
5123 if (!map)
5124 return NULL;
5125 map->dim = isl_space_cow(map->dim);
5126 if (!map->dim)
5127 goto error;
5129 for (i = 1; i < map->n; ++i)
5130 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
5131 goto error);
5132 for (i = 0; i < map->n; ++i) {
5133 map->p[i] = bset_to_bmap(
5134 isl_basic_map_underlying_set(map->p[i]));
5135 if (!map->p[i])
5136 goto error;
5138 if (map->n == 0)
5139 map->dim = isl_space_underlying(map->dim, 0);
5140 else {
5141 isl_space_free(map->dim);
5142 map->dim = isl_space_copy(map->p[0]->dim);
5144 if (!map->dim)
5145 goto error;
5146 return set_from_map(map);
5147 error:
5148 isl_map_free(map);
5149 return NULL;
5152 struct isl_set *isl_set_to_underlying_set(struct isl_set *set)
5154 return set_from_map(isl_map_underlying_set(set_to_map(set)));
5157 /* Replace the space of "bmap" by "space".
5159 * If the space of "bmap" is identical to "space" (including the identifiers
5160 * of the input and output dimensions), then simply return the original input.
5162 __isl_give isl_basic_map *isl_basic_map_reset_space(
5163 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
5165 isl_bool equal;
5167 if (!bmap)
5168 goto error;
5169 equal = isl_space_is_equal(bmap->dim, space);
5170 if (equal >= 0 && equal)
5171 equal = isl_space_match(bmap->dim, isl_dim_in,
5172 space, isl_dim_in);
5173 if (equal >= 0 && equal)
5174 equal = isl_space_match(bmap->dim, isl_dim_out,
5175 space, isl_dim_out);
5176 if (equal < 0)
5177 goto error;
5178 if (equal) {
5179 isl_space_free(space);
5180 return bmap;
5182 bmap = isl_basic_map_cow(bmap);
5183 if (!bmap || !space)
5184 goto error;
5186 isl_space_free(bmap->dim);
5187 bmap->dim = space;
5189 bmap = isl_basic_map_finalize(bmap);
5191 return bmap;
5192 error:
5193 isl_basic_map_free(bmap);
5194 isl_space_free(space);
5195 return NULL;
5198 __isl_give isl_basic_set *isl_basic_set_reset_space(
5199 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
5201 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset),
5202 dim));
5205 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
5206 __isl_take isl_space *dim)
5208 int i;
5210 map = isl_map_cow(map);
5211 if (!map || !dim)
5212 goto error;
5214 for (i = 0; i < map->n; ++i) {
5215 map->p[i] = isl_basic_map_reset_space(map->p[i],
5216 isl_space_copy(dim));
5217 if (!map->p[i])
5218 goto error;
5220 isl_space_free(map->dim);
5221 map->dim = dim;
5223 return map;
5224 error:
5225 isl_map_free(map);
5226 isl_space_free(dim);
5227 return NULL;
5230 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
5231 __isl_take isl_space *dim)
5233 return set_from_map(isl_map_reset_space(set_to_map(set), dim));
5236 /* Compute the parameter domain of the given basic set.
5238 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
5240 isl_bool is_params;
5241 isl_space *space;
5242 unsigned n;
5244 is_params = isl_basic_set_is_params(bset);
5245 if (is_params < 0)
5246 return isl_basic_set_free(bset);
5247 if (is_params)
5248 return bset;
5250 n = isl_basic_set_dim(bset, isl_dim_set);
5251 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
5252 space = isl_basic_set_get_space(bset);
5253 space = isl_space_params(space);
5254 bset = isl_basic_set_reset_space(bset, space);
5255 return bset;
5258 /* Construct a zero-dimensional basic set with the given parameter domain.
5260 __isl_give isl_basic_set *isl_basic_set_from_params(
5261 __isl_take isl_basic_set *bset)
5263 isl_space *space;
5264 space = isl_basic_set_get_space(bset);
5265 space = isl_space_set_from_params(space);
5266 bset = isl_basic_set_reset_space(bset, space);
5267 return bset;
5270 /* Compute the parameter domain of the given set.
5272 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
5274 isl_space *space;
5275 unsigned n;
5277 if (isl_set_is_params(set))
5278 return set;
5280 n = isl_set_dim(set, isl_dim_set);
5281 set = isl_set_project_out(set, isl_dim_set, 0, n);
5282 space = isl_set_get_space(set);
5283 space = isl_space_params(space);
5284 set = isl_set_reset_space(set, space);
5285 return set;
5288 /* Construct a zero-dimensional set with the given parameter domain.
5290 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
5292 isl_space *space;
5293 space = isl_set_get_space(set);
5294 space = isl_space_set_from_params(space);
5295 set = isl_set_reset_space(set, space);
5296 return set;
5299 /* Compute the parameter domain of the given map.
5301 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
5303 isl_space *space;
5304 unsigned n;
5306 n = isl_map_dim(map, isl_dim_in);
5307 map = isl_map_project_out(map, isl_dim_in, 0, n);
5308 n = isl_map_dim(map, isl_dim_out);
5309 map = isl_map_project_out(map, isl_dim_out, 0, n);
5310 space = isl_map_get_space(map);
5311 space = isl_space_params(space);
5312 map = isl_map_reset_space(map, space);
5313 return map;
5316 struct isl_basic_set *isl_basic_map_domain(struct isl_basic_map *bmap)
5318 isl_space *space;
5319 unsigned n_out;
5321 if (!bmap)
5322 return NULL;
5323 space = isl_space_domain(isl_basic_map_get_space(bmap));
5325 n_out = isl_basic_map_n_out(bmap);
5326 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
5328 return isl_basic_map_reset_space(bmap, space);
5331 isl_bool isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
5333 if (!bmap)
5334 return isl_bool_error;
5335 return isl_space_may_be_set(bmap->dim);
5338 /* Is this basic map actually a set?
5339 * Users should never call this function. Outside of isl,
5340 * the type should indicate whether something is a set or a map.
5342 isl_bool isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
5344 if (!bmap)
5345 return isl_bool_error;
5346 return isl_space_is_set(bmap->dim);
5349 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
5351 isl_bool is_set;
5353 is_set = isl_basic_map_is_set(bmap);
5354 if (is_set < 0)
5355 goto error;
5356 if (is_set)
5357 return bmap;
5358 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
5359 error:
5360 isl_basic_map_free(bmap);
5361 return NULL;
5364 __isl_give isl_basic_map *isl_basic_map_domain_map(
5365 __isl_take isl_basic_map *bmap)
5367 int i;
5368 isl_space *dim;
5369 isl_basic_map *domain;
5370 int nparam, n_in, n_out;
5372 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5373 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5374 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5376 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
5377 domain = isl_basic_map_universe(dim);
5379 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5380 bmap = isl_basic_map_apply_range(bmap, domain);
5381 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
5383 for (i = 0; i < n_in; ++i)
5384 bmap = isl_basic_map_equate(bmap, isl_dim_in, i,
5385 isl_dim_out, i);
5387 bmap = isl_basic_map_gauss(bmap, NULL);
5388 return isl_basic_map_finalize(bmap);
5391 __isl_give isl_basic_map *isl_basic_map_range_map(
5392 __isl_take isl_basic_map *bmap)
5394 int i;
5395 isl_space *dim;
5396 isl_basic_map *range;
5397 int nparam, n_in, n_out;
5399 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5400 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5401 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5403 dim = isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap)));
5404 range = isl_basic_map_universe(dim);
5406 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5407 bmap = isl_basic_map_apply_range(bmap, range);
5408 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
5410 for (i = 0; i < n_out; ++i)
5411 bmap = isl_basic_map_equate(bmap, isl_dim_in, n_in + i,
5412 isl_dim_out, i);
5414 bmap = isl_basic_map_gauss(bmap, NULL);
5415 return isl_basic_map_finalize(bmap);
5418 int isl_map_may_be_set(__isl_keep isl_map *map)
5420 if (!map)
5421 return -1;
5422 return isl_space_may_be_set(map->dim);
5425 /* Is this map actually a set?
5426 * Users should never call this function. Outside of isl,
5427 * the type should indicate whether something is a set or a map.
5429 isl_bool isl_map_is_set(__isl_keep isl_map *map)
5431 if (!map)
5432 return isl_bool_error;
5433 return isl_space_is_set(map->dim);
5436 struct isl_set *isl_map_range(struct isl_map *map)
5438 int i;
5439 isl_bool is_set;
5440 struct isl_set *set;
5442 is_set = isl_map_is_set(map);
5443 if (is_set < 0)
5444 goto error;
5445 if (is_set)
5446 return set_from_map(map);
5448 map = isl_map_cow(map);
5449 if (!map)
5450 goto error;
5452 set = set_from_map(map);
5453 set->dim = isl_space_range(set->dim);
5454 if (!set->dim)
5455 goto error;
5456 for (i = 0; i < map->n; ++i) {
5457 set->p[i] = isl_basic_map_range(map->p[i]);
5458 if (!set->p[i])
5459 goto error;
5461 ISL_F_CLR(set, ISL_MAP_DISJOINT);
5462 ISL_F_CLR(set, ISL_SET_NORMALIZED);
5463 return set;
5464 error:
5465 isl_map_free(map);
5466 return NULL;
5469 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
5471 int i;
5473 map = isl_map_cow(map);
5474 if (!map)
5475 return NULL;
5477 map->dim = isl_space_domain_map(map->dim);
5478 if (!map->dim)
5479 goto error;
5480 for (i = 0; i < map->n; ++i) {
5481 map->p[i] = isl_basic_map_domain_map(map->p[i]);
5482 if (!map->p[i])
5483 goto error;
5485 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5486 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5487 return map;
5488 error:
5489 isl_map_free(map);
5490 return NULL;
5493 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
5495 int i;
5496 isl_space *range_dim;
5498 map = isl_map_cow(map);
5499 if (!map)
5500 return NULL;
5502 range_dim = isl_space_range(isl_map_get_space(map));
5503 range_dim = isl_space_from_range(range_dim);
5504 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
5505 map->dim = isl_space_join(map->dim, range_dim);
5506 if (!map->dim)
5507 goto error;
5508 for (i = 0; i < map->n; ++i) {
5509 map->p[i] = isl_basic_map_range_map(map->p[i]);
5510 if (!map->p[i])
5511 goto error;
5513 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5514 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5515 return map;
5516 error:
5517 isl_map_free(map);
5518 return NULL;
5521 /* Given a wrapped map of the form A[B -> C],
5522 * return the map A[B -> C] -> B.
5524 __isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
5526 isl_id *id;
5527 isl_map *map;
5529 if (!set)
5530 return NULL;
5531 if (!isl_set_has_tuple_id(set))
5532 return isl_map_domain_map(isl_set_unwrap(set));
5534 id = isl_set_get_tuple_id(set);
5535 map = isl_map_domain_map(isl_set_unwrap(set));
5536 map = isl_map_set_tuple_id(map, isl_dim_in, id);
5538 return map;
5541 __isl_give isl_map *isl_map_from_set(__isl_take isl_set *set,
5542 __isl_take isl_space *dim)
5544 int i;
5545 struct isl_map *map = NULL;
5547 set = isl_set_cow(set);
5548 if (!set || !dim)
5549 goto error;
5550 isl_assert(set->ctx, isl_space_compatible_internal(set->dim, dim),
5551 goto error);
5552 map = set_to_map(set);
5553 for (i = 0; i < set->n; ++i) {
5554 map->p[i] = basic_map_from_basic_set(
5555 set->p[i], isl_space_copy(dim));
5556 if (!map->p[i])
5557 goto error;
5559 isl_space_free(map->dim);
5560 map->dim = dim;
5561 return map;
5562 error:
5563 isl_space_free(dim);
5564 isl_set_free(set);
5565 return NULL;
5568 __isl_give isl_basic_map *isl_basic_map_from_domain(
5569 __isl_take isl_basic_set *bset)
5571 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
5574 __isl_give isl_basic_map *isl_basic_map_from_range(
5575 __isl_take isl_basic_set *bset)
5577 isl_space *space;
5578 space = isl_basic_set_get_space(bset);
5579 space = isl_space_from_range(space);
5580 bset = isl_basic_set_reset_space(bset, space);
5581 return bset_to_bmap(bset);
5584 /* Create a relation with the given set as range.
5585 * The domain of the created relation is a zero-dimensional
5586 * flat anonymous space.
5588 __isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
5590 isl_space *space;
5591 space = isl_set_get_space(set);
5592 space = isl_space_from_range(space);
5593 set = isl_set_reset_space(set, space);
5594 return set_to_map(set);
5597 /* Create a relation with the given set as domain.
5598 * The range of the created relation is a zero-dimensional
5599 * flat anonymous space.
5601 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
5603 return isl_map_reverse(isl_map_from_range(set));
5606 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
5607 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
5609 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
5612 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
5613 __isl_take isl_set *range)
5615 return isl_map_apply_range(isl_map_reverse(domain), range);
5618 /* Return a newly allocated isl_map with given space and flags and
5619 * room for "n" basic maps.
5620 * Make sure that all cached information is cleared.
5622 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *space, int n,
5623 unsigned flags)
5625 struct isl_map *map;
5627 if (!space)
5628 return NULL;
5629 if (n < 0)
5630 isl_die(space->ctx, isl_error_internal,
5631 "negative number of basic maps", goto error);
5632 map = isl_calloc(space->ctx, struct isl_map,
5633 sizeof(struct isl_map) +
5634 (n - 1) * sizeof(struct isl_basic_map *));
5635 if (!map)
5636 goto error;
5638 map->ctx = space->ctx;
5639 isl_ctx_ref(map->ctx);
5640 map->ref = 1;
5641 map->size = n;
5642 map->n = 0;
5643 map->dim = space;
5644 map->flags = flags;
5645 return map;
5646 error:
5647 isl_space_free(space);
5648 return NULL;
5651 struct isl_map *isl_map_alloc(struct isl_ctx *ctx,
5652 unsigned nparam, unsigned in, unsigned out, int n,
5653 unsigned flags)
5655 struct isl_map *map;
5656 isl_space *dims;
5658 dims = isl_space_alloc(ctx, nparam, in, out);
5659 if (!dims)
5660 return NULL;
5662 map = isl_map_alloc_space(dims, n, flags);
5663 return map;
5666 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *dim)
5668 struct isl_basic_map *bmap;
5669 bmap = isl_basic_map_alloc_space(dim, 0, 1, 0);
5670 bmap = isl_basic_map_set_to_empty(bmap);
5671 return bmap;
5674 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *dim)
5676 struct isl_basic_set *bset;
5677 bset = isl_basic_set_alloc_space(dim, 0, 1, 0);
5678 bset = isl_basic_set_set_to_empty(bset);
5679 return bset;
5682 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *dim)
5684 struct isl_basic_map *bmap;
5685 bmap = isl_basic_map_alloc_space(dim, 0, 0, 0);
5686 bmap = isl_basic_map_finalize(bmap);
5687 return bmap;
5690 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *dim)
5692 struct isl_basic_set *bset;
5693 bset = isl_basic_set_alloc_space(dim, 0, 0, 0);
5694 bset = isl_basic_set_finalize(bset);
5695 return bset;
5698 __isl_give isl_basic_map *isl_basic_map_nat_universe(__isl_take isl_space *dim)
5700 int i;
5701 unsigned total = isl_space_dim(dim, isl_dim_all);
5702 isl_basic_map *bmap;
5704 bmap= isl_basic_map_alloc_space(dim, 0, 0, total);
5705 for (i = 0; i < total; ++i) {
5706 int k = isl_basic_map_alloc_inequality(bmap);
5707 if (k < 0)
5708 goto error;
5709 isl_seq_clr(bmap->ineq[k], 1 + total);
5710 isl_int_set_si(bmap->ineq[k][1 + i], 1);
5712 return bmap;
5713 error:
5714 isl_basic_map_free(bmap);
5715 return NULL;
5718 __isl_give isl_basic_set *isl_basic_set_nat_universe(__isl_take isl_space *dim)
5720 return isl_basic_map_nat_universe(dim);
5723 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
5725 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
5728 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
5730 return isl_map_nat_universe(dim);
5733 __isl_give isl_map *isl_map_empty(__isl_take isl_space *dim)
5735 return isl_map_alloc_space(dim, 0, ISL_MAP_DISJOINT);
5738 __isl_give isl_set *isl_set_empty(__isl_take isl_space *dim)
5740 return isl_set_alloc_space(dim, 0, ISL_MAP_DISJOINT);
5743 __isl_give isl_map *isl_map_universe(__isl_take isl_space *dim)
5745 struct isl_map *map;
5746 if (!dim)
5747 return NULL;
5748 map = isl_map_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5749 map = isl_map_add_basic_map(map, isl_basic_map_universe(dim));
5750 return map;
5753 __isl_give isl_set *isl_set_universe(__isl_take isl_space *dim)
5755 struct isl_set *set;
5756 if (!dim)
5757 return NULL;
5758 set = isl_set_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5759 set = isl_set_add_basic_set(set, isl_basic_set_universe(dim));
5760 return set;
5763 struct isl_map *isl_map_dup(struct isl_map *map)
5765 int i;
5766 struct isl_map *dup;
5768 if (!map)
5769 return NULL;
5770 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
5771 for (i = 0; i < map->n; ++i)
5772 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
5773 return dup;
5776 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
5777 __isl_take isl_basic_map *bmap)
5779 if (!bmap || !map)
5780 goto error;
5781 if (isl_basic_map_plain_is_empty(bmap)) {
5782 isl_basic_map_free(bmap);
5783 return map;
5785 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
5786 isl_assert(map->ctx, map->n < map->size, goto error);
5787 map->p[map->n] = bmap;
5788 map->n++;
5789 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5790 return map;
5791 error:
5792 if (map)
5793 isl_map_free(map);
5794 if (bmap)
5795 isl_basic_map_free(bmap);
5796 return NULL;
5799 __isl_null isl_map *isl_map_free(__isl_take isl_map *map)
5801 int i;
5803 if (!map)
5804 return NULL;
5806 if (--map->ref > 0)
5807 return NULL;
5809 clear_caches(map);
5810 isl_ctx_deref(map->ctx);
5811 for (i = 0; i < map->n; ++i)
5812 isl_basic_map_free(map->p[i]);
5813 isl_space_free(map->dim);
5814 free(map);
5816 return NULL;
5819 static struct isl_basic_map *isl_basic_map_fix_pos_si(
5820 struct isl_basic_map *bmap, unsigned pos, int value)
5822 int j;
5824 bmap = isl_basic_map_cow(bmap);
5825 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
5826 j = isl_basic_map_alloc_equality(bmap);
5827 if (j < 0)
5828 goto error;
5829 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
5830 isl_int_set_si(bmap->eq[j][pos], -1);
5831 isl_int_set_si(bmap->eq[j][0], value);
5832 bmap = isl_basic_map_simplify(bmap);
5833 return isl_basic_map_finalize(bmap);
5834 error:
5835 isl_basic_map_free(bmap);
5836 return NULL;
5839 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
5840 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
5842 int j;
5844 bmap = isl_basic_map_cow(bmap);
5845 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
5846 j = isl_basic_map_alloc_equality(bmap);
5847 if (j < 0)
5848 goto error;
5849 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
5850 isl_int_set_si(bmap->eq[j][pos], -1);
5851 isl_int_set(bmap->eq[j][0], value);
5852 bmap = isl_basic_map_simplify(bmap);
5853 return isl_basic_map_finalize(bmap);
5854 error:
5855 isl_basic_map_free(bmap);
5856 return NULL;
5859 struct isl_basic_map *isl_basic_map_fix_si(struct isl_basic_map *bmap,
5860 enum isl_dim_type type, unsigned pos, int value)
5862 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
5863 return isl_basic_map_free(bmap);
5864 return isl_basic_map_fix_pos_si(bmap,
5865 isl_basic_map_offset(bmap, type) + pos, value);
5868 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
5869 enum isl_dim_type type, unsigned pos, isl_int value)
5871 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
5872 return isl_basic_map_free(bmap);
5873 return isl_basic_map_fix_pos(bmap,
5874 isl_basic_map_offset(bmap, type) + pos, value);
5877 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
5878 * to be equal to "v".
5880 __isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
5881 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
5883 if (!bmap || !v)
5884 goto error;
5885 if (!isl_val_is_int(v))
5886 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
5887 "expecting integer value", goto error);
5888 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
5889 goto error;
5890 pos += isl_basic_map_offset(bmap, type);
5891 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
5892 isl_val_free(v);
5893 return bmap;
5894 error:
5895 isl_basic_map_free(bmap);
5896 isl_val_free(v);
5897 return NULL;
5900 /* Fix the value of the variable at position "pos" of type "type" of "bset"
5901 * to be equal to "v".
5903 __isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
5904 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
5906 return isl_basic_map_fix_val(bset, type, pos, v);
5909 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
5910 enum isl_dim_type type, unsigned pos, int value)
5912 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
5913 type, pos, value));
5916 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
5917 enum isl_dim_type type, unsigned pos, isl_int value)
5919 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset),
5920 type, pos, value));
5923 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
5924 unsigned input, int value)
5926 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
5929 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
5930 unsigned dim, int value)
5932 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
5933 isl_dim_set, dim, value));
5936 static int remove_if_empty(__isl_keep isl_map *map, int i)
5938 int empty = isl_basic_map_plain_is_empty(map->p[i]);
5940 if (empty < 0)
5941 return -1;
5942 if (!empty)
5943 return 0;
5945 isl_basic_map_free(map->p[i]);
5946 if (i != map->n - 1) {
5947 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5948 map->p[i] = map->p[map->n - 1];
5950 map->n--;
5952 return 0;
5955 /* Perform "fn" on each basic map of "map", where we may not be holding
5956 * the only reference to "map".
5957 * In particular, "fn" should be a semantics preserving operation
5958 * that we want to apply to all copies of "map". We therefore need
5959 * to be careful not to modify "map" in a way that breaks "map"
5960 * in case anything goes wrong.
5962 __isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
5963 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
5965 struct isl_basic_map *bmap;
5966 int i;
5968 if (!map)
5969 return NULL;
5971 for (i = map->n - 1; i >= 0; --i) {
5972 bmap = isl_basic_map_copy(map->p[i]);
5973 bmap = fn(bmap);
5974 if (!bmap)
5975 goto error;
5976 isl_basic_map_free(map->p[i]);
5977 map->p[i] = bmap;
5978 if (remove_if_empty(map, i) < 0)
5979 goto error;
5982 return map;
5983 error:
5984 isl_map_free(map);
5985 return NULL;
5988 struct isl_map *isl_map_fix_si(struct isl_map *map,
5989 enum isl_dim_type type, unsigned pos, int value)
5991 int i;
5993 map = isl_map_cow(map);
5994 if (!map)
5995 return NULL;
5997 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
5998 for (i = map->n - 1; i >= 0; --i) {
5999 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
6000 if (remove_if_empty(map, i) < 0)
6001 goto error;
6003 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6004 return map;
6005 error:
6006 isl_map_free(map);
6007 return NULL;
6010 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
6011 enum isl_dim_type type, unsigned pos, int value)
6013 return set_from_map(isl_map_fix_si(set_to_map(set), type, pos, value));
6016 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
6017 enum isl_dim_type type, unsigned pos, isl_int value)
6019 int i;
6021 map = isl_map_cow(map);
6022 if (!map)
6023 return NULL;
6025 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6026 for (i = 0; i < map->n; ++i) {
6027 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
6028 if (!map->p[i])
6029 goto error;
6031 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6032 return map;
6033 error:
6034 isl_map_free(map);
6035 return NULL;
6038 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
6039 enum isl_dim_type type, unsigned pos, isl_int value)
6041 return set_from_map(isl_map_fix(set_to_map(set), type, pos, value));
6044 /* Fix the value of the variable at position "pos" of type "type" of "map"
6045 * to be equal to "v".
6047 __isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
6048 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6050 int i;
6052 map = isl_map_cow(map);
6053 if (!map || !v)
6054 goto error;
6056 if (!isl_val_is_int(v))
6057 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6058 "expecting integer value", goto error);
6059 if (pos >= isl_map_dim(map, type))
6060 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6061 "index out of bounds", goto error);
6062 for (i = map->n - 1; i >= 0; --i) {
6063 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
6064 isl_val_copy(v));
6065 if (remove_if_empty(map, i) < 0)
6066 goto error;
6068 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6069 isl_val_free(v);
6070 return map;
6071 error:
6072 isl_map_free(map);
6073 isl_val_free(v);
6074 return NULL;
6077 /* Fix the value of the variable at position "pos" of type "type" of "set"
6078 * to be equal to "v".
6080 __isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
6081 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6083 return isl_map_fix_val(set, type, pos, v);
6086 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
6087 unsigned input, int value)
6089 return isl_map_fix_si(map, isl_dim_in, input, value);
6092 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
6094 return set_from_map(isl_map_fix_si(set_to_map(set),
6095 isl_dim_set, dim, value));
6098 static __isl_give isl_basic_map *basic_map_bound_si(
6099 __isl_take isl_basic_map *bmap,
6100 enum isl_dim_type type, unsigned pos, int value, int upper)
6102 int j;
6104 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6105 return isl_basic_map_free(bmap);
6106 pos += isl_basic_map_offset(bmap, type);
6107 bmap = isl_basic_map_cow(bmap);
6108 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6109 j = isl_basic_map_alloc_inequality(bmap);
6110 if (j < 0)
6111 goto error;
6112 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6113 if (upper) {
6114 isl_int_set_si(bmap->ineq[j][pos], -1);
6115 isl_int_set_si(bmap->ineq[j][0], value);
6116 } else {
6117 isl_int_set_si(bmap->ineq[j][pos], 1);
6118 isl_int_set_si(bmap->ineq[j][0], -value);
6120 bmap = isl_basic_map_simplify(bmap);
6121 return isl_basic_map_finalize(bmap);
6122 error:
6123 isl_basic_map_free(bmap);
6124 return NULL;
6127 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
6128 __isl_take isl_basic_map *bmap,
6129 enum isl_dim_type type, unsigned pos, int value)
6131 return basic_map_bound_si(bmap, type, pos, value, 0);
6134 /* Constrain the values of the given dimension to be no greater than "value".
6136 __isl_give isl_basic_map *isl_basic_map_upper_bound_si(
6137 __isl_take isl_basic_map *bmap,
6138 enum isl_dim_type type, unsigned pos, int value)
6140 return basic_map_bound_si(bmap, type, pos, value, 1);
6143 struct isl_basic_set *isl_basic_set_lower_bound_dim(struct isl_basic_set *bset,
6144 unsigned dim, isl_int value)
6146 int j;
6148 bset = isl_basic_set_cow(bset);
6149 bset = isl_basic_set_extend_constraints(bset, 0, 1);
6150 j = isl_basic_set_alloc_inequality(bset);
6151 if (j < 0)
6152 goto error;
6153 isl_seq_clr(bset->ineq[j], 1 + isl_basic_set_total_dim(bset));
6154 isl_int_set_si(bset->ineq[j][1 + isl_basic_set_n_param(bset) + dim], 1);
6155 isl_int_neg(bset->ineq[j][0], value);
6156 bset = isl_basic_set_simplify(bset);
6157 return isl_basic_set_finalize(bset);
6158 error:
6159 isl_basic_set_free(bset);
6160 return NULL;
6163 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
6164 enum isl_dim_type type, unsigned pos, int value, int upper)
6166 int i;
6168 map = isl_map_cow(map);
6169 if (!map)
6170 return NULL;
6172 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6173 for (i = 0; i < map->n; ++i) {
6174 map->p[i] = basic_map_bound_si(map->p[i],
6175 type, pos, value, upper);
6176 if (!map->p[i])
6177 goto error;
6179 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6180 return map;
6181 error:
6182 isl_map_free(map);
6183 return NULL;
6186 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
6187 enum isl_dim_type type, unsigned pos, int value)
6189 return map_bound_si(map, type, pos, value, 0);
6192 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
6193 enum isl_dim_type type, unsigned pos, int value)
6195 return map_bound_si(map, type, pos, value, 1);
6198 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
6199 enum isl_dim_type type, unsigned pos, int value)
6201 return set_from_map(isl_map_lower_bound_si(set_to_map(set),
6202 type, pos, value));
6205 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
6206 enum isl_dim_type type, unsigned pos, int value)
6208 return isl_map_upper_bound_si(set, type, pos, value);
6211 /* Bound the given variable of "bmap" from below (or above is "upper"
6212 * is set) to "value".
6214 static __isl_give isl_basic_map *basic_map_bound(
6215 __isl_take isl_basic_map *bmap,
6216 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6218 int j;
6220 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6221 return isl_basic_map_free(bmap);
6222 pos += isl_basic_map_offset(bmap, type);
6223 bmap = isl_basic_map_cow(bmap);
6224 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6225 j = isl_basic_map_alloc_inequality(bmap);
6226 if (j < 0)
6227 goto error;
6228 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6229 if (upper) {
6230 isl_int_set_si(bmap->ineq[j][pos], -1);
6231 isl_int_set(bmap->ineq[j][0], value);
6232 } else {
6233 isl_int_set_si(bmap->ineq[j][pos], 1);
6234 isl_int_neg(bmap->ineq[j][0], value);
6236 bmap = isl_basic_map_simplify(bmap);
6237 return isl_basic_map_finalize(bmap);
6238 error:
6239 isl_basic_map_free(bmap);
6240 return NULL;
6243 /* Bound the given variable of "map" from below (or above is "upper"
6244 * is set) to "value".
6246 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
6247 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6249 int i;
6251 map = isl_map_cow(map);
6252 if (!map)
6253 return NULL;
6255 if (pos >= isl_map_dim(map, type))
6256 isl_die(map->ctx, isl_error_invalid,
6257 "index out of bounds", goto error);
6258 for (i = map->n - 1; i >= 0; --i) {
6259 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
6260 if (remove_if_empty(map, i) < 0)
6261 goto error;
6263 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6264 return map;
6265 error:
6266 isl_map_free(map);
6267 return NULL;
6270 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
6271 enum isl_dim_type type, unsigned pos, isl_int value)
6273 return map_bound(map, type, pos, value, 0);
6276 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
6277 enum isl_dim_type type, unsigned pos, isl_int value)
6279 return map_bound(map, type, pos, value, 1);
6282 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
6283 enum isl_dim_type type, unsigned pos, isl_int value)
6285 return isl_map_lower_bound(set, type, pos, value);
6288 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
6289 enum isl_dim_type type, unsigned pos, isl_int value)
6291 return isl_map_upper_bound(set, type, pos, value);
6294 /* Force the values of the variable at position "pos" of type "type" of "set"
6295 * to be no smaller than "value".
6297 __isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
6298 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6300 if (!value)
6301 goto error;
6302 if (!isl_val_is_int(value))
6303 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6304 "expecting integer value", goto error);
6305 set = isl_set_lower_bound(set, type, pos, value->n);
6306 isl_val_free(value);
6307 return set;
6308 error:
6309 isl_val_free(value);
6310 isl_set_free(set);
6311 return NULL;
6314 /* Force the values of the variable at position "pos" of type "type" of "set"
6315 * to be no greater than "value".
6317 __isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
6318 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6320 if (!value)
6321 goto error;
6322 if (!isl_val_is_int(value))
6323 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6324 "expecting integer value", goto error);
6325 set = isl_set_upper_bound(set, type, pos, value->n);
6326 isl_val_free(value);
6327 return set;
6328 error:
6329 isl_val_free(value);
6330 isl_set_free(set);
6331 return NULL;
6334 struct isl_set *isl_set_lower_bound_dim(struct isl_set *set, unsigned dim,
6335 isl_int value)
6337 int i;
6339 set = isl_set_cow(set);
6340 if (!set)
6341 return NULL;
6343 isl_assert(set->ctx, dim < isl_set_n_dim(set), goto error);
6344 for (i = 0; i < set->n; ++i) {
6345 set->p[i] = isl_basic_set_lower_bound_dim(set->p[i], dim, value);
6346 if (!set->p[i])
6347 goto error;
6349 return set;
6350 error:
6351 isl_set_free(set);
6352 return NULL;
6355 struct isl_map *isl_map_reverse(struct isl_map *map)
6357 int i;
6359 map = isl_map_cow(map);
6360 if (!map)
6361 return NULL;
6363 map->dim = isl_space_reverse(map->dim);
6364 if (!map->dim)
6365 goto error;
6366 for (i = 0; i < map->n; ++i) {
6367 map->p[i] = isl_basic_map_reverse(map->p[i]);
6368 if (!map->p[i])
6369 goto error;
6371 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6372 return map;
6373 error:
6374 isl_map_free(map);
6375 return NULL;
6378 #undef TYPE
6379 #define TYPE isl_pw_multi_aff
6380 #undef SUFFIX
6381 #define SUFFIX _pw_multi_aff
6382 #undef EMPTY
6383 #define EMPTY isl_pw_multi_aff_empty
6384 #undef ADD
6385 #define ADD isl_pw_multi_aff_union_add
6386 #include "isl_map_lexopt_templ.c"
6388 /* Given a map "map", compute the lexicographically minimal
6389 * (or maximal) image element for each domain element in dom,
6390 * in the form of an isl_pw_multi_aff.
6391 * If "empty" is not NULL, then set *empty to those elements in dom that
6392 * do not have an image element.
6393 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6394 * should be computed over the domain of "map". "empty" is also NULL
6395 * in this case.
6397 * We first compute the lexicographically minimal or maximal element
6398 * in the first basic map. This results in a partial solution "res"
6399 * and a subset "todo" of dom that still need to be handled.
6400 * We then consider each of the remaining maps in "map" and successively
6401 * update both "res" and "todo".
6402 * If "empty" is NULL, then the todo sets are not needed and therefore
6403 * also not computed.
6405 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
6406 __isl_take isl_map *map, __isl_take isl_set *dom,
6407 __isl_give isl_set **empty, unsigned flags)
6409 int i;
6410 int full;
6411 isl_pw_multi_aff *res;
6412 isl_set *todo;
6414 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6415 if (!map || (!full && !dom))
6416 goto error;
6418 if (isl_map_plain_is_empty(map)) {
6419 if (empty)
6420 *empty = dom;
6421 else
6422 isl_set_free(dom);
6423 return isl_pw_multi_aff_from_map(map);
6426 res = basic_map_partial_lexopt_pw_multi_aff(
6427 isl_basic_map_copy(map->p[0]),
6428 isl_set_copy(dom), empty, flags);
6430 if (empty)
6431 todo = *empty;
6432 for (i = 1; i < map->n; ++i) {
6433 isl_pw_multi_aff *res_i;
6435 res_i = basic_map_partial_lexopt_pw_multi_aff(
6436 isl_basic_map_copy(map->p[i]),
6437 isl_set_copy(dom), empty, flags);
6439 if (ISL_FL_ISSET(flags, ISL_OPT_MAX))
6440 res = isl_pw_multi_aff_union_lexmax(res, res_i);
6441 else
6442 res = isl_pw_multi_aff_union_lexmin(res, res_i);
6444 if (empty)
6445 todo = isl_set_intersect(todo, *empty);
6448 isl_set_free(dom);
6449 isl_map_free(map);
6451 if (empty)
6452 *empty = todo;
6454 return res;
6455 error:
6456 if (empty)
6457 *empty = NULL;
6458 isl_set_free(dom);
6459 isl_map_free(map);
6460 return NULL;
6463 #undef TYPE
6464 #define TYPE isl_map
6465 #undef SUFFIX
6466 #define SUFFIX
6467 #undef EMPTY
6468 #define EMPTY isl_map_empty
6469 #undef ADD
6470 #define ADD isl_map_union_disjoint
6471 #include "isl_map_lexopt_templ.c"
6473 /* Given a map "map", compute the lexicographically minimal
6474 * (or maximal) image element for each domain element in "dom",
6475 * in the form of an isl_map.
6476 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6477 * do not have an image element.
6478 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6479 * should be computed over the domain of "map". "empty" is also NULL
6480 * in this case.
6482 * If the input consists of more than one disjunct, then first
6483 * compute the desired result in the form of an isl_pw_multi_aff and
6484 * then convert that into an isl_map.
6486 * This function used to have an explicit implementation in terms
6487 * of isl_maps, but it would continually intersect the domains of
6488 * partial results with the complement of the domain of the next
6489 * partial solution, potentially leading to an explosion in the number
6490 * of disjuncts if there are several disjuncts in the input.
6491 * An even earlier implementation of this function would look for
6492 * better results in the domain of the partial result and for extra
6493 * results in the complement of this domain, which would lead to
6494 * even more splintering.
6496 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
6497 __isl_take isl_map *map, __isl_take isl_set *dom,
6498 __isl_give isl_set **empty, unsigned flags)
6500 int full;
6501 struct isl_map *res;
6502 isl_pw_multi_aff *pma;
6504 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6505 if (!map || (!full && !dom))
6506 goto error;
6508 if (isl_map_plain_is_empty(map)) {
6509 if (empty)
6510 *empty = dom;
6511 else
6512 isl_set_free(dom);
6513 return map;
6516 if (map->n == 1) {
6517 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
6518 dom, empty, flags);
6519 isl_map_free(map);
6520 return res;
6523 pma = isl_map_partial_lexopt_aligned_pw_multi_aff(map, dom, empty,
6524 flags);
6525 return isl_map_from_pw_multi_aff(pma);
6526 error:
6527 if (empty)
6528 *empty = NULL;
6529 isl_set_free(dom);
6530 isl_map_free(map);
6531 return NULL;
6534 __isl_give isl_map *isl_map_partial_lexmax(
6535 __isl_take isl_map *map, __isl_take isl_set *dom,
6536 __isl_give isl_set **empty)
6538 return isl_map_partial_lexopt(map, dom, empty, ISL_OPT_MAX);
6541 __isl_give isl_map *isl_map_partial_lexmin(
6542 __isl_take isl_map *map, __isl_take isl_set *dom,
6543 __isl_give isl_set **empty)
6545 return isl_map_partial_lexopt(map, dom, empty, 0);
6548 __isl_give isl_set *isl_set_partial_lexmin(
6549 __isl_take isl_set *set, __isl_take isl_set *dom,
6550 __isl_give isl_set **empty)
6552 return set_from_map(isl_map_partial_lexmin(set_to_map(set),
6553 dom, empty));
6556 __isl_give isl_set *isl_set_partial_lexmax(
6557 __isl_take isl_set *set, __isl_take isl_set *dom,
6558 __isl_give isl_set **empty)
6560 return set_from_map(isl_map_partial_lexmax(set_to_map(set),
6561 dom, empty));
6564 /* Compute the lexicographic minimum (or maximum if "flags" includes
6565 * ISL_OPT_MAX) of "bset" over its parametric domain.
6567 __isl_give isl_set *isl_basic_set_lexopt(__isl_take isl_basic_set *bset,
6568 unsigned flags)
6570 return isl_basic_map_lexopt(bset, flags);
6573 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
6575 return isl_basic_map_lexopt(bmap, ISL_OPT_MAX);
6578 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
6580 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset)));
6583 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
6585 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset)));
6588 /* Compute the lexicographic minimum of "bset" over its parametric domain
6589 * for the purpose of quantifier elimination.
6590 * That is, find an explicit representation for all the existentially
6591 * quantified variables in "bset" by computing their lexicographic
6592 * minimum.
6594 static __isl_give isl_set *isl_basic_set_lexmin_compute_divs(
6595 __isl_take isl_basic_set *bset)
6597 return isl_basic_set_lexopt(bset, ISL_OPT_QE);
6600 /* Extract the first and only affine expression from list
6601 * and then add it to *pwaff with the given dom.
6602 * This domain is known to be disjoint from other domains
6603 * because of the way isl_basic_map_foreach_lexmax works.
6605 static int update_dim_opt(__isl_take isl_basic_set *dom,
6606 __isl_take isl_aff_list *list, void *user)
6608 isl_ctx *ctx = isl_basic_set_get_ctx(dom);
6609 isl_aff *aff;
6610 isl_pw_aff **pwaff = user;
6611 isl_pw_aff *pwaff_i;
6613 if (!list)
6614 goto error;
6615 if (isl_aff_list_n_aff(list) != 1)
6616 isl_die(ctx, isl_error_internal,
6617 "expecting single element list", goto error);
6619 aff = isl_aff_list_get_aff(list, 0);
6620 pwaff_i = isl_pw_aff_alloc(isl_set_from_basic_set(dom), aff);
6622 *pwaff = isl_pw_aff_add_disjoint(*pwaff, pwaff_i);
6624 isl_aff_list_free(list);
6626 return 0;
6627 error:
6628 isl_basic_set_free(dom);
6629 isl_aff_list_free(list);
6630 return -1;
6633 /* Given a basic map with one output dimension, compute the minimum or
6634 * maximum of that dimension as an isl_pw_aff.
6636 * The isl_pw_aff is constructed by having isl_basic_map_foreach_lexopt
6637 * call update_dim_opt on each leaf of the result.
6639 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
6640 int max)
6642 isl_space *dim = isl_basic_map_get_space(bmap);
6643 isl_pw_aff *pwaff;
6644 int r;
6646 dim = isl_space_from_domain(isl_space_domain(dim));
6647 dim = isl_space_add_dims(dim, isl_dim_out, 1);
6648 pwaff = isl_pw_aff_empty(dim);
6650 r = isl_basic_map_foreach_lexopt(bmap, max, &update_dim_opt, &pwaff);
6651 if (r < 0)
6652 return isl_pw_aff_free(pwaff);
6654 return pwaff;
6657 /* Compute the minimum or maximum of the given output dimension
6658 * as a function of the parameters and the input dimensions,
6659 * but independently of the other output dimensions.
6661 * We first project out the other output dimension and then compute
6662 * the "lexicographic" maximum in each basic map, combining the results
6663 * using isl_pw_aff_union_max.
6665 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
6666 int max)
6668 int i;
6669 isl_pw_aff *pwaff;
6670 unsigned n_out;
6672 n_out = isl_map_dim(map, isl_dim_out);
6673 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
6674 map = isl_map_project_out(map, isl_dim_out, 0, pos);
6675 if (!map)
6676 return NULL;
6678 if (map->n == 0) {
6679 isl_space *dim = isl_map_get_space(map);
6680 isl_map_free(map);
6681 return isl_pw_aff_empty(dim);
6684 pwaff = basic_map_dim_opt(map->p[0], max);
6685 for (i = 1; i < map->n; ++i) {
6686 isl_pw_aff *pwaff_i;
6688 pwaff_i = basic_map_dim_opt(map->p[i], max);
6689 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
6692 isl_map_free(map);
6694 return pwaff;
6697 /* Compute the minimum of the given output dimension as a function of the
6698 * parameters and input dimensions, but independently of
6699 * the other output dimensions.
6701 __isl_give isl_pw_aff *isl_map_dim_min(__isl_take isl_map *map, int pos)
6703 return map_dim_opt(map, pos, 0);
6706 /* Compute the maximum of the given output dimension as a function of the
6707 * parameters and input dimensions, but independently of
6708 * the other output dimensions.
6710 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
6712 return map_dim_opt(map, pos, 1);
6715 /* Compute the minimum or maximum of the given set dimension
6716 * as a function of the parameters,
6717 * but independently of the other set dimensions.
6719 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
6720 int max)
6722 return map_dim_opt(set, pos, max);
6725 /* Compute the maximum of the given set dimension as a function of the
6726 * parameters, but independently of the other set dimensions.
6728 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
6730 return set_dim_opt(set, pos, 1);
6733 /* Compute the minimum of the given set dimension as a function of the
6734 * parameters, but independently of the other set dimensions.
6736 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
6738 return set_dim_opt(set, pos, 0);
6741 /* Apply a preimage specified by "mat" on the parameters of "bset".
6742 * bset is assumed to have only parameters and divs.
6744 static struct isl_basic_set *basic_set_parameter_preimage(
6745 struct isl_basic_set *bset, struct isl_mat *mat)
6747 unsigned nparam;
6749 if (!bset || !mat)
6750 goto error;
6752 bset->dim = isl_space_cow(bset->dim);
6753 if (!bset->dim)
6754 goto error;
6756 nparam = isl_basic_set_dim(bset, isl_dim_param);
6758 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
6760 bset->dim->nparam = 0;
6761 bset->dim->n_out = nparam;
6762 bset = isl_basic_set_preimage(bset, mat);
6763 if (bset) {
6764 bset->dim->nparam = bset->dim->n_out;
6765 bset->dim->n_out = 0;
6767 return bset;
6768 error:
6769 isl_mat_free(mat);
6770 isl_basic_set_free(bset);
6771 return NULL;
6774 /* Apply a preimage specified by "mat" on the parameters of "set".
6775 * set is assumed to have only parameters and divs.
6777 static __isl_give isl_set *set_parameter_preimage(__isl_take isl_set *set,
6778 __isl_take isl_mat *mat)
6780 isl_space *space;
6781 unsigned nparam;
6783 if (!set || !mat)
6784 goto error;
6786 nparam = isl_set_dim(set, isl_dim_param);
6788 if (mat->n_row != 1 + nparam)
6789 isl_die(isl_set_get_ctx(set), isl_error_internal,
6790 "unexpected number of rows", goto error);
6792 space = isl_set_get_space(set);
6793 space = isl_space_move_dims(space, isl_dim_set, 0,
6794 isl_dim_param, 0, nparam);
6795 set = isl_set_reset_space(set, space);
6796 set = isl_set_preimage(set, mat);
6797 nparam = isl_set_dim(set, isl_dim_out);
6798 space = isl_set_get_space(set);
6799 space = isl_space_move_dims(space, isl_dim_param, 0,
6800 isl_dim_out, 0, nparam);
6801 set = isl_set_reset_space(set, space);
6802 return set;
6803 error:
6804 isl_mat_free(mat);
6805 isl_set_free(set);
6806 return NULL;
6809 /* Intersect the basic set "bset" with the affine space specified by the
6810 * equalities in "eq".
6812 static struct isl_basic_set *basic_set_append_equalities(
6813 struct isl_basic_set *bset, struct isl_mat *eq)
6815 int i, k;
6816 unsigned len;
6818 if (!bset || !eq)
6819 goto error;
6821 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
6822 eq->n_row, 0);
6823 if (!bset)
6824 goto error;
6826 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
6827 for (i = 0; i < eq->n_row; ++i) {
6828 k = isl_basic_set_alloc_equality(bset);
6829 if (k < 0)
6830 goto error;
6831 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
6832 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
6834 isl_mat_free(eq);
6836 bset = isl_basic_set_gauss(bset, NULL);
6837 bset = isl_basic_set_finalize(bset);
6839 return bset;
6840 error:
6841 isl_mat_free(eq);
6842 isl_basic_set_free(bset);
6843 return NULL;
6846 /* Intersect the set "set" with the affine space specified by the
6847 * equalities in "eq".
6849 static struct isl_set *set_append_equalities(struct isl_set *set,
6850 struct isl_mat *eq)
6852 int i;
6854 if (!set || !eq)
6855 goto error;
6857 for (i = 0; i < set->n; ++i) {
6858 set->p[i] = basic_set_append_equalities(set->p[i],
6859 isl_mat_copy(eq));
6860 if (!set->p[i])
6861 goto error;
6863 isl_mat_free(eq);
6864 return set;
6865 error:
6866 isl_mat_free(eq);
6867 isl_set_free(set);
6868 return NULL;
6871 /* Given a basic set "bset" that only involves parameters and existentially
6872 * quantified variables, return the index of the first equality
6873 * that only involves parameters. If there is no such equality then
6874 * return bset->n_eq.
6876 * This function assumes that isl_basic_set_gauss has been called on "bset".
6878 static int first_parameter_equality(__isl_keep isl_basic_set *bset)
6880 int i, j;
6881 unsigned nparam, n_div;
6883 if (!bset)
6884 return -1;
6886 nparam = isl_basic_set_dim(bset, isl_dim_param);
6887 n_div = isl_basic_set_dim(bset, isl_dim_div);
6889 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
6890 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
6891 ++i;
6894 return i;
6897 /* Compute an explicit representation for the existentially quantified
6898 * variables in "bset" by computing the "minimal value" of the set
6899 * variables. Since there are no set variables, the computation of
6900 * the minimal value essentially computes an explicit representation
6901 * of the non-empty part(s) of "bset".
6903 * The input only involves parameters and existentially quantified variables.
6904 * All equalities among parameters have been removed.
6906 * Since the existentially quantified variables in the result are in general
6907 * going to be different from those in the input, we first replace
6908 * them by the minimal number of variables based on their equalities.
6909 * This should simplify the parametric integer programming.
6911 static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
6913 isl_morph *morph1, *morph2;
6914 isl_set *set;
6915 unsigned n;
6917 if (!bset)
6918 return NULL;
6919 if (bset->n_eq == 0)
6920 return isl_basic_set_lexmin_compute_divs(bset);
6922 morph1 = isl_basic_set_parameter_compression(bset);
6923 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
6924 bset = isl_basic_set_lift(bset);
6925 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
6926 bset = isl_morph_basic_set(morph2, bset);
6927 n = isl_basic_set_dim(bset, isl_dim_set);
6928 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
6930 set = isl_basic_set_lexmin_compute_divs(bset);
6932 set = isl_morph_set(isl_morph_inverse(morph1), set);
6934 return set;
6937 /* Project the given basic set onto its parameter domain, possibly introducing
6938 * new, explicit, existential variables in the constraints.
6939 * The input has parameters and (possibly implicit) existential variables.
6940 * The output has the same parameters, but only
6941 * explicit existentially quantified variables.
6943 * The actual projection is performed by pip, but pip doesn't seem
6944 * to like equalities very much, so we first remove the equalities
6945 * among the parameters by performing a variable compression on
6946 * the parameters. Afterward, an inverse transformation is performed
6947 * and the equalities among the parameters are inserted back in.
6949 * The variable compression on the parameters may uncover additional
6950 * equalities that were only implicit before. We therefore check
6951 * if there are any new parameter equalities in the result and
6952 * if so recurse. The removal of parameter equalities is required
6953 * for the parameter compression performed by base_compute_divs.
6955 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
6957 int i;
6958 struct isl_mat *eq;
6959 struct isl_mat *T, *T2;
6960 struct isl_set *set;
6961 unsigned nparam;
6963 bset = isl_basic_set_cow(bset);
6964 if (!bset)
6965 return NULL;
6967 if (bset->n_eq == 0)
6968 return base_compute_divs(bset);
6970 bset = isl_basic_set_gauss(bset, NULL);
6971 if (!bset)
6972 return NULL;
6973 if (isl_basic_set_plain_is_empty(bset))
6974 return isl_set_from_basic_set(bset);
6976 i = first_parameter_equality(bset);
6977 if (i == bset->n_eq)
6978 return base_compute_divs(bset);
6980 nparam = isl_basic_set_dim(bset, isl_dim_param);
6981 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
6982 0, 1 + nparam);
6983 eq = isl_mat_cow(eq);
6984 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
6985 if (T && T->n_col == 0) {
6986 isl_mat_free(T);
6987 isl_mat_free(T2);
6988 isl_mat_free(eq);
6989 bset = isl_basic_set_set_to_empty(bset);
6990 return isl_set_from_basic_set(bset);
6992 bset = basic_set_parameter_preimage(bset, T);
6994 i = first_parameter_equality(bset);
6995 if (!bset)
6996 set = NULL;
6997 else if (i == bset->n_eq)
6998 set = base_compute_divs(bset);
6999 else
7000 set = parameter_compute_divs(bset);
7001 set = set_parameter_preimage(set, T2);
7002 set = set_append_equalities(set, eq);
7003 return set;
7006 /* Insert the divs from "ls" before those of "bmap".
7008 * The number of columns is not changed, which means that the last
7009 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7010 * The caller is responsible for removing the same number of dimensions
7011 * from the space of "bmap".
7013 static __isl_give isl_basic_map *insert_divs_from_local_space(
7014 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
7016 int i;
7017 int n_div;
7018 int old_n_div;
7020 n_div = isl_local_space_dim(ls, isl_dim_div);
7021 if (n_div == 0)
7022 return bmap;
7024 old_n_div = bmap->n_div;
7025 bmap = insert_div_rows(bmap, n_div);
7026 if (!bmap)
7027 return NULL;
7029 for (i = 0; i < n_div; ++i) {
7030 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
7031 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
7034 return bmap;
7037 /* Replace the space of "bmap" by the space and divs of "ls".
7039 * If "ls" has any divs, then we simplify the result since we may
7040 * have discovered some additional equalities that could simplify
7041 * the div expressions.
7043 static __isl_give isl_basic_map *basic_replace_space_by_local_space(
7044 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
7046 int n_div;
7048 bmap = isl_basic_map_cow(bmap);
7049 if (!bmap || !ls)
7050 goto error;
7052 n_div = isl_local_space_dim(ls, isl_dim_div);
7053 bmap = insert_divs_from_local_space(bmap, ls);
7054 if (!bmap)
7055 goto error;
7057 isl_space_free(bmap->dim);
7058 bmap->dim = isl_local_space_get_space(ls);
7059 if (!bmap->dim)
7060 goto error;
7062 isl_local_space_free(ls);
7063 if (n_div > 0)
7064 bmap = isl_basic_map_simplify(bmap);
7065 bmap = isl_basic_map_finalize(bmap);
7066 return bmap;
7067 error:
7068 isl_basic_map_free(bmap);
7069 isl_local_space_free(ls);
7070 return NULL;
7073 /* Replace the space of "map" by the space and divs of "ls".
7075 static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
7076 __isl_take isl_local_space *ls)
7078 int i;
7080 map = isl_map_cow(map);
7081 if (!map || !ls)
7082 goto error;
7084 for (i = 0; i < map->n; ++i) {
7085 map->p[i] = basic_replace_space_by_local_space(map->p[i],
7086 isl_local_space_copy(ls));
7087 if (!map->p[i])
7088 goto error;
7090 isl_space_free(map->dim);
7091 map->dim = isl_local_space_get_space(ls);
7092 if (!map->dim)
7093 goto error;
7095 isl_local_space_free(ls);
7096 return map;
7097 error:
7098 isl_local_space_free(ls);
7099 isl_map_free(map);
7100 return NULL;
7103 /* Compute an explicit representation for the existentially
7104 * quantified variables for which do not know any explicit representation yet.
7106 * We first sort the existentially quantified variables so that the
7107 * existentially quantified variables for which we already have an explicit
7108 * representation are placed before those for which we do not.
7109 * The input dimensions, the output dimensions and the existentially
7110 * quantified variables for which we already have an explicit
7111 * representation are then turned into parameters.
7112 * compute_divs returns a map with the same parameters and
7113 * no input or output dimensions and the dimension specification
7114 * is reset to that of the input, including the existentially quantified
7115 * variables for which we already had an explicit representation.
7117 static struct isl_map *compute_divs(struct isl_basic_map *bmap)
7119 struct isl_basic_set *bset;
7120 struct isl_set *set;
7121 struct isl_map *map;
7122 isl_space *dim;
7123 isl_local_space *ls;
7124 unsigned nparam;
7125 unsigned n_in;
7126 unsigned n_out;
7127 int n_known;
7128 int i;
7130 bmap = isl_basic_map_sort_divs(bmap);
7131 bmap = isl_basic_map_cow(bmap);
7132 if (!bmap)
7133 return NULL;
7135 n_known = isl_basic_map_first_unknown_div(bmap);
7136 if (n_known < 0)
7137 return isl_map_from_basic_map(isl_basic_map_free(bmap));
7139 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7140 n_in = isl_basic_map_dim(bmap, isl_dim_in);
7141 n_out = isl_basic_map_dim(bmap, isl_dim_out);
7142 dim = isl_space_set_alloc(bmap->ctx,
7143 nparam + n_in + n_out + n_known, 0);
7144 if (!dim)
7145 goto error;
7147 ls = isl_basic_map_get_local_space(bmap);
7148 ls = isl_local_space_drop_dims(ls, isl_dim_div,
7149 n_known, bmap->n_div - n_known);
7150 if (n_known > 0) {
7151 for (i = n_known; i < bmap->n_div; ++i)
7152 swap_div(bmap, i - n_known, i);
7153 bmap->n_div -= n_known;
7154 bmap->extra -= n_known;
7156 bmap = isl_basic_map_reset_space(bmap, dim);
7157 bset = bset_from_bmap(bmap);
7159 set = parameter_compute_divs(bset);
7160 map = set_to_map(set);
7161 map = replace_space_by_local_space(map, ls);
7163 return map;
7164 error:
7165 isl_basic_map_free(bmap);
7166 return NULL;
7169 /* Remove the explicit representation of local variable "div",
7170 * if there is any.
7172 __isl_give isl_basic_map *isl_basic_map_mark_div_unknown(
7173 __isl_take isl_basic_map *bmap, int div)
7175 isl_bool unknown;
7177 unknown = isl_basic_map_div_is_marked_unknown(bmap, div);
7178 if (unknown < 0)
7179 return isl_basic_map_free(bmap);
7180 if (unknown)
7181 return bmap;
7183 bmap = isl_basic_map_cow(bmap);
7184 if (!bmap)
7185 return NULL;
7186 isl_int_set_si(bmap->div[div][0], 0);
7187 return bmap;
7190 /* Is local variable "div" of "bmap" marked as not having an explicit
7191 * representation?
7192 * Note that even if "div" is not marked in this way and therefore
7193 * has an explicit representation, this representation may still
7194 * depend (indirectly) on other local variables that do not
7195 * have an explicit representation.
7197 isl_bool isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map *bmap,
7198 int div)
7200 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
7201 return isl_bool_error;
7202 return isl_int_is_zero(bmap->div[div][0]);
7205 /* Return the position of the first local variable that does not
7206 * have an explicit representation.
7207 * Return the total number of local variables if they all have
7208 * an explicit representation.
7209 * Return -1 on error.
7211 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map *bmap)
7213 int i;
7215 if (!bmap)
7216 return -1;
7218 for (i = 0; i < bmap->n_div; ++i) {
7219 if (!isl_basic_map_div_is_known(bmap, i))
7220 return i;
7222 return bmap->n_div;
7225 /* Return the position of the first local variable that does not
7226 * have an explicit representation.
7227 * Return the total number of local variables if they all have
7228 * an explicit representation.
7229 * Return -1 on error.
7231 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set *bset)
7233 return isl_basic_map_first_unknown_div(bset);
7236 /* Does "bmap" have an explicit representation for all local variables?
7238 isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
7240 int first, n;
7242 n = isl_basic_map_dim(bmap, isl_dim_div);
7243 first = isl_basic_map_first_unknown_div(bmap);
7244 if (first < 0)
7245 return isl_bool_error;
7246 return first == n;
7249 /* Do all basic maps in "map" have an explicit representation
7250 * for all local variables?
7252 isl_bool isl_map_divs_known(__isl_keep isl_map *map)
7254 int i;
7256 if (!map)
7257 return isl_bool_error;
7259 for (i = 0; i < map->n; ++i) {
7260 int known = isl_basic_map_divs_known(map->p[i]);
7261 if (known <= 0)
7262 return known;
7265 return isl_bool_true;
7268 /* If bmap contains any unknown divs, then compute explicit
7269 * expressions for them. However, this computation may be
7270 * quite expensive, so first try to remove divs that aren't
7271 * strictly needed.
7273 struct isl_map *isl_basic_map_compute_divs(struct isl_basic_map *bmap)
7275 int known;
7276 struct isl_map *map;
7278 known = isl_basic_map_divs_known(bmap);
7279 if (known < 0)
7280 goto error;
7281 if (known)
7282 return isl_map_from_basic_map(bmap);
7284 bmap = isl_basic_map_drop_redundant_divs(bmap);
7286 known = isl_basic_map_divs_known(bmap);
7287 if (known < 0)
7288 goto error;
7289 if (known)
7290 return isl_map_from_basic_map(bmap);
7292 map = compute_divs(bmap);
7293 return map;
7294 error:
7295 isl_basic_map_free(bmap);
7296 return NULL;
7299 struct isl_map *isl_map_compute_divs(struct isl_map *map)
7301 int i;
7302 int known;
7303 struct isl_map *res;
7305 if (!map)
7306 return NULL;
7307 if (map->n == 0)
7308 return map;
7310 known = isl_map_divs_known(map);
7311 if (known < 0) {
7312 isl_map_free(map);
7313 return NULL;
7315 if (known)
7316 return map;
7318 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
7319 for (i = 1 ; i < map->n; ++i) {
7320 struct isl_map *r2;
7321 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
7322 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
7323 res = isl_map_union_disjoint(res, r2);
7324 else
7325 res = isl_map_union(res, r2);
7327 isl_map_free(map);
7329 return res;
7332 struct isl_set *isl_basic_set_compute_divs(struct isl_basic_set *bset)
7334 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset)));
7337 struct isl_set *isl_set_compute_divs(struct isl_set *set)
7339 return set_from_map(isl_map_compute_divs(set_to_map(set)));
7342 struct isl_set *isl_map_domain(struct isl_map *map)
7344 int i;
7345 struct isl_set *set;
7347 if (!map)
7348 goto error;
7350 map = isl_map_cow(map);
7351 if (!map)
7352 return NULL;
7354 set = set_from_map(map);
7355 set->dim = isl_space_domain(set->dim);
7356 if (!set->dim)
7357 goto error;
7358 for (i = 0; i < map->n; ++i) {
7359 set->p[i] = isl_basic_map_domain(map->p[i]);
7360 if (!set->p[i])
7361 goto error;
7363 ISL_F_CLR(set, ISL_MAP_DISJOINT);
7364 ISL_F_CLR(set, ISL_SET_NORMALIZED);
7365 return set;
7366 error:
7367 isl_map_free(map);
7368 return NULL;
7371 /* Return the union of "map1" and "map2", where we assume for now that
7372 * "map1" and "map2" are disjoint. Note that the basic maps inside
7373 * "map1" or "map2" may not be disjoint from each other.
7374 * Also note that this function is also called from isl_map_union,
7375 * which takes care of handling the situation where "map1" and "map2"
7376 * may not be disjoint.
7378 * If one of the inputs is empty, we can simply return the other input.
7379 * Similarly, if one of the inputs is universal, then it is equal to the union.
7381 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
7382 __isl_take isl_map *map2)
7384 int i;
7385 unsigned flags = 0;
7386 struct isl_map *map = NULL;
7387 int is_universe;
7389 if (!map1 || !map2)
7390 goto error;
7392 if (!isl_space_is_equal(map1->dim, map2->dim))
7393 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
7394 "spaces don't match", goto error);
7396 if (map1->n == 0) {
7397 isl_map_free(map1);
7398 return map2;
7400 if (map2->n == 0) {
7401 isl_map_free(map2);
7402 return map1;
7405 is_universe = isl_map_plain_is_universe(map1);
7406 if (is_universe < 0)
7407 goto error;
7408 if (is_universe) {
7409 isl_map_free(map2);
7410 return map1;
7413 is_universe = isl_map_plain_is_universe(map2);
7414 if (is_universe < 0)
7415 goto error;
7416 if (is_universe) {
7417 isl_map_free(map1);
7418 return map2;
7421 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
7422 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
7423 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7425 map = isl_map_alloc_space(isl_space_copy(map1->dim),
7426 map1->n + map2->n, flags);
7427 if (!map)
7428 goto error;
7429 for (i = 0; i < map1->n; ++i) {
7430 map = isl_map_add_basic_map(map,
7431 isl_basic_map_copy(map1->p[i]));
7432 if (!map)
7433 goto error;
7435 for (i = 0; i < map2->n; ++i) {
7436 map = isl_map_add_basic_map(map,
7437 isl_basic_map_copy(map2->p[i]));
7438 if (!map)
7439 goto error;
7441 isl_map_free(map1);
7442 isl_map_free(map2);
7443 return map;
7444 error:
7445 isl_map_free(map);
7446 isl_map_free(map1);
7447 isl_map_free(map2);
7448 return NULL;
7451 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7452 * guaranteed to be disjoint by the caller.
7454 * Note that this functions is called from within isl_map_make_disjoint,
7455 * so we have to be careful not to touch the constraints of the inputs
7456 * in any way.
7458 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
7459 __isl_take isl_map *map2)
7461 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
7464 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7465 * not be disjoint. The parameters are assumed to have been aligned.
7467 * We currently simply call map_union_disjoint, the internal operation
7468 * of which does not really depend on the inputs being disjoint.
7469 * If the result contains more than one basic map, then we clear
7470 * the disjoint flag since the result may contain basic maps from
7471 * both inputs and these are not guaranteed to be disjoint.
7473 * As a special case, if "map1" and "map2" are obviously equal,
7474 * then we simply return "map1".
7476 static __isl_give isl_map *map_union_aligned(__isl_take isl_map *map1,
7477 __isl_take isl_map *map2)
7479 int equal;
7481 if (!map1 || !map2)
7482 goto error;
7484 equal = isl_map_plain_is_equal(map1, map2);
7485 if (equal < 0)
7486 goto error;
7487 if (equal) {
7488 isl_map_free(map2);
7489 return map1;
7492 map1 = map_union_disjoint(map1, map2);
7493 if (!map1)
7494 return NULL;
7495 if (map1->n > 1)
7496 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
7497 return map1;
7498 error:
7499 isl_map_free(map1);
7500 isl_map_free(map2);
7501 return NULL;
7504 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7505 * not be disjoint.
7507 __isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
7508 __isl_take isl_map *map2)
7510 return isl_map_align_params_map_map_and(map1, map2, &map_union_aligned);
7513 struct isl_set *isl_set_union_disjoint(
7514 struct isl_set *set1, struct isl_set *set2)
7516 return set_from_map(isl_map_union_disjoint(set_to_map(set1),
7517 set_to_map(set2)));
7520 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
7522 return set_from_map(isl_map_union(set_to_map(set1), set_to_map(set2)));
7525 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7526 * the results.
7528 * "map" and "set" are assumed to be compatible and non-NULL.
7530 static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
7531 __isl_take isl_set *set,
7532 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
7533 __isl_take isl_basic_set *bset))
7535 unsigned flags = 0;
7536 struct isl_map *result;
7537 int i, j;
7539 if (isl_set_plain_is_universe(set)) {
7540 isl_set_free(set);
7541 return map;
7544 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
7545 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
7546 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7548 result = isl_map_alloc_space(isl_space_copy(map->dim),
7549 map->n * set->n, flags);
7550 for (i = 0; result && i < map->n; ++i)
7551 for (j = 0; j < set->n; ++j) {
7552 result = isl_map_add_basic_map(result,
7553 fn(isl_basic_map_copy(map->p[i]),
7554 isl_basic_set_copy(set->p[j])));
7555 if (!result)
7556 break;
7559 isl_map_free(map);
7560 isl_set_free(set);
7561 return result;
7564 static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
7565 __isl_take isl_set *set)
7567 isl_bool ok;
7569 ok = isl_map_compatible_range(map, set);
7570 if (ok < 0)
7571 goto error;
7572 if (!ok)
7573 isl_die(set->ctx, isl_error_invalid,
7574 "incompatible spaces", goto error);
7576 return map_intersect_set(map, set, &isl_basic_map_intersect_range);
7577 error:
7578 isl_map_free(map);
7579 isl_set_free(set);
7580 return NULL;
7583 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
7584 __isl_take isl_set *set)
7586 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
7589 static __isl_give isl_map *map_intersect_domain(__isl_take isl_map *map,
7590 __isl_take isl_set *set)
7592 isl_bool ok;
7594 ok = isl_map_compatible_domain(map, set);
7595 if (ok < 0)
7596 goto error;
7597 if (!ok)
7598 isl_die(set->ctx, isl_error_invalid,
7599 "incompatible spaces", goto error);
7601 return map_intersect_set(map, set, &isl_basic_map_intersect_domain);
7602 error:
7603 isl_map_free(map);
7604 isl_set_free(set);
7605 return NULL;
7608 __isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
7609 __isl_take isl_set *set)
7611 return isl_map_align_params_map_map_and(map, set,
7612 &map_intersect_domain);
7615 static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
7616 __isl_take isl_map *map2)
7618 if (!map1 || !map2)
7619 goto error;
7620 map1 = isl_map_reverse(map1);
7621 map1 = isl_map_apply_range(map1, map2);
7622 return isl_map_reverse(map1);
7623 error:
7624 isl_map_free(map1);
7625 isl_map_free(map2);
7626 return NULL;
7629 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
7630 __isl_take isl_map *map2)
7632 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
7635 static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
7636 __isl_take isl_map *map2)
7638 isl_space *dim_result;
7639 struct isl_map *result;
7640 int i, j;
7642 if (!map1 || !map2)
7643 goto error;
7645 dim_result = isl_space_join(isl_space_copy(map1->dim),
7646 isl_space_copy(map2->dim));
7648 result = isl_map_alloc_space(dim_result, map1->n * map2->n, 0);
7649 if (!result)
7650 goto error;
7651 for (i = 0; i < map1->n; ++i)
7652 for (j = 0; j < map2->n; ++j) {
7653 result = isl_map_add_basic_map(result,
7654 isl_basic_map_apply_range(
7655 isl_basic_map_copy(map1->p[i]),
7656 isl_basic_map_copy(map2->p[j])));
7657 if (!result)
7658 goto error;
7660 isl_map_free(map1);
7661 isl_map_free(map2);
7662 if (result && result->n <= 1)
7663 ISL_F_SET(result, ISL_MAP_DISJOINT);
7664 return result;
7665 error:
7666 isl_map_free(map1);
7667 isl_map_free(map2);
7668 return NULL;
7671 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
7672 __isl_take isl_map *map2)
7674 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
7678 * returns range - domain
7680 struct isl_basic_set *isl_basic_map_deltas(struct isl_basic_map *bmap)
7682 isl_space *target_space;
7683 struct isl_basic_set *bset;
7684 unsigned dim;
7685 unsigned nparam;
7686 int i;
7688 if (!bmap)
7689 goto error;
7690 isl_assert(bmap->ctx, isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
7691 bmap->dim, isl_dim_out),
7692 goto error);
7693 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
7694 dim = isl_basic_map_n_in(bmap);
7695 nparam = isl_basic_map_n_param(bmap);
7696 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
7697 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
7698 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
7699 for (i = 0; i < dim; ++i) {
7700 int j = isl_basic_map_alloc_equality(bmap);
7701 if (j < 0) {
7702 bmap = isl_basic_map_free(bmap);
7703 break;
7705 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
7706 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
7707 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
7708 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
7710 bset = isl_basic_map_domain(bmap);
7711 bset = isl_basic_set_reset_space(bset, target_space);
7712 return bset;
7713 error:
7714 isl_basic_map_free(bmap);
7715 return NULL;
7719 * returns range - domain
7721 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
7723 int i;
7724 isl_space *dim;
7725 struct isl_set *result;
7727 if (!map)
7728 return NULL;
7730 isl_assert(map->ctx, isl_space_tuple_is_equal(map->dim, isl_dim_in,
7731 map->dim, isl_dim_out),
7732 goto error);
7733 dim = isl_map_get_space(map);
7734 dim = isl_space_domain(dim);
7735 result = isl_set_alloc_space(dim, map->n, 0);
7736 if (!result)
7737 goto error;
7738 for (i = 0; i < map->n; ++i)
7739 result = isl_set_add_basic_set(result,
7740 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
7741 isl_map_free(map);
7742 return result;
7743 error:
7744 isl_map_free(map);
7745 return NULL;
7749 * returns [domain -> range] -> range - domain
7751 __isl_give isl_basic_map *isl_basic_map_deltas_map(
7752 __isl_take isl_basic_map *bmap)
7754 int i, k;
7755 isl_space *dim;
7756 isl_basic_map *domain;
7757 int nparam, n;
7758 unsigned total;
7760 if (!isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
7761 bmap->dim, isl_dim_out))
7762 isl_die(bmap->ctx, isl_error_invalid,
7763 "domain and range don't match", goto error);
7765 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7766 n = isl_basic_map_dim(bmap, isl_dim_in);
7768 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
7769 domain = isl_basic_map_universe(dim);
7771 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
7772 bmap = isl_basic_map_apply_range(bmap, domain);
7773 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
7775 total = isl_basic_map_total_dim(bmap);
7777 for (i = 0; i < n; ++i) {
7778 k = isl_basic_map_alloc_equality(bmap);
7779 if (k < 0)
7780 goto error;
7781 isl_seq_clr(bmap->eq[k], 1 + total);
7782 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
7783 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
7784 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
7787 bmap = isl_basic_map_gauss(bmap, NULL);
7788 return isl_basic_map_finalize(bmap);
7789 error:
7790 isl_basic_map_free(bmap);
7791 return NULL;
7795 * returns [domain -> range] -> range - domain
7797 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
7799 int i;
7800 isl_space *domain_dim;
7802 if (!map)
7803 return NULL;
7805 if (!isl_space_tuple_is_equal(map->dim, isl_dim_in,
7806 map->dim, isl_dim_out))
7807 isl_die(map->ctx, isl_error_invalid,
7808 "domain and range don't match", goto error);
7810 map = isl_map_cow(map);
7811 if (!map)
7812 return NULL;
7814 domain_dim = isl_space_from_range(isl_space_domain(isl_map_get_space(map)));
7815 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
7816 map->dim = isl_space_join(map->dim, domain_dim);
7817 if (!map->dim)
7818 goto error;
7819 for (i = 0; i < map->n; ++i) {
7820 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
7821 if (!map->p[i])
7822 goto error;
7824 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
7825 return map;
7826 error:
7827 isl_map_free(map);
7828 return NULL;
7831 static __isl_give isl_basic_map *basic_map_identity(__isl_take isl_space *dims)
7833 struct isl_basic_map *bmap;
7834 unsigned nparam;
7835 unsigned dim;
7836 int i;
7838 if (!dims)
7839 return NULL;
7841 nparam = dims->nparam;
7842 dim = dims->n_out;
7843 bmap = isl_basic_map_alloc_space(dims, 0, dim, 0);
7844 if (!bmap)
7845 goto error;
7847 for (i = 0; i < dim; ++i) {
7848 int j = isl_basic_map_alloc_equality(bmap);
7849 if (j < 0)
7850 goto error;
7851 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
7852 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
7853 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
7855 return isl_basic_map_finalize(bmap);
7856 error:
7857 isl_basic_map_free(bmap);
7858 return NULL;
7861 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *dim)
7863 if (!dim)
7864 return NULL;
7865 if (dim->n_in != dim->n_out)
7866 isl_die(dim->ctx, isl_error_invalid,
7867 "number of input and output dimensions needs to be "
7868 "the same", goto error);
7869 return basic_map_identity(dim);
7870 error:
7871 isl_space_free(dim);
7872 return NULL;
7875 __isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
7877 return isl_map_from_basic_map(isl_basic_map_identity(dim));
7880 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
7882 isl_space *dim = isl_set_get_space(set);
7883 isl_map *id;
7884 id = isl_map_identity(isl_space_map_from_set(dim));
7885 return isl_map_intersect_range(id, set);
7888 /* Construct a basic set with all set dimensions having only non-negative
7889 * values.
7891 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
7892 __isl_take isl_space *space)
7894 int i;
7895 unsigned nparam;
7896 unsigned dim;
7897 struct isl_basic_set *bset;
7899 if (!space)
7900 return NULL;
7901 nparam = space->nparam;
7902 dim = space->n_out;
7903 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
7904 if (!bset)
7905 return NULL;
7906 for (i = 0; i < dim; ++i) {
7907 int k = isl_basic_set_alloc_inequality(bset);
7908 if (k < 0)
7909 goto error;
7910 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
7911 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
7913 return bset;
7914 error:
7915 isl_basic_set_free(bset);
7916 return NULL;
7919 /* Construct the half-space x_pos >= 0.
7921 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *dim,
7922 int pos)
7924 int k;
7925 isl_basic_set *nonneg;
7927 nonneg = isl_basic_set_alloc_space(dim, 0, 0, 1);
7928 k = isl_basic_set_alloc_inequality(nonneg);
7929 if (k < 0)
7930 goto error;
7931 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
7932 isl_int_set_si(nonneg->ineq[k][pos], 1);
7934 return isl_basic_set_finalize(nonneg);
7935 error:
7936 isl_basic_set_free(nonneg);
7937 return NULL;
7940 /* Construct the half-space x_pos <= -1.
7942 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *dim, int pos)
7944 int k;
7945 isl_basic_set *neg;
7947 neg = isl_basic_set_alloc_space(dim, 0, 0, 1);
7948 k = isl_basic_set_alloc_inequality(neg);
7949 if (k < 0)
7950 goto error;
7951 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
7952 isl_int_set_si(neg->ineq[k][0], -1);
7953 isl_int_set_si(neg->ineq[k][pos], -1);
7955 return isl_basic_set_finalize(neg);
7956 error:
7957 isl_basic_set_free(neg);
7958 return NULL;
7961 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
7962 enum isl_dim_type type, unsigned first, unsigned n)
7964 int i;
7965 unsigned offset;
7966 isl_basic_set *nonneg;
7967 isl_basic_set *neg;
7969 if (!set)
7970 return NULL;
7971 if (n == 0)
7972 return set;
7974 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
7976 offset = pos(set->dim, type);
7977 for (i = 0; i < n; ++i) {
7978 nonneg = nonneg_halfspace(isl_set_get_space(set),
7979 offset + first + i);
7980 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
7982 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
7985 return set;
7986 error:
7987 isl_set_free(set);
7988 return NULL;
7991 static int foreach_orthant(__isl_take isl_set *set, int *signs, int first,
7992 int len, int (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
7993 void *user)
7995 isl_set *half;
7997 if (!set)
7998 return -1;
7999 if (isl_set_plain_is_empty(set)) {
8000 isl_set_free(set);
8001 return 0;
8003 if (first == len)
8004 return fn(set, signs, user);
8006 signs[first] = 1;
8007 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
8008 1 + first));
8009 half = isl_set_intersect(half, isl_set_copy(set));
8010 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
8011 goto error;
8013 signs[first] = -1;
8014 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
8015 1 + first));
8016 half = isl_set_intersect(half, set);
8017 return foreach_orthant(half, signs, first + 1, len, fn, user);
8018 error:
8019 isl_set_free(set);
8020 return -1;
8023 /* Call "fn" on the intersections of "set" with each of the orthants
8024 * (except for obviously empty intersections). The orthant is identified
8025 * by the signs array, with each entry having value 1 or -1 according
8026 * to the sign of the corresponding variable.
8028 int isl_set_foreach_orthant(__isl_keep isl_set *set,
8029 int (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8030 void *user)
8032 unsigned nparam;
8033 unsigned nvar;
8034 int *signs;
8035 int r;
8037 if (!set)
8038 return -1;
8039 if (isl_set_plain_is_empty(set))
8040 return 0;
8042 nparam = isl_set_dim(set, isl_dim_param);
8043 nvar = isl_set_dim(set, isl_dim_set);
8045 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
8047 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
8048 fn, user);
8050 free(signs);
8052 return r;
8055 isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8057 return isl_map_is_equal(set_to_map(set1), set_to_map(set2));
8060 isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
8061 __isl_keep isl_basic_map *bmap2)
8063 int is_subset;
8064 struct isl_map *map1;
8065 struct isl_map *map2;
8067 if (!bmap1 || !bmap2)
8068 return isl_bool_error;
8070 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
8071 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
8073 is_subset = isl_map_is_subset(map1, map2);
8075 isl_map_free(map1);
8076 isl_map_free(map2);
8078 return is_subset;
8081 isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
8082 __isl_keep isl_basic_set *bset2)
8084 return isl_basic_map_is_subset(bset1, bset2);
8087 isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
8088 __isl_keep isl_basic_map *bmap2)
8090 isl_bool is_subset;
8092 if (!bmap1 || !bmap2)
8093 return isl_bool_error;
8094 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8095 if (is_subset != isl_bool_true)
8096 return is_subset;
8097 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8098 return is_subset;
8101 isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
8102 __isl_keep isl_basic_set *bset2)
8104 return isl_basic_map_is_equal(
8105 bset_to_bmap(bset1), bset_to_bmap(bset2));
8108 isl_bool isl_map_is_empty(__isl_keep isl_map *map)
8110 int i;
8111 int is_empty;
8113 if (!map)
8114 return isl_bool_error;
8115 for (i = 0; i < map->n; ++i) {
8116 is_empty = isl_basic_map_is_empty(map->p[i]);
8117 if (is_empty < 0)
8118 return isl_bool_error;
8119 if (!is_empty)
8120 return isl_bool_false;
8122 return isl_bool_true;
8125 isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
8127 return map ? map->n == 0 : isl_bool_error;
8130 isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
8132 return set ? set->n == 0 : isl_bool_error;
8135 isl_bool isl_set_is_empty(__isl_keep isl_set *set)
8137 return isl_map_is_empty(set_to_map(set));
8140 isl_bool isl_map_has_equal_space(__isl_keep isl_map *map1,
8141 __isl_keep isl_map *map2)
8143 if (!map1 || !map2)
8144 return isl_bool_error;
8146 return isl_space_is_equal(map1->dim, map2->dim);
8149 isl_bool isl_set_has_equal_space(__isl_keep isl_set *set1,
8150 __isl_keep isl_set *set2)
8152 if (!set1 || !set2)
8153 return isl_bool_error;
8155 return isl_space_is_equal(set1->dim, set2->dim);
8158 static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8160 isl_bool is_subset;
8162 if (!map1 || !map2)
8163 return isl_bool_error;
8164 is_subset = isl_map_is_subset(map1, map2);
8165 if (is_subset != isl_bool_true)
8166 return is_subset;
8167 is_subset = isl_map_is_subset(map2, map1);
8168 return is_subset;
8171 /* Is "map1" equal to "map2"?
8173 * First check if they are obviously equal.
8174 * If not, then perform a more detailed analysis.
8176 isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8178 isl_bool equal;
8180 equal = isl_map_plain_is_equal(map1, map2);
8181 if (equal < 0 || equal)
8182 return equal;
8183 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
8186 isl_bool isl_basic_map_is_strict_subset(
8187 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8189 isl_bool is_subset;
8191 if (!bmap1 || !bmap2)
8192 return isl_bool_error;
8193 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8194 if (is_subset != isl_bool_true)
8195 return is_subset;
8196 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8197 if (is_subset == isl_bool_error)
8198 return is_subset;
8199 return !is_subset;
8202 isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
8203 __isl_keep isl_map *map2)
8205 isl_bool is_subset;
8207 if (!map1 || !map2)
8208 return isl_bool_error;
8209 is_subset = isl_map_is_subset(map1, map2);
8210 if (is_subset != isl_bool_true)
8211 return is_subset;
8212 is_subset = isl_map_is_subset(map2, map1);
8213 if (is_subset == isl_bool_error)
8214 return is_subset;
8215 return !is_subset;
8218 isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
8219 __isl_keep isl_set *set2)
8221 return isl_map_is_strict_subset(set_to_map(set1), set_to_map(set2));
8224 /* Is "bmap" obviously equal to the universe with the same space?
8226 * That is, does it not have any constraints?
8228 isl_bool isl_basic_map_plain_is_universe(__isl_keep isl_basic_map *bmap)
8230 if (!bmap)
8231 return isl_bool_error;
8232 return bmap->n_eq == 0 && bmap->n_ineq == 0;
8235 /* Is "bset" obviously equal to the universe with the same space?
8237 isl_bool isl_basic_set_plain_is_universe(__isl_keep isl_basic_set *bset)
8239 return isl_basic_map_plain_is_universe(bset);
8242 /* If "c" does not involve any existentially quantified variables,
8243 * then set *univ to false and abort
8245 static isl_stat involves_divs(__isl_take isl_constraint *c, void *user)
8247 isl_bool *univ = user;
8248 unsigned n;
8250 n = isl_constraint_dim(c, isl_dim_div);
8251 *univ = isl_constraint_involves_dims(c, isl_dim_div, 0, n);
8252 isl_constraint_free(c);
8253 if (*univ < 0 || !*univ)
8254 return isl_stat_error;
8255 return isl_stat_ok;
8258 /* Is "bmap" equal to the universe with the same space?
8260 * First check if it is obviously equal to the universe.
8261 * If not and if there are any constraints not involving
8262 * existentially quantified variables, then it is certainly
8263 * not equal to the universe.
8264 * Otherwise, check if the universe is a subset of "bmap".
8266 isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
8268 isl_bool univ;
8269 isl_basic_map *test;
8271 univ = isl_basic_map_plain_is_universe(bmap);
8272 if (univ < 0 || univ)
8273 return univ;
8274 if (isl_basic_map_dim(bmap, isl_dim_div) == 0)
8275 return isl_bool_false;
8276 univ = isl_bool_true;
8277 if (isl_basic_map_foreach_constraint(bmap, &involves_divs, &univ) < 0 &&
8278 univ)
8279 return isl_bool_error;
8280 if (univ < 0 || !univ)
8281 return univ;
8282 test = isl_basic_map_universe(isl_basic_map_get_space(bmap));
8283 univ = isl_basic_map_is_subset(test, bmap);
8284 isl_basic_map_free(test);
8285 return univ;
8288 /* Is "bset" equal to the universe with the same space?
8290 isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
8292 return isl_basic_map_is_universe(bset);
8295 isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
8297 int i;
8299 if (!map)
8300 return isl_bool_error;
8302 for (i = 0; i < map->n; ++i) {
8303 isl_bool r = isl_basic_map_plain_is_universe(map->p[i]);
8304 if (r < 0 || r)
8305 return r;
8308 return isl_bool_false;
8311 isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
8313 return isl_map_plain_is_universe(set_to_map(set));
8316 isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
8318 struct isl_basic_set *bset = NULL;
8319 struct isl_vec *sample = NULL;
8320 isl_bool empty, non_empty;
8322 if (!bmap)
8323 return isl_bool_error;
8325 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
8326 return isl_bool_true;
8328 if (isl_basic_map_plain_is_universe(bmap))
8329 return isl_bool_false;
8331 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
8332 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
8333 copy = isl_basic_map_remove_redundancies(copy);
8334 empty = isl_basic_map_plain_is_empty(copy);
8335 isl_basic_map_free(copy);
8336 return empty;
8339 non_empty = isl_basic_map_plain_is_non_empty(bmap);
8340 if (non_empty < 0)
8341 return isl_bool_error;
8342 if (non_empty)
8343 return isl_bool_false;
8344 isl_vec_free(bmap->sample);
8345 bmap->sample = NULL;
8346 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
8347 if (!bset)
8348 return isl_bool_error;
8349 sample = isl_basic_set_sample_vec(bset);
8350 if (!sample)
8351 return isl_bool_error;
8352 empty = sample->size == 0;
8353 isl_vec_free(bmap->sample);
8354 bmap->sample = sample;
8355 if (empty)
8356 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
8358 return empty;
8361 isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
8363 if (!bmap)
8364 return isl_bool_error;
8365 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
8368 isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
8370 if (!bset)
8371 return isl_bool_error;
8372 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
8375 /* Is "bmap" known to be non-empty?
8377 * That is, is the cached sample still valid?
8379 isl_bool isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map *bmap)
8381 unsigned total;
8383 if (!bmap)
8384 return isl_bool_error;
8385 if (!bmap->sample)
8386 return isl_bool_false;
8387 total = 1 + isl_basic_map_total_dim(bmap);
8388 if (bmap->sample->size != total)
8389 return isl_bool_false;
8390 return isl_basic_map_contains(bmap, bmap->sample);
8393 isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
8395 return isl_basic_map_is_empty(bset_to_bmap(bset));
8398 struct isl_map *isl_basic_map_union(
8399 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8401 struct isl_map *map;
8402 if (!bmap1 || !bmap2)
8403 goto error;
8405 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
8407 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
8408 if (!map)
8409 goto error;
8410 map = isl_map_add_basic_map(map, bmap1);
8411 map = isl_map_add_basic_map(map, bmap2);
8412 return map;
8413 error:
8414 isl_basic_map_free(bmap1);
8415 isl_basic_map_free(bmap2);
8416 return NULL;
8419 struct isl_set *isl_basic_set_union(
8420 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
8422 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1),
8423 bset_to_bmap(bset2)));
8426 /* Order divs such that any div only depends on previous divs */
8427 struct isl_basic_map *isl_basic_map_order_divs(struct isl_basic_map *bmap)
8429 int i;
8430 unsigned off;
8432 if (!bmap)
8433 return NULL;
8435 off = isl_space_dim(bmap->dim, isl_dim_all);
8437 for (i = 0; i < bmap->n_div; ++i) {
8438 int pos;
8439 if (isl_int_is_zero(bmap->div[i][0]))
8440 continue;
8441 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
8442 bmap->n_div-i);
8443 if (pos == -1)
8444 continue;
8445 if (pos == 0)
8446 isl_die(isl_basic_map_get_ctx(bmap), isl_error_internal,
8447 "integer division depends on itself",
8448 return isl_basic_map_free(bmap));
8449 isl_basic_map_swap_div(bmap, i, i + pos);
8450 --i;
8452 return bmap;
8455 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
8457 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset)));
8460 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
8462 int i;
8464 if (!map)
8465 return 0;
8467 for (i = 0; i < map->n; ++i) {
8468 map->p[i] = isl_basic_map_order_divs(map->p[i]);
8469 if (!map->p[i])
8470 goto error;
8473 return map;
8474 error:
8475 isl_map_free(map);
8476 return NULL;
8479 /* Sort the local variables of "bset".
8481 __isl_give isl_basic_set *isl_basic_set_sort_divs(
8482 __isl_take isl_basic_set *bset)
8484 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset)));
8487 /* Apply the expansion computed by isl_merge_divs.
8488 * The expansion itself is given by "exp" while the resulting
8489 * list of divs is given by "div".
8491 * Move the integer divisions of "bmap" into the right position
8492 * according to "exp" and then introduce the additional integer
8493 * divisions, adding div constraints.
8494 * The moving should be done first to avoid moving coefficients
8495 * in the definitions of the extra integer divisions.
8497 __isl_give isl_basic_map *isl_basic_map_expand_divs(
8498 __isl_take isl_basic_map *bmap, __isl_take isl_mat *div, int *exp)
8500 int i, j;
8501 int n_div;
8503 bmap = isl_basic_map_cow(bmap);
8504 if (!bmap || !div)
8505 goto error;
8507 if (div->n_row < bmap->n_div)
8508 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
8509 "not an expansion", goto error);
8511 n_div = bmap->n_div;
8512 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
8513 div->n_row - n_div, 0,
8514 2 * (div->n_row - n_div));
8516 for (i = n_div; i < div->n_row; ++i)
8517 if (isl_basic_map_alloc_div(bmap) < 0)
8518 goto error;
8520 for (j = n_div - 1; j >= 0; --j) {
8521 if (exp[j] == j)
8522 break;
8523 isl_basic_map_swap_div(bmap, j, exp[j]);
8525 j = 0;
8526 for (i = 0; i < div->n_row; ++i) {
8527 if (j < n_div && exp[j] == i) {
8528 j++;
8529 } else {
8530 isl_seq_cpy(bmap->div[i], div->row[i], div->n_col);
8531 if (isl_basic_map_div_is_marked_unknown(bmap, i))
8532 continue;
8533 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
8534 goto error;
8538 isl_mat_free(div);
8539 return bmap;
8540 error:
8541 isl_basic_map_free(bmap);
8542 isl_mat_free(div);
8543 return NULL;
8546 /* Apply the expansion computed by isl_merge_divs.
8547 * The expansion itself is given by "exp" while the resulting
8548 * list of divs is given by "div".
8550 __isl_give isl_basic_set *isl_basic_set_expand_divs(
8551 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
8553 return isl_basic_map_expand_divs(bset, div, exp);
8556 /* Look for a div in dst that corresponds to the div "div" in src.
8557 * The divs before "div" in src and dst are assumed to be the same.
8559 * Returns -1 if no corresponding div was found and the position
8560 * of the corresponding div in dst otherwise.
8562 static int find_div(struct isl_basic_map *dst,
8563 struct isl_basic_map *src, unsigned div)
8565 int i;
8567 unsigned total = isl_space_dim(src->dim, isl_dim_all);
8569 isl_assert(dst->ctx, div <= dst->n_div, return -1);
8570 for (i = div; i < dst->n_div; ++i)
8571 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
8572 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
8573 dst->n_div - div) == -1)
8574 return i;
8575 return -1;
8578 /* Align the divs of "dst" to those of "src", adding divs from "src"
8579 * if needed. That is, make sure that the first src->n_div divs
8580 * of the result are equal to those of src.
8582 * The result is not finalized as by design it will have redundant
8583 * divs if any divs from "src" were copied.
8585 __isl_give isl_basic_map *isl_basic_map_align_divs(
8586 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
8588 int i;
8589 int known, extended;
8590 unsigned total;
8592 if (!dst || !src)
8593 return isl_basic_map_free(dst);
8595 if (src->n_div == 0)
8596 return dst;
8598 known = isl_basic_map_divs_known(src);
8599 if (known < 0)
8600 return isl_basic_map_free(dst);
8601 if (!known)
8602 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
8603 "some src divs are unknown",
8604 return isl_basic_map_free(dst));
8606 src = isl_basic_map_order_divs(src);
8608 extended = 0;
8609 total = isl_space_dim(src->dim, isl_dim_all);
8610 for (i = 0; i < src->n_div; ++i) {
8611 int j = find_div(dst, src, i);
8612 if (j < 0) {
8613 if (!extended) {
8614 int extra = src->n_div - i;
8615 dst = isl_basic_map_cow(dst);
8616 if (!dst)
8617 return NULL;
8618 dst = isl_basic_map_extend_space(dst,
8619 isl_space_copy(dst->dim),
8620 extra, 0, 2 * extra);
8621 extended = 1;
8623 j = isl_basic_map_alloc_div(dst);
8624 if (j < 0)
8625 return isl_basic_map_free(dst);
8626 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
8627 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
8628 if (isl_basic_map_add_div_constraints(dst, j) < 0)
8629 return isl_basic_map_free(dst);
8631 if (j != i)
8632 isl_basic_map_swap_div(dst, i, j);
8634 return dst;
8637 struct isl_basic_set *isl_basic_set_align_divs(
8638 struct isl_basic_set *dst, struct isl_basic_set *src)
8640 return bset_from_bmap(isl_basic_map_align_divs(bset_to_bmap(dst),
8641 bset_to_bmap(src)));
8644 struct isl_map *isl_map_align_divs(struct isl_map *map)
8646 int i;
8648 if (!map)
8649 return NULL;
8650 if (map->n == 0)
8651 return map;
8652 map = isl_map_compute_divs(map);
8653 map = isl_map_cow(map);
8654 if (!map)
8655 return NULL;
8657 for (i = 1; i < map->n; ++i)
8658 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
8659 for (i = 1; i < map->n; ++i) {
8660 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
8661 if (!map->p[i])
8662 return isl_map_free(map);
8665 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
8666 return map;
8669 struct isl_set *isl_set_align_divs(struct isl_set *set)
8671 return set_from_map(isl_map_align_divs(set_to_map(set)));
8674 /* Align the divs of the basic maps in "map" to those
8675 * of the basic maps in "list", as well as to the other basic maps in "map".
8676 * The elements in "list" are assumed to have known divs.
8678 __isl_give isl_map *isl_map_align_divs_to_basic_map_list(
8679 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
8681 int i, n;
8683 map = isl_map_compute_divs(map);
8684 map = isl_map_cow(map);
8685 if (!map || !list)
8686 return isl_map_free(map);
8687 if (map->n == 0)
8688 return map;
8690 n = isl_basic_map_list_n_basic_map(list);
8691 for (i = 0; i < n; ++i) {
8692 isl_basic_map *bmap;
8694 bmap = isl_basic_map_list_get_basic_map(list, i);
8695 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
8696 isl_basic_map_free(bmap);
8698 if (!map->p[0])
8699 return isl_map_free(map);
8701 return isl_map_align_divs(map);
8704 /* Align the divs of each element of "list" to those of "bmap".
8705 * Both "bmap" and the elements of "list" are assumed to have known divs.
8707 __isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
8708 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
8710 int i, n;
8712 if (!list || !bmap)
8713 return isl_basic_map_list_free(list);
8715 n = isl_basic_map_list_n_basic_map(list);
8716 for (i = 0; i < n; ++i) {
8717 isl_basic_map *bmap_i;
8719 bmap_i = isl_basic_map_list_get_basic_map(list, i);
8720 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
8721 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
8724 return list;
8727 static __isl_give isl_set *set_apply( __isl_take isl_set *set,
8728 __isl_take isl_map *map)
8730 isl_bool ok;
8732 ok = isl_map_compatible_domain(map, set);
8733 if (ok < 0)
8734 goto error;
8735 if (!ok)
8736 isl_die(isl_set_get_ctx(set), isl_error_invalid,
8737 "incompatible spaces", goto error);
8738 map = isl_map_intersect_domain(map, set);
8739 set = isl_map_range(map);
8740 return set;
8741 error:
8742 isl_set_free(set);
8743 isl_map_free(map);
8744 return NULL;
8747 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
8748 __isl_take isl_map *map)
8750 return isl_map_align_params_map_map_and(set, map, &set_apply);
8753 /* There is no need to cow as removing empty parts doesn't change
8754 * the meaning of the set.
8756 struct isl_map *isl_map_remove_empty_parts(struct isl_map *map)
8758 int i;
8760 if (!map)
8761 return NULL;
8763 for (i = map->n - 1; i >= 0; --i)
8764 remove_if_empty(map, i);
8766 return map;
8769 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
8771 return set_from_map(isl_map_remove_empty_parts(set_to_map(set)));
8774 static __isl_give isl_basic_map *map_copy_basic_map(__isl_keep isl_map *map)
8776 struct isl_basic_map *bmap;
8777 if (!map || map->n == 0)
8778 return NULL;
8779 bmap = map->p[map->n-1];
8780 isl_assert(map->ctx, ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL), return NULL);
8781 return isl_basic_map_copy(bmap);
8784 __isl_give isl_basic_map *isl_map_copy_basic_map(__isl_keep isl_map *map)
8786 return map_copy_basic_map(map);
8789 struct isl_basic_set *isl_set_copy_basic_set(struct isl_set *set)
8791 return bset_from_bmap(map_copy_basic_map(set_to_map(set)));
8794 static __isl_give isl_map *map_drop_basic_map(__isl_take isl_map *map,
8795 __isl_keep isl_basic_map *bmap)
8797 int i;
8799 if (!map || !bmap)
8800 goto error;
8801 for (i = map->n-1; i >= 0; --i) {
8802 if (map->p[i] != bmap)
8803 continue;
8804 map = isl_map_cow(map);
8805 if (!map)
8806 goto error;
8807 isl_basic_map_free(map->p[i]);
8808 if (i != map->n-1) {
8809 ISL_F_CLR(map, ISL_SET_NORMALIZED);
8810 map->p[i] = map->p[map->n-1];
8812 map->n--;
8813 return map;
8815 return map;
8816 error:
8817 isl_map_free(map);
8818 return NULL;
8821 __isl_give isl_map *isl_map_drop_basic_map(__isl_take isl_map *map,
8822 __isl_keep isl_basic_map *bmap)
8824 return map_drop_basic_map(map, bmap);
8827 struct isl_set *isl_set_drop_basic_set(struct isl_set *set,
8828 struct isl_basic_set *bset)
8830 return set_from_map(map_drop_basic_map(set_to_map(set),
8831 bset_to_bmap(bset)));
8834 /* Given two basic sets bset1 and bset2, compute the maximal difference
8835 * between the values of dimension pos in bset1 and those in bset2
8836 * for any common value of the parameters and dimensions preceding pos.
8838 static enum isl_lp_result basic_set_maximal_difference_at(
8839 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
8840 int pos, isl_int *opt)
8842 isl_basic_map *bmap1;
8843 isl_basic_map *bmap2;
8844 struct isl_ctx *ctx;
8845 struct isl_vec *obj;
8846 unsigned total;
8847 unsigned nparam;
8848 unsigned dim1;
8849 enum isl_lp_result res;
8851 if (!bset1 || !bset2)
8852 return isl_lp_error;
8854 nparam = isl_basic_set_n_param(bset1);
8855 dim1 = isl_basic_set_n_dim(bset1);
8857 bmap1 = isl_basic_map_from_range(isl_basic_set_copy(bset1));
8858 bmap2 = isl_basic_map_from_range(isl_basic_set_copy(bset2));
8859 bmap1 = isl_basic_map_move_dims(bmap1, isl_dim_in, 0,
8860 isl_dim_out, 0, pos);
8861 bmap2 = isl_basic_map_move_dims(bmap2, isl_dim_in, 0,
8862 isl_dim_out, 0, pos);
8863 bmap1 = isl_basic_map_range_product(bmap1, bmap2);
8864 if (!bmap1)
8865 return isl_lp_error;
8867 total = isl_basic_map_total_dim(bmap1);
8868 ctx = bmap1->ctx;
8869 obj = isl_vec_alloc(ctx, 1 + total);
8870 if (!obj)
8871 goto error;
8872 isl_seq_clr(obj->block.data, 1 + total);
8873 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
8874 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
8875 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
8876 opt, NULL, NULL);
8877 isl_basic_map_free(bmap1);
8878 isl_vec_free(obj);
8879 return res;
8880 error:
8881 isl_basic_map_free(bmap1);
8882 return isl_lp_error;
8885 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
8886 * for any common value of the parameters and dimensions preceding pos
8887 * in both basic sets, the values of dimension pos in bset1 are
8888 * smaller or larger than those in bset2.
8890 * Returns
8891 * 1 if bset1 follows bset2
8892 * -1 if bset1 precedes bset2
8893 * 0 if bset1 and bset2 are incomparable
8894 * -2 if some error occurred.
8896 int isl_basic_set_compare_at(struct isl_basic_set *bset1,
8897 struct isl_basic_set *bset2, int pos)
8899 isl_int opt;
8900 enum isl_lp_result res;
8901 int cmp;
8903 isl_int_init(opt);
8905 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
8907 if (res == isl_lp_empty)
8908 cmp = 0;
8909 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
8910 res == isl_lp_unbounded)
8911 cmp = 1;
8912 else if (res == isl_lp_ok && isl_int_is_neg(opt))
8913 cmp = -1;
8914 else
8915 cmp = -2;
8917 isl_int_clear(opt);
8918 return cmp;
8921 /* Given two basic sets bset1 and bset2, check whether
8922 * for any common value of the parameters and dimensions preceding pos
8923 * there is a value of dimension pos in bset1 that is larger
8924 * than a value of the same dimension in bset2.
8926 * Return
8927 * 1 if there exists such a pair
8928 * 0 if there is no such pair, but there is a pair of equal values
8929 * -1 otherwise
8930 * -2 if some error occurred.
8932 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
8933 __isl_keep isl_basic_set *bset2, int pos)
8935 isl_int opt;
8936 enum isl_lp_result res;
8937 int cmp;
8939 isl_int_init(opt);
8941 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
8943 if (res == isl_lp_empty)
8944 cmp = -1;
8945 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
8946 res == isl_lp_unbounded)
8947 cmp = 1;
8948 else if (res == isl_lp_ok && isl_int_is_neg(opt))
8949 cmp = -1;
8950 else if (res == isl_lp_ok)
8951 cmp = 0;
8952 else
8953 cmp = -2;
8955 isl_int_clear(opt);
8956 return cmp;
8959 /* Given two sets set1 and set2, check whether
8960 * for any common value of the parameters and dimensions preceding pos
8961 * there is a value of dimension pos in set1 that is larger
8962 * than a value of the same dimension in set2.
8964 * Return
8965 * 1 if there exists such a pair
8966 * 0 if there is no such pair, but there is a pair of equal values
8967 * -1 otherwise
8968 * -2 if some error occurred.
8970 int isl_set_follows_at(__isl_keep isl_set *set1,
8971 __isl_keep isl_set *set2, int pos)
8973 int i, j;
8974 int follows = -1;
8976 if (!set1 || !set2)
8977 return -2;
8979 for (i = 0; i < set1->n; ++i)
8980 for (j = 0; j < set2->n; ++j) {
8981 int f;
8982 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
8983 if (f == 1 || f == -2)
8984 return f;
8985 if (f > follows)
8986 follows = f;
8989 return follows;
8992 static isl_bool isl_basic_map_plain_has_fixed_var(
8993 __isl_keep isl_basic_map *bmap, unsigned pos, isl_int *val)
8995 int i;
8996 int d;
8997 unsigned total;
8999 if (!bmap)
9000 return isl_bool_error;
9001 total = isl_basic_map_total_dim(bmap);
9002 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
9003 for (; d+1 > pos; --d)
9004 if (!isl_int_is_zero(bmap->eq[i][1+d]))
9005 break;
9006 if (d != pos)
9007 continue;
9008 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
9009 return isl_bool_false;
9010 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
9011 return isl_bool_false;
9012 if (!isl_int_is_one(bmap->eq[i][1+d]))
9013 return isl_bool_false;
9014 if (val)
9015 isl_int_neg(*val, bmap->eq[i][0]);
9016 return isl_bool_true;
9018 return isl_bool_false;
9021 static isl_bool isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
9022 unsigned pos, isl_int *val)
9024 int i;
9025 isl_int v;
9026 isl_int tmp;
9027 isl_bool fixed;
9029 if (!map)
9030 return isl_bool_error;
9031 if (map->n == 0)
9032 return isl_bool_false;
9033 if (map->n == 1)
9034 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
9035 isl_int_init(v);
9036 isl_int_init(tmp);
9037 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
9038 for (i = 1; fixed == isl_bool_true && i < map->n; ++i) {
9039 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
9040 if (fixed == isl_bool_true && isl_int_ne(tmp, v))
9041 fixed = isl_bool_false;
9043 if (val)
9044 isl_int_set(*val, v);
9045 isl_int_clear(tmp);
9046 isl_int_clear(v);
9047 return fixed;
9050 static isl_bool isl_basic_set_plain_has_fixed_var(
9051 __isl_keep isl_basic_set *bset, unsigned pos, isl_int *val)
9053 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset),
9054 pos, val);
9057 static int isl_set_plain_has_fixed_var(__isl_keep isl_set *set, unsigned pos,
9058 isl_int *val)
9060 return isl_map_plain_has_fixed_var(set_to_map(set), pos, val);
9063 isl_bool isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
9064 enum isl_dim_type type, unsigned pos, isl_int *val)
9066 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
9067 return isl_bool_error;
9068 return isl_basic_map_plain_has_fixed_var(bmap,
9069 isl_basic_map_offset(bmap, type) - 1 + pos, val);
9072 /* If "bmap" obviously lies on a hyperplane where the given dimension
9073 * has a fixed value, then return that value.
9074 * Otherwise return NaN.
9076 __isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
9077 __isl_keep isl_basic_map *bmap,
9078 enum isl_dim_type type, unsigned pos)
9080 isl_ctx *ctx;
9081 isl_val *v;
9082 isl_bool fixed;
9084 if (!bmap)
9085 return NULL;
9086 ctx = isl_basic_map_get_ctx(bmap);
9087 v = isl_val_alloc(ctx);
9088 if (!v)
9089 return NULL;
9090 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
9091 if (fixed < 0)
9092 return isl_val_free(v);
9093 if (fixed) {
9094 isl_int_set_si(v->d, 1);
9095 return v;
9097 isl_val_free(v);
9098 return isl_val_nan(ctx);
9101 isl_bool isl_map_plain_is_fixed(__isl_keep isl_map *map,
9102 enum isl_dim_type type, unsigned pos, isl_int *val)
9104 if (pos >= isl_map_dim(map, type))
9105 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9106 "position out of bounds", return isl_bool_error);
9107 return isl_map_plain_has_fixed_var(map,
9108 map_offset(map, type) - 1 + pos, val);
9111 /* If "map" obviously lies on a hyperplane where the given dimension
9112 * has a fixed value, then return that value.
9113 * Otherwise return NaN.
9115 __isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
9116 enum isl_dim_type type, unsigned pos)
9118 isl_ctx *ctx;
9119 isl_val *v;
9120 isl_bool fixed;
9122 if (!map)
9123 return NULL;
9124 ctx = isl_map_get_ctx(map);
9125 v = isl_val_alloc(ctx);
9126 if (!v)
9127 return NULL;
9128 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
9129 if (fixed < 0)
9130 return isl_val_free(v);
9131 if (fixed) {
9132 isl_int_set_si(v->d, 1);
9133 return v;
9135 isl_val_free(v);
9136 return isl_val_nan(ctx);
9139 /* If "set" obviously lies on a hyperplane where the given dimension
9140 * has a fixed value, then return that value.
9141 * Otherwise return NaN.
9143 __isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
9144 enum isl_dim_type type, unsigned pos)
9146 return isl_map_plain_get_val_if_fixed(set, type, pos);
9149 isl_bool isl_set_plain_is_fixed(__isl_keep isl_set *set,
9150 enum isl_dim_type type, unsigned pos, isl_int *val)
9152 return isl_map_plain_is_fixed(set, type, pos, val);
9155 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9156 * then return this fixed value in *val.
9158 isl_bool isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
9159 unsigned dim, isl_int *val)
9161 return isl_basic_set_plain_has_fixed_var(bset,
9162 isl_basic_set_n_param(bset) + dim, val);
9165 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9166 * then return this fixed value in *val.
9168 int isl_set_plain_dim_is_fixed(__isl_keep isl_set *set,
9169 unsigned dim, isl_int *val)
9171 return isl_set_plain_has_fixed_var(set, isl_set_n_param(set) + dim, val);
9174 /* Check if input variable in has fixed value and if so and if val is not NULL,
9175 * then return this fixed value in *val.
9177 int isl_map_plain_input_is_fixed(__isl_keep isl_map *map,
9178 unsigned in, isl_int *val)
9180 return isl_map_plain_has_fixed_var(map, isl_map_n_param(map) + in, val);
9183 /* Check if dimension dim has an (obvious) fixed lower bound and if so
9184 * and if val is not NULL, then return this lower bound in *val.
9186 int isl_basic_set_plain_dim_has_fixed_lower_bound(
9187 __isl_keep isl_basic_set *bset, unsigned dim, isl_int *val)
9189 int i, i_eq = -1, i_ineq = -1;
9190 isl_int *c;
9191 unsigned total;
9192 unsigned nparam;
9194 if (!bset)
9195 return -1;
9196 total = isl_basic_set_total_dim(bset);
9197 nparam = isl_basic_set_n_param(bset);
9198 for (i = 0; i < bset->n_eq; ++i) {
9199 if (isl_int_is_zero(bset->eq[i][1+nparam+dim]))
9200 continue;
9201 if (i_eq != -1)
9202 return 0;
9203 i_eq = i;
9205 for (i = 0; i < bset->n_ineq; ++i) {
9206 if (!isl_int_is_pos(bset->ineq[i][1+nparam+dim]))
9207 continue;
9208 if (i_eq != -1 || i_ineq != -1)
9209 return 0;
9210 i_ineq = i;
9212 if (i_eq == -1 && i_ineq == -1)
9213 return 0;
9214 c = i_eq != -1 ? bset->eq[i_eq] : bset->ineq[i_ineq];
9215 /* The coefficient should always be one due to normalization. */
9216 if (!isl_int_is_one(c[1+nparam+dim]))
9217 return 0;
9218 if (isl_seq_first_non_zero(c+1, nparam+dim) != -1)
9219 return 0;
9220 if (isl_seq_first_non_zero(c+1+nparam+dim+1,
9221 total - nparam - dim - 1) != -1)
9222 return 0;
9223 if (val)
9224 isl_int_neg(*val, c[0]);
9225 return 1;
9228 int isl_set_plain_dim_has_fixed_lower_bound(__isl_keep isl_set *set,
9229 unsigned dim, isl_int *val)
9231 int i;
9232 isl_int v;
9233 isl_int tmp;
9234 int fixed;
9236 if (!set)
9237 return -1;
9238 if (set->n == 0)
9239 return 0;
9240 if (set->n == 1)
9241 return isl_basic_set_plain_dim_has_fixed_lower_bound(set->p[0],
9242 dim, val);
9243 isl_int_init(v);
9244 isl_int_init(tmp);
9245 fixed = isl_basic_set_plain_dim_has_fixed_lower_bound(set->p[0],
9246 dim, &v);
9247 for (i = 1; fixed == 1 && i < set->n; ++i) {
9248 fixed = isl_basic_set_plain_dim_has_fixed_lower_bound(set->p[i],
9249 dim, &tmp);
9250 if (fixed == 1 && isl_int_ne(tmp, v))
9251 fixed = 0;
9253 if (val)
9254 isl_int_set(*val, v);
9255 isl_int_clear(tmp);
9256 isl_int_clear(v);
9257 return fixed;
9260 /* Return -1 if the constraint "c1" should be sorted before "c2"
9261 * and 1 if it should be sorted after "c2".
9262 * Return 0 if the two constraints are the same (up to the constant term).
9264 * In particular, if a constraint involves later variables than another
9265 * then it is sorted after this other constraint.
9266 * uset_gist depends on constraints without existentially quantified
9267 * variables sorting first.
9269 * For constraints that have the same latest variable, those
9270 * with the same coefficient for this latest variable (first in absolute value
9271 * and then in actual value) are grouped together.
9272 * This is useful for detecting pairs of constraints that can
9273 * be chained in their printed representation.
9275 * Finally, within a group, constraints are sorted according to
9276 * their coefficients (excluding the constant term).
9278 static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
9280 isl_int **c1 = (isl_int **) p1;
9281 isl_int **c2 = (isl_int **) p2;
9282 int l1, l2;
9283 unsigned size = *(unsigned *) arg;
9284 int cmp;
9286 l1 = isl_seq_last_non_zero(*c1 + 1, size);
9287 l2 = isl_seq_last_non_zero(*c2 + 1, size);
9289 if (l1 != l2)
9290 return l1 - l2;
9292 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9293 if (cmp != 0)
9294 return cmp;
9295 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9296 if (cmp != 0)
9297 return -cmp;
9299 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
9302 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9303 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9304 * and 0 if the two constraints are the same (up to the constant term).
9306 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
9307 isl_int *c1, isl_int *c2)
9309 unsigned total;
9311 if (!bmap)
9312 return -2;
9313 total = isl_basic_map_total_dim(bmap);
9314 return sort_constraint_cmp(&c1, &c2, &total);
9317 __isl_give isl_basic_map *isl_basic_map_sort_constraints(
9318 __isl_take isl_basic_map *bmap)
9320 unsigned total;
9322 if (!bmap)
9323 return NULL;
9324 if (bmap->n_ineq == 0)
9325 return bmap;
9326 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9327 return bmap;
9328 total = isl_basic_map_total_dim(bmap);
9329 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
9330 &sort_constraint_cmp, &total) < 0)
9331 return isl_basic_map_free(bmap);
9332 return bmap;
9335 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
9336 __isl_take isl_basic_set *bset)
9338 isl_basic_map *bmap = bset_to_bmap(bset);
9339 return bset_from_bmap(isl_basic_map_sort_constraints(bmap));
9342 struct isl_basic_map *isl_basic_map_normalize(struct isl_basic_map *bmap)
9344 if (!bmap)
9345 return NULL;
9346 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9347 return bmap;
9348 bmap = isl_basic_map_remove_redundancies(bmap);
9349 bmap = isl_basic_map_sort_constraints(bmap);
9350 if (bmap)
9351 ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED);
9352 return bmap;
9355 struct isl_basic_set *isl_basic_set_normalize(struct isl_basic_set *bset)
9357 return bset_from_bmap(isl_basic_map_normalize(bset_to_bmap(bset)));
9360 int isl_basic_map_plain_cmp(const __isl_keep isl_basic_map *bmap1,
9361 const __isl_keep isl_basic_map *bmap2)
9363 int i, cmp;
9364 unsigned total;
9366 if (!bmap1 || !bmap2)
9367 return -1;
9369 if (bmap1 == bmap2)
9370 return 0;
9371 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
9372 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
9373 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
9374 if (isl_basic_map_n_param(bmap1) != isl_basic_map_n_param(bmap2))
9375 return isl_basic_map_n_param(bmap1) - isl_basic_map_n_param(bmap2);
9376 if (isl_basic_map_n_in(bmap1) != isl_basic_map_n_in(bmap2))
9377 return isl_basic_map_n_out(bmap1) - isl_basic_map_n_out(bmap2);
9378 if (isl_basic_map_n_out(bmap1) != isl_basic_map_n_out(bmap2))
9379 return isl_basic_map_n_out(bmap1) - isl_basic_map_n_out(bmap2);
9380 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
9381 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9382 return 0;
9383 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
9384 return 1;
9385 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9386 return -1;
9387 if (bmap1->n_eq != bmap2->n_eq)
9388 return bmap1->n_eq - bmap2->n_eq;
9389 if (bmap1->n_ineq != bmap2->n_ineq)
9390 return bmap1->n_ineq - bmap2->n_ineq;
9391 if (bmap1->n_div != bmap2->n_div)
9392 return bmap1->n_div - bmap2->n_div;
9393 total = isl_basic_map_total_dim(bmap1);
9394 for (i = 0; i < bmap1->n_eq; ++i) {
9395 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
9396 if (cmp)
9397 return cmp;
9399 for (i = 0; i < bmap1->n_ineq; ++i) {
9400 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
9401 if (cmp)
9402 return cmp;
9404 for (i = 0; i < bmap1->n_div; ++i) {
9405 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
9406 if (cmp)
9407 return cmp;
9409 return 0;
9412 int isl_basic_set_plain_cmp(const __isl_keep isl_basic_set *bset1,
9413 const __isl_keep isl_basic_set *bset2)
9415 return isl_basic_map_plain_cmp(bset1, bset2);
9418 int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
9420 int i, cmp;
9422 if (set1 == set2)
9423 return 0;
9424 if (set1->n != set2->n)
9425 return set1->n - set2->n;
9427 for (i = 0; i < set1->n; ++i) {
9428 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
9429 if (cmp)
9430 return cmp;
9433 return 0;
9436 isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
9437 __isl_keep isl_basic_map *bmap2)
9439 if (!bmap1 || !bmap2)
9440 return isl_bool_error;
9441 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
9444 isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
9445 __isl_keep isl_basic_set *bset2)
9447 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1),
9448 bset_to_bmap(bset2));
9451 static int qsort_bmap_cmp(const void *p1, const void *p2)
9453 const struct isl_basic_map *bmap1 = *(const struct isl_basic_map **)p1;
9454 const struct isl_basic_map *bmap2 = *(const struct isl_basic_map **)p2;
9456 return isl_basic_map_plain_cmp(bmap1, bmap2);
9459 /* Sort the basic maps of "map" and remove duplicate basic maps.
9461 * While removing basic maps, we make sure that the basic maps remain
9462 * sorted because isl_map_normalize expects the basic maps of the result
9463 * to be sorted.
9465 static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
9467 int i, j;
9469 map = isl_map_remove_empty_parts(map);
9470 if (!map)
9471 return NULL;
9472 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
9473 for (i = map->n - 1; i >= 1; --i) {
9474 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
9475 continue;
9476 isl_basic_map_free(map->p[i-1]);
9477 for (j = i; j < map->n; ++j)
9478 map->p[j - 1] = map->p[j];
9479 map->n--;
9482 return map;
9485 /* Remove obvious duplicates among the basic maps of "map".
9487 * Unlike isl_map_normalize, this function does not remove redundant
9488 * constraints and only removes duplicates that have exactly the same
9489 * constraints in the input. It does sort the constraints and
9490 * the basic maps to ease the detection of duplicates.
9492 * If "map" has already been normalized or if the basic maps are
9493 * disjoint, then there can be no duplicates.
9495 __isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
9497 int i;
9498 isl_basic_map *bmap;
9500 if (!map)
9501 return NULL;
9502 if (map->n <= 1)
9503 return map;
9504 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
9505 return map;
9506 for (i = 0; i < map->n; ++i) {
9507 bmap = isl_basic_map_copy(map->p[i]);
9508 bmap = isl_basic_map_sort_constraints(bmap);
9509 if (!bmap)
9510 return isl_map_free(map);
9511 isl_basic_map_free(map->p[i]);
9512 map->p[i] = bmap;
9515 map = sort_and_remove_duplicates(map);
9516 return map;
9519 /* We normalize in place, but if anything goes wrong we need
9520 * to return NULL, so we need to make sure we don't change the
9521 * meaning of any possible other copies of map.
9523 __isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
9525 int i;
9526 struct isl_basic_map *bmap;
9528 if (!map)
9529 return NULL;
9530 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
9531 return map;
9532 for (i = 0; i < map->n; ++i) {
9533 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
9534 if (!bmap)
9535 goto error;
9536 isl_basic_map_free(map->p[i]);
9537 map->p[i] = bmap;
9540 map = sort_and_remove_duplicates(map);
9541 if (map)
9542 ISL_F_SET(map, ISL_MAP_NORMALIZED);
9543 return map;
9544 error:
9545 isl_map_free(map);
9546 return NULL;
9549 struct isl_set *isl_set_normalize(struct isl_set *set)
9551 return set_from_map(isl_map_normalize(set_to_map(set)));
9554 isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
9555 __isl_keep isl_map *map2)
9557 int i;
9558 isl_bool equal;
9560 if (!map1 || !map2)
9561 return isl_bool_error;
9563 if (map1 == map2)
9564 return isl_bool_true;
9565 if (!isl_space_is_equal(map1->dim, map2->dim))
9566 return isl_bool_false;
9568 map1 = isl_map_copy(map1);
9569 map2 = isl_map_copy(map2);
9570 map1 = isl_map_normalize(map1);
9571 map2 = isl_map_normalize(map2);
9572 if (!map1 || !map2)
9573 goto error;
9574 equal = map1->n == map2->n;
9575 for (i = 0; equal && i < map1->n; ++i) {
9576 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
9577 if (equal < 0)
9578 goto error;
9580 isl_map_free(map1);
9581 isl_map_free(map2);
9582 return equal;
9583 error:
9584 isl_map_free(map1);
9585 isl_map_free(map2);
9586 return isl_bool_error;
9589 isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
9590 __isl_keep isl_set *set2)
9592 return isl_map_plain_is_equal(set_to_map(set1), set_to_map(set2));
9595 /* Return an interval that ranges from min to max (inclusive)
9597 struct isl_basic_set *isl_basic_set_interval(struct isl_ctx *ctx,
9598 isl_int min, isl_int max)
9600 int k;
9601 struct isl_basic_set *bset = NULL;
9603 bset = isl_basic_set_alloc(ctx, 0, 1, 0, 0, 2);
9604 if (!bset)
9605 goto error;
9607 k = isl_basic_set_alloc_inequality(bset);
9608 if (k < 0)
9609 goto error;
9610 isl_int_set_si(bset->ineq[k][1], 1);
9611 isl_int_neg(bset->ineq[k][0], min);
9613 k = isl_basic_set_alloc_inequality(bset);
9614 if (k < 0)
9615 goto error;
9616 isl_int_set_si(bset->ineq[k][1], -1);
9617 isl_int_set(bset->ineq[k][0], max);
9619 return bset;
9620 error:
9621 isl_basic_set_free(bset);
9622 return NULL;
9625 /* Return the basic maps in "map" as a list.
9627 __isl_give isl_basic_map_list *isl_map_get_basic_map_list(
9628 __isl_keep isl_map *map)
9630 int i;
9631 isl_ctx *ctx;
9632 isl_basic_map_list *list;
9634 if (!map)
9635 return NULL;
9636 ctx = isl_map_get_ctx(map);
9637 list = isl_basic_map_list_alloc(ctx, map->n);
9639 for (i = 0; i < map->n; ++i) {
9640 isl_basic_map *bmap;
9642 bmap = isl_basic_map_copy(map->p[i]);
9643 list = isl_basic_map_list_add(list, bmap);
9646 return list;
9649 /* Return the intersection of the elements in the non-empty list "list".
9650 * All elements are assumed to live in the same space.
9652 __isl_give isl_basic_map *isl_basic_map_list_intersect(
9653 __isl_take isl_basic_map_list *list)
9655 int i, n;
9656 isl_basic_map *bmap;
9658 if (!list)
9659 return NULL;
9660 n = isl_basic_map_list_n_basic_map(list);
9661 if (n < 1)
9662 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
9663 "expecting non-empty list", goto error);
9665 bmap = isl_basic_map_list_get_basic_map(list, 0);
9666 for (i = 1; i < n; ++i) {
9667 isl_basic_map *bmap_i;
9669 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9670 bmap = isl_basic_map_intersect(bmap, bmap_i);
9673 isl_basic_map_list_free(list);
9674 return bmap;
9675 error:
9676 isl_basic_map_list_free(list);
9677 return NULL;
9680 /* Return the intersection of the elements in the non-empty list "list".
9681 * All elements are assumed to live in the same space.
9683 __isl_give isl_basic_set *isl_basic_set_list_intersect(
9684 __isl_take isl_basic_set_list *list)
9686 return isl_basic_map_list_intersect(list);
9689 /* Return the union of the elements of "list".
9690 * The list is required to have at least one element.
9692 __isl_give isl_set *isl_basic_set_list_union(
9693 __isl_take isl_basic_set_list *list)
9695 int i, n;
9696 isl_space *space;
9697 isl_basic_set *bset;
9698 isl_set *set;
9700 if (!list)
9701 return NULL;
9702 n = isl_basic_set_list_n_basic_set(list);
9703 if (n < 1)
9704 isl_die(isl_basic_set_list_get_ctx(list), isl_error_invalid,
9705 "expecting non-empty list", goto error);
9707 bset = isl_basic_set_list_get_basic_set(list, 0);
9708 space = isl_basic_set_get_space(bset);
9709 isl_basic_set_free(bset);
9711 set = isl_set_alloc_space(space, n, 0);
9712 for (i = 0; i < n; ++i) {
9713 bset = isl_basic_set_list_get_basic_set(list, i);
9714 set = isl_set_add_basic_set(set, bset);
9717 isl_basic_set_list_free(list);
9718 return set;
9719 error:
9720 isl_basic_set_list_free(list);
9721 return NULL;
9724 /* Return the union of the elements in the non-empty list "list".
9725 * All elements are assumed to live in the same space.
9727 __isl_give isl_set *isl_set_list_union(__isl_take isl_set_list *list)
9729 int i, n;
9730 isl_set *set;
9732 if (!list)
9733 return NULL;
9734 n = isl_set_list_n_set(list);
9735 if (n < 1)
9736 isl_die(isl_set_list_get_ctx(list), isl_error_invalid,
9737 "expecting non-empty list", goto error);
9739 set = isl_set_list_get_set(list, 0);
9740 for (i = 1; i < n; ++i) {
9741 isl_set *set_i;
9743 set_i = isl_set_list_get_set(list, i);
9744 set = isl_set_union(set, set_i);
9747 isl_set_list_free(list);
9748 return set;
9749 error:
9750 isl_set_list_free(list);
9751 return NULL;
9754 /* Return the Cartesian product of the basic sets in list (in the given order).
9756 __isl_give isl_basic_set *isl_basic_set_list_product(
9757 __isl_take struct isl_basic_set_list *list)
9759 int i;
9760 unsigned dim;
9761 unsigned nparam;
9762 unsigned extra;
9763 unsigned n_eq;
9764 unsigned n_ineq;
9765 struct isl_basic_set *product = NULL;
9767 if (!list)
9768 goto error;
9769 isl_assert(list->ctx, list->n > 0, goto error);
9770 isl_assert(list->ctx, list->p[0], goto error);
9771 nparam = isl_basic_set_n_param(list->p[0]);
9772 dim = isl_basic_set_n_dim(list->p[0]);
9773 extra = list->p[0]->n_div;
9774 n_eq = list->p[0]->n_eq;
9775 n_ineq = list->p[0]->n_ineq;
9776 for (i = 1; i < list->n; ++i) {
9777 isl_assert(list->ctx, list->p[i], goto error);
9778 isl_assert(list->ctx,
9779 nparam == isl_basic_set_n_param(list->p[i]), goto error);
9780 dim += isl_basic_set_n_dim(list->p[i]);
9781 extra += list->p[i]->n_div;
9782 n_eq += list->p[i]->n_eq;
9783 n_ineq += list->p[i]->n_ineq;
9785 product = isl_basic_set_alloc(list->ctx, nparam, dim, extra,
9786 n_eq, n_ineq);
9787 if (!product)
9788 goto error;
9789 dim = 0;
9790 for (i = 0; i < list->n; ++i) {
9791 isl_basic_set_add_constraints(product,
9792 isl_basic_set_copy(list->p[i]), dim);
9793 dim += isl_basic_set_n_dim(list->p[i]);
9795 isl_basic_set_list_free(list);
9796 return product;
9797 error:
9798 isl_basic_set_free(product);
9799 isl_basic_set_list_free(list);
9800 return NULL;
9803 struct isl_basic_map *isl_basic_map_product(
9804 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
9806 isl_space *dim_result = NULL;
9807 struct isl_basic_map *bmap;
9808 unsigned in1, in2, out1, out2, nparam, total, pos;
9809 struct isl_dim_map *dim_map1, *dim_map2;
9811 if (!bmap1 || !bmap2)
9812 goto error;
9814 isl_assert(bmap1->ctx, isl_space_match(bmap1->dim, isl_dim_param,
9815 bmap2->dim, isl_dim_param), goto error);
9816 dim_result = isl_space_product(isl_space_copy(bmap1->dim),
9817 isl_space_copy(bmap2->dim));
9819 in1 = isl_basic_map_n_in(bmap1);
9820 in2 = isl_basic_map_n_in(bmap2);
9821 out1 = isl_basic_map_n_out(bmap1);
9822 out2 = isl_basic_map_n_out(bmap2);
9823 nparam = isl_basic_map_n_param(bmap1);
9825 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
9826 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9827 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9828 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9829 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9830 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9831 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9832 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9833 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9834 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9835 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9837 bmap = isl_basic_map_alloc_space(dim_result,
9838 bmap1->n_div + bmap2->n_div,
9839 bmap1->n_eq + bmap2->n_eq,
9840 bmap1->n_ineq + bmap2->n_ineq);
9841 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9842 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9843 bmap = isl_basic_map_simplify(bmap);
9844 return isl_basic_map_finalize(bmap);
9845 error:
9846 isl_basic_map_free(bmap1);
9847 isl_basic_map_free(bmap2);
9848 return NULL;
9851 __isl_give isl_basic_map *isl_basic_map_flat_product(
9852 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9854 isl_basic_map *prod;
9856 prod = isl_basic_map_product(bmap1, bmap2);
9857 prod = isl_basic_map_flatten(prod);
9858 return prod;
9861 __isl_give isl_basic_set *isl_basic_set_flat_product(
9862 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
9864 return isl_basic_map_flat_range_product(bset1, bset2);
9867 __isl_give isl_basic_map *isl_basic_map_domain_product(
9868 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9870 isl_space *space_result = NULL;
9871 isl_basic_map *bmap;
9872 unsigned in1, in2, out, nparam, total, pos;
9873 struct isl_dim_map *dim_map1, *dim_map2;
9875 if (!bmap1 || !bmap2)
9876 goto error;
9878 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
9879 isl_space_copy(bmap2->dim));
9881 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9882 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9883 out = isl_basic_map_dim(bmap1, isl_dim_out);
9884 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9886 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
9887 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9888 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9889 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9890 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9891 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9892 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9893 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9894 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
9895 isl_dim_map_div(dim_map1, bmap1, pos += out);
9896 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9898 bmap = isl_basic_map_alloc_space(space_result,
9899 bmap1->n_div + bmap2->n_div,
9900 bmap1->n_eq + bmap2->n_eq,
9901 bmap1->n_ineq + bmap2->n_ineq);
9902 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9903 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9904 bmap = isl_basic_map_simplify(bmap);
9905 return isl_basic_map_finalize(bmap);
9906 error:
9907 isl_basic_map_free(bmap1);
9908 isl_basic_map_free(bmap2);
9909 return NULL;
9912 __isl_give isl_basic_map *isl_basic_map_range_product(
9913 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9915 isl_bool rational;
9916 isl_space *dim_result = NULL;
9917 isl_basic_map *bmap;
9918 unsigned in, out1, out2, nparam, total, pos;
9919 struct isl_dim_map *dim_map1, *dim_map2;
9921 rational = isl_basic_map_is_rational(bmap1);
9922 if (rational >= 0 && rational)
9923 rational = isl_basic_map_is_rational(bmap2);
9924 if (!bmap1 || !bmap2 || rational < 0)
9925 goto error;
9927 if (!isl_space_match(bmap1->dim, isl_dim_param,
9928 bmap2->dim, isl_dim_param))
9929 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
9930 "parameters don't match", goto error);
9932 dim_result = isl_space_range_product(isl_space_copy(bmap1->dim),
9933 isl_space_copy(bmap2->dim));
9935 in = isl_basic_map_dim(bmap1, isl_dim_in);
9936 out1 = isl_basic_map_n_out(bmap1);
9937 out2 = isl_basic_map_n_out(bmap2);
9938 nparam = isl_basic_map_n_param(bmap1);
9940 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
9941 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9942 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9943 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9944 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9945 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9946 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
9947 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
9948 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9949 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9950 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9952 bmap = isl_basic_map_alloc_space(dim_result,
9953 bmap1->n_div + bmap2->n_div,
9954 bmap1->n_eq + bmap2->n_eq,
9955 bmap1->n_ineq + bmap2->n_ineq);
9956 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9957 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9958 if (rational)
9959 bmap = isl_basic_map_set_rational(bmap);
9960 bmap = isl_basic_map_simplify(bmap);
9961 return isl_basic_map_finalize(bmap);
9962 error:
9963 isl_basic_map_free(bmap1);
9964 isl_basic_map_free(bmap2);
9965 return NULL;
9968 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
9969 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9971 isl_basic_map *prod;
9973 prod = isl_basic_map_range_product(bmap1, bmap2);
9974 prod = isl_basic_map_flatten_range(prod);
9975 return prod;
9978 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
9979 * and collect the results.
9980 * The result live in the space obtained by calling "space_product"
9981 * on the spaces of "map1" and "map2".
9982 * If "remove_duplicates" is set then the result may contain duplicates
9983 * (even if the inputs do not) and so we try and remove the obvious
9984 * duplicates.
9986 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
9987 __isl_take isl_map *map2,
9988 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
9989 __isl_take isl_space *right),
9990 __isl_give isl_basic_map *(*basic_map_product)(
9991 __isl_take isl_basic_map *left,
9992 __isl_take isl_basic_map *right),
9993 int remove_duplicates)
9995 unsigned flags = 0;
9996 struct isl_map *result;
9997 int i, j;
9999 if (!map1 || !map2)
10000 goto error;
10002 isl_assert(map1->ctx, isl_space_match(map1->dim, isl_dim_param,
10003 map2->dim, isl_dim_param), goto error);
10005 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
10006 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
10007 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
10009 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
10010 isl_space_copy(map2->dim)),
10011 map1->n * map2->n, flags);
10012 if (!result)
10013 goto error;
10014 for (i = 0; i < map1->n; ++i)
10015 for (j = 0; j < map2->n; ++j) {
10016 struct isl_basic_map *part;
10017 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
10018 isl_basic_map_copy(map2->p[j]));
10019 if (isl_basic_map_is_empty(part))
10020 isl_basic_map_free(part);
10021 else
10022 result = isl_map_add_basic_map(result, part);
10023 if (!result)
10024 goto error;
10026 if (remove_duplicates)
10027 result = isl_map_remove_obvious_duplicates(result);
10028 isl_map_free(map1);
10029 isl_map_free(map2);
10030 return result;
10031 error:
10032 isl_map_free(map1);
10033 isl_map_free(map2);
10034 return NULL;
10037 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
10039 static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
10040 __isl_take isl_map *map2)
10042 return map_product(map1, map2, &isl_space_product,
10043 &isl_basic_map_product, 0);
10046 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
10047 __isl_take isl_map *map2)
10049 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
10052 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
10054 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
10055 __isl_take isl_map *map2)
10057 isl_map *prod;
10059 prod = isl_map_product(map1, map2);
10060 prod = isl_map_flatten(prod);
10061 return prod;
10064 /* Given two set A and B, construct its Cartesian product A x B.
10066 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
10068 return isl_map_range_product(set1, set2);
10071 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
10072 __isl_take isl_set *set2)
10074 return isl_map_flat_range_product(set1, set2);
10077 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10079 static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
10080 __isl_take isl_map *map2)
10082 return map_product(map1, map2, &isl_space_domain_product,
10083 &isl_basic_map_domain_product, 1);
10086 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10088 static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
10089 __isl_take isl_map *map2)
10091 return map_product(map1, map2, &isl_space_range_product,
10092 &isl_basic_map_range_product, 1);
10095 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
10096 __isl_take isl_map *map2)
10098 return isl_map_align_params_map_map_and(map1, map2,
10099 &map_domain_product_aligned);
10102 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
10103 __isl_take isl_map *map2)
10105 return isl_map_align_params_map_map_and(map1, map2,
10106 &map_range_product_aligned);
10109 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10111 __isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
10113 isl_space *space;
10114 int total1, keep1, total2, keep2;
10116 if (!map)
10117 return NULL;
10118 if (!isl_space_domain_is_wrapping(map->dim) ||
10119 !isl_space_range_is_wrapping(map->dim))
10120 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10121 "not a product", return isl_map_free(map));
10123 space = isl_map_get_space(map);
10124 total1 = isl_space_dim(space, isl_dim_in);
10125 total2 = isl_space_dim(space, isl_dim_out);
10126 space = isl_space_factor_domain(space);
10127 keep1 = isl_space_dim(space, isl_dim_in);
10128 keep2 = isl_space_dim(space, isl_dim_out);
10129 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
10130 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
10131 map = isl_map_reset_space(map, space);
10133 return map;
10136 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10138 __isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
10140 isl_space *space;
10141 int total1, keep1, total2, keep2;
10143 if (!map)
10144 return NULL;
10145 if (!isl_space_domain_is_wrapping(map->dim) ||
10146 !isl_space_range_is_wrapping(map->dim))
10147 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10148 "not a product", return isl_map_free(map));
10150 space = isl_map_get_space(map);
10151 total1 = isl_space_dim(space, isl_dim_in);
10152 total2 = isl_space_dim(space, isl_dim_out);
10153 space = isl_space_factor_range(space);
10154 keep1 = isl_space_dim(space, isl_dim_in);
10155 keep2 = isl_space_dim(space, isl_dim_out);
10156 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
10157 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
10158 map = isl_map_reset_space(map, space);
10160 return map;
10163 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10165 __isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
10167 isl_space *space;
10168 int total, keep;
10170 if (!map)
10171 return NULL;
10172 if (!isl_space_domain_is_wrapping(map->dim))
10173 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10174 "domain is not a product", return isl_map_free(map));
10176 space = isl_map_get_space(map);
10177 total = isl_space_dim(space, isl_dim_in);
10178 space = isl_space_domain_factor_domain(space);
10179 keep = isl_space_dim(space, isl_dim_in);
10180 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
10181 map = isl_map_reset_space(map, space);
10183 return map;
10186 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10188 __isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
10190 isl_space *space;
10191 int total, keep;
10193 if (!map)
10194 return NULL;
10195 if (!isl_space_domain_is_wrapping(map->dim))
10196 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10197 "domain is not a product", return isl_map_free(map));
10199 space = isl_map_get_space(map);
10200 total = isl_space_dim(space, isl_dim_in);
10201 space = isl_space_domain_factor_range(space);
10202 keep = isl_space_dim(space, isl_dim_in);
10203 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
10204 map = isl_map_reset_space(map, space);
10206 return map;
10209 /* Given a map A -> [B -> C], extract the map A -> B.
10211 __isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
10213 isl_space *space;
10214 int total, keep;
10216 if (!map)
10217 return NULL;
10218 if (!isl_space_range_is_wrapping(map->dim))
10219 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10220 "range is not a product", return isl_map_free(map));
10222 space = isl_map_get_space(map);
10223 total = isl_space_dim(space, isl_dim_out);
10224 space = isl_space_range_factor_domain(space);
10225 keep = isl_space_dim(space, isl_dim_out);
10226 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
10227 map = isl_map_reset_space(map, space);
10229 return map;
10232 /* Given a map A -> [B -> C], extract the map A -> C.
10234 __isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
10236 isl_space *space;
10237 int total, keep;
10239 if (!map)
10240 return NULL;
10241 if (!isl_space_range_is_wrapping(map->dim))
10242 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10243 "range is not a product", return isl_map_free(map));
10245 space = isl_map_get_space(map);
10246 total = isl_space_dim(space, isl_dim_out);
10247 space = isl_space_range_factor_range(space);
10248 keep = isl_space_dim(space, isl_dim_out);
10249 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
10250 map = isl_map_reset_space(map, space);
10252 return map;
10255 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10257 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
10258 __isl_take isl_map *map2)
10260 isl_map *prod;
10262 prod = isl_map_domain_product(map1, map2);
10263 prod = isl_map_flatten_domain(prod);
10264 return prod;
10267 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10269 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
10270 __isl_take isl_map *map2)
10272 isl_map *prod;
10274 prod = isl_map_range_product(map1, map2);
10275 prod = isl_map_flatten_range(prod);
10276 return prod;
10279 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
10281 int i;
10282 uint32_t hash = isl_hash_init();
10283 unsigned total;
10285 if (!bmap)
10286 return 0;
10287 bmap = isl_basic_map_copy(bmap);
10288 bmap = isl_basic_map_normalize(bmap);
10289 if (!bmap)
10290 return 0;
10291 total = isl_basic_map_total_dim(bmap);
10292 isl_hash_byte(hash, bmap->n_eq & 0xFF);
10293 for (i = 0; i < bmap->n_eq; ++i) {
10294 uint32_t c_hash;
10295 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
10296 isl_hash_hash(hash, c_hash);
10298 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
10299 for (i = 0; i < bmap->n_ineq; ++i) {
10300 uint32_t c_hash;
10301 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
10302 isl_hash_hash(hash, c_hash);
10304 isl_hash_byte(hash, bmap->n_div & 0xFF);
10305 for (i = 0; i < bmap->n_div; ++i) {
10306 uint32_t c_hash;
10307 if (isl_int_is_zero(bmap->div[i][0]))
10308 continue;
10309 isl_hash_byte(hash, i & 0xFF);
10310 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
10311 isl_hash_hash(hash, c_hash);
10313 isl_basic_map_free(bmap);
10314 return hash;
10317 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
10319 return isl_basic_map_get_hash(bset_to_bmap(bset));
10322 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
10324 int i;
10325 uint32_t hash;
10327 if (!map)
10328 return 0;
10329 map = isl_map_copy(map);
10330 map = isl_map_normalize(map);
10331 if (!map)
10332 return 0;
10334 hash = isl_hash_init();
10335 for (i = 0; i < map->n; ++i) {
10336 uint32_t bmap_hash;
10337 bmap_hash = isl_basic_map_get_hash(map->p[i]);
10338 isl_hash_hash(hash, bmap_hash);
10341 isl_map_free(map);
10343 return hash;
10346 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
10348 return isl_map_get_hash(set_to_map(set));
10351 /* Check if the value for dimension dim is completely determined
10352 * by the values of the other parameters and variables.
10353 * That is, check if dimension dim is involved in an equality.
10355 int isl_basic_set_dim_is_unique(struct isl_basic_set *bset, unsigned dim)
10357 int i;
10358 unsigned nparam;
10360 if (!bset)
10361 return -1;
10362 nparam = isl_basic_set_n_param(bset);
10363 for (i = 0; i < bset->n_eq; ++i)
10364 if (!isl_int_is_zero(bset->eq[i][1 + nparam + dim]))
10365 return 1;
10366 return 0;
10369 /* Check if the value for dimension dim is completely determined
10370 * by the values of the other parameters and variables.
10371 * That is, check if dimension dim is involved in an equality
10372 * for each of the subsets.
10374 int isl_set_dim_is_unique(struct isl_set *set, unsigned dim)
10376 int i;
10378 if (!set)
10379 return -1;
10380 for (i = 0; i < set->n; ++i) {
10381 int unique;
10382 unique = isl_basic_set_dim_is_unique(set->p[i], dim);
10383 if (unique != 1)
10384 return unique;
10386 return 1;
10389 /* Return the number of basic maps in the (current) representation of "map".
10391 int isl_map_n_basic_map(__isl_keep isl_map *map)
10393 return map ? map->n : 0;
10396 int isl_set_n_basic_set(__isl_keep isl_set *set)
10398 return set ? set->n : 0;
10401 isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
10402 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
10404 int i;
10406 if (!map)
10407 return isl_stat_error;
10409 for (i = 0; i < map->n; ++i)
10410 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
10411 return isl_stat_error;
10413 return isl_stat_ok;
10416 isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
10417 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
10419 int i;
10421 if (!set)
10422 return isl_stat_error;
10424 for (i = 0; i < set->n; ++i)
10425 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
10426 return isl_stat_error;
10428 return isl_stat_ok;
10431 /* Return a list of basic sets, the union of which is equal to "set".
10433 __isl_give isl_basic_set_list *isl_set_get_basic_set_list(
10434 __isl_keep isl_set *set)
10436 int i;
10437 isl_basic_set_list *list;
10439 if (!set)
10440 return NULL;
10442 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
10443 for (i = 0; i < set->n; ++i) {
10444 isl_basic_set *bset;
10446 bset = isl_basic_set_copy(set->p[i]);
10447 list = isl_basic_set_list_add(list, bset);
10450 return list;
10453 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
10455 isl_space *dim;
10457 if (!bset)
10458 return NULL;
10460 bset = isl_basic_set_cow(bset);
10461 if (!bset)
10462 return NULL;
10464 dim = isl_basic_set_get_space(bset);
10465 dim = isl_space_lift(dim, bset->n_div);
10466 if (!dim)
10467 goto error;
10468 isl_space_free(bset->dim);
10469 bset->dim = dim;
10470 bset->extra -= bset->n_div;
10471 bset->n_div = 0;
10473 bset = isl_basic_set_finalize(bset);
10475 return bset;
10476 error:
10477 isl_basic_set_free(bset);
10478 return NULL;
10481 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
10483 int i;
10484 isl_space *dim;
10485 unsigned n_div;
10487 set = isl_set_align_divs(set);
10489 if (!set)
10490 return NULL;
10492 set = isl_set_cow(set);
10493 if (!set)
10494 return NULL;
10496 n_div = set->p[0]->n_div;
10497 dim = isl_set_get_space(set);
10498 dim = isl_space_lift(dim, n_div);
10499 if (!dim)
10500 goto error;
10501 isl_space_free(set->dim);
10502 set->dim = dim;
10504 for (i = 0; i < set->n; ++i) {
10505 set->p[i] = isl_basic_set_lift(set->p[i]);
10506 if (!set->p[i])
10507 goto error;
10510 return set;
10511 error:
10512 isl_set_free(set);
10513 return NULL;
10516 __isl_give isl_map *isl_set_lifting(__isl_take isl_set *set)
10518 isl_space *dim;
10519 struct isl_basic_map *bmap;
10520 unsigned n_set;
10521 unsigned n_div;
10522 unsigned n_param;
10523 unsigned total;
10524 int i, k, l;
10526 set = isl_set_align_divs(set);
10528 if (!set)
10529 return NULL;
10531 dim = isl_set_get_space(set);
10532 if (set->n == 0 || set->p[0]->n_div == 0) {
10533 isl_set_free(set);
10534 return isl_map_identity(isl_space_map_from_set(dim));
10537 n_div = set->p[0]->n_div;
10538 dim = isl_space_map_from_set(dim);
10539 n_param = isl_space_dim(dim, isl_dim_param);
10540 n_set = isl_space_dim(dim, isl_dim_in);
10541 dim = isl_space_extend(dim, n_param, n_set, n_set + n_div);
10542 bmap = isl_basic_map_alloc_space(dim, 0, n_set, 2 * n_div);
10543 for (i = 0; i < n_set; ++i)
10544 bmap = var_equal(bmap, i);
10546 total = n_param + n_set + n_set + n_div;
10547 for (i = 0; i < n_div; ++i) {
10548 k = isl_basic_map_alloc_inequality(bmap);
10549 if (k < 0)
10550 goto error;
10551 isl_seq_cpy(bmap->ineq[k], set->p[0]->div[i]+1, 1+n_param);
10552 isl_seq_clr(bmap->ineq[k]+1+n_param, n_set);
10553 isl_seq_cpy(bmap->ineq[k]+1+n_param+n_set,
10554 set->p[0]->div[i]+1+1+n_param, n_set + n_div);
10555 isl_int_neg(bmap->ineq[k][1+n_param+n_set+n_set+i],
10556 set->p[0]->div[i][0]);
10558 l = isl_basic_map_alloc_inequality(bmap);
10559 if (l < 0)
10560 goto error;
10561 isl_seq_neg(bmap->ineq[l], bmap->ineq[k], 1 + total);
10562 isl_int_add(bmap->ineq[l][0], bmap->ineq[l][0],
10563 set->p[0]->div[i][0]);
10564 isl_int_sub_ui(bmap->ineq[l][0], bmap->ineq[l][0], 1);
10567 isl_set_free(set);
10568 bmap = isl_basic_map_simplify(bmap);
10569 bmap = isl_basic_map_finalize(bmap);
10570 return isl_map_from_basic_map(bmap);
10571 error:
10572 isl_set_free(set);
10573 isl_basic_map_free(bmap);
10574 return NULL;
10577 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
10579 unsigned dim;
10580 int size = 0;
10582 if (!bset)
10583 return -1;
10585 dim = isl_basic_set_total_dim(bset);
10586 size += bset->n_eq * (1 + dim);
10587 size += bset->n_ineq * (1 + dim);
10588 size += bset->n_div * (2 + dim);
10590 return size;
10593 int isl_set_size(__isl_keep isl_set *set)
10595 int i;
10596 int size = 0;
10598 if (!set)
10599 return -1;
10601 for (i = 0; i < set->n; ++i)
10602 size += isl_basic_set_size(set->p[i]);
10604 return size;
10607 /* Check if there is any lower bound (if lower == 0) and/or upper
10608 * bound (if upper == 0) on the specified dim.
10610 static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10611 enum isl_dim_type type, unsigned pos, int lower, int upper)
10613 int i;
10615 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
10616 return isl_bool_error;
10618 pos += isl_basic_map_offset(bmap, type);
10620 for (i = 0; i < bmap->n_div; ++i) {
10621 if (isl_int_is_zero(bmap->div[i][0]))
10622 continue;
10623 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
10624 return isl_bool_true;
10627 for (i = 0; i < bmap->n_eq; ++i)
10628 if (!isl_int_is_zero(bmap->eq[i][pos]))
10629 return isl_bool_true;
10631 for (i = 0; i < bmap->n_ineq; ++i) {
10632 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
10633 if (sgn > 0)
10634 lower = 1;
10635 if (sgn < 0)
10636 upper = 1;
10639 return lower && upper;
10642 isl_bool isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10643 enum isl_dim_type type, unsigned pos)
10645 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
10648 isl_bool isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
10649 enum isl_dim_type type, unsigned pos)
10651 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
10654 isl_bool isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
10655 enum isl_dim_type type, unsigned pos)
10657 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
10660 isl_bool isl_map_dim_is_bounded(__isl_keep isl_map *map,
10661 enum isl_dim_type type, unsigned pos)
10663 int i;
10665 if (!map)
10666 return isl_bool_error;
10668 for (i = 0; i < map->n; ++i) {
10669 isl_bool bounded;
10670 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
10671 if (bounded < 0 || !bounded)
10672 return bounded;
10675 return isl_bool_true;
10678 /* Return true if the specified dim is involved in both an upper bound
10679 * and a lower bound.
10681 isl_bool isl_set_dim_is_bounded(__isl_keep isl_set *set,
10682 enum isl_dim_type type, unsigned pos)
10684 return isl_map_dim_is_bounded(set_to_map(set), type, pos);
10687 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10689 static isl_bool has_any_bound(__isl_keep isl_map *map,
10690 enum isl_dim_type type, unsigned pos,
10691 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10692 enum isl_dim_type type, unsigned pos))
10694 int i;
10696 if (!map)
10697 return isl_bool_error;
10699 for (i = 0; i < map->n; ++i) {
10700 isl_bool bounded;
10701 bounded = fn(map->p[i], type, pos);
10702 if (bounded < 0 || bounded)
10703 return bounded;
10706 return isl_bool_false;
10709 /* Return 1 if the specified dim is involved in any lower bound.
10711 isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
10712 enum isl_dim_type type, unsigned pos)
10714 return has_any_bound(set, type, pos,
10715 &isl_basic_map_dim_has_lower_bound);
10718 /* Return 1 if the specified dim is involved in any upper bound.
10720 isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
10721 enum isl_dim_type type, unsigned pos)
10723 return has_any_bound(set, type, pos,
10724 &isl_basic_map_dim_has_upper_bound);
10727 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10729 static isl_bool has_bound(__isl_keep isl_map *map,
10730 enum isl_dim_type type, unsigned pos,
10731 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10732 enum isl_dim_type type, unsigned pos))
10734 int i;
10736 if (!map)
10737 return isl_bool_error;
10739 for (i = 0; i < map->n; ++i) {
10740 isl_bool bounded;
10741 bounded = fn(map->p[i], type, pos);
10742 if (bounded < 0 || !bounded)
10743 return bounded;
10746 return isl_bool_true;
10749 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10751 isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
10752 enum isl_dim_type type, unsigned pos)
10754 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
10757 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10759 isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
10760 enum isl_dim_type type, unsigned pos)
10762 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
10765 /* For each of the "n" variables starting at "first", determine
10766 * the sign of the variable and put the results in the first "n"
10767 * elements of the array "signs".
10768 * Sign
10769 * 1 means that the variable is non-negative
10770 * -1 means that the variable is non-positive
10771 * 0 means the variable attains both positive and negative values.
10773 isl_stat isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
10774 unsigned first, unsigned n, int *signs)
10776 isl_vec *bound = NULL;
10777 struct isl_tab *tab = NULL;
10778 struct isl_tab_undo *snap;
10779 int i;
10781 if (!bset || !signs)
10782 return isl_stat_error;
10784 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
10785 tab = isl_tab_from_basic_set(bset, 0);
10786 if (!bound || !tab)
10787 goto error;
10789 isl_seq_clr(bound->el, bound->size);
10790 isl_int_set_si(bound->el[0], -1);
10792 snap = isl_tab_snap(tab);
10793 for (i = 0; i < n; ++i) {
10794 int empty;
10796 isl_int_set_si(bound->el[1 + first + i], -1);
10797 if (isl_tab_add_ineq(tab, bound->el) < 0)
10798 goto error;
10799 empty = tab->empty;
10800 isl_int_set_si(bound->el[1 + first + i], 0);
10801 if (isl_tab_rollback(tab, snap) < 0)
10802 goto error;
10804 if (empty) {
10805 signs[i] = 1;
10806 continue;
10809 isl_int_set_si(bound->el[1 + first + i], 1);
10810 if (isl_tab_add_ineq(tab, bound->el) < 0)
10811 goto error;
10812 empty = tab->empty;
10813 isl_int_set_si(bound->el[1 + first + i], 0);
10814 if (isl_tab_rollback(tab, snap) < 0)
10815 goto error;
10817 signs[i] = empty ? -1 : 0;
10820 isl_tab_free(tab);
10821 isl_vec_free(bound);
10822 return isl_stat_ok;
10823 error:
10824 isl_tab_free(tab);
10825 isl_vec_free(bound);
10826 return isl_stat_error;
10829 isl_stat isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
10830 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
10832 if (!bset || !signs)
10833 return isl_stat_error;
10834 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
10835 return isl_stat_error);
10837 first += pos(bset->dim, type) - 1;
10838 return isl_basic_set_vars_get_sign(bset, first, n, signs);
10841 /* Is it possible for the integer division "div" to depend (possibly
10842 * indirectly) on any output dimensions?
10844 * If the div is undefined, then we conservatively assume that it
10845 * may depend on them.
10846 * Otherwise, we check if it actually depends on them or on any integer
10847 * divisions that may depend on them.
10849 static isl_bool div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
10851 int i;
10852 unsigned n_out, o_out;
10853 unsigned n_div, o_div;
10855 if (isl_int_is_zero(bmap->div[div][0]))
10856 return isl_bool_true;
10858 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10859 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10861 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
10862 return isl_bool_true;
10864 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10865 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10867 for (i = 0; i < n_div; ++i) {
10868 isl_bool may_involve;
10870 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
10871 continue;
10872 may_involve = div_may_involve_output(bmap, i);
10873 if (may_involve < 0 || may_involve)
10874 return may_involve;
10877 return isl_bool_false;
10880 /* Return the first integer division of "bmap" in the range
10881 * [first, first + n[ that may depend on any output dimensions and
10882 * that has a non-zero coefficient in "c" (where the first coefficient
10883 * in "c" corresponds to integer division "first").
10885 static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
10886 isl_int *c, int first, int n)
10888 int k;
10890 if (!bmap)
10891 return -1;
10893 for (k = first; k < first + n; ++k) {
10894 isl_bool may_involve;
10896 if (isl_int_is_zero(c[k]))
10897 continue;
10898 may_involve = div_may_involve_output(bmap, k);
10899 if (may_involve < 0)
10900 return -1;
10901 if (may_involve)
10902 return k;
10905 return first + n;
10908 /* Look for a pair of inequality constraints in "bmap" of the form
10910 * -l + i >= 0 or i >= l
10911 * and
10912 * n + l - i >= 0 or i <= l + n
10914 * with n < "m" and i the output dimension at position "pos".
10915 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10916 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10917 * and earlier output dimensions, as well as integer divisions that do
10918 * not involve any of the output dimensions.
10920 * Return the index of the first inequality constraint or bmap->n_ineq
10921 * if no such pair can be found.
10923 static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
10924 int pos, isl_int m)
10926 int i, j;
10927 isl_ctx *ctx;
10928 unsigned total;
10929 unsigned n_div, o_div;
10930 unsigned n_out, o_out;
10931 int less;
10933 if (!bmap)
10934 return -1;
10936 ctx = isl_basic_map_get_ctx(bmap);
10937 total = isl_basic_map_total_dim(bmap);
10938 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10939 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10940 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10941 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10942 for (i = 0; i < bmap->n_ineq; ++i) {
10943 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
10944 continue;
10945 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
10946 n_out - (pos + 1)) != -1)
10947 continue;
10948 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
10949 0, n_div) < n_div)
10950 continue;
10951 for (j = i + 1; j < bmap->n_ineq; ++j) {
10952 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
10953 ctx->one))
10954 continue;
10955 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
10956 bmap->ineq[j] + 1, total))
10957 continue;
10958 break;
10960 if (j >= bmap->n_ineq)
10961 continue;
10962 isl_int_add(bmap->ineq[i][0],
10963 bmap->ineq[i][0], bmap->ineq[j][0]);
10964 less = isl_int_abs_lt(bmap->ineq[i][0], m);
10965 isl_int_sub(bmap->ineq[i][0],
10966 bmap->ineq[i][0], bmap->ineq[j][0]);
10967 if (!less)
10968 continue;
10969 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
10970 return i;
10971 else
10972 return j;
10975 return bmap->n_ineq;
10978 /* Return the index of the equality of "bmap" that defines
10979 * the output dimension "pos" in terms of earlier dimensions.
10980 * The equality may also involve integer divisions, as long
10981 * as those integer divisions are defined in terms of
10982 * parameters or input dimensions.
10983 * In this case, *div is set to the number of integer divisions and
10984 * *ineq is set to the number of inequality constraints (provided
10985 * div and ineq are not NULL).
10987 * The equality may also involve a single integer division involving
10988 * the output dimensions (typically only output dimension "pos") as
10989 * long as the coefficient of output dimension "pos" is 1 or -1 and
10990 * there is a pair of constraints i >= l and i <= l + n, with i referring
10991 * to output dimension "pos", l an expression involving only earlier
10992 * dimensions and n smaller than the coefficient of the integer division
10993 * in the equality. In this case, the output dimension can be defined
10994 * in terms of a modulo expression that does not involve the integer division.
10995 * *div is then set to this single integer division and
10996 * *ineq is set to the index of constraint i >= l.
10998 * Return bmap->n_eq if there is no such equality.
10999 * Return -1 on error.
11001 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
11002 int pos, int *div, int *ineq)
11004 int j, k, l;
11005 unsigned n_out, o_out;
11006 unsigned n_div, o_div;
11008 if (!bmap)
11009 return -1;
11011 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11012 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11013 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11014 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11016 if (ineq)
11017 *ineq = bmap->n_ineq;
11018 if (div)
11019 *div = n_div;
11020 for (j = 0; j < bmap->n_eq; ++j) {
11021 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
11022 continue;
11023 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
11024 n_out - (pos + 1)) != -1)
11025 continue;
11026 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11027 0, n_div);
11028 if (k >= n_div)
11029 return j;
11030 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
11031 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
11032 continue;
11033 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11034 k + 1, n_div - (k+1)) < n_div)
11035 continue;
11036 l = find_modulo_constraint_pair(bmap, pos,
11037 bmap->eq[j][o_div + k]);
11038 if (l < 0)
11039 return -1;
11040 if (l >= bmap->n_ineq)
11041 continue;
11042 if (div)
11043 *div = k;
11044 if (ineq)
11045 *ineq = l;
11046 return j;
11049 return bmap->n_eq;
11052 /* Check if the given basic map is obviously single-valued.
11053 * In particular, for each output dimension, check that there is
11054 * an equality that defines the output dimension in terms of
11055 * earlier dimensions.
11057 isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
11059 int i;
11060 unsigned n_out;
11062 if (!bmap)
11063 return isl_bool_error;
11065 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11067 for (i = 0; i < n_out; ++i) {
11068 int eq;
11070 eq = isl_basic_map_output_defining_equality(bmap, i,
11071 NULL, NULL);
11072 if (eq < 0)
11073 return isl_bool_error;
11074 if (eq >= bmap->n_eq)
11075 return isl_bool_false;
11078 return isl_bool_true;
11081 /* Check if the given basic map is single-valued.
11082 * We simply compute
11084 * M \circ M^-1
11086 * and check if the result is a subset of the identity mapping.
11088 isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
11090 isl_space *space;
11091 isl_basic_map *test;
11092 isl_basic_map *id;
11093 isl_bool sv;
11095 sv = isl_basic_map_plain_is_single_valued(bmap);
11096 if (sv < 0 || sv)
11097 return sv;
11099 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
11100 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
11102 space = isl_basic_map_get_space(bmap);
11103 space = isl_space_map_from_set(isl_space_range(space));
11104 id = isl_basic_map_identity(space);
11106 sv = isl_basic_map_is_subset(test, id);
11108 isl_basic_map_free(test);
11109 isl_basic_map_free(id);
11111 return sv;
11114 /* Check if the given map is obviously single-valued.
11116 isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
11118 if (!map)
11119 return isl_bool_error;
11120 if (map->n == 0)
11121 return isl_bool_true;
11122 if (map->n >= 2)
11123 return isl_bool_false;
11125 return isl_basic_map_plain_is_single_valued(map->p[0]);
11128 /* Check if the given map is single-valued.
11129 * We simply compute
11131 * M \circ M^-1
11133 * and check if the result is a subset of the identity mapping.
11135 isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
11137 isl_space *dim;
11138 isl_map *test;
11139 isl_map *id;
11140 isl_bool sv;
11142 sv = isl_map_plain_is_single_valued(map);
11143 if (sv < 0 || sv)
11144 return sv;
11146 test = isl_map_reverse(isl_map_copy(map));
11147 test = isl_map_apply_range(test, isl_map_copy(map));
11149 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
11150 id = isl_map_identity(dim);
11152 sv = isl_map_is_subset(test, id);
11154 isl_map_free(test);
11155 isl_map_free(id);
11157 return sv;
11160 isl_bool isl_map_is_injective(__isl_keep isl_map *map)
11162 isl_bool in;
11164 map = isl_map_copy(map);
11165 map = isl_map_reverse(map);
11166 in = isl_map_is_single_valued(map);
11167 isl_map_free(map);
11169 return in;
11172 /* Check if the given map is obviously injective.
11174 isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
11176 isl_bool in;
11178 map = isl_map_copy(map);
11179 map = isl_map_reverse(map);
11180 in = isl_map_plain_is_single_valued(map);
11181 isl_map_free(map);
11183 return in;
11186 isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
11188 isl_bool sv;
11190 sv = isl_map_is_single_valued(map);
11191 if (sv < 0 || !sv)
11192 return sv;
11194 return isl_map_is_injective(map);
11197 isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
11199 return isl_map_is_single_valued(set_to_map(set));
11202 /* Does "map" only map elements to themselves?
11204 * If the domain and range spaces are different, then "map"
11205 * is considered not to be an identity relation, even if it is empty.
11206 * Otherwise, construct the maximal identity relation and
11207 * check whether "map" is a subset of this relation.
11209 isl_bool isl_map_is_identity(__isl_keep isl_map *map)
11211 isl_space *space;
11212 isl_map *id;
11213 isl_bool equal, is_identity;
11215 space = isl_map_get_space(map);
11216 equal = isl_space_tuple_is_equal(space, isl_dim_in, space, isl_dim_out);
11217 isl_space_free(space);
11218 if (equal < 0 || !equal)
11219 return equal;
11221 id = isl_map_identity(isl_map_get_space(map));
11222 is_identity = isl_map_is_subset(map, id);
11223 isl_map_free(id);
11225 return is_identity;
11228 int isl_map_is_translation(__isl_keep isl_map *map)
11230 int ok;
11231 isl_set *delta;
11233 delta = isl_map_deltas(isl_map_copy(map));
11234 ok = isl_set_is_singleton(delta);
11235 isl_set_free(delta);
11237 return ok;
11240 static int unique(isl_int *p, unsigned pos, unsigned len)
11242 if (isl_seq_first_non_zero(p, pos) != -1)
11243 return 0;
11244 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
11245 return 0;
11246 return 1;
11249 isl_bool isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
11251 int i, j;
11252 unsigned nvar;
11253 unsigned ovar;
11255 if (!bset)
11256 return isl_bool_error;
11258 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
11259 return isl_bool_false;
11261 nvar = isl_basic_set_dim(bset, isl_dim_set);
11262 ovar = isl_space_offset(bset->dim, isl_dim_set);
11263 for (j = 0; j < nvar; ++j) {
11264 int lower = 0, upper = 0;
11265 for (i = 0; i < bset->n_eq; ++i) {
11266 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
11267 continue;
11268 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
11269 return isl_bool_false;
11270 break;
11272 if (i < bset->n_eq)
11273 continue;
11274 for (i = 0; i < bset->n_ineq; ++i) {
11275 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
11276 continue;
11277 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
11278 return isl_bool_false;
11279 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
11280 lower = 1;
11281 else
11282 upper = 1;
11284 if (!lower || !upper)
11285 return isl_bool_false;
11288 return isl_bool_true;
11291 isl_bool isl_set_is_box(__isl_keep isl_set *set)
11293 if (!set)
11294 return isl_bool_error;
11295 if (set->n != 1)
11296 return isl_bool_false;
11298 return isl_basic_set_is_box(set->p[0]);
11301 isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
11303 if (!bset)
11304 return isl_bool_error;
11306 return isl_space_is_wrapping(bset->dim);
11309 isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
11311 if (!set)
11312 return isl_bool_error;
11314 return isl_space_is_wrapping(set->dim);
11317 /* Modify the space of "map" through a call to "change".
11318 * If "can_change" is set (not NULL), then first call it to check
11319 * if the modification is allowed, printing the error message "cannot_change"
11320 * if it is not.
11322 static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
11323 isl_bool (*can_change)(__isl_keep isl_map *map),
11324 const char *cannot_change,
11325 __isl_give isl_space *(*change)(__isl_take isl_space *space))
11327 isl_bool ok;
11328 isl_space *space;
11330 if (!map)
11331 return NULL;
11333 ok = can_change ? can_change(map) : isl_bool_true;
11334 if (ok < 0)
11335 return isl_map_free(map);
11336 if (!ok)
11337 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
11338 return isl_map_free(map));
11340 space = change(isl_map_get_space(map));
11341 map = isl_map_reset_space(map, space);
11343 return map;
11346 /* Is the domain of "map" a wrapped relation?
11348 isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
11350 if (!map)
11351 return isl_bool_error;
11353 return isl_space_domain_is_wrapping(map->dim);
11356 /* Is the range of "map" a wrapped relation?
11358 isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
11360 if (!map)
11361 return isl_bool_error;
11363 return isl_space_range_is_wrapping(map->dim);
11366 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
11368 bmap = isl_basic_map_cow(bmap);
11369 if (!bmap)
11370 return NULL;
11372 bmap->dim = isl_space_wrap(bmap->dim);
11373 if (!bmap->dim)
11374 goto error;
11376 bmap = isl_basic_map_finalize(bmap);
11378 return bset_from_bmap(bmap);
11379 error:
11380 isl_basic_map_free(bmap);
11381 return NULL;
11384 /* Given a map A -> B, return the set (A -> B).
11386 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
11388 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
11391 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
11393 bset = isl_basic_set_cow(bset);
11394 if (!bset)
11395 return NULL;
11397 bset->dim = isl_space_unwrap(bset->dim);
11398 if (!bset->dim)
11399 goto error;
11401 bset = isl_basic_set_finalize(bset);
11403 return bset_to_bmap(bset);
11404 error:
11405 isl_basic_set_free(bset);
11406 return NULL;
11409 /* Given a set (A -> B), return the map A -> B.
11410 * Error out if "set" is not of the form (A -> B).
11412 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
11414 return isl_map_change_space(set, &isl_set_is_wrapping,
11415 "not a wrapping set", &isl_space_unwrap);
11418 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
11419 enum isl_dim_type type)
11421 if (!bmap)
11422 return NULL;
11424 if (!isl_space_is_named_or_nested(bmap->dim, type))
11425 return bmap;
11427 bmap = isl_basic_map_cow(bmap);
11428 if (!bmap)
11429 return NULL;
11431 bmap->dim = isl_space_reset(bmap->dim, type);
11432 if (!bmap->dim)
11433 goto error;
11435 bmap = isl_basic_map_finalize(bmap);
11437 return bmap;
11438 error:
11439 isl_basic_map_free(bmap);
11440 return NULL;
11443 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
11444 enum isl_dim_type type)
11446 int i;
11448 if (!map)
11449 return NULL;
11451 if (!isl_space_is_named_or_nested(map->dim, type))
11452 return map;
11454 map = isl_map_cow(map);
11455 if (!map)
11456 return NULL;
11458 for (i = 0; i < map->n; ++i) {
11459 map->p[i] = isl_basic_map_reset(map->p[i], type);
11460 if (!map->p[i])
11461 goto error;
11463 map->dim = isl_space_reset(map->dim, type);
11464 if (!map->dim)
11465 goto error;
11467 return map;
11468 error:
11469 isl_map_free(map);
11470 return NULL;
11473 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
11475 if (!bmap)
11476 return NULL;
11478 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
11479 return bmap;
11481 bmap = isl_basic_map_cow(bmap);
11482 if (!bmap)
11483 return NULL;
11485 bmap->dim = isl_space_flatten(bmap->dim);
11486 if (!bmap->dim)
11487 goto error;
11489 bmap = isl_basic_map_finalize(bmap);
11491 return bmap;
11492 error:
11493 isl_basic_map_free(bmap);
11494 return NULL;
11497 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
11499 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset)));
11502 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
11503 __isl_take isl_basic_map *bmap)
11505 if (!bmap)
11506 return NULL;
11508 if (!bmap->dim->nested[0])
11509 return bmap;
11511 bmap = isl_basic_map_cow(bmap);
11512 if (!bmap)
11513 return NULL;
11515 bmap->dim = isl_space_flatten_domain(bmap->dim);
11516 if (!bmap->dim)
11517 goto error;
11519 bmap = isl_basic_map_finalize(bmap);
11521 return bmap;
11522 error:
11523 isl_basic_map_free(bmap);
11524 return NULL;
11527 __isl_give isl_basic_map *isl_basic_map_flatten_range(
11528 __isl_take isl_basic_map *bmap)
11530 if (!bmap)
11531 return NULL;
11533 if (!bmap->dim->nested[1])
11534 return bmap;
11536 bmap = isl_basic_map_cow(bmap);
11537 if (!bmap)
11538 return NULL;
11540 bmap->dim = isl_space_flatten_range(bmap->dim);
11541 if (!bmap->dim)
11542 goto error;
11544 bmap = isl_basic_map_finalize(bmap);
11546 return bmap;
11547 error:
11548 isl_basic_map_free(bmap);
11549 return NULL;
11552 /* Remove any internal structure from the spaces of domain and range of "map".
11554 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
11556 if (!map)
11557 return NULL;
11559 if (!map->dim->nested[0] && !map->dim->nested[1])
11560 return map;
11562 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
11565 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
11567 return set_from_map(isl_map_flatten(set_to_map(set)));
11570 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
11572 isl_space *dim, *flat_dim;
11573 isl_map *map;
11575 dim = isl_set_get_space(set);
11576 flat_dim = isl_space_flatten(isl_space_copy(dim));
11577 map = isl_map_identity(isl_space_join(isl_space_reverse(dim), flat_dim));
11578 map = isl_map_intersect_domain(map, set);
11580 return map;
11583 /* Remove any internal structure from the space of the domain of "map".
11585 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
11587 if (!map)
11588 return NULL;
11590 if (!map->dim->nested[0])
11591 return map;
11593 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
11596 /* Remove any internal structure from the space of the range of "map".
11598 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
11600 if (!map)
11601 return NULL;
11603 if (!map->dim->nested[1])
11604 return map;
11606 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
11609 /* Reorder the dimensions of "bmap" according to the given dim_map
11610 * and set the dimension specification to "dim" and
11611 * perform Gaussian elimination on the result.
11613 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
11614 __isl_take isl_space *dim, __isl_take struct isl_dim_map *dim_map)
11616 isl_basic_map *res;
11617 unsigned flags;
11619 bmap = isl_basic_map_cow(bmap);
11620 if (!bmap || !dim || !dim_map)
11621 goto error;
11623 flags = bmap->flags;
11624 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
11625 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED);
11626 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
11627 res = isl_basic_map_alloc_space(dim,
11628 bmap->n_div, bmap->n_eq, bmap->n_ineq);
11629 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
11630 if (res)
11631 res->flags = flags;
11632 res = isl_basic_map_gauss(res, NULL);
11633 res = isl_basic_map_finalize(res);
11634 return res;
11635 error:
11636 free(dim_map);
11637 isl_basic_map_free(bmap);
11638 isl_space_free(dim);
11639 return NULL;
11642 /* Reorder the dimensions of "map" according to given reordering.
11644 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
11645 __isl_take isl_reordering *r)
11647 int i;
11648 struct isl_dim_map *dim_map;
11650 map = isl_map_cow(map);
11651 dim_map = isl_dim_map_from_reordering(r);
11652 if (!map || !r || !dim_map)
11653 goto error;
11655 for (i = 0; i < map->n; ++i) {
11656 struct isl_dim_map *dim_map_i;
11658 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
11660 map->p[i] = isl_basic_map_realign(map->p[i],
11661 isl_space_copy(r->dim), dim_map_i);
11663 if (!map->p[i])
11664 goto error;
11667 map = isl_map_reset_space(map, isl_space_copy(r->dim));
11669 isl_reordering_free(r);
11670 free(dim_map);
11671 return map;
11672 error:
11673 free(dim_map);
11674 isl_map_free(map);
11675 isl_reordering_free(r);
11676 return NULL;
11679 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
11680 __isl_take isl_reordering *r)
11682 return set_from_map(isl_map_realign(set_to_map(set), r));
11685 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
11686 __isl_take isl_space *model)
11688 isl_ctx *ctx;
11690 if (!map || !model)
11691 goto error;
11693 ctx = isl_space_get_ctx(model);
11694 if (!isl_space_has_named_params(model))
11695 isl_die(ctx, isl_error_invalid,
11696 "model has unnamed parameters", goto error);
11697 if (!isl_space_has_named_params(map->dim))
11698 isl_die(ctx, isl_error_invalid,
11699 "relation has unnamed parameters", goto error);
11700 if (!isl_space_match(map->dim, isl_dim_param, model, isl_dim_param)) {
11701 isl_reordering *exp;
11703 model = isl_space_drop_dims(model, isl_dim_in,
11704 0, isl_space_dim(model, isl_dim_in));
11705 model = isl_space_drop_dims(model, isl_dim_out,
11706 0, isl_space_dim(model, isl_dim_out));
11707 exp = isl_parameter_alignment_reordering(map->dim, model);
11708 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
11709 map = isl_map_realign(map, exp);
11712 isl_space_free(model);
11713 return map;
11714 error:
11715 isl_space_free(model);
11716 isl_map_free(map);
11717 return NULL;
11720 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
11721 __isl_take isl_space *model)
11723 return isl_map_align_params(set, model);
11726 /* Align the parameters of "bmap" to those of "model", introducing
11727 * additional parameters if needed.
11729 __isl_give isl_basic_map *isl_basic_map_align_params(
11730 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
11732 isl_ctx *ctx;
11734 if (!bmap || !model)
11735 goto error;
11737 ctx = isl_space_get_ctx(model);
11738 if (!isl_space_has_named_params(model))
11739 isl_die(ctx, isl_error_invalid,
11740 "model has unnamed parameters", goto error);
11741 if (!isl_space_has_named_params(bmap->dim))
11742 isl_die(ctx, isl_error_invalid,
11743 "relation has unnamed parameters", goto error);
11744 if (!isl_space_match(bmap->dim, isl_dim_param, model, isl_dim_param)) {
11745 isl_reordering *exp;
11746 struct isl_dim_map *dim_map;
11748 model = isl_space_drop_dims(model, isl_dim_in,
11749 0, isl_space_dim(model, isl_dim_in));
11750 model = isl_space_drop_dims(model, isl_dim_out,
11751 0, isl_space_dim(model, isl_dim_out));
11752 exp = isl_parameter_alignment_reordering(bmap->dim, model);
11753 exp = isl_reordering_extend_space(exp,
11754 isl_basic_map_get_space(bmap));
11755 dim_map = isl_dim_map_from_reordering(exp);
11756 bmap = isl_basic_map_realign(bmap,
11757 exp ? isl_space_copy(exp->dim) : NULL,
11758 isl_dim_map_extend(dim_map, bmap));
11759 isl_reordering_free(exp);
11760 free(dim_map);
11763 isl_space_free(model);
11764 return bmap;
11765 error:
11766 isl_space_free(model);
11767 isl_basic_map_free(bmap);
11768 return NULL;
11771 /* Align the parameters of "bset" to those of "model", introducing
11772 * additional parameters if needed.
11774 __isl_give isl_basic_set *isl_basic_set_align_params(
11775 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
11777 return isl_basic_map_align_params(bset, model);
11780 __isl_give isl_mat *isl_basic_map_equalities_matrix(
11781 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11782 enum isl_dim_type c2, enum isl_dim_type c3,
11783 enum isl_dim_type c4, enum isl_dim_type c5)
11785 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11786 struct isl_mat *mat;
11787 int i, j, k;
11788 int pos;
11790 if (!bmap)
11791 return NULL;
11792 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
11793 isl_basic_map_total_dim(bmap) + 1);
11794 if (!mat)
11795 return NULL;
11796 for (i = 0; i < bmap->n_eq; ++i)
11797 for (j = 0, pos = 0; j < 5; ++j) {
11798 int off = isl_basic_map_offset(bmap, c[j]);
11799 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11800 isl_int_set(mat->row[i][pos],
11801 bmap->eq[i][off + k]);
11802 ++pos;
11806 return mat;
11809 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
11810 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11811 enum isl_dim_type c2, enum isl_dim_type c3,
11812 enum isl_dim_type c4, enum isl_dim_type c5)
11814 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11815 struct isl_mat *mat;
11816 int i, j, k;
11817 int pos;
11819 if (!bmap)
11820 return NULL;
11821 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
11822 isl_basic_map_total_dim(bmap) + 1);
11823 if (!mat)
11824 return NULL;
11825 for (i = 0; i < bmap->n_ineq; ++i)
11826 for (j = 0, pos = 0; j < 5; ++j) {
11827 int off = isl_basic_map_offset(bmap, c[j]);
11828 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11829 isl_int_set(mat->row[i][pos],
11830 bmap->ineq[i][off + k]);
11831 ++pos;
11835 return mat;
11838 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
11839 __isl_take isl_space *dim,
11840 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11841 enum isl_dim_type c2, enum isl_dim_type c3,
11842 enum isl_dim_type c4, enum isl_dim_type c5)
11844 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11845 isl_basic_map *bmap;
11846 unsigned total;
11847 unsigned extra;
11848 int i, j, k, l;
11849 int pos;
11851 if (!dim || !eq || !ineq)
11852 goto error;
11854 if (eq->n_col != ineq->n_col)
11855 isl_die(dim->ctx, isl_error_invalid,
11856 "equalities and inequalities matrices should have "
11857 "same number of columns", goto error);
11859 total = 1 + isl_space_dim(dim, isl_dim_all);
11861 if (eq->n_col < total)
11862 isl_die(dim->ctx, isl_error_invalid,
11863 "number of columns too small", goto error);
11865 extra = eq->n_col - total;
11867 bmap = isl_basic_map_alloc_space(isl_space_copy(dim), extra,
11868 eq->n_row, ineq->n_row);
11869 if (!bmap)
11870 goto error;
11871 for (i = 0; i < extra; ++i) {
11872 k = isl_basic_map_alloc_div(bmap);
11873 if (k < 0)
11874 goto error;
11875 isl_int_set_si(bmap->div[k][0], 0);
11877 for (i = 0; i < eq->n_row; ++i) {
11878 l = isl_basic_map_alloc_equality(bmap);
11879 if (l < 0)
11880 goto error;
11881 for (j = 0, pos = 0; j < 5; ++j) {
11882 int off = isl_basic_map_offset(bmap, c[j]);
11883 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11884 isl_int_set(bmap->eq[l][off + k],
11885 eq->row[i][pos]);
11886 ++pos;
11890 for (i = 0; i < ineq->n_row; ++i) {
11891 l = isl_basic_map_alloc_inequality(bmap);
11892 if (l < 0)
11893 goto error;
11894 for (j = 0, pos = 0; j < 5; ++j) {
11895 int off = isl_basic_map_offset(bmap, c[j]);
11896 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11897 isl_int_set(bmap->ineq[l][off + k],
11898 ineq->row[i][pos]);
11899 ++pos;
11904 isl_space_free(dim);
11905 isl_mat_free(eq);
11906 isl_mat_free(ineq);
11908 bmap = isl_basic_map_simplify(bmap);
11909 return isl_basic_map_finalize(bmap);
11910 error:
11911 isl_space_free(dim);
11912 isl_mat_free(eq);
11913 isl_mat_free(ineq);
11914 return NULL;
11917 __isl_give isl_mat *isl_basic_set_equalities_matrix(
11918 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11919 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11921 return isl_basic_map_equalities_matrix(bset_to_bmap(bset),
11922 c1, c2, c3, c4, isl_dim_in);
11925 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
11926 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11927 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11929 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset),
11930 c1, c2, c3, c4, isl_dim_in);
11933 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
11934 __isl_take isl_space *dim,
11935 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11936 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11938 isl_basic_map *bmap;
11939 bmap = isl_basic_map_from_constraint_matrices(dim, eq, ineq,
11940 c1, c2, c3, c4, isl_dim_in);
11941 return bset_from_bmap(bmap);
11944 isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
11946 if (!bmap)
11947 return isl_bool_error;
11949 return isl_space_can_zip(bmap->dim);
11952 isl_bool isl_map_can_zip(__isl_keep isl_map *map)
11954 if (!map)
11955 return isl_bool_error;
11957 return isl_space_can_zip(map->dim);
11960 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
11961 * (A -> C) -> (B -> D).
11963 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
11965 unsigned pos;
11966 unsigned n1;
11967 unsigned n2;
11969 if (!bmap)
11970 return NULL;
11972 if (!isl_basic_map_can_zip(bmap))
11973 isl_die(bmap->ctx, isl_error_invalid,
11974 "basic map cannot be zipped", goto error);
11975 pos = isl_basic_map_offset(bmap, isl_dim_in) +
11976 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
11977 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
11978 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
11979 bmap = isl_basic_map_cow(bmap);
11980 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
11981 if (!bmap)
11982 return NULL;
11983 bmap->dim = isl_space_zip(bmap->dim);
11984 if (!bmap->dim)
11985 goto error;
11986 bmap = isl_basic_map_mark_final(bmap);
11987 return bmap;
11988 error:
11989 isl_basic_map_free(bmap);
11990 return NULL;
11993 /* Given a map (A -> B) -> (C -> D), return the corresponding map
11994 * (A -> C) -> (B -> D).
11996 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
11998 int i;
12000 if (!map)
12001 return NULL;
12003 if (!isl_map_can_zip(map))
12004 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
12005 goto error);
12007 map = isl_map_cow(map);
12008 if (!map)
12009 return NULL;
12011 for (i = 0; i < map->n; ++i) {
12012 map->p[i] = isl_basic_map_zip(map->p[i]);
12013 if (!map->p[i])
12014 goto error;
12017 map->dim = isl_space_zip(map->dim);
12018 if (!map->dim)
12019 goto error;
12021 return map;
12022 error:
12023 isl_map_free(map);
12024 return NULL;
12027 /* Can we apply isl_basic_map_curry to "bmap"?
12028 * That is, does it have a nested relation in its domain?
12030 isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
12032 if (!bmap)
12033 return isl_bool_error;
12035 return isl_space_can_curry(bmap->dim);
12038 /* Can we apply isl_map_curry to "map"?
12039 * That is, does it have a nested relation in its domain?
12041 isl_bool isl_map_can_curry(__isl_keep isl_map *map)
12043 if (!map)
12044 return isl_bool_error;
12046 return isl_space_can_curry(map->dim);
12049 /* Given a basic map (A -> B) -> C, return the corresponding basic map
12050 * A -> (B -> C).
12052 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
12055 if (!bmap)
12056 return NULL;
12058 if (!isl_basic_map_can_curry(bmap))
12059 isl_die(bmap->ctx, isl_error_invalid,
12060 "basic map cannot be curried", goto error);
12061 bmap = isl_basic_map_cow(bmap);
12062 if (!bmap)
12063 return NULL;
12064 bmap->dim = isl_space_curry(bmap->dim);
12065 if (!bmap->dim)
12066 goto error;
12067 bmap = isl_basic_map_mark_final(bmap);
12068 return bmap;
12069 error:
12070 isl_basic_map_free(bmap);
12071 return NULL;
12074 /* Given a map (A -> B) -> C, return the corresponding map
12075 * A -> (B -> C).
12077 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
12079 return isl_map_change_space(map, &isl_map_can_curry,
12080 "map cannot be curried", &isl_space_curry);
12083 /* Can isl_map_range_curry be applied to "map"?
12084 * That is, does it have a nested relation in its range,
12085 * the domain of which is itself a nested relation?
12087 isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
12089 if (!map)
12090 return isl_bool_error;
12092 return isl_space_can_range_curry(map->dim);
12095 /* Given a map A -> ((B -> C) -> D), return the corresponding map
12096 * A -> (B -> (C -> D)).
12098 __isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
12100 return isl_map_change_space(map, &isl_map_can_range_curry,
12101 "map range cannot be curried",
12102 &isl_space_range_curry);
12105 /* Can we apply isl_basic_map_uncurry to "bmap"?
12106 * That is, does it have a nested relation in its domain?
12108 isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
12110 if (!bmap)
12111 return isl_bool_error;
12113 return isl_space_can_uncurry(bmap->dim);
12116 /* Can we apply isl_map_uncurry to "map"?
12117 * That is, does it have a nested relation in its domain?
12119 isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
12121 if (!map)
12122 return isl_bool_error;
12124 return isl_space_can_uncurry(map->dim);
12127 /* Given a basic map A -> (B -> C), return the corresponding basic map
12128 * (A -> B) -> C.
12130 __isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
12133 if (!bmap)
12134 return NULL;
12136 if (!isl_basic_map_can_uncurry(bmap))
12137 isl_die(bmap->ctx, isl_error_invalid,
12138 "basic map cannot be uncurried",
12139 return isl_basic_map_free(bmap));
12140 bmap = isl_basic_map_cow(bmap);
12141 if (!bmap)
12142 return NULL;
12143 bmap->dim = isl_space_uncurry(bmap->dim);
12144 if (!bmap->dim)
12145 return isl_basic_map_free(bmap);
12146 bmap = isl_basic_map_mark_final(bmap);
12147 return bmap;
12150 /* Given a map A -> (B -> C), return the corresponding map
12151 * (A -> B) -> C.
12153 __isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
12155 return isl_map_change_space(map, &isl_map_can_uncurry,
12156 "map cannot be uncurried", &isl_space_uncurry);
12159 /* Construct a basic map mapping the domain of the affine expression
12160 * to a one-dimensional range prescribed by the affine expression.
12161 * If "rational" is set, then construct a rational basic map.
12163 * A NaN affine expression cannot be converted to a basic map.
12165 static __isl_give isl_basic_map *isl_basic_map_from_aff2(
12166 __isl_take isl_aff *aff, int rational)
12168 int k;
12169 int pos;
12170 isl_bool is_nan;
12171 isl_local_space *ls;
12172 isl_basic_map *bmap = NULL;
12174 if (!aff)
12175 return NULL;
12176 is_nan = isl_aff_is_nan(aff);
12177 if (is_nan < 0)
12178 goto error;
12179 if (is_nan)
12180 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
12181 "cannot convert NaN", goto error);
12183 ls = isl_aff_get_local_space(aff);
12184 bmap = isl_basic_map_from_local_space(ls);
12185 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
12186 k = isl_basic_map_alloc_equality(bmap);
12187 if (k < 0)
12188 goto error;
12190 pos = isl_basic_map_offset(bmap, isl_dim_out);
12191 isl_seq_cpy(bmap->eq[k], aff->v->el + 1, pos);
12192 isl_int_neg(bmap->eq[k][pos], aff->v->el[0]);
12193 isl_seq_cpy(bmap->eq[k] + pos + 1, aff->v->el + 1 + pos,
12194 aff->v->size - (pos + 1));
12196 isl_aff_free(aff);
12197 if (rational)
12198 bmap = isl_basic_map_set_rational(bmap);
12199 bmap = isl_basic_map_finalize(bmap);
12200 return bmap;
12201 error:
12202 isl_aff_free(aff);
12203 isl_basic_map_free(bmap);
12204 return NULL;
12207 /* Construct a basic map mapping the domain of the affine expression
12208 * to a one-dimensional range prescribed by the affine expression.
12210 __isl_give isl_basic_map *isl_basic_map_from_aff(__isl_take isl_aff *aff)
12212 return isl_basic_map_from_aff2(aff, 0);
12215 /* Construct a map mapping the domain of the affine expression
12216 * to a one-dimensional range prescribed by the affine expression.
12218 __isl_give isl_map *isl_map_from_aff(__isl_take isl_aff *aff)
12220 isl_basic_map *bmap;
12222 bmap = isl_basic_map_from_aff(aff);
12223 return isl_map_from_basic_map(bmap);
12226 /* Construct a basic map mapping the domain the multi-affine expression
12227 * to its range, with each dimension in the range equated to the
12228 * corresponding affine expression.
12229 * If "rational" is set, then construct a rational basic map.
12231 __isl_give isl_basic_map *isl_basic_map_from_multi_aff2(
12232 __isl_take isl_multi_aff *maff, int rational)
12234 int i;
12235 isl_space *space;
12236 isl_basic_map *bmap;
12238 if (!maff)
12239 return NULL;
12241 if (isl_space_dim(maff->space, isl_dim_out) != maff->n)
12242 isl_die(isl_multi_aff_get_ctx(maff), isl_error_internal,
12243 "invalid space", goto error);
12245 space = isl_space_domain(isl_multi_aff_get_space(maff));
12246 bmap = isl_basic_map_universe(isl_space_from_domain(space));
12247 if (rational)
12248 bmap = isl_basic_map_set_rational(bmap);
12250 for (i = 0; i < maff->n; ++i) {
12251 isl_aff *aff;
12252 isl_basic_map *bmap_i;
12254 aff = isl_aff_copy(maff->p[i]);
12255 bmap_i = isl_basic_map_from_aff2(aff, rational);
12257 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
12260 bmap = isl_basic_map_reset_space(bmap, isl_multi_aff_get_space(maff));
12262 isl_multi_aff_free(maff);
12263 return bmap;
12264 error:
12265 isl_multi_aff_free(maff);
12266 return NULL;
12269 /* Construct a basic map mapping the domain the multi-affine expression
12270 * to its range, with each dimension in the range equated to the
12271 * corresponding affine expression.
12273 __isl_give isl_basic_map *isl_basic_map_from_multi_aff(
12274 __isl_take isl_multi_aff *ma)
12276 return isl_basic_map_from_multi_aff2(ma, 0);
12279 /* Construct a map mapping the domain the multi-affine expression
12280 * to its range, with each dimension in the range equated to the
12281 * corresponding affine expression.
12283 __isl_give isl_map *isl_map_from_multi_aff(__isl_take isl_multi_aff *maff)
12285 isl_basic_map *bmap;
12287 bmap = isl_basic_map_from_multi_aff(maff);
12288 return isl_map_from_basic_map(bmap);
12291 /* Construct a basic map mapping a domain in the given space to
12292 * to an n-dimensional range, with n the number of elements in the list,
12293 * where each coordinate in the range is prescribed by the
12294 * corresponding affine expression.
12295 * The domains of all affine expressions in the list are assumed to match
12296 * domain_dim.
12298 __isl_give isl_basic_map *isl_basic_map_from_aff_list(
12299 __isl_take isl_space *domain_dim, __isl_take isl_aff_list *list)
12301 int i;
12302 isl_space *dim;
12303 isl_basic_map *bmap;
12305 if (!list)
12306 return NULL;
12308 dim = isl_space_from_domain(domain_dim);
12309 bmap = isl_basic_map_universe(dim);
12311 for (i = 0; i < list->n; ++i) {
12312 isl_aff *aff;
12313 isl_basic_map *bmap_i;
12315 aff = isl_aff_copy(list->p[i]);
12316 bmap_i = isl_basic_map_from_aff(aff);
12318 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
12321 isl_aff_list_free(list);
12322 return bmap;
12325 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
12326 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12328 return isl_map_equate(set, type1, pos1, type2, pos2);
12331 /* Construct a basic map where the given dimensions are equal to each other.
12333 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
12334 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12336 isl_basic_map *bmap = NULL;
12337 int i;
12339 if (!space)
12340 return NULL;
12342 if (pos1 >= isl_space_dim(space, type1))
12343 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12344 "index out of bounds", goto error);
12345 if (pos2 >= isl_space_dim(space, type2))
12346 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12347 "index out of bounds", goto error);
12349 if (type1 == type2 && pos1 == pos2)
12350 return isl_basic_map_universe(space);
12352 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
12353 i = isl_basic_map_alloc_equality(bmap);
12354 if (i < 0)
12355 goto error;
12356 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12357 pos1 += isl_basic_map_offset(bmap, type1);
12358 pos2 += isl_basic_map_offset(bmap, type2);
12359 isl_int_set_si(bmap->eq[i][pos1], -1);
12360 isl_int_set_si(bmap->eq[i][pos2], 1);
12361 bmap = isl_basic_map_finalize(bmap);
12362 isl_space_free(space);
12363 return bmap;
12364 error:
12365 isl_space_free(space);
12366 isl_basic_map_free(bmap);
12367 return NULL;
12370 /* Add a constraint imposing that the given two dimensions are equal.
12372 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
12373 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12375 isl_basic_map *eq;
12377 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12379 bmap = isl_basic_map_intersect(bmap, eq);
12381 return bmap;
12384 /* Add a constraint imposing that the given two dimensions are equal.
12386 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
12387 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12389 isl_basic_map *bmap;
12391 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
12393 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12395 return map;
12398 /* Add a constraint imposing that the given two dimensions have opposite values.
12400 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
12401 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12403 isl_basic_map *bmap = NULL;
12404 int i;
12406 if (!map)
12407 return NULL;
12409 if (pos1 >= isl_map_dim(map, type1))
12410 isl_die(map->ctx, isl_error_invalid,
12411 "index out of bounds", goto error);
12412 if (pos2 >= isl_map_dim(map, type2))
12413 isl_die(map->ctx, isl_error_invalid,
12414 "index out of bounds", goto error);
12416 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
12417 i = isl_basic_map_alloc_equality(bmap);
12418 if (i < 0)
12419 goto error;
12420 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12421 pos1 += isl_basic_map_offset(bmap, type1);
12422 pos2 += isl_basic_map_offset(bmap, type2);
12423 isl_int_set_si(bmap->eq[i][pos1], 1);
12424 isl_int_set_si(bmap->eq[i][pos2], 1);
12425 bmap = isl_basic_map_finalize(bmap);
12427 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12429 return map;
12430 error:
12431 isl_basic_map_free(bmap);
12432 isl_map_free(map);
12433 return NULL;
12436 /* Construct a constraint imposing that the value of the first dimension is
12437 * greater than or equal to that of the second.
12439 static __isl_give isl_constraint *constraint_order_ge(
12440 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
12441 enum isl_dim_type type2, int pos2)
12443 isl_constraint *c;
12445 if (!space)
12446 return NULL;
12448 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
12450 if (pos1 >= isl_constraint_dim(c, type1))
12451 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12452 "index out of bounds", return isl_constraint_free(c));
12453 if (pos2 >= isl_constraint_dim(c, type2))
12454 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12455 "index out of bounds", return isl_constraint_free(c));
12457 if (type1 == type2 && pos1 == pos2)
12458 return c;
12460 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
12461 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
12463 return c;
12466 /* Add a constraint imposing that the value of the first dimension is
12467 * greater than or equal to that of the second.
12469 __isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
12470 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12472 isl_constraint *c;
12473 isl_space *space;
12475 if (type1 == type2 && pos1 == pos2)
12476 return bmap;
12477 space = isl_basic_map_get_space(bmap);
12478 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12479 bmap = isl_basic_map_add_constraint(bmap, c);
12481 return bmap;
12484 /* Add a constraint imposing that the value of the first dimension is
12485 * greater than or equal to that of the second.
12487 __isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
12488 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12490 isl_constraint *c;
12491 isl_space *space;
12493 if (type1 == type2 && pos1 == pos2)
12494 return map;
12495 space = isl_map_get_space(map);
12496 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12497 map = isl_map_add_constraint(map, c);
12499 return map;
12502 /* Add a constraint imposing that the value of the first dimension is
12503 * less than or equal to that of the second.
12505 __isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
12506 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12508 return isl_map_order_ge(map, type2, pos2, type1, pos1);
12511 /* Construct a basic map where the value of the first dimension is
12512 * greater than that of the second.
12514 static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
12515 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12517 isl_basic_map *bmap = NULL;
12518 int i;
12520 if (!space)
12521 return NULL;
12523 if (pos1 >= isl_space_dim(space, type1))
12524 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12525 "index out of bounds", goto error);
12526 if (pos2 >= isl_space_dim(space, type2))
12527 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12528 "index out of bounds", goto error);
12530 if (type1 == type2 && pos1 == pos2)
12531 return isl_basic_map_empty(space);
12533 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
12534 i = isl_basic_map_alloc_inequality(bmap);
12535 if (i < 0)
12536 return isl_basic_map_free(bmap);
12537 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
12538 pos1 += isl_basic_map_offset(bmap, type1);
12539 pos2 += isl_basic_map_offset(bmap, type2);
12540 isl_int_set_si(bmap->ineq[i][pos1], 1);
12541 isl_int_set_si(bmap->ineq[i][pos2], -1);
12542 isl_int_set_si(bmap->ineq[i][0], -1);
12543 bmap = isl_basic_map_finalize(bmap);
12545 return bmap;
12546 error:
12547 isl_space_free(space);
12548 isl_basic_map_free(bmap);
12549 return NULL;
12552 /* Add a constraint imposing that the value of the first dimension is
12553 * greater than that of the second.
12555 __isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
12556 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12558 isl_basic_map *gt;
12560 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12562 bmap = isl_basic_map_intersect(bmap, gt);
12564 return bmap;
12567 /* Add a constraint imposing that the value of the first dimension is
12568 * greater than that of the second.
12570 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
12571 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12573 isl_basic_map *bmap;
12575 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
12577 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12579 return map;
12582 /* Add a constraint imposing that the value of the first dimension is
12583 * smaller than that of the second.
12585 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
12586 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12588 return isl_map_order_gt(map, type2, pos2, type1, pos1);
12591 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
12592 int pos)
12594 isl_aff *div;
12595 isl_local_space *ls;
12597 if (!bmap)
12598 return NULL;
12600 if (!isl_basic_map_divs_known(bmap))
12601 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12602 "some divs are unknown", return NULL);
12604 ls = isl_basic_map_get_local_space(bmap);
12605 div = isl_local_space_get_div(ls, pos);
12606 isl_local_space_free(ls);
12608 return div;
12611 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
12612 int pos)
12614 return isl_basic_map_get_div(bset, pos);
12617 /* Plug in "subs" for dimension "type", "pos" of "bset".
12619 * Let i be the dimension to replace and let "subs" be of the form
12621 * f/d
12623 * Any integer division with a non-zero coefficient for i,
12625 * floor((a i + g)/m)
12627 * is replaced by
12629 * floor((a f + d g)/(m d))
12631 * Constraints of the form
12633 * a i + g
12635 * are replaced by
12637 * a f + d g
12639 * We currently require that "subs" is an integral expression.
12640 * Handling rational expressions may require us to add stride constraints
12641 * as we do in isl_basic_set_preimage_multi_aff.
12643 __isl_give isl_basic_set *isl_basic_set_substitute(
12644 __isl_take isl_basic_set *bset,
12645 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12647 int i;
12648 isl_int v;
12649 isl_ctx *ctx;
12651 if (bset && isl_basic_set_plain_is_empty(bset))
12652 return bset;
12654 bset = isl_basic_set_cow(bset);
12655 if (!bset || !subs)
12656 goto error;
12658 ctx = isl_basic_set_get_ctx(bset);
12659 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
12660 isl_die(ctx, isl_error_invalid,
12661 "spaces don't match", goto error);
12662 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
12663 isl_die(ctx, isl_error_unsupported,
12664 "cannot handle divs yet", goto error);
12665 if (!isl_int_is_one(subs->v->el[0]))
12666 isl_die(ctx, isl_error_invalid,
12667 "can only substitute integer expressions", goto error);
12669 pos += isl_basic_set_offset(bset, type);
12671 isl_int_init(v);
12673 for (i = 0; i < bset->n_eq; ++i) {
12674 if (isl_int_is_zero(bset->eq[i][pos]))
12675 continue;
12676 isl_int_set(v, bset->eq[i][pos]);
12677 isl_int_set_si(bset->eq[i][pos], 0);
12678 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
12679 v, subs->v->el + 1, subs->v->size - 1);
12682 for (i = 0; i < bset->n_ineq; ++i) {
12683 if (isl_int_is_zero(bset->ineq[i][pos]))
12684 continue;
12685 isl_int_set(v, bset->ineq[i][pos]);
12686 isl_int_set_si(bset->ineq[i][pos], 0);
12687 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
12688 v, subs->v->el + 1, subs->v->size - 1);
12691 for (i = 0; i < bset->n_div; ++i) {
12692 if (isl_int_is_zero(bset->div[i][1 + pos]))
12693 continue;
12694 isl_int_set(v, bset->div[i][1 + pos]);
12695 isl_int_set_si(bset->div[i][1 + pos], 0);
12696 isl_seq_combine(bset->div[i] + 1,
12697 subs->v->el[0], bset->div[i] + 1,
12698 v, subs->v->el + 1, subs->v->size - 1);
12699 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
12702 isl_int_clear(v);
12704 bset = isl_basic_set_simplify(bset);
12705 return isl_basic_set_finalize(bset);
12706 error:
12707 isl_basic_set_free(bset);
12708 return NULL;
12711 /* Plug in "subs" for dimension "type", "pos" of "set".
12713 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
12714 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12716 int i;
12718 if (set && isl_set_plain_is_empty(set))
12719 return set;
12721 set = isl_set_cow(set);
12722 if (!set || !subs)
12723 goto error;
12725 for (i = set->n - 1; i >= 0; --i) {
12726 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
12727 if (remove_if_empty(set, i) < 0)
12728 goto error;
12731 return set;
12732 error:
12733 isl_set_free(set);
12734 return NULL;
12737 /* Check if the range of "ma" is compatible with the domain or range
12738 * (depending on "type") of "bmap".
12739 * Return -1 if anything is wrong.
12741 static int check_basic_map_compatible_range_multi_aff(
12742 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
12743 __isl_keep isl_multi_aff *ma)
12745 int m;
12746 isl_space *ma_space;
12748 ma_space = isl_multi_aff_get_space(ma);
12750 m = isl_space_match(bmap->dim, isl_dim_param, ma_space, isl_dim_param);
12751 if (m < 0)
12752 goto error;
12753 if (!m)
12754 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12755 "parameters don't match", goto error);
12756 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
12757 if (m < 0)
12758 goto error;
12759 if (!m)
12760 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12761 "spaces don't match", goto error);
12763 isl_space_free(ma_space);
12764 return m;
12765 error:
12766 isl_space_free(ma_space);
12767 return -1;
12770 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12771 * coefficients before the transformed range of dimensions,
12772 * the "n_after" coefficients after the transformed range of dimensions
12773 * and the coefficients of the other divs in "bmap".
12775 static int set_ma_divs(__isl_keep isl_basic_map *bmap,
12776 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
12778 int i;
12779 int n_param;
12780 int n_set;
12781 isl_local_space *ls;
12783 if (n_div == 0)
12784 return 0;
12786 ls = isl_aff_get_domain_local_space(ma->p[0]);
12787 if (!ls)
12788 return -1;
12790 n_param = isl_local_space_dim(ls, isl_dim_param);
12791 n_set = isl_local_space_dim(ls, isl_dim_set);
12792 for (i = 0; i < n_div; ++i) {
12793 int o_bmap = 0, o_ls = 0;
12795 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
12796 o_bmap += 1 + 1 + n_param;
12797 o_ls += 1 + 1 + n_param;
12798 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
12799 o_bmap += n_before;
12800 isl_seq_cpy(bmap->div[i] + o_bmap,
12801 ls->div->row[i] + o_ls, n_set);
12802 o_bmap += n_set;
12803 o_ls += n_set;
12804 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
12805 o_bmap += n_after;
12806 isl_seq_cpy(bmap->div[i] + o_bmap,
12807 ls->div->row[i] + o_ls, n_div);
12808 o_bmap += n_div;
12809 o_ls += n_div;
12810 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
12811 if (isl_basic_set_add_div_constraints(bmap, i) < 0)
12812 goto error;
12815 isl_local_space_free(ls);
12816 return 0;
12817 error:
12818 isl_local_space_free(ls);
12819 return -1;
12822 /* How many stride constraints does "ma" enforce?
12823 * That is, how many of the affine expressions have a denominator
12824 * different from one?
12826 static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
12828 int i;
12829 int strides = 0;
12831 for (i = 0; i < ma->n; ++i)
12832 if (!isl_int_is_one(ma->p[i]->v->el[0]))
12833 strides++;
12835 return strides;
12838 /* For each affine expression in ma of the form
12840 * x_i = (f_i y + h_i)/m_i
12842 * with m_i different from one, add a constraint to "bmap"
12843 * of the form
12845 * f_i y + h_i = m_i alpha_i
12847 * with alpha_i an additional existentially quantified variable.
12849 * The input variables of "ma" correspond to a subset of the variables
12850 * of "bmap". There are "n_before" variables in "bmap" before this
12851 * subset and "n_after" variables after this subset.
12852 * The integer divisions of the affine expressions in "ma" are assumed
12853 * to have been aligned. There are "n_div_ma" of them and
12854 * they appear first in "bmap", straight after the "n_after" variables.
12856 static __isl_give isl_basic_map *add_ma_strides(
12857 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
12858 int n_before, int n_after, int n_div_ma)
12860 int i, k;
12861 int div;
12862 int total;
12863 int n_param;
12864 int n_in;
12866 total = isl_basic_map_total_dim(bmap);
12867 n_param = isl_multi_aff_dim(ma, isl_dim_param);
12868 n_in = isl_multi_aff_dim(ma, isl_dim_in);
12869 for (i = 0; i < ma->n; ++i) {
12870 int o_bmap = 0, o_ma = 1;
12872 if (isl_int_is_one(ma->p[i]->v->el[0]))
12873 continue;
12874 div = isl_basic_map_alloc_div(bmap);
12875 k = isl_basic_map_alloc_equality(bmap);
12876 if (div < 0 || k < 0)
12877 goto error;
12878 isl_int_set_si(bmap->div[div][0], 0);
12879 isl_seq_cpy(bmap->eq[k] + o_bmap,
12880 ma->p[i]->v->el + o_ma, 1 + n_param);
12881 o_bmap += 1 + n_param;
12882 o_ma += 1 + n_param;
12883 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
12884 o_bmap += n_before;
12885 isl_seq_cpy(bmap->eq[k] + o_bmap,
12886 ma->p[i]->v->el + o_ma, n_in);
12887 o_bmap += n_in;
12888 o_ma += n_in;
12889 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
12890 o_bmap += n_after;
12891 isl_seq_cpy(bmap->eq[k] + o_bmap,
12892 ma->p[i]->v->el + o_ma, n_div_ma);
12893 o_bmap += n_div_ma;
12894 o_ma += n_div_ma;
12895 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
12896 isl_int_neg(bmap->eq[k][1 + total], ma->p[i]->v->el[0]);
12897 total++;
12900 return bmap;
12901 error:
12902 isl_basic_map_free(bmap);
12903 return NULL;
12906 /* Replace the domain or range space (depending on "type) of "space" by "set".
12908 static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
12909 enum isl_dim_type type, __isl_take isl_space *set)
12911 if (type == isl_dim_in) {
12912 space = isl_space_range(space);
12913 space = isl_space_map_from_domain_and_range(set, space);
12914 } else {
12915 space = isl_space_domain(space);
12916 space = isl_space_map_from_domain_and_range(space, set);
12919 return space;
12922 /* Compute the preimage of the domain or range (depending on "type")
12923 * of "bmap" under the function represented by "ma".
12924 * In other words, plug in "ma" in the domain or range of "bmap".
12925 * The result is a basic map that lives in the same space as "bmap"
12926 * except that the domain or range has been replaced by
12927 * the domain space of "ma".
12929 * If bmap is represented by
12931 * A(p) + S u + B x + T v + C(divs) >= 0,
12933 * where u and x are input and output dimensions if type == isl_dim_out
12934 * while x and v are input and output dimensions if type == isl_dim_in,
12935 * and ma is represented by
12937 * x = D(p) + F(y) + G(divs')
12939 * then the result is
12941 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12943 * The divs in the input set are similarly adjusted.
12944 * In particular
12946 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12948 * becomes
12950 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12951 * B_i G(divs') + c_i(divs))/n_i)
12953 * If bmap is not a rational map and if F(y) involves any denominators
12955 * x_i = (f_i y + h_i)/m_i
12957 * then additional constraints are added to ensure that we only
12958 * map back integer points. That is we enforce
12960 * f_i y + h_i = m_i alpha_i
12962 * with alpha_i an additional existentially quantified variable.
12964 * We first copy over the divs from "ma".
12965 * Then we add the modified constraints and divs from "bmap".
12966 * Finally, we add the stride constraints, if needed.
12968 __isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
12969 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
12970 __isl_take isl_multi_aff *ma)
12972 int i, k;
12973 isl_space *space;
12974 isl_basic_map *res = NULL;
12975 int n_before, n_after, n_div_bmap, n_div_ma;
12976 isl_int f, c1, c2, g;
12977 isl_bool rational;
12978 int strides;
12980 isl_int_init(f);
12981 isl_int_init(c1);
12982 isl_int_init(c2);
12983 isl_int_init(g);
12985 ma = isl_multi_aff_align_divs(ma);
12986 if (!bmap || !ma)
12987 goto error;
12988 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
12989 goto error;
12991 if (type == isl_dim_in) {
12992 n_before = 0;
12993 n_after = isl_basic_map_dim(bmap, isl_dim_out);
12994 } else {
12995 n_before = isl_basic_map_dim(bmap, isl_dim_in);
12996 n_after = 0;
12998 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
12999 n_div_ma = ma->n ? isl_aff_dim(ma->p[0], isl_dim_div) : 0;
13001 space = isl_multi_aff_get_domain_space(ma);
13002 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
13003 rational = isl_basic_map_is_rational(bmap);
13004 strides = rational ? 0 : multi_aff_strides(ma);
13005 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
13006 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
13007 if (rational)
13008 res = isl_basic_map_set_rational(res);
13010 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
13011 if (isl_basic_map_alloc_div(res) < 0)
13012 goto error;
13014 if (set_ma_divs(res, ma, n_before, n_after, n_div_ma) < 0)
13015 goto error;
13017 for (i = 0; i < bmap->n_eq; ++i) {
13018 k = isl_basic_map_alloc_equality(res);
13019 if (k < 0)
13020 goto error;
13021 isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
13022 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13025 for (i = 0; i < bmap->n_ineq; ++i) {
13026 k = isl_basic_map_alloc_inequality(res);
13027 if (k < 0)
13028 goto error;
13029 isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
13030 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13033 for (i = 0; i < bmap->n_div; ++i) {
13034 if (isl_int_is_zero(bmap->div[i][0])) {
13035 isl_int_set_si(res->div[n_div_ma + i][0], 0);
13036 continue;
13038 isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
13039 n_before, n_after, n_div_ma, n_div_bmap,
13040 f, c1, c2, g, 1);
13043 if (strides)
13044 res = add_ma_strides(res, ma, n_before, n_after, n_div_ma);
13046 isl_int_clear(f);
13047 isl_int_clear(c1);
13048 isl_int_clear(c2);
13049 isl_int_clear(g);
13050 isl_basic_map_free(bmap);
13051 isl_multi_aff_free(ma);
13052 res = isl_basic_set_simplify(res);
13053 return isl_basic_map_finalize(res);
13054 error:
13055 isl_int_clear(f);
13056 isl_int_clear(c1);
13057 isl_int_clear(c2);
13058 isl_int_clear(g);
13059 isl_basic_map_free(bmap);
13060 isl_multi_aff_free(ma);
13061 isl_basic_map_free(res);
13062 return NULL;
13065 /* Compute the preimage of "bset" under the function represented by "ma".
13066 * In other words, plug in "ma" in "bset". The result is a basic set
13067 * that lives in the domain space of "ma".
13069 __isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
13070 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
13072 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
13075 /* Compute the preimage of the domain of "bmap" under the function
13076 * represented by "ma".
13077 * In other words, plug in "ma" in the domain of "bmap".
13078 * The result is a basic map that lives in the same space as "bmap"
13079 * except that the domain has been replaced by the domain space of "ma".
13081 __isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
13082 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13084 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
13087 /* Compute the preimage of the range of "bmap" under the function
13088 * represented by "ma".
13089 * In other words, plug in "ma" in the range of "bmap".
13090 * The result is a basic map that lives in the same space as "bmap"
13091 * except that the range has been replaced by the domain space of "ma".
13093 __isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
13094 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13096 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
13099 /* Check if the range of "ma" is compatible with the domain or range
13100 * (depending on "type") of "map".
13101 * Return isl_stat_error if anything is wrong.
13103 static isl_stat check_map_compatible_range_multi_aff(
13104 __isl_keep isl_map *map, enum isl_dim_type type,
13105 __isl_keep isl_multi_aff *ma)
13107 isl_bool m;
13108 isl_space *ma_space;
13110 ma_space = isl_multi_aff_get_space(ma);
13111 m = isl_space_tuple_is_equal(map->dim, type, ma_space, isl_dim_out);
13112 isl_space_free(ma_space);
13113 if (m < 0)
13114 return isl_stat_error;
13115 if (!m)
13116 isl_die(isl_map_get_ctx(map), isl_error_invalid,
13117 "spaces don't match", return isl_stat_error);
13118 return isl_stat_ok;
13121 /* Compute the preimage of the domain or range (depending on "type")
13122 * of "map" under the function represented by "ma".
13123 * In other words, plug in "ma" in the domain or range of "map".
13124 * The result is a map that lives in the same space as "map"
13125 * except that the domain or range has been replaced by
13126 * the domain space of "ma".
13128 * The parameters are assumed to have been aligned.
13130 static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
13131 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13133 int i;
13134 isl_space *space;
13136 map = isl_map_cow(map);
13137 ma = isl_multi_aff_align_divs(ma);
13138 if (!map || !ma)
13139 goto error;
13140 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
13141 goto error;
13143 for (i = 0; i < map->n; ++i) {
13144 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
13145 isl_multi_aff_copy(ma));
13146 if (!map->p[i])
13147 goto error;
13150 space = isl_multi_aff_get_domain_space(ma);
13151 space = isl_space_set(isl_map_get_space(map), type, space);
13153 isl_space_free(map->dim);
13154 map->dim = space;
13155 if (!map->dim)
13156 goto error;
13158 isl_multi_aff_free(ma);
13159 if (map->n > 1)
13160 ISL_F_CLR(map, ISL_MAP_DISJOINT);
13161 ISL_F_CLR(map, ISL_SET_NORMALIZED);
13162 return map;
13163 error:
13164 isl_multi_aff_free(ma);
13165 isl_map_free(map);
13166 return NULL;
13169 /* Compute the preimage of the domain or range (depending on "type")
13170 * of "map" under the function represented by "ma".
13171 * In other words, plug in "ma" in the domain or range of "map".
13172 * The result is a map that lives in the same space as "map"
13173 * except that the domain or range has been replaced by
13174 * the domain space of "ma".
13176 __isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
13177 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13179 if (!map || !ma)
13180 goto error;
13182 if (isl_space_match(map->dim, isl_dim_param, ma->space, isl_dim_param))
13183 return map_preimage_multi_aff(map, type, ma);
13185 if (!isl_space_has_named_params(map->dim) ||
13186 !isl_space_has_named_params(ma->space))
13187 isl_die(map->ctx, isl_error_invalid,
13188 "unaligned unnamed parameters", goto error);
13189 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
13190 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
13192 return map_preimage_multi_aff(map, type, ma);
13193 error:
13194 isl_multi_aff_free(ma);
13195 return isl_map_free(map);
13198 /* Compute the preimage of "set" under the function represented by "ma".
13199 * In other words, plug in "ma" in "set". The result is a set
13200 * that lives in the domain space of "ma".
13202 __isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
13203 __isl_take isl_multi_aff *ma)
13205 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
13208 /* Compute the preimage of the domain of "map" under the function
13209 * represented by "ma".
13210 * In other words, plug in "ma" in the domain of "map".
13211 * The result is a map that lives in the same space as "map"
13212 * except that the domain has been replaced by the domain space of "ma".
13214 __isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
13215 __isl_take isl_multi_aff *ma)
13217 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
13220 /* Compute the preimage of the range of "map" under the function
13221 * represented by "ma".
13222 * In other words, plug in "ma" in the range of "map".
13223 * The result is a map that lives in the same space as "map"
13224 * except that the range has been replaced by the domain space of "ma".
13226 __isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
13227 __isl_take isl_multi_aff *ma)
13229 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
13232 /* Compute the preimage of "map" under the function represented by "pma".
13233 * In other words, plug in "pma" in the domain or range of "map".
13234 * The result is a map that lives in the same space as "map",
13235 * except that the space of type "type" has been replaced by
13236 * the domain space of "pma".
13238 * The parameters of "map" and "pma" are assumed to have been aligned.
13240 static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
13241 __isl_take isl_map *map, enum isl_dim_type type,
13242 __isl_take isl_pw_multi_aff *pma)
13244 int i;
13245 isl_map *res;
13247 if (!pma)
13248 goto error;
13250 if (pma->n == 0) {
13251 isl_pw_multi_aff_free(pma);
13252 res = isl_map_empty(isl_map_get_space(map));
13253 isl_map_free(map);
13254 return res;
13257 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13258 isl_multi_aff_copy(pma->p[0].maff));
13259 if (type == isl_dim_in)
13260 res = isl_map_intersect_domain(res,
13261 isl_map_copy(pma->p[0].set));
13262 else
13263 res = isl_map_intersect_range(res,
13264 isl_map_copy(pma->p[0].set));
13266 for (i = 1; i < pma->n; ++i) {
13267 isl_map *res_i;
13269 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13270 isl_multi_aff_copy(pma->p[i].maff));
13271 if (type == isl_dim_in)
13272 res_i = isl_map_intersect_domain(res_i,
13273 isl_map_copy(pma->p[i].set));
13274 else
13275 res_i = isl_map_intersect_range(res_i,
13276 isl_map_copy(pma->p[i].set));
13277 res = isl_map_union(res, res_i);
13280 isl_pw_multi_aff_free(pma);
13281 isl_map_free(map);
13282 return res;
13283 error:
13284 isl_pw_multi_aff_free(pma);
13285 isl_map_free(map);
13286 return NULL;
13289 /* Compute the preimage of "map" under the function represented by "pma".
13290 * In other words, plug in "pma" in the domain or range of "map".
13291 * The result is a map that lives in the same space as "map",
13292 * except that the space of type "type" has been replaced by
13293 * the domain space of "pma".
13295 __isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
13296 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
13298 if (!map || !pma)
13299 goto error;
13301 if (isl_space_match(map->dim, isl_dim_param, pma->dim, isl_dim_param))
13302 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13304 if (!isl_space_has_named_params(map->dim) ||
13305 !isl_space_has_named_params(pma->dim))
13306 isl_die(map->ctx, isl_error_invalid,
13307 "unaligned unnamed parameters", goto error);
13308 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
13309 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
13311 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13312 error:
13313 isl_pw_multi_aff_free(pma);
13314 return isl_map_free(map);
13317 /* Compute the preimage of "set" under the function represented by "pma".
13318 * In other words, plug in "pma" in "set". The result is a set
13319 * that lives in the domain space of "pma".
13321 __isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
13322 __isl_take isl_pw_multi_aff *pma)
13324 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
13327 /* Compute the preimage of the domain of "map" under the function
13328 * represented by "pma".
13329 * In other words, plug in "pma" in the domain of "map".
13330 * The result is a map that lives in the same space as "map",
13331 * except that domain space has been replaced by the domain space of "pma".
13333 __isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
13334 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13336 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
13339 /* Compute the preimage of the range of "map" under the function
13340 * represented by "pma".
13341 * In other words, plug in "pma" in the range of "map".
13342 * The result is a map that lives in the same space as "map",
13343 * except that range space has been replaced by the domain space of "pma".
13345 __isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
13346 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13348 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
13351 /* Compute the preimage of "map" under the function represented by "mpa".
13352 * In other words, plug in "mpa" in the domain or range of "map".
13353 * The result is a map that lives in the same space as "map",
13354 * except that the space of type "type" has been replaced by
13355 * the domain space of "mpa".
13357 * If the map does not involve any constraints that refer to the
13358 * dimensions of the substituted space, then the only possible
13359 * effect of "mpa" on the map is to map the space to a different space.
13360 * We create a separate isl_multi_aff to effectuate this change
13361 * in order to avoid spurious splitting of the map along the pieces
13362 * of "mpa".
13364 __isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
13365 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
13367 int n;
13368 isl_pw_multi_aff *pma;
13370 if (!map || !mpa)
13371 goto error;
13373 n = isl_map_dim(map, type);
13374 if (!isl_map_involves_dims(map, type, 0, n)) {
13375 isl_space *space;
13376 isl_multi_aff *ma;
13378 space = isl_multi_pw_aff_get_space(mpa);
13379 isl_multi_pw_aff_free(mpa);
13380 ma = isl_multi_aff_zero(space);
13381 return isl_map_preimage_multi_aff(map, type, ma);
13384 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
13385 return isl_map_preimage_pw_multi_aff(map, type, pma);
13386 error:
13387 isl_map_free(map);
13388 isl_multi_pw_aff_free(mpa);
13389 return NULL;
13392 /* Compute the preimage of "map" under the function represented by "mpa".
13393 * In other words, plug in "mpa" in the domain "map".
13394 * The result is a map that lives in the same space as "map",
13395 * except that domain space has been replaced by the domain space of "mpa".
13397 __isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
13398 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
13400 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
13403 /* Compute the preimage of "set" by the function represented by "mpa".
13404 * In other words, plug in "mpa" in "set".
13406 __isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
13407 __isl_take isl_multi_pw_aff *mpa)
13409 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);
13412 /* Are the "n" "coefficients" starting at "first" of the integer division
13413 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13414 * to each other?
13415 * The "coefficient" at position 0 is the denominator.
13416 * The "coefficient" at position 1 is the constant term.
13418 isl_bool isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map *bmap1,
13419 int pos1, __isl_keep isl_basic_map *bmap2, int pos2,
13420 unsigned first, unsigned n)
13422 if (isl_basic_map_check_range(bmap1, isl_dim_div, pos1, 1) < 0)
13423 return isl_bool_error;
13424 if (isl_basic_map_check_range(bmap2, isl_dim_div, pos2, 1) < 0)
13425 return isl_bool_error;
13426 return isl_seq_eq(bmap1->div[pos1] + first,
13427 bmap2->div[pos2] + first, n);
13430 /* Are the integer division expressions at position "pos1" in "bmap1" and
13431 * "pos2" in "bmap2" equal to each other, except that the constant terms
13432 * are different?
13434 isl_bool isl_basic_map_equal_div_expr_except_constant(
13435 __isl_keep isl_basic_map *bmap1, int pos1,
13436 __isl_keep isl_basic_map *bmap2, int pos2)
13438 isl_bool equal;
13439 unsigned total;
13441 if (!bmap1 || !bmap2)
13442 return isl_bool_error;
13443 total = isl_basic_map_total_dim(bmap1);
13444 if (total != isl_basic_map_total_dim(bmap2))
13445 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
13446 "incomparable div expressions", return isl_bool_error);
13447 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13448 0, 1);
13449 if (equal < 0 || !equal)
13450 return equal;
13451 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13452 1, 1);
13453 if (equal < 0 || equal)
13454 return isl_bool_not(equal);
13455 return isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13456 2, total);
13459 /* Replace the numerator of the constant term of the integer division
13460 * expression at position "div" in "bmap" by "value".
13461 * The caller guarantees that this does not change the meaning
13462 * of the input.
13464 __isl_give isl_basic_map *isl_basic_map_set_div_expr_constant_num_si_inplace(
13465 __isl_take isl_basic_map *bmap, int div, int value)
13467 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
13468 return isl_basic_map_free(bmap);
13470 isl_int_set_si(bmap->div[div][1], value);
13472 return bmap;
13475 /* Is the point "inner" internal to inequality constraint "ineq"
13476 * of "bset"?
13477 * The point is considered to be internal to the inequality constraint,
13478 * if it strictly lies on the positive side of the inequality constraint,
13479 * or if it lies on the constraint and the constraint is lexico-positive.
13481 static isl_bool is_internal(__isl_keep isl_vec *inner,
13482 __isl_keep isl_basic_set *bset, int ineq)
13484 isl_ctx *ctx;
13485 int pos;
13486 unsigned total;
13488 if (!inner || !bset)
13489 return isl_bool_error;
13491 ctx = isl_basic_set_get_ctx(bset);
13492 isl_seq_inner_product(inner->el, bset->ineq[ineq], inner->size,
13493 &ctx->normalize_gcd);
13494 if (!isl_int_is_zero(ctx->normalize_gcd))
13495 return isl_int_is_nonneg(ctx->normalize_gcd);
13497 total = isl_basic_set_dim(bset, isl_dim_all);
13498 pos = isl_seq_first_non_zero(bset->ineq[ineq] + 1, total);
13499 return isl_int_is_pos(bset->ineq[ineq][1 + pos]);
13502 /* Tighten the inequality constraints of "bset" that are outward with respect
13503 * to the point "vec".
13504 * That is, tighten the constraints that are not satisfied by "vec".
13506 * "vec" is a point internal to some superset S of "bset" that is used
13507 * to make the subsets of S disjoint, by tightening one half of the constraints
13508 * that separate two subsets. In particular, the constraints of S
13509 * are all satisfied by "vec" and should not be tightened.
13510 * Of the internal constraints, those that have "vec" on the outside
13511 * are tightened. The shared facet is included in the adjacent subset
13512 * with the opposite constraint.
13513 * For constraints that saturate "vec", this criterion cannot be used
13514 * to determine which of the two sides should be tightened.
13515 * Instead, the sign of the first non-zero coefficient is used
13516 * to make this choice. Note that this second criterion is never used
13517 * on the constraints of S since "vec" is interior to "S".
13519 __isl_give isl_basic_set *isl_basic_set_tighten_outward(
13520 __isl_take isl_basic_set *bset, __isl_keep isl_vec *vec)
13522 int j;
13524 bset = isl_basic_set_cow(bset);
13525 if (!bset)
13526 return NULL;
13527 for (j = 0; j < bset->n_ineq; ++j) {
13528 isl_bool internal;
13530 internal = is_internal(vec, bset, j);
13531 if (internal < 0)
13532 return isl_basic_set_free(bset);
13533 if (internal)
13534 continue;
13535 isl_int_sub_ui(bset->ineq[j][0], bset->ineq[j][0], 1);
13538 return bset;