isl_map.c: basic_set_maximal_difference_at: extract out join_initial
[isl.git] / isl_map.c
blobedb04878d1d9393ac5b86c195cdc3b1274e1269e
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>
47 #include <bset_to_bmap.c>
48 #include <bset_from_bmap.c>
49 #include <set_to_map.c>
50 #include <set_from_map.c>
52 static unsigned n(__isl_keep isl_space *dim, enum isl_dim_type type)
54 switch (type) {
55 case isl_dim_param: return dim->nparam;
56 case isl_dim_in: return dim->n_in;
57 case isl_dim_out: return dim->n_out;
58 case isl_dim_all: return dim->nparam + dim->n_in + dim->n_out;
59 default: return 0;
63 static unsigned pos(__isl_keep isl_space *dim, enum isl_dim_type type)
65 switch (type) {
66 case isl_dim_param: return 1;
67 case isl_dim_in: return 1 + dim->nparam;
68 case isl_dim_out: return 1 + dim->nparam + dim->n_in;
69 default: return 0;
73 unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap,
74 enum isl_dim_type type)
76 if (!bmap)
77 return 0;
78 switch (type) {
79 case isl_dim_cst: return 1;
80 case isl_dim_param:
81 case isl_dim_in:
82 case isl_dim_out: return isl_space_dim(bmap->dim, type);
83 case isl_dim_div: return bmap->n_div;
84 case isl_dim_all: return isl_basic_map_total_dim(bmap);
85 default: return 0;
89 /* Return the space of "map".
91 __isl_keep isl_space *isl_map_peek_space(__isl_keep const isl_map *map)
93 return map ? map->dim : NULL;
96 unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type)
98 return map ? n(map->dim, type) : 0;
101 unsigned isl_set_dim(__isl_keep isl_set *set, enum isl_dim_type type)
103 return set ? n(set->dim, type) : 0;
106 unsigned isl_basic_map_offset(struct isl_basic_map *bmap,
107 enum isl_dim_type type)
109 isl_space *space;
111 if (!bmap)
112 return 0;
114 space = bmap->dim;
115 switch (type) {
116 case isl_dim_cst: return 0;
117 case isl_dim_param: return 1;
118 case isl_dim_in: return 1 + space->nparam;
119 case isl_dim_out: return 1 + space->nparam + space->n_in;
120 case isl_dim_div: return 1 + space->nparam + space->n_in +
121 space->n_out;
122 default: return 0;
126 unsigned isl_basic_set_offset(__isl_keep isl_basic_set *bset,
127 enum isl_dim_type type)
129 return isl_basic_map_offset(bset, type);
132 static unsigned map_offset(__isl_keep isl_map *map, enum isl_dim_type type)
134 return pos(map->dim, type);
137 unsigned isl_basic_set_dim(__isl_keep isl_basic_set *bset,
138 enum isl_dim_type type)
140 return isl_basic_map_dim(bset, type);
143 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set *bset)
145 return isl_basic_set_dim(bset, isl_dim_set);
148 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set *bset)
150 return isl_basic_set_dim(bset, isl_dim_param);
153 unsigned isl_basic_set_total_dim(__isl_keep const isl_basic_set *bset)
155 if (!bset)
156 return 0;
157 return isl_space_dim(bset->dim, isl_dim_all) + bset->n_div;
160 unsigned isl_set_n_dim(__isl_keep isl_set *set)
162 return isl_set_dim(set, isl_dim_set);
165 unsigned isl_set_n_param(__isl_keep isl_set *set)
167 return isl_set_dim(set, isl_dim_param);
170 unsigned isl_basic_map_n_in(__isl_keep const isl_basic_map *bmap)
172 return bmap ? bmap->dim->n_in : 0;
175 unsigned isl_basic_map_n_out(__isl_keep const isl_basic_map *bmap)
177 return bmap ? bmap->dim->n_out : 0;
180 unsigned isl_basic_map_n_param(__isl_keep const isl_basic_map *bmap)
182 return bmap ? bmap->dim->nparam : 0;
185 unsigned isl_basic_map_n_div(__isl_keep const isl_basic_map *bmap)
187 return bmap ? bmap->n_div : 0;
190 unsigned isl_basic_map_total_dim(__isl_keep const isl_basic_map *bmap)
192 return bmap ? isl_space_dim(bmap->dim, isl_dim_all) + bmap->n_div : 0;
195 unsigned isl_map_n_in(__isl_keep const isl_map *map)
197 return map ? map->dim->n_in : 0;
200 unsigned isl_map_n_out(__isl_keep const isl_map *map)
202 return map ? map->dim->n_out : 0;
205 unsigned isl_map_n_param(__isl_keep const isl_map *map)
207 return map ? map->dim->nparam : 0;
210 /* Return the number of equality constraints in the description of "bmap".
211 * Return -1 on error.
213 int isl_basic_map_n_equality(__isl_keep isl_basic_map *bmap)
215 if (!bmap)
216 return -1;
217 return bmap->n_eq;
220 /* Return the number of equality constraints in the description of "bset".
221 * Return -1 on error.
223 int isl_basic_set_n_equality(__isl_keep isl_basic_set *bset)
225 return isl_basic_map_n_equality(bset_to_bmap(bset));
228 /* Return the number of inequality constraints in the description of "bmap".
229 * Return -1 on error.
231 int isl_basic_map_n_inequality(__isl_keep isl_basic_map *bmap)
233 if (!bmap)
234 return -1;
235 return bmap->n_ineq;
238 /* Return the number of inequality constraints in the description of "bset".
239 * Return -1 on error.
241 int isl_basic_set_n_inequality(__isl_keep isl_basic_set *bset)
243 return isl_basic_map_n_inequality(bset_to_bmap(bset));
246 /* Do "bmap1" and "bmap2" have the same parameters?
248 static isl_bool isl_basic_map_has_equal_params(__isl_keep isl_basic_map *bmap1,
249 __isl_keep isl_basic_map *bmap2)
251 isl_space *space1, *space2;
253 space1 = isl_basic_map_peek_space(bmap1);
254 space2 = isl_basic_map_peek_space(bmap2);
255 return isl_space_has_equal_params(space1, space2);
258 /* Do "map1" and "map2" have the same parameters?
260 isl_bool isl_map_has_equal_params(__isl_keep isl_map *map1,
261 __isl_keep isl_map *map2)
263 isl_space *space1, *space2;
265 space1 = isl_map_peek_space(map1);
266 space2 = isl_map_peek_space(map2);
267 return isl_space_has_equal_params(space1, space2);
270 /* Do "map" and "set" have the same parameters?
272 static isl_bool isl_map_set_has_equal_params(__isl_keep isl_map *map,
273 __isl_keep isl_set *set)
275 return isl_map_has_equal_params(map, set_to_map(set));
278 isl_bool isl_map_compatible_domain(__isl_keep isl_map *map,
279 __isl_keep isl_set *set)
281 isl_bool m;
282 if (!map || !set)
283 return isl_bool_error;
284 m = isl_map_has_equal_params(map, set_to_map(set));
285 if (m < 0 || !m)
286 return m;
287 return isl_space_tuple_is_equal(map->dim, isl_dim_in,
288 set->dim, isl_dim_set);
291 isl_bool isl_basic_map_compatible_domain(__isl_keep isl_basic_map *bmap,
292 __isl_keep isl_basic_set *bset)
294 isl_bool m;
295 if (!bmap || !bset)
296 return isl_bool_error;
297 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
298 if (m < 0 || !m)
299 return m;
300 return isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
301 bset->dim, isl_dim_set);
304 isl_bool isl_map_compatible_range(__isl_keep isl_map *map,
305 __isl_keep isl_set *set)
307 isl_bool m;
308 if (!map || !set)
309 return isl_bool_error;
310 m = isl_map_has_equal_params(map, set_to_map(set));
311 if (m < 0 || !m)
312 return m;
313 return isl_space_tuple_is_equal(map->dim, isl_dim_out,
314 set->dim, isl_dim_set);
317 isl_bool isl_basic_map_compatible_range(__isl_keep isl_basic_map *bmap,
318 __isl_keep isl_basic_set *bset)
320 isl_bool m;
321 if (!bmap || !bset)
322 return isl_bool_error;
323 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
324 if (m < 0 || !m)
325 return m;
326 return isl_space_tuple_is_equal(bmap->dim, isl_dim_out,
327 bset->dim, isl_dim_set);
330 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap)
332 return bmap ? bmap->ctx : NULL;
335 isl_ctx *isl_basic_set_get_ctx(__isl_keep isl_basic_set *bset)
337 return bset ? bset->ctx : NULL;
340 isl_ctx *isl_map_get_ctx(__isl_keep isl_map *map)
342 return map ? map->ctx : NULL;
345 isl_ctx *isl_set_get_ctx(__isl_keep isl_set *set)
347 return set ? set->ctx : NULL;
350 /* Return the space of "bmap".
352 __isl_keep isl_space *isl_basic_map_peek_space(
353 __isl_keep const isl_basic_map *bmap)
355 return bmap ? bmap->dim : NULL;
358 /* Return the space of "bset".
360 __isl_keep isl_space *isl_basic_set_peek_space(__isl_keep isl_basic_set *bset)
362 return isl_basic_map_peek_space(bset_to_bmap(bset));
365 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap)
367 return isl_space_copy(isl_basic_map_peek_space(bmap));
370 __isl_give isl_space *isl_basic_set_get_space(__isl_keep isl_basic_set *bset)
372 return isl_basic_map_get_space(bset_to_bmap(bset));
375 /* Extract the divs in "bmap" as a matrix.
377 __isl_give isl_mat *isl_basic_map_get_divs(__isl_keep isl_basic_map *bmap)
379 int i;
380 isl_ctx *ctx;
381 isl_mat *div;
382 unsigned total;
383 unsigned cols;
385 if (!bmap)
386 return NULL;
388 ctx = isl_basic_map_get_ctx(bmap);
389 total = isl_space_dim(bmap->dim, isl_dim_all);
390 cols = 1 + 1 + total + bmap->n_div;
391 div = isl_mat_alloc(ctx, bmap->n_div, cols);
392 if (!div)
393 return NULL;
395 for (i = 0; i < bmap->n_div; ++i)
396 isl_seq_cpy(div->row[i], bmap->div[i], cols);
398 return div;
401 /* Extract the divs in "bset" as a matrix.
403 __isl_give isl_mat *isl_basic_set_get_divs(__isl_keep isl_basic_set *bset)
405 return isl_basic_map_get_divs(bset);
408 __isl_give isl_local_space *isl_basic_map_get_local_space(
409 __isl_keep isl_basic_map *bmap)
411 isl_mat *div;
413 if (!bmap)
414 return NULL;
416 div = isl_basic_map_get_divs(bmap);
417 return isl_local_space_alloc_div(isl_space_copy(bmap->dim), div);
420 __isl_give isl_local_space *isl_basic_set_get_local_space(
421 __isl_keep isl_basic_set *bset)
423 return isl_basic_map_get_local_space(bset);
426 /* For each known div d = floor(f/m), add the constraints
428 * f - m d >= 0
429 * -(f-(m-1)) + m d >= 0
431 * Do not finalize the result.
433 static __isl_give isl_basic_map *add_known_div_constraints(
434 __isl_take isl_basic_map *bmap)
436 int i;
437 unsigned n_div;
439 if (!bmap)
440 return NULL;
441 n_div = isl_basic_map_dim(bmap, isl_dim_div);
442 if (n_div == 0)
443 return bmap;
444 bmap = isl_basic_map_cow(bmap);
445 bmap = isl_basic_map_extend_constraints(bmap, 0, 2 * n_div);
446 if (!bmap)
447 return NULL;
448 for (i = 0; i < n_div; ++i) {
449 if (isl_int_is_zero(bmap->div[i][0]))
450 continue;
451 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
452 return isl_basic_map_free(bmap);
455 return bmap;
458 __isl_give isl_basic_map *isl_basic_map_from_local_space(
459 __isl_take isl_local_space *ls)
461 int i;
462 int n_div;
463 isl_basic_map *bmap;
465 if (!ls)
466 return NULL;
468 n_div = isl_local_space_dim(ls, isl_dim_div);
469 bmap = isl_basic_map_alloc_space(isl_local_space_get_space(ls),
470 n_div, 0, 2 * n_div);
472 for (i = 0; i < n_div; ++i)
473 if (isl_basic_map_alloc_div(bmap) < 0)
474 goto error;
476 for (i = 0; i < n_div; ++i)
477 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
478 bmap = add_known_div_constraints(bmap);
480 isl_local_space_free(ls);
481 return bmap;
482 error:
483 isl_local_space_free(ls);
484 isl_basic_map_free(bmap);
485 return NULL;
488 __isl_give isl_basic_set *isl_basic_set_from_local_space(
489 __isl_take isl_local_space *ls)
491 return isl_basic_map_from_local_space(ls);
494 __isl_give isl_space *isl_map_get_space(__isl_keep isl_map *map)
496 return isl_space_copy(isl_map_peek_space(map));
499 __isl_give isl_space *isl_set_get_space(__isl_keep isl_set *set)
501 if (!set)
502 return NULL;
503 return isl_space_copy(set->dim);
506 __isl_give isl_basic_map *isl_basic_map_set_tuple_name(
507 __isl_take isl_basic_map *bmap, enum isl_dim_type type, const char *s)
509 bmap = isl_basic_map_cow(bmap);
510 if (!bmap)
511 return NULL;
512 bmap->dim = isl_space_set_tuple_name(bmap->dim, type, s);
513 if (!bmap->dim)
514 goto error;
515 bmap = isl_basic_map_finalize(bmap);
516 return bmap;
517 error:
518 isl_basic_map_free(bmap);
519 return NULL;
522 __isl_give isl_basic_set *isl_basic_set_set_tuple_name(
523 __isl_take isl_basic_set *bset, const char *s)
525 return isl_basic_map_set_tuple_name(bset, isl_dim_set, s);
528 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map *bmap,
529 enum isl_dim_type type)
531 return bmap ? isl_space_get_tuple_name(bmap->dim, type) : NULL;
534 __isl_give isl_map *isl_map_set_tuple_name(__isl_take isl_map *map,
535 enum isl_dim_type type, const char *s)
537 int i;
539 map = isl_map_cow(map);
540 if (!map)
541 return NULL;
543 map->dim = isl_space_set_tuple_name(map->dim, type, s);
544 if (!map->dim)
545 goto error;
547 for (i = 0; i < map->n; ++i) {
548 map->p[i] = isl_basic_map_set_tuple_name(map->p[i], type, s);
549 if (!map->p[i])
550 goto error;
553 return map;
554 error:
555 isl_map_free(map);
556 return NULL;
559 /* Replace the identifier of the tuple of type "type" by "id".
561 __isl_give isl_basic_map *isl_basic_map_set_tuple_id(
562 __isl_take isl_basic_map *bmap,
563 enum isl_dim_type type, __isl_take isl_id *id)
565 bmap = isl_basic_map_cow(bmap);
566 if (!bmap)
567 goto error;
568 bmap->dim = isl_space_set_tuple_id(bmap->dim, type, id);
569 if (!bmap->dim)
570 return isl_basic_map_free(bmap);
571 bmap = isl_basic_map_finalize(bmap);
572 return bmap;
573 error:
574 isl_id_free(id);
575 return NULL;
578 /* Replace the identifier of the tuple by "id".
580 __isl_give isl_basic_set *isl_basic_set_set_tuple_id(
581 __isl_take isl_basic_set *bset, __isl_take isl_id *id)
583 return isl_basic_map_set_tuple_id(bset, isl_dim_set, id);
586 /* Does the input or output tuple have a name?
588 isl_bool isl_map_has_tuple_name(__isl_keep isl_map *map, enum isl_dim_type type)
590 return map ? isl_space_has_tuple_name(map->dim, type) : isl_bool_error;
593 const char *isl_map_get_tuple_name(__isl_keep isl_map *map,
594 enum isl_dim_type type)
596 return map ? isl_space_get_tuple_name(map->dim, type) : NULL;
599 __isl_give isl_set *isl_set_set_tuple_name(__isl_take isl_set *set,
600 const char *s)
602 return set_from_map(isl_map_set_tuple_name(set_to_map(set),
603 isl_dim_set, s));
606 __isl_give isl_map *isl_map_set_tuple_id(__isl_take isl_map *map,
607 enum isl_dim_type type, __isl_take isl_id *id)
609 map = isl_map_cow(map);
610 if (!map)
611 goto error;
613 map->dim = isl_space_set_tuple_id(map->dim, type, id);
615 return isl_map_reset_space(map, isl_space_copy(map->dim));
616 error:
617 isl_id_free(id);
618 return NULL;
621 __isl_give isl_set *isl_set_set_tuple_id(__isl_take isl_set *set,
622 __isl_take isl_id *id)
624 return isl_map_set_tuple_id(set, isl_dim_set, id);
627 __isl_give isl_map *isl_map_reset_tuple_id(__isl_take isl_map *map,
628 enum isl_dim_type type)
630 map = isl_map_cow(map);
631 if (!map)
632 return NULL;
634 map->dim = isl_space_reset_tuple_id(map->dim, type);
636 return isl_map_reset_space(map, isl_space_copy(map->dim));
639 __isl_give isl_set *isl_set_reset_tuple_id(__isl_take isl_set *set)
641 return isl_map_reset_tuple_id(set, isl_dim_set);
644 isl_bool isl_map_has_tuple_id(__isl_keep isl_map *map, enum isl_dim_type type)
646 return map ? isl_space_has_tuple_id(map->dim, type) : isl_bool_error;
649 __isl_give isl_id *isl_map_get_tuple_id(__isl_keep isl_map *map,
650 enum isl_dim_type type)
652 return map ? isl_space_get_tuple_id(map->dim, type) : NULL;
655 isl_bool isl_set_has_tuple_id(__isl_keep isl_set *set)
657 return isl_map_has_tuple_id(set, isl_dim_set);
660 __isl_give isl_id *isl_set_get_tuple_id(__isl_keep isl_set *set)
662 return isl_map_get_tuple_id(set, isl_dim_set);
665 /* Does the set tuple have a name?
667 isl_bool isl_set_has_tuple_name(__isl_keep isl_set *set)
669 if (!set)
670 return isl_bool_error;
671 return isl_space_has_tuple_name(set->dim, isl_dim_set);
675 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set *bset)
677 return bset ? isl_space_get_tuple_name(bset->dim, isl_dim_set) : NULL;
680 const char *isl_set_get_tuple_name(__isl_keep isl_set *set)
682 return set ? isl_space_get_tuple_name(set->dim, isl_dim_set) : NULL;
685 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map *bmap,
686 enum isl_dim_type type, unsigned pos)
688 return bmap ? isl_space_get_dim_name(bmap->dim, type, pos) : NULL;
691 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set *bset,
692 enum isl_dim_type type, unsigned pos)
694 return bset ? isl_space_get_dim_name(bset->dim, type, pos) : NULL;
697 /* Does the given dimension have a name?
699 isl_bool isl_map_has_dim_name(__isl_keep isl_map *map,
700 enum isl_dim_type type, unsigned pos)
702 if (!map)
703 return isl_bool_error;
704 return isl_space_has_dim_name(map->dim, type, pos);
707 const char *isl_map_get_dim_name(__isl_keep isl_map *map,
708 enum isl_dim_type type, unsigned pos)
710 return map ? isl_space_get_dim_name(map->dim, type, pos) : NULL;
713 const char *isl_set_get_dim_name(__isl_keep isl_set *set,
714 enum isl_dim_type type, unsigned pos)
716 return set ? isl_space_get_dim_name(set->dim, type, pos) : NULL;
719 /* Does the given dimension have a name?
721 isl_bool isl_set_has_dim_name(__isl_keep isl_set *set,
722 enum isl_dim_type type, unsigned pos)
724 if (!set)
725 return isl_bool_error;
726 return isl_space_has_dim_name(set->dim, type, pos);
729 __isl_give isl_basic_map *isl_basic_map_set_dim_name(
730 __isl_take isl_basic_map *bmap,
731 enum isl_dim_type type, unsigned pos, const char *s)
733 bmap = isl_basic_map_cow(bmap);
734 if (!bmap)
735 return NULL;
736 bmap->dim = isl_space_set_dim_name(bmap->dim, type, pos, s);
737 if (!bmap->dim)
738 goto error;
739 return isl_basic_map_finalize(bmap);
740 error:
741 isl_basic_map_free(bmap);
742 return NULL;
745 __isl_give isl_map *isl_map_set_dim_name(__isl_take isl_map *map,
746 enum isl_dim_type type, unsigned pos, const char *s)
748 int i;
750 map = isl_map_cow(map);
751 if (!map)
752 return NULL;
754 map->dim = isl_space_set_dim_name(map->dim, type, pos, s);
755 if (!map->dim)
756 goto error;
758 for (i = 0; i < map->n; ++i) {
759 map->p[i] = isl_basic_map_set_dim_name(map->p[i], type, pos, s);
760 if (!map->p[i])
761 goto error;
764 return map;
765 error:
766 isl_map_free(map);
767 return NULL;
770 __isl_give isl_basic_set *isl_basic_set_set_dim_name(
771 __isl_take isl_basic_set *bset,
772 enum isl_dim_type type, unsigned pos, const char *s)
774 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset),
775 type, pos, s));
778 __isl_give isl_set *isl_set_set_dim_name(__isl_take isl_set *set,
779 enum isl_dim_type type, unsigned pos, const char *s)
781 return set_from_map(isl_map_set_dim_name(set_to_map(set),
782 type, pos, s));
785 isl_bool isl_basic_map_has_dim_id(__isl_keep isl_basic_map *bmap,
786 enum isl_dim_type type, unsigned pos)
788 if (!bmap)
789 return isl_bool_error;
790 return isl_space_has_dim_id(bmap->dim, type, pos);
793 __isl_give isl_id *isl_basic_set_get_dim_id(__isl_keep isl_basic_set *bset,
794 enum isl_dim_type type, unsigned pos)
796 return bset ? isl_space_get_dim_id(bset->dim, type, pos) : NULL;
799 isl_bool isl_map_has_dim_id(__isl_keep isl_map *map,
800 enum isl_dim_type type, unsigned pos)
802 return map ? isl_space_has_dim_id(map->dim, type, pos) : isl_bool_error;
805 __isl_give isl_id *isl_map_get_dim_id(__isl_keep isl_map *map,
806 enum isl_dim_type type, unsigned pos)
808 return map ? isl_space_get_dim_id(map->dim, type, pos) : NULL;
811 isl_bool isl_set_has_dim_id(__isl_keep isl_set *set,
812 enum isl_dim_type type, unsigned pos)
814 return isl_map_has_dim_id(set, type, pos);
817 __isl_give isl_id *isl_set_get_dim_id(__isl_keep isl_set *set,
818 enum isl_dim_type type, unsigned pos)
820 return isl_map_get_dim_id(set, type, pos);
823 __isl_give isl_map *isl_map_set_dim_id(__isl_take isl_map *map,
824 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
826 map = isl_map_cow(map);
827 if (!map)
828 goto error;
830 map->dim = isl_space_set_dim_id(map->dim, type, pos, id);
832 return isl_map_reset_space(map, isl_space_copy(map->dim));
833 error:
834 isl_id_free(id);
835 return NULL;
838 __isl_give isl_set *isl_set_set_dim_id(__isl_take isl_set *set,
839 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
841 return isl_map_set_dim_id(set, type, pos, id);
844 int isl_map_find_dim_by_id(__isl_keep isl_map *map, enum isl_dim_type type,
845 __isl_keep isl_id *id)
847 if (!map)
848 return -1;
849 return isl_space_find_dim_by_id(map->dim, type, id);
852 int isl_set_find_dim_by_id(__isl_keep isl_set *set, enum isl_dim_type type,
853 __isl_keep isl_id *id)
855 return isl_map_find_dim_by_id(set, type, id);
858 /* Return the position of the dimension of the given type and name
859 * in "bmap".
860 * Return -1 if no such dimension can be found.
862 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map *bmap,
863 enum isl_dim_type type, const char *name)
865 if (!bmap)
866 return -1;
867 return isl_space_find_dim_by_name(bmap->dim, type, name);
870 int isl_map_find_dim_by_name(__isl_keep isl_map *map, enum isl_dim_type type,
871 const char *name)
873 if (!map)
874 return -1;
875 return isl_space_find_dim_by_name(map->dim, type, name);
878 int isl_set_find_dim_by_name(__isl_keep isl_set *set, enum isl_dim_type type,
879 const char *name)
881 return isl_map_find_dim_by_name(set, type, name);
884 /* Check whether equality i of bset is a pure stride constraint
885 * on a single dimension, i.e., of the form
887 * v = k e
889 * with k a constant and e an existentially quantified variable.
891 isl_bool isl_basic_set_eq_is_stride(__isl_keep isl_basic_set *bset, int i)
893 unsigned nparam;
894 unsigned d;
895 unsigned n_div;
896 int pos1;
897 int pos2;
899 if (!bset)
900 return isl_bool_error;
902 if (!isl_int_is_zero(bset->eq[i][0]))
903 return isl_bool_false;
905 nparam = isl_basic_set_dim(bset, isl_dim_param);
906 d = isl_basic_set_dim(bset, isl_dim_set);
907 n_div = isl_basic_set_dim(bset, isl_dim_div);
909 if (isl_seq_first_non_zero(bset->eq[i] + 1, nparam) != -1)
910 return isl_bool_false;
911 pos1 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam, d);
912 if (pos1 == -1)
913 return isl_bool_false;
914 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + pos1 + 1,
915 d - pos1 - 1) != -1)
916 return isl_bool_false;
918 pos2 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d, n_div);
919 if (pos2 == -1)
920 return isl_bool_false;
921 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d + pos2 + 1,
922 n_div - pos2 - 1) != -1)
923 return isl_bool_false;
924 if (!isl_int_is_one(bset->eq[i][1 + nparam + pos1]) &&
925 !isl_int_is_negone(bset->eq[i][1 + nparam + pos1]))
926 return isl_bool_false;
928 return isl_bool_true;
931 /* Reset the user pointer on all identifiers of parameters and tuples
932 * of the space of "map".
934 __isl_give isl_map *isl_map_reset_user(__isl_take isl_map *map)
936 isl_space *space;
938 space = isl_map_get_space(map);
939 space = isl_space_reset_user(space);
940 map = isl_map_reset_space(map, space);
942 return map;
945 /* Reset the user pointer on all identifiers of parameters and tuples
946 * of the space of "set".
948 __isl_give isl_set *isl_set_reset_user(__isl_take isl_set *set)
950 return isl_map_reset_user(set);
953 isl_bool isl_basic_map_is_rational(__isl_keep isl_basic_map *bmap)
955 if (!bmap)
956 return isl_bool_error;
957 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
960 /* Has "map" been marked as a rational map?
961 * In particular, have all basic maps in "map" been marked this way?
962 * An empty map is not considered to be rational.
963 * Maps where only some of the basic maps are marked rational
964 * are not allowed.
966 isl_bool isl_map_is_rational(__isl_keep isl_map *map)
968 int i;
969 isl_bool rational;
971 if (!map)
972 return isl_bool_error;
973 if (map->n == 0)
974 return isl_bool_false;
975 rational = isl_basic_map_is_rational(map->p[0]);
976 if (rational < 0)
977 return rational;
978 for (i = 1; i < map->n; ++i) {
979 isl_bool rational_i;
981 rational_i = isl_basic_map_is_rational(map->p[i]);
982 if (rational_i < 0)
983 return rational_i;
984 if (rational != rational_i)
985 isl_die(isl_map_get_ctx(map), isl_error_unsupported,
986 "mixed rational and integer basic maps "
987 "not supported", return isl_bool_error);
990 return rational;
993 /* Has "set" been marked as a rational set?
994 * In particular, have all basic set in "set" been marked this way?
995 * An empty set is not considered to be rational.
996 * Sets where only some of the basic sets are marked rational
997 * are not allowed.
999 isl_bool isl_set_is_rational(__isl_keep isl_set *set)
1001 return isl_map_is_rational(set);
1004 int isl_basic_set_is_rational(__isl_keep isl_basic_set *bset)
1006 return isl_basic_map_is_rational(bset);
1009 /* Does "bmap" contain any rational points?
1011 * If "bmap" has an equality for each dimension, equating the dimension
1012 * to an integer constant, then it has no rational points, even if it
1013 * is marked as rational.
1015 isl_bool isl_basic_map_has_rational(__isl_keep isl_basic_map *bmap)
1017 isl_bool has_rational = isl_bool_true;
1018 unsigned total;
1020 if (!bmap)
1021 return isl_bool_error;
1022 if (isl_basic_map_plain_is_empty(bmap))
1023 return isl_bool_false;
1024 if (!isl_basic_map_is_rational(bmap))
1025 return isl_bool_false;
1026 bmap = isl_basic_map_copy(bmap);
1027 bmap = isl_basic_map_implicit_equalities(bmap);
1028 if (!bmap)
1029 return isl_bool_error;
1030 total = isl_basic_map_total_dim(bmap);
1031 if (bmap->n_eq == total) {
1032 int i, j;
1033 for (i = 0; i < bmap->n_eq; ++i) {
1034 j = isl_seq_first_non_zero(bmap->eq[i] + 1, total);
1035 if (j < 0)
1036 break;
1037 if (!isl_int_is_one(bmap->eq[i][1 + j]) &&
1038 !isl_int_is_negone(bmap->eq[i][1 + j]))
1039 break;
1040 j = isl_seq_first_non_zero(bmap->eq[i] + 1 + j + 1,
1041 total - j - 1);
1042 if (j >= 0)
1043 break;
1045 if (i == bmap->n_eq)
1046 has_rational = isl_bool_false;
1048 isl_basic_map_free(bmap);
1050 return has_rational;
1053 /* Does "map" contain any rational points?
1055 isl_bool isl_map_has_rational(__isl_keep isl_map *map)
1057 int i;
1058 isl_bool has_rational;
1060 if (!map)
1061 return isl_bool_error;
1062 for (i = 0; i < map->n; ++i) {
1063 has_rational = isl_basic_map_has_rational(map->p[i]);
1064 if (has_rational < 0 || has_rational)
1065 return has_rational;
1067 return isl_bool_false;
1070 /* Does "set" contain any rational points?
1072 isl_bool isl_set_has_rational(__isl_keep isl_set *set)
1074 return isl_map_has_rational(set);
1077 /* Is this basic set a parameter domain?
1079 isl_bool isl_basic_set_is_params(__isl_keep isl_basic_set *bset)
1081 if (!bset)
1082 return isl_bool_error;
1083 return isl_space_is_params(bset->dim);
1086 /* Is this set a parameter domain?
1088 isl_bool isl_set_is_params(__isl_keep isl_set *set)
1090 if (!set)
1091 return isl_bool_error;
1092 return isl_space_is_params(set->dim);
1095 /* Is this map actually a parameter domain?
1096 * Users should never call this function. Outside of isl,
1097 * a map can never be a parameter domain.
1099 isl_bool isl_map_is_params(__isl_keep isl_map *map)
1101 if (!map)
1102 return isl_bool_error;
1103 return isl_space_is_params(map->dim);
1106 static struct isl_basic_map *basic_map_init(struct isl_ctx *ctx,
1107 struct isl_basic_map *bmap, unsigned extra,
1108 unsigned n_eq, unsigned n_ineq)
1110 int i;
1111 size_t row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + extra;
1113 bmap->ctx = ctx;
1114 isl_ctx_ref(ctx);
1116 bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
1117 if (isl_blk_is_error(bmap->block))
1118 goto error;
1120 bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
1121 if ((n_ineq + n_eq) && !bmap->ineq)
1122 goto error;
1124 if (extra == 0) {
1125 bmap->block2 = isl_blk_empty();
1126 bmap->div = NULL;
1127 } else {
1128 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
1129 if (isl_blk_is_error(bmap->block2))
1130 goto error;
1132 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
1133 if (!bmap->div)
1134 goto error;
1137 for (i = 0; i < n_ineq + n_eq; ++i)
1138 bmap->ineq[i] = bmap->block.data + i * row_size;
1140 for (i = 0; i < extra; ++i)
1141 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
1143 bmap->ref = 1;
1144 bmap->flags = 0;
1145 bmap->c_size = n_eq + n_ineq;
1146 bmap->eq = bmap->ineq + n_ineq;
1147 bmap->extra = extra;
1148 bmap->n_eq = 0;
1149 bmap->n_ineq = 0;
1150 bmap->n_div = 0;
1151 bmap->sample = NULL;
1153 return bmap;
1154 error:
1155 isl_basic_map_free(bmap);
1156 return NULL;
1159 struct isl_basic_set *isl_basic_set_alloc(struct isl_ctx *ctx,
1160 unsigned nparam, unsigned dim, unsigned extra,
1161 unsigned n_eq, unsigned n_ineq)
1163 struct isl_basic_map *bmap;
1164 isl_space *space;
1166 space = isl_space_set_alloc(ctx, nparam, dim);
1167 if (!space)
1168 return NULL;
1170 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1171 return bset_from_bmap(bmap);
1174 __isl_give isl_basic_set *isl_basic_set_alloc_space(__isl_take isl_space *dim,
1175 unsigned extra, unsigned n_eq, unsigned n_ineq)
1177 struct isl_basic_map *bmap;
1178 if (!dim)
1179 return NULL;
1180 isl_assert(dim->ctx, dim->n_in == 0, goto error);
1181 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1182 return bset_from_bmap(bmap);
1183 error:
1184 isl_space_free(dim);
1185 return NULL;
1188 struct isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *dim,
1189 unsigned extra, unsigned n_eq, unsigned n_ineq)
1191 struct isl_basic_map *bmap;
1193 if (!dim)
1194 return NULL;
1195 bmap = isl_calloc_type(dim->ctx, struct isl_basic_map);
1196 if (!bmap)
1197 goto error;
1198 bmap->dim = dim;
1200 return basic_map_init(dim->ctx, bmap, extra, n_eq, n_ineq);
1201 error:
1202 isl_space_free(dim);
1203 return NULL;
1206 struct isl_basic_map *isl_basic_map_alloc(struct isl_ctx *ctx,
1207 unsigned nparam, unsigned in, unsigned out, unsigned extra,
1208 unsigned n_eq, unsigned n_ineq)
1210 struct isl_basic_map *bmap;
1211 isl_space *dim;
1213 dim = isl_space_alloc(ctx, nparam, in, out);
1214 if (!dim)
1215 return NULL;
1217 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1218 return bmap;
1221 static void dup_constraints(
1222 struct isl_basic_map *dst, struct isl_basic_map *src)
1224 int i;
1225 unsigned total = isl_basic_map_total_dim(src);
1227 for (i = 0; i < src->n_eq; ++i) {
1228 int j = isl_basic_map_alloc_equality(dst);
1229 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
1232 for (i = 0; i < src->n_ineq; ++i) {
1233 int j = isl_basic_map_alloc_inequality(dst);
1234 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
1237 for (i = 0; i < src->n_div; ++i) {
1238 int j = isl_basic_map_alloc_div(dst);
1239 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
1241 ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
1244 __isl_give isl_basic_map *isl_basic_map_dup(__isl_keep isl_basic_map *bmap)
1246 struct isl_basic_map *dup;
1248 if (!bmap)
1249 return NULL;
1250 dup = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
1251 bmap->n_div, bmap->n_eq, bmap->n_ineq);
1252 if (!dup)
1253 return NULL;
1254 dup_constraints(dup, bmap);
1255 dup->flags = bmap->flags;
1256 dup->sample = isl_vec_copy(bmap->sample);
1257 return dup;
1260 struct isl_basic_set *isl_basic_set_dup(struct isl_basic_set *bset)
1262 struct isl_basic_map *dup;
1264 dup = isl_basic_map_dup(bset_to_bmap(bset));
1265 return bset_from_bmap(dup);
1268 __isl_give isl_basic_set *isl_basic_set_copy(__isl_keep isl_basic_set *bset)
1270 if (!bset)
1271 return NULL;
1273 if (ISL_F_ISSET(bset, ISL_BASIC_SET_FINAL)) {
1274 bset->ref++;
1275 return bset;
1277 return isl_basic_set_dup(bset);
1280 __isl_give isl_set *isl_set_copy(__isl_keep isl_set *set)
1282 if (!set)
1283 return NULL;
1285 set->ref++;
1286 return set;
1289 __isl_give isl_basic_map *isl_basic_map_copy(__isl_keep isl_basic_map *bmap)
1291 if (!bmap)
1292 return NULL;
1294 if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
1295 bmap->ref++;
1296 return bmap;
1298 bmap = isl_basic_map_dup(bmap);
1299 if (bmap)
1300 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1301 return bmap;
1304 __isl_give isl_map *isl_map_copy(__isl_keep isl_map *map)
1306 if (!map)
1307 return NULL;
1309 map->ref++;
1310 return map;
1313 __isl_null isl_basic_map *isl_basic_map_free(__isl_take isl_basic_map *bmap)
1315 if (!bmap)
1316 return NULL;
1318 if (--bmap->ref > 0)
1319 return NULL;
1321 isl_ctx_deref(bmap->ctx);
1322 free(bmap->div);
1323 isl_blk_free(bmap->ctx, bmap->block2);
1324 free(bmap->ineq);
1325 isl_blk_free(bmap->ctx, bmap->block);
1326 isl_vec_free(bmap->sample);
1327 isl_space_free(bmap->dim);
1328 free(bmap);
1330 return NULL;
1333 __isl_null isl_basic_set *isl_basic_set_free(__isl_take isl_basic_set *bset)
1335 return isl_basic_map_free(bset_to_bmap(bset));
1338 static int room_for_con(struct isl_basic_map *bmap, unsigned n)
1340 return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
1343 /* Check that "map" has only named parameters, reporting an error
1344 * if it does not.
1346 isl_stat isl_map_check_named_params(__isl_keep isl_map *map)
1348 return isl_space_check_named_params(isl_map_peek_space(map));
1351 /* Check that "bmap1" and "bmap2" have the same parameters,
1352 * reporting an error if they do not.
1354 static isl_stat isl_basic_map_check_equal_params(
1355 __isl_keep isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
1357 isl_bool match;
1359 match = isl_basic_map_has_equal_params(bmap1, bmap2);
1360 if (match < 0)
1361 return isl_stat_error;
1362 if (!match)
1363 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
1364 "parameters don't match", return isl_stat_error);
1365 return isl_stat_ok;
1368 __isl_give isl_map *isl_map_align_params_map_map_and(
1369 __isl_take isl_map *map1, __isl_take isl_map *map2,
1370 __isl_give isl_map *(*fn)(__isl_take isl_map *map1,
1371 __isl_take isl_map *map2))
1373 if (!map1 || !map2)
1374 goto error;
1375 if (isl_map_has_equal_params(map1, map2))
1376 return fn(map1, map2);
1377 if (isl_map_check_named_params(map1) < 0)
1378 goto error;
1379 if (isl_map_check_named_params(map2) < 0)
1380 goto error;
1381 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1382 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1383 return fn(map1, map2);
1384 error:
1385 isl_map_free(map1);
1386 isl_map_free(map2);
1387 return NULL;
1390 isl_bool isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
1391 __isl_keep isl_map *map2,
1392 isl_bool (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
1394 isl_bool r;
1396 if (!map1 || !map2)
1397 return isl_bool_error;
1398 if (isl_map_has_equal_params(map1, map2))
1399 return fn(map1, map2);
1400 if (isl_map_check_named_params(map1) < 0)
1401 return isl_bool_error;
1402 if (isl_map_check_named_params(map2) < 0)
1403 return isl_bool_error;
1404 map1 = isl_map_copy(map1);
1405 map2 = isl_map_copy(map2);
1406 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1407 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1408 r = fn(map1, map2);
1409 isl_map_free(map1);
1410 isl_map_free(map2);
1411 return r;
1414 int isl_basic_map_alloc_equality(struct isl_basic_map *bmap)
1416 struct isl_ctx *ctx;
1417 if (!bmap)
1418 return -1;
1419 ctx = bmap->ctx;
1420 isl_assert(ctx, room_for_con(bmap, 1), return -1);
1421 isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
1422 return -1);
1423 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1424 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1425 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1426 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1427 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1428 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1429 isl_int *t;
1430 int j = isl_basic_map_alloc_inequality(bmap);
1431 if (j < 0)
1432 return -1;
1433 t = bmap->ineq[j];
1434 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1435 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1436 bmap->eq[-1] = t;
1437 bmap->n_eq++;
1438 bmap->n_ineq--;
1439 bmap->eq--;
1440 return 0;
1442 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
1443 bmap->extra - bmap->n_div);
1444 return bmap->n_eq++;
1447 int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
1449 return isl_basic_map_alloc_equality(bset_to_bmap(bset));
1452 int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
1454 if (!bmap)
1455 return -1;
1456 isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
1457 bmap->n_eq -= n;
1458 return 0;
1461 int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
1463 return isl_basic_map_free_equality(bset_to_bmap(bset), n);
1466 int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
1468 isl_int *t;
1469 if (!bmap)
1470 return -1;
1471 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1473 if (pos != bmap->n_eq - 1) {
1474 t = bmap->eq[pos];
1475 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
1476 bmap->eq[bmap->n_eq - 1] = t;
1478 bmap->n_eq--;
1479 return 0;
1482 /* Turn inequality "pos" of "bmap" into an equality.
1484 * In particular, we move the inequality in front of the equalities
1485 * and move the last inequality in the position of the moved inequality.
1486 * Note that isl_tab_make_equalities_explicit depends on this particular
1487 * change in the ordering of the constraints.
1489 void isl_basic_map_inequality_to_equality(
1490 struct isl_basic_map *bmap, unsigned pos)
1492 isl_int *t;
1494 t = bmap->ineq[pos];
1495 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1496 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1497 bmap->eq[-1] = t;
1498 bmap->n_eq++;
1499 bmap->n_ineq--;
1500 bmap->eq--;
1501 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1502 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1503 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1504 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1507 static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
1509 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1512 int isl_basic_map_alloc_inequality(__isl_keep isl_basic_map *bmap)
1514 struct isl_ctx *ctx;
1515 if (!bmap)
1516 return -1;
1517 ctx = bmap->ctx;
1518 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1519 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1520 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1521 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1522 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1523 isl_seq_clr(bmap->ineq[bmap->n_ineq] +
1524 1 + isl_basic_map_total_dim(bmap),
1525 bmap->extra - bmap->n_div);
1526 return bmap->n_ineq++;
1529 int isl_basic_set_alloc_inequality(__isl_keep isl_basic_set *bset)
1531 return isl_basic_map_alloc_inequality(bset_to_bmap(bset));
1534 int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
1536 if (!bmap)
1537 return -1;
1538 isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
1539 bmap->n_ineq -= n;
1540 return 0;
1543 int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
1545 return isl_basic_map_free_inequality(bset_to_bmap(bset), n);
1548 int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
1550 isl_int *t;
1551 if (!bmap)
1552 return -1;
1553 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1555 if (pos != bmap->n_ineq - 1) {
1556 t = bmap->ineq[pos];
1557 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1558 bmap->ineq[bmap->n_ineq - 1] = t;
1559 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1561 bmap->n_ineq--;
1562 return 0;
1565 int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
1567 return isl_basic_map_drop_inequality(bset_to_bmap(bset), pos);
1570 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1571 isl_int *eq)
1573 int k;
1575 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1576 if (!bmap)
1577 return NULL;
1578 k = isl_basic_map_alloc_equality(bmap);
1579 if (k < 0)
1580 goto error;
1581 isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
1582 return bmap;
1583 error:
1584 isl_basic_map_free(bmap);
1585 return NULL;
1588 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1589 isl_int *eq)
1591 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset), eq));
1594 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1595 isl_int *ineq)
1597 int k;
1599 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1600 if (!bmap)
1601 return NULL;
1602 k = isl_basic_map_alloc_inequality(bmap);
1603 if (k < 0)
1604 goto error;
1605 isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
1606 return bmap;
1607 error:
1608 isl_basic_map_free(bmap);
1609 return NULL;
1612 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1613 isl_int *ineq)
1615 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset), ineq));
1618 int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
1620 if (!bmap)
1621 return -1;
1622 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1623 isl_seq_clr(bmap->div[bmap->n_div] +
1624 1 + 1 + isl_basic_map_total_dim(bmap),
1625 bmap->extra - bmap->n_div);
1626 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1627 return bmap->n_div++;
1630 int isl_basic_set_alloc_div(struct isl_basic_set *bset)
1632 return isl_basic_map_alloc_div(bset_to_bmap(bset));
1635 /* Check that there are "n" dimensions of type "type" starting at "first"
1636 * in "bmap".
1638 static isl_stat isl_basic_map_check_range(__isl_keep isl_basic_map *bmap,
1639 enum isl_dim_type type, unsigned first, unsigned n)
1641 unsigned dim;
1643 if (!bmap)
1644 return isl_stat_error;
1645 dim = isl_basic_map_dim(bmap, type);
1646 if (first + n > dim || first + n < first)
1647 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1648 "position or range out of bounds",
1649 return isl_stat_error);
1650 return isl_stat_ok;
1653 /* Insert an extra integer division, prescribed by "div", to "bmap"
1654 * at (integer division) position "pos".
1656 * The integer division is first added at the end and then moved
1657 * into the right position.
1659 __isl_give isl_basic_map *isl_basic_map_insert_div(
1660 __isl_take isl_basic_map *bmap, int pos, __isl_keep isl_vec *div)
1662 int i, k;
1664 bmap = isl_basic_map_cow(bmap);
1665 if (!bmap || !div)
1666 return isl_basic_map_free(bmap);
1668 if (div->size != 1 + 1 + isl_basic_map_dim(bmap, isl_dim_all))
1669 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1670 "unexpected size", return isl_basic_map_free(bmap));
1671 if (isl_basic_map_check_range(bmap, isl_dim_div, pos, 0) < 0)
1672 return isl_basic_map_free(bmap);
1674 bmap = isl_basic_map_extend_space(bmap,
1675 isl_basic_map_get_space(bmap), 1, 0, 2);
1676 k = isl_basic_map_alloc_div(bmap);
1677 if (k < 0)
1678 return isl_basic_map_free(bmap);
1679 isl_seq_cpy(bmap->div[k], div->el, div->size);
1680 isl_int_set_si(bmap->div[k][div->size], 0);
1682 for (i = k; i > pos; --i)
1683 isl_basic_map_swap_div(bmap, i, i - 1);
1685 return bmap;
1688 isl_stat isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
1690 if (!bmap)
1691 return isl_stat_error;
1692 isl_assert(bmap->ctx, n <= bmap->n_div, return isl_stat_error);
1693 bmap->n_div -= n;
1694 return isl_stat_ok;
1697 /* Copy constraint from src to dst, putting the vars of src at offset
1698 * dim_off in dst and the divs of src at offset div_off in dst.
1699 * If both sets are actually map, then dim_off applies to the input
1700 * variables.
1702 static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
1703 struct isl_basic_map *src_map, isl_int *src,
1704 unsigned in_off, unsigned out_off, unsigned div_off)
1706 unsigned src_nparam = isl_basic_map_dim(src_map, isl_dim_param);
1707 unsigned dst_nparam = isl_basic_map_dim(dst_map, isl_dim_param);
1708 unsigned src_in = isl_basic_map_dim(src_map, isl_dim_in);
1709 unsigned dst_in = isl_basic_map_dim(dst_map, isl_dim_in);
1710 unsigned src_out = isl_basic_map_dim(src_map, isl_dim_out);
1711 unsigned dst_out = isl_basic_map_dim(dst_map, isl_dim_out);
1712 isl_int_set(dst[0], src[0]);
1713 isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
1714 if (dst_nparam > src_nparam)
1715 isl_seq_clr(dst+1+src_nparam,
1716 dst_nparam - src_nparam);
1717 isl_seq_clr(dst+1+dst_nparam, in_off);
1718 isl_seq_cpy(dst+1+dst_nparam+in_off,
1719 src+1+src_nparam,
1720 isl_min(dst_in-in_off, src_in));
1721 if (dst_in-in_off > src_in)
1722 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
1723 dst_in - in_off - src_in);
1724 isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
1725 isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
1726 src+1+src_nparam+src_in,
1727 isl_min(dst_out-out_off, src_out));
1728 if (dst_out-out_off > src_out)
1729 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
1730 dst_out - out_off - src_out);
1731 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
1732 isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
1733 src+1+src_nparam+src_in+src_out,
1734 isl_min(dst_map->extra-div_off, src_map->n_div));
1735 if (dst_map->n_div-div_off > src_map->n_div)
1736 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
1737 div_off+src_map->n_div,
1738 dst_map->n_div - div_off - src_map->n_div);
1741 static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
1742 struct isl_basic_map *src_map, isl_int *src,
1743 unsigned in_off, unsigned out_off, unsigned div_off)
1745 isl_int_set(dst[0], src[0]);
1746 copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
1749 static __isl_give isl_basic_map *add_constraints(
1750 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2,
1751 unsigned i_pos, unsigned o_pos)
1753 int i;
1754 unsigned div_off;
1756 if (!bmap1 || !bmap2)
1757 goto error;
1759 div_off = bmap1->n_div;
1761 for (i = 0; i < bmap2->n_eq; ++i) {
1762 int i1 = isl_basic_map_alloc_equality(bmap1);
1763 if (i1 < 0)
1764 goto error;
1765 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
1766 i_pos, o_pos, div_off);
1769 for (i = 0; i < bmap2->n_ineq; ++i) {
1770 int i1 = isl_basic_map_alloc_inequality(bmap1);
1771 if (i1 < 0)
1772 goto error;
1773 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
1774 i_pos, o_pos, div_off);
1777 for (i = 0; i < bmap2->n_div; ++i) {
1778 int i1 = isl_basic_map_alloc_div(bmap1);
1779 if (i1 < 0)
1780 goto error;
1781 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
1782 i_pos, o_pos, div_off);
1785 isl_basic_map_free(bmap2);
1787 return bmap1;
1789 error:
1790 isl_basic_map_free(bmap1);
1791 isl_basic_map_free(bmap2);
1792 return NULL;
1795 struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
1796 struct isl_basic_set *bset2, unsigned pos)
1798 return bset_from_bmap(add_constraints(bset_to_bmap(bset1),
1799 bset_to_bmap(bset2), 0, pos));
1802 __isl_give isl_basic_map *isl_basic_map_extend_space(
1803 __isl_take isl_basic_map *base, __isl_take isl_space *dim,
1804 unsigned extra, unsigned n_eq, unsigned n_ineq)
1806 struct isl_basic_map *ext;
1807 unsigned flags;
1808 int dims_ok;
1810 if (!dim)
1811 goto error;
1813 if (!base)
1814 goto error;
1816 dims_ok = isl_space_is_equal(base->dim, dim) &&
1817 base->extra >= base->n_div + extra;
1819 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1820 room_for_ineq(base, n_ineq)) {
1821 isl_space_free(dim);
1822 return base;
1825 isl_assert(base->ctx, base->dim->nparam <= dim->nparam, goto error);
1826 isl_assert(base->ctx, base->dim->n_in <= dim->n_in, goto error);
1827 isl_assert(base->ctx, base->dim->n_out <= dim->n_out, goto error);
1828 extra += base->extra;
1829 n_eq += base->n_eq;
1830 n_ineq += base->n_ineq;
1832 ext = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1833 dim = NULL;
1834 if (!ext)
1835 goto error;
1837 if (dims_ok)
1838 ext->sample = isl_vec_copy(base->sample);
1839 flags = base->flags;
1840 ext = add_constraints(ext, base, 0, 0);
1841 if (ext) {
1842 ext->flags = flags;
1843 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
1846 return ext;
1848 error:
1849 isl_space_free(dim);
1850 isl_basic_map_free(base);
1851 return NULL;
1854 __isl_give isl_basic_set *isl_basic_set_extend_space(
1855 __isl_take isl_basic_set *base,
1856 __isl_take isl_space *dim, unsigned extra,
1857 unsigned n_eq, unsigned n_ineq)
1859 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base),
1860 dim, extra, n_eq, n_ineq));
1863 struct isl_basic_map *isl_basic_map_extend_constraints(
1864 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
1866 if (!base)
1867 return NULL;
1868 return isl_basic_map_extend_space(base, isl_space_copy(base->dim),
1869 0, n_eq, n_ineq);
1872 struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
1873 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
1874 unsigned n_eq, unsigned n_ineq)
1876 struct isl_basic_map *bmap;
1877 isl_space *dim;
1879 if (!base)
1880 return NULL;
1881 dim = isl_space_alloc(base->ctx, nparam, n_in, n_out);
1882 if (!dim)
1883 goto error;
1885 bmap = isl_basic_map_extend_space(base, dim, extra, n_eq, n_ineq);
1886 return bmap;
1887 error:
1888 isl_basic_map_free(base);
1889 return NULL;
1892 struct isl_basic_set *isl_basic_set_extend(struct isl_basic_set *base,
1893 unsigned nparam, unsigned dim, unsigned extra,
1894 unsigned n_eq, unsigned n_ineq)
1896 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base),
1897 nparam, 0, dim, extra, n_eq, n_ineq));
1900 struct isl_basic_set *isl_basic_set_extend_constraints(
1901 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1903 isl_basic_map *bmap = bset_to_bmap(base);
1904 bmap = isl_basic_map_extend_constraints(bmap, n_eq, n_ineq);
1905 return bset_from_bmap(bmap);
1908 __isl_give isl_basic_set *isl_basic_set_cow(__isl_take isl_basic_set *bset)
1910 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset)));
1913 __isl_give isl_basic_map *isl_basic_map_cow(__isl_take isl_basic_map *bmap)
1915 if (!bmap)
1916 return NULL;
1918 if (bmap->ref > 1) {
1919 bmap->ref--;
1920 bmap = isl_basic_map_dup(bmap);
1922 if (bmap) {
1923 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
1924 ISL_F_CLR(bmap, ISL_BASIC_MAP_REDUCED_COEFFICIENTS);
1926 return bmap;
1929 /* Clear all cached information in "map", either because it is about
1930 * to be modified or because it is being freed.
1931 * Always return the same pointer that is passed in.
1932 * This is needed for the use in isl_map_free.
1934 static __isl_give isl_map *clear_caches(__isl_take isl_map *map)
1936 isl_basic_map_free(map->cached_simple_hull[0]);
1937 isl_basic_map_free(map->cached_simple_hull[1]);
1938 map->cached_simple_hull[0] = NULL;
1939 map->cached_simple_hull[1] = NULL;
1940 return map;
1943 __isl_give isl_set *isl_set_cow(__isl_take isl_set *set)
1945 return isl_map_cow(set);
1948 /* Return an isl_map that is equal to "map" and that has only
1949 * a single reference.
1951 * If the original input already has only one reference, then
1952 * simply return it, but clear all cached information, since
1953 * it may be rendered invalid by the operations that will be
1954 * performed on the result.
1956 * Otherwise, create a duplicate (without any cached information).
1958 __isl_give isl_map *isl_map_cow(__isl_take isl_map *map)
1960 if (!map)
1961 return NULL;
1963 if (map->ref == 1)
1964 return clear_caches(map);
1965 map->ref--;
1966 return isl_map_dup(map);
1969 static void swap_vars(struct isl_blk blk, isl_int *a,
1970 unsigned a_len, unsigned b_len)
1972 isl_seq_cpy(blk.data, a+a_len, b_len);
1973 isl_seq_cpy(blk.data+b_len, a, a_len);
1974 isl_seq_cpy(a, blk.data, b_len+a_len);
1977 static __isl_give isl_basic_map *isl_basic_map_swap_vars(
1978 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
1980 int i;
1981 struct isl_blk blk;
1983 if (!bmap)
1984 goto error;
1986 isl_assert(bmap->ctx,
1987 pos + n1 + n2 <= 1 + isl_basic_map_total_dim(bmap), goto error);
1989 if (n1 == 0 || n2 == 0)
1990 return bmap;
1992 bmap = isl_basic_map_cow(bmap);
1993 if (!bmap)
1994 return NULL;
1996 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
1997 if (isl_blk_is_error(blk))
1998 goto error;
2000 for (i = 0; i < bmap->n_eq; ++i)
2001 swap_vars(blk,
2002 bmap->eq[i] + pos, n1, n2);
2004 for (i = 0; i < bmap->n_ineq; ++i)
2005 swap_vars(blk,
2006 bmap->ineq[i] + pos, n1, n2);
2008 for (i = 0; i < bmap->n_div; ++i)
2009 swap_vars(blk,
2010 bmap->div[i]+1 + pos, n1, n2);
2012 isl_blk_free(bmap->ctx, blk);
2014 ISL_F_CLR(bmap, ISL_BASIC_SET_NORMALIZED);
2015 bmap = isl_basic_map_gauss(bmap, NULL);
2016 return isl_basic_map_finalize(bmap);
2017 error:
2018 isl_basic_map_free(bmap);
2019 return NULL;
2022 __isl_give isl_basic_map *isl_basic_map_set_to_empty(
2023 __isl_take isl_basic_map *bmap)
2025 int i = 0;
2026 unsigned total;
2027 if (!bmap)
2028 goto error;
2029 total = isl_basic_map_total_dim(bmap);
2030 if (isl_basic_map_free_div(bmap, bmap->n_div) < 0)
2031 return isl_basic_map_free(bmap);
2032 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
2033 if (bmap->n_eq > 0)
2034 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
2035 else {
2036 i = isl_basic_map_alloc_equality(bmap);
2037 if (i < 0)
2038 goto error;
2040 isl_int_set_si(bmap->eq[i][0], 1);
2041 isl_seq_clr(bmap->eq[i]+1, total);
2042 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
2043 isl_vec_free(bmap->sample);
2044 bmap->sample = NULL;
2045 return isl_basic_map_finalize(bmap);
2046 error:
2047 isl_basic_map_free(bmap);
2048 return NULL;
2051 __isl_give isl_basic_set *isl_basic_set_set_to_empty(
2052 __isl_take isl_basic_set *bset)
2054 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset)));
2057 __isl_give isl_basic_map *isl_basic_map_set_rational(
2058 __isl_take isl_basic_map *bmap)
2060 if (!bmap)
2061 return NULL;
2063 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
2064 return bmap;
2066 bmap = isl_basic_map_cow(bmap);
2067 if (!bmap)
2068 return NULL;
2070 ISL_F_SET(bmap, ISL_BASIC_MAP_RATIONAL);
2072 return isl_basic_map_finalize(bmap);
2075 __isl_give isl_basic_set *isl_basic_set_set_rational(
2076 __isl_take isl_basic_set *bset)
2078 return isl_basic_map_set_rational(bset);
2081 __isl_give isl_basic_set *isl_basic_set_set_integral(
2082 __isl_take isl_basic_set *bset)
2084 if (!bset)
2085 return NULL;
2087 if (!ISL_F_ISSET(bset, ISL_BASIC_MAP_RATIONAL))
2088 return bset;
2090 bset = isl_basic_set_cow(bset);
2091 if (!bset)
2092 return NULL;
2094 ISL_F_CLR(bset, ISL_BASIC_MAP_RATIONAL);
2096 return isl_basic_set_finalize(bset);
2099 __isl_give isl_map *isl_map_set_rational(__isl_take isl_map *map)
2101 int i;
2103 map = isl_map_cow(map);
2104 if (!map)
2105 return NULL;
2106 for (i = 0; i < map->n; ++i) {
2107 map->p[i] = isl_basic_map_set_rational(map->p[i]);
2108 if (!map->p[i])
2109 goto error;
2111 return map;
2112 error:
2113 isl_map_free(map);
2114 return NULL;
2117 __isl_give isl_set *isl_set_set_rational(__isl_take isl_set *set)
2119 return isl_map_set_rational(set);
2122 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
2123 * of "bmap").
2125 static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
2127 isl_int *t = bmap->div[a];
2128 bmap->div[a] = bmap->div[b];
2129 bmap->div[b] = t;
2132 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
2133 * div definitions accordingly.
2135 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
2137 int i;
2138 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
2140 swap_div(bmap, a, b);
2142 for (i = 0; i < bmap->n_eq; ++i)
2143 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
2145 for (i = 0; i < bmap->n_ineq; ++i)
2146 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
2148 for (i = 0; i < bmap->n_div; ++i)
2149 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
2150 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2153 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
2154 * div definitions accordingly.
2156 void isl_basic_set_swap_div(__isl_keep isl_basic_set *bset, int a, int b)
2158 isl_basic_map_swap_div(bset, a, b);
2161 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
2163 isl_seq_cpy(c, c + n, rem);
2164 isl_seq_clr(c + rem, n);
2167 /* Drop n dimensions starting at first.
2169 * In principle, this frees up some extra variables as the number
2170 * of columns remains constant, but we would have to extend
2171 * the div array too as the number of rows in this array is assumed
2172 * to be equal to extra.
2174 __isl_give isl_basic_set *isl_basic_set_drop_dims(
2175 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2177 return isl_basic_map_drop(bset_to_bmap(bset), isl_dim_set, first, n);
2180 /* Move "n" divs starting at "first" to the end of the list of divs.
2182 static struct isl_basic_map *move_divs_last(struct isl_basic_map *bmap,
2183 unsigned first, unsigned n)
2185 isl_int **div;
2186 int i;
2188 if (first + n == bmap->n_div)
2189 return bmap;
2191 div = isl_alloc_array(bmap->ctx, isl_int *, n);
2192 if (!div)
2193 goto error;
2194 for (i = 0; i < n; ++i)
2195 div[i] = bmap->div[first + i];
2196 for (i = 0; i < bmap->n_div - first - n; ++i)
2197 bmap->div[first + i] = bmap->div[first + n + i];
2198 for (i = 0; i < n; ++i)
2199 bmap->div[bmap->n_div - n + i] = div[i];
2200 free(div);
2201 return bmap;
2202 error:
2203 isl_basic_map_free(bmap);
2204 return NULL;
2207 /* Drop "n" dimensions of type "type" starting at "first".
2209 * In principle, this frees up some extra variables as the number
2210 * of columns remains constant, but we would have to extend
2211 * the div array too as the number of rows in this array is assumed
2212 * to be equal to extra.
2214 __isl_give isl_basic_map *isl_basic_map_drop(__isl_take isl_basic_map *bmap,
2215 enum isl_dim_type type, unsigned first, unsigned n)
2217 int i;
2218 unsigned dim;
2219 unsigned offset;
2220 unsigned left;
2222 if (!bmap)
2223 goto error;
2225 dim = isl_basic_map_dim(bmap, type);
2226 isl_assert(bmap->ctx, first + n <= dim, goto error);
2228 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2229 return bmap;
2231 bmap = isl_basic_map_cow(bmap);
2232 if (!bmap)
2233 return NULL;
2235 offset = isl_basic_map_offset(bmap, type) + first;
2236 left = isl_basic_map_total_dim(bmap) - (offset - 1) - n;
2237 for (i = 0; i < bmap->n_eq; ++i)
2238 constraint_drop_vars(bmap->eq[i]+offset, n, left);
2240 for (i = 0; i < bmap->n_ineq; ++i)
2241 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
2243 for (i = 0; i < bmap->n_div; ++i)
2244 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
2246 if (type == isl_dim_div) {
2247 bmap = move_divs_last(bmap, first, n);
2248 if (!bmap)
2249 goto error;
2250 if (isl_basic_map_free_div(bmap, n) < 0)
2251 return isl_basic_map_free(bmap);
2252 } else
2253 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
2254 if (!bmap->dim)
2255 goto error;
2257 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2258 bmap = isl_basic_map_simplify(bmap);
2259 return isl_basic_map_finalize(bmap);
2260 error:
2261 isl_basic_map_free(bmap);
2262 return NULL;
2265 __isl_give isl_basic_set *isl_basic_set_drop(__isl_take isl_basic_set *bset,
2266 enum isl_dim_type type, unsigned first, unsigned n)
2268 return bset_from_bmap(isl_basic_map_drop(bset_to_bmap(bset),
2269 type, first, n));
2272 __isl_give isl_map *isl_map_drop(__isl_take isl_map *map,
2273 enum isl_dim_type type, unsigned first, unsigned n)
2275 int i;
2277 if (!map)
2278 goto error;
2280 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
2282 if (n == 0 && !isl_space_is_named_or_nested(map->dim, type))
2283 return map;
2284 map = isl_map_cow(map);
2285 if (!map)
2286 goto error;
2287 map->dim = isl_space_drop_dims(map->dim, type, first, n);
2288 if (!map->dim)
2289 goto error;
2291 for (i = 0; i < map->n; ++i) {
2292 map->p[i] = isl_basic_map_drop(map->p[i], type, first, n);
2293 if (!map->p[i])
2294 goto error;
2296 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2298 return map;
2299 error:
2300 isl_map_free(map);
2301 return NULL;
2304 __isl_give isl_set *isl_set_drop(__isl_take isl_set *set,
2305 enum isl_dim_type type, unsigned first, unsigned n)
2307 return set_from_map(isl_map_drop(set_to_map(set), type, first, n));
2311 * We don't cow, as the div is assumed to be redundant.
2313 __isl_give isl_basic_map *isl_basic_map_drop_div(
2314 __isl_take isl_basic_map *bmap, unsigned div)
2316 int i;
2317 unsigned pos;
2319 if (!bmap)
2320 goto error;
2322 pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
2324 isl_assert(bmap->ctx, div < bmap->n_div, goto error);
2326 for (i = 0; i < bmap->n_eq; ++i)
2327 constraint_drop_vars(bmap->eq[i]+pos, 1, bmap->extra-div-1);
2329 for (i = 0; i < bmap->n_ineq; ++i) {
2330 if (!isl_int_is_zero(bmap->ineq[i][pos])) {
2331 isl_basic_map_drop_inequality(bmap, i);
2332 --i;
2333 continue;
2335 constraint_drop_vars(bmap->ineq[i]+pos, 1, bmap->extra-div-1);
2338 for (i = 0; i < bmap->n_div; ++i)
2339 constraint_drop_vars(bmap->div[i]+1+pos, 1, bmap->extra-div-1);
2341 if (div != bmap->n_div - 1) {
2342 int j;
2343 isl_int *t = bmap->div[div];
2345 for (j = div; j < bmap->n_div - 1; ++j)
2346 bmap->div[j] = bmap->div[j+1];
2348 bmap->div[bmap->n_div - 1] = t;
2350 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2351 if (isl_basic_map_free_div(bmap, 1) < 0)
2352 return isl_basic_map_free(bmap);
2354 return bmap;
2355 error:
2356 isl_basic_map_free(bmap);
2357 return NULL;
2360 /* Eliminate the specified n dimensions starting at first from the
2361 * constraints, without removing the dimensions from the space.
2362 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2364 __isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
2365 enum isl_dim_type type, unsigned first, unsigned n)
2367 int i;
2369 if (!map)
2370 return NULL;
2371 if (n == 0)
2372 return map;
2374 if (first + n > isl_map_dim(map, type) || first + n < first)
2375 isl_die(map->ctx, isl_error_invalid,
2376 "index out of bounds", goto error);
2378 map = isl_map_cow(map);
2379 if (!map)
2380 return NULL;
2382 for (i = 0; i < map->n; ++i) {
2383 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
2384 if (!map->p[i])
2385 goto error;
2387 return map;
2388 error:
2389 isl_map_free(map);
2390 return NULL;
2393 /* Eliminate the specified n dimensions starting at first from the
2394 * constraints, without removing the dimensions from the space.
2395 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2397 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
2398 enum isl_dim_type type, unsigned first, unsigned n)
2400 return set_from_map(isl_map_eliminate(set_to_map(set), type, first, n));
2403 /* Eliminate the specified n dimensions starting at first from the
2404 * constraints, without removing the dimensions from the space.
2405 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2407 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
2408 unsigned first, unsigned n)
2410 return isl_set_eliminate(set, isl_dim_set, first, n);
2413 __isl_give isl_basic_map *isl_basic_map_remove_divs(
2414 __isl_take isl_basic_map *bmap)
2416 if (!bmap)
2417 return NULL;
2418 bmap = isl_basic_map_eliminate_vars(bmap,
2419 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
2420 if (!bmap)
2421 return NULL;
2422 bmap->n_div = 0;
2423 return isl_basic_map_finalize(bmap);
2426 __isl_give isl_basic_set *isl_basic_set_remove_divs(
2427 __isl_take isl_basic_set *bset)
2429 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset)));
2432 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
2434 int i;
2436 if (!map)
2437 return NULL;
2438 if (map->n == 0)
2439 return map;
2441 map = isl_map_cow(map);
2442 if (!map)
2443 return NULL;
2445 for (i = 0; i < map->n; ++i) {
2446 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
2447 if (!map->p[i])
2448 goto error;
2450 return map;
2451 error:
2452 isl_map_free(map);
2453 return NULL;
2456 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
2458 return isl_map_remove_divs(set);
2461 __isl_give isl_basic_map *isl_basic_map_remove_dims(
2462 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
2463 unsigned first, unsigned n)
2465 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2466 return isl_basic_map_free(bmap);
2467 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2468 return bmap;
2469 bmap = isl_basic_map_eliminate_vars(bmap,
2470 isl_basic_map_offset(bmap, type) - 1 + first, n);
2471 if (!bmap)
2472 return bmap;
2473 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
2474 return bmap;
2475 bmap = isl_basic_map_drop(bmap, type, first, n);
2476 return bmap;
2479 /* Return true if the definition of the given div (recursively) involves
2480 * any of the given variables.
2482 static isl_bool div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
2483 unsigned first, unsigned n)
2485 int i;
2486 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2488 if (isl_int_is_zero(bmap->div[div][0]))
2489 return isl_bool_false;
2490 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
2491 return isl_bool_true;
2493 for (i = bmap->n_div - 1; i >= 0; --i) {
2494 isl_bool involves;
2496 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2497 continue;
2498 involves = div_involves_vars(bmap, i, first, n);
2499 if (involves < 0 || involves)
2500 return involves;
2503 return isl_bool_false;
2506 /* Try and add a lower and/or upper bound on "div" to "bmap"
2507 * based on inequality "i".
2508 * "total" is the total number of variables (excluding the divs).
2509 * "v" is a temporary object that can be used during the calculations.
2510 * If "lb" is set, then a lower bound should be constructed.
2511 * If "ub" is set, then an upper bound should be constructed.
2513 * The calling function has already checked that the inequality does not
2514 * reference "div", but we still need to check that the inequality is
2515 * of the right form. We'll consider the case where we want to construct
2516 * a lower bound. The construction of upper bounds is similar.
2518 * Let "div" be of the form
2520 * q = floor((a + f(x))/d)
2522 * We essentially check if constraint "i" is of the form
2524 * b + f(x) >= 0
2526 * so that we can use it to derive a lower bound on "div".
2527 * However, we allow a slightly more general form
2529 * b + g(x) >= 0
2531 * with the condition that the coefficients of g(x) - f(x) are all
2532 * divisible by d.
2533 * Rewriting this constraint as
2535 * 0 >= -b - g(x)
2537 * adding a + f(x) to both sides and dividing by d, we obtain
2539 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2541 * Taking the floor on both sides, we obtain
2543 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2545 * or
2547 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2549 * In the case of an upper bound, we construct the constraint
2551 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2554 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2555 __isl_take isl_basic_map *bmap, int div, int i,
2556 unsigned total, isl_int v, int lb, int ub)
2558 int j;
2560 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2561 if (lb) {
2562 isl_int_sub(v, bmap->ineq[i][1 + j],
2563 bmap->div[div][1 + 1 + j]);
2564 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2566 if (ub) {
2567 isl_int_add(v, bmap->ineq[i][1 + j],
2568 bmap->div[div][1 + 1 + j]);
2569 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2572 if (!lb && !ub)
2573 return bmap;
2575 bmap = isl_basic_map_cow(bmap);
2576 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2577 if (lb) {
2578 int k = isl_basic_map_alloc_inequality(bmap);
2579 if (k < 0)
2580 goto error;
2581 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2582 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2583 bmap->div[div][1 + j]);
2584 isl_int_cdiv_q(bmap->ineq[k][j],
2585 bmap->ineq[k][j], bmap->div[div][0]);
2587 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2589 if (ub) {
2590 int k = isl_basic_map_alloc_inequality(bmap);
2591 if (k < 0)
2592 goto error;
2593 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2594 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2595 bmap->div[div][1 + j]);
2596 isl_int_fdiv_q(bmap->ineq[k][j],
2597 bmap->ineq[k][j], bmap->div[div][0]);
2599 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2602 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2603 return bmap;
2604 error:
2605 isl_basic_map_free(bmap);
2606 return NULL;
2609 /* This function is called right before "div" is eliminated from "bmap"
2610 * using Fourier-Motzkin.
2611 * Look through the constraints of "bmap" for constraints on the argument
2612 * of the integer division and use them to construct constraints on the
2613 * integer division itself. These constraints can then be combined
2614 * during the Fourier-Motzkin elimination.
2615 * Note that it is only useful to introduce lower bounds on "div"
2616 * if "bmap" already contains upper bounds on "div" as the newly
2617 * introduce lower bounds can then be combined with the pre-existing
2618 * upper bounds. Similarly for upper bounds.
2619 * We therefore first check if "bmap" contains any lower and/or upper bounds
2620 * on "div".
2622 * It is interesting to note that the introduction of these constraints
2623 * can indeed lead to more accurate results, even when compared to
2624 * deriving constraints on the argument of "div" from constraints on "div".
2625 * Consider, for example, the set
2627 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2629 * The second constraint can be rewritten as
2631 * 2 * [(-i-2j+3)/4] + k >= 0
2633 * from which we can derive
2635 * -i - 2j + 3 >= -2k
2637 * or
2639 * i + 2j <= 3 + 2k
2641 * Combined with the first constraint, we obtain
2643 * -3 <= 3 + 2k or k >= -3
2645 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2646 * the first constraint, we obtain
2648 * [(i + 2j)/4] >= [-3/4] = -1
2650 * Combining this constraint with the second constraint, we obtain
2652 * k >= -2
2654 static __isl_give isl_basic_map *insert_bounds_on_div(
2655 __isl_take isl_basic_map *bmap, int div)
2657 int i;
2658 int check_lb, check_ub;
2659 isl_int v;
2660 unsigned total;
2662 if (!bmap)
2663 return NULL;
2665 if (isl_int_is_zero(bmap->div[div][0]))
2666 return bmap;
2668 total = isl_space_dim(bmap->dim, isl_dim_all);
2670 check_lb = 0;
2671 check_ub = 0;
2672 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
2673 int s = isl_int_sgn(bmap->ineq[i][1 + total + div]);
2674 if (s > 0)
2675 check_ub = 1;
2676 if (s < 0)
2677 check_lb = 1;
2680 if (!check_lb && !check_ub)
2681 return bmap;
2683 isl_int_init(v);
2685 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
2686 if (!isl_int_is_zero(bmap->ineq[i][1 + total + div]))
2687 continue;
2689 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, total, v,
2690 check_lb, check_ub);
2693 isl_int_clear(v);
2695 return bmap;
2698 /* Remove all divs (recursively) involving any of the given dimensions
2699 * in their definitions.
2701 __isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
2702 __isl_take isl_basic_map *bmap,
2703 enum isl_dim_type type, unsigned first, unsigned n)
2705 int i;
2707 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2708 return isl_basic_map_free(bmap);
2709 first += isl_basic_map_offset(bmap, type);
2711 for (i = bmap->n_div - 1; i >= 0; --i) {
2712 isl_bool involves;
2714 involves = div_involves_vars(bmap, i, first, n);
2715 if (involves < 0)
2716 return isl_basic_map_free(bmap);
2717 if (!involves)
2718 continue;
2719 bmap = insert_bounds_on_div(bmap, i);
2720 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2721 if (!bmap)
2722 return NULL;
2723 i = bmap->n_div;
2726 return bmap;
2729 __isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
2730 __isl_take isl_basic_set *bset,
2731 enum isl_dim_type type, unsigned first, unsigned n)
2733 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
2736 __isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
2737 enum isl_dim_type type, unsigned first, unsigned n)
2739 int i;
2741 if (!map)
2742 return NULL;
2743 if (map->n == 0)
2744 return map;
2746 map = isl_map_cow(map);
2747 if (!map)
2748 return NULL;
2750 for (i = 0; i < map->n; ++i) {
2751 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2752 type, first, n);
2753 if (!map->p[i])
2754 goto error;
2756 return map;
2757 error:
2758 isl_map_free(map);
2759 return NULL;
2762 __isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2763 enum isl_dim_type type, unsigned first, unsigned n)
2765 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set),
2766 type, first, n));
2769 /* Does the description of "bmap" depend on the specified dimensions?
2770 * We also check whether the dimensions appear in any of the div definitions.
2771 * In principle there is no need for this check. If the dimensions appear
2772 * in a div definition, they also appear in the defining constraints of that
2773 * div.
2775 isl_bool isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
2776 enum isl_dim_type type, unsigned first, unsigned n)
2778 int i;
2780 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2781 return isl_bool_error;
2783 first += isl_basic_map_offset(bmap, type);
2784 for (i = 0; i < bmap->n_eq; ++i)
2785 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
2786 return isl_bool_true;
2787 for (i = 0; i < bmap->n_ineq; ++i)
2788 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
2789 return isl_bool_true;
2790 for (i = 0; i < bmap->n_div; ++i) {
2791 if (isl_int_is_zero(bmap->div[i][0]))
2792 continue;
2793 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
2794 return isl_bool_true;
2797 return isl_bool_false;
2800 isl_bool isl_map_involves_dims(__isl_keep isl_map *map,
2801 enum isl_dim_type type, unsigned first, unsigned n)
2803 int i;
2805 if (!map)
2806 return isl_bool_error;
2808 if (first + n > isl_map_dim(map, type))
2809 isl_die(map->ctx, isl_error_invalid,
2810 "index out of bounds", return isl_bool_error);
2812 for (i = 0; i < map->n; ++i) {
2813 isl_bool involves = isl_basic_map_involves_dims(map->p[i],
2814 type, first, n);
2815 if (involves < 0 || involves)
2816 return involves;
2819 return isl_bool_false;
2822 isl_bool isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
2823 enum isl_dim_type type, unsigned first, unsigned n)
2825 return isl_basic_map_involves_dims(bset, type, first, n);
2828 isl_bool isl_set_involves_dims(__isl_keep isl_set *set,
2829 enum isl_dim_type type, unsigned first, unsigned n)
2831 return isl_map_involves_dims(set, type, first, n);
2834 /* Drop all constraints in bmap that involve any of the dimensions
2835 * first to first+n-1.
2837 static __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving(
2838 __isl_take isl_basic_map *bmap, unsigned first, unsigned n)
2840 int i;
2842 if (n == 0)
2843 return bmap;
2845 bmap = isl_basic_map_cow(bmap);
2847 if (!bmap)
2848 return NULL;
2850 for (i = bmap->n_eq - 1; i >= 0; --i) {
2851 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) == -1)
2852 continue;
2853 isl_basic_map_drop_equality(bmap, i);
2856 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2857 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) == -1)
2858 continue;
2859 isl_basic_map_drop_inequality(bmap, i);
2862 bmap = isl_basic_map_add_known_div_constraints(bmap);
2863 return bmap;
2866 /* Drop all constraints in bset that involve any of the dimensions
2867 * first to first+n-1.
2869 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving(
2870 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2872 return isl_basic_map_drop_constraints_involving(bset, first, n);
2875 /* Drop all constraints in bmap that do not involve any of the dimensions
2876 * first to first + n - 1 of the given type.
2878 __isl_give isl_basic_map *isl_basic_map_drop_constraints_not_involving_dims(
2879 __isl_take isl_basic_map *bmap,
2880 enum isl_dim_type type, unsigned first, unsigned n)
2882 int i;
2884 if (n == 0) {
2885 isl_space *space = isl_basic_map_get_space(bmap);
2886 isl_basic_map_free(bmap);
2887 return isl_basic_map_universe(space);
2889 bmap = isl_basic_map_cow(bmap);
2890 if (!bmap)
2891 return NULL;
2893 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2894 return isl_basic_map_free(bmap);
2896 first += isl_basic_map_offset(bmap, type) - 1;
2898 for (i = bmap->n_eq - 1; i >= 0; --i) {
2899 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) != -1)
2900 continue;
2901 isl_basic_map_drop_equality(bmap, i);
2904 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2905 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) != -1)
2906 continue;
2907 isl_basic_map_drop_inequality(bmap, i);
2910 bmap = isl_basic_map_add_known_div_constraints(bmap);
2911 return bmap;
2914 /* Drop all constraints in bset that do not involve any of the dimensions
2915 * first to first + n - 1 of the given type.
2917 __isl_give isl_basic_set *isl_basic_set_drop_constraints_not_involving_dims(
2918 __isl_take isl_basic_set *bset,
2919 enum isl_dim_type type, unsigned first, unsigned n)
2921 return isl_basic_map_drop_constraints_not_involving_dims(bset,
2922 type, first, n);
2925 /* Drop all constraints in bmap that involve any of the dimensions
2926 * first to first + n - 1 of the given type.
2928 __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving_dims(
2929 __isl_take isl_basic_map *bmap,
2930 enum isl_dim_type type, unsigned first, unsigned n)
2932 if (!bmap)
2933 return NULL;
2934 if (n == 0)
2935 return bmap;
2937 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2938 return isl_basic_map_free(bmap);
2940 bmap = isl_basic_map_remove_divs_involving_dims(bmap, type, first, n);
2941 first += isl_basic_map_offset(bmap, type) - 1;
2942 return isl_basic_map_drop_constraints_involving(bmap, first, n);
2945 /* Drop all constraints in bset that involve any of the dimensions
2946 * first to first + n - 1 of the given type.
2948 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving_dims(
2949 __isl_take isl_basic_set *bset,
2950 enum isl_dim_type type, unsigned first, unsigned n)
2952 return isl_basic_map_drop_constraints_involving_dims(bset,
2953 type, first, n);
2956 /* Drop constraints from "map" by applying "drop" to each basic map.
2958 static __isl_give isl_map *drop_constraints(__isl_take isl_map *map,
2959 enum isl_dim_type type, unsigned first, unsigned n,
2960 __isl_give isl_basic_map *(*drop)(__isl_take isl_basic_map *bmap,
2961 enum isl_dim_type type, unsigned first, unsigned n))
2963 int i;
2964 unsigned dim;
2966 if (!map)
2967 return NULL;
2969 dim = isl_map_dim(map, type);
2970 if (first + n > dim || first + n < first)
2971 isl_die(isl_map_get_ctx(map), isl_error_invalid,
2972 "index out of bounds", return isl_map_free(map));
2974 map = isl_map_cow(map);
2975 if (!map)
2976 return NULL;
2978 for (i = 0; i < map->n; ++i) {
2979 map->p[i] = drop(map->p[i], type, first, n);
2980 if (!map->p[i])
2981 return isl_map_free(map);
2984 if (map->n > 1)
2985 ISL_F_CLR(map, ISL_MAP_DISJOINT);
2987 return map;
2990 /* Drop all constraints in map that involve any of the dimensions
2991 * first to first + n - 1 of the given type.
2993 __isl_give isl_map *isl_map_drop_constraints_involving_dims(
2994 __isl_take isl_map *map,
2995 enum isl_dim_type type, unsigned first, unsigned n)
2997 if (n == 0)
2998 return map;
2999 return drop_constraints(map, type, first, n,
3000 &isl_basic_map_drop_constraints_involving_dims);
3003 /* Drop all constraints in "map" that do not involve any of the dimensions
3004 * first to first + n - 1 of the given type.
3006 __isl_give isl_map *isl_map_drop_constraints_not_involving_dims(
3007 __isl_take isl_map *map,
3008 enum isl_dim_type type, unsigned first, unsigned n)
3010 if (n == 0) {
3011 isl_space *space = isl_map_get_space(map);
3012 isl_map_free(map);
3013 return isl_map_universe(space);
3015 return drop_constraints(map, type, first, n,
3016 &isl_basic_map_drop_constraints_not_involving_dims);
3019 /* Drop all constraints in set that involve any of the dimensions
3020 * first to first + n - 1 of the given type.
3022 __isl_give isl_set *isl_set_drop_constraints_involving_dims(
3023 __isl_take isl_set *set,
3024 enum isl_dim_type type, unsigned first, unsigned n)
3026 return isl_map_drop_constraints_involving_dims(set, type, first, n);
3029 /* Drop all constraints in "set" that do not involve any of the dimensions
3030 * first to first + n - 1 of the given type.
3032 __isl_give isl_set *isl_set_drop_constraints_not_involving_dims(
3033 __isl_take isl_set *set,
3034 enum isl_dim_type type, unsigned first, unsigned n)
3036 return isl_map_drop_constraints_not_involving_dims(set, type, first, n);
3039 /* Does local variable "div" of "bmap" have a complete explicit representation?
3040 * Having a complete explicit representation requires not only
3041 * an explicit representation, but also that all local variables
3042 * that appear in this explicit representation in turn have
3043 * a complete explicit representation.
3045 isl_bool isl_basic_map_div_is_known(__isl_keep isl_basic_map *bmap, int div)
3047 int i;
3048 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
3049 isl_bool marked;
3051 marked = isl_basic_map_div_is_marked_unknown(bmap, div);
3052 if (marked < 0 || marked)
3053 return isl_bool_not(marked);
3055 for (i = bmap->n_div - 1; i >= 0; --i) {
3056 isl_bool known;
3058 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
3059 continue;
3060 known = isl_basic_map_div_is_known(bmap, i);
3061 if (known < 0 || !known)
3062 return known;
3065 return isl_bool_true;
3068 /* Remove all divs that are unknown or defined in terms of unknown divs.
3070 __isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
3071 __isl_take isl_basic_map *bmap)
3073 int i;
3075 if (!bmap)
3076 return NULL;
3078 for (i = bmap->n_div - 1; i >= 0; --i) {
3079 if (isl_basic_map_div_is_known(bmap, i))
3080 continue;
3081 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
3082 if (!bmap)
3083 return NULL;
3084 i = bmap->n_div;
3087 return bmap;
3090 /* Remove all divs that are unknown or defined in terms of unknown divs.
3092 __isl_give isl_basic_set *isl_basic_set_remove_unknown_divs(
3093 __isl_take isl_basic_set *bset)
3095 return isl_basic_map_remove_unknown_divs(bset);
3098 __isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
3100 int i;
3102 if (!map)
3103 return NULL;
3104 if (map->n == 0)
3105 return map;
3107 map = isl_map_cow(map);
3108 if (!map)
3109 return NULL;
3111 for (i = 0; i < map->n; ++i) {
3112 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
3113 if (!map->p[i])
3114 goto error;
3116 return map;
3117 error:
3118 isl_map_free(map);
3119 return NULL;
3122 __isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
3124 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set)));
3127 __isl_give isl_basic_set *isl_basic_set_remove_dims(
3128 __isl_take isl_basic_set *bset,
3129 enum isl_dim_type type, unsigned first, unsigned n)
3131 isl_basic_map *bmap = bset_to_bmap(bset);
3132 bmap = isl_basic_map_remove_dims(bmap, type, first, n);
3133 return bset_from_bmap(bmap);
3136 __isl_give isl_map *isl_map_remove_dims(__isl_take isl_map *map,
3137 enum isl_dim_type type, unsigned first, unsigned n)
3139 int i;
3141 if (n == 0)
3142 return map;
3144 map = isl_map_cow(map);
3145 if (!map)
3146 return NULL;
3147 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
3149 for (i = 0; i < map->n; ++i) {
3150 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
3151 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
3152 if (!map->p[i])
3153 goto error;
3155 map = isl_map_drop(map, type, first, n);
3156 return map;
3157 error:
3158 isl_map_free(map);
3159 return NULL;
3162 __isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
3163 enum isl_dim_type type, unsigned first, unsigned n)
3165 return set_from_map(isl_map_remove_dims(set_to_map(bset),
3166 type, first, n));
3169 /* Project out n inputs starting at first using Fourier-Motzkin */
3170 struct isl_map *isl_map_remove_inputs(struct isl_map *map,
3171 unsigned first, unsigned n)
3173 return isl_map_remove_dims(map, isl_dim_in, first, n);
3176 static void dump_term(struct isl_basic_map *bmap,
3177 isl_int c, int pos, FILE *out)
3179 const char *name;
3180 unsigned in = isl_basic_map_dim(bmap, isl_dim_in);
3181 unsigned dim = in + isl_basic_map_dim(bmap, isl_dim_out);
3182 unsigned nparam = isl_basic_map_dim(bmap, isl_dim_param);
3183 if (!pos)
3184 isl_int_print(out, c, 0);
3185 else {
3186 if (!isl_int_is_one(c))
3187 isl_int_print(out, c, 0);
3188 if (pos < 1 + nparam) {
3189 name = isl_space_get_dim_name(bmap->dim,
3190 isl_dim_param, pos - 1);
3191 if (name)
3192 fprintf(out, "%s", name);
3193 else
3194 fprintf(out, "p%d", pos - 1);
3195 } else if (pos < 1 + nparam + in)
3196 fprintf(out, "i%d", pos - 1 - nparam);
3197 else if (pos < 1 + nparam + dim)
3198 fprintf(out, "o%d", pos - 1 - nparam - in);
3199 else
3200 fprintf(out, "e%d", pos - 1 - nparam - dim);
3204 static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
3205 int sign, FILE *out)
3207 int i;
3208 int first;
3209 unsigned len = 1 + isl_basic_map_total_dim(bmap);
3210 isl_int v;
3212 isl_int_init(v);
3213 for (i = 0, first = 1; i < len; ++i) {
3214 if (isl_int_sgn(c[i]) * sign <= 0)
3215 continue;
3216 if (!first)
3217 fprintf(out, " + ");
3218 first = 0;
3219 isl_int_abs(v, c[i]);
3220 dump_term(bmap, v, i, out);
3222 isl_int_clear(v);
3223 if (first)
3224 fprintf(out, "0");
3227 static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
3228 const char *op, FILE *out, int indent)
3230 int i;
3232 fprintf(out, "%*s", indent, "");
3234 dump_constraint_sign(bmap, c, 1, out);
3235 fprintf(out, " %s ", op);
3236 dump_constraint_sign(bmap, c, -1, out);
3238 fprintf(out, "\n");
3240 for (i = bmap->n_div; i < bmap->extra; ++i) {
3241 if (isl_int_is_zero(c[1+isl_space_dim(bmap->dim, isl_dim_all)+i]))
3242 continue;
3243 fprintf(out, "%*s", indent, "");
3244 fprintf(out, "ERROR: unused div coefficient not zero\n");
3245 abort();
3249 static void dump_constraints(struct isl_basic_map *bmap,
3250 isl_int **c, unsigned n,
3251 const char *op, FILE *out, int indent)
3253 int i;
3255 for (i = 0; i < n; ++i)
3256 dump_constraint(bmap, c[i], op, out, indent);
3259 static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
3261 int j;
3262 int first = 1;
3263 unsigned total = isl_basic_map_total_dim(bmap);
3265 for (j = 0; j < 1 + total; ++j) {
3266 if (isl_int_is_zero(exp[j]))
3267 continue;
3268 if (!first && isl_int_is_pos(exp[j]))
3269 fprintf(out, "+");
3270 dump_term(bmap, exp[j], j, out);
3271 first = 0;
3275 static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
3277 int i;
3279 dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
3280 dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
3282 for (i = 0; i < bmap->n_div; ++i) {
3283 fprintf(out, "%*s", indent, "");
3284 fprintf(out, "e%d = [(", i);
3285 dump_affine(bmap, bmap->div[i]+1, out);
3286 fprintf(out, ")/");
3287 isl_int_print(out, bmap->div[i][0], 0);
3288 fprintf(out, "]\n");
3292 void isl_basic_set_print_internal(struct isl_basic_set *bset,
3293 FILE *out, int indent)
3295 if (!bset) {
3296 fprintf(out, "null basic set\n");
3297 return;
3300 fprintf(out, "%*s", indent, "");
3301 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
3302 bset->ref, bset->dim->nparam, bset->dim->n_out,
3303 bset->extra, bset->flags);
3304 dump(bset_to_bmap(bset), out, indent);
3307 void isl_basic_map_print_internal(struct isl_basic_map *bmap,
3308 FILE *out, int indent)
3310 if (!bmap) {
3311 fprintf(out, "null basic map\n");
3312 return;
3315 fprintf(out, "%*s", indent, "");
3316 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
3317 "flags: %x, n_name: %d\n",
3318 bmap->ref,
3319 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
3320 bmap->extra, bmap->flags, bmap->dim->n_id);
3321 dump(bmap, out, indent);
3324 int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
3326 unsigned total;
3327 if (!bmap)
3328 return -1;
3329 total = isl_basic_map_total_dim(bmap);
3330 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
3331 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
3332 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
3333 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
3334 return 0;
3337 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *space, int n,
3338 unsigned flags)
3340 if (!space)
3341 return NULL;
3342 if (isl_space_dim(space, isl_dim_in) != 0)
3343 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3344 "set cannot have input dimensions", goto error);
3345 return isl_map_alloc_space(space, n, flags);
3346 error:
3347 isl_space_free(space);
3348 return NULL;
3351 /* Make sure "map" has room for at least "n" more basic maps.
3353 __isl_give isl_map *isl_map_grow(__isl_take isl_map *map, int n)
3355 int i;
3356 struct isl_map *grown = NULL;
3358 if (!map)
3359 return NULL;
3360 isl_assert(map->ctx, n >= 0, goto error);
3361 if (map->n + n <= map->size)
3362 return map;
3363 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
3364 if (!grown)
3365 goto error;
3366 for (i = 0; i < map->n; ++i) {
3367 grown->p[i] = isl_basic_map_copy(map->p[i]);
3368 if (!grown->p[i])
3369 goto error;
3370 grown->n++;
3372 isl_map_free(map);
3373 return grown;
3374 error:
3375 isl_map_free(grown);
3376 isl_map_free(map);
3377 return NULL;
3380 /* Make sure "set" has room for at least "n" more basic sets.
3382 struct isl_set *isl_set_grow(struct isl_set *set, int n)
3384 return set_from_map(isl_map_grow(set_to_map(set), n));
3387 __isl_give isl_set *isl_set_from_basic_set(__isl_take isl_basic_set *bset)
3389 return isl_map_from_basic_map(bset);
3392 __isl_give isl_map *isl_map_from_basic_map(__isl_take isl_basic_map *bmap)
3394 struct isl_map *map;
3396 if (!bmap)
3397 return NULL;
3399 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
3400 return isl_map_add_basic_map(map, bmap);
3403 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
3404 __isl_take isl_basic_set *bset)
3406 return set_from_map(isl_map_add_basic_map(set_to_map(set),
3407 bset_to_bmap(bset)));
3410 __isl_null isl_set *isl_set_free(__isl_take isl_set *set)
3412 return isl_map_free(set);
3415 void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
3417 int i;
3419 if (!set) {
3420 fprintf(out, "null set\n");
3421 return;
3424 fprintf(out, "%*s", indent, "");
3425 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3426 set->ref, set->n, set->dim->nparam, set->dim->n_out,
3427 set->flags);
3428 for (i = 0; i < set->n; ++i) {
3429 fprintf(out, "%*s", indent, "");
3430 fprintf(out, "basic set %d:\n", i);
3431 isl_basic_set_print_internal(set->p[i], out, indent+4);
3435 void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
3437 int i;
3439 if (!map) {
3440 fprintf(out, "null map\n");
3441 return;
3444 fprintf(out, "%*s", indent, "");
3445 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3446 "flags: %x, n_name: %d\n",
3447 map->ref, map->n, map->dim->nparam, map->dim->n_in,
3448 map->dim->n_out, map->flags, map->dim->n_id);
3449 for (i = 0; i < map->n; ++i) {
3450 fprintf(out, "%*s", indent, "");
3451 fprintf(out, "basic map %d:\n", i);
3452 isl_basic_map_print_internal(map->p[i], out, indent+4);
3456 __isl_give isl_basic_map *isl_basic_map_intersect_domain(
3457 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3459 struct isl_basic_map *bmap_domain;
3461 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3462 goto error;
3464 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
3465 isl_assert(bset->ctx,
3466 isl_basic_map_compatible_domain(bmap, bset), goto error);
3468 bmap = isl_basic_map_cow(bmap);
3469 if (!bmap)
3470 goto error;
3471 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3472 bset->n_div, bset->n_eq, bset->n_ineq);
3473 bmap_domain = isl_basic_map_from_domain(bset);
3474 bmap = add_constraints(bmap, bmap_domain, 0, 0);
3476 bmap = isl_basic_map_simplify(bmap);
3477 return isl_basic_map_finalize(bmap);
3478 error:
3479 isl_basic_map_free(bmap);
3480 isl_basic_set_free(bset);
3481 return NULL;
3484 /* Check that the space of "bset" is the same as that of the range of "bmap".
3486 static isl_stat isl_basic_map_check_compatible_range(
3487 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3489 isl_bool ok;
3491 ok = isl_basic_map_compatible_range(bmap, bset);
3492 if (ok < 0)
3493 return isl_stat_error;
3494 if (!ok)
3495 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3496 "incompatible spaces", return isl_stat_error);
3498 return isl_stat_ok;
3501 __isl_give isl_basic_map *isl_basic_map_intersect_range(
3502 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3504 struct isl_basic_map *bmap_range;
3506 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3507 goto error;
3509 if (isl_space_dim(bset->dim, isl_dim_set) != 0 &&
3510 isl_basic_map_check_compatible_range(bmap, bset) < 0)
3511 goto error;
3513 if (isl_basic_set_plain_is_universe(bset)) {
3514 isl_basic_set_free(bset);
3515 return bmap;
3518 bmap = isl_basic_map_cow(bmap);
3519 if (!bmap)
3520 goto error;
3521 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3522 bset->n_div, bset->n_eq, bset->n_ineq);
3523 bmap_range = bset_to_bmap(bset);
3524 bmap = add_constraints(bmap, bmap_range, 0, 0);
3526 bmap = isl_basic_map_simplify(bmap);
3527 return isl_basic_map_finalize(bmap);
3528 error:
3529 isl_basic_map_free(bmap);
3530 isl_basic_set_free(bset);
3531 return NULL;
3534 isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
3535 __isl_keep isl_vec *vec)
3537 int i;
3538 unsigned total;
3539 isl_int s;
3541 if (!bmap || !vec)
3542 return isl_bool_error;
3544 total = 1 + isl_basic_map_total_dim(bmap);
3545 if (total != vec->size)
3546 return isl_bool_false;
3548 isl_int_init(s);
3550 for (i = 0; i < bmap->n_eq; ++i) {
3551 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
3552 if (!isl_int_is_zero(s)) {
3553 isl_int_clear(s);
3554 return isl_bool_false;
3558 for (i = 0; i < bmap->n_ineq; ++i) {
3559 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
3560 if (isl_int_is_neg(s)) {
3561 isl_int_clear(s);
3562 return isl_bool_false;
3566 isl_int_clear(s);
3568 return isl_bool_true;
3571 isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
3572 __isl_keep isl_vec *vec)
3574 return isl_basic_map_contains(bset_to_bmap(bset), vec);
3577 __isl_give isl_basic_map *isl_basic_map_intersect(
3578 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
3580 struct isl_vec *sample = NULL;
3582 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
3583 goto error;
3584 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
3585 isl_space_dim(bmap1->dim, isl_dim_param) &&
3586 isl_space_dim(bmap2->dim, isl_dim_all) !=
3587 isl_space_dim(bmap2->dim, isl_dim_param))
3588 return isl_basic_map_intersect(bmap2, bmap1);
3590 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
3591 isl_space_dim(bmap2->dim, isl_dim_param))
3592 isl_assert(bmap1->ctx,
3593 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
3595 if (isl_basic_map_plain_is_empty(bmap1)) {
3596 isl_basic_map_free(bmap2);
3597 return bmap1;
3599 if (isl_basic_map_plain_is_empty(bmap2)) {
3600 isl_basic_map_free(bmap1);
3601 return bmap2;
3604 if (bmap1->sample &&
3605 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
3606 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
3607 sample = isl_vec_copy(bmap1->sample);
3608 else if (bmap2->sample &&
3609 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
3610 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
3611 sample = isl_vec_copy(bmap2->sample);
3613 bmap1 = isl_basic_map_cow(bmap1);
3614 if (!bmap1)
3615 goto error;
3616 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
3617 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
3618 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
3620 if (!bmap1)
3621 isl_vec_free(sample);
3622 else if (sample) {
3623 isl_vec_free(bmap1->sample);
3624 bmap1->sample = sample;
3627 bmap1 = isl_basic_map_simplify(bmap1);
3628 return isl_basic_map_finalize(bmap1);
3629 error:
3630 if (sample)
3631 isl_vec_free(sample);
3632 isl_basic_map_free(bmap1);
3633 isl_basic_map_free(bmap2);
3634 return NULL;
3637 struct isl_basic_set *isl_basic_set_intersect(
3638 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
3640 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1),
3641 bset_to_bmap(bset2)));
3644 __isl_give isl_basic_set *isl_basic_set_intersect_params(
3645 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3647 return isl_basic_set_intersect(bset1, bset2);
3650 /* Special case of isl_map_intersect, where both map1 and map2
3651 * are convex, without any divs and such that either map1 or map2
3652 * contains a single constraint. This constraint is then simply
3653 * added to the other map.
3655 static __isl_give isl_map *map_intersect_add_constraint(
3656 __isl_take isl_map *map1, __isl_take isl_map *map2)
3658 isl_assert(map1->ctx, map1->n == 1, goto error);
3659 isl_assert(map2->ctx, map1->n == 1, goto error);
3660 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
3661 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
3663 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
3664 return isl_map_intersect(map2, map1);
3666 map1 = isl_map_cow(map1);
3667 if (!map1)
3668 goto error;
3669 if (isl_map_plain_is_empty(map1)) {
3670 isl_map_free(map2);
3671 return map1;
3673 map1->p[0] = isl_basic_map_cow(map1->p[0]);
3674 if (map2->p[0]->n_eq == 1)
3675 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
3676 else
3677 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
3678 map2->p[0]->ineq[0]);
3680 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
3681 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
3682 if (!map1->p[0])
3683 goto error;
3685 if (isl_basic_map_plain_is_empty(map1->p[0])) {
3686 isl_basic_map_free(map1->p[0]);
3687 map1->n = 0;
3690 isl_map_free(map2);
3692 return map1;
3693 error:
3694 isl_map_free(map1);
3695 isl_map_free(map2);
3696 return NULL;
3699 /* map2 may be either a parameter domain or a map living in the same
3700 * space as map1.
3702 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3703 __isl_take isl_map *map2)
3705 unsigned flags = 0;
3706 isl_map *result;
3707 int i, j;
3709 if (!map1 || !map2)
3710 goto error;
3712 if ((isl_map_plain_is_empty(map1) ||
3713 isl_map_plain_is_universe(map2)) &&
3714 isl_space_is_equal(map1->dim, map2->dim)) {
3715 isl_map_free(map2);
3716 return map1;
3718 if ((isl_map_plain_is_empty(map2) ||
3719 isl_map_plain_is_universe(map1)) &&
3720 isl_space_is_equal(map1->dim, map2->dim)) {
3721 isl_map_free(map1);
3722 return map2;
3725 if (map1->n == 1 && map2->n == 1 &&
3726 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
3727 isl_space_is_equal(map1->dim, map2->dim) &&
3728 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3729 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3730 return map_intersect_add_constraint(map1, map2);
3732 if (isl_space_dim(map2->dim, isl_dim_all) !=
3733 isl_space_dim(map2->dim, isl_dim_param))
3734 isl_assert(map1->ctx,
3735 isl_space_is_equal(map1->dim, map2->dim), goto error);
3737 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3738 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3739 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3741 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3742 map1->n * map2->n, flags);
3743 if (!result)
3744 goto error;
3745 for (i = 0; i < map1->n; ++i)
3746 for (j = 0; j < map2->n; ++j) {
3747 struct isl_basic_map *part;
3748 part = isl_basic_map_intersect(
3749 isl_basic_map_copy(map1->p[i]),
3750 isl_basic_map_copy(map2->p[j]));
3751 if (isl_basic_map_is_empty(part) < 0)
3752 part = isl_basic_map_free(part);
3753 result = isl_map_add_basic_map(result, part);
3754 if (!result)
3755 goto error;
3757 isl_map_free(map1);
3758 isl_map_free(map2);
3759 return result;
3760 error:
3761 isl_map_free(map1);
3762 isl_map_free(map2);
3763 return NULL;
3766 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3767 __isl_take isl_map *map2)
3769 if (!map1 || !map2)
3770 goto error;
3771 if (!isl_space_is_equal(map1->dim, map2->dim))
3772 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
3773 "spaces don't match", goto error);
3774 return map_intersect_internal(map1, map2);
3775 error:
3776 isl_map_free(map1);
3777 isl_map_free(map2);
3778 return NULL;
3781 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3782 __isl_take isl_map *map2)
3784 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
3787 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
3789 return set_from_map(isl_map_intersect(set_to_map(set1),
3790 set_to_map(set2)));
3793 /* map_intersect_internal accepts intersections
3794 * with parameter domains, so we can just call that function.
3796 static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
3797 __isl_take isl_set *params)
3799 return map_intersect_internal(map, params);
3802 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
3803 __isl_take isl_map *map2)
3805 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
3808 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3809 __isl_take isl_set *params)
3811 return isl_map_intersect_params(set, params);
3814 __isl_give isl_basic_map *isl_basic_map_reverse(__isl_take isl_basic_map *bmap)
3816 isl_space *space;
3817 unsigned pos, n1, n2;
3819 if (!bmap)
3820 return NULL;
3821 bmap = isl_basic_map_cow(bmap);
3822 if (!bmap)
3823 return NULL;
3824 space = isl_space_reverse(isl_space_copy(bmap->dim));
3825 pos = isl_basic_map_offset(bmap, isl_dim_in);
3826 n1 = isl_basic_map_dim(bmap, isl_dim_in);
3827 n2 = isl_basic_map_dim(bmap, isl_dim_out);
3828 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
3829 return isl_basic_map_reset_space(bmap, space);
3832 static __isl_give isl_basic_map *basic_map_space_reset(
3833 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
3835 isl_space *space;
3837 if (!bmap)
3838 return NULL;
3839 if (!isl_space_is_named_or_nested(bmap->dim, type))
3840 return bmap;
3842 space = isl_basic_map_get_space(bmap);
3843 space = isl_space_reset(space, type);
3844 bmap = isl_basic_map_reset_space(bmap, space);
3845 return bmap;
3848 __isl_give isl_basic_map *isl_basic_map_insert_dims(
3849 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3850 unsigned pos, unsigned n)
3852 isl_bool rational;
3853 isl_space *res_dim;
3854 struct isl_basic_map *res;
3855 struct isl_dim_map *dim_map;
3856 unsigned total, off;
3857 enum isl_dim_type t;
3859 if (n == 0)
3860 return basic_map_space_reset(bmap, type);
3862 if (!bmap)
3863 return NULL;
3865 res_dim = isl_space_insert_dims(isl_basic_map_get_space(bmap), type, pos, n);
3867 total = isl_basic_map_total_dim(bmap) + n;
3868 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3869 off = 0;
3870 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3871 if (t != type) {
3872 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3873 } else {
3874 unsigned size = isl_basic_map_dim(bmap, t);
3875 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3876 0, pos, off);
3877 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3878 pos, size - pos, off + pos + n);
3880 off += isl_space_dim(res_dim, t);
3882 isl_dim_map_div(dim_map, bmap, off);
3884 res = isl_basic_map_alloc_space(res_dim,
3885 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3886 rational = isl_basic_map_is_rational(bmap);
3887 if (rational < 0)
3888 res = isl_basic_map_free(res);
3889 if (rational)
3890 res = isl_basic_map_set_rational(res);
3891 if (isl_basic_map_plain_is_empty(bmap)) {
3892 isl_basic_map_free(bmap);
3893 free(dim_map);
3894 return isl_basic_map_set_to_empty(res);
3896 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3897 return isl_basic_map_finalize(res);
3900 __isl_give isl_basic_set *isl_basic_set_insert_dims(
3901 __isl_take isl_basic_set *bset,
3902 enum isl_dim_type type, unsigned pos, unsigned n)
3904 return isl_basic_map_insert_dims(bset, type, pos, n);
3907 __isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
3908 enum isl_dim_type type, unsigned n)
3910 if (!bmap)
3911 return NULL;
3912 return isl_basic_map_insert_dims(bmap, type,
3913 isl_basic_map_dim(bmap, type), n);
3916 __isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
3917 enum isl_dim_type type, unsigned n)
3919 if (!bset)
3920 return NULL;
3921 isl_assert(bset->ctx, type != isl_dim_in, goto error);
3922 return isl_basic_map_add_dims(bset, type, n);
3923 error:
3924 isl_basic_set_free(bset);
3925 return NULL;
3928 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
3929 enum isl_dim_type type)
3931 isl_space *space;
3933 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3934 return map;
3936 space = isl_map_get_space(map);
3937 space = isl_space_reset(space, type);
3938 map = isl_map_reset_space(map, space);
3939 return map;
3942 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3943 enum isl_dim_type type, unsigned pos, unsigned n)
3945 int i;
3947 if (n == 0)
3948 return map_space_reset(map, type);
3950 map = isl_map_cow(map);
3951 if (!map)
3952 return NULL;
3954 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3955 if (!map->dim)
3956 goto error;
3958 for (i = 0; i < map->n; ++i) {
3959 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3960 if (!map->p[i])
3961 goto error;
3964 return map;
3965 error:
3966 isl_map_free(map);
3967 return NULL;
3970 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
3971 enum isl_dim_type type, unsigned pos, unsigned n)
3973 return isl_map_insert_dims(set, type, pos, n);
3976 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
3977 enum isl_dim_type type, unsigned n)
3979 if (!map)
3980 return NULL;
3981 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
3984 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
3985 enum isl_dim_type type, unsigned n)
3987 if (!set)
3988 return NULL;
3989 isl_assert(set->ctx, type != isl_dim_in, goto error);
3990 return set_from_map(isl_map_add_dims(set_to_map(set), type, n));
3991 error:
3992 isl_set_free(set);
3993 return NULL;
3996 __isl_give isl_basic_map *isl_basic_map_move_dims(
3997 __isl_take isl_basic_map *bmap,
3998 enum isl_dim_type dst_type, unsigned dst_pos,
3999 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4001 struct isl_dim_map *dim_map;
4002 struct isl_basic_map *res;
4003 enum isl_dim_type t;
4004 unsigned total, off;
4006 if (!bmap)
4007 return NULL;
4008 if (n == 0) {
4009 bmap = isl_basic_map_reset(bmap, src_type);
4010 bmap = isl_basic_map_reset(bmap, dst_type);
4011 return bmap;
4014 if (isl_basic_map_check_range(bmap, src_type, src_pos, n) < 0)
4015 return isl_basic_map_free(bmap);
4017 if (dst_type == src_type && dst_pos == src_pos)
4018 return bmap;
4020 isl_assert(bmap->ctx, dst_type != src_type, goto error);
4022 if (pos(bmap->dim, dst_type) + dst_pos ==
4023 pos(bmap->dim, src_type) + src_pos +
4024 ((src_type < dst_type) ? n : 0)) {
4025 bmap = isl_basic_map_cow(bmap);
4026 if (!bmap)
4027 return NULL;
4029 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4030 src_type, src_pos, n);
4031 if (!bmap->dim)
4032 goto error;
4034 bmap = isl_basic_map_finalize(bmap);
4036 return bmap;
4039 total = isl_basic_map_total_dim(bmap);
4040 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4042 off = 0;
4043 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4044 unsigned size = isl_space_dim(bmap->dim, t);
4045 if (t == dst_type) {
4046 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4047 0, dst_pos, off);
4048 off += dst_pos;
4049 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
4050 src_pos, n, off);
4051 off += n;
4052 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4053 dst_pos, size - dst_pos, off);
4054 off += size - dst_pos;
4055 } else if (t == src_type) {
4056 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4057 0, src_pos, off);
4058 off += src_pos;
4059 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4060 src_pos + n, size - src_pos - n, off);
4061 off += size - src_pos - n;
4062 } else {
4063 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4064 off += size;
4067 isl_dim_map_div(dim_map, bmap, off);
4069 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4070 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4071 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4072 if (!bmap)
4073 goto error;
4075 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4076 src_type, src_pos, n);
4077 if (!bmap->dim)
4078 goto error;
4080 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
4081 bmap = isl_basic_map_gauss(bmap, NULL);
4082 bmap = isl_basic_map_finalize(bmap);
4084 return bmap;
4085 error:
4086 isl_basic_map_free(bmap);
4087 return NULL;
4090 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
4091 enum isl_dim_type dst_type, unsigned dst_pos,
4092 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4094 isl_basic_map *bmap = bset_to_bmap(bset);
4095 bmap = isl_basic_map_move_dims(bmap, dst_type, dst_pos,
4096 src_type, src_pos, n);
4097 return bset_from_bmap(bmap);
4100 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
4101 enum isl_dim_type dst_type, unsigned dst_pos,
4102 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4104 if (!set)
4105 return NULL;
4106 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
4107 return set_from_map(isl_map_move_dims(set_to_map(set),
4108 dst_type, dst_pos, src_type, src_pos, n));
4109 error:
4110 isl_set_free(set);
4111 return NULL;
4114 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
4115 enum isl_dim_type dst_type, unsigned dst_pos,
4116 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4118 int i;
4120 if (!map)
4121 return NULL;
4122 if (n == 0) {
4123 map = isl_map_reset(map, src_type);
4124 map = isl_map_reset(map, dst_type);
4125 return map;
4128 isl_assert(map->ctx, src_pos + n <= isl_map_dim(map, src_type),
4129 goto error);
4131 if (dst_type == src_type && dst_pos == src_pos)
4132 return map;
4134 isl_assert(map->ctx, dst_type != src_type, goto error);
4136 map = isl_map_cow(map);
4137 if (!map)
4138 return NULL;
4140 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
4141 if (!map->dim)
4142 goto error;
4144 for (i = 0; i < map->n; ++i) {
4145 map->p[i] = isl_basic_map_move_dims(map->p[i],
4146 dst_type, dst_pos,
4147 src_type, src_pos, n);
4148 if (!map->p[i])
4149 goto error;
4152 return map;
4153 error:
4154 isl_map_free(map);
4155 return NULL;
4158 /* Move the specified dimensions to the last columns right before
4159 * the divs. Don't change the dimension specification of bmap.
4160 * That's the responsibility of the caller.
4162 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
4163 enum isl_dim_type type, unsigned first, unsigned n)
4165 struct isl_dim_map *dim_map;
4166 struct isl_basic_map *res;
4167 enum isl_dim_type t;
4168 unsigned total, off;
4170 if (!bmap)
4171 return NULL;
4172 if (pos(bmap->dim, type) + first + n ==
4173 1 + isl_space_dim(bmap->dim, isl_dim_all))
4174 return bmap;
4176 total = isl_basic_map_total_dim(bmap);
4177 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4179 off = 0;
4180 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4181 unsigned size = isl_space_dim(bmap->dim, t);
4182 if (t == type) {
4183 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4184 0, first, off);
4185 off += first;
4186 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4187 first, n, total - bmap->n_div - n);
4188 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4189 first + n, size - (first + n), off);
4190 off += size - (first + n);
4191 } else {
4192 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4193 off += size;
4196 isl_dim_map_div(dim_map, bmap, off + n);
4198 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4199 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4200 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4201 return res;
4204 /* Insert "n" rows in the divs of "bmap".
4206 * The number of columns is not changed, which means that the last
4207 * dimensions of "bmap" are being reintepreted as the new divs.
4208 * The space of "bmap" is not adjusted, however, which means
4209 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
4210 * from the space of "bmap" is the responsibility of the caller.
4212 static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
4213 int n)
4215 int i;
4216 size_t row_size;
4217 isl_int **new_div;
4218 isl_int *old;
4220 bmap = isl_basic_map_cow(bmap);
4221 if (!bmap)
4222 return NULL;
4224 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
4225 old = bmap->block2.data;
4226 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
4227 (bmap->extra + n) * (1 + row_size));
4228 if (!bmap->block2.data)
4229 return isl_basic_map_free(bmap);
4230 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
4231 if (!new_div)
4232 return isl_basic_map_free(bmap);
4233 for (i = 0; i < n; ++i) {
4234 new_div[i] = bmap->block2.data +
4235 (bmap->extra + i) * (1 + row_size);
4236 isl_seq_clr(new_div[i], 1 + row_size);
4238 for (i = 0; i < bmap->extra; ++i)
4239 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
4240 free(bmap->div);
4241 bmap->div = new_div;
4242 bmap->n_div += n;
4243 bmap->extra += n;
4245 return bmap;
4248 /* Drop constraints from "bmap" that only involve the variables
4249 * of "type" in the range [first, first + n] that are not related
4250 * to any of the variables outside that interval.
4251 * These constraints cannot influence the values for the variables
4252 * outside the interval, except in case they cause "bmap" to be empty.
4253 * Only drop the constraints if "bmap" is known to be non-empty.
4255 static __isl_give isl_basic_map *drop_irrelevant_constraints(
4256 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
4257 unsigned first, unsigned n)
4259 int i;
4260 int *groups;
4261 unsigned dim, n_div;
4262 isl_bool non_empty;
4264 non_empty = isl_basic_map_plain_is_non_empty(bmap);
4265 if (non_empty < 0)
4266 return isl_basic_map_free(bmap);
4267 if (!non_empty)
4268 return bmap;
4270 dim = isl_basic_map_dim(bmap, isl_dim_all);
4271 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4272 groups = isl_calloc_array(isl_basic_map_get_ctx(bmap), int, dim);
4273 if (!groups)
4274 return isl_basic_map_free(bmap);
4275 first += isl_basic_map_offset(bmap, type) - 1;
4276 for (i = 0; i < first; ++i)
4277 groups[i] = -1;
4278 for (i = first + n; i < dim - n_div; ++i)
4279 groups[i] = -1;
4281 bmap = isl_basic_map_drop_unrelated_constraints(bmap, groups);
4283 return bmap;
4286 /* Turn the n dimensions of type type, starting at first
4287 * into existentially quantified variables.
4289 * If a subset of the projected out variables are unrelated
4290 * to any of the variables that remain, then the constraints
4291 * involving this subset are simply dropped first.
4293 __isl_give isl_basic_map *isl_basic_map_project_out(
4294 __isl_take isl_basic_map *bmap,
4295 enum isl_dim_type type, unsigned first, unsigned n)
4297 isl_bool empty;
4299 if (n == 0)
4300 return basic_map_space_reset(bmap, type);
4301 if (type == isl_dim_div)
4302 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
4303 "cannot project out existentially quantified variables",
4304 return isl_basic_map_free(bmap));
4306 empty = isl_basic_map_plain_is_empty(bmap);
4307 if (empty < 0)
4308 return isl_basic_map_free(bmap);
4309 if (empty)
4310 bmap = isl_basic_map_set_to_empty(bmap);
4312 bmap = drop_irrelevant_constraints(bmap, type, first, n);
4313 if (!bmap)
4314 return NULL;
4316 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
4317 return isl_basic_map_remove_dims(bmap, type, first, n);
4319 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
4320 return isl_basic_map_free(bmap);
4322 bmap = move_last(bmap, type, first, n);
4323 bmap = isl_basic_map_cow(bmap);
4324 bmap = insert_div_rows(bmap, n);
4325 if (!bmap)
4326 return NULL;
4328 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
4329 if (!bmap->dim)
4330 goto error;
4331 bmap = isl_basic_map_simplify(bmap);
4332 bmap = isl_basic_map_drop_redundant_divs(bmap);
4333 return isl_basic_map_finalize(bmap);
4334 error:
4335 isl_basic_map_free(bmap);
4336 return NULL;
4339 /* Turn the n dimensions of type type, starting at first
4340 * into existentially quantified variables.
4342 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
4343 enum isl_dim_type type, unsigned first, unsigned n)
4345 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset),
4346 type, first, n));
4349 /* Turn the n dimensions of type type, starting at first
4350 * into existentially quantified variables.
4352 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
4353 enum isl_dim_type type, unsigned first, unsigned n)
4355 int i;
4357 if (!map)
4358 return NULL;
4360 if (n == 0)
4361 return map_space_reset(map, type);
4363 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
4365 map = isl_map_cow(map);
4366 if (!map)
4367 return NULL;
4369 map->dim = isl_space_drop_dims(map->dim, type, first, n);
4370 if (!map->dim)
4371 goto error;
4373 for (i = 0; i < map->n; ++i) {
4374 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
4375 if (!map->p[i])
4376 goto error;
4379 return map;
4380 error:
4381 isl_map_free(map);
4382 return NULL;
4385 /* Turn the n dimensions of type type, starting at first
4386 * into existentially quantified variables.
4388 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
4389 enum isl_dim_type type, unsigned first, unsigned n)
4391 return set_from_map(isl_map_project_out(set_to_map(set),
4392 type, first, n));
4395 /* Return a map that projects the elements in "set" onto their
4396 * "n" set dimensions starting at "first".
4397 * "type" should be equal to isl_dim_set.
4399 __isl_give isl_map *isl_set_project_onto_map(__isl_take isl_set *set,
4400 enum isl_dim_type type, unsigned first, unsigned n)
4402 int i;
4403 int dim;
4404 isl_map *map;
4406 if (!set)
4407 return NULL;
4408 if (type != isl_dim_set)
4409 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4410 "only set dimensions can be projected out", goto error);
4411 dim = isl_set_dim(set, isl_dim_set);
4412 if (first + n > dim || first + n < first)
4413 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4414 "index out of bounds", goto error);
4416 map = isl_map_from_domain(set);
4417 map = isl_map_add_dims(map, isl_dim_out, n);
4418 for (i = 0; i < n; ++i)
4419 map = isl_map_equate(map, isl_dim_in, first + i,
4420 isl_dim_out, i);
4421 return map;
4422 error:
4423 isl_set_free(set);
4424 return NULL;
4427 static struct isl_basic_map *add_divs(struct isl_basic_map *bmap, unsigned n)
4429 int i, j;
4431 for (i = 0; i < n; ++i) {
4432 j = isl_basic_map_alloc_div(bmap);
4433 if (j < 0)
4434 goto error;
4435 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
4437 return bmap;
4438 error:
4439 isl_basic_map_free(bmap);
4440 return NULL;
4443 struct isl_basic_map *isl_basic_map_apply_range(
4444 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4446 isl_space *dim_result = NULL;
4447 struct isl_basic_map *bmap;
4448 unsigned n_in, n_out, n, nparam, total, pos;
4449 struct isl_dim_map *dim_map1, *dim_map2;
4451 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4452 goto error;
4453 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_out,
4454 bmap2->dim, isl_dim_in))
4455 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4456 "spaces don't match", goto error);
4458 dim_result = isl_space_join(isl_space_copy(bmap1->dim),
4459 isl_space_copy(bmap2->dim));
4461 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4462 n_out = isl_basic_map_dim(bmap2, isl_dim_out);
4463 n = isl_basic_map_dim(bmap1, isl_dim_out);
4464 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4466 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
4467 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4468 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
4469 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4470 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
4471 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4472 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
4473 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
4474 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4475 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4476 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4478 bmap = isl_basic_map_alloc_space(dim_result,
4479 bmap1->n_div + bmap2->n_div + n,
4480 bmap1->n_eq + bmap2->n_eq,
4481 bmap1->n_ineq + bmap2->n_ineq);
4482 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4483 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4484 bmap = add_divs(bmap, n);
4485 bmap = isl_basic_map_simplify(bmap);
4486 bmap = isl_basic_map_drop_redundant_divs(bmap);
4487 return isl_basic_map_finalize(bmap);
4488 error:
4489 isl_basic_map_free(bmap1);
4490 isl_basic_map_free(bmap2);
4491 return NULL;
4494 struct isl_basic_set *isl_basic_set_apply(
4495 struct isl_basic_set *bset, struct isl_basic_map *bmap)
4497 if (!bset || !bmap)
4498 goto error;
4500 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
4501 goto error);
4503 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset),
4504 bmap));
4505 error:
4506 isl_basic_set_free(bset);
4507 isl_basic_map_free(bmap);
4508 return NULL;
4511 struct isl_basic_map *isl_basic_map_apply_domain(
4512 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4514 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4515 goto error;
4516 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_in,
4517 bmap2->dim, isl_dim_in))
4518 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4519 "spaces don't match", goto error);
4521 bmap1 = isl_basic_map_reverse(bmap1);
4522 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
4523 return isl_basic_map_reverse(bmap1);
4524 error:
4525 isl_basic_map_free(bmap1);
4526 isl_basic_map_free(bmap2);
4527 return NULL;
4530 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4531 * A \cap B -> f(A) + f(B)
4533 __isl_give isl_basic_map *isl_basic_map_sum(__isl_take isl_basic_map *bmap1,
4534 __isl_take isl_basic_map *bmap2)
4536 unsigned n_in, n_out, nparam, total, pos;
4537 struct isl_basic_map *bmap = NULL;
4538 struct isl_dim_map *dim_map1, *dim_map2;
4539 int i;
4541 if (!bmap1 || !bmap2)
4542 goto error;
4544 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
4545 goto error);
4547 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4548 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4549 n_out = isl_basic_map_dim(bmap1, isl_dim_out);
4551 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
4552 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4553 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
4554 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4555 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
4556 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4557 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4558 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
4559 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4560 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4561 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
4563 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
4564 bmap1->n_div + bmap2->n_div + 2 * n_out,
4565 bmap1->n_eq + bmap2->n_eq + n_out,
4566 bmap1->n_ineq + bmap2->n_ineq);
4567 for (i = 0; i < n_out; ++i) {
4568 int j = isl_basic_map_alloc_equality(bmap);
4569 if (j < 0)
4570 goto error;
4571 isl_seq_clr(bmap->eq[j], 1+total);
4572 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
4573 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
4574 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
4576 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4577 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4578 bmap = add_divs(bmap, 2 * n_out);
4580 bmap = isl_basic_map_simplify(bmap);
4581 return isl_basic_map_finalize(bmap);
4582 error:
4583 isl_basic_map_free(bmap);
4584 isl_basic_map_free(bmap1);
4585 isl_basic_map_free(bmap2);
4586 return NULL;
4589 /* Given two maps A -> f(A) and B -> g(B), construct a map
4590 * A \cap B -> f(A) + f(B)
4592 __isl_give isl_map *isl_map_sum(__isl_take isl_map *map1,
4593 __isl_take isl_map *map2)
4595 struct isl_map *result;
4596 int i, j;
4598 if (!map1 || !map2)
4599 goto error;
4601 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
4603 result = isl_map_alloc_space(isl_space_copy(map1->dim),
4604 map1->n * map2->n, 0);
4605 if (!result)
4606 goto error;
4607 for (i = 0; i < map1->n; ++i)
4608 for (j = 0; j < map2->n; ++j) {
4609 struct isl_basic_map *part;
4610 part = isl_basic_map_sum(
4611 isl_basic_map_copy(map1->p[i]),
4612 isl_basic_map_copy(map2->p[j]));
4613 if (isl_basic_map_is_empty(part))
4614 isl_basic_map_free(part);
4615 else
4616 result = isl_map_add_basic_map(result, part);
4617 if (!result)
4618 goto error;
4620 isl_map_free(map1);
4621 isl_map_free(map2);
4622 return result;
4623 error:
4624 isl_map_free(map1);
4625 isl_map_free(map2);
4626 return NULL;
4629 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
4630 __isl_take isl_set *set2)
4632 return set_from_map(isl_map_sum(set_to_map(set1), set_to_map(set2)));
4635 /* Given a basic map A -> f(A), construct A -> -f(A).
4637 __isl_give isl_basic_map *isl_basic_map_neg(__isl_take isl_basic_map *bmap)
4639 int i, j;
4640 unsigned off, n;
4642 bmap = isl_basic_map_cow(bmap);
4643 if (!bmap)
4644 return NULL;
4646 n = isl_basic_map_dim(bmap, isl_dim_out);
4647 off = isl_basic_map_offset(bmap, isl_dim_out);
4648 for (i = 0; i < bmap->n_eq; ++i)
4649 for (j = 0; j < n; ++j)
4650 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
4651 for (i = 0; i < bmap->n_ineq; ++i)
4652 for (j = 0; j < n; ++j)
4653 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
4654 for (i = 0; i < bmap->n_div; ++i)
4655 for (j = 0; j < n; ++j)
4656 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
4657 bmap = isl_basic_map_gauss(bmap, NULL);
4658 return isl_basic_map_finalize(bmap);
4661 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
4663 return isl_basic_map_neg(bset);
4666 /* Given a map A -> f(A), construct A -> -f(A).
4668 __isl_give isl_map *isl_map_neg(__isl_take isl_map *map)
4670 int i;
4672 map = isl_map_cow(map);
4673 if (!map)
4674 return NULL;
4676 for (i = 0; i < map->n; ++i) {
4677 map->p[i] = isl_basic_map_neg(map->p[i]);
4678 if (!map->p[i])
4679 goto error;
4682 return map;
4683 error:
4684 isl_map_free(map);
4685 return NULL;
4688 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
4690 return set_from_map(isl_map_neg(set_to_map(set)));
4693 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4694 * A -> floor(f(A)/d).
4696 __isl_give isl_basic_map *isl_basic_map_floordiv(__isl_take isl_basic_map *bmap,
4697 isl_int d)
4699 unsigned n_in, n_out, nparam, total, pos;
4700 struct isl_basic_map *result = NULL;
4701 struct isl_dim_map *dim_map;
4702 int i;
4704 if (!bmap)
4705 return NULL;
4707 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4708 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4709 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4711 total = nparam + n_in + n_out + bmap->n_div + n_out;
4712 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4713 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
4714 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
4715 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
4716 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
4718 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
4719 bmap->n_div + n_out,
4720 bmap->n_eq, bmap->n_ineq + 2 * n_out);
4721 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
4722 result = add_divs(result, n_out);
4723 for (i = 0; i < n_out; ++i) {
4724 int j;
4725 j = isl_basic_map_alloc_inequality(result);
4726 if (j < 0)
4727 goto error;
4728 isl_seq_clr(result->ineq[j], 1+total);
4729 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
4730 isl_int_set_si(result->ineq[j][1+pos+i], 1);
4731 j = isl_basic_map_alloc_inequality(result);
4732 if (j < 0)
4733 goto error;
4734 isl_seq_clr(result->ineq[j], 1+total);
4735 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
4736 isl_int_set_si(result->ineq[j][1+pos+i], -1);
4737 isl_int_sub_ui(result->ineq[j][0], d, 1);
4740 result = isl_basic_map_simplify(result);
4741 return isl_basic_map_finalize(result);
4742 error:
4743 isl_basic_map_free(result);
4744 return NULL;
4747 /* Given a map A -> f(A) and an integer d, construct a map
4748 * A -> floor(f(A)/d).
4750 __isl_give isl_map *isl_map_floordiv(__isl_take isl_map *map, isl_int d)
4752 int i;
4754 map = isl_map_cow(map);
4755 if (!map)
4756 return NULL;
4758 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4759 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
4760 for (i = 0; i < map->n; ++i) {
4761 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
4762 if (!map->p[i])
4763 goto error;
4766 return map;
4767 error:
4768 isl_map_free(map);
4769 return NULL;
4772 /* Given a map A -> f(A) and an integer d, construct a map
4773 * A -> floor(f(A)/d).
4775 __isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
4776 __isl_take isl_val *d)
4778 if (!map || !d)
4779 goto error;
4780 if (!isl_val_is_int(d))
4781 isl_die(isl_val_get_ctx(d), isl_error_invalid,
4782 "expecting integer denominator", goto error);
4783 map = isl_map_floordiv(map, d->n);
4784 isl_val_free(d);
4785 return map;
4786 error:
4787 isl_map_free(map);
4788 isl_val_free(d);
4789 return NULL;
4792 static __isl_give isl_basic_map *var_equal(__isl_take isl_basic_map *bmap,
4793 unsigned pos)
4795 int i;
4796 unsigned nparam;
4797 unsigned n_in;
4799 i = isl_basic_map_alloc_equality(bmap);
4800 if (i < 0)
4801 goto error;
4802 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4803 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4804 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
4805 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
4806 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
4807 return isl_basic_map_finalize(bmap);
4808 error:
4809 isl_basic_map_free(bmap);
4810 return NULL;
4813 /* Add a constraint to "bmap" expressing i_pos < o_pos
4815 static __isl_give isl_basic_map *var_less(__isl_take isl_basic_map *bmap,
4816 unsigned pos)
4818 int i;
4819 unsigned nparam;
4820 unsigned n_in;
4822 i = isl_basic_map_alloc_inequality(bmap);
4823 if (i < 0)
4824 goto error;
4825 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4826 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4827 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4828 isl_int_set_si(bmap->ineq[i][0], -1);
4829 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4830 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4831 return isl_basic_map_finalize(bmap);
4832 error:
4833 isl_basic_map_free(bmap);
4834 return NULL;
4837 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4839 static __isl_give isl_basic_map *var_less_or_equal(
4840 __isl_take isl_basic_map *bmap, unsigned pos)
4842 int i;
4843 unsigned nparam;
4844 unsigned n_in;
4846 i = isl_basic_map_alloc_inequality(bmap);
4847 if (i < 0)
4848 goto error;
4849 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4850 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4851 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4852 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4853 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4854 return isl_basic_map_finalize(bmap);
4855 error:
4856 isl_basic_map_free(bmap);
4857 return NULL;
4860 /* Add a constraint to "bmap" expressing i_pos > o_pos
4862 static __isl_give isl_basic_map *var_more(__isl_take isl_basic_map *bmap,
4863 unsigned pos)
4865 int i;
4866 unsigned nparam;
4867 unsigned n_in;
4869 i = isl_basic_map_alloc_inequality(bmap);
4870 if (i < 0)
4871 goto error;
4872 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4873 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4874 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4875 isl_int_set_si(bmap->ineq[i][0], -1);
4876 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4877 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4878 return isl_basic_map_finalize(bmap);
4879 error:
4880 isl_basic_map_free(bmap);
4881 return NULL;
4884 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4886 static __isl_give isl_basic_map *var_more_or_equal(
4887 __isl_take isl_basic_map *bmap, unsigned pos)
4889 int i;
4890 unsigned nparam;
4891 unsigned n_in;
4893 i = isl_basic_map_alloc_inequality(bmap);
4894 if (i < 0)
4895 goto error;
4896 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4897 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4898 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4899 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4900 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4901 return isl_basic_map_finalize(bmap);
4902 error:
4903 isl_basic_map_free(bmap);
4904 return NULL;
4907 __isl_give isl_basic_map *isl_basic_map_equal(
4908 __isl_take isl_space *dim, unsigned n_equal)
4910 int i;
4911 struct isl_basic_map *bmap;
4912 bmap = isl_basic_map_alloc_space(dim, 0, n_equal, 0);
4913 if (!bmap)
4914 return NULL;
4915 for (i = 0; i < n_equal && bmap; ++i)
4916 bmap = var_equal(bmap, i);
4917 return isl_basic_map_finalize(bmap);
4920 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4922 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *dim,
4923 unsigned pos)
4925 int i;
4926 struct isl_basic_map *bmap;
4927 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4928 if (!bmap)
4929 return NULL;
4930 for (i = 0; i < pos && bmap; ++i)
4931 bmap = var_equal(bmap, i);
4932 if (bmap)
4933 bmap = var_less(bmap, pos);
4934 return isl_basic_map_finalize(bmap);
4937 /* Return a relation on "dim" expressing i_[0..pos] <<= o_[0..pos]
4939 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
4940 __isl_take isl_space *dim, unsigned pos)
4942 int i;
4943 isl_basic_map *bmap;
4945 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4946 for (i = 0; i < pos; ++i)
4947 bmap = var_equal(bmap, i);
4948 bmap = var_less_or_equal(bmap, pos);
4949 return isl_basic_map_finalize(bmap);
4952 /* Return a relation on "dim" expressing i_pos > o_pos
4954 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *dim,
4955 unsigned pos)
4957 int i;
4958 struct isl_basic_map *bmap;
4959 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4960 if (!bmap)
4961 return NULL;
4962 for (i = 0; i < pos && bmap; ++i)
4963 bmap = var_equal(bmap, i);
4964 if (bmap)
4965 bmap = var_more(bmap, pos);
4966 return isl_basic_map_finalize(bmap);
4969 /* Return a relation on "dim" expressing i_[0..pos] >>= o_[0..pos]
4971 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
4972 __isl_take isl_space *dim, unsigned pos)
4974 int i;
4975 isl_basic_map *bmap;
4977 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4978 for (i = 0; i < pos; ++i)
4979 bmap = var_equal(bmap, i);
4980 bmap = var_more_or_equal(bmap, pos);
4981 return isl_basic_map_finalize(bmap);
4984 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *dims,
4985 unsigned n, int equal)
4987 struct isl_map *map;
4988 int i;
4990 if (n == 0 && equal)
4991 return isl_map_universe(dims);
4993 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
4995 for (i = 0; i + 1 < n; ++i)
4996 map = isl_map_add_basic_map(map,
4997 isl_basic_map_less_at(isl_space_copy(dims), i));
4998 if (n > 0) {
4999 if (equal)
5000 map = isl_map_add_basic_map(map,
5001 isl_basic_map_less_or_equal_at(dims, n - 1));
5002 else
5003 map = isl_map_add_basic_map(map,
5004 isl_basic_map_less_at(dims, n - 1));
5005 } else
5006 isl_space_free(dims);
5008 return map;
5011 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *dims, int equal)
5013 if (!dims)
5014 return NULL;
5015 return map_lex_lte_first(dims, dims->n_out, equal);
5018 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
5020 return map_lex_lte_first(dim, n, 0);
5023 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
5025 return map_lex_lte_first(dim, n, 1);
5028 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
5030 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
5033 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
5035 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
5038 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *dims,
5039 unsigned n, int equal)
5041 struct isl_map *map;
5042 int i;
5044 if (n == 0 && equal)
5045 return isl_map_universe(dims);
5047 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
5049 for (i = 0; i + 1 < n; ++i)
5050 map = isl_map_add_basic_map(map,
5051 isl_basic_map_more_at(isl_space_copy(dims), i));
5052 if (n > 0) {
5053 if (equal)
5054 map = isl_map_add_basic_map(map,
5055 isl_basic_map_more_or_equal_at(dims, n - 1));
5056 else
5057 map = isl_map_add_basic_map(map,
5058 isl_basic_map_more_at(dims, n - 1));
5059 } else
5060 isl_space_free(dims);
5062 return map;
5065 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *dims, int equal)
5067 if (!dims)
5068 return NULL;
5069 return map_lex_gte_first(dims, dims->n_out, equal);
5072 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
5074 return map_lex_gte_first(dim, n, 0);
5077 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
5079 return map_lex_gte_first(dim, n, 1);
5082 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
5084 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
5087 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
5089 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
5092 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
5093 __isl_take isl_set *set2)
5095 isl_map *map;
5096 map = isl_map_lex_le(isl_set_get_space(set1));
5097 map = isl_map_intersect_domain(map, set1);
5098 map = isl_map_intersect_range(map, set2);
5099 return map;
5102 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
5103 __isl_take isl_set *set2)
5105 isl_map *map;
5106 map = isl_map_lex_lt(isl_set_get_space(set1));
5107 map = isl_map_intersect_domain(map, set1);
5108 map = isl_map_intersect_range(map, set2);
5109 return map;
5112 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
5113 __isl_take isl_set *set2)
5115 isl_map *map;
5116 map = isl_map_lex_ge(isl_set_get_space(set1));
5117 map = isl_map_intersect_domain(map, set1);
5118 map = isl_map_intersect_range(map, set2);
5119 return map;
5122 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
5123 __isl_take isl_set *set2)
5125 isl_map *map;
5126 map = isl_map_lex_gt(isl_set_get_space(set1));
5127 map = isl_map_intersect_domain(map, set1);
5128 map = isl_map_intersect_range(map, set2);
5129 return map;
5132 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
5133 __isl_take isl_map *map2)
5135 isl_map *map;
5136 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
5137 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5138 map = isl_map_apply_range(map, isl_map_reverse(map2));
5139 return map;
5142 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
5143 __isl_take isl_map *map2)
5145 isl_map *map;
5146 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
5147 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5148 map = isl_map_apply_range(map, isl_map_reverse(map2));
5149 return map;
5152 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
5153 __isl_take isl_map *map2)
5155 isl_map *map;
5156 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
5157 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5158 map = isl_map_apply_range(map, isl_map_reverse(map2));
5159 return map;
5162 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
5163 __isl_take isl_map *map2)
5165 isl_map *map;
5166 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
5167 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5168 map = isl_map_apply_range(map, isl_map_reverse(map2));
5169 return map;
5172 /* For a div d = floor(f/m), add the constraint
5174 * f - m d >= 0
5176 static isl_stat add_upper_div_constraint(__isl_keep isl_basic_map *bmap,
5177 unsigned pos, isl_int *div)
5179 int i;
5180 unsigned total = isl_basic_map_total_dim(bmap);
5182 i = isl_basic_map_alloc_inequality(bmap);
5183 if (i < 0)
5184 return isl_stat_error;
5185 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
5186 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
5188 return isl_stat_ok;
5191 /* For a div d = floor(f/m), add the constraint
5193 * -(f-(m-1)) + m d >= 0
5195 static isl_stat add_lower_div_constraint(__isl_keep isl_basic_map *bmap,
5196 unsigned pos, isl_int *div)
5198 int i;
5199 unsigned total = isl_basic_map_total_dim(bmap);
5201 i = isl_basic_map_alloc_inequality(bmap);
5202 if (i < 0)
5203 return isl_stat_error;
5204 isl_seq_neg(bmap->ineq[i], div + 1, 1 + total);
5205 isl_int_set(bmap->ineq[i][1 + pos], div[0]);
5206 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
5207 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
5209 return isl_stat_ok;
5212 /* For a div d = floor(f/m), add the constraints
5214 * f - m d >= 0
5215 * -(f-(m-1)) + m d >= 0
5217 * Note that the second constraint is the negation of
5219 * f - m d >= m
5221 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
5222 unsigned pos, isl_int *div)
5224 if (add_upper_div_constraint(bmap, pos, div) < 0)
5225 return -1;
5226 if (add_lower_div_constraint(bmap, pos, div) < 0)
5227 return -1;
5228 return 0;
5231 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
5232 unsigned pos, isl_int *div)
5234 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset),
5235 pos, div);
5238 int isl_basic_map_add_div_constraints(struct isl_basic_map *bmap, unsigned div)
5240 unsigned total = isl_basic_map_total_dim(bmap);
5241 unsigned div_pos = total - bmap->n_div + div;
5243 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
5244 bmap->div[div]);
5247 /* For each known div d = floor(f/m), add the constraints
5249 * f - m d >= 0
5250 * -(f-(m-1)) + m d >= 0
5252 * Remove duplicate constraints in case of some these div constraints
5253 * already appear in "bmap".
5255 __isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
5256 __isl_take isl_basic_map *bmap)
5258 unsigned n_div;
5260 if (!bmap)
5261 return NULL;
5262 n_div = isl_basic_map_dim(bmap, isl_dim_div);
5263 if (n_div == 0)
5264 return bmap;
5266 bmap = add_known_div_constraints(bmap);
5267 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
5268 bmap = isl_basic_map_finalize(bmap);
5269 return bmap;
5272 /* Add the div constraint of sign "sign" for div "div" of "bmap".
5274 * In particular, if this div is of the form d = floor(f/m),
5275 * then add the constraint
5277 * f - m d >= 0
5279 * if sign < 0 or the constraint
5281 * -(f-(m-1)) + m d >= 0
5283 * if sign > 0.
5285 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map *bmap,
5286 unsigned div, int sign)
5288 unsigned total;
5289 unsigned div_pos;
5291 if (!bmap)
5292 return -1;
5294 total = isl_basic_map_total_dim(bmap);
5295 div_pos = total - bmap->n_div + div;
5297 if (sign < 0)
5298 return add_upper_div_constraint(bmap, div_pos, bmap->div[div]);
5299 else
5300 return add_lower_div_constraint(bmap, div_pos, bmap->div[div]);
5303 __isl_give isl_basic_set *isl_basic_map_underlying_set(
5304 __isl_take isl_basic_map *bmap)
5306 if (!bmap)
5307 goto error;
5308 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
5309 bmap->n_div == 0 &&
5310 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
5311 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
5312 return bset_from_bmap(bmap);
5313 bmap = isl_basic_map_cow(bmap);
5314 if (!bmap)
5315 goto error;
5316 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
5317 if (!bmap->dim)
5318 goto error;
5319 bmap->extra -= bmap->n_div;
5320 bmap->n_div = 0;
5321 bmap = isl_basic_map_finalize(bmap);
5322 return bset_from_bmap(bmap);
5323 error:
5324 isl_basic_map_free(bmap);
5325 return NULL;
5328 __isl_give isl_basic_set *isl_basic_set_underlying_set(
5329 __isl_take isl_basic_set *bset)
5331 return isl_basic_map_underlying_set(bset_to_bmap(bset));
5334 /* Replace each element in "list" by the result of applying
5335 * isl_basic_map_underlying_set to the element.
5337 __isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
5338 __isl_take isl_basic_map_list *list)
5340 int i, n;
5342 if (!list)
5343 return NULL;
5345 n = isl_basic_map_list_n_basic_map(list);
5346 for (i = 0; i < n; ++i) {
5347 isl_basic_map *bmap;
5348 isl_basic_set *bset;
5350 bmap = isl_basic_map_list_get_basic_map(list, i);
5351 bset = isl_basic_set_underlying_set(bmap);
5352 list = isl_basic_set_list_set_basic_set(list, i, bset);
5355 return list;
5358 __isl_give isl_basic_map *isl_basic_map_overlying_set(
5359 __isl_take isl_basic_set *bset, __isl_take isl_basic_map *like)
5361 struct isl_basic_map *bmap;
5362 struct isl_ctx *ctx;
5363 unsigned total;
5364 int i;
5366 if (!bset || !like)
5367 goto error;
5368 ctx = bset->ctx;
5369 isl_assert(ctx, bset->n_div == 0, goto error);
5370 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
5371 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
5372 goto error);
5373 if (like->n_div == 0) {
5374 isl_space *space = isl_basic_map_get_space(like);
5375 isl_basic_map_free(like);
5376 return isl_basic_map_reset_space(bset, space);
5378 bset = isl_basic_set_cow(bset);
5379 if (!bset)
5380 goto error;
5381 total = bset->dim->n_out + bset->extra;
5382 bmap = bset_to_bmap(bset);
5383 isl_space_free(bmap->dim);
5384 bmap->dim = isl_space_copy(like->dim);
5385 if (!bmap->dim)
5386 goto error;
5387 bmap->n_div = like->n_div;
5388 bmap->extra += like->n_div;
5389 if (bmap->extra) {
5390 unsigned ltotal;
5391 isl_int **div;
5392 ltotal = total - bmap->extra + like->extra;
5393 if (ltotal > total)
5394 ltotal = total;
5395 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
5396 bmap->extra * (1 + 1 + total));
5397 if (isl_blk_is_error(bmap->block2))
5398 goto error;
5399 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
5400 if (!div)
5401 goto error;
5402 bmap->div = div;
5403 for (i = 0; i < bmap->extra; ++i)
5404 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
5405 for (i = 0; i < like->n_div; ++i) {
5406 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
5407 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
5409 bmap = isl_basic_map_add_known_div_constraints(bmap);
5411 isl_basic_map_free(like);
5412 bmap = isl_basic_map_simplify(bmap);
5413 bmap = isl_basic_map_finalize(bmap);
5414 return bmap;
5415 error:
5416 isl_basic_map_free(like);
5417 isl_basic_set_free(bset);
5418 return NULL;
5421 struct isl_basic_set *isl_basic_set_from_underlying_set(
5422 struct isl_basic_set *bset, struct isl_basic_set *like)
5424 return bset_from_bmap(isl_basic_map_overlying_set(bset,
5425 bset_to_bmap(like)));
5428 __isl_give isl_set *isl_map_underlying_set(__isl_take isl_map *map)
5430 int i;
5432 map = isl_map_cow(map);
5433 if (!map)
5434 return NULL;
5435 map->dim = isl_space_cow(map->dim);
5436 if (!map->dim)
5437 goto error;
5439 for (i = 1; i < map->n; ++i)
5440 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
5441 goto error);
5442 for (i = 0; i < map->n; ++i) {
5443 map->p[i] = bset_to_bmap(
5444 isl_basic_map_underlying_set(map->p[i]));
5445 if (!map->p[i])
5446 goto error;
5448 if (map->n == 0)
5449 map->dim = isl_space_underlying(map->dim, 0);
5450 else {
5451 isl_space_free(map->dim);
5452 map->dim = isl_space_copy(map->p[0]->dim);
5454 if (!map->dim)
5455 goto error;
5456 return set_from_map(map);
5457 error:
5458 isl_map_free(map);
5459 return NULL;
5462 /* Replace the space of "bmap" by "space".
5464 * If the space of "bmap" is identical to "space" (including the identifiers
5465 * of the input and output dimensions), then simply return the original input.
5467 __isl_give isl_basic_map *isl_basic_map_reset_space(
5468 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
5470 isl_bool equal;
5471 isl_space *bmap_space;
5473 bmap_space = isl_basic_map_peek_space(bmap);
5474 equal = isl_space_is_equal(bmap_space, space);
5475 if (equal >= 0 && equal)
5476 equal = isl_space_has_equal_ids(bmap_space, space);
5477 if (equal < 0)
5478 goto error;
5479 if (equal) {
5480 isl_space_free(space);
5481 return bmap;
5483 bmap = isl_basic_map_cow(bmap);
5484 if (!bmap || !space)
5485 goto error;
5487 isl_space_free(bmap->dim);
5488 bmap->dim = space;
5490 bmap = isl_basic_map_finalize(bmap);
5492 return bmap;
5493 error:
5494 isl_basic_map_free(bmap);
5495 isl_space_free(space);
5496 return NULL;
5499 __isl_give isl_basic_set *isl_basic_set_reset_space(
5500 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
5502 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset),
5503 dim));
5506 /* Check that the total dimensions of "map" and "space" are the same.
5508 static isl_stat check_map_space_equal_total_dim(__isl_keep isl_map *map,
5509 __isl_keep isl_space *space)
5511 unsigned dim1, dim2;
5513 if (!map || !space)
5514 return isl_stat_error;
5515 dim1 = isl_map_dim(map, isl_dim_all);
5516 dim2 = isl_space_dim(space, isl_dim_all);
5517 if (dim1 == dim2)
5518 return isl_stat_ok;
5519 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5520 "total dimensions do not match", return isl_stat_error);
5523 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
5524 __isl_take isl_space *dim)
5526 int i;
5528 map = isl_map_cow(map);
5529 if (!map || !dim)
5530 goto error;
5532 for (i = 0; i < map->n; ++i) {
5533 map->p[i] = isl_basic_map_reset_space(map->p[i],
5534 isl_space_copy(dim));
5535 if (!map->p[i])
5536 goto error;
5538 isl_space_free(map->dim);
5539 map->dim = dim;
5541 return map;
5542 error:
5543 isl_map_free(map);
5544 isl_space_free(dim);
5545 return NULL;
5548 /* Replace the space of "map" by "space", without modifying
5549 * the dimension of "map".
5551 * If the space of "map" is identical to "space" (including the identifiers
5552 * of the input and output dimensions), then simply return the original input.
5554 __isl_give isl_map *isl_map_reset_equal_dim_space(__isl_take isl_map *map,
5555 __isl_take isl_space *space)
5557 isl_bool equal;
5558 isl_space *map_space;
5560 map_space = isl_map_peek_space(map);
5561 equal = isl_space_is_equal(map_space, space);
5562 if (equal >= 0 && equal)
5563 equal = isl_space_has_equal_ids(map_space, space);
5564 if (equal < 0)
5565 goto error;
5566 if (equal) {
5567 isl_space_free(space);
5568 return map;
5570 if (check_map_space_equal_total_dim(map, space) < 0)
5571 goto error;
5572 return isl_map_reset_space(map, space);
5573 error:
5574 isl_map_free(map);
5575 isl_space_free(space);
5576 return NULL;
5579 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
5580 __isl_take isl_space *dim)
5582 return set_from_map(isl_map_reset_space(set_to_map(set), dim));
5585 /* Compute the parameter domain of the given basic set.
5587 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
5589 isl_bool is_params;
5590 isl_space *space;
5591 unsigned n;
5593 is_params = isl_basic_set_is_params(bset);
5594 if (is_params < 0)
5595 return isl_basic_set_free(bset);
5596 if (is_params)
5597 return bset;
5599 n = isl_basic_set_dim(bset, isl_dim_set);
5600 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
5601 space = isl_basic_set_get_space(bset);
5602 space = isl_space_params(space);
5603 bset = isl_basic_set_reset_space(bset, space);
5604 return bset;
5607 /* Construct a zero-dimensional basic set with the given parameter domain.
5609 __isl_give isl_basic_set *isl_basic_set_from_params(
5610 __isl_take isl_basic_set *bset)
5612 isl_space *space;
5613 space = isl_basic_set_get_space(bset);
5614 space = isl_space_set_from_params(space);
5615 bset = isl_basic_set_reset_space(bset, space);
5616 return bset;
5619 /* Compute the parameter domain of the given set.
5621 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
5623 isl_space *space;
5624 unsigned n;
5626 if (isl_set_is_params(set))
5627 return set;
5629 n = isl_set_dim(set, isl_dim_set);
5630 set = isl_set_project_out(set, isl_dim_set, 0, n);
5631 space = isl_set_get_space(set);
5632 space = isl_space_params(space);
5633 set = isl_set_reset_space(set, space);
5634 return set;
5637 /* Construct a zero-dimensional set with the given parameter domain.
5639 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
5641 isl_space *space;
5642 space = isl_set_get_space(set);
5643 space = isl_space_set_from_params(space);
5644 set = isl_set_reset_space(set, space);
5645 return set;
5648 /* Compute the parameter domain of the given map.
5650 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
5652 isl_space *space;
5653 unsigned n;
5655 n = isl_map_dim(map, isl_dim_in);
5656 map = isl_map_project_out(map, isl_dim_in, 0, n);
5657 n = isl_map_dim(map, isl_dim_out);
5658 map = isl_map_project_out(map, isl_dim_out, 0, n);
5659 space = isl_map_get_space(map);
5660 space = isl_space_params(space);
5661 map = isl_map_reset_space(map, space);
5662 return map;
5665 struct isl_basic_set *isl_basic_map_domain(struct isl_basic_map *bmap)
5667 isl_space *space;
5668 unsigned n_out;
5670 if (!bmap)
5671 return NULL;
5672 space = isl_space_domain(isl_basic_map_get_space(bmap));
5674 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5675 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
5677 return isl_basic_map_reset_space(bmap, space);
5680 isl_bool isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
5682 if (!bmap)
5683 return isl_bool_error;
5684 return isl_space_may_be_set(bmap->dim);
5687 /* Is this basic map actually a set?
5688 * Users should never call this function. Outside of isl,
5689 * the type should indicate whether something is a set or a map.
5691 isl_bool isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
5693 if (!bmap)
5694 return isl_bool_error;
5695 return isl_space_is_set(bmap->dim);
5698 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
5700 isl_bool is_set;
5702 is_set = isl_basic_map_is_set(bmap);
5703 if (is_set < 0)
5704 goto error;
5705 if (is_set)
5706 return bmap;
5707 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
5708 error:
5709 isl_basic_map_free(bmap);
5710 return NULL;
5713 __isl_give isl_basic_map *isl_basic_map_domain_map(
5714 __isl_take isl_basic_map *bmap)
5716 int i;
5717 isl_space *dim;
5718 isl_basic_map *domain;
5719 int nparam, n_in, n_out;
5721 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5722 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5723 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5725 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
5726 domain = isl_basic_map_universe(dim);
5728 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5729 bmap = isl_basic_map_apply_range(bmap, domain);
5730 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
5732 for (i = 0; i < n_in; ++i)
5733 bmap = isl_basic_map_equate(bmap, isl_dim_in, i,
5734 isl_dim_out, i);
5736 bmap = isl_basic_map_gauss(bmap, NULL);
5737 return isl_basic_map_finalize(bmap);
5740 __isl_give isl_basic_map *isl_basic_map_range_map(
5741 __isl_take isl_basic_map *bmap)
5743 int i;
5744 isl_space *dim;
5745 isl_basic_map *range;
5746 int nparam, n_in, n_out;
5748 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5749 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5750 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5752 dim = isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap)));
5753 range = isl_basic_map_universe(dim);
5755 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5756 bmap = isl_basic_map_apply_range(bmap, range);
5757 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
5759 for (i = 0; i < n_out; ++i)
5760 bmap = isl_basic_map_equate(bmap, isl_dim_in, n_in + i,
5761 isl_dim_out, i);
5763 bmap = isl_basic_map_gauss(bmap, NULL);
5764 return isl_basic_map_finalize(bmap);
5767 int isl_map_may_be_set(__isl_keep isl_map *map)
5769 if (!map)
5770 return -1;
5771 return isl_space_may_be_set(map->dim);
5774 /* Is this map actually a set?
5775 * Users should never call this function. Outside of isl,
5776 * the type should indicate whether something is a set or a map.
5778 isl_bool isl_map_is_set(__isl_keep isl_map *map)
5780 if (!map)
5781 return isl_bool_error;
5782 return isl_space_is_set(map->dim);
5785 __isl_give isl_set *isl_map_range(__isl_take isl_map *map)
5787 int i;
5788 isl_bool is_set;
5789 struct isl_set *set;
5791 is_set = isl_map_is_set(map);
5792 if (is_set < 0)
5793 goto error;
5794 if (is_set)
5795 return set_from_map(map);
5797 map = isl_map_cow(map);
5798 if (!map)
5799 goto error;
5801 set = set_from_map(map);
5802 set->dim = isl_space_range(set->dim);
5803 if (!set->dim)
5804 goto error;
5805 for (i = 0; i < map->n; ++i) {
5806 set->p[i] = isl_basic_map_range(map->p[i]);
5807 if (!set->p[i])
5808 goto error;
5810 ISL_F_CLR(set, ISL_MAP_DISJOINT);
5811 ISL_F_CLR(set, ISL_SET_NORMALIZED);
5812 return set;
5813 error:
5814 isl_map_free(map);
5815 return NULL;
5818 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
5820 int i;
5822 map = isl_map_cow(map);
5823 if (!map)
5824 return NULL;
5826 map->dim = isl_space_domain_map(map->dim);
5827 if (!map->dim)
5828 goto error;
5829 for (i = 0; i < map->n; ++i) {
5830 map->p[i] = isl_basic_map_domain_map(map->p[i]);
5831 if (!map->p[i])
5832 goto error;
5834 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5835 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5836 return map;
5837 error:
5838 isl_map_free(map);
5839 return NULL;
5842 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
5844 int i;
5845 isl_space *range_dim;
5847 map = isl_map_cow(map);
5848 if (!map)
5849 return NULL;
5851 range_dim = isl_space_range(isl_map_get_space(map));
5852 range_dim = isl_space_from_range(range_dim);
5853 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
5854 map->dim = isl_space_join(map->dim, range_dim);
5855 if (!map->dim)
5856 goto error;
5857 for (i = 0; i < map->n; ++i) {
5858 map->p[i] = isl_basic_map_range_map(map->p[i]);
5859 if (!map->p[i])
5860 goto error;
5862 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5863 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5864 return map;
5865 error:
5866 isl_map_free(map);
5867 return NULL;
5870 /* Given a wrapped map of the form A[B -> C],
5871 * return the map A[B -> C] -> B.
5873 __isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
5875 isl_id *id;
5876 isl_map *map;
5878 if (!set)
5879 return NULL;
5880 if (!isl_set_has_tuple_id(set))
5881 return isl_map_domain_map(isl_set_unwrap(set));
5883 id = isl_set_get_tuple_id(set);
5884 map = isl_map_domain_map(isl_set_unwrap(set));
5885 map = isl_map_set_tuple_id(map, isl_dim_in, id);
5887 return map;
5890 __isl_give isl_basic_map *isl_basic_map_from_domain(
5891 __isl_take isl_basic_set *bset)
5893 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
5896 __isl_give isl_basic_map *isl_basic_map_from_range(
5897 __isl_take isl_basic_set *bset)
5899 isl_space *space;
5900 space = isl_basic_set_get_space(bset);
5901 space = isl_space_from_range(space);
5902 bset = isl_basic_set_reset_space(bset, space);
5903 return bset_to_bmap(bset);
5906 /* Create a relation with the given set as range.
5907 * The domain of the created relation is a zero-dimensional
5908 * flat anonymous space.
5910 __isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
5912 isl_space *space;
5913 space = isl_set_get_space(set);
5914 space = isl_space_from_range(space);
5915 set = isl_set_reset_space(set, space);
5916 return set_to_map(set);
5919 /* Create a relation with the given set as domain.
5920 * The range of the created relation is a zero-dimensional
5921 * flat anonymous space.
5923 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
5925 return isl_map_reverse(isl_map_from_range(set));
5928 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
5929 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
5931 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
5934 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
5935 __isl_take isl_set *range)
5937 return isl_map_apply_range(isl_map_reverse(domain), range);
5940 /* Return a newly allocated isl_map with given space and flags and
5941 * room for "n" basic maps.
5942 * Make sure that all cached information is cleared.
5944 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *space, int n,
5945 unsigned flags)
5947 struct isl_map *map;
5949 if (!space)
5950 return NULL;
5951 if (n < 0)
5952 isl_die(space->ctx, isl_error_internal,
5953 "negative number of basic maps", goto error);
5954 map = isl_calloc(space->ctx, struct isl_map,
5955 sizeof(struct isl_map) +
5956 (n - 1) * sizeof(struct isl_basic_map *));
5957 if (!map)
5958 goto error;
5960 map->ctx = space->ctx;
5961 isl_ctx_ref(map->ctx);
5962 map->ref = 1;
5963 map->size = n;
5964 map->n = 0;
5965 map->dim = space;
5966 map->flags = flags;
5967 return map;
5968 error:
5969 isl_space_free(space);
5970 return NULL;
5973 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *space)
5975 struct isl_basic_map *bmap;
5976 bmap = isl_basic_map_alloc_space(space, 0, 1, 0);
5977 bmap = isl_basic_map_set_to_empty(bmap);
5978 return bmap;
5981 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *space)
5983 struct isl_basic_set *bset;
5984 bset = isl_basic_set_alloc_space(space, 0, 1, 0);
5985 bset = isl_basic_set_set_to_empty(bset);
5986 return bset;
5989 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *space)
5991 struct isl_basic_map *bmap;
5992 bmap = isl_basic_map_alloc_space(space, 0, 0, 0);
5993 bmap = isl_basic_map_finalize(bmap);
5994 return bmap;
5997 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *space)
5999 struct isl_basic_set *bset;
6000 bset = isl_basic_set_alloc_space(space, 0, 0, 0);
6001 bset = isl_basic_set_finalize(bset);
6002 return bset;
6005 __isl_give isl_basic_map *isl_basic_map_nat_universe(__isl_take isl_space *dim)
6007 int i;
6008 unsigned total = isl_space_dim(dim, isl_dim_all);
6009 isl_basic_map *bmap;
6011 bmap= isl_basic_map_alloc_space(dim, 0, 0, total);
6012 for (i = 0; i < total; ++i) {
6013 int k = isl_basic_map_alloc_inequality(bmap);
6014 if (k < 0)
6015 goto error;
6016 isl_seq_clr(bmap->ineq[k], 1 + total);
6017 isl_int_set_si(bmap->ineq[k][1 + i], 1);
6019 return bmap;
6020 error:
6021 isl_basic_map_free(bmap);
6022 return NULL;
6025 __isl_give isl_basic_set *isl_basic_set_nat_universe(__isl_take isl_space *dim)
6027 return isl_basic_map_nat_universe(dim);
6030 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
6032 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
6035 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
6037 return isl_map_nat_universe(dim);
6040 __isl_give isl_map *isl_map_empty(__isl_take isl_space *space)
6042 return isl_map_alloc_space(space, 0, ISL_MAP_DISJOINT);
6045 __isl_give isl_set *isl_set_empty(__isl_take isl_space *space)
6047 return isl_set_alloc_space(space, 0, ISL_MAP_DISJOINT);
6050 __isl_give isl_map *isl_map_universe(__isl_take isl_space *space)
6052 struct isl_map *map;
6053 if (!space)
6054 return NULL;
6055 map = isl_map_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6056 map = isl_map_add_basic_map(map, isl_basic_map_universe(space));
6057 return map;
6060 __isl_give isl_set *isl_set_universe(__isl_take isl_space *space)
6062 struct isl_set *set;
6063 if (!space)
6064 return NULL;
6065 set = isl_set_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6066 set = isl_set_add_basic_set(set, isl_basic_set_universe(space));
6067 return set;
6070 struct isl_map *isl_map_dup(struct isl_map *map)
6072 int i;
6073 struct isl_map *dup;
6075 if (!map)
6076 return NULL;
6077 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
6078 for (i = 0; i < map->n; ++i)
6079 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
6080 return dup;
6083 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
6084 __isl_take isl_basic_map *bmap)
6086 if (!bmap || !map)
6087 goto error;
6088 if (isl_basic_map_plain_is_empty(bmap)) {
6089 isl_basic_map_free(bmap);
6090 return map;
6092 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
6093 isl_assert(map->ctx, map->n < map->size, goto error);
6094 map->p[map->n] = bmap;
6095 map->n++;
6096 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6097 return map;
6098 error:
6099 if (map)
6100 isl_map_free(map);
6101 if (bmap)
6102 isl_basic_map_free(bmap);
6103 return NULL;
6106 __isl_null isl_map *isl_map_free(__isl_take isl_map *map)
6108 int i;
6110 if (!map)
6111 return NULL;
6113 if (--map->ref > 0)
6114 return NULL;
6116 clear_caches(map);
6117 isl_ctx_deref(map->ctx);
6118 for (i = 0; i < map->n; ++i)
6119 isl_basic_map_free(map->p[i]);
6120 isl_space_free(map->dim);
6121 free(map);
6123 return NULL;
6126 static struct isl_basic_map *isl_basic_map_fix_pos_si(
6127 struct isl_basic_map *bmap, unsigned pos, int value)
6129 int j;
6131 bmap = isl_basic_map_cow(bmap);
6132 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6133 j = isl_basic_map_alloc_equality(bmap);
6134 if (j < 0)
6135 goto error;
6136 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6137 isl_int_set_si(bmap->eq[j][pos], -1);
6138 isl_int_set_si(bmap->eq[j][0], value);
6139 bmap = isl_basic_map_simplify(bmap);
6140 return isl_basic_map_finalize(bmap);
6141 error:
6142 isl_basic_map_free(bmap);
6143 return NULL;
6146 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
6147 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
6149 int j;
6151 bmap = isl_basic_map_cow(bmap);
6152 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6153 j = isl_basic_map_alloc_equality(bmap);
6154 if (j < 0)
6155 goto error;
6156 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6157 isl_int_set_si(bmap->eq[j][pos], -1);
6158 isl_int_set(bmap->eq[j][0], value);
6159 bmap = isl_basic_map_simplify(bmap);
6160 return isl_basic_map_finalize(bmap);
6161 error:
6162 isl_basic_map_free(bmap);
6163 return NULL;
6166 __isl_give isl_basic_map *isl_basic_map_fix_si(__isl_take isl_basic_map *bmap,
6167 enum isl_dim_type type, unsigned pos, int value)
6169 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6170 return isl_basic_map_free(bmap);
6171 return isl_basic_map_fix_pos_si(bmap,
6172 isl_basic_map_offset(bmap, type) + pos, value);
6175 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
6176 enum isl_dim_type type, unsigned pos, isl_int value)
6178 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6179 return isl_basic_map_free(bmap);
6180 return isl_basic_map_fix_pos(bmap,
6181 isl_basic_map_offset(bmap, type) + pos, value);
6184 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
6185 * to be equal to "v".
6187 __isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
6188 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6190 if (!bmap || !v)
6191 goto error;
6192 if (!isl_val_is_int(v))
6193 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
6194 "expecting integer value", goto error);
6195 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6196 goto error;
6197 pos += isl_basic_map_offset(bmap, type);
6198 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
6199 isl_val_free(v);
6200 return bmap;
6201 error:
6202 isl_basic_map_free(bmap);
6203 isl_val_free(v);
6204 return NULL;
6207 /* Fix the value of the variable at position "pos" of type "type" of "bset"
6208 * to be equal to "v".
6210 __isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
6211 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6213 return isl_basic_map_fix_val(bset, type, pos, v);
6216 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
6217 enum isl_dim_type type, unsigned pos, int value)
6219 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6220 type, pos, value));
6223 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
6224 enum isl_dim_type type, unsigned pos, isl_int value)
6226 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset),
6227 type, pos, value));
6230 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
6231 unsigned input, int value)
6233 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
6236 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
6237 unsigned dim, int value)
6239 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6240 isl_dim_set, dim, value));
6243 static int remove_if_empty(__isl_keep isl_map *map, int i)
6245 int empty = isl_basic_map_plain_is_empty(map->p[i]);
6247 if (empty < 0)
6248 return -1;
6249 if (!empty)
6250 return 0;
6252 isl_basic_map_free(map->p[i]);
6253 if (i != map->n - 1) {
6254 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6255 map->p[i] = map->p[map->n - 1];
6257 map->n--;
6259 return 0;
6262 /* Perform "fn" on each basic map of "map", where we may not be holding
6263 * the only reference to "map".
6264 * In particular, "fn" should be a semantics preserving operation
6265 * that we want to apply to all copies of "map". We therefore need
6266 * to be careful not to modify "map" in a way that breaks "map"
6267 * in case anything goes wrong.
6269 __isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
6270 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
6272 struct isl_basic_map *bmap;
6273 int i;
6275 if (!map)
6276 return NULL;
6278 for (i = map->n - 1; i >= 0; --i) {
6279 bmap = isl_basic_map_copy(map->p[i]);
6280 bmap = fn(bmap);
6281 if (!bmap)
6282 goto error;
6283 isl_basic_map_free(map->p[i]);
6284 map->p[i] = bmap;
6285 if (remove_if_empty(map, i) < 0)
6286 goto error;
6289 return map;
6290 error:
6291 isl_map_free(map);
6292 return NULL;
6295 __isl_give isl_map *isl_map_fix_si(__isl_take isl_map *map,
6296 enum isl_dim_type type, unsigned pos, int value)
6298 int i;
6300 map = isl_map_cow(map);
6301 if (!map)
6302 return NULL;
6304 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6305 for (i = map->n - 1; i >= 0; --i) {
6306 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
6307 if (remove_if_empty(map, i) < 0)
6308 goto error;
6310 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6311 return map;
6312 error:
6313 isl_map_free(map);
6314 return NULL;
6317 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
6318 enum isl_dim_type type, unsigned pos, int value)
6320 return set_from_map(isl_map_fix_si(set_to_map(set), type, pos, value));
6323 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
6324 enum isl_dim_type type, unsigned pos, isl_int value)
6326 int i;
6328 map = isl_map_cow(map);
6329 if (!map)
6330 return NULL;
6332 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6333 for (i = 0; i < map->n; ++i) {
6334 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
6335 if (!map->p[i])
6336 goto error;
6338 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6339 return map;
6340 error:
6341 isl_map_free(map);
6342 return NULL;
6345 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
6346 enum isl_dim_type type, unsigned pos, isl_int value)
6348 return set_from_map(isl_map_fix(set_to_map(set), type, pos, value));
6351 /* Fix the value of the variable at position "pos" of type "type" of "map"
6352 * to be equal to "v".
6354 __isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
6355 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6357 int i;
6359 map = isl_map_cow(map);
6360 if (!map || !v)
6361 goto error;
6363 if (!isl_val_is_int(v))
6364 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6365 "expecting integer value", goto error);
6366 if (pos >= isl_map_dim(map, type))
6367 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6368 "index out of bounds", goto error);
6369 for (i = map->n - 1; i >= 0; --i) {
6370 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
6371 isl_val_copy(v));
6372 if (remove_if_empty(map, i) < 0)
6373 goto error;
6375 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6376 isl_val_free(v);
6377 return map;
6378 error:
6379 isl_map_free(map);
6380 isl_val_free(v);
6381 return NULL;
6384 /* Fix the value of the variable at position "pos" of type "type" of "set"
6385 * to be equal to "v".
6387 __isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
6388 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6390 return isl_map_fix_val(set, type, pos, v);
6393 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
6394 unsigned input, int value)
6396 return isl_map_fix_si(map, isl_dim_in, input, value);
6399 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
6401 return set_from_map(isl_map_fix_si(set_to_map(set),
6402 isl_dim_set, dim, value));
6405 static __isl_give isl_basic_map *basic_map_bound_si(
6406 __isl_take isl_basic_map *bmap,
6407 enum isl_dim_type type, unsigned pos, int value, int upper)
6409 int j;
6411 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6412 return isl_basic_map_free(bmap);
6413 pos += isl_basic_map_offset(bmap, type);
6414 bmap = isl_basic_map_cow(bmap);
6415 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6416 j = isl_basic_map_alloc_inequality(bmap);
6417 if (j < 0)
6418 goto error;
6419 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6420 if (upper) {
6421 isl_int_set_si(bmap->ineq[j][pos], -1);
6422 isl_int_set_si(bmap->ineq[j][0], value);
6423 } else {
6424 isl_int_set_si(bmap->ineq[j][pos], 1);
6425 isl_int_set_si(bmap->ineq[j][0], -value);
6427 bmap = isl_basic_map_simplify(bmap);
6428 return isl_basic_map_finalize(bmap);
6429 error:
6430 isl_basic_map_free(bmap);
6431 return NULL;
6434 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
6435 __isl_take isl_basic_map *bmap,
6436 enum isl_dim_type type, unsigned pos, int value)
6438 return basic_map_bound_si(bmap, type, pos, value, 0);
6441 /* Constrain the values of the given dimension to be no greater than "value".
6443 __isl_give isl_basic_map *isl_basic_map_upper_bound_si(
6444 __isl_take isl_basic_map *bmap,
6445 enum isl_dim_type type, unsigned pos, int value)
6447 return basic_map_bound_si(bmap, type, pos, value, 1);
6450 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
6451 enum isl_dim_type type, unsigned pos, int value, int upper)
6453 int i;
6455 map = isl_map_cow(map);
6456 if (!map)
6457 return NULL;
6459 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6460 for (i = 0; i < map->n; ++i) {
6461 map->p[i] = basic_map_bound_si(map->p[i],
6462 type, pos, value, upper);
6463 if (!map->p[i])
6464 goto error;
6466 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6467 return map;
6468 error:
6469 isl_map_free(map);
6470 return NULL;
6473 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
6474 enum isl_dim_type type, unsigned pos, int value)
6476 return map_bound_si(map, type, pos, value, 0);
6479 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
6480 enum isl_dim_type type, unsigned pos, int value)
6482 return map_bound_si(map, type, pos, value, 1);
6485 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
6486 enum isl_dim_type type, unsigned pos, int value)
6488 return set_from_map(isl_map_lower_bound_si(set_to_map(set),
6489 type, pos, value));
6492 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
6493 enum isl_dim_type type, unsigned pos, int value)
6495 return isl_map_upper_bound_si(set, type, pos, value);
6498 /* Bound the given variable of "bmap" from below (or above is "upper"
6499 * is set) to "value".
6501 static __isl_give isl_basic_map *basic_map_bound(
6502 __isl_take isl_basic_map *bmap,
6503 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6505 int j;
6507 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6508 return isl_basic_map_free(bmap);
6509 pos += isl_basic_map_offset(bmap, type);
6510 bmap = isl_basic_map_cow(bmap);
6511 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6512 j = isl_basic_map_alloc_inequality(bmap);
6513 if (j < 0)
6514 goto error;
6515 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6516 if (upper) {
6517 isl_int_set_si(bmap->ineq[j][pos], -1);
6518 isl_int_set(bmap->ineq[j][0], value);
6519 } else {
6520 isl_int_set_si(bmap->ineq[j][pos], 1);
6521 isl_int_neg(bmap->ineq[j][0], value);
6523 bmap = isl_basic_map_simplify(bmap);
6524 return isl_basic_map_finalize(bmap);
6525 error:
6526 isl_basic_map_free(bmap);
6527 return NULL;
6530 /* Bound the given variable of "map" from below (or above is "upper"
6531 * is set) to "value".
6533 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
6534 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6536 int i;
6538 map = isl_map_cow(map);
6539 if (!map)
6540 return NULL;
6542 if (pos >= isl_map_dim(map, type))
6543 isl_die(map->ctx, isl_error_invalid,
6544 "index out of bounds", goto error);
6545 for (i = map->n - 1; i >= 0; --i) {
6546 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
6547 if (remove_if_empty(map, i) < 0)
6548 goto error;
6550 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6551 return map;
6552 error:
6553 isl_map_free(map);
6554 return NULL;
6557 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
6558 enum isl_dim_type type, unsigned pos, isl_int value)
6560 return map_bound(map, type, pos, value, 0);
6563 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
6564 enum isl_dim_type type, unsigned pos, isl_int value)
6566 return map_bound(map, type, pos, value, 1);
6569 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
6570 enum isl_dim_type type, unsigned pos, isl_int value)
6572 return isl_map_lower_bound(set, type, pos, value);
6575 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
6576 enum isl_dim_type type, unsigned pos, isl_int value)
6578 return isl_map_upper_bound(set, type, pos, value);
6581 /* Force the values of the variable at position "pos" of type "type" of "set"
6582 * to be no smaller than "value".
6584 __isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
6585 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6587 if (!value)
6588 goto error;
6589 if (!isl_val_is_int(value))
6590 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6591 "expecting integer value", goto error);
6592 set = isl_set_lower_bound(set, type, pos, value->n);
6593 isl_val_free(value);
6594 return set;
6595 error:
6596 isl_val_free(value);
6597 isl_set_free(set);
6598 return NULL;
6601 /* Force the values of the variable at position "pos" of type "type" of "set"
6602 * to be no greater than "value".
6604 __isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
6605 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6607 if (!value)
6608 goto error;
6609 if (!isl_val_is_int(value))
6610 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6611 "expecting integer value", goto error);
6612 set = isl_set_upper_bound(set, type, pos, value->n);
6613 isl_val_free(value);
6614 return set;
6615 error:
6616 isl_val_free(value);
6617 isl_set_free(set);
6618 return NULL;
6621 /* Bound the given variable of "bset" from below (or above is "upper"
6622 * is set) to "value".
6624 static __isl_give isl_basic_set *isl_basic_set_bound(
6625 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6626 isl_int value, int upper)
6628 return bset_from_bmap(basic_map_bound(bset_to_bmap(bset),
6629 type, pos, value, upper));
6632 /* Bound the given variable of "bset" from below (or above is "upper"
6633 * is set) to "value".
6635 static __isl_give isl_basic_set *isl_basic_set_bound_val(
6636 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6637 __isl_take isl_val *value, int upper)
6639 if (!value)
6640 goto error;
6641 if (!isl_val_is_int(value))
6642 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
6643 "expecting integer value", goto error);
6644 bset = isl_basic_set_bound(bset, type, pos, value->n, upper);
6645 isl_val_free(value);
6646 return bset;
6647 error:
6648 isl_val_free(value);
6649 isl_basic_set_free(bset);
6650 return NULL;
6653 /* Bound the given variable of "bset" from below to "value".
6655 __isl_give isl_basic_set *isl_basic_set_lower_bound_val(
6656 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6657 __isl_take isl_val *value)
6659 return isl_basic_set_bound_val(bset, type, pos, value, 0);
6662 /* Bound the given variable of "bset" from above to "value".
6664 __isl_give isl_basic_set *isl_basic_set_upper_bound_val(
6665 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6666 __isl_take isl_val *value)
6668 return isl_basic_set_bound_val(bset, type, pos, value, 1);
6671 __isl_give isl_map *isl_map_reverse(__isl_take isl_map *map)
6673 int i;
6675 map = isl_map_cow(map);
6676 if (!map)
6677 return NULL;
6679 map->dim = isl_space_reverse(map->dim);
6680 if (!map->dim)
6681 goto error;
6682 for (i = 0; i < map->n; ++i) {
6683 map->p[i] = isl_basic_map_reverse(map->p[i]);
6684 if (!map->p[i])
6685 goto error;
6687 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6688 return map;
6689 error:
6690 isl_map_free(map);
6691 return NULL;
6694 #undef TYPE
6695 #define TYPE isl_pw_multi_aff
6696 #undef SUFFIX
6697 #define SUFFIX _pw_multi_aff
6698 #undef EMPTY
6699 #define EMPTY isl_pw_multi_aff_empty
6700 #undef ADD
6701 #define ADD isl_pw_multi_aff_union_add
6702 #include "isl_map_lexopt_templ.c"
6704 /* Given a map "map", compute the lexicographically minimal
6705 * (or maximal) image element for each domain element in dom,
6706 * in the form of an isl_pw_multi_aff.
6707 * If "empty" is not NULL, then set *empty to those elements in dom that
6708 * do not have an image element.
6709 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6710 * should be computed over the domain of "map". "empty" is also NULL
6711 * in this case.
6713 * We first compute the lexicographically minimal or maximal element
6714 * in the first basic map. This results in a partial solution "res"
6715 * and a subset "todo" of dom that still need to be handled.
6716 * We then consider each of the remaining maps in "map" and successively
6717 * update both "res" and "todo".
6718 * If "empty" is NULL, then the todo sets are not needed and therefore
6719 * also not computed.
6721 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
6722 __isl_take isl_map *map, __isl_take isl_set *dom,
6723 __isl_give isl_set **empty, unsigned flags)
6725 int i;
6726 int full;
6727 isl_pw_multi_aff *res;
6728 isl_set *todo;
6730 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6731 if (!map || (!full && !dom))
6732 goto error;
6734 if (isl_map_plain_is_empty(map)) {
6735 if (empty)
6736 *empty = dom;
6737 else
6738 isl_set_free(dom);
6739 return isl_pw_multi_aff_from_map(map);
6742 res = basic_map_partial_lexopt_pw_multi_aff(
6743 isl_basic_map_copy(map->p[0]),
6744 isl_set_copy(dom), empty, flags);
6746 if (empty)
6747 todo = *empty;
6748 for (i = 1; i < map->n; ++i) {
6749 isl_pw_multi_aff *res_i;
6751 res_i = basic_map_partial_lexopt_pw_multi_aff(
6752 isl_basic_map_copy(map->p[i]),
6753 isl_set_copy(dom), empty, flags);
6755 if (ISL_FL_ISSET(flags, ISL_OPT_MAX))
6756 res = isl_pw_multi_aff_union_lexmax(res, res_i);
6757 else
6758 res = isl_pw_multi_aff_union_lexmin(res, res_i);
6760 if (empty)
6761 todo = isl_set_intersect(todo, *empty);
6764 isl_set_free(dom);
6765 isl_map_free(map);
6767 if (empty)
6768 *empty = todo;
6770 return res;
6771 error:
6772 if (empty)
6773 *empty = NULL;
6774 isl_set_free(dom);
6775 isl_map_free(map);
6776 return NULL;
6779 #undef TYPE
6780 #define TYPE isl_map
6781 #undef SUFFIX
6782 #define SUFFIX
6783 #undef EMPTY
6784 #define EMPTY isl_map_empty
6785 #undef ADD
6786 #define ADD isl_map_union_disjoint
6787 #include "isl_map_lexopt_templ.c"
6789 /* Given a map "map", compute the lexicographically minimal
6790 * (or maximal) image element for each domain element in "dom",
6791 * in the form of an isl_map.
6792 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6793 * do not have an image element.
6794 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6795 * should be computed over the domain of "map". "empty" is also NULL
6796 * in this case.
6798 * If the input consists of more than one disjunct, then first
6799 * compute the desired result in the form of an isl_pw_multi_aff and
6800 * then convert that into an isl_map.
6802 * This function used to have an explicit implementation in terms
6803 * of isl_maps, but it would continually intersect the domains of
6804 * partial results with the complement of the domain of the next
6805 * partial solution, potentially leading to an explosion in the number
6806 * of disjuncts if there are several disjuncts in the input.
6807 * An even earlier implementation of this function would look for
6808 * better results in the domain of the partial result and for extra
6809 * results in the complement of this domain, which would lead to
6810 * even more splintering.
6812 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
6813 __isl_take isl_map *map, __isl_take isl_set *dom,
6814 __isl_give isl_set **empty, unsigned flags)
6816 int full;
6817 struct isl_map *res;
6818 isl_pw_multi_aff *pma;
6820 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6821 if (!map || (!full && !dom))
6822 goto error;
6824 if (isl_map_plain_is_empty(map)) {
6825 if (empty)
6826 *empty = dom;
6827 else
6828 isl_set_free(dom);
6829 return map;
6832 if (map->n == 1) {
6833 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
6834 dom, empty, flags);
6835 isl_map_free(map);
6836 return res;
6839 pma = isl_map_partial_lexopt_aligned_pw_multi_aff(map, dom, empty,
6840 flags);
6841 return isl_map_from_pw_multi_aff(pma);
6842 error:
6843 if (empty)
6844 *empty = NULL;
6845 isl_set_free(dom);
6846 isl_map_free(map);
6847 return NULL;
6850 __isl_give isl_map *isl_map_partial_lexmax(
6851 __isl_take isl_map *map, __isl_take isl_set *dom,
6852 __isl_give isl_set **empty)
6854 return isl_map_partial_lexopt(map, dom, empty, ISL_OPT_MAX);
6857 __isl_give isl_map *isl_map_partial_lexmin(
6858 __isl_take isl_map *map, __isl_take isl_set *dom,
6859 __isl_give isl_set **empty)
6861 return isl_map_partial_lexopt(map, dom, empty, 0);
6864 __isl_give isl_set *isl_set_partial_lexmin(
6865 __isl_take isl_set *set, __isl_take isl_set *dom,
6866 __isl_give isl_set **empty)
6868 return set_from_map(isl_map_partial_lexmin(set_to_map(set),
6869 dom, empty));
6872 __isl_give isl_set *isl_set_partial_lexmax(
6873 __isl_take isl_set *set, __isl_take isl_set *dom,
6874 __isl_give isl_set **empty)
6876 return set_from_map(isl_map_partial_lexmax(set_to_map(set),
6877 dom, empty));
6880 /* Compute the lexicographic minimum (or maximum if "flags" includes
6881 * ISL_OPT_MAX) of "bset" over its parametric domain.
6883 __isl_give isl_set *isl_basic_set_lexopt(__isl_take isl_basic_set *bset,
6884 unsigned flags)
6886 return isl_basic_map_lexopt(bset, flags);
6889 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
6891 return isl_basic_map_lexopt(bmap, ISL_OPT_MAX);
6894 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
6896 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset)));
6899 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
6901 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset)));
6904 /* Compute the lexicographic minimum of "bset" over its parametric domain
6905 * for the purpose of quantifier elimination.
6906 * That is, find an explicit representation for all the existentially
6907 * quantified variables in "bset" by computing their lexicographic
6908 * minimum.
6910 static __isl_give isl_set *isl_basic_set_lexmin_compute_divs(
6911 __isl_take isl_basic_set *bset)
6913 return isl_basic_set_lexopt(bset, ISL_OPT_QE);
6916 /* Given a basic map with one output dimension, compute the minimum or
6917 * maximum of that dimension as an isl_pw_aff.
6919 * Compute the optimum as a lexicographic optimum over the single
6920 * output dimension and extract the single isl_pw_aff from the result.
6922 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
6923 int max)
6925 isl_pw_multi_aff *pma;
6926 isl_pw_aff *pwaff;
6928 bmap = isl_basic_map_copy(bmap);
6929 pma = isl_basic_map_lexopt_pw_multi_aff(bmap, max ? ISL_OPT_MAX : 0);
6930 pwaff = isl_pw_multi_aff_get_pw_aff(pma, 0);
6931 isl_pw_multi_aff_free(pma);
6933 return pwaff;
6936 /* Compute the minimum or maximum of the given output dimension
6937 * as a function of the parameters and the input dimensions,
6938 * but independently of the other output dimensions.
6940 * We first project out the other output dimension and then compute
6941 * the "lexicographic" maximum in each basic map, combining the results
6942 * using isl_pw_aff_union_max.
6944 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
6945 int max)
6947 int i;
6948 isl_pw_aff *pwaff;
6949 unsigned n_out;
6951 n_out = isl_map_dim(map, isl_dim_out);
6952 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
6953 map = isl_map_project_out(map, isl_dim_out, 0, pos);
6954 if (!map)
6955 return NULL;
6957 if (map->n == 0) {
6958 isl_space *dim = isl_map_get_space(map);
6959 isl_map_free(map);
6960 return isl_pw_aff_empty(dim);
6963 pwaff = basic_map_dim_opt(map->p[0], max);
6964 for (i = 1; i < map->n; ++i) {
6965 isl_pw_aff *pwaff_i;
6967 pwaff_i = basic_map_dim_opt(map->p[i], max);
6968 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
6971 isl_map_free(map);
6973 return pwaff;
6976 /* Compute the minimum of the given output dimension as a function of the
6977 * parameters and input dimensions, but independently of
6978 * the other output dimensions.
6980 __isl_give isl_pw_aff *isl_map_dim_min(__isl_take isl_map *map, int pos)
6982 return map_dim_opt(map, pos, 0);
6985 /* Compute the maximum of the given output dimension as a function of the
6986 * parameters and input dimensions, but independently of
6987 * the other output dimensions.
6989 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
6991 return map_dim_opt(map, pos, 1);
6994 /* Compute the minimum or maximum of the given set dimension
6995 * as a function of the parameters,
6996 * but independently of the other set dimensions.
6998 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
6999 int max)
7001 return map_dim_opt(set, pos, max);
7004 /* Compute the maximum of the given set dimension as a function of the
7005 * parameters, but independently of the other set dimensions.
7007 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
7009 return set_dim_opt(set, pos, 1);
7012 /* Compute the minimum of the given set dimension as a function of the
7013 * parameters, but independently of the other set dimensions.
7015 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
7017 return set_dim_opt(set, pos, 0);
7020 /* Apply a preimage specified by "mat" on the parameters of "bset".
7021 * bset is assumed to have only parameters and divs.
7023 static __isl_give isl_basic_set *basic_set_parameter_preimage(
7024 __isl_take isl_basic_set *bset, __isl_take isl_mat *mat)
7026 unsigned nparam;
7028 if (!bset || !mat)
7029 goto error;
7031 bset->dim = isl_space_cow(bset->dim);
7032 if (!bset->dim)
7033 goto error;
7035 nparam = isl_basic_set_dim(bset, isl_dim_param);
7037 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
7039 bset->dim->nparam = 0;
7040 bset->dim->n_out = nparam;
7041 bset = isl_basic_set_preimage(bset, mat);
7042 if (bset) {
7043 bset->dim->nparam = bset->dim->n_out;
7044 bset->dim->n_out = 0;
7046 return bset;
7047 error:
7048 isl_mat_free(mat);
7049 isl_basic_set_free(bset);
7050 return NULL;
7053 /* Apply a preimage specified by "mat" on the parameters of "set".
7054 * set is assumed to have only parameters and divs.
7056 static __isl_give isl_set *set_parameter_preimage(__isl_take isl_set *set,
7057 __isl_take isl_mat *mat)
7059 isl_space *space;
7060 unsigned nparam;
7062 if (!set || !mat)
7063 goto error;
7065 nparam = isl_set_dim(set, isl_dim_param);
7067 if (mat->n_row != 1 + nparam)
7068 isl_die(isl_set_get_ctx(set), isl_error_internal,
7069 "unexpected number of rows", goto error);
7071 space = isl_set_get_space(set);
7072 space = isl_space_move_dims(space, isl_dim_set, 0,
7073 isl_dim_param, 0, nparam);
7074 set = isl_set_reset_space(set, space);
7075 set = isl_set_preimage(set, mat);
7076 nparam = isl_set_dim(set, isl_dim_out);
7077 space = isl_set_get_space(set);
7078 space = isl_space_move_dims(space, isl_dim_param, 0,
7079 isl_dim_out, 0, nparam);
7080 set = isl_set_reset_space(set, space);
7081 return set;
7082 error:
7083 isl_mat_free(mat);
7084 isl_set_free(set);
7085 return NULL;
7088 /* Intersect the basic set "bset" with the affine space specified by the
7089 * equalities in "eq".
7091 static __isl_give isl_basic_set *basic_set_append_equalities(
7092 __isl_take isl_basic_set *bset, __isl_take isl_mat *eq)
7094 int i, k;
7095 unsigned len;
7097 if (!bset || !eq)
7098 goto error;
7100 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
7101 eq->n_row, 0);
7102 if (!bset)
7103 goto error;
7105 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
7106 for (i = 0; i < eq->n_row; ++i) {
7107 k = isl_basic_set_alloc_equality(bset);
7108 if (k < 0)
7109 goto error;
7110 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
7111 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
7113 isl_mat_free(eq);
7115 bset = isl_basic_set_gauss(bset, NULL);
7116 bset = isl_basic_set_finalize(bset);
7118 return bset;
7119 error:
7120 isl_mat_free(eq);
7121 isl_basic_set_free(bset);
7122 return NULL;
7125 /* Intersect the set "set" with the affine space specified by the
7126 * equalities in "eq".
7128 static struct isl_set *set_append_equalities(struct isl_set *set,
7129 struct isl_mat *eq)
7131 int i;
7133 if (!set || !eq)
7134 goto error;
7136 for (i = 0; i < set->n; ++i) {
7137 set->p[i] = basic_set_append_equalities(set->p[i],
7138 isl_mat_copy(eq));
7139 if (!set->p[i])
7140 goto error;
7142 isl_mat_free(eq);
7143 return set;
7144 error:
7145 isl_mat_free(eq);
7146 isl_set_free(set);
7147 return NULL;
7150 /* Given a basic set "bset" that only involves parameters and existentially
7151 * quantified variables, return the index of the first equality
7152 * that only involves parameters. If there is no such equality then
7153 * return bset->n_eq.
7155 * This function assumes that isl_basic_set_gauss has been called on "bset".
7157 static int first_parameter_equality(__isl_keep isl_basic_set *bset)
7159 int i, j;
7160 unsigned nparam, n_div;
7162 if (!bset)
7163 return -1;
7165 nparam = isl_basic_set_dim(bset, isl_dim_param);
7166 n_div = isl_basic_set_dim(bset, isl_dim_div);
7168 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
7169 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
7170 ++i;
7173 return i;
7176 /* Compute an explicit representation for the existentially quantified
7177 * variables in "bset" by computing the "minimal value" of the set
7178 * variables. Since there are no set variables, the computation of
7179 * the minimal value essentially computes an explicit representation
7180 * of the non-empty part(s) of "bset".
7182 * The input only involves parameters and existentially quantified variables.
7183 * All equalities among parameters have been removed.
7185 * Since the existentially quantified variables in the result are in general
7186 * going to be different from those in the input, we first replace
7187 * them by the minimal number of variables based on their equalities.
7188 * This should simplify the parametric integer programming.
7190 static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
7192 isl_morph *morph1, *morph2;
7193 isl_set *set;
7194 unsigned n;
7196 if (!bset)
7197 return NULL;
7198 if (bset->n_eq == 0)
7199 return isl_basic_set_lexmin_compute_divs(bset);
7201 morph1 = isl_basic_set_parameter_compression(bset);
7202 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
7203 bset = isl_basic_set_lift(bset);
7204 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
7205 bset = isl_morph_basic_set(morph2, bset);
7206 n = isl_basic_set_dim(bset, isl_dim_set);
7207 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
7209 set = isl_basic_set_lexmin_compute_divs(bset);
7211 set = isl_morph_set(isl_morph_inverse(morph1), set);
7213 return set;
7216 /* Project the given basic set onto its parameter domain, possibly introducing
7217 * new, explicit, existential variables in the constraints.
7218 * The input has parameters and (possibly implicit) existential variables.
7219 * The output has the same parameters, but only
7220 * explicit existentially quantified variables.
7222 * The actual projection is performed by pip, but pip doesn't seem
7223 * to like equalities very much, so we first remove the equalities
7224 * among the parameters by performing a variable compression on
7225 * the parameters. Afterward, an inverse transformation is performed
7226 * and the equalities among the parameters are inserted back in.
7228 * The variable compression on the parameters may uncover additional
7229 * equalities that were only implicit before. We therefore check
7230 * if there are any new parameter equalities in the result and
7231 * if so recurse. The removal of parameter equalities is required
7232 * for the parameter compression performed by base_compute_divs.
7234 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
7236 int i;
7237 struct isl_mat *eq;
7238 struct isl_mat *T, *T2;
7239 struct isl_set *set;
7240 unsigned nparam;
7242 bset = isl_basic_set_cow(bset);
7243 if (!bset)
7244 return NULL;
7246 if (bset->n_eq == 0)
7247 return base_compute_divs(bset);
7249 bset = isl_basic_set_gauss(bset, NULL);
7250 if (!bset)
7251 return NULL;
7252 if (isl_basic_set_plain_is_empty(bset))
7253 return isl_set_from_basic_set(bset);
7255 i = first_parameter_equality(bset);
7256 if (i == bset->n_eq)
7257 return base_compute_divs(bset);
7259 nparam = isl_basic_set_dim(bset, isl_dim_param);
7260 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
7261 0, 1 + nparam);
7262 eq = isl_mat_cow(eq);
7263 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
7264 if (T && T->n_col == 0) {
7265 isl_mat_free(T);
7266 isl_mat_free(T2);
7267 isl_mat_free(eq);
7268 bset = isl_basic_set_set_to_empty(bset);
7269 return isl_set_from_basic_set(bset);
7271 bset = basic_set_parameter_preimage(bset, T);
7273 i = first_parameter_equality(bset);
7274 if (!bset)
7275 set = NULL;
7276 else if (i == bset->n_eq)
7277 set = base_compute_divs(bset);
7278 else
7279 set = parameter_compute_divs(bset);
7280 set = set_parameter_preimage(set, T2);
7281 set = set_append_equalities(set, eq);
7282 return set;
7285 /* Insert the divs from "ls" before those of "bmap".
7287 * The number of columns is not changed, which means that the last
7288 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7289 * The caller is responsible for removing the same number of dimensions
7290 * from the space of "bmap".
7292 static __isl_give isl_basic_map *insert_divs_from_local_space(
7293 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
7295 int i;
7296 int n_div;
7297 int old_n_div;
7299 n_div = isl_local_space_dim(ls, isl_dim_div);
7300 if (n_div == 0)
7301 return bmap;
7303 old_n_div = bmap->n_div;
7304 bmap = insert_div_rows(bmap, n_div);
7305 if (!bmap)
7306 return NULL;
7308 for (i = 0; i < n_div; ++i) {
7309 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
7310 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
7313 return bmap;
7316 /* Replace the space of "bmap" by the space and divs of "ls".
7318 * If "ls" has any divs, then we simplify the result since we may
7319 * have discovered some additional equalities that could simplify
7320 * the div expressions.
7322 static __isl_give isl_basic_map *basic_replace_space_by_local_space(
7323 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
7325 int n_div;
7327 bmap = isl_basic_map_cow(bmap);
7328 if (!bmap || !ls)
7329 goto error;
7331 n_div = isl_local_space_dim(ls, isl_dim_div);
7332 bmap = insert_divs_from_local_space(bmap, ls);
7333 if (!bmap)
7334 goto error;
7336 isl_space_free(bmap->dim);
7337 bmap->dim = isl_local_space_get_space(ls);
7338 if (!bmap->dim)
7339 goto error;
7341 isl_local_space_free(ls);
7342 if (n_div > 0)
7343 bmap = isl_basic_map_simplify(bmap);
7344 bmap = isl_basic_map_finalize(bmap);
7345 return bmap;
7346 error:
7347 isl_basic_map_free(bmap);
7348 isl_local_space_free(ls);
7349 return NULL;
7352 /* Replace the space of "map" by the space and divs of "ls".
7354 static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
7355 __isl_take isl_local_space *ls)
7357 int i;
7359 map = isl_map_cow(map);
7360 if (!map || !ls)
7361 goto error;
7363 for (i = 0; i < map->n; ++i) {
7364 map->p[i] = basic_replace_space_by_local_space(map->p[i],
7365 isl_local_space_copy(ls));
7366 if (!map->p[i])
7367 goto error;
7369 isl_space_free(map->dim);
7370 map->dim = isl_local_space_get_space(ls);
7371 if (!map->dim)
7372 goto error;
7374 isl_local_space_free(ls);
7375 return map;
7376 error:
7377 isl_local_space_free(ls);
7378 isl_map_free(map);
7379 return NULL;
7382 /* Compute an explicit representation for the existentially
7383 * quantified variables for which do not know any explicit representation yet.
7385 * We first sort the existentially quantified variables so that the
7386 * existentially quantified variables for which we already have an explicit
7387 * representation are placed before those for which we do not.
7388 * The input dimensions, the output dimensions and the existentially
7389 * quantified variables for which we already have an explicit
7390 * representation are then turned into parameters.
7391 * compute_divs returns a map with the same parameters and
7392 * no input or output dimensions and the dimension specification
7393 * is reset to that of the input, including the existentially quantified
7394 * variables for which we already had an explicit representation.
7396 static struct isl_map *compute_divs(struct isl_basic_map *bmap)
7398 struct isl_basic_set *bset;
7399 struct isl_set *set;
7400 struct isl_map *map;
7401 isl_space *dim;
7402 isl_local_space *ls;
7403 unsigned nparam;
7404 unsigned n_in;
7405 unsigned n_out;
7406 int n_known;
7407 int i;
7409 bmap = isl_basic_map_sort_divs(bmap);
7410 bmap = isl_basic_map_cow(bmap);
7411 if (!bmap)
7412 return NULL;
7414 n_known = isl_basic_map_first_unknown_div(bmap);
7415 if (n_known < 0)
7416 return isl_map_from_basic_map(isl_basic_map_free(bmap));
7418 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7419 n_in = isl_basic_map_dim(bmap, isl_dim_in);
7420 n_out = isl_basic_map_dim(bmap, isl_dim_out);
7421 dim = isl_space_set_alloc(bmap->ctx,
7422 nparam + n_in + n_out + n_known, 0);
7423 if (!dim)
7424 goto error;
7426 ls = isl_basic_map_get_local_space(bmap);
7427 ls = isl_local_space_drop_dims(ls, isl_dim_div,
7428 n_known, bmap->n_div - n_known);
7429 if (n_known > 0) {
7430 for (i = n_known; i < bmap->n_div; ++i)
7431 swap_div(bmap, i - n_known, i);
7432 bmap->n_div -= n_known;
7433 bmap->extra -= n_known;
7435 bmap = isl_basic_map_reset_space(bmap, dim);
7436 bset = bset_from_bmap(bmap);
7438 set = parameter_compute_divs(bset);
7439 map = set_to_map(set);
7440 map = replace_space_by_local_space(map, ls);
7442 return map;
7443 error:
7444 isl_basic_map_free(bmap);
7445 return NULL;
7448 /* Remove the explicit representation of local variable "div",
7449 * if there is any.
7451 __isl_give isl_basic_map *isl_basic_map_mark_div_unknown(
7452 __isl_take isl_basic_map *bmap, int div)
7454 isl_bool unknown;
7456 unknown = isl_basic_map_div_is_marked_unknown(bmap, div);
7457 if (unknown < 0)
7458 return isl_basic_map_free(bmap);
7459 if (unknown)
7460 return bmap;
7462 bmap = isl_basic_map_cow(bmap);
7463 if (!bmap)
7464 return NULL;
7465 isl_int_set_si(bmap->div[div][0], 0);
7466 return bmap;
7469 /* Is local variable "div" of "bmap" marked as not having an explicit
7470 * representation?
7471 * Note that even if "div" is not marked in this way and therefore
7472 * has an explicit representation, this representation may still
7473 * depend (indirectly) on other local variables that do not
7474 * have an explicit representation.
7476 isl_bool isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map *bmap,
7477 int div)
7479 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
7480 return isl_bool_error;
7481 return isl_int_is_zero(bmap->div[div][0]);
7484 /* Return the position of the first local variable that does not
7485 * have an explicit representation.
7486 * Return the total number of local variables if they all have
7487 * an explicit representation.
7488 * Return -1 on error.
7490 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map *bmap)
7492 int i;
7494 if (!bmap)
7495 return -1;
7497 for (i = 0; i < bmap->n_div; ++i) {
7498 if (!isl_basic_map_div_is_known(bmap, i))
7499 return i;
7501 return bmap->n_div;
7504 /* Return the position of the first local variable that does not
7505 * have an explicit representation.
7506 * Return the total number of local variables if they all have
7507 * an explicit representation.
7508 * Return -1 on error.
7510 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set *bset)
7512 return isl_basic_map_first_unknown_div(bset);
7515 /* Does "bmap" have an explicit representation for all local variables?
7517 isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
7519 int first, n;
7521 n = isl_basic_map_dim(bmap, isl_dim_div);
7522 first = isl_basic_map_first_unknown_div(bmap);
7523 if (first < 0)
7524 return isl_bool_error;
7525 return first == n;
7528 /* Do all basic maps in "map" have an explicit representation
7529 * for all local variables?
7531 isl_bool isl_map_divs_known(__isl_keep isl_map *map)
7533 int i;
7535 if (!map)
7536 return isl_bool_error;
7538 for (i = 0; i < map->n; ++i) {
7539 int known = isl_basic_map_divs_known(map->p[i]);
7540 if (known <= 0)
7541 return known;
7544 return isl_bool_true;
7547 /* If bmap contains any unknown divs, then compute explicit
7548 * expressions for them. However, this computation may be
7549 * quite expensive, so first try to remove divs that aren't
7550 * strictly needed.
7552 __isl_give isl_map *isl_basic_map_compute_divs(__isl_take isl_basic_map *bmap)
7554 int known;
7555 struct isl_map *map;
7557 known = isl_basic_map_divs_known(bmap);
7558 if (known < 0)
7559 goto error;
7560 if (known)
7561 return isl_map_from_basic_map(bmap);
7563 bmap = isl_basic_map_drop_redundant_divs(bmap);
7565 known = isl_basic_map_divs_known(bmap);
7566 if (known < 0)
7567 goto error;
7568 if (known)
7569 return isl_map_from_basic_map(bmap);
7571 map = compute_divs(bmap);
7572 return map;
7573 error:
7574 isl_basic_map_free(bmap);
7575 return NULL;
7578 __isl_give isl_map *isl_map_compute_divs(__isl_take isl_map *map)
7580 int i;
7581 int known;
7582 struct isl_map *res;
7584 if (!map)
7585 return NULL;
7586 if (map->n == 0)
7587 return map;
7589 known = isl_map_divs_known(map);
7590 if (known < 0) {
7591 isl_map_free(map);
7592 return NULL;
7594 if (known)
7595 return map;
7597 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
7598 for (i = 1 ; i < map->n; ++i) {
7599 struct isl_map *r2;
7600 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
7601 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
7602 res = isl_map_union_disjoint(res, r2);
7603 else
7604 res = isl_map_union(res, r2);
7606 isl_map_free(map);
7608 return res;
7611 __isl_give isl_set *isl_basic_set_compute_divs(__isl_take isl_basic_set *bset)
7613 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset)));
7616 struct isl_set *isl_set_compute_divs(struct isl_set *set)
7618 return set_from_map(isl_map_compute_divs(set_to_map(set)));
7621 __isl_give isl_set *isl_map_domain(__isl_take isl_map *map)
7623 int i;
7624 struct isl_set *set;
7626 if (!map)
7627 goto error;
7629 map = isl_map_cow(map);
7630 if (!map)
7631 return NULL;
7633 set = set_from_map(map);
7634 set->dim = isl_space_domain(set->dim);
7635 if (!set->dim)
7636 goto error;
7637 for (i = 0; i < map->n; ++i) {
7638 set->p[i] = isl_basic_map_domain(map->p[i]);
7639 if (!set->p[i])
7640 goto error;
7642 ISL_F_CLR(set, ISL_MAP_DISJOINT);
7643 ISL_F_CLR(set, ISL_SET_NORMALIZED);
7644 return set;
7645 error:
7646 isl_map_free(map);
7647 return NULL;
7650 /* Return the union of "map1" and "map2", where we assume for now that
7651 * "map1" and "map2" are disjoint. Note that the basic maps inside
7652 * "map1" or "map2" may not be disjoint from each other.
7653 * Also note that this function is also called from isl_map_union,
7654 * which takes care of handling the situation where "map1" and "map2"
7655 * may not be disjoint.
7657 * If one of the inputs is empty, we can simply return the other input.
7658 * Similarly, if one of the inputs is universal, then it is equal to the union.
7660 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
7661 __isl_take isl_map *map2)
7663 int i;
7664 unsigned flags = 0;
7665 struct isl_map *map = NULL;
7666 int is_universe;
7668 if (!map1 || !map2)
7669 goto error;
7671 if (!isl_space_is_equal(map1->dim, map2->dim))
7672 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
7673 "spaces don't match", goto error);
7675 if (map1->n == 0) {
7676 isl_map_free(map1);
7677 return map2;
7679 if (map2->n == 0) {
7680 isl_map_free(map2);
7681 return map1;
7684 is_universe = isl_map_plain_is_universe(map1);
7685 if (is_universe < 0)
7686 goto error;
7687 if (is_universe) {
7688 isl_map_free(map2);
7689 return map1;
7692 is_universe = isl_map_plain_is_universe(map2);
7693 if (is_universe < 0)
7694 goto error;
7695 if (is_universe) {
7696 isl_map_free(map1);
7697 return map2;
7700 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
7701 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
7702 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7704 map = isl_map_alloc_space(isl_space_copy(map1->dim),
7705 map1->n + map2->n, flags);
7706 if (!map)
7707 goto error;
7708 for (i = 0; i < map1->n; ++i) {
7709 map = isl_map_add_basic_map(map,
7710 isl_basic_map_copy(map1->p[i]));
7711 if (!map)
7712 goto error;
7714 for (i = 0; i < map2->n; ++i) {
7715 map = isl_map_add_basic_map(map,
7716 isl_basic_map_copy(map2->p[i]));
7717 if (!map)
7718 goto error;
7720 isl_map_free(map1);
7721 isl_map_free(map2);
7722 return map;
7723 error:
7724 isl_map_free(map);
7725 isl_map_free(map1);
7726 isl_map_free(map2);
7727 return NULL;
7730 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7731 * guaranteed to be disjoint by the caller.
7733 * Note that this functions is called from within isl_map_make_disjoint,
7734 * so we have to be careful not to touch the constraints of the inputs
7735 * in any way.
7737 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
7738 __isl_take isl_map *map2)
7740 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
7743 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7744 * not be disjoint. The parameters are assumed to have been aligned.
7746 * We currently simply call map_union_disjoint, the internal operation
7747 * of which does not really depend on the inputs being disjoint.
7748 * If the result contains more than one basic map, then we clear
7749 * the disjoint flag since the result may contain basic maps from
7750 * both inputs and these are not guaranteed to be disjoint.
7752 * As a special case, if "map1" and "map2" are obviously equal,
7753 * then we simply return "map1".
7755 static __isl_give isl_map *map_union_aligned(__isl_take isl_map *map1,
7756 __isl_take isl_map *map2)
7758 int equal;
7760 if (!map1 || !map2)
7761 goto error;
7763 equal = isl_map_plain_is_equal(map1, map2);
7764 if (equal < 0)
7765 goto error;
7766 if (equal) {
7767 isl_map_free(map2);
7768 return map1;
7771 map1 = map_union_disjoint(map1, map2);
7772 if (!map1)
7773 return NULL;
7774 if (map1->n > 1)
7775 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
7776 return map1;
7777 error:
7778 isl_map_free(map1);
7779 isl_map_free(map2);
7780 return NULL;
7783 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7784 * not be disjoint.
7786 __isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
7787 __isl_take isl_map *map2)
7789 return isl_map_align_params_map_map_and(map1, map2, &map_union_aligned);
7792 __isl_give isl_set *isl_set_union_disjoint(
7793 __isl_take isl_set *set1, __isl_take isl_set *set2)
7795 return set_from_map(isl_map_union_disjoint(set_to_map(set1),
7796 set_to_map(set2)));
7799 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
7801 return set_from_map(isl_map_union(set_to_map(set1), set_to_map(set2)));
7804 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7805 * the results.
7807 * "map" and "set" are assumed to be compatible and non-NULL.
7809 static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
7810 __isl_take isl_set *set,
7811 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
7812 __isl_take isl_basic_set *bset))
7814 unsigned flags = 0;
7815 struct isl_map *result;
7816 int i, j;
7818 if (isl_set_plain_is_universe(set)) {
7819 isl_set_free(set);
7820 return map;
7823 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
7824 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
7825 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7827 result = isl_map_alloc_space(isl_space_copy(map->dim),
7828 map->n * set->n, flags);
7829 for (i = 0; result && i < map->n; ++i)
7830 for (j = 0; j < set->n; ++j) {
7831 result = isl_map_add_basic_map(result,
7832 fn(isl_basic_map_copy(map->p[i]),
7833 isl_basic_set_copy(set->p[j])));
7834 if (!result)
7835 break;
7838 isl_map_free(map);
7839 isl_set_free(set);
7840 return result;
7843 static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
7844 __isl_take isl_set *set)
7846 isl_bool ok;
7848 ok = isl_map_compatible_range(map, set);
7849 if (ok < 0)
7850 goto error;
7851 if (!ok)
7852 isl_die(set->ctx, isl_error_invalid,
7853 "incompatible spaces", goto error);
7855 return map_intersect_set(map, set, &isl_basic_map_intersect_range);
7856 error:
7857 isl_map_free(map);
7858 isl_set_free(set);
7859 return NULL;
7862 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
7863 __isl_take isl_set *set)
7865 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
7868 static __isl_give isl_map *map_intersect_domain(__isl_take isl_map *map,
7869 __isl_take isl_set *set)
7871 isl_bool ok;
7873 ok = isl_map_compatible_domain(map, set);
7874 if (ok < 0)
7875 goto error;
7876 if (!ok)
7877 isl_die(set->ctx, isl_error_invalid,
7878 "incompatible spaces", goto error);
7880 return map_intersect_set(map, set, &isl_basic_map_intersect_domain);
7881 error:
7882 isl_map_free(map);
7883 isl_set_free(set);
7884 return NULL;
7887 __isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
7888 __isl_take isl_set *set)
7890 return isl_map_align_params_map_map_and(map, set,
7891 &map_intersect_domain);
7894 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7895 * in the space B -> C, return the intersection.
7896 * The parameters are assumed to have been aligned.
7898 * The map "factor" is first extended to a map living in the space
7899 * [A -> B] -> C and then a regular intersection is computed.
7901 static __isl_give isl_map *map_intersect_domain_factor_range(
7902 __isl_take isl_map *map, __isl_take isl_map *factor)
7904 isl_space *space;
7905 isl_map *ext_factor;
7907 space = isl_space_domain_factor_domain(isl_map_get_space(map));
7908 ext_factor = isl_map_universe(space);
7909 ext_factor = isl_map_domain_product(ext_factor, factor);
7910 return map_intersect(map, ext_factor);
7913 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7914 * in the space B -> C, return the intersection.
7916 __isl_give isl_map *isl_map_intersect_domain_factor_range(
7917 __isl_take isl_map *map, __isl_take isl_map *factor)
7919 return isl_map_align_params_map_map_and(map, factor,
7920 &map_intersect_domain_factor_range);
7923 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
7924 * in the space A -> C, return the intersection.
7926 * The map "factor" is first extended to a map living in the space
7927 * A -> [B -> C] and then a regular intersection is computed.
7929 static __isl_give isl_map *map_intersect_range_factor_range(
7930 __isl_take isl_map *map, __isl_take isl_map *factor)
7932 isl_space *space;
7933 isl_map *ext_factor;
7935 space = isl_space_range_factor_domain(isl_map_get_space(map));
7936 ext_factor = isl_map_universe(space);
7937 ext_factor = isl_map_range_product(ext_factor, factor);
7938 return isl_map_intersect(map, ext_factor);
7941 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
7942 * in the space A -> C, return the intersection.
7944 __isl_give isl_map *isl_map_intersect_range_factor_range(
7945 __isl_take isl_map *map, __isl_take isl_map *factor)
7947 return isl_map_align_params_map_map_and(map, factor,
7948 &map_intersect_range_factor_range);
7951 static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
7952 __isl_take isl_map *map2)
7954 if (!map1 || !map2)
7955 goto error;
7956 map1 = isl_map_reverse(map1);
7957 map1 = isl_map_apply_range(map1, map2);
7958 return isl_map_reverse(map1);
7959 error:
7960 isl_map_free(map1);
7961 isl_map_free(map2);
7962 return NULL;
7965 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
7966 __isl_take isl_map *map2)
7968 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
7971 static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
7972 __isl_take isl_map *map2)
7974 isl_space *dim_result;
7975 struct isl_map *result;
7976 int i, j;
7978 if (!map1 || !map2)
7979 goto error;
7981 dim_result = isl_space_join(isl_space_copy(map1->dim),
7982 isl_space_copy(map2->dim));
7984 result = isl_map_alloc_space(dim_result, map1->n * map2->n, 0);
7985 if (!result)
7986 goto error;
7987 for (i = 0; i < map1->n; ++i)
7988 for (j = 0; j < map2->n; ++j) {
7989 result = isl_map_add_basic_map(result,
7990 isl_basic_map_apply_range(
7991 isl_basic_map_copy(map1->p[i]),
7992 isl_basic_map_copy(map2->p[j])));
7993 if (!result)
7994 goto error;
7996 isl_map_free(map1);
7997 isl_map_free(map2);
7998 if (result && result->n <= 1)
7999 ISL_F_SET(result, ISL_MAP_DISJOINT);
8000 return result;
8001 error:
8002 isl_map_free(map1);
8003 isl_map_free(map2);
8004 return NULL;
8007 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
8008 __isl_take isl_map *map2)
8010 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
8014 * returns range - domain
8016 __isl_give isl_basic_set *isl_basic_map_deltas(__isl_take isl_basic_map *bmap)
8018 isl_space *target_space;
8019 struct isl_basic_set *bset;
8020 unsigned dim;
8021 unsigned nparam;
8022 int i;
8024 if (!bmap)
8025 goto error;
8026 isl_assert(bmap->ctx, isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8027 bmap->dim, isl_dim_out),
8028 goto error);
8029 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
8030 dim = isl_basic_map_dim(bmap, isl_dim_in);
8031 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8032 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
8033 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
8034 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
8035 for (i = 0; i < dim; ++i) {
8036 int j = isl_basic_map_alloc_equality(bmap);
8037 if (j < 0) {
8038 bmap = isl_basic_map_free(bmap);
8039 break;
8041 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8042 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8043 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
8044 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
8046 bset = isl_basic_map_domain(bmap);
8047 bset = isl_basic_set_reset_space(bset, target_space);
8048 return bset;
8049 error:
8050 isl_basic_map_free(bmap);
8051 return NULL;
8055 * returns range - domain
8057 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
8059 int i;
8060 isl_space *dim;
8061 struct isl_set *result;
8063 if (!map)
8064 return NULL;
8066 isl_assert(map->ctx, isl_space_tuple_is_equal(map->dim, isl_dim_in,
8067 map->dim, isl_dim_out),
8068 goto error);
8069 dim = isl_map_get_space(map);
8070 dim = isl_space_domain(dim);
8071 result = isl_set_alloc_space(dim, map->n, 0);
8072 if (!result)
8073 goto error;
8074 for (i = 0; i < map->n; ++i)
8075 result = isl_set_add_basic_set(result,
8076 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
8077 isl_map_free(map);
8078 return result;
8079 error:
8080 isl_map_free(map);
8081 return NULL;
8085 * returns [domain -> range] -> range - domain
8087 __isl_give isl_basic_map *isl_basic_map_deltas_map(
8088 __isl_take isl_basic_map *bmap)
8090 int i, k;
8091 isl_space *dim;
8092 isl_basic_map *domain;
8093 int nparam, n;
8094 unsigned total;
8096 if (!isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8097 bmap->dim, isl_dim_out))
8098 isl_die(bmap->ctx, isl_error_invalid,
8099 "domain and range don't match", goto error);
8101 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8102 n = isl_basic_map_dim(bmap, isl_dim_in);
8104 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
8105 domain = isl_basic_map_universe(dim);
8107 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
8108 bmap = isl_basic_map_apply_range(bmap, domain);
8109 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
8111 total = isl_basic_map_total_dim(bmap);
8113 for (i = 0; i < n; ++i) {
8114 k = isl_basic_map_alloc_equality(bmap);
8115 if (k < 0)
8116 goto error;
8117 isl_seq_clr(bmap->eq[k], 1 + total);
8118 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
8119 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
8120 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
8123 bmap = isl_basic_map_gauss(bmap, NULL);
8124 return isl_basic_map_finalize(bmap);
8125 error:
8126 isl_basic_map_free(bmap);
8127 return NULL;
8131 * returns [domain -> range] -> range - domain
8133 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
8135 int i;
8136 isl_space *domain_dim;
8138 if (!map)
8139 return NULL;
8141 if (!isl_space_tuple_is_equal(map->dim, isl_dim_in,
8142 map->dim, isl_dim_out))
8143 isl_die(map->ctx, isl_error_invalid,
8144 "domain and range don't match", goto error);
8146 map = isl_map_cow(map);
8147 if (!map)
8148 return NULL;
8150 domain_dim = isl_space_from_range(isl_space_domain(isl_map_get_space(map)));
8151 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
8152 map->dim = isl_space_join(map->dim, domain_dim);
8153 if (!map->dim)
8154 goto error;
8155 for (i = 0; i < map->n; ++i) {
8156 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
8157 if (!map->p[i])
8158 goto error;
8160 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
8161 return map;
8162 error:
8163 isl_map_free(map);
8164 return NULL;
8167 static __isl_give isl_basic_map *basic_map_identity(__isl_take isl_space *dims)
8169 struct isl_basic_map *bmap;
8170 unsigned nparam;
8171 unsigned dim;
8172 int i;
8174 if (!dims)
8175 return NULL;
8177 nparam = dims->nparam;
8178 dim = dims->n_out;
8179 bmap = isl_basic_map_alloc_space(dims, 0, dim, 0);
8180 if (!bmap)
8181 goto error;
8183 for (i = 0; i < dim; ++i) {
8184 int j = isl_basic_map_alloc_equality(bmap);
8185 if (j < 0)
8186 goto error;
8187 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8188 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8189 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
8191 return isl_basic_map_finalize(bmap);
8192 error:
8193 isl_basic_map_free(bmap);
8194 return NULL;
8197 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *dim)
8199 if (!dim)
8200 return NULL;
8201 if (dim->n_in != dim->n_out)
8202 isl_die(dim->ctx, isl_error_invalid,
8203 "number of input and output dimensions needs to be "
8204 "the same", goto error);
8205 return basic_map_identity(dim);
8206 error:
8207 isl_space_free(dim);
8208 return NULL;
8211 __isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
8213 return isl_map_from_basic_map(isl_basic_map_identity(dim));
8216 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
8218 isl_space *dim = isl_set_get_space(set);
8219 isl_map *id;
8220 id = isl_map_identity(isl_space_map_from_set(dim));
8221 return isl_map_intersect_range(id, set);
8224 /* Construct a basic set with all set dimensions having only non-negative
8225 * values.
8227 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
8228 __isl_take isl_space *space)
8230 int i;
8231 unsigned nparam;
8232 unsigned dim;
8233 struct isl_basic_set *bset;
8235 if (!space)
8236 return NULL;
8237 nparam = space->nparam;
8238 dim = space->n_out;
8239 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
8240 if (!bset)
8241 return NULL;
8242 for (i = 0; i < dim; ++i) {
8243 int k = isl_basic_set_alloc_inequality(bset);
8244 if (k < 0)
8245 goto error;
8246 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
8247 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
8249 return bset;
8250 error:
8251 isl_basic_set_free(bset);
8252 return NULL;
8255 /* Construct the half-space x_pos >= 0.
8257 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *dim,
8258 int pos)
8260 int k;
8261 isl_basic_set *nonneg;
8263 nonneg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8264 k = isl_basic_set_alloc_inequality(nonneg);
8265 if (k < 0)
8266 goto error;
8267 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
8268 isl_int_set_si(nonneg->ineq[k][pos], 1);
8270 return isl_basic_set_finalize(nonneg);
8271 error:
8272 isl_basic_set_free(nonneg);
8273 return NULL;
8276 /* Construct the half-space x_pos <= -1.
8278 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *dim, int pos)
8280 int k;
8281 isl_basic_set *neg;
8283 neg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8284 k = isl_basic_set_alloc_inequality(neg);
8285 if (k < 0)
8286 goto error;
8287 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
8288 isl_int_set_si(neg->ineq[k][0], -1);
8289 isl_int_set_si(neg->ineq[k][pos], -1);
8291 return isl_basic_set_finalize(neg);
8292 error:
8293 isl_basic_set_free(neg);
8294 return NULL;
8297 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
8298 enum isl_dim_type type, unsigned first, unsigned n)
8300 int i;
8301 unsigned offset;
8302 isl_basic_set *nonneg;
8303 isl_basic_set *neg;
8305 if (!set)
8306 return NULL;
8307 if (n == 0)
8308 return set;
8310 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
8312 offset = pos(set->dim, type);
8313 for (i = 0; i < n; ++i) {
8314 nonneg = nonneg_halfspace(isl_set_get_space(set),
8315 offset + first + i);
8316 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
8318 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
8321 return set;
8322 error:
8323 isl_set_free(set);
8324 return NULL;
8327 static isl_stat foreach_orthant(__isl_take isl_set *set, int *signs, int first,
8328 int len,
8329 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8330 void *user)
8332 isl_set *half;
8334 if (!set)
8335 return isl_stat_error;
8336 if (isl_set_plain_is_empty(set)) {
8337 isl_set_free(set);
8338 return isl_stat_ok;
8340 if (first == len)
8341 return fn(set, signs, user);
8343 signs[first] = 1;
8344 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
8345 1 + first));
8346 half = isl_set_intersect(half, isl_set_copy(set));
8347 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
8348 goto error;
8350 signs[first] = -1;
8351 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
8352 1 + first));
8353 half = isl_set_intersect(half, set);
8354 return foreach_orthant(half, signs, first + 1, len, fn, user);
8355 error:
8356 isl_set_free(set);
8357 return isl_stat_error;
8360 /* Call "fn" on the intersections of "set" with each of the orthants
8361 * (except for obviously empty intersections). The orthant is identified
8362 * by the signs array, with each entry having value 1 or -1 according
8363 * to the sign of the corresponding variable.
8365 isl_stat isl_set_foreach_orthant(__isl_keep isl_set *set,
8366 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8367 void *user)
8369 unsigned nparam;
8370 unsigned nvar;
8371 int *signs;
8372 isl_stat r;
8374 if (!set)
8375 return isl_stat_error;
8376 if (isl_set_plain_is_empty(set))
8377 return isl_stat_ok;
8379 nparam = isl_set_dim(set, isl_dim_param);
8380 nvar = isl_set_dim(set, isl_dim_set);
8382 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
8384 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
8385 fn, user);
8387 free(signs);
8389 return r;
8392 isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8394 return isl_map_is_equal(set_to_map(set1), set_to_map(set2));
8397 isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
8398 __isl_keep isl_basic_map *bmap2)
8400 int is_subset;
8401 struct isl_map *map1;
8402 struct isl_map *map2;
8404 if (!bmap1 || !bmap2)
8405 return isl_bool_error;
8407 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
8408 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
8410 is_subset = isl_map_is_subset(map1, map2);
8412 isl_map_free(map1);
8413 isl_map_free(map2);
8415 return is_subset;
8418 isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
8419 __isl_keep isl_basic_set *bset2)
8421 return isl_basic_map_is_subset(bset1, bset2);
8424 isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
8425 __isl_keep isl_basic_map *bmap2)
8427 isl_bool is_subset;
8429 if (!bmap1 || !bmap2)
8430 return isl_bool_error;
8431 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8432 if (is_subset != isl_bool_true)
8433 return is_subset;
8434 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8435 return is_subset;
8438 isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
8439 __isl_keep isl_basic_set *bset2)
8441 return isl_basic_map_is_equal(
8442 bset_to_bmap(bset1), bset_to_bmap(bset2));
8445 isl_bool isl_map_is_empty(__isl_keep isl_map *map)
8447 int i;
8448 int is_empty;
8450 if (!map)
8451 return isl_bool_error;
8452 for (i = 0; i < map->n; ++i) {
8453 is_empty = isl_basic_map_is_empty(map->p[i]);
8454 if (is_empty < 0)
8455 return isl_bool_error;
8456 if (!is_empty)
8457 return isl_bool_false;
8459 return isl_bool_true;
8462 isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
8464 return map ? map->n == 0 : isl_bool_error;
8467 isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
8469 return set ? set->n == 0 : isl_bool_error;
8472 isl_bool isl_set_is_empty(__isl_keep isl_set *set)
8474 return isl_map_is_empty(set_to_map(set));
8477 isl_bool isl_map_has_equal_space(__isl_keep isl_map *map1,
8478 __isl_keep isl_map *map2)
8480 if (!map1 || !map2)
8481 return isl_bool_error;
8483 return isl_space_is_equal(map1->dim, map2->dim);
8486 isl_bool isl_set_has_equal_space(__isl_keep isl_set *set1,
8487 __isl_keep isl_set *set2)
8489 if (!set1 || !set2)
8490 return isl_bool_error;
8492 return isl_space_is_equal(set1->dim, set2->dim);
8495 static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8497 isl_bool is_subset;
8499 if (!map1 || !map2)
8500 return isl_bool_error;
8501 is_subset = isl_map_is_subset(map1, map2);
8502 if (is_subset != isl_bool_true)
8503 return is_subset;
8504 is_subset = isl_map_is_subset(map2, map1);
8505 return is_subset;
8508 /* Is "map1" equal to "map2"?
8510 * First check if they are obviously equal.
8511 * If not, then perform a more detailed analysis.
8513 isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8515 isl_bool equal;
8517 equal = isl_map_plain_is_equal(map1, map2);
8518 if (equal < 0 || equal)
8519 return equal;
8520 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
8523 isl_bool isl_basic_map_is_strict_subset(
8524 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8526 isl_bool is_subset;
8528 if (!bmap1 || !bmap2)
8529 return isl_bool_error;
8530 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8531 if (is_subset != isl_bool_true)
8532 return is_subset;
8533 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8534 if (is_subset == isl_bool_error)
8535 return is_subset;
8536 return !is_subset;
8539 isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
8540 __isl_keep isl_map *map2)
8542 isl_bool is_subset;
8544 if (!map1 || !map2)
8545 return isl_bool_error;
8546 is_subset = isl_map_is_subset(map1, map2);
8547 if (is_subset != isl_bool_true)
8548 return is_subset;
8549 is_subset = isl_map_is_subset(map2, map1);
8550 if (is_subset == isl_bool_error)
8551 return is_subset;
8552 return !is_subset;
8555 isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
8556 __isl_keep isl_set *set2)
8558 return isl_map_is_strict_subset(set_to_map(set1), set_to_map(set2));
8561 /* Is "bmap" obviously equal to the universe with the same space?
8563 * That is, does it not have any constraints?
8565 isl_bool isl_basic_map_plain_is_universe(__isl_keep isl_basic_map *bmap)
8567 if (!bmap)
8568 return isl_bool_error;
8569 return bmap->n_eq == 0 && bmap->n_ineq == 0;
8572 /* Is "bset" obviously equal to the universe with the same space?
8574 isl_bool isl_basic_set_plain_is_universe(__isl_keep isl_basic_set *bset)
8576 return isl_basic_map_plain_is_universe(bset);
8579 /* If "c" does not involve any existentially quantified variables,
8580 * then set *univ to false and abort
8582 static isl_stat involves_divs(__isl_take isl_constraint *c, void *user)
8584 isl_bool *univ = user;
8585 unsigned n;
8587 n = isl_constraint_dim(c, isl_dim_div);
8588 *univ = isl_constraint_involves_dims(c, isl_dim_div, 0, n);
8589 isl_constraint_free(c);
8590 if (*univ < 0 || !*univ)
8591 return isl_stat_error;
8592 return isl_stat_ok;
8595 /* Is "bmap" equal to the universe with the same space?
8597 * First check if it is obviously equal to the universe.
8598 * If not and if there are any constraints not involving
8599 * existentially quantified variables, then it is certainly
8600 * not equal to the universe.
8601 * Otherwise, check if the universe is a subset of "bmap".
8603 isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
8605 isl_bool univ;
8606 isl_basic_map *test;
8608 univ = isl_basic_map_plain_is_universe(bmap);
8609 if (univ < 0 || univ)
8610 return univ;
8611 if (isl_basic_map_dim(bmap, isl_dim_div) == 0)
8612 return isl_bool_false;
8613 univ = isl_bool_true;
8614 if (isl_basic_map_foreach_constraint(bmap, &involves_divs, &univ) < 0 &&
8615 univ)
8616 return isl_bool_error;
8617 if (univ < 0 || !univ)
8618 return univ;
8619 test = isl_basic_map_universe(isl_basic_map_get_space(bmap));
8620 univ = isl_basic_map_is_subset(test, bmap);
8621 isl_basic_map_free(test);
8622 return univ;
8625 /* Is "bset" equal to the universe with the same space?
8627 isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
8629 return isl_basic_map_is_universe(bset);
8632 isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
8634 int i;
8636 if (!map)
8637 return isl_bool_error;
8639 for (i = 0; i < map->n; ++i) {
8640 isl_bool r = isl_basic_map_plain_is_universe(map->p[i]);
8641 if (r < 0 || r)
8642 return r;
8645 return isl_bool_false;
8648 isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
8650 return isl_map_plain_is_universe(set_to_map(set));
8653 isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
8655 struct isl_basic_set *bset = NULL;
8656 struct isl_vec *sample = NULL;
8657 isl_bool empty, non_empty;
8659 if (!bmap)
8660 return isl_bool_error;
8662 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
8663 return isl_bool_true;
8665 if (isl_basic_map_plain_is_universe(bmap))
8666 return isl_bool_false;
8668 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
8669 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
8670 copy = isl_basic_map_remove_redundancies(copy);
8671 empty = isl_basic_map_plain_is_empty(copy);
8672 isl_basic_map_free(copy);
8673 return empty;
8676 non_empty = isl_basic_map_plain_is_non_empty(bmap);
8677 if (non_empty < 0)
8678 return isl_bool_error;
8679 if (non_empty)
8680 return isl_bool_false;
8681 isl_vec_free(bmap->sample);
8682 bmap->sample = NULL;
8683 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
8684 if (!bset)
8685 return isl_bool_error;
8686 sample = isl_basic_set_sample_vec(bset);
8687 if (!sample)
8688 return isl_bool_error;
8689 empty = sample->size == 0;
8690 isl_vec_free(bmap->sample);
8691 bmap->sample = sample;
8692 if (empty)
8693 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
8695 return empty;
8698 isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
8700 if (!bmap)
8701 return isl_bool_error;
8702 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
8705 isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
8707 if (!bset)
8708 return isl_bool_error;
8709 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
8712 /* Is "bmap" known to be non-empty?
8714 * That is, is the cached sample still valid?
8716 isl_bool isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map *bmap)
8718 unsigned total;
8720 if (!bmap)
8721 return isl_bool_error;
8722 if (!bmap->sample)
8723 return isl_bool_false;
8724 total = 1 + isl_basic_map_total_dim(bmap);
8725 if (bmap->sample->size != total)
8726 return isl_bool_false;
8727 return isl_basic_map_contains(bmap, bmap->sample);
8730 isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
8732 return isl_basic_map_is_empty(bset_to_bmap(bset));
8735 __isl_give isl_map *isl_basic_map_union(__isl_take isl_basic_map *bmap1,
8736 __isl_take isl_basic_map *bmap2)
8738 struct isl_map *map;
8739 if (!bmap1 || !bmap2)
8740 goto error;
8742 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
8744 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
8745 if (!map)
8746 goto error;
8747 map = isl_map_add_basic_map(map, bmap1);
8748 map = isl_map_add_basic_map(map, bmap2);
8749 return map;
8750 error:
8751 isl_basic_map_free(bmap1);
8752 isl_basic_map_free(bmap2);
8753 return NULL;
8756 struct isl_set *isl_basic_set_union(
8757 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
8759 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1),
8760 bset_to_bmap(bset2)));
8763 /* Order divs such that any div only depends on previous divs */
8764 __isl_give isl_basic_map *isl_basic_map_order_divs(
8765 __isl_take isl_basic_map *bmap)
8767 int i;
8768 unsigned off;
8770 if (!bmap)
8771 return NULL;
8773 off = isl_space_dim(bmap->dim, isl_dim_all);
8775 for (i = 0; i < bmap->n_div; ++i) {
8776 int pos;
8777 if (isl_int_is_zero(bmap->div[i][0]))
8778 continue;
8779 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
8780 bmap->n_div-i);
8781 if (pos == -1)
8782 continue;
8783 if (pos == 0)
8784 isl_die(isl_basic_map_get_ctx(bmap), isl_error_internal,
8785 "integer division depends on itself",
8786 return isl_basic_map_free(bmap));
8787 isl_basic_map_swap_div(bmap, i, i + pos);
8788 --i;
8790 return bmap;
8793 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
8795 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset)));
8798 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
8800 int i;
8802 if (!map)
8803 return 0;
8805 for (i = 0; i < map->n; ++i) {
8806 map->p[i] = isl_basic_map_order_divs(map->p[i]);
8807 if (!map->p[i])
8808 goto error;
8811 return map;
8812 error:
8813 isl_map_free(map);
8814 return NULL;
8817 /* Sort the local variables of "bset".
8819 __isl_give isl_basic_set *isl_basic_set_sort_divs(
8820 __isl_take isl_basic_set *bset)
8822 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset)));
8825 /* Apply the expansion computed by isl_merge_divs.
8826 * The expansion itself is given by "exp" while the resulting
8827 * list of divs is given by "div".
8829 * Move the integer divisions of "bmap" into the right position
8830 * according to "exp" and then introduce the additional integer
8831 * divisions, adding div constraints.
8832 * The moving should be done first to avoid moving coefficients
8833 * in the definitions of the extra integer divisions.
8835 __isl_give isl_basic_map *isl_basic_map_expand_divs(
8836 __isl_take isl_basic_map *bmap, __isl_take isl_mat *div, int *exp)
8838 int i, j;
8839 int n_div;
8841 bmap = isl_basic_map_cow(bmap);
8842 if (!bmap || !div)
8843 goto error;
8845 if (div->n_row < bmap->n_div)
8846 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
8847 "not an expansion", goto error);
8849 n_div = bmap->n_div;
8850 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
8851 div->n_row - n_div, 0,
8852 2 * (div->n_row - n_div));
8854 for (i = n_div; i < div->n_row; ++i)
8855 if (isl_basic_map_alloc_div(bmap) < 0)
8856 goto error;
8858 for (j = n_div - 1; j >= 0; --j) {
8859 if (exp[j] == j)
8860 break;
8861 isl_basic_map_swap_div(bmap, j, exp[j]);
8863 j = 0;
8864 for (i = 0; i < div->n_row; ++i) {
8865 if (j < n_div && exp[j] == i) {
8866 j++;
8867 } else {
8868 isl_seq_cpy(bmap->div[i], div->row[i], div->n_col);
8869 if (isl_basic_map_div_is_marked_unknown(bmap, i))
8870 continue;
8871 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
8872 goto error;
8876 isl_mat_free(div);
8877 return bmap;
8878 error:
8879 isl_basic_map_free(bmap);
8880 isl_mat_free(div);
8881 return NULL;
8884 /* Apply the expansion computed by isl_merge_divs.
8885 * The expansion itself is given by "exp" while the resulting
8886 * list of divs is given by "div".
8888 __isl_give isl_basic_set *isl_basic_set_expand_divs(
8889 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
8891 return isl_basic_map_expand_divs(bset, div, exp);
8894 /* Look for a div in dst that corresponds to the div "div" in src.
8895 * The divs before "div" in src and dst are assumed to be the same.
8897 * Returns -1 if no corresponding div was found and the position
8898 * of the corresponding div in dst otherwise.
8900 static int find_div(__isl_keep isl_basic_map *dst,
8901 __isl_keep isl_basic_map *src, unsigned div)
8903 int i;
8905 unsigned total = isl_space_dim(src->dim, isl_dim_all);
8907 isl_assert(dst->ctx, div <= dst->n_div, return -1);
8908 for (i = div; i < dst->n_div; ++i)
8909 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
8910 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
8911 dst->n_div - div) == -1)
8912 return i;
8913 return -1;
8916 /* Align the divs of "dst" to those of "src", adding divs from "src"
8917 * if needed. That is, make sure that the first src->n_div divs
8918 * of the result are equal to those of src.
8920 * The result is not finalized as by design it will have redundant
8921 * divs if any divs from "src" were copied.
8923 __isl_give isl_basic_map *isl_basic_map_align_divs(
8924 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
8926 int i;
8927 int known, extended;
8928 unsigned total;
8930 if (!dst || !src)
8931 return isl_basic_map_free(dst);
8933 if (src->n_div == 0)
8934 return dst;
8936 known = isl_basic_map_divs_known(src);
8937 if (known < 0)
8938 return isl_basic_map_free(dst);
8939 if (!known)
8940 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
8941 "some src divs are unknown",
8942 return isl_basic_map_free(dst));
8944 src = isl_basic_map_order_divs(src);
8946 extended = 0;
8947 total = isl_space_dim(src->dim, isl_dim_all);
8948 for (i = 0; i < src->n_div; ++i) {
8949 int j = find_div(dst, src, i);
8950 if (j < 0) {
8951 if (!extended) {
8952 int extra = src->n_div - i;
8953 dst = isl_basic_map_cow(dst);
8954 if (!dst)
8955 return NULL;
8956 dst = isl_basic_map_extend_space(dst,
8957 isl_space_copy(dst->dim),
8958 extra, 0, 2 * extra);
8959 extended = 1;
8961 j = isl_basic_map_alloc_div(dst);
8962 if (j < 0)
8963 return isl_basic_map_free(dst);
8964 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
8965 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
8966 if (isl_basic_map_add_div_constraints(dst, j) < 0)
8967 return isl_basic_map_free(dst);
8969 if (j != i)
8970 isl_basic_map_swap_div(dst, i, j);
8972 return dst;
8975 __isl_give isl_map *isl_map_align_divs_internal(__isl_take isl_map *map)
8977 int i;
8979 if (!map)
8980 return NULL;
8981 if (map->n == 0)
8982 return map;
8983 map = isl_map_compute_divs(map);
8984 map = isl_map_cow(map);
8985 if (!map)
8986 return NULL;
8988 for (i = 1; i < map->n; ++i)
8989 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
8990 for (i = 1; i < map->n; ++i) {
8991 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
8992 if (!map->p[i])
8993 return isl_map_free(map);
8996 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
8997 return map;
9000 __isl_give isl_map *isl_map_align_divs(__isl_take isl_map *map)
9002 return isl_map_align_divs_internal(map);
9005 struct isl_set *isl_set_align_divs(struct isl_set *set)
9007 return set_from_map(isl_map_align_divs_internal(set_to_map(set)));
9010 /* Align the divs of the basic maps in "map" to those
9011 * of the basic maps in "list", as well as to the other basic maps in "map".
9012 * The elements in "list" are assumed to have known divs.
9014 __isl_give isl_map *isl_map_align_divs_to_basic_map_list(
9015 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
9017 int i, n;
9019 map = isl_map_compute_divs(map);
9020 map = isl_map_cow(map);
9021 if (!map || !list)
9022 return isl_map_free(map);
9023 if (map->n == 0)
9024 return map;
9026 n = isl_basic_map_list_n_basic_map(list);
9027 for (i = 0; i < n; ++i) {
9028 isl_basic_map *bmap;
9030 bmap = isl_basic_map_list_get_basic_map(list, i);
9031 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
9032 isl_basic_map_free(bmap);
9034 if (!map->p[0])
9035 return isl_map_free(map);
9037 return isl_map_align_divs_internal(map);
9040 /* Align the divs of each element of "list" to those of "bmap".
9041 * Both "bmap" and the elements of "list" are assumed to have known divs.
9043 __isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
9044 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
9046 int i, n;
9048 if (!list || !bmap)
9049 return isl_basic_map_list_free(list);
9051 n = isl_basic_map_list_n_basic_map(list);
9052 for (i = 0; i < n; ++i) {
9053 isl_basic_map *bmap_i;
9055 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9056 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
9057 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
9060 return list;
9063 static __isl_give isl_set *set_apply( __isl_take isl_set *set,
9064 __isl_take isl_map *map)
9066 isl_bool ok;
9068 ok = isl_map_compatible_domain(map, set);
9069 if (ok < 0)
9070 goto error;
9071 if (!ok)
9072 isl_die(isl_set_get_ctx(set), isl_error_invalid,
9073 "incompatible spaces", goto error);
9074 map = isl_map_intersect_domain(map, set);
9075 set = isl_map_range(map);
9076 return set;
9077 error:
9078 isl_set_free(set);
9079 isl_map_free(map);
9080 return NULL;
9083 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
9084 __isl_take isl_map *map)
9086 return isl_map_align_params_map_map_and(set, map, &set_apply);
9089 /* There is no need to cow as removing empty parts doesn't change
9090 * the meaning of the set.
9092 __isl_give isl_map *isl_map_remove_empty_parts(__isl_take isl_map *map)
9094 int i;
9096 if (!map)
9097 return NULL;
9099 for (i = map->n - 1; i >= 0; --i)
9100 remove_if_empty(map, i);
9102 return map;
9105 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
9107 return set_from_map(isl_map_remove_empty_parts(set_to_map(set)));
9110 /* Create a binary relation that maps the shared initial "pos" dimensions
9111 * of "bset1" and "bset2" to the remaining dimensions of "bset1" and "bset2".
9113 static __isl_give isl_basic_map *join_initial(__isl_keep isl_basic_set *bset1,
9114 __isl_keep isl_basic_set *bset2, int pos)
9116 isl_basic_map *bmap1;
9117 isl_basic_map *bmap2;
9119 bmap1 = isl_basic_map_from_range(isl_basic_set_copy(bset1));
9120 bmap2 = isl_basic_map_from_range(isl_basic_set_copy(bset2));
9121 bmap1 = isl_basic_map_move_dims(bmap1, isl_dim_in, 0,
9122 isl_dim_out, 0, pos);
9123 bmap2 = isl_basic_map_move_dims(bmap2, isl_dim_in, 0,
9124 isl_dim_out, 0, pos);
9125 return isl_basic_map_range_product(bmap1, bmap2);
9128 /* Given two basic sets bset1 and bset2, compute the maximal difference
9129 * between the values of dimension pos in bset1 and those in bset2
9130 * for any common value of the parameters and dimensions preceding pos.
9132 static enum isl_lp_result basic_set_maximal_difference_at(
9133 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
9134 int pos, isl_int *opt)
9136 isl_basic_map *bmap1;
9137 struct isl_ctx *ctx;
9138 struct isl_vec *obj;
9139 unsigned total;
9140 unsigned nparam;
9141 unsigned dim1;
9142 enum isl_lp_result res;
9144 if (!bset1 || !bset2)
9145 return isl_lp_error;
9147 nparam = isl_basic_set_n_param(bset1);
9148 dim1 = isl_basic_set_n_dim(bset1);
9150 bmap1 = join_initial(bset1, bset2, pos);
9151 if (!bmap1)
9152 return isl_lp_error;
9154 total = isl_basic_map_total_dim(bmap1);
9155 ctx = bmap1->ctx;
9156 obj = isl_vec_alloc(ctx, 1 + total);
9157 if (!obj)
9158 goto error;
9159 isl_seq_clr(obj->block.data, 1 + total);
9160 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
9161 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
9162 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
9163 opt, NULL, NULL);
9164 isl_basic_map_free(bmap1);
9165 isl_vec_free(obj);
9166 return res;
9167 error:
9168 isl_basic_map_free(bmap1);
9169 return isl_lp_error;
9172 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
9173 * for any common value of the parameters and dimensions preceding pos
9174 * in both basic sets, the values of dimension pos in bset1 are
9175 * smaller or larger than those in bset2.
9177 * Returns
9178 * 1 if bset1 follows bset2
9179 * -1 if bset1 precedes bset2
9180 * 0 if bset1 and bset2 are incomparable
9181 * -2 if some error occurred.
9183 int isl_basic_set_compare_at(struct isl_basic_set *bset1,
9184 struct isl_basic_set *bset2, int pos)
9186 isl_int opt;
9187 enum isl_lp_result res;
9188 int cmp;
9190 isl_int_init(opt);
9192 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
9194 if (res == isl_lp_empty)
9195 cmp = 0;
9196 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
9197 res == isl_lp_unbounded)
9198 cmp = 1;
9199 else if (res == isl_lp_ok && isl_int_is_neg(opt))
9200 cmp = -1;
9201 else
9202 cmp = -2;
9204 isl_int_clear(opt);
9205 return cmp;
9208 /* Given two basic sets bset1 and bset2, check whether
9209 * for any common value of the parameters and dimensions preceding pos
9210 * there is a value of dimension pos in bset1 that is larger
9211 * than a value of the same dimension in bset2.
9213 * Return
9214 * 1 if there exists such a pair
9215 * 0 if there is no such pair, but there is a pair of equal values
9216 * -1 otherwise
9217 * -2 if some error occurred.
9219 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
9220 __isl_keep isl_basic_set *bset2, int pos)
9222 isl_int opt;
9223 enum isl_lp_result res;
9224 int cmp;
9226 isl_int_init(opt);
9228 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
9230 if (res == isl_lp_empty)
9231 cmp = -1;
9232 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
9233 res == isl_lp_unbounded)
9234 cmp = 1;
9235 else if (res == isl_lp_ok && isl_int_is_neg(opt))
9236 cmp = -1;
9237 else if (res == isl_lp_ok)
9238 cmp = 0;
9239 else
9240 cmp = -2;
9242 isl_int_clear(opt);
9243 return cmp;
9246 /* Given two sets set1 and set2, check whether
9247 * for any common value of the parameters and dimensions preceding pos
9248 * there is a value of dimension pos in set1 that is larger
9249 * than a value of the same dimension in set2.
9251 * Return
9252 * 1 if there exists such a pair
9253 * 0 if there is no such pair, but there is a pair of equal values
9254 * -1 otherwise
9255 * -2 if some error occurred.
9257 int isl_set_follows_at(__isl_keep isl_set *set1,
9258 __isl_keep isl_set *set2, int pos)
9260 int i, j;
9261 int follows = -1;
9263 if (!set1 || !set2)
9264 return -2;
9266 for (i = 0; i < set1->n; ++i)
9267 for (j = 0; j < set2->n; ++j) {
9268 int f;
9269 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
9270 if (f == 1 || f == -2)
9271 return f;
9272 if (f > follows)
9273 follows = f;
9276 return follows;
9279 static isl_bool isl_basic_map_plain_has_fixed_var(
9280 __isl_keep isl_basic_map *bmap, unsigned pos, isl_int *val)
9282 int i;
9283 int d;
9284 unsigned total;
9286 if (!bmap)
9287 return isl_bool_error;
9288 total = isl_basic_map_total_dim(bmap);
9289 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
9290 for (; d+1 > pos; --d)
9291 if (!isl_int_is_zero(bmap->eq[i][1+d]))
9292 break;
9293 if (d != pos)
9294 continue;
9295 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
9296 return isl_bool_false;
9297 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
9298 return isl_bool_false;
9299 if (!isl_int_is_one(bmap->eq[i][1+d]))
9300 return isl_bool_false;
9301 if (val)
9302 isl_int_neg(*val, bmap->eq[i][0]);
9303 return isl_bool_true;
9305 return isl_bool_false;
9308 static isl_bool isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
9309 unsigned pos, isl_int *val)
9311 int i;
9312 isl_int v;
9313 isl_int tmp;
9314 isl_bool fixed;
9316 if (!map)
9317 return isl_bool_error;
9318 if (map->n == 0)
9319 return isl_bool_false;
9320 if (map->n == 1)
9321 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
9322 isl_int_init(v);
9323 isl_int_init(tmp);
9324 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
9325 for (i = 1; fixed == isl_bool_true && i < map->n; ++i) {
9326 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
9327 if (fixed == isl_bool_true && isl_int_ne(tmp, v))
9328 fixed = isl_bool_false;
9330 if (val)
9331 isl_int_set(*val, v);
9332 isl_int_clear(tmp);
9333 isl_int_clear(v);
9334 return fixed;
9337 static isl_bool isl_basic_set_plain_has_fixed_var(
9338 __isl_keep isl_basic_set *bset, unsigned pos, isl_int *val)
9340 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset),
9341 pos, val);
9344 isl_bool isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
9345 enum isl_dim_type type, unsigned pos, isl_int *val)
9347 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
9348 return isl_bool_error;
9349 return isl_basic_map_plain_has_fixed_var(bmap,
9350 isl_basic_map_offset(bmap, type) - 1 + pos, val);
9353 /* If "bmap" obviously lies on a hyperplane where the given dimension
9354 * has a fixed value, then return that value.
9355 * Otherwise return NaN.
9357 __isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
9358 __isl_keep isl_basic_map *bmap,
9359 enum isl_dim_type type, unsigned pos)
9361 isl_ctx *ctx;
9362 isl_val *v;
9363 isl_bool fixed;
9365 if (!bmap)
9366 return NULL;
9367 ctx = isl_basic_map_get_ctx(bmap);
9368 v = isl_val_alloc(ctx);
9369 if (!v)
9370 return NULL;
9371 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
9372 if (fixed < 0)
9373 return isl_val_free(v);
9374 if (fixed) {
9375 isl_int_set_si(v->d, 1);
9376 return v;
9378 isl_val_free(v);
9379 return isl_val_nan(ctx);
9382 isl_bool isl_map_plain_is_fixed(__isl_keep isl_map *map,
9383 enum isl_dim_type type, unsigned pos, isl_int *val)
9385 if (pos >= isl_map_dim(map, type))
9386 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9387 "position out of bounds", return isl_bool_error);
9388 return isl_map_plain_has_fixed_var(map,
9389 map_offset(map, type) - 1 + pos, val);
9392 /* If "map" obviously lies on a hyperplane where the given dimension
9393 * has a fixed value, then return that value.
9394 * Otherwise return NaN.
9396 __isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
9397 enum isl_dim_type type, unsigned pos)
9399 isl_ctx *ctx;
9400 isl_val *v;
9401 isl_bool fixed;
9403 if (!map)
9404 return NULL;
9405 ctx = isl_map_get_ctx(map);
9406 v = isl_val_alloc(ctx);
9407 if (!v)
9408 return NULL;
9409 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
9410 if (fixed < 0)
9411 return isl_val_free(v);
9412 if (fixed) {
9413 isl_int_set_si(v->d, 1);
9414 return v;
9416 isl_val_free(v);
9417 return isl_val_nan(ctx);
9420 /* If "set" obviously lies on a hyperplane where the given dimension
9421 * has a fixed value, then return that value.
9422 * Otherwise return NaN.
9424 __isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
9425 enum isl_dim_type type, unsigned pos)
9427 return isl_map_plain_get_val_if_fixed(set, type, pos);
9430 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9431 * then return this fixed value in *val.
9433 isl_bool isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
9434 unsigned dim, isl_int *val)
9436 return isl_basic_set_plain_has_fixed_var(bset,
9437 isl_basic_set_n_param(bset) + dim, val);
9440 /* Return -1 if the constraint "c1" should be sorted before "c2"
9441 * and 1 if it should be sorted after "c2".
9442 * Return 0 if the two constraints are the same (up to the constant term).
9444 * In particular, if a constraint involves later variables than another
9445 * then it is sorted after this other constraint.
9446 * uset_gist depends on constraints without existentially quantified
9447 * variables sorting first.
9449 * For constraints that have the same latest variable, those
9450 * with the same coefficient for this latest variable (first in absolute value
9451 * and then in actual value) are grouped together.
9452 * This is useful for detecting pairs of constraints that can
9453 * be chained in their printed representation.
9455 * Finally, within a group, constraints are sorted according to
9456 * their coefficients (excluding the constant term).
9458 static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
9460 isl_int **c1 = (isl_int **) p1;
9461 isl_int **c2 = (isl_int **) p2;
9462 int l1, l2;
9463 unsigned size = *(unsigned *) arg;
9464 int cmp;
9466 l1 = isl_seq_last_non_zero(*c1 + 1, size);
9467 l2 = isl_seq_last_non_zero(*c2 + 1, size);
9469 if (l1 != l2)
9470 return l1 - l2;
9472 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9473 if (cmp != 0)
9474 return cmp;
9475 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9476 if (cmp != 0)
9477 return -cmp;
9479 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
9482 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9483 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9484 * and 0 if the two constraints are the same (up to the constant term).
9486 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
9487 isl_int *c1, isl_int *c2)
9489 unsigned total;
9491 if (!bmap)
9492 return -2;
9493 total = isl_basic_map_total_dim(bmap);
9494 return sort_constraint_cmp(&c1, &c2, &total);
9497 __isl_give isl_basic_map *isl_basic_map_sort_constraints(
9498 __isl_take isl_basic_map *bmap)
9500 unsigned total;
9502 if (!bmap)
9503 return NULL;
9504 if (bmap->n_ineq == 0)
9505 return bmap;
9506 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9507 return bmap;
9508 total = isl_basic_map_total_dim(bmap);
9509 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
9510 &sort_constraint_cmp, &total) < 0)
9511 return isl_basic_map_free(bmap);
9512 return bmap;
9515 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
9516 __isl_take isl_basic_set *bset)
9518 isl_basic_map *bmap = bset_to_bmap(bset);
9519 return bset_from_bmap(isl_basic_map_sort_constraints(bmap));
9522 __isl_give isl_basic_map *isl_basic_map_normalize(
9523 __isl_take isl_basic_map *bmap)
9525 if (!bmap)
9526 return NULL;
9527 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9528 return bmap;
9529 bmap = isl_basic_map_remove_redundancies(bmap);
9530 bmap = isl_basic_map_sort_constraints(bmap);
9531 if (bmap)
9532 ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED);
9533 return bmap;
9535 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map *bmap1,
9536 __isl_keep isl_basic_map *bmap2)
9538 int i, cmp;
9539 unsigned total;
9540 isl_space *space1, *space2;
9542 if (!bmap1 || !bmap2)
9543 return -1;
9545 if (bmap1 == bmap2)
9546 return 0;
9547 space1 = isl_basic_map_peek_space(bmap1);
9548 space2 = isl_basic_map_peek_space(bmap2);
9549 cmp = isl_space_cmp(space1, space2);
9550 if (cmp)
9551 return cmp;
9552 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
9553 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
9554 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
9555 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
9556 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9557 return 0;
9558 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
9559 return 1;
9560 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9561 return -1;
9562 if (bmap1->n_eq != bmap2->n_eq)
9563 return bmap1->n_eq - bmap2->n_eq;
9564 if (bmap1->n_ineq != bmap2->n_ineq)
9565 return bmap1->n_ineq - bmap2->n_ineq;
9566 if (bmap1->n_div != bmap2->n_div)
9567 return bmap1->n_div - bmap2->n_div;
9568 total = isl_basic_map_total_dim(bmap1);
9569 for (i = 0; i < bmap1->n_eq; ++i) {
9570 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
9571 if (cmp)
9572 return cmp;
9574 for (i = 0; i < bmap1->n_ineq; ++i) {
9575 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
9576 if (cmp)
9577 return cmp;
9579 for (i = 0; i < bmap1->n_div; ++i) {
9580 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
9581 if (cmp)
9582 return cmp;
9584 return 0;
9587 int isl_basic_set_plain_cmp(__isl_keep isl_basic_set *bset1,
9588 __isl_keep isl_basic_set *bset2)
9590 return isl_basic_map_plain_cmp(bset1, bset2);
9593 int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
9595 int i, cmp;
9597 if (set1 == set2)
9598 return 0;
9599 if (set1->n != set2->n)
9600 return set1->n - set2->n;
9602 for (i = 0; i < set1->n; ++i) {
9603 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
9604 if (cmp)
9605 return cmp;
9608 return 0;
9611 isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
9612 __isl_keep isl_basic_map *bmap2)
9614 if (!bmap1 || !bmap2)
9615 return isl_bool_error;
9616 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
9619 isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
9620 __isl_keep isl_basic_set *bset2)
9622 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1),
9623 bset_to_bmap(bset2));
9626 static int qsort_bmap_cmp(const void *p1, const void *p2)
9628 isl_basic_map *bmap1 = *(isl_basic_map **) p1;
9629 isl_basic_map *bmap2 = *(isl_basic_map **) p2;
9631 return isl_basic_map_plain_cmp(bmap1, bmap2);
9634 /* Sort the basic maps of "map" and remove duplicate basic maps.
9636 * While removing basic maps, we make sure that the basic maps remain
9637 * sorted because isl_map_normalize expects the basic maps of the result
9638 * to be sorted.
9640 static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
9642 int i, j;
9644 map = isl_map_remove_empty_parts(map);
9645 if (!map)
9646 return NULL;
9647 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
9648 for (i = map->n - 1; i >= 1; --i) {
9649 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
9650 continue;
9651 isl_basic_map_free(map->p[i-1]);
9652 for (j = i; j < map->n; ++j)
9653 map->p[j - 1] = map->p[j];
9654 map->n--;
9657 return map;
9660 /* Remove obvious duplicates among the basic maps of "map".
9662 * Unlike isl_map_normalize, this function does not remove redundant
9663 * constraints and only removes duplicates that have exactly the same
9664 * constraints in the input. It does sort the constraints and
9665 * the basic maps to ease the detection of duplicates.
9667 * If "map" has already been normalized or if the basic maps are
9668 * disjoint, then there can be no duplicates.
9670 __isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
9672 int i;
9673 isl_basic_map *bmap;
9675 if (!map)
9676 return NULL;
9677 if (map->n <= 1)
9678 return map;
9679 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
9680 return map;
9681 for (i = 0; i < map->n; ++i) {
9682 bmap = isl_basic_map_copy(map->p[i]);
9683 bmap = isl_basic_map_sort_constraints(bmap);
9684 if (!bmap)
9685 return isl_map_free(map);
9686 isl_basic_map_free(map->p[i]);
9687 map->p[i] = bmap;
9690 map = sort_and_remove_duplicates(map);
9691 return map;
9694 /* We normalize in place, but if anything goes wrong we need
9695 * to return NULL, so we need to make sure we don't change the
9696 * meaning of any possible other copies of map.
9698 __isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
9700 int i;
9701 struct isl_basic_map *bmap;
9703 if (!map)
9704 return NULL;
9705 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
9706 return map;
9707 for (i = 0; i < map->n; ++i) {
9708 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
9709 if (!bmap)
9710 goto error;
9711 isl_basic_map_free(map->p[i]);
9712 map->p[i] = bmap;
9715 map = sort_and_remove_duplicates(map);
9716 if (map)
9717 ISL_F_SET(map, ISL_MAP_NORMALIZED);
9718 return map;
9719 error:
9720 isl_map_free(map);
9721 return NULL;
9724 struct isl_set *isl_set_normalize(struct isl_set *set)
9726 return set_from_map(isl_map_normalize(set_to_map(set)));
9729 isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
9730 __isl_keep isl_map *map2)
9732 int i;
9733 isl_bool equal;
9735 if (!map1 || !map2)
9736 return isl_bool_error;
9738 if (map1 == map2)
9739 return isl_bool_true;
9740 if (!isl_space_is_equal(map1->dim, map2->dim))
9741 return isl_bool_false;
9743 map1 = isl_map_copy(map1);
9744 map2 = isl_map_copy(map2);
9745 map1 = isl_map_normalize(map1);
9746 map2 = isl_map_normalize(map2);
9747 if (!map1 || !map2)
9748 goto error;
9749 equal = map1->n == map2->n;
9750 for (i = 0; equal && i < map1->n; ++i) {
9751 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
9752 if (equal < 0)
9753 goto error;
9755 isl_map_free(map1);
9756 isl_map_free(map2);
9757 return equal;
9758 error:
9759 isl_map_free(map1);
9760 isl_map_free(map2);
9761 return isl_bool_error;
9764 isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
9765 __isl_keep isl_set *set2)
9767 return isl_map_plain_is_equal(set_to_map(set1), set_to_map(set2));
9770 /* Return the basic maps in "map" as a list.
9772 __isl_give isl_basic_map_list *isl_map_get_basic_map_list(
9773 __isl_keep isl_map *map)
9775 int i;
9776 isl_ctx *ctx;
9777 isl_basic_map_list *list;
9779 if (!map)
9780 return NULL;
9781 ctx = isl_map_get_ctx(map);
9782 list = isl_basic_map_list_alloc(ctx, map->n);
9784 for (i = 0; i < map->n; ++i) {
9785 isl_basic_map *bmap;
9787 bmap = isl_basic_map_copy(map->p[i]);
9788 list = isl_basic_map_list_add(list, bmap);
9791 return list;
9794 /* Return the intersection of the elements in the non-empty list "list".
9795 * All elements are assumed to live in the same space.
9797 __isl_give isl_basic_map *isl_basic_map_list_intersect(
9798 __isl_take isl_basic_map_list *list)
9800 int i, n;
9801 isl_basic_map *bmap;
9803 if (!list)
9804 return NULL;
9805 n = isl_basic_map_list_n_basic_map(list);
9806 if (n < 1)
9807 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
9808 "expecting non-empty list", goto error);
9810 bmap = isl_basic_map_list_get_basic_map(list, 0);
9811 for (i = 1; i < n; ++i) {
9812 isl_basic_map *bmap_i;
9814 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9815 bmap = isl_basic_map_intersect(bmap, bmap_i);
9818 isl_basic_map_list_free(list);
9819 return bmap;
9820 error:
9821 isl_basic_map_list_free(list);
9822 return NULL;
9825 /* Return the intersection of the elements in the non-empty list "list".
9826 * All elements are assumed to live in the same space.
9828 __isl_give isl_basic_set *isl_basic_set_list_intersect(
9829 __isl_take isl_basic_set_list *list)
9831 return isl_basic_map_list_intersect(list);
9834 /* Return the union of the elements of "list".
9835 * The list is required to have at least one element.
9837 __isl_give isl_set *isl_basic_set_list_union(
9838 __isl_take isl_basic_set_list *list)
9840 int i, n;
9841 isl_space *space;
9842 isl_basic_set *bset;
9843 isl_set *set;
9845 if (!list)
9846 return NULL;
9847 n = isl_basic_set_list_n_basic_set(list);
9848 if (n < 1)
9849 isl_die(isl_basic_set_list_get_ctx(list), isl_error_invalid,
9850 "expecting non-empty list", goto error);
9852 bset = isl_basic_set_list_get_basic_set(list, 0);
9853 space = isl_basic_set_get_space(bset);
9854 isl_basic_set_free(bset);
9856 set = isl_set_alloc_space(space, n, 0);
9857 for (i = 0; i < n; ++i) {
9858 bset = isl_basic_set_list_get_basic_set(list, i);
9859 set = isl_set_add_basic_set(set, bset);
9862 isl_basic_set_list_free(list);
9863 return set;
9864 error:
9865 isl_basic_set_list_free(list);
9866 return NULL;
9869 /* Return the union of the elements in the non-empty list "list".
9870 * All elements are assumed to live in the same space.
9872 __isl_give isl_set *isl_set_list_union(__isl_take isl_set_list *list)
9874 int i, n;
9875 isl_set *set;
9877 if (!list)
9878 return NULL;
9879 n = isl_set_list_n_set(list);
9880 if (n < 1)
9881 isl_die(isl_set_list_get_ctx(list), isl_error_invalid,
9882 "expecting non-empty list", goto error);
9884 set = isl_set_list_get_set(list, 0);
9885 for (i = 1; i < n; ++i) {
9886 isl_set *set_i;
9888 set_i = isl_set_list_get_set(list, i);
9889 set = isl_set_union(set, set_i);
9892 isl_set_list_free(list);
9893 return set;
9894 error:
9895 isl_set_list_free(list);
9896 return NULL;
9899 __isl_give isl_basic_map *isl_basic_map_product(
9900 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9902 isl_space *dim_result = NULL;
9903 struct isl_basic_map *bmap;
9904 unsigned in1, in2, out1, out2, nparam, total, pos;
9905 struct isl_dim_map *dim_map1, *dim_map2;
9907 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
9908 goto error;
9909 dim_result = isl_space_product(isl_space_copy(bmap1->dim),
9910 isl_space_copy(bmap2->dim));
9912 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9913 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9914 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9915 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9916 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9918 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
9919 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9920 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9921 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9922 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9923 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9924 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9925 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9926 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9927 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9928 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9930 bmap = isl_basic_map_alloc_space(dim_result,
9931 bmap1->n_div + bmap2->n_div,
9932 bmap1->n_eq + bmap2->n_eq,
9933 bmap1->n_ineq + bmap2->n_ineq);
9934 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9935 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9936 bmap = isl_basic_map_simplify(bmap);
9937 return isl_basic_map_finalize(bmap);
9938 error:
9939 isl_basic_map_free(bmap1);
9940 isl_basic_map_free(bmap2);
9941 return NULL;
9944 __isl_give isl_basic_map *isl_basic_map_flat_product(
9945 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9947 isl_basic_map *prod;
9949 prod = isl_basic_map_product(bmap1, bmap2);
9950 prod = isl_basic_map_flatten(prod);
9951 return prod;
9954 __isl_give isl_basic_set *isl_basic_set_flat_product(
9955 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
9957 return isl_basic_map_flat_range_product(bset1, bset2);
9960 __isl_give isl_basic_map *isl_basic_map_domain_product(
9961 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9963 isl_space *space_result = NULL;
9964 isl_basic_map *bmap;
9965 unsigned in1, in2, out, nparam, total, pos;
9966 struct isl_dim_map *dim_map1, *dim_map2;
9968 if (!bmap1 || !bmap2)
9969 goto error;
9971 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
9972 isl_space_copy(bmap2->dim));
9974 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9975 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9976 out = isl_basic_map_dim(bmap1, isl_dim_out);
9977 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9979 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
9980 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9981 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9982 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9983 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9984 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9985 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9986 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9987 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
9988 isl_dim_map_div(dim_map1, bmap1, pos += out);
9989 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9991 bmap = isl_basic_map_alloc_space(space_result,
9992 bmap1->n_div + bmap2->n_div,
9993 bmap1->n_eq + bmap2->n_eq,
9994 bmap1->n_ineq + bmap2->n_ineq);
9995 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9996 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9997 bmap = isl_basic_map_simplify(bmap);
9998 return isl_basic_map_finalize(bmap);
9999 error:
10000 isl_basic_map_free(bmap1);
10001 isl_basic_map_free(bmap2);
10002 return NULL;
10005 __isl_give isl_basic_map *isl_basic_map_range_product(
10006 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10008 isl_bool rational;
10009 isl_space *dim_result = NULL;
10010 isl_basic_map *bmap;
10011 unsigned in, out1, out2, nparam, total, pos;
10012 struct isl_dim_map *dim_map1, *dim_map2;
10014 rational = isl_basic_map_is_rational(bmap1);
10015 if (rational >= 0 && rational)
10016 rational = isl_basic_map_is_rational(bmap2);
10017 if (!bmap1 || !bmap2 || rational < 0)
10018 goto error;
10020 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
10021 goto error;
10023 dim_result = isl_space_range_product(isl_space_copy(bmap1->dim),
10024 isl_space_copy(bmap2->dim));
10026 in = isl_basic_map_dim(bmap1, isl_dim_in);
10027 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
10028 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
10029 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10031 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
10032 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10033 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10034 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10035 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10036 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10037 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
10038 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
10039 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
10040 isl_dim_map_div(dim_map1, bmap1, pos += out2);
10041 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10043 bmap = isl_basic_map_alloc_space(dim_result,
10044 bmap1->n_div + bmap2->n_div,
10045 bmap1->n_eq + bmap2->n_eq,
10046 bmap1->n_ineq + bmap2->n_ineq);
10047 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10048 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10049 if (rational)
10050 bmap = isl_basic_map_set_rational(bmap);
10051 bmap = isl_basic_map_simplify(bmap);
10052 return isl_basic_map_finalize(bmap);
10053 error:
10054 isl_basic_map_free(bmap1);
10055 isl_basic_map_free(bmap2);
10056 return NULL;
10059 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
10060 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10062 isl_basic_map *prod;
10064 prod = isl_basic_map_range_product(bmap1, bmap2);
10065 prod = isl_basic_map_flatten_range(prod);
10066 return prod;
10069 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
10070 * and collect the results.
10071 * The result live in the space obtained by calling "space_product"
10072 * on the spaces of "map1" and "map2".
10073 * If "remove_duplicates" is set then the result may contain duplicates
10074 * (even if the inputs do not) and so we try and remove the obvious
10075 * duplicates.
10077 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
10078 __isl_take isl_map *map2,
10079 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
10080 __isl_take isl_space *right),
10081 __isl_give isl_basic_map *(*basic_map_product)(
10082 __isl_take isl_basic_map *left,
10083 __isl_take isl_basic_map *right),
10084 int remove_duplicates)
10086 unsigned flags = 0;
10087 struct isl_map *result;
10088 int i, j;
10089 isl_bool m;
10091 m = isl_map_has_equal_params(map1, map2);
10092 if (m < 0)
10093 goto error;
10094 if (!m)
10095 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
10096 "parameters don't match", goto error);
10098 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
10099 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
10100 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
10102 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
10103 isl_space_copy(map2->dim)),
10104 map1->n * map2->n, flags);
10105 if (!result)
10106 goto error;
10107 for (i = 0; i < map1->n; ++i)
10108 for (j = 0; j < map2->n; ++j) {
10109 struct isl_basic_map *part;
10110 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
10111 isl_basic_map_copy(map2->p[j]));
10112 if (isl_basic_map_is_empty(part))
10113 isl_basic_map_free(part);
10114 else
10115 result = isl_map_add_basic_map(result, part);
10116 if (!result)
10117 goto error;
10119 if (remove_duplicates)
10120 result = isl_map_remove_obvious_duplicates(result);
10121 isl_map_free(map1);
10122 isl_map_free(map2);
10123 return result;
10124 error:
10125 isl_map_free(map1);
10126 isl_map_free(map2);
10127 return NULL;
10130 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
10132 static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
10133 __isl_take isl_map *map2)
10135 return map_product(map1, map2, &isl_space_product,
10136 &isl_basic_map_product, 0);
10139 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
10140 __isl_take isl_map *map2)
10142 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
10145 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
10147 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
10148 __isl_take isl_map *map2)
10150 isl_map *prod;
10152 prod = isl_map_product(map1, map2);
10153 prod = isl_map_flatten(prod);
10154 return prod;
10157 /* Given two set A and B, construct its Cartesian product A x B.
10159 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
10161 return isl_map_range_product(set1, set2);
10164 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
10165 __isl_take isl_set *set2)
10167 return isl_map_flat_range_product(set1, set2);
10170 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10172 static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
10173 __isl_take isl_map *map2)
10175 return map_product(map1, map2, &isl_space_domain_product,
10176 &isl_basic_map_domain_product, 1);
10179 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10181 static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
10182 __isl_take isl_map *map2)
10184 return map_product(map1, map2, &isl_space_range_product,
10185 &isl_basic_map_range_product, 1);
10188 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
10189 __isl_take isl_map *map2)
10191 return isl_map_align_params_map_map_and(map1, map2,
10192 &map_domain_product_aligned);
10195 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
10196 __isl_take isl_map *map2)
10198 return isl_map_align_params_map_map_and(map1, map2,
10199 &map_range_product_aligned);
10202 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10204 __isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
10206 isl_space *space;
10207 int total1, keep1, total2, keep2;
10209 if (!map)
10210 return NULL;
10211 if (!isl_space_domain_is_wrapping(map->dim) ||
10212 !isl_space_range_is_wrapping(map->dim))
10213 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10214 "not a product", return isl_map_free(map));
10216 space = isl_map_get_space(map);
10217 total1 = isl_space_dim(space, isl_dim_in);
10218 total2 = isl_space_dim(space, isl_dim_out);
10219 space = isl_space_factor_domain(space);
10220 keep1 = isl_space_dim(space, isl_dim_in);
10221 keep2 = isl_space_dim(space, isl_dim_out);
10222 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
10223 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
10224 map = isl_map_reset_space(map, space);
10226 return map;
10229 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10231 __isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
10233 isl_space *space;
10234 int total1, keep1, total2, keep2;
10236 if (!map)
10237 return NULL;
10238 if (!isl_space_domain_is_wrapping(map->dim) ||
10239 !isl_space_range_is_wrapping(map->dim))
10240 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10241 "not a product", return isl_map_free(map));
10243 space = isl_map_get_space(map);
10244 total1 = isl_space_dim(space, isl_dim_in);
10245 total2 = isl_space_dim(space, isl_dim_out);
10246 space = isl_space_factor_range(space);
10247 keep1 = isl_space_dim(space, isl_dim_in);
10248 keep2 = isl_space_dim(space, isl_dim_out);
10249 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
10250 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
10251 map = isl_map_reset_space(map, space);
10253 return map;
10256 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10258 __isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
10260 isl_space *space;
10261 int total, keep;
10263 if (!map)
10264 return NULL;
10265 if (!isl_space_domain_is_wrapping(map->dim))
10266 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10267 "domain is not a product", return isl_map_free(map));
10269 space = isl_map_get_space(map);
10270 total = isl_space_dim(space, isl_dim_in);
10271 space = isl_space_domain_factor_domain(space);
10272 keep = isl_space_dim(space, isl_dim_in);
10273 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
10274 map = isl_map_reset_space(map, space);
10276 return map;
10279 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10281 __isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
10283 isl_space *space;
10284 int total, keep;
10286 if (!map)
10287 return NULL;
10288 if (!isl_space_domain_is_wrapping(map->dim))
10289 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10290 "domain is not a product", return isl_map_free(map));
10292 space = isl_map_get_space(map);
10293 total = isl_space_dim(space, isl_dim_in);
10294 space = isl_space_domain_factor_range(space);
10295 keep = isl_space_dim(space, isl_dim_in);
10296 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
10297 map = isl_map_reset_space(map, space);
10299 return map;
10302 /* Given a map A -> [B -> C], extract the map A -> B.
10304 __isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
10306 isl_space *space;
10307 int total, keep;
10309 if (!map)
10310 return NULL;
10311 if (!isl_space_range_is_wrapping(map->dim))
10312 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10313 "range is not a product", return isl_map_free(map));
10315 space = isl_map_get_space(map);
10316 total = isl_space_dim(space, isl_dim_out);
10317 space = isl_space_range_factor_domain(space);
10318 keep = isl_space_dim(space, isl_dim_out);
10319 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
10320 map = isl_map_reset_space(map, space);
10322 return map;
10325 /* Given a map A -> [B -> C], extract the map A -> C.
10327 __isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
10329 isl_space *space;
10330 int total, keep;
10332 if (!map)
10333 return NULL;
10334 if (!isl_space_range_is_wrapping(map->dim))
10335 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10336 "range is not a product", return isl_map_free(map));
10338 space = isl_map_get_space(map);
10339 total = isl_space_dim(space, isl_dim_out);
10340 space = isl_space_range_factor_range(space);
10341 keep = isl_space_dim(space, isl_dim_out);
10342 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
10343 map = isl_map_reset_space(map, space);
10345 return map;
10348 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10350 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
10351 __isl_take isl_map *map2)
10353 isl_map *prod;
10355 prod = isl_map_domain_product(map1, map2);
10356 prod = isl_map_flatten_domain(prod);
10357 return prod;
10360 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10362 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
10363 __isl_take isl_map *map2)
10365 isl_map *prod;
10367 prod = isl_map_range_product(map1, map2);
10368 prod = isl_map_flatten_range(prod);
10369 return prod;
10372 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
10374 int i;
10375 uint32_t hash = isl_hash_init();
10376 unsigned total;
10378 if (!bmap)
10379 return 0;
10380 bmap = isl_basic_map_copy(bmap);
10381 bmap = isl_basic_map_normalize(bmap);
10382 if (!bmap)
10383 return 0;
10384 total = isl_basic_map_total_dim(bmap);
10385 isl_hash_byte(hash, bmap->n_eq & 0xFF);
10386 for (i = 0; i < bmap->n_eq; ++i) {
10387 uint32_t c_hash;
10388 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
10389 isl_hash_hash(hash, c_hash);
10391 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
10392 for (i = 0; i < bmap->n_ineq; ++i) {
10393 uint32_t c_hash;
10394 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
10395 isl_hash_hash(hash, c_hash);
10397 isl_hash_byte(hash, bmap->n_div & 0xFF);
10398 for (i = 0; i < bmap->n_div; ++i) {
10399 uint32_t c_hash;
10400 if (isl_int_is_zero(bmap->div[i][0]))
10401 continue;
10402 isl_hash_byte(hash, i & 0xFF);
10403 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
10404 isl_hash_hash(hash, c_hash);
10406 isl_basic_map_free(bmap);
10407 return hash;
10410 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
10412 return isl_basic_map_get_hash(bset_to_bmap(bset));
10415 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
10417 int i;
10418 uint32_t hash;
10420 if (!map)
10421 return 0;
10422 map = isl_map_copy(map);
10423 map = isl_map_normalize(map);
10424 if (!map)
10425 return 0;
10427 hash = isl_hash_init();
10428 for (i = 0; i < map->n; ++i) {
10429 uint32_t bmap_hash;
10430 bmap_hash = isl_basic_map_get_hash(map->p[i]);
10431 isl_hash_hash(hash, bmap_hash);
10434 isl_map_free(map);
10436 return hash;
10439 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
10441 return isl_map_get_hash(set_to_map(set));
10444 /* Return the number of basic maps in the (current) representation of "map".
10446 int isl_map_n_basic_map(__isl_keep isl_map *map)
10448 return map ? map->n : 0;
10451 int isl_set_n_basic_set(__isl_keep isl_set *set)
10453 return set ? set->n : 0;
10456 isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
10457 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
10459 int i;
10461 if (!map)
10462 return isl_stat_error;
10464 for (i = 0; i < map->n; ++i)
10465 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
10466 return isl_stat_error;
10468 return isl_stat_ok;
10471 isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
10472 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
10474 int i;
10476 if (!set)
10477 return isl_stat_error;
10479 for (i = 0; i < set->n; ++i)
10480 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
10481 return isl_stat_error;
10483 return isl_stat_ok;
10486 /* Return a list of basic sets, the union of which is equal to "set".
10488 __isl_give isl_basic_set_list *isl_set_get_basic_set_list(
10489 __isl_keep isl_set *set)
10491 int i;
10492 isl_basic_set_list *list;
10494 if (!set)
10495 return NULL;
10497 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
10498 for (i = 0; i < set->n; ++i) {
10499 isl_basic_set *bset;
10501 bset = isl_basic_set_copy(set->p[i]);
10502 list = isl_basic_set_list_add(list, bset);
10505 return list;
10508 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
10510 isl_space *dim;
10512 if (!bset)
10513 return NULL;
10515 bset = isl_basic_set_cow(bset);
10516 if (!bset)
10517 return NULL;
10519 dim = isl_basic_set_get_space(bset);
10520 dim = isl_space_lift(dim, bset->n_div);
10521 if (!dim)
10522 goto error;
10523 isl_space_free(bset->dim);
10524 bset->dim = dim;
10525 bset->extra -= bset->n_div;
10526 bset->n_div = 0;
10528 bset = isl_basic_set_finalize(bset);
10530 return bset;
10531 error:
10532 isl_basic_set_free(bset);
10533 return NULL;
10536 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
10538 int i;
10539 isl_space *dim;
10540 unsigned n_div;
10542 set = set_from_map(isl_map_align_divs_internal(set_to_map(set)));
10544 if (!set)
10545 return NULL;
10547 set = isl_set_cow(set);
10548 if (!set)
10549 return NULL;
10551 n_div = set->p[0]->n_div;
10552 dim = isl_set_get_space(set);
10553 dim = isl_space_lift(dim, n_div);
10554 if (!dim)
10555 goto error;
10556 isl_space_free(set->dim);
10557 set->dim = dim;
10559 for (i = 0; i < set->n; ++i) {
10560 set->p[i] = isl_basic_set_lift(set->p[i]);
10561 if (!set->p[i])
10562 goto error;
10565 return set;
10566 error:
10567 isl_set_free(set);
10568 return NULL;
10571 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
10573 unsigned dim;
10574 int size = 0;
10576 if (!bset)
10577 return -1;
10579 dim = isl_basic_set_total_dim(bset);
10580 size += bset->n_eq * (1 + dim);
10581 size += bset->n_ineq * (1 + dim);
10582 size += bset->n_div * (2 + dim);
10584 return size;
10587 int isl_set_size(__isl_keep isl_set *set)
10589 int i;
10590 int size = 0;
10592 if (!set)
10593 return -1;
10595 for (i = 0; i < set->n; ++i)
10596 size += isl_basic_set_size(set->p[i]);
10598 return size;
10601 /* Check if there is any lower bound (if lower == 0) and/or upper
10602 * bound (if upper == 0) on the specified dim.
10604 static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10605 enum isl_dim_type type, unsigned pos, int lower, int upper)
10607 int i;
10609 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
10610 return isl_bool_error;
10612 pos += isl_basic_map_offset(bmap, type);
10614 for (i = 0; i < bmap->n_div; ++i) {
10615 if (isl_int_is_zero(bmap->div[i][0]))
10616 continue;
10617 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
10618 return isl_bool_true;
10621 for (i = 0; i < bmap->n_eq; ++i)
10622 if (!isl_int_is_zero(bmap->eq[i][pos]))
10623 return isl_bool_true;
10625 for (i = 0; i < bmap->n_ineq; ++i) {
10626 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
10627 if (sgn > 0)
10628 lower = 1;
10629 if (sgn < 0)
10630 upper = 1;
10633 return lower && upper;
10636 isl_bool isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10637 enum isl_dim_type type, unsigned pos)
10639 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
10642 isl_bool isl_basic_map_dim_has_lower_bound(__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, 1);
10648 isl_bool isl_basic_map_dim_has_upper_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, 1, 0);
10654 isl_bool isl_map_dim_is_bounded(__isl_keep isl_map *map,
10655 enum isl_dim_type type, unsigned pos)
10657 int i;
10659 if (!map)
10660 return isl_bool_error;
10662 for (i = 0; i < map->n; ++i) {
10663 isl_bool bounded;
10664 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
10665 if (bounded < 0 || !bounded)
10666 return bounded;
10669 return isl_bool_true;
10672 /* Return true if the specified dim is involved in both an upper bound
10673 * and a lower bound.
10675 isl_bool isl_set_dim_is_bounded(__isl_keep isl_set *set,
10676 enum isl_dim_type type, unsigned pos)
10678 return isl_map_dim_is_bounded(set_to_map(set), type, pos);
10681 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10683 static isl_bool has_any_bound(__isl_keep isl_map *map,
10684 enum isl_dim_type type, unsigned pos,
10685 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10686 enum isl_dim_type type, unsigned pos))
10688 int i;
10690 if (!map)
10691 return isl_bool_error;
10693 for (i = 0; i < map->n; ++i) {
10694 isl_bool bounded;
10695 bounded = fn(map->p[i], type, pos);
10696 if (bounded < 0 || bounded)
10697 return bounded;
10700 return isl_bool_false;
10703 /* Return 1 if the specified dim is involved in any lower bound.
10705 isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
10706 enum isl_dim_type type, unsigned pos)
10708 return has_any_bound(set, type, pos,
10709 &isl_basic_map_dim_has_lower_bound);
10712 /* Return 1 if the specified dim is involved in any upper bound.
10714 isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
10715 enum isl_dim_type type, unsigned pos)
10717 return has_any_bound(set, type, pos,
10718 &isl_basic_map_dim_has_upper_bound);
10721 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10723 static isl_bool has_bound(__isl_keep isl_map *map,
10724 enum isl_dim_type type, unsigned pos,
10725 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10726 enum isl_dim_type type, unsigned pos))
10728 int i;
10730 if (!map)
10731 return isl_bool_error;
10733 for (i = 0; i < map->n; ++i) {
10734 isl_bool bounded;
10735 bounded = fn(map->p[i], type, pos);
10736 if (bounded < 0 || !bounded)
10737 return bounded;
10740 return isl_bool_true;
10743 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10745 isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
10746 enum isl_dim_type type, unsigned pos)
10748 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
10751 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10753 isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
10754 enum isl_dim_type type, unsigned pos)
10756 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
10759 /* For each of the "n" variables starting at "first", determine
10760 * the sign of the variable and put the results in the first "n"
10761 * elements of the array "signs".
10762 * Sign
10763 * 1 means that the variable is non-negative
10764 * -1 means that the variable is non-positive
10765 * 0 means the variable attains both positive and negative values.
10767 isl_stat isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
10768 unsigned first, unsigned n, int *signs)
10770 isl_vec *bound = NULL;
10771 struct isl_tab *tab = NULL;
10772 struct isl_tab_undo *snap;
10773 int i;
10775 if (!bset || !signs)
10776 return isl_stat_error;
10778 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
10779 tab = isl_tab_from_basic_set(bset, 0);
10780 if (!bound || !tab)
10781 goto error;
10783 isl_seq_clr(bound->el, bound->size);
10784 isl_int_set_si(bound->el[0], -1);
10786 snap = isl_tab_snap(tab);
10787 for (i = 0; i < n; ++i) {
10788 int empty;
10790 isl_int_set_si(bound->el[1 + first + i], -1);
10791 if (isl_tab_add_ineq(tab, bound->el) < 0)
10792 goto error;
10793 empty = tab->empty;
10794 isl_int_set_si(bound->el[1 + first + i], 0);
10795 if (isl_tab_rollback(tab, snap) < 0)
10796 goto error;
10798 if (empty) {
10799 signs[i] = 1;
10800 continue;
10803 isl_int_set_si(bound->el[1 + first + i], 1);
10804 if (isl_tab_add_ineq(tab, bound->el) < 0)
10805 goto error;
10806 empty = tab->empty;
10807 isl_int_set_si(bound->el[1 + first + i], 0);
10808 if (isl_tab_rollback(tab, snap) < 0)
10809 goto error;
10811 signs[i] = empty ? -1 : 0;
10814 isl_tab_free(tab);
10815 isl_vec_free(bound);
10816 return isl_stat_ok;
10817 error:
10818 isl_tab_free(tab);
10819 isl_vec_free(bound);
10820 return isl_stat_error;
10823 isl_stat isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
10824 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
10826 if (!bset || !signs)
10827 return isl_stat_error;
10828 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
10829 return isl_stat_error);
10831 first += pos(bset->dim, type) - 1;
10832 return isl_basic_set_vars_get_sign(bset, first, n, signs);
10835 /* Is it possible for the integer division "div" to depend (possibly
10836 * indirectly) on any output dimensions?
10838 * If the div is undefined, then we conservatively assume that it
10839 * may depend on them.
10840 * Otherwise, we check if it actually depends on them or on any integer
10841 * divisions that may depend on them.
10843 static isl_bool div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
10845 int i;
10846 unsigned n_out, o_out;
10847 unsigned n_div, o_div;
10849 if (isl_int_is_zero(bmap->div[div][0]))
10850 return isl_bool_true;
10852 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10853 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10855 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
10856 return isl_bool_true;
10858 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10859 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10861 for (i = 0; i < n_div; ++i) {
10862 isl_bool may_involve;
10864 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
10865 continue;
10866 may_involve = div_may_involve_output(bmap, i);
10867 if (may_involve < 0 || may_involve)
10868 return may_involve;
10871 return isl_bool_false;
10874 /* Return the first integer division of "bmap" in the range
10875 * [first, first + n[ that may depend on any output dimensions and
10876 * that has a non-zero coefficient in "c" (where the first coefficient
10877 * in "c" corresponds to integer division "first").
10879 static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
10880 isl_int *c, int first, int n)
10882 int k;
10884 if (!bmap)
10885 return -1;
10887 for (k = first; k < first + n; ++k) {
10888 isl_bool may_involve;
10890 if (isl_int_is_zero(c[k]))
10891 continue;
10892 may_involve = div_may_involve_output(bmap, k);
10893 if (may_involve < 0)
10894 return -1;
10895 if (may_involve)
10896 return k;
10899 return first + n;
10902 /* Look for a pair of inequality constraints in "bmap" of the form
10904 * -l + i >= 0 or i >= l
10905 * and
10906 * n + l - i >= 0 or i <= l + n
10908 * with n < "m" and i the output dimension at position "pos".
10909 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10910 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10911 * and earlier output dimensions, as well as integer divisions that do
10912 * not involve any of the output dimensions.
10914 * Return the index of the first inequality constraint or bmap->n_ineq
10915 * if no such pair can be found.
10917 static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
10918 int pos, isl_int m)
10920 int i, j;
10921 isl_ctx *ctx;
10922 unsigned total;
10923 unsigned n_div, o_div;
10924 unsigned n_out, o_out;
10925 int less;
10927 if (!bmap)
10928 return -1;
10930 ctx = isl_basic_map_get_ctx(bmap);
10931 total = isl_basic_map_total_dim(bmap);
10932 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10933 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10934 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10935 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10936 for (i = 0; i < bmap->n_ineq; ++i) {
10937 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
10938 continue;
10939 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
10940 n_out - (pos + 1)) != -1)
10941 continue;
10942 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
10943 0, n_div) < n_div)
10944 continue;
10945 for (j = i + 1; j < bmap->n_ineq; ++j) {
10946 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
10947 ctx->one))
10948 continue;
10949 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
10950 bmap->ineq[j] + 1, total))
10951 continue;
10952 break;
10954 if (j >= bmap->n_ineq)
10955 continue;
10956 isl_int_add(bmap->ineq[i][0],
10957 bmap->ineq[i][0], bmap->ineq[j][0]);
10958 less = isl_int_abs_lt(bmap->ineq[i][0], m);
10959 isl_int_sub(bmap->ineq[i][0],
10960 bmap->ineq[i][0], bmap->ineq[j][0]);
10961 if (!less)
10962 continue;
10963 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
10964 return i;
10965 else
10966 return j;
10969 return bmap->n_ineq;
10972 /* Return the index of the equality of "bmap" that defines
10973 * the output dimension "pos" in terms of earlier dimensions.
10974 * The equality may also involve integer divisions, as long
10975 * as those integer divisions are defined in terms of
10976 * parameters or input dimensions.
10977 * In this case, *div is set to the number of integer divisions and
10978 * *ineq is set to the number of inequality constraints (provided
10979 * div and ineq are not NULL).
10981 * The equality may also involve a single integer division involving
10982 * the output dimensions (typically only output dimension "pos") as
10983 * long as the coefficient of output dimension "pos" is 1 or -1 and
10984 * there is a pair of constraints i >= l and i <= l + n, with i referring
10985 * to output dimension "pos", l an expression involving only earlier
10986 * dimensions and n smaller than the coefficient of the integer division
10987 * in the equality. In this case, the output dimension can be defined
10988 * in terms of a modulo expression that does not involve the integer division.
10989 * *div is then set to this single integer division and
10990 * *ineq is set to the index of constraint i >= l.
10992 * Return bmap->n_eq if there is no such equality.
10993 * Return -1 on error.
10995 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
10996 int pos, int *div, int *ineq)
10998 int j, k, l;
10999 unsigned n_out, o_out;
11000 unsigned n_div, o_div;
11002 if (!bmap)
11003 return -1;
11005 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11006 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11007 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11008 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11010 if (ineq)
11011 *ineq = bmap->n_ineq;
11012 if (div)
11013 *div = n_div;
11014 for (j = 0; j < bmap->n_eq; ++j) {
11015 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
11016 continue;
11017 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
11018 n_out - (pos + 1)) != -1)
11019 continue;
11020 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11021 0, n_div);
11022 if (k >= n_div)
11023 return j;
11024 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
11025 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
11026 continue;
11027 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11028 k + 1, n_div - (k+1)) < n_div)
11029 continue;
11030 l = find_modulo_constraint_pair(bmap, pos,
11031 bmap->eq[j][o_div + k]);
11032 if (l < 0)
11033 return -1;
11034 if (l >= bmap->n_ineq)
11035 continue;
11036 if (div)
11037 *div = k;
11038 if (ineq)
11039 *ineq = l;
11040 return j;
11043 return bmap->n_eq;
11046 /* Check if the given basic map is obviously single-valued.
11047 * In particular, for each output dimension, check that there is
11048 * an equality that defines the output dimension in terms of
11049 * earlier dimensions.
11051 isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
11053 int i;
11054 unsigned n_out;
11056 if (!bmap)
11057 return isl_bool_error;
11059 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11061 for (i = 0; i < n_out; ++i) {
11062 int eq;
11064 eq = isl_basic_map_output_defining_equality(bmap, i,
11065 NULL, NULL);
11066 if (eq < 0)
11067 return isl_bool_error;
11068 if (eq >= bmap->n_eq)
11069 return isl_bool_false;
11072 return isl_bool_true;
11075 /* Check if the given basic map is single-valued.
11076 * We simply compute
11078 * M \circ M^-1
11080 * and check if the result is a subset of the identity mapping.
11082 isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
11084 isl_space *space;
11085 isl_basic_map *test;
11086 isl_basic_map *id;
11087 isl_bool sv;
11089 sv = isl_basic_map_plain_is_single_valued(bmap);
11090 if (sv < 0 || sv)
11091 return sv;
11093 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
11094 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
11096 space = isl_basic_map_get_space(bmap);
11097 space = isl_space_map_from_set(isl_space_range(space));
11098 id = isl_basic_map_identity(space);
11100 sv = isl_basic_map_is_subset(test, id);
11102 isl_basic_map_free(test);
11103 isl_basic_map_free(id);
11105 return sv;
11108 /* Check if the given map is obviously single-valued.
11110 isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
11112 if (!map)
11113 return isl_bool_error;
11114 if (map->n == 0)
11115 return isl_bool_true;
11116 if (map->n >= 2)
11117 return isl_bool_false;
11119 return isl_basic_map_plain_is_single_valued(map->p[0]);
11122 /* Check if the given map is single-valued.
11123 * We simply compute
11125 * M \circ M^-1
11127 * and check if the result is a subset of the identity mapping.
11129 isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
11131 isl_space *dim;
11132 isl_map *test;
11133 isl_map *id;
11134 isl_bool sv;
11136 sv = isl_map_plain_is_single_valued(map);
11137 if (sv < 0 || sv)
11138 return sv;
11140 test = isl_map_reverse(isl_map_copy(map));
11141 test = isl_map_apply_range(test, isl_map_copy(map));
11143 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
11144 id = isl_map_identity(dim);
11146 sv = isl_map_is_subset(test, id);
11148 isl_map_free(test);
11149 isl_map_free(id);
11151 return sv;
11154 isl_bool isl_map_is_injective(__isl_keep isl_map *map)
11156 isl_bool in;
11158 map = isl_map_copy(map);
11159 map = isl_map_reverse(map);
11160 in = isl_map_is_single_valued(map);
11161 isl_map_free(map);
11163 return in;
11166 /* Check if the given map is obviously injective.
11168 isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
11170 isl_bool in;
11172 map = isl_map_copy(map);
11173 map = isl_map_reverse(map);
11174 in = isl_map_plain_is_single_valued(map);
11175 isl_map_free(map);
11177 return in;
11180 isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
11182 isl_bool sv;
11184 sv = isl_map_is_single_valued(map);
11185 if (sv < 0 || !sv)
11186 return sv;
11188 return isl_map_is_injective(map);
11191 isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
11193 return isl_map_is_single_valued(set_to_map(set));
11196 /* Does "map" only map elements to themselves?
11198 * If the domain and range spaces are different, then "map"
11199 * is considered not to be an identity relation, even if it is empty.
11200 * Otherwise, construct the maximal identity relation and
11201 * check whether "map" is a subset of this relation.
11203 isl_bool isl_map_is_identity(__isl_keep isl_map *map)
11205 isl_space *space;
11206 isl_map *id;
11207 isl_bool equal, is_identity;
11209 space = isl_map_get_space(map);
11210 equal = isl_space_tuple_is_equal(space, isl_dim_in, space, isl_dim_out);
11211 isl_space_free(space);
11212 if (equal < 0 || !equal)
11213 return equal;
11215 id = isl_map_identity(isl_map_get_space(map));
11216 is_identity = isl_map_is_subset(map, id);
11217 isl_map_free(id);
11219 return is_identity;
11222 int isl_map_is_translation(__isl_keep isl_map *map)
11224 int ok;
11225 isl_set *delta;
11227 delta = isl_map_deltas(isl_map_copy(map));
11228 ok = isl_set_is_singleton(delta);
11229 isl_set_free(delta);
11231 return ok;
11234 static int unique(isl_int *p, unsigned pos, unsigned len)
11236 if (isl_seq_first_non_zero(p, pos) != -1)
11237 return 0;
11238 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
11239 return 0;
11240 return 1;
11243 isl_bool isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
11245 int i, j;
11246 unsigned nvar;
11247 unsigned ovar;
11249 if (!bset)
11250 return isl_bool_error;
11252 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
11253 return isl_bool_false;
11255 nvar = isl_basic_set_dim(bset, isl_dim_set);
11256 ovar = isl_space_offset(bset->dim, isl_dim_set);
11257 for (j = 0; j < nvar; ++j) {
11258 int lower = 0, upper = 0;
11259 for (i = 0; i < bset->n_eq; ++i) {
11260 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
11261 continue;
11262 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
11263 return isl_bool_false;
11264 break;
11266 if (i < bset->n_eq)
11267 continue;
11268 for (i = 0; i < bset->n_ineq; ++i) {
11269 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
11270 continue;
11271 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
11272 return isl_bool_false;
11273 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
11274 lower = 1;
11275 else
11276 upper = 1;
11278 if (!lower || !upper)
11279 return isl_bool_false;
11282 return isl_bool_true;
11285 isl_bool isl_set_is_box(__isl_keep isl_set *set)
11287 if (!set)
11288 return isl_bool_error;
11289 if (set->n != 1)
11290 return isl_bool_false;
11292 return isl_basic_set_is_box(set->p[0]);
11295 isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
11297 if (!bset)
11298 return isl_bool_error;
11300 return isl_space_is_wrapping(bset->dim);
11303 isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
11305 if (!set)
11306 return isl_bool_error;
11308 return isl_space_is_wrapping(set->dim);
11311 /* Modify the space of "map" through a call to "change".
11312 * If "can_change" is set (not NULL), then first call it to check
11313 * if the modification is allowed, printing the error message "cannot_change"
11314 * if it is not.
11316 static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
11317 isl_bool (*can_change)(__isl_keep isl_map *map),
11318 const char *cannot_change,
11319 __isl_give isl_space *(*change)(__isl_take isl_space *space))
11321 isl_bool ok;
11322 isl_space *space;
11324 if (!map)
11325 return NULL;
11327 ok = can_change ? can_change(map) : isl_bool_true;
11328 if (ok < 0)
11329 return isl_map_free(map);
11330 if (!ok)
11331 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
11332 return isl_map_free(map));
11334 space = change(isl_map_get_space(map));
11335 map = isl_map_reset_space(map, space);
11337 return map;
11340 /* Is the domain of "map" a wrapped relation?
11342 isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
11344 if (!map)
11345 return isl_bool_error;
11347 return isl_space_domain_is_wrapping(map->dim);
11350 /* Does "map" have a wrapped relation in both domain and range?
11352 isl_bool isl_map_is_product(__isl_keep isl_map *map)
11354 return isl_space_is_product(isl_map_peek_space(map));
11357 /* Is the range of "map" a wrapped relation?
11359 isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
11361 if (!map)
11362 return isl_bool_error;
11364 return isl_space_range_is_wrapping(map->dim);
11367 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
11369 bmap = isl_basic_map_cow(bmap);
11370 if (!bmap)
11371 return NULL;
11373 bmap->dim = isl_space_wrap(bmap->dim);
11374 if (!bmap->dim)
11375 goto error;
11377 bmap = isl_basic_map_finalize(bmap);
11379 return bset_from_bmap(bmap);
11380 error:
11381 isl_basic_map_free(bmap);
11382 return NULL;
11385 /* Given a map A -> B, return the set (A -> B).
11387 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
11389 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
11392 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
11394 bset = isl_basic_set_cow(bset);
11395 if (!bset)
11396 return NULL;
11398 bset->dim = isl_space_unwrap(bset->dim);
11399 if (!bset->dim)
11400 goto error;
11402 bset = isl_basic_set_finalize(bset);
11404 return bset_to_bmap(bset);
11405 error:
11406 isl_basic_set_free(bset);
11407 return NULL;
11410 /* Given a set (A -> B), return the map A -> B.
11411 * Error out if "set" is not of the form (A -> B).
11413 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
11415 return isl_map_change_space(set, &isl_set_is_wrapping,
11416 "not a wrapping set", &isl_space_unwrap);
11419 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
11420 enum isl_dim_type type)
11422 if (!bmap)
11423 return NULL;
11425 if (!isl_space_is_named_or_nested(bmap->dim, type))
11426 return bmap;
11428 bmap = isl_basic_map_cow(bmap);
11429 if (!bmap)
11430 return NULL;
11432 bmap->dim = isl_space_reset(bmap->dim, type);
11433 if (!bmap->dim)
11434 goto error;
11436 bmap = isl_basic_map_finalize(bmap);
11438 return bmap;
11439 error:
11440 isl_basic_map_free(bmap);
11441 return NULL;
11444 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
11445 enum isl_dim_type type)
11447 int i;
11449 if (!map)
11450 return NULL;
11452 if (!isl_space_is_named_or_nested(map->dim, type))
11453 return map;
11455 map = isl_map_cow(map);
11456 if (!map)
11457 return NULL;
11459 for (i = 0; i < map->n; ++i) {
11460 map->p[i] = isl_basic_map_reset(map->p[i], type);
11461 if (!map->p[i])
11462 goto error;
11464 map->dim = isl_space_reset(map->dim, type);
11465 if (!map->dim)
11466 goto error;
11468 return map;
11469 error:
11470 isl_map_free(map);
11471 return NULL;
11474 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
11476 if (!bmap)
11477 return NULL;
11479 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
11480 return bmap;
11482 bmap = isl_basic_map_cow(bmap);
11483 if (!bmap)
11484 return NULL;
11486 bmap->dim = isl_space_flatten(bmap->dim);
11487 if (!bmap->dim)
11488 goto error;
11490 bmap = isl_basic_map_finalize(bmap);
11492 return bmap;
11493 error:
11494 isl_basic_map_free(bmap);
11495 return NULL;
11498 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
11500 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset)));
11503 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
11504 __isl_take isl_basic_map *bmap)
11506 if (!bmap)
11507 return NULL;
11509 if (!bmap->dim->nested[0])
11510 return bmap;
11512 bmap = isl_basic_map_cow(bmap);
11513 if (!bmap)
11514 return NULL;
11516 bmap->dim = isl_space_flatten_domain(bmap->dim);
11517 if (!bmap->dim)
11518 goto error;
11520 bmap = isl_basic_map_finalize(bmap);
11522 return bmap;
11523 error:
11524 isl_basic_map_free(bmap);
11525 return NULL;
11528 __isl_give isl_basic_map *isl_basic_map_flatten_range(
11529 __isl_take isl_basic_map *bmap)
11531 if (!bmap)
11532 return NULL;
11534 if (!bmap->dim->nested[1])
11535 return bmap;
11537 bmap = isl_basic_map_cow(bmap);
11538 if (!bmap)
11539 return NULL;
11541 bmap->dim = isl_space_flatten_range(bmap->dim);
11542 if (!bmap->dim)
11543 goto error;
11545 bmap = isl_basic_map_finalize(bmap);
11547 return bmap;
11548 error:
11549 isl_basic_map_free(bmap);
11550 return NULL;
11553 /* Remove any internal structure from the spaces of domain and range of "map".
11555 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
11557 if (!map)
11558 return NULL;
11560 if (!map->dim->nested[0] && !map->dim->nested[1])
11561 return map;
11563 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
11566 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
11568 return set_from_map(isl_map_flatten(set_to_map(set)));
11571 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
11573 isl_space *dim, *flat_dim;
11574 isl_map *map;
11576 dim = isl_set_get_space(set);
11577 flat_dim = isl_space_flatten(isl_space_copy(dim));
11578 map = isl_map_identity(isl_space_join(isl_space_reverse(dim), flat_dim));
11579 map = isl_map_intersect_domain(map, set);
11581 return map;
11584 /* Remove any internal structure from the space of the domain of "map".
11586 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
11588 if (!map)
11589 return NULL;
11591 if (!map->dim->nested[0])
11592 return map;
11594 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
11597 /* Remove any internal structure from the space of the range of "map".
11599 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
11601 if (!map)
11602 return NULL;
11604 if (!map->dim->nested[1])
11605 return map;
11607 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
11610 /* Reorder the dimensions of "bmap" according to the given dim_map
11611 * and set the dimension specification to "dim" and
11612 * perform Gaussian elimination on the result.
11614 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
11615 __isl_take isl_space *dim, __isl_take struct isl_dim_map *dim_map)
11617 isl_basic_map *res;
11618 unsigned flags;
11620 bmap = isl_basic_map_cow(bmap);
11621 if (!bmap || !dim || !dim_map)
11622 goto error;
11624 flags = bmap->flags;
11625 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
11626 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED);
11627 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
11628 res = isl_basic_map_alloc_space(dim,
11629 bmap->n_div, bmap->n_eq, bmap->n_ineq);
11630 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
11631 if (res)
11632 res->flags = flags;
11633 res = isl_basic_map_gauss(res, NULL);
11634 res = isl_basic_map_finalize(res);
11635 return res;
11636 error:
11637 free(dim_map);
11638 isl_basic_map_free(bmap);
11639 isl_space_free(dim);
11640 return NULL;
11643 /* Reorder the dimensions of "map" according to given reordering.
11645 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
11646 __isl_take isl_reordering *r)
11648 int i;
11649 struct isl_dim_map *dim_map;
11651 map = isl_map_cow(map);
11652 dim_map = isl_dim_map_from_reordering(r);
11653 if (!map || !r || !dim_map)
11654 goto error;
11656 for (i = 0; i < map->n; ++i) {
11657 struct isl_dim_map *dim_map_i;
11659 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
11661 map->p[i] = isl_basic_map_realign(map->p[i],
11662 isl_space_copy(r->dim), dim_map_i);
11664 if (!map->p[i])
11665 goto error;
11668 map = isl_map_reset_space(map, isl_space_copy(r->dim));
11670 isl_reordering_free(r);
11671 free(dim_map);
11672 return map;
11673 error:
11674 free(dim_map);
11675 isl_map_free(map);
11676 isl_reordering_free(r);
11677 return NULL;
11680 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
11681 __isl_take isl_reordering *r)
11683 return set_from_map(isl_map_realign(set_to_map(set), r));
11686 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
11687 __isl_take isl_space *model)
11689 isl_ctx *ctx;
11690 isl_bool aligned;
11692 if (!map || !model)
11693 goto error;
11695 ctx = isl_space_get_ctx(model);
11696 if (!isl_space_has_named_params(model))
11697 isl_die(ctx, isl_error_invalid,
11698 "model has unnamed parameters", goto error);
11699 if (isl_map_check_named_params(map) < 0)
11700 goto error;
11701 aligned = isl_map_space_has_equal_params(map, model);
11702 if (aligned < 0)
11703 goto error;
11704 if (!aligned) {
11705 isl_reordering *exp;
11707 model = isl_space_drop_dims(model, isl_dim_in,
11708 0, isl_space_dim(model, isl_dim_in));
11709 model = isl_space_drop_dims(model, isl_dim_out,
11710 0, isl_space_dim(model, isl_dim_out));
11711 exp = isl_parameter_alignment_reordering(map->dim, model);
11712 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
11713 map = isl_map_realign(map, exp);
11716 isl_space_free(model);
11717 return map;
11718 error:
11719 isl_space_free(model);
11720 isl_map_free(map);
11721 return NULL;
11724 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
11725 __isl_take isl_space *model)
11727 return isl_map_align_params(set, model);
11730 /* Align the parameters of "bmap" to those of "model", introducing
11731 * additional parameters if needed.
11733 __isl_give isl_basic_map *isl_basic_map_align_params(
11734 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
11736 isl_ctx *ctx;
11737 isl_bool equal_params;
11739 if (!bmap || !model)
11740 goto error;
11742 ctx = isl_space_get_ctx(model);
11743 if (!isl_space_has_named_params(model))
11744 isl_die(ctx, isl_error_invalid,
11745 "model has unnamed parameters", goto error);
11746 if (!isl_space_has_named_params(bmap->dim))
11747 isl_die(ctx, isl_error_invalid,
11748 "relation has unnamed parameters", goto error);
11749 equal_params = isl_space_has_equal_params(bmap->dim, model);
11750 if (equal_params < 0)
11751 goto error;
11752 if (!equal_params) {
11753 isl_reordering *exp;
11754 struct isl_dim_map *dim_map;
11756 model = isl_space_drop_dims(model, isl_dim_in,
11757 0, isl_space_dim(model, isl_dim_in));
11758 model = isl_space_drop_dims(model, isl_dim_out,
11759 0, isl_space_dim(model, isl_dim_out));
11760 exp = isl_parameter_alignment_reordering(bmap->dim, model);
11761 exp = isl_reordering_extend_space(exp,
11762 isl_basic_map_get_space(bmap));
11763 dim_map = isl_dim_map_from_reordering(exp);
11764 bmap = isl_basic_map_realign(bmap,
11765 exp ? isl_space_copy(exp->dim) : NULL,
11766 isl_dim_map_extend(dim_map, bmap));
11767 isl_reordering_free(exp);
11768 free(dim_map);
11771 isl_space_free(model);
11772 return bmap;
11773 error:
11774 isl_space_free(model);
11775 isl_basic_map_free(bmap);
11776 return NULL;
11779 /* Do "bset" and "space" have the same parameters?
11781 isl_bool isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set *bset,
11782 __isl_keep isl_space *space)
11784 isl_space *bset_space;
11786 bset_space = isl_basic_set_peek_space(bset);
11787 return isl_space_has_equal_params(bset_space, space);
11790 /* Do "map" and "space" have the same parameters?
11792 isl_bool isl_map_space_has_equal_params(__isl_keep isl_map *map,
11793 __isl_keep isl_space *space)
11795 isl_space *map_space;
11797 map_space = isl_map_peek_space(map);
11798 return isl_space_has_equal_params(map_space, space);
11801 /* Do "set" and "space" have the same parameters?
11803 isl_bool isl_set_space_has_equal_params(__isl_keep isl_set *set,
11804 __isl_keep isl_space *space)
11806 return isl_map_space_has_equal_params(set_to_map(set), space);
11809 /* Align the parameters of "bset" to those of "model", introducing
11810 * additional parameters if needed.
11812 __isl_give isl_basic_set *isl_basic_set_align_params(
11813 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
11815 return isl_basic_map_align_params(bset, model);
11818 __isl_give isl_mat *isl_basic_map_equalities_matrix(
11819 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11820 enum isl_dim_type c2, enum isl_dim_type c3,
11821 enum isl_dim_type c4, enum isl_dim_type c5)
11823 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11824 struct isl_mat *mat;
11825 int i, j, k;
11826 int pos;
11828 if (!bmap)
11829 return NULL;
11830 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
11831 isl_basic_map_total_dim(bmap) + 1);
11832 if (!mat)
11833 return NULL;
11834 for (i = 0; i < bmap->n_eq; ++i)
11835 for (j = 0, pos = 0; j < 5; ++j) {
11836 int off = isl_basic_map_offset(bmap, c[j]);
11837 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11838 isl_int_set(mat->row[i][pos],
11839 bmap->eq[i][off + k]);
11840 ++pos;
11844 return mat;
11847 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
11848 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11849 enum isl_dim_type c2, enum isl_dim_type c3,
11850 enum isl_dim_type c4, enum isl_dim_type c5)
11852 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11853 struct isl_mat *mat;
11854 int i, j, k;
11855 int pos;
11857 if (!bmap)
11858 return NULL;
11859 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
11860 isl_basic_map_total_dim(bmap) + 1);
11861 if (!mat)
11862 return NULL;
11863 for (i = 0; i < bmap->n_ineq; ++i)
11864 for (j = 0, pos = 0; j < 5; ++j) {
11865 int off = isl_basic_map_offset(bmap, c[j]);
11866 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11867 isl_int_set(mat->row[i][pos],
11868 bmap->ineq[i][off + k]);
11869 ++pos;
11873 return mat;
11876 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
11877 __isl_take isl_space *dim,
11878 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11879 enum isl_dim_type c2, enum isl_dim_type c3,
11880 enum isl_dim_type c4, enum isl_dim_type c5)
11882 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11883 isl_basic_map *bmap;
11884 unsigned total;
11885 unsigned extra;
11886 int i, j, k, l;
11887 int pos;
11889 if (!dim || !eq || !ineq)
11890 goto error;
11892 if (eq->n_col != ineq->n_col)
11893 isl_die(dim->ctx, isl_error_invalid,
11894 "equalities and inequalities matrices should have "
11895 "same number of columns", goto error);
11897 total = 1 + isl_space_dim(dim, isl_dim_all);
11899 if (eq->n_col < total)
11900 isl_die(dim->ctx, isl_error_invalid,
11901 "number of columns too small", goto error);
11903 extra = eq->n_col - total;
11905 bmap = isl_basic_map_alloc_space(isl_space_copy(dim), extra,
11906 eq->n_row, ineq->n_row);
11907 if (!bmap)
11908 goto error;
11909 for (i = 0; i < extra; ++i) {
11910 k = isl_basic_map_alloc_div(bmap);
11911 if (k < 0)
11912 goto error;
11913 isl_int_set_si(bmap->div[k][0], 0);
11915 for (i = 0; i < eq->n_row; ++i) {
11916 l = isl_basic_map_alloc_equality(bmap);
11917 if (l < 0)
11918 goto error;
11919 for (j = 0, pos = 0; j < 5; ++j) {
11920 int off = isl_basic_map_offset(bmap, c[j]);
11921 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11922 isl_int_set(bmap->eq[l][off + k],
11923 eq->row[i][pos]);
11924 ++pos;
11928 for (i = 0; i < ineq->n_row; ++i) {
11929 l = isl_basic_map_alloc_inequality(bmap);
11930 if (l < 0)
11931 goto error;
11932 for (j = 0, pos = 0; j < 5; ++j) {
11933 int off = isl_basic_map_offset(bmap, c[j]);
11934 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11935 isl_int_set(bmap->ineq[l][off + k],
11936 ineq->row[i][pos]);
11937 ++pos;
11942 isl_space_free(dim);
11943 isl_mat_free(eq);
11944 isl_mat_free(ineq);
11946 bmap = isl_basic_map_simplify(bmap);
11947 return isl_basic_map_finalize(bmap);
11948 error:
11949 isl_space_free(dim);
11950 isl_mat_free(eq);
11951 isl_mat_free(ineq);
11952 return NULL;
11955 __isl_give isl_mat *isl_basic_set_equalities_matrix(
11956 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11957 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11959 return isl_basic_map_equalities_matrix(bset_to_bmap(bset),
11960 c1, c2, c3, c4, isl_dim_in);
11963 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
11964 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11965 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11967 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset),
11968 c1, c2, c3, c4, isl_dim_in);
11971 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
11972 __isl_take isl_space *dim,
11973 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11974 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11976 isl_basic_map *bmap;
11977 bmap = isl_basic_map_from_constraint_matrices(dim, eq, ineq,
11978 c1, c2, c3, c4, isl_dim_in);
11979 return bset_from_bmap(bmap);
11982 isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
11984 if (!bmap)
11985 return isl_bool_error;
11987 return isl_space_can_zip(bmap->dim);
11990 isl_bool isl_map_can_zip(__isl_keep isl_map *map)
11992 if (!map)
11993 return isl_bool_error;
11995 return isl_space_can_zip(map->dim);
11998 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
11999 * (A -> C) -> (B -> D).
12001 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
12003 unsigned pos;
12004 unsigned n1;
12005 unsigned n2;
12007 if (!bmap)
12008 return NULL;
12010 if (!isl_basic_map_can_zip(bmap))
12011 isl_die(bmap->ctx, isl_error_invalid,
12012 "basic map cannot be zipped", goto error);
12013 pos = isl_basic_map_offset(bmap, isl_dim_in) +
12014 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
12015 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
12016 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
12017 bmap = isl_basic_map_cow(bmap);
12018 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
12019 if (!bmap)
12020 return NULL;
12021 bmap->dim = isl_space_zip(bmap->dim);
12022 if (!bmap->dim)
12023 goto error;
12024 bmap = isl_basic_map_mark_final(bmap);
12025 return bmap;
12026 error:
12027 isl_basic_map_free(bmap);
12028 return NULL;
12031 /* Given a map (A -> B) -> (C -> D), return the corresponding map
12032 * (A -> C) -> (B -> D).
12034 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
12036 int i;
12038 if (!map)
12039 return NULL;
12041 if (!isl_map_can_zip(map))
12042 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
12043 goto error);
12045 map = isl_map_cow(map);
12046 if (!map)
12047 return NULL;
12049 for (i = 0; i < map->n; ++i) {
12050 map->p[i] = isl_basic_map_zip(map->p[i]);
12051 if (!map->p[i])
12052 goto error;
12055 map->dim = isl_space_zip(map->dim);
12056 if (!map->dim)
12057 goto error;
12059 return map;
12060 error:
12061 isl_map_free(map);
12062 return NULL;
12065 /* Can we apply isl_basic_map_curry to "bmap"?
12066 * That is, does it have a nested relation in its domain?
12068 isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
12070 if (!bmap)
12071 return isl_bool_error;
12073 return isl_space_can_curry(bmap->dim);
12076 /* Can we apply isl_map_curry to "map"?
12077 * That is, does it have a nested relation in its domain?
12079 isl_bool isl_map_can_curry(__isl_keep isl_map *map)
12081 if (!map)
12082 return isl_bool_error;
12084 return isl_space_can_curry(map->dim);
12087 /* Given a basic map (A -> B) -> C, return the corresponding basic map
12088 * A -> (B -> C).
12090 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
12093 if (!bmap)
12094 return NULL;
12096 if (!isl_basic_map_can_curry(bmap))
12097 isl_die(bmap->ctx, isl_error_invalid,
12098 "basic map cannot be curried", goto error);
12099 bmap = isl_basic_map_cow(bmap);
12100 if (!bmap)
12101 return NULL;
12102 bmap->dim = isl_space_curry(bmap->dim);
12103 if (!bmap->dim)
12104 goto error;
12105 bmap = isl_basic_map_mark_final(bmap);
12106 return bmap;
12107 error:
12108 isl_basic_map_free(bmap);
12109 return NULL;
12112 /* Given a map (A -> B) -> C, return the corresponding map
12113 * A -> (B -> C).
12115 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
12117 return isl_map_change_space(map, &isl_map_can_curry,
12118 "map cannot be curried", &isl_space_curry);
12121 /* Can isl_map_range_curry be applied to "map"?
12122 * That is, does it have a nested relation in its range,
12123 * the domain of which is itself a nested relation?
12125 isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
12127 if (!map)
12128 return isl_bool_error;
12130 return isl_space_can_range_curry(map->dim);
12133 /* Given a map A -> ((B -> C) -> D), return the corresponding map
12134 * A -> (B -> (C -> D)).
12136 __isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
12138 return isl_map_change_space(map, &isl_map_can_range_curry,
12139 "map range cannot be curried",
12140 &isl_space_range_curry);
12143 /* Can we apply isl_basic_map_uncurry to "bmap"?
12144 * That is, does it have a nested relation in its domain?
12146 isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
12148 if (!bmap)
12149 return isl_bool_error;
12151 return isl_space_can_uncurry(bmap->dim);
12154 /* Can we apply isl_map_uncurry to "map"?
12155 * That is, does it have a nested relation in its domain?
12157 isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
12159 if (!map)
12160 return isl_bool_error;
12162 return isl_space_can_uncurry(map->dim);
12165 /* Given a basic map A -> (B -> C), return the corresponding basic map
12166 * (A -> B) -> C.
12168 __isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
12171 if (!bmap)
12172 return NULL;
12174 if (!isl_basic_map_can_uncurry(bmap))
12175 isl_die(bmap->ctx, isl_error_invalid,
12176 "basic map cannot be uncurried",
12177 return isl_basic_map_free(bmap));
12178 bmap = isl_basic_map_cow(bmap);
12179 if (!bmap)
12180 return NULL;
12181 bmap->dim = isl_space_uncurry(bmap->dim);
12182 if (!bmap->dim)
12183 return isl_basic_map_free(bmap);
12184 bmap = isl_basic_map_mark_final(bmap);
12185 return bmap;
12188 /* Given a map A -> (B -> C), return the corresponding map
12189 * (A -> B) -> C.
12191 __isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
12193 return isl_map_change_space(map, &isl_map_can_uncurry,
12194 "map cannot be uncurried", &isl_space_uncurry);
12197 /* Construct a basic map mapping the domain of the affine expression
12198 * to a one-dimensional range prescribed by the affine expression.
12199 * If "rational" is set, then construct a rational basic map.
12201 * A NaN affine expression cannot be converted to a basic map.
12203 static __isl_give isl_basic_map *isl_basic_map_from_aff2(
12204 __isl_take isl_aff *aff, int rational)
12206 int k;
12207 int pos;
12208 isl_bool is_nan;
12209 isl_local_space *ls;
12210 isl_basic_map *bmap = NULL;
12212 if (!aff)
12213 return NULL;
12214 is_nan = isl_aff_is_nan(aff);
12215 if (is_nan < 0)
12216 goto error;
12217 if (is_nan)
12218 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
12219 "cannot convert NaN", goto error);
12221 ls = isl_aff_get_local_space(aff);
12222 bmap = isl_basic_map_from_local_space(ls);
12223 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
12224 k = isl_basic_map_alloc_equality(bmap);
12225 if (k < 0)
12226 goto error;
12228 pos = isl_basic_map_offset(bmap, isl_dim_out);
12229 isl_seq_cpy(bmap->eq[k], aff->v->el + 1, pos);
12230 isl_int_neg(bmap->eq[k][pos], aff->v->el[0]);
12231 isl_seq_cpy(bmap->eq[k] + pos + 1, aff->v->el + 1 + pos,
12232 aff->v->size - (pos + 1));
12234 isl_aff_free(aff);
12235 if (rational)
12236 bmap = isl_basic_map_set_rational(bmap);
12237 bmap = isl_basic_map_gauss(bmap, NULL);
12238 bmap = isl_basic_map_finalize(bmap);
12239 return bmap;
12240 error:
12241 isl_aff_free(aff);
12242 isl_basic_map_free(bmap);
12243 return NULL;
12246 /* Construct a basic map mapping the domain of the affine expression
12247 * to a one-dimensional range prescribed by the affine expression.
12249 __isl_give isl_basic_map *isl_basic_map_from_aff(__isl_take isl_aff *aff)
12251 return isl_basic_map_from_aff2(aff, 0);
12254 /* Construct a map mapping the domain of the affine expression
12255 * to a one-dimensional range prescribed by the affine expression.
12257 __isl_give isl_map *isl_map_from_aff(__isl_take isl_aff *aff)
12259 isl_basic_map *bmap;
12261 bmap = isl_basic_map_from_aff(aff);
12262 return isl_map_from_basic_map(bmap);
12265 /* Construct a basic map mapping the domain the multi-affine expression
12266 * to its range, with each dimension in the range equated to the
12267 * corresponding affine expression.
12268 * If "rational" is set, then construct a rational basic map.
12270 __isl_give isl_basic_map *isl_basic_map_from_multi_aff2(
12271 __isl_take isl_multi_aff *maff, int rational)
12273 int i;
12274 isl_space *space;
12275 isl_basic_map *bmap;
12277 if (!maff)
12278 return NULL;
12280 if (isl_space_dim(maff->space, isl_dim_out) != maff->n)
12281 isl_die(isl_multi_aff_get_ctx(maff), isl_error_internal,
12282 "invalid space", goto error);
12284 space = isl_space_domain(isl_multi_aff_get_space(maff));
12285 bmap = isl_basic_map_universe(isl_space_from_domain(space));
12286 if (rational)
12287 bmap = isl_basic_map_set_rational(bmap);
12289 for (i = 0; i < maff->n; ++i) {
12290 isl_aff *aff;
12291 isl_basic_map *bmap_i;
12293 aff = isl_aff_copy(maff->u.p[i]);
12294 bmap_i = isl_basic_map_from_aff2(aff, rational);
12296 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
12299 bmap = isl_basic_map_reset_space(bmap, isl_multi_aff_get_space(maff));
12301 isl_multi_aff_free(maff);
12302 return bmap;
12303 error:
12304 isl_multi_aff_free(maff);
12305 return NULL;
12308 /* Construct a basic map mapping the domain the multi-affine expression
12309 * to its range, with each dimension in the range equated to the
12310 * corresponding affine expression.
12312 __isl_give isl_basic_map *isl_basic_map_from_multi_aff(
12313 __isl_take isl_multi_aff *ma)
12315 return isl_basic_map_from_multi_aff2(ma, 0);
12318 /* Construct a map mapping the domain the multi-affine expression
12319 * to its range, with each dimension in the range equated to the
12320 * corresponding affine expression.
12322 __isl_give isl_map *isl_map_from_multi_aff(__isl_take isl_multi_aff *maff)
12324 isl_basic_map *bmap;
12326 bmap = isl_basic_map_from_multi_aff(maff);
12327 return isl_map_from_basic_map(bmap);
12330 /* Construct a basic map mapping a domain in the given space to
12331 * to an n-dimensional range, with n the number of elements in the list,
12332 * where each coordinate in the range is prescribed by the
12333 * corresponding affine expression.
12334 * The domains of all affine expressions in the list are assumed to match
12335 * domain_dim.
12337 __isl_give isl_basic_map *isl_basic_map_from_aff_list(
12338 __isl_take isl_space *domain_dim, __isl_take isl_aff_list *list)
12340 int i;
12341 isl_space *dim;
12342 isl_basic_map *bmap;
12344 if (!list)
12345 return NULL;
12347 dim = isl_space_from_domain(domain_dim);
12348 bmap = isl_basic_map_universe(dim);
12350 for (i = 0; i < list->n; ++i) {
12351 isl_aff *aff;
12352 isl_basic_map *bmap_i;
12354 aff = isl_aff_copy(list->p[i]);
12355 bmap_i = isl_basic_map_from_aff(aff);
12357 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
12360 isl_aff_list_free(list);
12361 return bmap;
12364 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
12365 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12367 return isl_map_equate(set, type1, pos1, type2, pos2);
12370 /* Construct a basic map where the given dimensions are equal to each other.
12372 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
12373 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12375 isl_basic_map *bmap = NULL;
12376 int i;
12378 if (!space)
12379 return NULL;
12381 if (pos1 >= isl_space_dim(space, type1))
12382 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12383 "index out of bounds", goto error);
12384 if (pos2 >= isl_space_dim(space, type2))
12385 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12386 "index out of bounds", goto error);
12388 if (type1 == type2 && pos1 == pos2)
12389 return isl_basic_map_universe(space);
12391 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
12392 i = isl_basic_map_alloc_equality(bmap);
12393 if (i < 0)
12394 goto error;
12395 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12396 pos1 += isl_basic_map_offset(bmap, type1);
12397 pos2 += isl_basic_map_offset(bmap, type2);
12398 isl_int_set_si(bmap->eq[i][pos1], -1);
12399 isl_int_set_si(bmap->eq[i][pos2], 1);
12400 bmap = isl_basic_map_finalize(bmap);
12401 isl_space_free(space);
12402 return bmap;
12403 error:
12404 isl_space_free(space);
12405 isl_basic_map_free(bmap);
12406 return NULL;
12409 /* Add a constraint imposing that the given two dimensions are equal.
12411 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
12412 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12414 isl_basic_map *eq;
12416 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12418 bmap = isl_basic_map_intersect(bmap, eq);
12420 return bmap;
12423 /* Add a constraint imposing that the given two dimensions are equal.
12425 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
12426 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12428 isl_basic_map *bmap;
12430 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
12432 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12434 return map;
12437 /* Add a constraint imposing that the given two dimensions have opposite values.
12439 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
12440 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12442 isl_basic_map *bmap = NULL;
12443 int i;
12445 if (!map)
12446 return NULL;
12448 if (pos1 >= isl_map_dim(map, type1))
12449 isl_die(map->ctx, isl_error_invalid,
12450 "index out of bounds", goto error);
12451 if (pos2 >= isl_map_dim(map, type2))
12452 isl_die(map->ctx, isl_error_invalid,
12453 "index out of bounds", goto error);
12455 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
12456 i = isl_basic_map_alloc_equality(bmap);
12457 if (i < 0)
12458 goto error;
12459 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12460 pos1 += isl_basic_map_offset(bmap, type1);
12461 pos2 += isl_basic_map_offset(bmap, type2);
12462 isl_int_set_si(bmap->eq[i][pos1], 1);
12463 isl_int_set_si(bmap->eq[i][pos2], 1);
12464 bmap = isl_basic_map_finalize(bmap);
12466 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12468 return map;
12469 error:
12470 isl_basic_map_free(bmap);
12471 isl_map_free(map);
12472 return NULL;
12475 /* Construct a constraint imposing that the value of the first dimension is
12476 * greater than or equal to that of the second.
12478 static __isl_give isl_constraint *constraint_order_ge(
12479 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
12480 enum isl_dim_type type2, int pos2)
12482 isl_constraint *c;
12484 if (!space)
12485 return NULL;
12487 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
12489 if (pos1 >= isl_constraint_dim(c, type1))
12490 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12491 "index out of bounds", return isl_constraint_free(c));
12492 if (pos2 >= isl_constraint_dim(c, type2))
12493 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12494 "index out of bounds", return isl_constraint_free(c));
12496 if (type1 == type2 && pos1 == pos2)
12497 return c;
12499 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
12500 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
12502 return c;
12505 /* Add a constraint imposing that the value of the first dimension is
12506 * greater than or equal to that of the second.
12508 __isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
12509 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12511 isl_constraint *c;
12512 isl_space *space;
12514 if (type1 == type2 && pos1 == pos2)
12515 return bmap;
12516 space = isl_basic_map_get_space(bmap);
12517 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12518 bmap = isl_basic_map_add_constraint(bmap, c);
12520 return bmap;
12523 /* Add a constraint imposing that the value of the first dimension is
12524 * greater than or equal to that of the second.
12526 __isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
12527 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12529 isl_constraint *c;
12530 isl_space *space;
12532 if (type1 == type2 && pos1 == pos2)
12533 return map;
12534 space = isl_map_get_space(map);
12535 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12536 map = isl_map_add_constraint(map, c);
12538 return map;
12541 /* Add a constraint imposing that the value of the first dimension is
12542 * less than or equal to that of the second.
12544 __isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
12545 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12547 return isl_map_order_ge(map, type2, pos2, type1, pos1);
12550 /* Construct a basic map where the value of the first dimension is
12551 * greater than that of the second.
12553 static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
12554 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12556 isl_basic_map *bmap = NULL;
12557 int i;
12559 if (!space)
12560 return NULL;
12562 if (pos1 >= isl_space_dim(space, type1))
12563 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12564 "index out of bounds", goto error);
12565 if (pos2 >= isl_space_dim(space, type2))
12566 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12567 "index out of bounds", goto error);
12569 if (type1 == type2 && pos1 == pos2)
12570 return isl_basic_map_empty(space);
12572 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
12573 i = isl_basic_map_alloc_inequality(bmap);
12574 if (i < 0)
12575 return isl_basic_map_free(bmap);
12576 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
12577 pos1 += isl_basic_map_offset(bmap, type1);
12578 pos2 += isl_basic_map_offset(bmap, type2);
12579 isl_int_set_si(bmap->ineq[i][pos1], 1);
12580 isl_int_set_si(bmap->ineq[i][pos2], -1);
12581 isl_int_set_si(bmap->ineq[i][0], -1);
12582 bmap = isl_basic_map_finalize(bmap);
12584 return bmap;
12585 error:
12586 isl_space_free(space);
12587 isl_basic_map_free(bmap);
12588 return NULL;
12591 /* Add a constraint imposing that the value of the first dimension is
12592 * greater than that of the second.
12594 __isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
12595 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12597 isl_basic_map *gt;
12599 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12601 bmap = isl_basic_map_intersect(bmap, gt);
12603 return bmap;
12606 /* Add a constraint imposing that the value of the first dimension is
12607 * greater than that of the second.
12609 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
12610 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12612 isl_basic_map *bmap;
12614 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
12616 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12618 return map;
12621 /* Add a constraint imposing that the value of the first dimension is
12622 * smaller than that of the second.
12624 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
12625 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12627 return isl_map_order_gt(map, type2, pos2, type1, pos1);
12630 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
12631 int pos)
12633 isl_aff *div;
12634 isl_local_space *ls;
12636 if (!bmap)
12637 return NULL;
12639 if (!isl_basic_map_divs_known(bmap))
12640 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12641 "some divs are unknown", return NULL);
12643 ls = isl_basic_map_get_local_space(bmap);
12644 div = isl_local_space_get_div(ls, pos);
12645 isl_local_space_free(ls);
12647 return div;
12650 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
12651 int pos)
12653 return isl_basic_map_get_div(bset, pos);
12656 /* Plug in "subs" for dimension "type", "pos" of "bset".
12658 * Let i be the dimension to replace and let "subs" be of the form
12660 * f/d
12662 * Any integer division with a non-zero coefficient for i,
12664 * floor((a i + g)/m)
12666 * is replaced by
12668 * floor((a f + d g)/(m d))
12670 * Constraints of the form
12672 * a i + g
12674 * are replaced by
12676 * a f + d g
12678 * We currently require that "subs" is an integral expression.
12679 * Handling rational expressions may require us to add stride constraints
12680 * as we do in isl_basic_set_preimage_multi_aff.
12682 __isl_give isl_basic_set *isl_basic_set_substitute(
12683 __isl_take isl_basic_set *bset,
12684 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12686 int i;
12687 isl_int v;
12688 isl_ctx *ctx;
12690 if (bset && isl_basic_set_plain_is_empty(bset))
12691 return bset;
12693 bset = isl_basic_set_cow(bset);
12694 if (!bset || !subs)
12695 goto error;
12697 ctx = isl_basic_set_get_ctx(bset);
12698 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
12699 isl_die(ctx, isl_error_invalid,
12700 "spaces don't match", goto error);
12701 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
12702 isl_die(ctx, isl_error_unsupported,
12703 "cannot handle divs yet", goto error);
12704 if (!isl_int_is_one(subs->v->el[0]))
12705 isl_die(ctx, isl_error_invalid,
12706 "can only substitute integer expressions", goto error);
12708 pos += isl_basic_set_offset(bset, type);
12710 isl_int_init(v);
12712 for (i = 0; i < bset->n_eq; ++i) {
12713 if (isl_int_is_zero(bset->eq[i][pos]))
12714 continue;
12715 isl_int_set(v, bset->eq[i][pos]);
12716 isl_int_set_si(bset->eq[i][pos], 0);
12717 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
12718 v, subs->v->el + 1, subs->v->size - 1);
12721 for (i = 0; i < bset->n_ineq; ++i) {
12722 if (isl_int_is_zero(bset->ineq[i][pos]))
12723 continue;
12724 isl_int_set(v, bset->ineq[i][pos]);
12725 isl_int_set_si(bset->ineq[i][pos], 0);
12726 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
12727 v, subs->v->el + 1, subs->v->size - 1);
12730 for (i = 0; i < bset->n_div; ++i) {
12731 if (isl_int_is_zero(bset->div[i][1 + pos]))
12732 continue;
12733 isl_int_set(v, bset->div[i][1 + pos]);
12734 isl_int_set_si(bset->div[i][1 + pos], 0);
12735 isl_seq_combine(bset->div[i] + 1,
12736 subs->v->el[0], bset->div[i] + 1,
12737 v, subs->v->el + 1, subs->v->size - 1);
12738 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
12741 isl_int_clear(v);
12743 bset = isl_basic_set_simplify(bset);
12744 return isl_basic_set_finalize(bset);
12745 error:
12746 isl_basic_set_free(bset);
12747 return NULL;
12750 /* Plug in "subs" for dimension "type", "pos" of "set".
12752 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
12753 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12755 int i;
12757 if (set && isl_set_plain_is_empty(set))
12758 return set;
12760 set = isl_set_cow(set);
12761 if (!set || !subs)
12762 goto error;
12764 for (i = set->n - 1; i >= 0; --i) {
12765 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
12766 if (remove_if_empty(set, i) < 0)
12767 goto error;
12770 return set;
12771 error:
12772 isl_set_free(set);
12773 return NULL;
12776 /* Check if the range of "ma" is compatible with the domain or range
12777 * (depending on "type") of "bmap".
12779 static isl_stat check_basic_map_compatible_range_multi_aff(
12780 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
12781 __isl_keep isl_multi_aff *ma)
12783 isl_bool m;
12784 isl_space *ma_space;
12786 ma_space = isl_multi_aff_get_space(ma);
12788 m = isl_space_has_equal_params(bmap->dim, ma_space);
12789 if (m < 0)
12790 goto error;
12791 if (!m)
12792 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12793 "parameters don't match", goto error);
12794 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
12795 if (m < 0)
12796 goto error;
12797 if (!m)
12798 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12799 "spaces don't match", goto error);
12801 isl_space_free(ma_space);
12802 return isl_stat_ok;
12803 error:
12804 isl_space_free(ma_space);
12805 return isl_stat_error;
12808 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12809 * coefficients before the transformed range of dimensions,
12810 * the "n_after" coefficients after the transformed range of dimensions
12811 * and the coefficients of the other divs in "bmap".
12813 static int set_ma_divs(__isl_keep isl_basic_map *bmap,
12814 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
12816 int i;
12817 int n_param;
12818 int n_set;
12819 isl_local_space *ls;
12821 if (n_div == 0)
12822 return 0;
12824 ls = isl_aff_get_domain_local_space(ma->u.p[0]);
12825 if (!ls)
12826 return -1;
12828 n_param = isl_local_space_dim(ls, isl_dim_param);
12829 n_set = isl_local_space_dim(ls, isl_dim_set);
12830 for (i = 0; i < n_div; ++i) {
12831 int o_bmap = 0, o_ls = 0;
12833 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
12834 o_bmap += 1 + 1 + n_param;
12835 o_ls += 1 + 1 + n_param;
12836 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
12837 o_bmap += n_before;
12838 isl_seq_cpy(bmap->div[i] + o_bmap,
12839 ls->div->row[i] + o_ls, n_set);
12840 o_bmap += n_set;
12841 o_ls += n_set;
12842 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
12843 o_bmap += n_after;
12844 isl_seq_cpy(bmap->div[i] + o_bmap,
12845 ls->div->row[i] + o_ls, n_div);
12846 o_bmap += n_div;
12847 o_ls += n_div;
12848 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
12849 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
12850 goto error;
12853 isl_local_space_free(ls);
12854 return 0;
12855 error:
12856 isl_local_space_free(ls);
12857 return -1;
12860 /* How many stride constraints does "ma" enforce?
12861 * That is, how many of the affine expressions have a denominator
12862 * different from one?
12864 static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
12866 int i;
12867 int strides = 0;
12869 for (i = 0; i < ma->n; ++i)
12870 if (!isl_int_is_one(ma->u.p[i]->v->el[0]))
12871 strides++;
12873 return strides;
12876 /* For each affine expression in ma of the form
12878 * x_i = (f_i y + h_i)/m_i
12880 * with m_i different from one, add a constraint to "bmap"
12881 * of the form
12883 * f_i y + h_i = m_i alpha_i
12885 * with alpha_i an additional existentially quantified variable.
12887 * The input variables of "ma" correspond to a subset of the variables
12888 * of "bmap". There are "n_before" variables in "bmap" before this
12889 * subset and "n_after" variables after this subset.
12890 * The integer divisions of the affine expressions in "ma" are assumed
12891 * to have been aligned. There are "n_div_ma" of them and
12892 * they appear first in "bmap", straight after the "n_after" variables.
12894 static __isl_give isl_basic_map *add_ma_strides(
12895 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
12896 int n_before, int n_after, int n_div_ma)
12898 int i, k;
12899 int div;
12900 int total;
12901 int n_param;
12902 int n_in;
12904 total = isl_basic_map_total_dim(bmap);
12905 n_param = isl_multi_aff_dim(ma, isl_dim_param);
12906 n_in = isl_multi_aff_dim(ma, isl_dim_in);
12907 for (i = 0; i < ma->n; ++i) {
12908 int o_bmap = 0, o_ma = 1;
12910 if (isl_int_is_one(ma->u.p[i]->v->el[0]))
12911 continue;
12912 div = isl_basic_map_alloc_div(bmap);
12913 k = isl_basic_map_alloc_equality(bmap);
12914 if (div < 0 || k < 0)
12915 goto error;
12916 isl_int_set_si(bmap->div[div][0], 0);
12917 isl_seq_cpy(bmap->eq[k] + o_bmap,
12918 ma->u.p[i]->v->el + o_ma, 1 + n_param);
12919 o_bmap += 1 + n_param;
12920 o_ma += 1 + n_param;
12921 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
12922 o_bmap += n_before;
12923 isl_seq_cpy(bmap->eq[k] + o_bmap,
12924 ma->u.p[i]->v->el + o_ma, n_in);
12925 o_bmap += n_in;
12926 o_ma += n_in;
12927 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
12928 o_bmap += n_after;
12929 isl_seq_cpy(bmap->eq[k] + o_bmap,
12930 ma->u.p[i]->v->el + o_ma, n_div_ma);
12931 o_bmap += n_div_ma;
12932 o_ma += n_div_ma;
12933 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
12934 isl_int_neg(bmap->eq[k][1 + total], ma->u.p[i]->v->el[0]);
12935 total++;
12938 return bmap;
12939 error:
12940 isl_basic_map_free(bmap);
12941 return NULL;
12944 /* Replace the domain or range space (depending on "type) of "space" by "set".
12946 static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
12947 enum isl_dim_type type, __isl_take isl_space *set)
12949 if (type == isl_dim_in) {
12950 space = isl_space_range(space);
12951 space = isl_space_map_from_domain_and_range(set, space);
12952 } else {
12953 space = isl_space_domain(space);
12954 space = isl_space_map_from_domain_and_range(space, set);
12957 return space;
12960 /* Compute the preimage of the domain or range (depending on "type")
12961 * of "bmap" under the function represented by "ma".
12962 * In other words, plug in "ma" in the domain or range of "bmap".
12963 * The result is a basic map that lives in the same space as "bmap"
12964 * except that the domain or range has been replaced by
12965 * the domain space of "ma".
12967 * If bmap is represented by
12969 * A(p) + S u + B x + T v + C(divs) >= 0,
12971 * where u and x are input and output dimensions if type == isl_dim_out
12972 * while x and v are input and output dimensions if type == isl_dim_in,
12973 * and ma is represented by
12975 * x = D(p) + F(y) + G(divs')
12977 * then the result is
12979 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12981 * The divs in the input set are similarly adjusted.
12982 * In particular
12984 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12986 * becomes
12988 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12989 * B_i G(divs') + c_i(divs))/n_i)
12991 * If bmap is not a rational map and if F(y) involves any denominators
12993 * x_i = (f_i y + h_i)/m_i
12995 * then additional constraints are added to ensure that we only
12996 * map back integer points. That is we enforce
12998 * f_i y + h_i = m_i alpha_i
13000 * with alpha_i an additional existentially quantified variable.
13002 * We first copy over the divs from "ma".
13003 * Then we add the modified constraints and divs from "bmap".
13004 * Finally, we add the stride constraints, if needed.
13006 __isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
13007 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
13008 __isl_take isl_multi_aff *ma)
13010 int i, k;
13011 isl_space *space;
13012 isl_basic_map *res = NULL;
13013 int n_before, n_after, n_div_bmap, n_div_ma;
13014 isl_int f, c1, c2, g;
13015 isl_bool rational;
13016 int strides;
13018 isl_int_init(f);
13019 isl_int_init(c1);
13020 isl_int_init(c2);
13021 isl_int_init(g);
13023 ma = isl_multi_aff_align_divs(ma);
13024 if (!bmap || !ma)
13025 goto error;
13026 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
13027 goto error;
13029 if (type == isl_dim_in) {
13030 n_before = 0;
13031 n_after = isl_basic_map_dim(bmap, isl_dim_out);
13032 } else {
13033 n_before = isl_basic_map_dim(bmap, isl_dim_in);
13034 n_after = 0;
13036 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
13037 n_div_ma = ma->n ? isl_aff_dim(ma->u.p[0], isl_dim_div) : 0;
13039 space = isl_multi_aff_get_domain_space(ma);
13040 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
13041 rational = isl_basic_map_is_rational(bmap);
13042 strides = rational ? 0 : multi_aff_strides(ma);
13043 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
13044 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
13045 if (rational)
13046 res = isl_basic_map_set_rational(res);
13048 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
13049 if (isl_basic_map_alloc_div(res) < 0)
13050 goto error;
13052 if (set_ma_divs(res, ma, n_before, n_after, n_div_ma) < 0)
13053 goto error;
13055 for (i = 0; i < bmap->n_eq; ++i) {
13056 k = isl_basic_map_alloc_equality(res);
13057 if (k < 0)
13058 goto error;
13059 isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
13060 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13063 for (i = 0; i < bmap->n_ineq; ++i) {
13064 k = isl_basic_map_alloc_inequality(res);
13065 if (k < 0)
13066 goto error;
13067 isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
13068 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13071 for (i = 0; i < bmap->n_div; ++i) {
13072 if (isl_int_is_zero(bmap->div[i][0])) {
13073 isl_int_set_si(res->div[n_div_ma + i][0], 0);
13074 continue;
13076 isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
13077 n_before, n_after, n_div_ma, n_div_bmap,
13078 f, c1, c2, g, 1);
13081 if (strides)
13082 res = add_ma_strides(res, ma, n_before, n_after, n_div_ma);
13084 isl_int_clear(f);
13085 isl_int_clear(c1);
13086 isl_int_clear(c2);
13087 isl_int_clear(g);
13088 isl_basic_map_free(bmap);
13089 isl_multi_aff_free(ma);
13090 res = isl_basic_map_simplify(res);
13091 return isl_basic_map_finalize(res);
13092 error:
13093 isl_int_clear(f);
13094 isl_int_clear(c1);
13095 isl_int_clear(c2);
13096 isl_int_clear(g);
13097 isl_basic_map_free(bmap);
13098 isl_multi_aff_free(ma);
13099 isl_basic_map_free(res);
13100 return NULL;
13103 /* Compute the preimage of "bset" under the function represented by "ma".
13104 * In other words, plug in "ma" in "bset". The result is a basic set
13105 * that lives in the domain space of "ma".
13107 __isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
13108 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
13110 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
13113 /* Compute the preimage of the domain of "bmap" under the function
13114 * represented by "ma".
13115 * In other words, plug in "ma" in the domain of "bmap".
13116 * The result is a basic map that lives in the same space as "bmap"
13117 * except that the domain has been replaced by the domain space of "ma".
13119 __isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
13120 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13122 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
13125 /* Compute the preimage of the range of "bmap" under the function
13126 * represented by "ma".
13127 * In other words, plug in "ma" in the range of "bmap".
13128 * The result is a basic map that lives in the same space as "bmap"
13129 * except that the range has been replaced by the domain space of "ma".
13131 __isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
13132 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13134 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
13137 /* Check if the range of "ma" is compatible with the domain or range
13138 * (depending on "type") of "map".
13139 * Return isl_stat_error if anything is wrong.
13141 static isl_stat check_map_compatible_range_multi_aff(
13142 __isl_keep isl_map *map, enum isl_dim_type type,
13143 __isl_keep isl_multi_aff *ma)
13145 isl_bool m;
13146 isl_space *ma_space;
13148 ma_space = isl_multi_aff_get_space(ma);
13149 m = isl_space_tuple_is_equal(map->dim, type, ma_space, isl_dim_out);
13150 isl_space_free(ma_space);
13151 if (m < 0)
13152 return isl_stat_error;
13153 if (!m)
13154 isl_die(isl_map_get_ctx(map), isl_error_invalid,
13155 "spaces don't match", return isl_stat_error);
13156 return isl_stat_ok;
13159 /* Compute the preimage of the domain or range (depending on "type")
13160 * of "map" under the function represented by "ma".
13161 * In other words, plug in "ma" in the domain or range of "map".
13162 * The result is a map that lives in the same space as "map"
13163 * except that the domain or range has been replaced by
13164 * the domain space of "ma".
13166 * The parameters are assumed to have been aligned.
13168 static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
13169 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13171 int i;
13172 isl_space *space;
13174 map = isl_map_cow(map);
13175 ma = isl_multi_aff_align_divs(ma);
13176 if (!map || !ma)
13177 goto error;
13178 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
13179 goto error;
13181 for (i = 0; i < map->n; ++i) {
13182 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
13183 isl_multi_aff_copy(ma));
13184 if (!map->p[i])
13185 goto error;
13188 space = isl_multi_aff_get_domain_space(ma);
13189 space = isl_space_set(isl_map_get_space(map), type, space);
13191 isl_space_free(map->dim);
13192 map->dim = space;
13193 if (!map->dim)
13194 goto error;
13196 isl_multi_aff_free(ma);
13197 if (map->n > 1)
13198 ISL_F_CLR(map, ISL_MAP_DISJOINT);
13199 ISL_F_CLR(map, ISL_SET_NORMALIZED);
13200 return map;
13201 error:
13202 isl_multi_aff_free(ma);
13203 isl_map_free(map);
13204 return NULL;
13207 /* Compute the preimage of the domain or range (depending on "type")
13208 * of "map" under the function represented by "ma".
13209 * In other words, plug in "ma" in the domain or range of "map".
13210 * The result is a map that lives in the same space as "map"
13211 * except that the domain or range has been replaced by
13212 * the domain space of "ma".
13214 __isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
13215 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13217 isl_bool aligned;
13219 if (!map || !ma)
13220 goto error;
13222 aligned = isl_map_space_has_equal_params(map, ma->space);
13223 if (aligned < 0)
13224 goto error;
13225 if (aligned)
13226 return map_preimage_multi_aff(map, type, ma);
13228 if (isl_map_check_named_params(map) < 0)
13229 goto error;
13230 if (!isl_space_has_named_params(ma->space))
13231 isl_die(map->ctx, isl_error_invalid,
13232 "unaligned unnamed parameters", goto error);
13233 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
13234 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
13236 return map_preimage_multi_aff(map, type, ma);
13237 error:
13238 isl_multi_aff_free(ma);
13239 return isl_map_free(map);
13242 /* Compute the preimage of "set" under the function represented by "ma".
13243 * In other words, plug in "ma" in "set". The result is a set
13244 * that lives in the domain space of "ma".
13246 __isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
13247 __isl_take isl_multi_aff *ma)
13249 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
13252 /* Compute the preimage of the domain of "map" under the function
13253 * represented by "ma".
13254 * In other words, plug in "ma" in the domain of "map".
13255 * The result is a map that lives in the same space as "map"
13256 * except that the domain has been replaced by the domain space of "ma".
13258 __isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
13259 __isl_take isl_multi_aff *ma)
13261 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
13264 /* Compute the preimage of the range of "map" under the function
13265 * represented by "ma".
13266 * In other words, plug in "ma" in the range of "map".
13267 * The result is a map that lives in the same space as "map"
13268 * except that the range has been replaced by the domain space of "ma".
13270 __isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
13271 __isl_take isl_multi_aff *ma)
13273 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
13276 /* Compute the preimage of "map" under the function represented by "pma".
13277 * In other words, plug in "pma" in the domain or range of "map".
13278 * The result is a map that lives in the same space as "map",
13279 * except that the space of type "type" has been replaced by
13280 * the domain space of "pma".
13282 * The parameters of "map" and "pma" are assumed to have been aligned.
13284 static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
13285 __isl_take isl_map *map, enum isl_dim_type type,
13286 __isl_take isl_pw_multi_aff *pma)
13288 int i;
13289 isl_map *res;
13291 if (!pma)
13292 goto error;
13294 if (pma->n == 0) {
13295 isl_pw_multi_aff_free(pma);
13296 res = isl_map_empty(isl_map_get_space(map));
13297 isl_map_free(map);
13298 return res;
13301 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13302 isl_multi_aff_copy(pma->p[0].maff));
13303 if (type == isl_dim_in)
13304 res = isl_map_intersect_domain(res,
13305 isl_map_copy(pma->p[0].set));
13306 else
13307 res = isl_map_intersect_range(res,
13308 isl_map_copy(pma->p[0].set));
13310 for (i = 1; i < pma->n; ++i) {
13311 isl_map *res_i;
13313 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13314 isl_multi_aff_copy(pma->p[i].maff));
13315 if (type == isl_dim_in)
13316 res_i = isl_map_intersect_domain(res_i,
13317 isl_map_copy(pma->p[i].set));
13318 else
13319 res_i = isl_map_intersect_range(res_i,
13320 isl_map_copy(pma->p[i].set));
13321 res = isl_map_union(res, res_i);
13324 isl_pw_multi_aff_free(pma);
13325 isl_map_free(map);
13326 return res;
13327 error:
13328 isl_pw_multi_aff_free(pma);
13329 isl_map_free(map);
13330 return NULL;
13333 /* Compute the preimage of "map" under the function represented by "pma".
13334 * In other words, plug in "pma" in the domain or range of "map".
13335 * The result is a map that lives in the same space as "map",
13336 * except that the space of type "type" has been replaced by
13337 * the domain space of "pma".
13339 __isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
13340 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
13342 isl_bool aligned;
13344 if (!map || !pma)
13345 goto error;
13347 aligned = isl_map_space_has_equal_params(map, pma->dim);
13348 if (aligned < 0)
13349 goto error;
13350 if (aligned)
13351 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13353 if (isl_map_check_named_params(map) < 0)
13354 goto error;
13355 if (!isl_space_has_named_params(pma->dim))
13356 isl_die(map->ctx, isl_error_invalid,
13357 "unaligned unnamed parameters", goto error);
13358 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
13359 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
13361 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13362 error:
13363 isl_pw_multi_aff_free(pma);
13364 return isl_map_free(map);
13367 /* Compute the preimage of "set" under the function represented by "pma".
13368 * In other words, plug in "pma" in "set". The result is a set
13369 * that lives in the domain space of "pma".
13371 __isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
13372 __isl_take isl_pw_multi_aff *pma)
13374 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
13377 /* Compute the preimage of the domain of "map" under the function
13378 * represented by "pma".
13379 * In other words, plug in "pma" in the domain of "map".
13380 * The result is a map that lives in the same space as "map",
13381 * except that domain space has been replaced by the domain space of "pma".
13383 __isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
13384 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13386 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
13389 /* Compute the preimage of the range of "map" under the function
13390 * represented by "pma".
13391 * In other words, plug in "pma" in the range of "map".
13392 * The result is a map that lives in the same space as "map",
13393 * except that range space has been replaced by the domain space of "pma".
13395 __isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
13396 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13398 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
13401 /* Compute the preimage of "map" under the function represented by "mpa".
13402 * In other words, plug in "mpa" in the domain or range of "map".
13403 * The result is a map that lives in the same space as "map",
13404 * except that the space of type "type" has been replaced by
13405 * the domain space of "mpa".
13407 * If the map does not involve any constraints that refer to the
13408 * dimensions of the substituted space, then the only possible
13409 * effect of "mpa" on the map is to map the space to a different space.
13410 * We create a separate isl_multi_aff to effectuate this change
13411 * in order to avoid spurious splitting of the map along the pieces
13412 * of "mpa".
13413 * If "mpa" has a non-trivial explicit domain, however,
13414 * then the full substitution should be performed.
13416 __isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
13417 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
13419 int n;
13420 isl_bool full;
13421 isl_pw_multi_aff *pma;
13423 if (!map || !mpa)
13424 goto error;
13426 n = isl_map_dim(map, type);
13427 full = isl_map_involves_dims(map, type, 0, n);
13428 if (full >= 0 && !full)
13429 full = isl_multi_pw_aff_has_non_trivial_domain(mpa);
13430 if (full < 0)
13431 goto error;
13432 if (!full) {
13433 isl_space *space;
13434 isl_multi_aff *ma;
13436 space = isl_multi_pw_aff_get_space(mpa);
13437 isl_multi_pw_aff_free(mpa);
13438 ma = isl_multi_aff_zero(space);
13439 return isl_map_preimage_multi_aff(map, type, ma);
13442 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
13443 return isl_map_preimage_pw_multi_aff(map, type, pma);
13444 error:
13445 isl_map_free(map);
13446 isl_multi_pw_aff_free(mpa);
13447 return NULL;
13450 /* Compute the preimage of "map" under the function represented by "mpa".
13451 * In other words, plug in "mpa" in the domain "map".
13452 * The result is a map that lives in the same space as "map",
13453 * except that domain space has been replaced by the domain space of "mpa".
13455 __isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
13456 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
13458 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
13461 /* Compute the preimage of "set" by the function represented by "mpa".
13462 * In other words, plug in "mpa" in "set".
13464 __isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
13465 __isl_take isl_multi_pw_aff *mpa)
13467 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);
13470 /* Return a copy of the equality constraints of "bset" as a matrix.
13472 __isl_give isl_mat *isl_basic_set_extract_equalities(
13473 __isl_keep isl_basic_set *bset)
13475 isl_ctx *ctx;
13476 unsigned total;
13478 if (!bset)
13479 return NULL;
13481 ctx = isl_basic_set_get_ctx(bset);
13482 total = 1 + isl_basic_set_dim(bset, isl_dim_all);
13483 return isl_mat_sub_alloc6(ctx, bset->eq, 0, bset->n_eq, 0, total);
13486 /* Are the "n" "coefficients" starting at "first" of the integer division
13487 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13488 * to each other?
13489 * The "coefficient" at position 0 is the denominator.
13490 * The "coefficient" at position 1 is the constant term.
13492 isl_bool isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map *bmap1,
13493 int pos1, __isl_keep isl_basic_map *bmap2, int pos2,
13494 unsigned first, unsigned n)
13496 if (isl_basic_map_check_range(bmap1, isl_dim_div, pos1, 1) < 0)
13497 return isl_bool_error;
13498 if (isl_basic_map_check_range(bmap2, isl_dim_div, pos2, 1) < 0)
13499 return isl_bool_error;
13500 return isl_seq_eq(bmap1->div[pos1] + first,
13501 bmap2->div[pos2] + first, n);
13504 /* Are the integer division expressions at position "pos1" in "bmap1" and
13505 * "pos2" in "bmap2" equal to each other, except that the constant terms
13506 * are different?
13508 isl_bool isl_basic_map_equal_div_expr_except_constant(
13509 __isl_keep isl_basic_map *bmap1, int pos1,
13510 __isl_keep isl_basic_map *bmap2, int pos2)
13512 isl_bool equal;
13513 unsigned total;
13515 if (!bmap1 || !bmap2)
13516 return isl_bool_error;
13517 total = isl_basic_map_total_dim(bmap1);
13518 if (total != isl_basic_map_total_dim(bmap2))
13519 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
13520 "incomparable div expressions", return isl_bool_error);
13521 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13522 0, 1);
13523 if (equal < 0 || !equal)
13524 return equal;
13525 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13526 1, 1);
13527 if (equal < 0 || equal)
13528 return isl_bool_not(equal);
13529 return isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13530 2, total);
13533 /* Replace the numerator of the constant term of the integer division
13534 * expression at position "div" in "bmap" by "value".
13535 * The caller guarantees that this does not change the meaning
13536 * of the input.
13538 __isl_give isl_basic_map *isl_basic_map_set_div_expr_constant_num_si_inplace(
13539 __isl_take isl_basic_map *bmap, int div, int value)
13541 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
13542 return isl_basic_map_free(bmap);
13544 isl_int_set_si(bmap->div[div][1], value);
13546 return bmap;
13549 /* Is the point "inner" internal to inequality constraint "ineq"
13550 * of "bset"?
13551 * The point is considered to be internal to the inequality constraint,
13552 * if it strictly lies on the positive side of the inequality constraint,
13553 * or if it lies on the constraint and the constraint is lexico-positive.
13555 static isl_bool is_internal(__isl_keep isl_vec *inner,
13556 __isl_keep isl_basic_set *bset, int ineq)
13558 isl_ctx *ctx;
13559 int pos;
13560 unsigned total;
13562 if (!inner || !bset)
13563 return isl_bool_error;
13565 ctx = isl_basic_set_get_ctx(bset);
13566 isl_seq_inner_product(inner->el, bset->ineq[ineq], inner->size,
13567 &ctx->normalize_gcd);
13568 if (!isl_int_is_zero(ctx->normalize_gcd))
13569 return isl_int_is_nonneg(ctx->normalize_gcd);
13571 total = isl_basic_set_dim(bset, isl_dim_all);
13572 pos = isl_seq_first_non_zero(bset->ineq[ineq] + 1, total);
13573 return isl_int_is_pos(bset->ineq[ineq][1 + pos]);
13576 /* Tighten the inequality constraints of "bset" that are outward with respect
13577 * to the point "vec".
13578 * That is, tighten the constraints that are not satisfied by "vec".
13580 * "vec" is a point internal to some superset S of "bset" that is used
13581 * to make the subsets of S disjoint, by tightening one half of the constraints
13582 * that separate two subsets. In particular, the constraints of S
13583 * are all satisfied by "vec" and should not be tightened.
13584 * Of the internal constraints, those that have "vec" on the outside
13585 * are tightened. The shared facet is included in the adjacent subset
13586 * with the opposite constraint.
13587 * For constraints that saturate "vec", this criterion cannot be used
13588 * to determine which of the two sides should be tightened.
13589 * Instead, the sign of the first non-zero coefficient is used
13590 * to make this choice. Note that this second criterion is never used
13591 * on the constraints of S since "vec" is interior to "S".
13593 __isl_give isl_basic_set *isl_basic_set_tighten_outward(
13594 __isl_take isl_basic_set *bset, __isl_keep isl_vec *vec)
13596 int j;
13598 bset = isl_basic_set_cow(bset);
13599 if (!bset)
13600 return NULL;
13601 for (j = 0; j < bset->n_ineq; ++j) {
13602 isl_bool internal;
13604 internal = is_internal(vec, bset, j);
13605 if (internal < 0)
13606 return isl_basic_set_free(bset);
13607 if (internal)
13608 continue;
13609 isl_int_sub_ui(bset->ineq[j][0], bset->ineq[j][0], 1);
13612 return bset;
13615 /* Replace the variables x of type "type" starting at "first" in "bmap"
13616 * by x' with x = M x' with M the matrix trans.
13617 * That is, replace the corresponding coefficients c by c M.
13619 * The transformation matrix should be a square matrix.
13621 __isl_give isl_basic_map *isl_basic_map_transform_dims(
13622 __isl_take isl_basic_map *bmap, enum isl_dim_type type, unsigned first,
13623 __isl_take isl_mat *trans)
13625 unsigned pos;
13627 bmap = isl_basic_map_cow(bmap);
13628 if (!bmap || !trans)
13629 goto error;
13631 if (trans->n_row != trans->n_col)
13632 isl_die(trans->ctx, isl_error_invalid,
13633 "expecting square transformation matrix", goto error);
13634 if (first + trans->n_row > isl_basic_map_dim(bmap, type))
13635 isl_die(trans->ctx, isl_error_invalid,
13636 "oversized transformation matrix", goto error);
13638 pos = isl_basic_map_offset(bmap, type) + first;
13640 if (isl_mat_sub_transform(bmap->eq, bmap->n_eq, pos,
13641 isl_mat_copy(trans)) < 0)
13642 goto error;
13643 if (isl_mat_sub_transform(bmap->ineq, bmap->n_ineq, pos,
13644 isl_mat_copy(trans)) < 0)
13645 goto error;
13646 if (isl_mat_sub_transform(bmap->div, bmap->n_div, 1 + pos,
13647 isl_mat_copy(trans)) < 0)
13648 goto error;
13650 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
13651 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
13653 isl_mat_free(trans);
13654 return bmap;
13655 error:
13656 isl_mat_free(trans);
13657 isl_basic_map_free(bmap);
13658 return NULL;
13661 /* Replace the variables x of type "type" starting at "first" in "bset"
13662 * by x' with x = M x' with M the matrix trans.
13663 * That is, replace the corresponding coefficients c by c M.
13665 * The transformation matrix should be a square matrix.
13667 __isl_give isl_basic_set *isl_basic_set_transform_dims(
13668 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned first,
13669 __isl_take isl_mat *trans)
13671 return isl_basic_map_transform_dims(bset, type, first, trans);