drop isl_basic_set_extend
[isl.git] / isl_map.c
blob0f36b1e6d9339fccabe79b788923d80d65861590
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/id.h>
27 #include <isl/constraint.h>
28 #include "isl_space_private.h"
29 #include "isl_equalities.h"
30 #include <isl_lp_private.h>
31 #include <isl_seq.h>
32 #include <isl/set.h>
33 #include <isl/map.h>
34 #include <isl_reordering.h>
35 #include "isl_sample.h"
36 #include <isl_sort.h>
37 #include "isl_tab.h"
38 #include <isl/vec.h>
39 #include <isl_mat_private.h>
40 #include <isl_vec_private.h>
41 #include <isl_dim_map.h>
42 #include <isl_local_space_private.h>
43 #include <isl_aff_private.h>
44 #include <isl_options_private.h>
45 #include <isl_morph.h>
46 #include <isl_val_private.h>
48 #include <bset_to_bmap.c>
49 #include <bset_from_bmap.c>
50 #include <set_to_map.c>
51 #include <set_from_map.c>
53 static unsigned n(__isl_keep isl_space *dim, enum isl_dim_type type)
55 switch (type) {
56 case isl_dim_param: return dim->nparam;
57 case isl_dim_in: return dim->n_in;
58 case isl_dim_out: return dim->n_out;
59 case isl_dim_all: return dim->nparam + dim->n_in + dim->n_out;
60 default: return 0;
64 static unsigned pos(__isl_keep isl_space *dim, enum isl_dim_type type)
66 switch (type) {
67 case isl_dim_param: return 1;
68 case isl_dim_in: return 1 + dim->nparam;
69 case isl_dim_out: return 1 + dim->nparam + dim->n_in;
70 default: return 0;
74 unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap,
75 enum isl_dim_type type)
77 if (!bmap)
78 return 0;
79 switch (type) {
80 case isl_dim_cst: return 1;
81 case isl_dim_param:
82 case isl_dim_in:
83 case isl_dim_out: return isl_space_dim(bmap->dim, type);
84 case isl_dim_div: return bmap->n_div;
85 case isl_dim_all: return isl_basic_map_total_dim(bmap);
86 default: return 0;
90 /* Return the space of "map".
92 __isl_keep isl_space *isl_map_peek_space(__isl_keep const isl_map *map)
94 return map ? map->dim : NULL;
97 /* Return the space of "set".
99 __isl_keep isl_space *isl_set_peek_space(__isl_keep isl_set *set)
101 return isl_map_peek_space(set_to_map(set));
104 unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type)
106 return map ? n(map->dim, type) : 0;
109 unsigned isl_set_dim(__isl_keep isl_set *set, enum isl_dim_type type)
111 return set ? n(set->dim, type) : 0;
114 unsigned isl_basic_map_offset(__isl_keep isl_basic_map *bmap,
115 enum isl_dim_type type)
117 isl_space *space;
119 if (!bmap)
120 return 0;
122 space = bmap->dim;
123 switch (type) {
124 case isl_dim_cst: return 0;
125 case isl_dim_param: return 1;
126 case isl_dim_in: return 1 + space->nparam;
127 case isl_dim_out: return 1 + space->nparam + space->n_in;
128 case isl_dim_div: return 1 + space->nparam + space->n_in +
129 space->n_out;
130 default: return 0;
134 unsigned isl_basic_set_offset(__isl_keep isl_basic_set *bset,
135 enum isl_dim_type type)
137 return isl_basic_map_offset(bset, type);
140 static unsigned map_offset(__isl_keep isl_map *map, enum isl_dim_type type)
142 return pos(map->dim, type);
145 unsigned isl_basic_set_dim(__isl_keep isl_basic_set *bset,
146 enum isl_dim_type type)
148 return isl_basic_map_dim(bset, type);
151 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set *bset)
153 return isl_basic_set_dim(bset, isl_dim_set);
156 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set *bset)
158 return isl_basic_set_dim(bset, isl_dim_param);
161 unsigned isl_basic_set_total_dim(__isl_keep const isl_basic_set *bset)
163 if (!bset)
164 return 0;
165 return isl_space_dim(bset->dim, isl_dim_all) + bset->n_div;
168 unsigned isl_set_n_dim(__isl_keep isl_set *set)
170 return isl_set_dim(set, isl_dim_set);
173 unsigned isl_set_n_param(__isl_keep isl_set *set)
175 return isl_set_dim(set, isl_dim_param);
178 unsigned isl_basic_map_n_in(__isl_keep const isl_basic_map *bmap)
180 return bmap ? bmap->dim->n_in : 0;
183 unsigned isl_basic_map_n_out(__isl_keep const isl_basic_map *bmap)
185 return bmap ? bmap->dim->n_out : 0;
188 unsigned isl_basic_map_n_param(__isl_keep const isl_basic_map *bmap)
190 return bmap ? bmap->dim->nparam : 0;
193 unsigned isl_basic_map_n_div(__isl_keep const isl_basic_map *bmap)
195 return bmap ? bmap->n_div : 0;
198 unsigned isl_basic_map_total_dim(__isl_keep const isl_basic_map *bmap)
200 return bmap ? isl_space_dim(bmap->dim, isl_dim_all) + bmap->n_div : 0;
203 unsigned isl_map_n_in(__isl_keep const isl_map *map)
205 return map ? map->dim->n_in : 0;
208 unsigned isl_map_n_out(__isl_keep const isl_map *map)
210 return map ? map->dim->n_out : 0;
213 unsigned isl_map_n_param(__isl_keep const isl_map *map)
215 return map ? map->dim->nparam : 0;
218 /* Return the number of equality constraints in the description of "bmap".
219 * Return -1 on error.
221 int isl_basic_map_n_equality(__isl_keep isl_basic_map *bmap)
223 if (!bmap)
224 return -1;
225 return bmap->n_eq;
228 /* Return the number of equality constraints in the description of "bset".
229 * Return -1 on error.
231 int isl_basic_set_n_equality(__isl_keep isl_basic_set *bset)
233 return isl_basic_map_n_equality(bset_to_bmap(bset));
236 /* Return the number of inequality constraints in the description of "bmap".
237 * Return -1 on error.
239 int isl_basic_map_n_inequality(__isl_keep isl_basic_map *bmap)
241 if (!bmap)
242 return -1;
243 return bmap->n_ineq;
246 /* Return the number of inequality constraints in the description of "bset".
247 * Return -1 on error.
249 int isl_basic_set_n_inequality(__isl_keep isl_basic_set *bset)
251 return isl_basic_map_n_inequality(bset_to_bmap(bset));
254 /* Do "bmap1" and "bmap2" have the same parameters?
256 static isl_bool isl_basic_map_has_equal_params(__isl_keep isl_basic_map *bmap1,
257 __isl_keep isl_basic_map *bmap2)
259 isl_space *space1, *space2;
261 space1 = isl_basic_map_peek_space(bmap1);
262 space2 = isl_basic_map_peek_space(bmap2);
263 return isl_space_has_equal_params(space1, space2);
266 /* Do "map1" and "map2" have the same parameters?
268 isl_bool isl_map_has_equal_params(__isl_keep isl_map *map1,
269 __isl_keep isl_map *map2)
271 isl_space *space1, *space2;
273 space1 = isl_map_peek_space(map1);
274 space2 = isl_map_peek_space(map2);
275 return isl_space_has_equal_params(space1, space2);
278 /* Do "map" and "set" have the same parameters?
280 static isl_bool isl_map_set_has_equal_params(__isl_keep isl_map *map,
281 __isl_keep isl_set *set)
283 return isl_map_has_equal_params(map, set_to_map(set));
286 isl_bool isl_map_compatible_domain(__isl_keep isl_map *map,
287 __isl_keep isl_set *set)
289 isl_bool m;
290 if (!map || !set)
291 return isl_bool_error;
292 m = isl_map_has_equal_params(map, set_to_map(set));
293 if (m < 0 || !m)
294 return m;
295 return isl_space_tuple_is_equal(map->dim, isl_dim_in,
296 set->dim, isl_dim_set);
299 isl_bool isl_basic_map_compatible_domain(__isl_keep isl_basic_map *bmap,
300 __isl_keep isl_basic_set *bset)
302 isl_bool m;
303 if (!bmap || !bset)
304 return isl_bool_error;
305 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
306 if (m < 0 || !m)
307 return m;
308 return isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
309 bset->dim, isl_dim_set);
312 isl_bool isl_map_compatible_range(__isl_keep isl_map *map,
313 __isl_keep isl_set *set)
315 isl_bool m;
316 if (!map || !set)
317 return isl_bool_error;
318 m = isl_map_has_equal_params(map, set_to_map(set));
319 if (m < 0 || !m)
320 return m;
321 return isl_space_tuple_is_equal(map->dim, isl_dim_out,
322 set->dim, isl_dim_set);
325 isl_bool isl_basic_map_compatible_range(__isl_keep isl_basic_map *bmap,
326 __isl_keep isl_basic_set *bset)
328 isl_bool m;
329 if (!bmap || !bset)
330 return isl_bool_error;
331 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
332 if (m < 0 || !m)
333 return m;
334 return isl_space_tuple_is_equal(bmap->dim, isl_dim_out,
335 bset->dim, isl_dim_set);
338 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap)
340 return bmap ? bmap->ctx : NULL;
343 isl_ctx *isl_basic_set_get_ctx(__isl_keep isl_basic_set *bset)
345 return bset ? bset->ctx : NULL;
348 isl_ctx *isl_map_get_ctx(__isl_keep isl_map *map)
350 return map ? map->ctx : NULL;
353 isl_ctx *isl_set_get_ctx(__isl_keep isl_set *set)
355 return set ? set->ctx : NULL;
358 /* Return the space of "bmap".
360 __isl_keep isl_space *isl_basic_map_peek_space(
361 __isl_keep const isl_basic_map *bmap)
363 return bmap ? bmap->dim : NULL;
366 /* Return the space of "bset".
368 __isl_keep isl_space *isl_basic_set_peek_space(__isl_keep isl_basic_set *bset)
370 return isl_basic_map_peek_space(bset_to_bmap(bset));
373 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap)
375 return isl_space_copy(isl_basic_map_peek_space(bmap));
378 __isl_give isl_space *isl_basic_set_get_space(__isl_keep isl_basic_set *bset)
380 return isl_basic_map_get_space(bset_to_bmap(bset));
383 /* Extract the divs in "bmap" as a matrix.
385 __isl_give isl_mat *isl_basic_map_get_divs(__isl_keep isl_basic_map *bmap)
387 int i;
388 isl_ctx *ctx;
389 isl_mat *div;
390 unsigned total;
391 unsigned cols;
393 if (!bmap)
394 return NULL;
396 ctx = isl_basic_map_get_ctx(bmap);
397 total = isl_space_dim(bmap->dim, isl_dim_all);
398 cols = 1 + 1 + total + bmap->n_div;
399 div = isl_mat_alloc(ctx, bmap->n_div, cols);
400 if (!div)
401 return NULL;
403 for (i = 0; i < bmap->n_div; ++i)
404 isl_seq_cpy(div->row[i], bmap->div[i], cols);
406 return div;
409 /* Extract the divs in "bset" as a matrix.
411 __isl_give isl_mat *isl_basic_set_get_divs(__isl_keep isl_basic_set *bset)
413 return isl_basic_map_get_divs(bset);
416 __isl_give isl_local_space *isl_basic_map_get_local_space(
417 __isl_keep isl_basic_map *bmap)
419 isl_mat *div;
421 if (!bmap)
422 return NULL;
424 div = isl_basic_map_get_divs(bmap);
425 return isl_local_space_alloc_div(isl_space_copy(bmap->dim), div);
428 __isl_give isl_local_space *isl_basic_set_get_local_space(
429 __isl_keep isl_basic_set *bset)
431 return isl_basic_map_get_local_space(bset);
434 /* For each known div d = floor(f/m), add the constraints
436 * f - m d >= 0
437 * -(f-(m-1)) + m d >= 0
439 * Do not finalize the result.
441 static __isl_give isl_basic_map *add_known_div_constraints(
442 __isl_take isl_basic_map *bmap)
444 int i;
445 unsigned n_div;
447 if (!bmap)
448 return NULL;
449 n_div = isl_basic_map_dim(bmap, isl_dim_div);
450 if (n_div == 0)
451 return bmap;
452 bmap = isl_basic_map_cow(bmap);
453 bmap = isl_basic_map_extend_constraints(bmap, 0, 2 * n_div);
454 if (!bmap)
455 return NULL;
456 for (i = 0; i < n_div; ++i) {
457 if (isl_int_is_zero(bmap->div[i][0]))
458 continue;
459 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
460 return isl_basic_map_free(bmap);
463 return bmap;
466 __isl_give isl_basic_map *isl_basic_map_from_local_space(
467 __isl_take isl_local_space *ls)
469 int i;
470 int n_div;
471 isl_basic_map *bmap;
473 if (!ls)
474 return NULL;
476 n_div = isl_local_space_dim(ls, isl_dim_div);
477 bmap = isl_basic_map_alloc_space(isl_local_space_get_space(ls),
478 n_div, 0, 2 * n_div);
480 for (i = 0; i < n_div; ++i)
481 if (isl_basic_map_alloc_div(bmap) < 0)
482 goto error;
484 for (i = 0; i < n_div; ++i)
485 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
486 bmap = add_known_div_constraints(bmap);
488 isl_local_space_free(ls);
489 return bmap;
490 error:
491 isl_local_space_free(ls);
492 isl_basic_map_free(bmap);
493 return NULL;
496 __isl_give isl_basic_set *isl_basic_set_from_local_space(
497 __isl_take isl_local_space *ls)
499 return isl_basic_map_from_local_space(ls);
502 __isl_give isl_space *isl_map_get_space(__isl_keep isl_map *map)
504 return isl_space_copy(isl_map_peek_space(map));
507 __isl_give isl_space *isl_set_get_space(__isl_keep isl_set *set)
509 if (!set)
510 return NULL;
511 return isl_space_copy(set->dim);
514 __isl_give isl_basic_map *isl_basic_map_set_tuple_name(
515 __isl_take isl_basic_map *bmap, enum isl_dim_type type, const char *s)
517 bmap = isl_basic_map_cow(bmap);
518 if (!bmap)
519 return NULL;
520 bmap->dim = isl_space_set_tuple_name(bmap->dim, type, s);
521 if (!bmap->dim)
522 goto error;
523 bmap = isl_basic_map_finalize(bmap);
524 return bmap;
525 error:
526 isl_basic_map_free(bmap);
527 return NULL;
530 __isl_give isl_basic_set *isl_basic_set_set_tuple_name(
531 __isl_take isl_basic_set *bset, const char *s)
533 return isl_basic_map_set_tuple_name(bset, isl_dim_set, s);
536 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map *bmap,
537 enum isl_dim_type type)
539 return bmap ? isl_space_get_tuple_name(bmap->dim, type) : NULL;
542 __isl_give isl_map *isl_map_set_tuple_name(__isl_take isl_map *map,
543 enum isl_dim_type type, const char *s)
545 int i;
547 map = isl_map_cow(map);
548 if (!map)
549 return NULL;
551 map->dim = isl_space_set_tuple_name(map->dim, type, s);
552 if (!map->dim)
553 goto error;
555 for (i = 0; i < map->n; ++i) {
556 map->p[i] = isl_basic_map_set_tuple_name(map->p[i], type, s);
557 if (!map->p[i])
558 goto error;
561 return map;
562 error:
563 isl_map_free(map);
564 return NULL;
567 /* Replace the identifier of the tuple of type "type" by "id".
569 __isl_give isl_basic_map *isl_basic_map_set_tuple_id(
570 __isl_take isl_basic_map *bmap,
571 enum isl_dim_type type, __isl_take isl_id *id)
573 bmap = isl_basic_map_cow(bmap);
574 if (!bmap)
575 goto error;
576 bmap->dim = isl_space_set_tuple_id(bmap->dim, type, id);
577 if (!bmap->dim)
578 return isl_basic_map_free(bmap);
579 bmap = isl_basic_map_finalize(bmap);
580 return bmap;
581 error:
582 isl_id_free(id);
583 return NULL;
586 /* Replace the identifier of the tuple by "id".
588 __isl_give isl_basic_set *isl_basic_set_set_tuple_id(
589 __isl_take isl_basic_set *bset, __isl_take isl_id *id)
591 return isl_basic_map_set_tuple_id(bset, isl_dim_set, id);
594 /* Does the input or output tuple have a name?
596 isl_bool isl_map_has_tuple_name(__isl_keep isl_map *map, enum isl_dim_type type)
598 return map ? isl_space_has_tuple_name(map->dim, type) : isl_bool_error;
601 const char *isl_map_get_tuple_name(__isl_keep isl_map *map,
602 enum isl_dim_type type)
604 return map ? isl_space_get_tuple_name(map->dim, type) : NULL;
607 __isl_give isl_set *isl_set_set_tuple_name(__isl_take isl_set *set,
608 const char *s)
610 return set_from_map(isl_map_set_tuple_name(set_to_map(set),
611 isl_dim_set, s));
614 __isl_give isl_map *isl_map_set_tuple_id(__isl_take isl_map *map,
615 enum isl_dim_type type, __isl_take isl_id *id)
617 map = isl_map_cow(map);
618 if (!map)
619 goto error;
621 map->dim = isl_space_set_tuple_id(map->dim, type, id);
623 return isl_map_reset_space(map, isl_space_copy(map->dim));
624 error:
625 isl_id_free(id);
626 return NULL;
629 __isl_give isl_set *isl_set_set_tuple_id(__isl_take isl_set *set,
630 __isl_take isl_id *id)
632 return isl_map_set_tuple_id(set, isl_dim_set, id);
635 __isl_give isl_map *isl_map_reset_tuple_id(__isl_take isl_map *map,
636 enum isl_dim_type type)
638 map = isl_map_cow(map);
639 if (!map)
640 return NULL;
642 map->dim = isl_space_reset_tuple_id(map->dim, type);
644 return isl_map_reset_space(map, isl_space_copy(map->dim));
647 __isl_give isl_set *isl_set_reset_tuple_id(__isl_take isl_set *set)
649 return isl_map_reset_tuple_id(set, isl_dim_set);
652 isl_bool isl_map_has_tuple_id(__isl_keep isl_map *map, enum isl_dim_type type)
654 return map ? isl_space_has_tuple_id(map->dim, type) : isl_bool_error;
657 __isl_give isl_id *isl_map_get_tuple_id(__isl_keep isl_map *map,
658 enum isl_dim_type type)
660 return map ? isl_space_get_tuple_id(map->dim, type) : NULL;
663 isl_bool isl_set_has_tuple_id(__isl_keep isl_set *set)
665 return isl_map_has_tuple_id(set, isl_dim_set);
668 __isl_give isl_id *isl_set_get_tuple_id(__isl_keep isl_set *set)
670 return isl_map_get_tuple_id(set, isl_dim_set);
673 /* Does the set tuple have a name?
675 isl_bool isl_set_has_tuple_name(__isl_keep isl_set *set)
677 if (!set)
678 return isl_bool_error;
679 return isl_space_has_tuple_name(set->dim, isl_dim_set);
683 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set *bset)
685 return bset ? isl_space_get_tuple_name(bset->dim, isl_dim_set) : NULL;
688 const char *isl_set_get_tuple_name(__isl_keep isl_set *set)
690 return set ? isl_space_get_tuple_name(set->dim, isl_dim_set) : NULL;
693 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map *bmap,
694 enum isl_dim_type type, unsigned pos)
696 return bmap ? isl_space_get_dim_name(bmap->dim, type, pos) : NULL;
699 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set *bset,
700 enum isl_dim_type type, unsigned pos)
702 return bset ? isl_space_get_dim_name(bset->dim, type, pos) : NULL;
705 /* Does the given dimension have a name?
707 isl_bool isl_map_has_dim_name(__isl_keep isl_map *map,
708 enum isl_dim_type type, unsigned pos)
710 if (!map)
711 return isl_bool_error;
712 return isl_space_has_dim_name(map->dim, type, pos);
715 const char *isl_map_get_dim_name(__isl_keep isl_map *map,
716 enum isl_dim_type type, unsigned pos)
718 return map ? isl_space_get_dim_name(map->dim, type, pos) : NULL;
721 const char *isl_set_get_dim_name(__isl_keep isl_set *set,
722 enum isl_dim_type type, unsigned pos)
724 return set ? isl_space_get_dim_name(set->dim, type, pos) : NULL;
727 /* Does the given dimension have a name?
729 isl_bool isl_set_has_dim_name(__isl_keep isl_set *set,
730 enum isl_dim_type type, unsigned pos)
732 if (!set)
733 return isl_bool_error;
734 return isl_space_has_dim_name(set->dim, type, pos);
737 __isl_give isl_basic_map *isl_basic_map_set_dim_name(
738 __isl_take isl_basic_map *bmap,
739 enum isl_dim_type type, unsigned pos, const char *s)
741 bmap = isl_basic_map_cow(bmap);
742 if (!bmap)
743 return NULL;
744 bmap->dim = isl_space_set_dim_name(bmap->dim, type, pos, s);
745 if (!bmap->dim)
746 goto error;
747 return isl_basic_map_finalize(bmap);
748 error:
749 isl_basic_map_free(bmap);
750 return NULL;
753 __isl_give isl_map *isl_map_set_dim_name(__isl_take isl_map *map,
754 enum isl_dim_type type, unsigned pos, const char *s)
756 int i;
758 map = isl_map_cow(map);
759 if (!map)
760 return NULL;
762 map->dim = isl_space_set_dim_name(map->dim, type, pos, s);
763 if (!map->dim)
764 goto error;
766 for (i = 0; i < map->n; ++i) {
767 map->p[i] = isl_basic_map_set_dim_name(map->p[i], type, pos, s);
768 if (!map->p[i])
769 goto error;
772 return map;
773 error:
774 isl_map_free(map);
775 return NULL;
778 __isl_give isl_basic_set *isl_basic_set_set_dim_name(
779 __isl_take isl_basic_set *bset,
780 enum isl_dim_type type, unsigned pos, const char *s)
782 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset),
783 type, pos, s));
786 __isl_give isl_set *isl_set_set_dim_name(__isl_take isl_set *set,
787 enum isl_dim_type type, unsigned pos, const char *s)
789 return set_from_map(isl_map_set_dim_name(set_to_map(set),
790 type, pos, s));
793 isl_bool isl_basic_map_has_dim_id(__isl_keep isl_basic_map *bmap,
794 enum isl_dim_type type, unsigned pos)
796 if (!bmap)
797 return isl_bool_error;
798 return isl_space_has_dim_id(bmap->dim, type, pos);
801 __isl_give isl_id *isl_basic_set_get_dim_id(__isl_keep isl_basic_set *bset,
802 enum isl_dim_type type, unsigned pos)
804 return bset ? isl_space_get_dim_id(bset->dim, type, pos) : NULL;
807 isl_bool isl_map_has_dim_id(__isl_keep isl_map *map,
808 enum isl_dim_type type, unsigned pos)
810 return map ? isl_space_has_dim_id(map->dim, type, pos) : isl_bool_error;
813 __isl_give isl_id *isl_map_get_dim_id(__isl_keep isl_map *map,
814 enum isl_dim_type type, unsigned pos)
816 return map ? isl_space_get_dim_id(map->dim, type, pos) : NULL;
819 isl_bool isl_set_has_dim_id(__isl_keep isl_set *set,
820 enum isl_dim_type type, unsigned pos)
822 return isl_map_has_dim_id(set, type, pos);
825 __isl_give isl_id *isl_set_get_dim_id(__isl_keep isl_set *set,
826 enum isl_dim_type type, unsigned pos)
828 return isl_map_get_dim_id(set, type, pos);
831 __isl_give isl_map *isl_map_set_dim_id(__isl_take isl_map *map,
832 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
834 map = isl_map_cow(map);
835 if (!map)
836 goto error;
838 map->dim = isl_space_set_dim_id(map->dim, type, pos, id);
840 return isl_map_reset_space(map, isl_space_copy(map->dim));
841 error:
842 isl_id_free(id);
843 return NULL;
846 __isl_give isl_set *isl_set_set_dim_id(__isl_take isl_set *set,
847 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
849 return isl_map_set_dim_id(set, type, pos, id);
852 int isl_map_find_dim_by_id(__isl_keep isl_map *map, enum isl_dim_type type,
853 __isl_keep isl_id *id)
855 if (!map)
856 return -1;
857 return isl_space_find_dim_by_id(map->dim, type, id);
860 int isl_set_find_dim_by_id(__isl_keep isl_set *set, enum isl_dim_type type,
861 __isl_keep isl_id *id)
863 return isl_map_find_dim_by_id(set, type, id);
866 /* Return the position of the dimension of the given type and name
867 * in "bmap".
868 * Return -1 if no such dimension can be found.
870 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map *bmap,
871 enum isl_dim_type type, const char *name)
873 if (!bmap)
874 return -1;
875 return isl_space_find_dim_by_name(bmap->dim, type, name);
878 int isl_map_find_dim_by_name(__isl_keep isl_map *map, enum isl_dim_type type,
879 const char *name)
881 if (!map)
882 return -1;
883 return isl_space_find_dim_by_name(map->dim, type, name);
886 int isl_set_find_dim_by_name(__isl_keep isl_set *set, enum isl_dim_type type,
887 const char *name)
889 return isl_map_find_dim_by_name(set, type, name);
892 /* Check whether equality i of bset is a pure stride constraint
893 * on a single dimension, i.e., of the form
895 * v = k e
897 * with k a constant and e an existentially quantified variable.
899 isl_bool isl_basic_set_eq_is_stride(__isl_keep isl_basic_set *bset, int i)
901 unsigned nparam;
902 unsigned d;
903 unsigned n_div;
904 int pos1;
905 int pos2;
907 if (!bset)
908 return isl_bool_error;
910 if (!isl_int_is_zero(bset->eq[i][0]))
911 return isl_bool_false;
913 nparam = isl_basic_set_dim(bset, isl_dim_param);
914 d = isl_basic_set_dim(bset, isl_dim_set);
915 n_div = isl_basic_set_dim(bset, isl_dim_div);
917 if (isl_seq_first_non_zero(bset->eq[i] + 1, nparam) != -1)
918 return isl_bool_false;
919 pos1 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam, d);
920 if (pos1 == -1)
921 return isl_bool_false;
922 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + pos1 + 1,
923 d - pos1 - 1) != -1)
924 return isl_bool_false;
926 pos2 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d, n_div);
927 if (pos2 == -1)
928 return isl_bool_false;
929 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d + pos2 + 1,
930 n_div - pos2 - 1) != -1)
931 return isl_bool_false;
932 if (!isl_int_is_one(bset->eq[i][1 + nparam + pos1]) &&
933 !isl_int_is_negone(bset->eq[i][1 + nparam + pos1]))
934 return isl_bool_false;
936 return isl_bool_true;
939 /* Reset the user pointer on all identifiers of parameters and tuples
940 * of the space of "map".
942 __isl_give isl_map *isl_map_reset_user(__isl_take isl_map *map)
944 isl_space *space;
946 space = isl_map_get_space(map);
947 space = isl_space_reset_user(space);
948 map = isl_map_reset_space(map, space);
950 return map;
953 /* Reset the user pointer on all identifiers of parameters and tuples
954 * of the space of "set".
956 __isl_give isl_set *isl_set_reset_user(__isl_take isl_set *set)
958 return isl_map_reset_user(set);
961 isl_bool isl_basic_map_is_rational(__isl_keep isl_basic_map *bmap)
963 if (!bmap)
964 return isl_bool_error;
965 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
968 /* Has "map" been marked as a rational map?
969 * In particular, have all basic maps in "map" been marked this way?
970 * An empty map is not considered to be rational.
971 * Maps where only some of the basic maps are marked rational
972 * are not allowed.
974 isl_bool isl_map_is_rational(__isl_keep isl_map *map)
976 int i;
977 isl_bool rational;
979 if (!map)
980 return isl_bool_error;
981 if (map->n == 0)
982 return isl_bool_false;
983 rational = isl_basic_map_is_rational(map->p[0]);
984 if (rational < 0)
985 return rational;
986 for (i = 1; i < map->n; ++i) {
987 isl_bool rational_i;
989 rational_i = isl_basic_map_is_rational(map->p[i]);
990 if (rational_i < 0)
991 return rational_i;
992 if (rational != rational_i)
993 isl_die(isl_map_get_ctx(map), isl_error_unsupported,
994 "mixed rational and integer basic maps "
995 "not supported", return isl_bool_error);
998 return rational;
1001 /* Has "set" been marked as a rational set?
1002 * In particular, have all basic set in "set" been marked this way?
1003 * An empty set is not considered to be rational.
1004 * Sets where only some of the basic sets are marked rational
1005 * are not allowed.
1007 isl_bool isl_set_is_rational(__isl_keep isl_set *set)
1009 return isl_map_is_rational(set);
1012 int isl_basic_set_is_rational(__isl_keep isl_basic_set *bset)
1014 return isl_basic_map_is_rational(bset);
1017 /* Does "bmap" contain any rational points?
1019 * If "bmap" has an equality for each dimension, equating the dimension
1020 * to an integer constant, then it has no rational points, even if it
1021 * is marked as rational.
1023 isl_bool isl_basic_map_has_rational(__isl_keep isl_basic_map *bmap)
1025 isl_bool has_rational = isl_bool_true;
1026 unsigned total;
1028 if (!bmap)
1029 return isl_bool_error;
1030 if (isl_basic_map_plain_is_empty(bmap))
1031 return isl_bool_false;
1032 if (!isl_basic_map_is_rational(bmap))
1033 return isl_bool_false;
1034 bmap = isl_basic_map_copy(bmap);
1035 bmap = isl_basic_map_implicit_equalities(bmap);
1036 if (!bmap)
1037 return isl_bool_error;
1038 total = isl_basic_map_total_dim(bmap);
1039 if (bmap->n_eq == total) {
1040 int i, j;
1041 for (i = 0; i < bmap->n_eq; ++i) {
1042 j = isl_seq_first_non_zero(bmap->eq[i] + 1, total);
1043 if (j < 0)
1044 break;
1045 if (!isl_int_is_one(bmap->eq[i][1 + j]) &&
1046 !isl_int_is_negone(bmap->eq[i][1 + j]))
1047 break;
1048 j = isl_seq_first_non_zero(bmap->eq[i] + 1 + j + 1,
1049 total - j - 1);
1050 if (j >= 0)
1051 break;
1053 if (i == bmap->n_eq)
1054 has_rational = isl_bool_false;
1056 isl_basic_map_free(bmap);
1058 return has_rational;
1061 /* Does "map" contain any rational points?
1063 isl_bool isl_map_has_rational(__isl_keep isl_map *map)
1065 int i;
1066 isl_bool has_rational;
1068 if (!map)
1069 return isl_bool_error;
1070 for (i = 0; i < map->n; ++i) {
1071 has_rational = isl_basic_map_has_rational(map->p[i]);
1072 if (has_rational < 0 || has_rational)
1073 return has_rational;
1075 return isl_bool_false;
1078 /* Does "set" contain any rational points?
1080 isl_bool isl_set_has_rational(__isl_keep isl_set *set)
1082 return isl_map_has_rational(set);
1085 /* Is this basic set a parameter domain?
1087 isl_bool isl_basic_set_is_params(__isl_keep isl_basic_set *bset)
1089 if (!bset)
1090 return isl_bool_error;
1091 return isl_space_is_params(bset->dim);
1094 /* Is this set a parameter domain?
1096 isl_bool isl_set_is_params(__isl_keep isl_set *set)
1098 if (!set)
1099 return isl_bool_error;
1100 return isl_space_is_params(set->dim);
1103 /* Is this map actually a parameter domain?
1104 * Users should never call this function. Outside of isl,
1105 * a map can never be a parameter domain.
1107 isl_bool isl_map_is_params(__isl_keep isl_map *map)
1109 if (!map)
1110 return isl_bool_error;
1111 return isl_space_is_params(map->dim);
1114 static __isl_give isl_basic_map *basic_map_init(isl_ctx *ctx,
1115 __isl_take isl_basic_map *bmap, unsigned extra,
1116 unsigned n_eq, unsigned n_ineq)
1118 int i;
1119 size_t row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + extra;
1121 bmap->ctx = ctx;
1122 isl_ctx_ref(ctx);
1124 bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
1125 if (isl_blk_is_error(bmap->block))
1126 goto error;
1128 bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
1129 if ((n_ineq + n_eq) && !bmap->ineq)
1130 goto error;
1132 if (extra == 0) {
1133 bmap->block2 = isl_blk_empty();
1134 bmap->div = NULL;
1135 } else {
1136 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
1137 if (isl_blk_is_error(bmap->block2))
1138 goto error;
1140 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
1141 if (!bmap->div)
1142 goto error;
1145 for (i = 0; i < n_ineq + n_eq; ++i)
1146 bmap->ineq[i] = bmap->block.data + i * row_size;
1148 for (i = 0; i < extra; ++i)
1149 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
1151 bmap->ref = 1;
1152 bmap->flags = 0;
1153 bmap->c_size = n_eq + n_ineq;
1154 bmap->eq = bmap->ineq + n_ineq;
1155 bmap->extra = extra;
1156 bmap->n_eq = 0;
1157 bmap->n_ineq = 0;
1158 bmap->n_div = 0;
1159 bmap->sample = NULL;
1161 return bmap;
1162 error:
1163 isl_basic_map_free(bmap);
1164 return NULL;
1167 struct isl_basic_set *isl_basic_set_alloc(struct isl_ctx *ctx,
1168 unsigned nparam, unsigned dim, unsigned extra,
1169 unsigned n_eq, unsigned n_ineq)
1171 struct isl_basic_map *bmap;
1172 isl_space *space;
1174 space = isl_space_set_alloc(ctx, nparam, dim);
1175 if (!space)
1176 return NULL;
1178 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1179 return bset_from_bmap(bmap);
1182 __isl_give isl_basic_set *isl_basic_set_alloc_space(__isl_take isl_space *dim,
1183 unsigned extra, unsigned n_eq, unsigned n_ineq)
1185 struct isl_basic_map *bmap;
1186 if (!dim)
1187 return NULL;
1188 isl_assert(dim->ctx, dim->n_in == 0, goto error);
1189 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1190 return bset_from_bmap(bmap);
1191 error:
1192 isl_space_free(dim);
1193 return NULL;
1196 __isl_give isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *space,
1197 unsigned extra, unsigned n_eq, unsigned n_ineq)
1199 struct isl_basic_map *bmap;
1201 if (!space)
1202 return NULL;
1203 bmap = isl_calloc_type(space->ctx, struct isl_basic_map);
1204 if (!bmap)
1205 goto error;
1206 bmap->dim = space;
1208 return basic_map_init(space->ctx, bmap, extra, n_eq, n_ineq);
1209 error:
1210 isl_space_free(space);
1211 return NULL;
1214 struct isl_basic_map *isl_basic_map_alloc(struct isl_ctx *ctx,
1215 unsigned nparam, unsigned in, unsigned out, unsigned extra,
1216 unsigned n_eq, unsigned n_ineq)
1218 struct isl_basic_map *bmap;
1219 isl_space *dim;
1221 dim = isl_space_alloc(ctx, nparam, in, out);
1222 if (!dim)
1223 return NULL;
1225 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1226 return bmap;
1229 static __isl_give isl_basic_map *dup_constraints(__isl_take isl_basic_map *dst,
1230 __isl_keep isl_basic_map *src)
1232 int i;
1233 unsigned total = isl_basic_map_total_dim(src);
1235 if (!dst)
1236 return NULL;
1238 for (i = 0; i < src->n_eq; ++i) {
1239 int j = isl_basic_map_alloc_equality(dst);
1240 if (j < 0)
1241 return isl_basic_map_free(dst);
1242 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
1245 for (i = 0; i < src->n_ineq; ++i) {
1246 int j = isl_basic_map_alloc_inequality(dst);
1247 if (j < 0)
1248 return isl_basic_map_free(dst);
1249 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
1252 for (i = 0; i < src->n_div; ++i) {
1253 int j = isl_basic_map_alloc_div(dst);
1254 if (j < 0)
1255 return isl_basic_map_free(dst);
1256 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
1258 ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
1259 return dst;
1262 __isl_give isl_basic_map *isl_basic_map_dup(__isl_keep isl_basic_map *bmap)
1264 struct isl_basic_map *dup;
1266 if (!bmap)
1267 return NULL;
1268 dup = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
1269 bmap->n_div, bmap->n_eq, bmap->n_ineq);
1270 dup = dup_constraints(dup, bmap);
1271 if (!dup)
1272 return NULL;
1273 dup->flags = bmap->flags;
1274 dup->sample = isl_vec_copy(bmap->sample);
1275 return dup;
1278 struct isl_basic_set *isl_basic_set_dup(struct isl_basic_set *bset)
1280 struct isl_basic_map *dup;
1282 dup = isl_basic_map_dup(bset_to_bmap(bset));
1283 return bset_from_bmap(dup);
1286 __isl_give isl_basic_set *isl_basic_set_copy(__isl_keep isl_basic_set *bset)
1288 if (!bset)
1289 return NULL;
1291 if (ISL_F_ISSET(bset, ISL_BASIC_SET_FINAL)) {
1292 bset->ref++;
1293 return bset;
1295 return isl_basic_set_dup(bset);
1298 __isl_give isl_set *isl_set_copy(__isl_keep isl_set *set)
1300 if (!set)
1301 return NULL;
1303 set->ref++;
1304 return set;
1307 __isl_give isl_basic_map *isl_basic_map_copy(__isl_keep isl_basic_map *bmap)
1309 if (!bmap)
1310 return NULL;
1312 if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
1313 bmap->ref++;
1314 return bmap;
1316 bmap = isl_basic_map_dup(bmap);
1317 if (bmap)
1318 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1319 return bmap;
1322 __isl_give isl_map *isl_map_copy(__isl_keep isl_map *map)
1324 if (!map)
1325 return NULL;
1327 map->ref++;
1328 return map;
1331 __isl_null isl_basic_map *isl_basic_map_free(__isl_take isl_basic_map *bmap)
1333 if (!bmap)
1334 return NULL;
1336 if (--bmap->ref > 0)
1337 return NULL;
1339 isl_ctx_deref(bmap->ctx);
1340 free(bmap->div);
1341 isl_blk_free(bmap->ctx, bmap->block2);
1342 free(bmap->ineq);
1343 isl_blk_free(bmap->ctx, bmap->block);
1344 isl_vec_free(bmap->sample);
1345 isl_space_free(bmap->dim);
1346 free(bmap);
1348 return NULL;
1351 __isl_null isl_basic_set *isl_basic_set_free(__isl_take isl_basic_set *bset)
1353 return isl_basic_map_free(bset_to_bmap(bset));
1356 static int room_for_con(struct isl_basic_map *bmap, unsigned n)
1358 return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
1361 /* Check that "map" has only named parameters, reporting an error
1362 * if it does not.
1364 isl_stat isl_map_check_named_params(__isl_keep isl_map *map)
1366 return isl_space_check_named_params(isl_map_peek_space(map));
1369 /* Check that "bmap" has only named parameters, reporting an error
1370 * if it does not.
1372 static isl_stat isl_basic_map_check_named_params(__isl_keep isl_basic_map *bmap)
1374 return isl_space_check_named_params(isl_basic_map_peek_space(bmap));
1377 /* Check that "bmap1" and "bmap2" have the same parameters,
1378 * reporting an error if they do not.
1380 static isl_stat isl_basic_map_check_equal_params(
1381 __isl_keep isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
1383 isl_bool match;
1385 match = isl_basic_map_has_equal_params(bmap1, bmap2);
1386 if (match < 0)
1387 return isl_stat_error;
1388 if (!match)
1389 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
1390 "parameters don't match", return isl_stat_error);
1391 return isl_stat_ok;
1394 __isl_give isl_map *isl_map_align_params_map_map_and(
1395 __isl_take isl_map *map1, __isl_take isl_map *map2,
1396 __isl_give isl_map *(*fn)(__isl_take isl_map *map1,
1397 __isl_take isl_map *map2))
1399 if (!map1 || !map2)
1400 goto error;
1401 if (isl_map_has_equal_params(map1, map2))
1402 return fn(map1, map2);
1403 if (isl_map_check_named_params(map1) < 0)
1404 goto error;
1405 if (isl_map_check_named_params(map2) < 0)
1406 goto error;
1407 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1408 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1409 return fn(map1, map2);
1410 error:
1411 isl_map_free(map1);
1412 isl_map_free(map2);
1413 return NULL;
1416 isl_bool isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
1417 __isl_keep isl_map *map2,
1418 isl_bool (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
1420 isl_bool r;
1422 if (!map1 || !map2)
1423 return isl_bool_error;
1424 if (isl_map_has_equal_params(map1, map2))
1425 return fn(map1, map2);
1426 if (isl_map_check_named_params(map1) < 0)
1427 return isl_bool_error;
1428 if (isl_map_check_named_params(map2) < 0)
1429 return isl_bool_error;
1430 map1 = isl_map_copy(map1);
1431 map2 = isl_map_copy(map2);
1432 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1433 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1434 r = fn(map1, map2);
1435 isl_map_free(map1);
1436 isl_map_free(map2);
1437 return r;
1440 int isl_basic_map_alloc_equality(struct isl_basic_map *bmap)
1442 struct isl_ctx *ctx;
1443 if (!bmap)
1444 return -1;
1445 ctx = bmap->ctx;
1446 isl_assert(ctx, room_for_con(bmap, 1), return -1);
1447 isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
1448 return -1);
1449 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1450 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1451 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1452 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1453 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1454 isl_int *t;
1455 int j = isl_basic_map_alloc_inequality(bmap);
1456 if (j < 0)
1457 return -1;
1458 t = bmap->ineq[j];
1459 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1460 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1461 bmap->eq[-1] = t;
1462 bmap->n_eq++;
1463 bmap->n_ineq--;
1464 bmap->eq--;
1465 return 0;
1467 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
1468 bmap->extra - bmap->n_div);
1469 return bmap->n_eq++;
1472 int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
1474 return isl_basic_map_alloc_equality(bset_to_bmap(bset));
1477 int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
1479 if (!bmap)
1480 return -1;
1481 isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
1482 bmap->n_eq -= n;
1483 return 0;
1486 int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
1488 return isl_basic_map_free_equality(bset_to_bmap(bset), n);
1491 int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
1493 isl_int *t;
1494 if (!bmap)
1495 return -1;
1496 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1498 if (pos != bmap->n_eq - 1) {
1499 t = bmap->eq[pos];
1500 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
1501 bmap->eq[bmap->n_eq - 1] = t;
1503 bmap->n_eq--;
1504 return 0;
1507 /* Turn inequality "pos" of "bmap" into an equality.
1509 * In particular, we move the inequality in front of the equalities
1510 * and move the last inequality in the position of the moved inequality.
1511 * Note that isl_tab_make_equalities_explicit depends on this particular
1512 * change in the ordering of the constraints.
1514 void isl_basic_map_inequality_to_equality(
1515 struct isl_basic_map *bmap, unsigned pos)
1517 isl_int *t;
1519 t = bmap->ineq[pos];
1520 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1521 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1522 bmap->eq[-1] = t;
1523 bmap->n_eq++;
1524 bmap->n_ineq--;
1525 bmap->eq--;
1526 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1527 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1528 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1529 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1532 static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
1534 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1537 int isl_basic_map_alloc_inequality(__isl_keep isl_basic_map *bmap)
1539 struct isl_ctx *ctx;
1540 if (!bmap)
1541 return -1;
1542 ctx = bmap->ctx;
1543 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1544 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1545 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1546 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1547 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1548 isl_seq_clr(bmap->ineq[bmap->n_ineq] +
1549 1 + isl_basic_map_total_dim(bmap),
1550 bmap->extra - bmap->n_div);
1551 return bmap->n_ineq++;
1554 int isl_basic_set_alloc_inequality(__isl_keep isl_basic_set *bset)
1556 return isl_basic_map_alloc_inequality(bset_to_bmap(bset));
1559 int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
1561 if (!bmap)
1562 return -1;
1563 isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
1564 bmap->n_ineq -= n;
1565 return 0;
1568 int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
1570 return isl_basic_map_free_inequality(bset_to_bmap(bset), n);
1573 int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
1575 isl_int *t;
1576 if (!bmap)
1577 return -1;
1578 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1580 if (pos != bmap->n_ineq - 1) {
1581 t = bmap->ineq[pos];
1582 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1583 bmap->ineq[bmap->n_ineq - 1] = t;
1584 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1586 bmap->n_ineq--;
1587 return 0;
1590 int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
1592 return isl_basic_map_drop_inequality(bset_to_bmap(bset), pos);
1595 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1596 isl_int *eq)
1598 isl_bool empty;
1599 int k;
1601 empty = isl_basic_map_plain_is_empty(bmap);
1602 if (empty < 0)
1603 return isl_basic_map_free(bmap);
1604 if (empty)
1605 return bmap;
1607 bmap = isl_basic_map_cow(bmap);
1608 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1609 if (!bmap)
1610 return NULL;
1611 k = isl_basic_map_alloc_equality(bmap);
1612 if (k < 0)
1613 goto error;
1614 isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
1615 return bmap;
1616 error:
1617 isl_basic_map_free(bmap);
1618 return NULL;
1621 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1622 isl_int *eq)
1624 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset), eq));
1627 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1628 isl_int *ineq)
1630 int k;
1632 bmap = isl_basic_map_cow(bmap);
1633 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1634 if (!bmap)
1635 return NULL;
1636 k = isl_basic_map_alloc_inequality(bmap);
1637 if (k < 0)
1638 goto error;
1639 isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
1640 return bmap;
1641 error:
1642 isl_basic_map_free(bmap);
1643 return NULL;
1646 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1647 isl_int *ineq)
1649 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset), ineq));
1652 int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
1654 if (!bmap)
1655 return -1;
1656 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1657 isl_seq_clr(bmap->div[bmap->n_div] +
1658 1 + 1 + isl_basic_map_total_dim(bmap),
1659 bmap->extra - bmap->n_div);
1660 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1661 return bmap->n_div++;
1664 int isl_basic_set_alloc_div(struct isl_basic_set *bset)
1666 return isl_basic_map_alloc_div(bset_to_bmap(bset));
1669 /* Check that there are "n" dimensions of type "type" starting at "first"
1670 * in "bmap".
1672 static isl_stat isl_basic_map_check_range(__isl_keep isl_basic_map *bmap,
1673 enum isl_dim_type type, unsigned first, unsigned n)
1675 unsigned dim;
1677 if (!bmap)
1678 return isl_stat_error;
1679 dim = isl_basic_map_dim(bmap, type);
1680 if (first + n > dim || first + n < first)
1681 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1682 "position or range out of bounds",
1683 return isl_stat_error);
1684 return isl_stat_ok;
1687 /* Insert an extra integer division, prescribed by "div", to "bmap"
1688 * at (integer division) position "pos".
1690 * The integer division is first added at the end and then moved
1691 * into the right position.
1693 __isl_give isl_basic_map *isl_basic_map_insert_div(
1694 __isl_take isl_basic_map *bmap, int pos, __isl_keep isl_vec *div)
1696 int i, k;
1698 bmap = isl_basic_map_cow(bmap);
1699 if (!bmap || !div)
1700 return isl_basic_map_free(bmap);
1702 if (div->size != 1 + 1 + isl_basic_map_dim(bmap, isl_dim_all))
1703 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1704 "unexpected size", return isl_basic_map_free(bmap));
1705 if (isl_basic_map_check_range(bmap, isl_dim_div, pos, 0) < 0)
1706 return isl_basic_map_free(bmap);
1708 bmap = isl_basic_map_extend_space(bmap,
1709 isl_basic_map_get_space(bmap), 1, 0, 2);
1710 k = isl_basic_map_alloc_div(bmap);
1711 if (k < 0)
1712 return isl_basic_map_free(bmap);
1713 isl_seq_cpy(bmap->div[k], div->el, div->size);
1714 isl_int_set_si(bmap->div[k][div->size], 0);
1716 for (i = k; i > pos; --i)
1717 isl_basic_map_swap_div(bmap, i, i - 1);
1719 return bmap;
1722 isl_stat isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
1724 if (!bmap)
1725 return isl_stat_error;
1726 isl_assert(bmap->ctx, n <= bmap->n_div, return isl_stat_error);
1727 bmap->n_div -= n;
1728 return isl_stat_ok;
1731 /* Copy constraint from src to dst, putting the vars of src at offset
1732 * dim_off in dst and the divs of src at offset div_off in dst.
1733 * If both sets are actually map, then dim_off applies to the input
1734 * variables.
1736 static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
1737 struct isl_basic_map *src_map, isl_int *src,
1738 unsigned in_off, unsigned out_off, unsigned div_off)
1740 unsigned src_nparam = isl_basic_map_dim(src_map, isl_dim_param);
1741 unsigned dst_nparam = isl_basic_map_dim(dst_map, isl_dim_param);
1742 unsigned src_in = isl_basic_map_dim(src_map, isl_dim_in);
1743 unsigned dst_in = isl_basic_map_dim(dst_map, isl_dim_in);
1744 unsigned src_out = isl_basic_map_dim(src_map, isl_dim_out);
1745 unsigned dst_out = isl_basic_map_dim(dst_map, isl_dim_out);
1746 isl_int_set(dst[0], src[0]);
1747 isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
1748 if (dst_nparam > src_nparam)
1749 isl_seq_clr(dst+1+src_nparam,
1750 dst_nparam - src_nparam);
1751 isl_seq_clr(dst+1+dst_nparam, in_off);
1752 isl_seq_cpy(dst+1+dst_nparam+in_off,
1753 src+1+src_nparam,
1754 isl_min(dst_in-in_off, src_in));
1755 if (dst_in-in_off > src_in)
1756 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
1757 dst_in - in_off - src_in);
1758 isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
1759 isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
1760 src+1+src_nparam+src_in,
1761 isl_min(dst_out-out_off, src_out));
1762 if (dst_out-out_off > src_out)
1763 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
1764 dst_out - out_off - src_out);
1765 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
1766 isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
1767 src+1+src_nparam+src_in+src_out,
1768 isl_min(dst_map->extra-div_off, src_map->n_div));
1769 if (dst_map->n_div-div_off > src_map->n_div)
1770 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
1771 div_off+src_map->n_div,
1772 dst_map->n_div - div_off - src_map->n_div);
1775 static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
1776 struct isl_basic_map *src_map, isl_int *src,
1777 unsigned in_off, unsigned out_off, unsigned div_off)
1779 isl_int_set(dst[0], src[0]);
1780 copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
1783 static __isl_give isl_basic_map *add_constraints(
1784 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2,
1785 unsigned i_pos, unsigned o_pos)
1787 int i;
1788 unsigned div_off;
1790 if (!bmap1 || !bmap2)
1791 goto error;
1793 div_off = bmap1->n_div;
1795 for (i = 0; i < bmap2->n_eq; ++i) {
1796 int i1 = isl_basic_map_alloc_equality(bmap1);
1797 if (i1 < 0)
1798 goto error;
1799 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
1800 i_pos, o_pos, div_off);
1803 for (i = 0; i < bmap2->n_ineq; ++i) {
1804 int i1 = isl_basic_map_alloc_inequality(bmap1);
1805 if (i1 < 0)
1806 goto error;
1807 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
1808 i_pos, o_pos, div_off);
1811 for (i = 0; i < bmap2->n_div; ++i) {
1812 int i1 = isl_basic_map_alloc_div(bmap1);
1813 if (i1 < 0)
1814 goto error;
1815 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
1816 i_pos, o_pos, div_off);
1819 isl_basic_map_free(bmap2);
1821 return bmap1;
1823 error:
1824 isl_basic_map_free(bmap1);
1825 isl_basic_map_free(bmap2);
1826 return NULL;
1829 struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
1830 struct isl_basic_set *bset2, unsigned pos)
1832 return bset_from_bmap(add_constraints(bset_to_bmap(bset1),
1833 bset_to_bmap(bset2), 0, pos));
1836 __isl_give isl_basic_map *isl_basic_map_extend_space(
1837 __isl_take isl_basic_map *base, __isl_take isl_space *space,
1838 unsigned extra, unsigned n_eq, unsigned n_ineq)
1840 struct isl_basic_map *ext;
1841 unsigned flags;
1842 int dims_ok;
1844 if (!space)
1845 goto error;
1847 if (!base)
1848 goto error;
1850 dims_ok = isl_space_is_equal(base->dim, space) &&
1851 base->extra >= base->n_div + extra;
1853 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1854 room_for_ineq(base, n_ineq)) {
1855 isl_space_free(space);
1856 return base;
1859 isl_assert(base->ctx, base->dim->nparam <= space->nparam, goto error);
1860 isl_assert(base->ctx, base->dim->n_in <= space->n_in, goto error);
1861 isl_assert(base->ctx, base->dim->n_out <= space->n_out, goto error);
1862 extra += base->extra;
1863 n_eq += base->n_eq;
1864 n_ineq += base->n_ineq;
1866 ext = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1867 space = NULL;
1868 if (!ext)
1869 goto error;
1871 if (dims_ok)
1872 ext->sample = isl_vec_copy(base->sample);
1873 flags = base->flags;
1874 ext = add_constraints(ext, base, 0, 0);
1875 if (ext) {
1876 ext->flags = flags;
1877 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
1880 return ext;
1882 error:
1883 isl_space_free(space);
1884 isl_basic_map_free(base);
1885 return NULL;
1888 __isl_give isl_basic_set *isl_basic_set_extend_space(
1889 __isl_take isl_basic_set *base,
1890 __isl_take isl_space *dim, unsigned extra,
1891 unsigned n_eq, unsigned n_ineq)
1893 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base),
1894 dim, extra, n_eq, n_ineq));
1897 struct isl_basic_map *isl_basic_map_extend_constraints(
1898 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
1900 if (!base)
1901 return NULL;
1902 return isl_basic_map_extend_space(base, isl_space_copy(base->dim),
1903 0, n_eq, n_ineq);
1906 struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
1907 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
1908 unsigned n_eq, unsigned n_ineq)
1910 struct isl_basic_map *bmap;
1911 isl_space *dim;
1913 if (!base)
1914 return NULL;
1915 dim = isl_space_alloc(base->ctx, nparam, n_in, n_out);
1916 if (!dim)
1917 goto error;
1919 bmap = isl_basic_map_extend_space(base, dim, extra, n_eq, n_ineq);
1920 return bmap;
1921 error:
1922 isl_basic_map_free(base);
1923 return NULL;
1926 struct isl_basic_set *isl_basic_set_extend_constraints(
1927 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1929 isl_basic_map *bmap = bset_to_bmap(base);
1930 bmap = isl_basic_map_extend_constraints(bmap, n_eq, n_ineq);
1931 return bset_from_bmap(bmap);
1934 __isl_give isl_basic_set *isl_basic_set_cow(__isl_take isl_basic_set *bset)
1936 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset)));
1939 __isl_give isl_basic_map *isl_basic_map_cow(__isl_take isl_basic_map *bmap)
1941 if (!bmap)
1942 return NULL;
1944 if (bmap->ref > 1) {
1945 bmap->ref--;
1946 bmap = isl_basic_map_dup(bmap);
1948 if (bmap) {
1949 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
1950 ISL_F_CLR(bmap, ISL_BASIC_MAP_REDUCED_COEFFICIENTS);
1952 return bmap;
1955 /* Clear all cached information in "map", either because it is about
1956 * to be modified or because it is being freed.
1957 * Always return the same pointer that is passed in.
1958 * This is needed for the use in isl_map_free.
1960 static __isl_give isl_map *clear_caches(__isl_take isl_map *map)
1962 isl_basic_map_free(map->cached_simple_hull[0]);
1963 isl_basic_map_free(map->cached_simple_hull[1]);
1964 map->cached_simple_hull[0] = NULL;
1965 map->cached_simple_hull[1] = NULL;
1966 return map;
1969 __isl_give isl_set *isl_set_cow(__isl_take isl_set *set)
1971 return isl_map_cow(set);
1974 /* Return an isl_map that is equal to "map" and that has only
1975 * a single reference.
1977 * If the original input already has only one reference, then
1978 * simply return it, but clear all cached information, since
1979 * it may be rendered invalid by the operations that will be
1980 * performed on the result.
1982 * Otherwise, create a duplicate (without any cached information).
1984 __isl_give isl_map *isl_map_cow(__isl_take isl_map *map)
1986 if (!map)
1987 return NULL;
1989 if (map->ref == 1)
1990 return clear_caches(map);
1991 map->ref--;
1992 return isl_map_dup(map);
1995 static void swap_vars(struct isl_blk blk, isl_int *a,
1996 unsigned a_len, unsigned b_len)
1998 isl_seq_cpy(blk.data, a+a_len, b_len);
1999 isl_seq_cpy(blk.data+b_len, a, a_len);
2000 isl_seq_cpy(a, blk.data, b_len+a_len);
2003 static __isl_give isl_basic_map *isl_basic_map_swap_vars(
2004 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
2006 int i;
2007 struct isl_blk blk;
2009 if (!bmap)
2010 goto error;
2012 isl_assert(bmap->ctx,
2013 pos + n1 + n2 <= 1 + isl_basic_map_total_dim(bmap), goto error);
2015 if (n1 == 0 || n2 == 0)
2016 return bmap;
2018 bmap = isl_basic_map_cow(bmap);
2019 if (!bmap)
2020 return NULL;
2022 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
2023 if (isl_blk_is_error(blk))
2024 goto error;
2026 for (i = 0; i < bmap->n_eq; ++i)
2027 swap_vars(blk,
2028 bmap->eq[i] + pos, n1, n2);
2030 for (i = 0; i < bmap->n_ineq; ++i)
2031 swap_vars(blk,
2032 bmap->ineq[i] + pos, n1, n2);
2034 for (i = 0; i < bmap->n_div; ++i)
2035 swap_vars(blk,
2036 bmap->div[i]+1 + pos, n1, n2);
2038 isl_blk_free(bmap->ctx, blk);
2040 ISL_F_CLR(bmap, ISL_BASIC_SET_SORTED);
2041 bmap = isl_basic_map_gauss(bmap, NULL);
2042 return isl_basic_map_finalize(bmap);
2043 error:
2044 isl_basic_map_free(bmap);
2045 return NULL;
2048 __isl_give isl_basic_map *isl_basic_map_set_to_empty(
2049 __isl_take isl_basic_map *bmap)
2051 int i = 0;
2052 unsigned total;
2053 if (!bmap)
2054 goto error;
2055 total = isl_basic_map_total_dim(bmap);
2056 if (isl_basic_map_free_div(bmap, bmap->n_div) < 0)
2057 return isl_basic_map_free(bmap);
2058 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
2059 if (bmap->n_eq > 0)
2060 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
2061 else {
2062 i = isl_basic_map_alloc_equality(bmap);
2063 if (i < 0)
2064 goto error;
2066 isl_int_set_si(bmap->eq[i][0], 1);
2067 isl_seq_clr(bmap->eq[i]+1, total);
2068 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
2069 isl_vec_free(bmap->sample);
2070 bmap->sample = NULL;
2071 return isl_basic_map_finalize(bmap);
2072 error:
2073 isl_basic_map_free(bmap);
2074 return NULL;
2077 __isl_give isl_basic_set *isl_basic_set_set_to_empty(
2078 __isl_take isl_basic_set *bset)
2080 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset)));
2083 __isl_give isl_basic_map *isl_basic_map_set_rational(
2084 __isl_take isl_basic_map *bmap)
2086 if (!bmap)
2087 return NULL;
2089 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
2090 return bmap;
2092 bmap = isl_basic_map_cow(bmap);
2093 if (!bmap)
2094 return NULL;
2096 ISL_F_SET(bmap, ISL_BASIC_MAP_RATIONAL);
2098 return isl_basic_map_finalize(bmap);
2101 __isl_give isl_basic_set *isl_basic_set_set_rational(
2102 __isl_take isl_basic_set *bset)
2104 return isl_basic_map_set_rational(bset);
2107 __isl_give isl_basic_set *isl_basic_set_set_integral(
2108 __isl_take isl_basic_set *bset)
2110 if (!bset)
2111 return NULL;
2113 if (!ISL_F_ISSET(bset, ISL_BASIC_MAP_RATIONAL))
2114 return bset;
2116 bset = isl_basic_set_cow(bset);
2117 if (!bset)
2118 return NULL;
2120 ISL_F_CLR(bset, ISL_BASIC_MAP_RATIONAL);
2122 return isl_basic_set_finalize(bset);
2125 __isl_give isl_map *isl_map_set_rational(__isl_take isl_map *map)
2127 int i;
2129 map = isl_map_cow(map);
2130 if (!map)
2131 return NULL;
2132 for (i = 0; i < map->n; ++i) {
2133 map->p[i] = isl_basic_map_set_rational(map->p[i]);
2134 if (!map->p[i])
2135 goto error;
2137 return map;
2138 error:
2139 isl_map_free(map);
2140 return NULL;
2143 __isl_give isl_set *isl_set_set_rational(__isl_take isl_set *set)
2145 return isl_map_set_rational(set);
2148 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
2149 * of "bmap").
2151 static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
2153 isl_int *t = bmap->div[a];
2154 bmap->div[a] = bmap->div[b];
2155 bmap->div[b] = t;
2158 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
2159 * div definitions accordingly.
2161 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
2163 int i;
2164 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
2166 swap_div(bmap, a, b);
2168 for (i = 0; i < bmap->n_eq; ++i)
2169 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
2171 for (i = 0; i < bmap->n_ineq; ++i)
2172 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
2174 for (i = 0; i < bmap->n_div; ++i)
2175 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
2176 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
2179 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
2181 isl_seq_cpy(c, c + n, rem);
2182 isl_seq_clr(c + rem, n);
2185 /* Drop n dimensions starting at first.
2187 * In principle, this frees up some extra variables as the number
2188 * of columns remains constant, but we would have to extend
2189 * the div array too as the number of rows in this array is assumed
2190 * to be equal to extra.
2192 __isl_give isl_basic_set *isl_basic_set_drop_dims(
2193 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2195 return isl_basic_map_drop(bset_to_bmap(bset), isl_dim_set, first, n);
2198 /* Move "n" divs starting at "first" to the end of the list of divs.
2200 static struct isl_basic_map *move_divs_last(struct isl_basic_map *bmap,
2201 unsigned first, unsigned n)
2203 isl_int **div;
2204 int i;
2206 if (first + n == bmap->n_div)
2207 return bmap;
2209 div = isl_alloc_array(bmap->ctx, isl_int *, n);
2210 if (!div)
2211 goto error;
2212 for (i = 0; i < n; ++i)
2213 div[i] = bmap->div[first + i];
2214 for (i = 0; i < bmap->n_div - first - n; ++i)
2215 bmap->div[first + i] = bmap->div[first + n + i];
2216 for (i = 0; i < n; ++i)
2217 bmap->div[bmap->n_div - n + i] = div[i];
2218 free(div);
2219 return bmap;
2220 error:
2221 isl_basic_map_free(bmap);
2222 return NULL;
2225 /* Check that there are "n" dimensions of type "type" starting at "first"
2226 * in "map".
2228 static isl_stat isl_map_check_range(__isl_keep isl_map *map,
2229 enum isl_dim_type type, unsigned first, unsigned n)
2231 if (!map)
2232 return isl_stat_error;
2233 if (first + n > isl_map_dim(map, type) || first + n < first)
2234 isl_die(isl_map_get_ctx(map), isl_error_invalid,
2235 "position or range out of bounds",
2236 return isl_stat_error);
2237 return isl_stat_ok;
2240 /* Drop "n" dimensions of type "type" starting at "first".
2242 * In principle, this frees up some extra variables as the number
2243 * of columns remains constant, but we would have to extend
2244 * the div array too as the number of rows in this array is assumed
2245 * to be equal to extra.
2247 __isl_give isl_basic_map *isl_basic_map_drop(__isl_take isl_basic_map *bmap,
2248 enum isl_dim_type type, unsigned first, unsigned n)
2250 int i;
2251 unsigned dim;
2252 unsigned offset;
2253 unsigned left;
2255 if (!bmap)
2256 goto error;
2258 dim = isl_basic_map_dim(bmap, type);
2259 isl_assert(bmap->ctx, first + n <= dim, goto error);
2261 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2262 return bmap;
2264 bmap = isl_basic_map_cow(bmap);
2265 if (!bmap)
2266 return NULL;
2268 offset = isl_basic_map_offset(bmap, type) + first;
2269 left = isl_basic_map_total_dim(bmap) - (offset - 1) - n;
2270 for (i = 0; i < bmap->n_eq; ++i)
2271 constraint_drop_vars(bmap->eq[i]+offset, n, left);
2273 for (i = 0; i < bmap->n_ineq; ++i)
2274 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
2276 for (i = 0; i < bmap->n_div; ++i)
2277 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
2279 if (type == isl_dim_div) {
2280 bmap = move_divs_last(bmap, first, n);
2281 if (!bmap)
2282 goto error;
2283 if (isl_basic_map_free_div(bmap, n) < 0)
2284 return isl_basic_map_free(bmap);
2285 } else
2286 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
2287 if (!bmap->dim)
2288 goto error;
2290 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
2291 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
2292 bmap = isl_basic_map_simplify(bmap);
2293 return isl_basic_map_finalize(bmap);
2294 error:
2295 isl_basic_map_free(bmap);
2296 return NULL;
2299 __isl_give isl_basic_set *isl_basic_set_drop(__isl_take isl_basic_set *bset,
2300 enum isl_dim_type type, unsigned first, unsigned n)
2302 return bset_from_bmap(isl_basic_map_drop(bset_to_bmap(bset),
2303 type, first, n));
2306 /* No longer consider "map" to be normalized.
2308 static __isl_give isl_map *isl_map_unmark_normalized(__isl_take isl_map *map)
2310 if (!map)
2311 return NULL;
2312 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2313 return map;
2316 __isl_give isl_map *isl_map_drop(__isl_take isl_map *map,
2317 enum isl_dim_type type, unsigned first, unsigned n)
2319 int i;
2321 if (isl_map_check_range(map, type, first, n) < 0)
2322 return isl_map_free(map);
2324 if (n == 0 && !isl_space_is_named_or_nested(map->dim, type))
2325 return map;
2326 map = isl_map_cow(map);
2327 if (!map)
2328 goto error;
2329 map->dim = isl_space_drop_dims(map->dim, type, first, n);
2330 if (!map->dim)
2331 goto error;
2333 for (i = 0; i < map->n; ++i) {
2334 map->p[i] = isl_basic_map_drop(map->p[i], type, first, n);
2335 if (!map->p[i])
2336 goto error;
2338 map = isl_map_unmark_normalized(map);
2340 return map;
2341 error:
2342 isl_map_free(map);
2343 return NULL;
2346 __isl_give isl_set *isl_set_drop(__isl_take isl_set *set,
2347 enum isl_dim_type type, unsigned first, unsigned n)
2349 return set_from_map(isl_map_drop(set_to_map(set), type, first, n));
2353 * We don't cow, as the div is assumed to be redundant.
2355 __isl_give isl_basic_map *isl_basic_map_drop_div(
2356 __isl_take isl_basic_map *bmap, unsigned div)
2358 int i;
2359 unsigned pos;
2361 if (!bmap)
2362 goto error;
2364 pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
2366 isl_assert(bmap->ctx, div < bmap->n_div, goto error);
2368 for (i = 0; i < bmap->n_eq; ++i)
2369 constraint_drop_vars(bmap->eq[i]+pos, 1, bmap->extra-div-1);
2371 for (i = 0; i < bmap->n_ineq; ++i) {
2372 if (!isl_int_is_zero(bmap->ineq[i][pos])) {
2373 isl_basic_map_drop_inequality(bmap, i);
2374 --i;
2375 continue;
2377 constraint_drop_vars(bmap->ineq[i]+pos, 1, bmap->extra-div-1);
2380 for (i = 0; i < bmap->n_div; ++i)
2381 constraint_drop_vars(bmap->div[i]+1+pos, 1, bmap->extra-div-1);
2383 if (div != bmap->n_div - 1) {
2384 int j;
2385 isl_int *t = bmap->div[div];
2387 for (j = div; j < bmap->n_div - 1; ++j)
2388 bmap->div[j] = bmap->div[j+1];
2390 bmap->div[bmap->n_div - 1] = t;
2392 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
2393 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
2394 if (isl_basic_map_free_div(bmap, 1) < 0)
2395 return isl_basic_map_free(bmap);
2397 return bmap;
2398 error:
2399 isl_basic_map_free(bmap);
2400 return NULL;
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_map *isl_map_eliminate(__isl_take isl_map *map,
2408 enum isl_dim_type type, unsigned first, unsigned n)
2410 int i;
2412 if (n == 0)
2413 return map;
2415 if (isl_map_check_range(map, type, first, n) < 0)
2416 return isl_map_free(map);
2418 map = isl_map_cow(map);
2419 if (!map)
2420 return NULL;
2422 for (i = 0; i < map->n; ++i) {
2423 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
2424 if (!map->p[i])
2425 goto error;
2427 return map;
2428 error:
2429 isl_map_free(map);
2430 return NULL;
2433 /* Eliminate the specified n dimensions starting at first from the
2434 * constraints, without removing the dimensions from the space.
2435 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2437 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
2438 enum isl_dim_type type, unsigned first, unsigned n)
2440 return set_from_map(isl_map_eliminate(set_to_map(set), type, first, n));
2443 /* Eliminate the specified n dimensions starting at first from the
2444 * constraints, without removing the dimensions from the space.
2445 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2447 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
2448 unsigned first, unsigned n)
2450 return isl_set_eliminate(set, isl_dim_set, first, n);
2453 __isl_give isl_basic_map *isl_basic_map_remove_divs(
2454 __isl_take isl_basic_map *bmap)
2456 if (!bmap)
2457 return NULL;
2458 bmap = isl_basic_map_eliminate_vars(bmap,
2459 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
2460 if (!bmap)
2461 return NULL;
2462 bmap->n_div = 0;
2463 return isl_basic_map_finalize(bmap);
2466 __isl_give isl_basic_set *isl_basic_set_remove_divs(
2467 __isl_take isl_basic_set *bset)
2469 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset)));
2472 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
2474 int i;
2476 if (!map)
2477 return NULL;
2478 if (map->n == 0)
2479 return map;
2481 map = isl_map_cow(map);
2482 if (!map)
2483 return NULL;
2485 for (i = 0; i < map->n; ++i) {
2486 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
2487 if (!map->p[i])
2488 goto error;
2490 return map;
2491 error:
2492 isl_map_free(map);
2493 return NULL;
2496 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
2498 return isl_map_remove_divs(set);
2501 __isl_give isl_basic_map *isl_basic_map_remove_dims(
2502 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
2503 unsigned first, unsigned n)
2505 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2506 return isl_basic_map_free(bmap);
2507 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2508 return bmap;
2509 bmap = isl_basic_map_eliminate_vars(bmap,
2510 isl_basic_map_offset(bmap, type) - 1 + first, n);
2511 if (!bmap)
2512 return bmap;
2513 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
2514 return bmap;
2515 bmap = isl_basic_map_drop(bmap, type, first, n);
2516 return bmap;
2519 /* Return true if the definition of the given div (recursively) involves
2520 * any of the given variables.
2522 static isl_bool div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
2523 unsigned first, unsigned n)
2525 int i;
2526 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2528 if (isl_int_is_zero(bmap->div[div][0]))
2529 return isl_bool_false;
2530 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
2531 return isl_bool_true;
2533 for (i = bmap->n_div - 1; i >= 0; --i) {
2534 isl_bool involves;
2536 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2537 continue;
2538 involves = div_involves_vars(bmap, i, first, n);
2539 if (involves < 0 || involves)
2540 return involves;
2543 return isl_bool_false;
2546 /* Try and add a lower and/or upper bound on "div" to "bmap"
2547 * based on inequality "i".
2548 * "total" is the total number of variables (excluding the divs).
2549 * "v" is a temporary object that can be used during the calculations.
2550 * If "lb" is set, then a lower bound should be constructed.
2551 * If "ub" is set, then an upper bound should be constructed.
2553 * The calling function has already checked that the inequality does not
2554 * reference "div", but we still need to check that the inequality is
2555 * of the right form. We'll consider the case where we want to construct
2556 * a lower bound. The construction of upper bounds is similar.
2558 * Let "div" be of the form
2560 * q = floor((a + f(x))/d)
2562 * We essentially check if constraint "i" is of the form
2564 * b + f(x) >= 0
2566 * so that we can use it to derive a lower bound on "div".
2567 * However, we allow a slightly more general form
2569 * b + g(x) >= 0
2571 * with the condition that the coefficients of g(x) - f(x) are all
2572 * divisible by d.
2573 * Rewriting this constraint as
2575 * 0 >= -b - g(x)
2577 * adding a + f(x) to both sides and dividing by d, we obtain
2579 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2581 * Taking the floor on both sides, we obtain
2583 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2585 * or
2587 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2589 * In the case of an upper bound, we construct the constraint
2591 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2594 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2595 __isl_take isl_basic_map *bmap, int div, int i,
2596 unsigned total, isl_int v, int lb, int ub)
2598 int j;
2600 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2601 if (lb) {
2602 isl_int_sub(v, bmap->ineq[i][1 + j],
2603 bmap->div[div][1 + 1 + j]);
2604 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2606 if (ub) {
2607 isl_int_add(v, bmap->ineq[i][1 + j],
2608 bmap->div[div][1 + 1 + j]);
2609 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2612 if (!lb && !ub)
2613 return bmap;
2615 bmap = isl_basic_map_cow(bmap);
2616 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2617 if (lb) {
2618 int k = isl_basic_map_alloc_inequality(bmap);
2619 if (k < 0)
2620 goto error;
2621 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2622 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2623 bmap->div[div][1 + j]);
2624 isl_int_cdiv_q(bmap->ineq[k][j],
2625 bmap->ineq[k][j], bmap->div[div][0]);
2627 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2629 if (ub) {
2630 int k = isl_basic_map_alloc_inequality(bmap);
2631 if (k < 0)
2632 goto error;
2633 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2634 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2635 bmap->div[div][1 + j]);
2636 isl_int_fdiv_q(bmap->ineq[k][j],
2637 bmap->ineq[k][j], bmap->div[div][0]);
2639 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2642 return bmap;
2643 error:
2644 isl_basic_map_free(bmap);
2645 return NULL;
2648 /* This function is called right before "div" is eliminated from "bmap"
2649 * using Fourier-Motzkin.
2650 * Look through the constraints of "bmap" for constraints on the argument
2651 * of the integer division and use them to construct constraints on the
2652 * integer division itself. These constraints can then be combined
2653 * during the Fourier-Motzkin elimination.
2654 * Note that it is only useful to introduce lower bounds on "div"
2655 * if "bmap" already contains upper bounds on "div" as the newly
2656 * introduce lower bounds can then be combined with the pre-existing
2657 * upper bounds. Similarly for upper bounds.
2658 * We therefore first check if "bmap" contains any lower and/or upper bounds
2659 * on "div".
2661 * It is interesting to note that the introduction of these constraints
2662 * can indeed lead to more accurate results, even when compared to
2663 * deriving constraints on the argument of "div" from constraints on "div".
2664 * Consider, for example, the set
2666 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2668 * The second constraint can be rewritten as
2670 * 2 * [(-i-2j+3)/4] + k >= 0
2672 * from which we can derive
2674 * -i - 2j + 3 >= -2k
2676 * or
2678 * i + 2j <= 3 + 2k
2680 * Combined with the first constraint, we obtain
2682 * -3 <= 3 + 2k or k >= -3
2684 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2685 * the first constraint, we obtain
2687 * [(i + 2j)/4] >= [-3/4] = -1
2689 * Combining this constraint with the second constraint, we obtain
2691 * k >= -2
2693 static __isl_give isl_basic_map *insert_bounds_on_div(
2694 __isl_take isl_basic_map *bmap, int div)
2696 int i;
2697 int check_lb, check_ub;
2698 isl_int v;
2699 unsigned total;
2701 if (!bmap)
2702 return NULL;
2704 if (isl_int_is_zero(bmap->div[div][0]))
2705 return bmap;
2707 total = isl_space_dim(bmap->dim, isl_dim_all);
2709 check_lb = 0;
2710 check_ub = 0;
2711 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
2712 int s = isl_int_sgn(bmap->ineq[i][1 + total + div]);
2713 if (s > 0)
2714 check_ub = 1;
2715 if (s < 0)
2716 check_lb = 1;
2719 if (!check_lb && !check_ub)
2720 return bmap;
2722 isl_int_init(v);
2724 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
2725 if (!isl_int_is_zero(bmap->ineq[i][1 + total + div]))
2726 continue;
2728 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, total, v,
2729 check_lb, check_ub);
2732 isl_int_clear(v);
2734 return bmap;
2737 /* Remove all divs (recursively) involving any of the given dimensions
2738 * in their definitions.
2740 __isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
2741 __isl_take isl_basic_map *bmap,
2742 enum isl_dim_type type, unsigned first, unsigned n)
2744 int i;
2746 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2747 return isl_basic_map_free(bmap);
2748 first += isl_basic_map_offset(bmap, type);
2750 for (i = bmap->n_div - 1; i >= 0; --i) {
2751 isl_bool involves;
2753 involves = div_involves_vars(bmap, i, first, n);
2754 if (involves < 0)
2755 return isl_basic_map_free(bmap);
2756 if (!involves)
2757 continue;
2758 bmap = insert_bounds_on_div(bmap, i);
2759 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2760 if (!bmap)
2761 return NULL;
2762 i = bmap->n_div;
2765 return bmap;
2768 __isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
2769 __isl_take isl_basic_set *bset,
2770 enum isl_dim_type type, unsigned first, unsigned n)
2772 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
2775 __isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
2776 enum isl_dim_type type, unsigned first, unsigned n)
2778 int i;
2780 if (!map)
2781 return NULL;
2782 if (map->n == 0)
2783 return map;
2785 map = isl_map_cow(map);
2786 if (!map)
2787 return NULL;
2789 for (i = 0; i < map->n; ++i) {
2790 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2791 type, first, n);
2792 if (!map->p[i])
2793 goto error;
2795 return map;
2796 error:
2797 isl_map_free(map);
2798 return NULL;
2801 __isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2802 enum isl_dim_type type, unsigned first, unsigned n)
2804 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set),
2805 type, first, n));
2808 /* Does the description of "bmap" depend on the specified dimensions?
2809 * We also check whether the dimensions appear in any of the div definitions.
2810 * In principle there is no need for this check. If the dimensions appear
2811 * in a div definition, they also appear in the defining constraints of that
2812 * div.
2814 isl_bool isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
2815 enum isl_dim_type type, unsigned first, unsigned n)
2817 int i;
2819 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2820 return isl_bool_error;
2822 first += isl_basic_map_offset(bmap, type);
2823 for (i = 0; i < bmap->n_eq; ++i)
2824 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
2825 return isl_bool_true;
2826 for (i = 0; i < bmap->n_ineq; ++i)
2827 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
2828 return isl_bool_true;
2829 for (i = 0; i < bmap->n_div; ++i) {
2830 if (isl_int_is_zero(bmap->div[i][0]))
2831 continue;
2832 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
2833 return isl_bool_true;
2836 return isl_bool_false;
2839 isl_bool isl_map_involves_dims(__isl_keep isl_map *map,
2840 enum isl_dim_type type, unsigned first, unsigned n)
2842 int i;
2844 if (isl_map_check_range(map, type, first, n) < 0)
2845 return isl_bool_error;
2847 for (i = 0; i < map->n; ++i) {
2848 isl_bool involves = isl_basic_map_involves_dims(map->p[i],
2849 type, first, n);
2850 if (involves < 0 || involves)
2851 return involves;
2854 return isl_bool_false;
2857 isl_bool isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
2858 enum isl_dim_type type, unsigned first, unsigned n)
2860 return isl_basic_map_involves_dims(bset, type, first, n);
2863 isl_bool isl_set_involves_dims(__isl_keep isl_set *set,
2864 enum isl_dim_type type, unsigned first, unsigned n)
2866 return isl_map_involves_dims(set, type, first, n);
2869 /* Drop all constraints in bmap that involve any of the dimensions
2870 * first to first+n-1.
2872 static __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving(
2873 __isl_take isl_basic_map *bmap, unsigned first, unsigned n)
2875 int i;
2877 if (n == 0)
2878 return bmap;
2880 bmap = isl_basic_map_cow(bmap);
2882 if (!bmap)
2883 return NULL;
2885 for (i = bmap->n_eq - 1; i >= 0; --i) {
2886 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) == -1)
2887 continue;
2888 isl_basic_map_drop_equality(bmap, i);
2891 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2892 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) == -1)
2893 continue;
2894 isl_basic_map_drop_inequality(bmap, i);
2897 bmap = isl_basic_map_add_known_div_constraints(bmap);
2898 return bmap;
2901 /* Drop all constraints in bset that involve any of the dimensions
2902 * first to first+n-1.
2904 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving(
2905 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2907 return isl_basic_map_drop_constraints_involving(bset, first, n);
2910 /* Drop all constraints in bmap that do not involve any of the dimensions
2911 * first to first + n - 1 of the given type.
2913 __isl_give isl_basic_map *isl_basic_map_drop_constraints_not_involving_dims(
2914 __isl_take isl_basic_map *bmap,
2915 enum isl_dim_type type, unsigned first, unsigned n)
2917 int i;
2919 if (n == 0) {
2920 isl_space *space = isl_basic_map_get_space(bmap);
2921 isl_basic_map_free(bmap);
2922 return isl_basic_map_universe(space);
2924 bmap = isl_basic_map_cow(bmap);
2925 if (!bmap)
2926 return NULL;
2928 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2929 return isl_basic_map_free(bmap);
2931 first += isl_basic_map_offset(bmap, type) - 1;
2933 for (i = bmap->n_eq - 1; i >= 0; --i) {
2934 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) != -1)
2935 continue;
2936 isl_basic_map_drop_equality(bmap, i);
2939 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2940 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) != -1)
2941 continue;
2942 isl_basic_map_drop_inequality(bmap, i);
2945 bmap = isl_basic_map_add_known_div_constraints(bmap);
2946 return bmap;
2949 /* Drop all constraints in bset that do not involve any of the dimensions
2950 * first to first + n - 1 of the given type.
2952 __isl_give isl_basic_set *isl_basic_set_drop_constraints_not_involving_dims(
2953 __isl_take isl_basic_set *bset,
2954 enum isl_dim_type type, unsigned first, unsigned n)
2956 return isl_basic_map_drop_constraints_not_involving_dims(bset,
2957 type, first, n);
2960 /* Drop all constraints in bmap that involve any of the dimensions
2961 * first to first + n - 1 of the given type.
2963 __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving_dims(
2964 __isl_take isl_basic_map *bmap,
2965 enum isl_dim_type type, unsigned first, unsigned n)
2967 if (!bmap)
2968 return NULL;
2969 if (n == 0)
2970 return bmap;
2972 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2973 return isl_basic_map_free(bmap);
2975 bmap = isl_basic_map_remove_divs_involving_dims(bmap, type, first, n);
2976 first += isl_basic_map_offset(bmap, type) - 1;
2977 return isl_basic_map_drop_constraints_involving(bmap, first, n);
2980 /* Drop all constraints in bset that involve any of the dimensions
2981 * first to first + n - 1 of the given type.
2983 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving_dims(
2984 __isl_take isl_basic_set *bset,
2985 enum isl_dim_type type, unsigned first, unsigned n)
2987 return isl_basic_map_drop_constraints_involving_dims(bset,
2988 type, first, n);
2991 /* Drop constraints from "map" by applying "drop" to each basic map.
2993 static __isl_give isl_map *drop_constraints(__isl_take isl_map *map,
2994 enum isl_dim_type type, unsigned first, unsigned n,
2995 __isl_give isl_basic_map *(*drop)(__isl_take isl_basic_map *bmap,
2996 enum isl_dim_type type, unsigned first, unsigned n))
2998 int i;
3000 if (isl_map_check_range(map, type, first, n) < 0)
3001 return isl_map_free(map);
3003 map = isl_map_cow(map);
3004 if (!map)
3005 return NULL;
3007 for (i = 0; i < map->n; ++i) {
3008 map->p[i] = drop(map->p[i], type, first, n);
3009 if (!map->p[i])
3010 return isl_map_free(map);
3013 if (map->n > 1)
3014 ISL_F_CLR(map, ISL_MAP_DISJOINT);
3016 return map;
3019 /* Drop all constraints in map that involve any of the dimensions
3020 * first to first + n - 1 of the given type.
3022 __isl_give isl_map *isl_map_drop_constraints_involving_dims(
3023 __isl_take isl_map *map,
3024 enum isl_dim_type type, unsigned first, unsigned n)
3026 if (n == 0)
3027 return map;
3028 return drop_constraints(map, type, first, n,
3029 &isl_basic_map_drop_constraints_involving_dims);
3032 /* Drop all constraints in "map" that do not involve any of the dimensions
3033 * first to first + n - 1 of the given type.
3035 __isl_give isl_map *isl_map_drop_constraints_not_involving_dims(
3036 __isl_take isl_map *map,
3037 enum isl_dim_type type, unsigned first, unsigned n)
3039 if (n == 0) {
3040 isl_space *space = isl_map_get_space(map);
3041 isl_map_free(map);
3042 return isl_map_universe(space);
3044 return drop_constraints(map, type, first, n,
3045 &isl_basic_map_drop_constraints_not_involving_dims);
3048 /* Drop all constraints in set that involve any of the dimensions
3049 * first to first + n - 1 of the given type.
3051 __isl_give isl_set *isl_set_drop_constraints_involving_dims(
3052 __isl_take isl_set *set,
3053 enum isl_dim_type type, unsigned first, unsigned n)
3055 return isl_map_drop_constraints_involving_dims(set, type, first, n);
3058 /* Drop all constraints in "set" that do not involve any of the dimensions
3059 * first to first + n - 1 of the given type.
3061 __isl_give isl_set *isl_set_drop_constraints_not_involving_dims(
3062 __isl_take isl_set *set,
3063 enum isl_dim_type type, unsigned first, unsigned n)
3065 return isl_map_drop_constraints_not_involving_dims(set, type, first, n);
3068 /* Does local variable "div" of "bmap" have a complete explicit representation?
3069 * Having a complete explicit representation requires not only
3070 * an explicit representation, but also that all local variables
3071 * that appear in this explicit representation in turn have
3072 * a complete explicit representation.
3074 isl_bool isl_basic_map_div_is_known(__isl_keep isl_basic_map *bmap, int div)
3076 int i;
3077 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
3078 isl_bool marked;
3080 marked = isl_basic_map_div_is_marked_unknown(bmap, div);
3081 if (marked < 0 || marked)
3082 return isl_bool_not(marked);
3084 for (i = bmap->n_div - 1; i >= 0; --i) {
3085 isl_bool known;
3087 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
3088 continue;
3089 known = isl_basic_map_div_is_known(bmap, i);
3090 if (known < 0 || !known)
3091 return known;
3094 return isl_bool_true;
3097 /* Remove all divs that are unknown or defined in terms of unknown divs.
3099 __isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
3100 __isl_take isl_basic_map *bmap)
3102 int i;
3104 if (!bmap)
3105 return NULL;
3107 for (i = bmap->n_div - 1; i >= 0; --i) {
3108 if (isl_basic_map_div_is_known(bmap, i))
3109 continue;
3110 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
3111 if (!bmap)
3112 return NULL;
3113 i = bmap->n_div;
3116 return bmap;
3119 /* Remove all divs that are unknown or defined in terms of unknown divs.
3121 __isl_give isl_basic_set *isl_basic_set_remove_unknown_divs(
3122 __isl_take isl_basic_set *bset)
3124 return isl_basic_map_remove_unknown_divs(bset);
3127 __isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
3129 int i;
3131 if (!map)
3132 return NULL;
3133 if (map->n == 0)
3134 return map;
3136 map = isl_map_cow(map);
3137 if (!map)
3138 return NULL;
3140 for (i = 0; i < map->n; ++i) {
3141 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
3142 if (!map->p[i])
3143 goto error;
3145 return map;
3146 error:
3147 isl_map_free(map);
3148 return NULL;
3151 __isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
3153 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set)));
3156 __isl_give isl_basic_set *isl_basic_set_remove_dims(
3157 __isl_take isl_basic_set *bset,
3158 enum isl_dim_type type, unsigned first, unsigned n)
3160 isl_basic_map *bmap = bset_to_bmap(bset);
3161 bmap = isl_basic_map_remove_dims(bmap, type, first, n);
3162 return bset_from_bmap(bmap);
3165 __isl_give isl_map *isl_map_remove_dims(__isl_take isl_map *map,
3166 enum isl_dim_type type, unsigned first, unsigned n)
3168 int i;
3170 if (n == 0)
3171 return map;
3173 map = isl_map_cow(map);
3174 if (isl_map_check_range(map, type, first, n) < 0)
3175 return isl_map_free(map);
3177 for (i = 0; i < map->n; ++i) {
3178 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
3179 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
3180 if (!map->p[i])
3181 goto error;
3183 map = isl_map_drop(map, type, first, n);
3184 return map;
3185 error:
3186 isl_map_free(map);
3187 return NULL;
3190 __isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
3191 enum isl_dim_type type, unsigned first, unsigned n)
3193 return set_from_map(isl_map_remove_dims(set_to_map(bset),
3194 type, first, n));
3197 /* Project out n inputs starting at first using Fourier-Motzkin */
3198 struct isl_map *isl_map_remove_inputs(struct isl_map *map,
3199 unsigned first, unsigned n)
3201 return isl_map_remove_dims(map, isl_dim_in, first, n);
3204 static void dump_term(struct isl_basic_map *bmap,
3205 isl_int c, int pos, FILE *out)
3207 const char *name;
3208 unsigned in = isl_basic_map_dim(bmap, isl_dim_in);
3209 unsigned dim = in + isl_basic_map_dim(bmap, isl_dim_out);
3210 unsigned nparam = isl_basic_map_dim(bmap, isl_dim_param);
3211 if (!pos)
3212 isl_int_print(out, c, 0);
3213 else {
3214 if (!isl_int_is_one(c))
3215 isl_int_print(out, c, 0);
3216 if (pos < 1 + nparam) {
3217 name = isl_space_get_dim_name(bmap->dim,
3218 isl_dim_param, pos - 1);
3219 if (name)
3220 fprintf(out, "%s", name);
3221 else
3222 fprintf(out, "p%d", pos - 1);
3223 } else if (pos < 1 + nparam + in)
3224 fprintf(out, "i%d", pos - 1 - nparam);
3225 else if (pos < 1 + nparam + dim)
3226 fprintf(out, "o%d", pos - 1 - nparam - in);
3227 else
3228 fprintf(out, "e%d", pos - 1 - nparam - dim);
3232 static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
3233 int sign, FILE *out)
3235 int i;
3236 int first;
3237 unsigned len = 1 + isl_basic_map_total_dim(bmap);
3238 isl_int v;
3240 isl_int_init(v);
3241 for (i = 0, first = 1; i < len; ++i) {
3242 if (isl_int_sgn(c[i]) * sign <= 0)
3243 continue;
3244 if (!first)
3245 fprintf(out, " + ");
3246 first = 0;
3247 isl_int_abs(v, c[i]);
3248 dump_term(bmap, v, i, out);
3250 isl_int_clear(v);
3251 if (first)
3252 fprintf(out, "0");
3255 static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
3256 const char *op, FILE *out, int indent)
3258 int i;
3260 fprintf(out, "%*s", indent, "");
3262 dump_constraint_sign(bmap, c, 1, out);
3263 fprintf(out, " %s ", op);
3264 dump_constraint_sign(bmap, c, -1, out);
3266 fprintf(out, "\n");
3268 for (i = bmap->n_div; i < bmap->extra; ++i) {
3269 if (isl_int_is_zero(c[1+isl_space_dim(bmap->dim, isl_dim_all)+i]))
3270 continue;
3271 fprintf(out, "%*s", indent, "");
3272 fprintf(out, "ERROR: unused div coefficient not zero\n");
3273 abort();
3277 static void dump_constraints(struct isl_basic_map *bmap,
3278 isl_int **c, unsigned n,
3279 const char *op, FILE *out, int indent)
3281 int i;
3283 for (i = 0; i < n; ++i)
3284 dump_constraint(bmap, c[i], op, out, indent);
3287 static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
3289 int j;
3290 int first = 1;
3291 unsigned total = isl_basic_map_total_dim(bmap);
3293 for (j = 0; j < 1 + total; ++j) {
3294 if (isl_int_is_zero(exp[j]))
3295 continue;
3296 if (!first && isl_int_is_pos(exp[j]))
3297 fprintf(out, "+");
3298 dump_term(bmap, exp[j], j, out);
3299 first = 0;
3303 static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
3305 int i;
3307 dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
3308 dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
3310 for (i = 0; i < bmap->n_div; ++i) {
3311 fprintf(out, "%*s", indent, "");
3312 fprintf(out, "e%d = [(", i);
3313 dump_affine(bmap, bmap->div[i]+1, out);
3314 fprintf(out, ")/");
3315 isl_int_print(out, bmap->div[i][0], 0);
3316 fprintf(out, "]\n");
3320 void isl_basic_set_print_internal(struct isl_basic_set *bset,
3321 FILE *out, int indent)
3323 if (!bset) {
3324 fprintf(out, "null basic set\n");
3325 return;
3328 fprintf(out, "%*s", indent, "");
3329 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
3330 bset->ref, bset->dim->nparam, bset->dim->n_out,
3331 bset->extra, bset->flags);
3332 dump(bset_to_bmap(bset), out, indent);
3335 void isl_basic_map_print_internal(struct isl_basic_map *bmap,
3336 FILE *out, int indent)
3338 if (!bmap) {
3339 fprintf(out, "null basic map\n");
3340 return;
3343 fprintf(out, "%*s", indent, "");
3344 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
3345 "flags: %x, n_name: %d\n",
3346 bmap->ref,
3347 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
3348 bmap->extra, bmap->flags, bmap->dim->n_id);
3349 dump(bmap, out, indent);
3352 int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
3354 unsigned total;
3355 if (!bmap)
3356 return -1;
3357 total = isl_basic_map_total_dim(bmap);
3358 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
3359 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
3360 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
3361 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
3362 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
3363 return 0;
3366 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *space, int n,
3367 unsigned flags)
3369 if (isl_space_check_is_set(space) < 0)
3370 goto error;
3371 return isl_map_alloc_space(space, n, flags);
3372 error:
3373 isl_space_free(space);
3374 return NULL;
3377 /* Make sure "map" has room for at least "n" more basic maps.
3379 __isl_give isl_map *isl_map_grow(__isl_take isl_map *map, int n)
3381 int i;
3382 struct isl_map *grown = NULL;
3384 if (!map)
3385 return NULL;
3386 isl_assert(map->ctx, n >= 0, goto error);
3387 if (map->n + n <= map->size)
3388 return map;
3389 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
3390 if (!grown)
3391 goto error;
3392 for (i = 0; i < map->n; ++i) {
3393 grown->p[i] = isl_basic_map_copy(map->p[i]);
3394 if (!grown->p[i])
3395 goto error;
3396 grown->n++;
3398 isl_map_free(map);
3399 return grown;
3400 error:
3401 isl_map_free(grown);
3402 isl_map_free(map);
3403 return NULL;
3406 /* Make sure "set" has room for at least "n" more basic sets.
3408 struct isl_set *isl_set_grow(struct isl_set *set, int n)
3410 return set_from_map(isl_map_grow(set_to_map(set), n));
3413 __isl_give isl_set *isl_set_from_basic_set(__isl_take isl_basic_set *bset)
3415 return isl_map_from_basic_map(bset);
3418 __isl_give isl_map *isl_map_from_basic_map(__isl_take isl_basic_map *bmap)
3420 struct isl_map *map;
3422 if (!bmap)
3423 return NULL;
3425 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
3426 return isl_map_add_basic_map(map, bmap);
3429 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
3430 __isl_take isl_basic_set *bset)
3432 return set_from_map(isl_map_add_basic_map(set_to_map(set),
3433 bset_to_bmap(bset)));
3436 __isl_null isl_set *isl_set_free(__isl_take isl_set *set)
3438 return isl_map_free(set);
3441 void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
3443 int i;
3445 if (!set) {
3446 fprintf(out, "null set\n");
3447 return;
3450 fprintf(out, "%*s", indent, "");
3451 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3452 set->ref, set->n, set->dim->nparam, set->dim->n_out,
3453 set->flags);
3454 for (i = 0; i < set->n; ++i) {
3455 fprintf(out, "%*s", indent, "");
3456 fprintf(out, "basic set %d:\n", i);
3457 isl_basic_set_print_internal(set->p[i], out, indent+4);
3461 void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
3463 int i;
3465 if (!map) {
3466 fprintf(out, "null map\n");
3467 return;
3470 fprintf(out, "%*s", indent, "");
3471 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3472 "flags: %x, n_name: %d\n",
3473 map->ref, map->n, map->dim->nparam, map->dim->n_in,
3474 map->dim->n_out, map->flags, map->dim->n_id);
3475 for (i = 0; i < map->n; ++i) {
3476 fprintf(out, "%*s", indent, "");
3477 fprintf(out, "basic map %d:\n", i);
3478 isl_basic_map_print_internal(map->p[i], out, indent+4);
3482 __isl_give isl_basic_map *isl_basic_map_intersect_domain(
3483 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3485 struct isl_basic_map *bmap_domain;
3487 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3488 goto error;
3490 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
3491 isl_assert(bset->ctx,
3492 isl_basic_map_compatible_domain(bmap, bset), goto error);
3494 bmap = isl_basic_map_cow(bmap);
3495 if (!bmap)
3496 goto error;
3497 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3498 bset->n_div, bset->n_eq, bset->n_ineq);
3499 bmap_domain = isl_basic_map_from_domain(bset);
3500 bmap = add_constraints(bmap, bmap_domain, 0, 0);
3502 bmap = isl_basic_map_simplify(bmap);
3503 return isl_basic_map_finalize(bmap);
3504 error:
3505 isl_basic_map_free(bmap);
3506 isl_basic_set_free(bset);
3507 return NULL;
3510 /* Check that the space of "bset" is the same as that of the range of "bmap".
3512 static isl_stat isl_basic_map_check_compatible_range(
3513 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3515 isl_bool ok;
3517 ok = isl_basic_map_compatible_range(bmap, bset);
3518 if (ok < 0)
3519 return isl_stat_error;
3520 if (!ok)
3521 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3522 "incompatible spaces", return isl_stat_error);
3524 return isl_stat_ok;
3527 __isl_give isl_basic_map *isl_basic_map_intersect_range(
3528 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3530 struct isl_basic_map *bmap_range;
3532 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3533 goto error;
3535 if (isl_space_dim(bset->dim, isl_dim_set) != 0 &&
3536 isl_basic_map_check_compatible_range(bmap, bset) < 0)
3537 goto error;
3539 if (isl_basic_set_plain_is_universe(bset)) {
3540 isl_basic_set_free(bset);
3541 return bmap;
3544 bmap = isl_basic_map_cow(bmap);
3545 if (!bmap)
3546 goto error;
3547 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3548 bset->n_div, bset->n_eq, bset->n_ineq);
3549 bmap_range = bset_to_bmap(bset);
3550 bmap = add_constraints(bmap, bmap_range, 0, 0);
3552 bmap = isl_basic_map_simplify(bmap);
3553 return isl_basic_map_finalize(bmap);
3554 error:
3555 isl_basic_map_free(bmap);
3556 isl_basic_set_free(bset);
3557 return NULL;
3560 isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
3561 __isl_keep isl_vec *vec)
3563 int i;
3564 unsigned total;
3565 isl_int s;
3567 if (!bmap || !vec)
3568 return isl_bool_error;
3570 total = 1 + isl_basic_map_total_dim(bmap);
3571 if (total != vec->size)
3572 return isl_bool_false;
3574 isl_int_init(s);
3576 for (i = 0; i < bmap->n_eq; ++i) {
3577 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
3578 if (!isl_int_is_zero(s)) {
3579 isl_int_clear(s);
3580 return isl_bool_false;
3584 for (i = 0; i < bmap->n_ineq; ++i) {
3585 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
3586 if (isl_int_is_neg(s)) {
3587 isl_int_clear(s);
3588 return isl_bool_false;
3592 isl_int_clear(s);
3594 return isl_bool_true;
3597 isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
3598 __isl_keep isl_vec *vec)
3600 return isl_basic_map_contains(bset_to_bmap(bset), vec);
3603 __isl_give isl_basic_map *isl_basic_map_intersect(
3604 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
3606 struct isl_vec *sample = NULL;
3608 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
3609 goto error;
3610 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
3611 isl_space_dim(bmap1->dim, isl_dim_param) &&
3612 isl_space_dim(bmap2->dim, isl_dim_all) !=
3613 isl_space_dim(bmap2->dim, isl_dim_param))
3614 return isl_basic_map_intersect(bmap2, bmap1);
3616 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
3617 isl_space_dim(bmap2->dim, isl_dim_param))
3618 isl_assert(bmap1->ctx,
3619 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
3621 if (isl_basic_map_plain_is_empty(bmap1)) {
3622 isl_basic_map_free(bmap2);
3623 return bmap1;
3625 if (isl_basic_map_plain_is_empty(bmap2)) {
3626 isl_basic_map_free(bmap1);
3627 return bmap2;
3630 if (bmap1->sample &&
3631 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
3632 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
3633 sample = isl_vec_copy(bmap1->sample);
3634 else if (bmap2->sample &&
3635 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
3636 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
3637 sample = isl_vec_copy(bmap2->sample);
3639 bmap1 = isl_basic_map_cow(bmap1);
3640 if (!bmap1)
3641 goto error;
3642 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
3643 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
3644 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
3646 if (!bmap1)
3647 isl_vec_free(sample);
3648 else if (sample) {
3649 isl_vec_free(bmap1->sample);
3650 bmap1->sample = sample;
3653 bmap1 = isl_basic_map_simplify(bmap1);
3654 return isl_basic_map_finalize(bmap1);
3655 error:
3656 if (sample)
3657 isl_vec_free(sample);
3658 isl_basic_map_free(bmap1);
3659 isl_basic_map_free(bmap2);
3660 return NULL;
3663 struct isl_basic_set *isl_basic_set_intersect(
3664 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
3666 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1),
3667 bset_to_bmap(bset2)));
3670 __isl_give isl_basic_set *isl_basic_set_intersect_params(
3671 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3673 return isl_basic_set_intersect(bset1, bset2);
3676 /* Special case of isl_map_intersect, where both map1 and map2
3677 * are convex, without any divs and such that either map1 or map2
3678 * contains a single constraint. This constraint is then simply
3679 * added to the other map.
3681 static __isl_give isl_map *map_intersect_add_constraint(
3682 __isl_take isl_map *map1, __isl_take isl_map *map2)
3684 isl_assert(map1->ctx, map1->n == 1, goto error);
3685 isl_assert(map2->ctx, map1->n == 1, goto error);
3686 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
3687 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
3689 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
3690 return isl_map_intersect(map2, map1);
3692 map1 = isl_map_cow(map1);
3693 if (!map1)
3694 goto error;
3695 if (isl_map_plain_is_empty(map1)) {
3696 isl_map_free(map2);
3697 return map1;
3699 if (map2->p[0]->n_eq == 1)
3700 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
3701 else
3702 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
3703 map2->p[0]->ineq[0]);
3705 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
3706 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
3707 if (!map1->p[0])
3708 goto error;
3710 if (isl_basic_map_plain_is_empty(map1->p[0])) {
3711 isl_basic_map_free(map1->p[0]);
3712 map1->n = 0;
3715 isl_map_free(map2);
3717 map1 = isl_map_unmark_normalized(map1);
3718 return map1;
3719 error:
3720 isl_map_free(map1);
3721 isl_map_free(map2);
3722 return NULL;
3725 /* map2 may be either a parameter domain or a map living in the same
3726 * space as map1.
3728 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3729 __isl_take isl_map *map2)
3731 unsigned flags = 0;
3732 isl_bool equal;
3733 isl_map *result;
3734 int i, j;
3736 if (!map1 || !map2)
3737 goto error;
3739 if ((isl_map_plain_is_empty(map1) ||
3740 isl_map_plain_is_universe(map2)) &&
3741 isl_space_is_equal(map1->dim, map2->dim)) {
3742 isl_map_free(map2);
3743 return map1;
3745 if ((isl_map_plain_is_empty(map2) ||
3746 isl_map_plain_is_universe(map1)) &&
3747 isl_space_is_equal(map1->dim, map2->dim)) {
3748 isl_map_free(map1);
3749 return map2;
3752 if (map1->n == 1 && map2->n == 1 &&
3753 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
3754 isl_space_is_equal(map1->dim, map2->dim) &&
3755 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3756 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3757 return map_intersect_add_constraint(map1, map2);
3759 equal = isl_map_plain_is_equal(map1, map2);
3760 if (equal < 0)
3761 goto error;
3762 if (equal) {
3763 isl_map_free(map2);
3764 return map1;
3767 if (isl_space_dim(map2->dim, isl_dim_all) !=
3768 isl_space_dim(map2->dim, isl_dim_param))
3769 isl_assert(map1->ctx,
3770 isl_space_is_equal(map1->dim, map2->dim), goto error);
3772 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3773 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3774 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3776 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3777 map1->n * map2->n, flags);
3778 if (!result)
3779 goto error;
3780 for (i = 0; i < map1->n; ++i)
3781 for (j = 0; j < map2->n; ++j) {
3782 struct isl_basic_map *part;
3783 part = isl_basic_map_intersect(
3784 isl_basic_map_copy(map1->p[i]),
3785 isl_basic_map_copy(map2->p[j]));
3786 if (isl_basic_map_is_empty(part) < 0)
3787 part = isl_basic_map_free(part);
3788 result = isl_map_add_basic_map(result, part);
3789 if (!result)
3790 goto error;
3792 isl_map_free(map1);
3793 isl_map_free(map2);
3794 return result;
3795 error:
3796 isl_map_free(map1);
3797 isl_map_free(map2);
3798 return NULL;
3801 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3802 __isl_take isl_map *map2)
3804 if (!map1 || !map2)
3805 goto error;
3806 if (!isl_space_is_equal(map1->dim, map2->dim))
3807 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
3808 "spaces don't match", goto error);
3809 return map_intersect_internal(map1, map2);
3810 error:
3811 isl_map_free(map1);
3812 isl_map_free(map2);
3813 return NULL;
3816 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3817 __isl_take isl_map *map2)
3819 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
3822 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
3824 return set_from_map(isl_map_intersect(set_to_map(set1),
3825 set_to_map(set2)));
3828 /* map_intersect_internal accepts intersections
3829 * with parameter domains, so we can just call that function.
3831 static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
3832 __isl_take isl_set *params)
3834 return map_intersect_internal(map, params);
3837 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
3838 __isl_take isl_map *map2)
3840 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
3843 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3844 __isl_take isl_set *params)
3846 return isl_map_intersect_params(set, params);
3849 __isl_give isl_basic_map *isl_basic_map_reverse(__isl_take isl_basic_map *bmap)
3851 isl_space *space;
3852 unsigned pos, n1, n2;
3854 if (!bmap)
3855 return NULL;
3856 bmap = isl_basic_map_cow(bmap);
3857 if (!bmap)
3858 return NULL;
3859 space = isl_space_reverse(isl_space_copy(bmap->dim));
3860 pos = isl_basic_map_offset(bmap, isl_dim_in);
3861 n1 = isl_basic_map_dim(bmap, isl_dim_in);
3862 n2 = isl_basic_map_dim(bmap, isl_dim_out);
3863 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
3864 return isl_basic_map_reset_space(bmap, space);
3867 static __isl_give isl_basic_map *basic_map_space_reset(
3868 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
3870 isl_space *space;
3872 if (!bmap)
3873 return NULL;
3874 if (!isl_space_is_named_or_nested(bmap->dim, type))
3875 return bmap;
3877 space = isl_basic_map_get_space(bmap);
3878 space = isl_space_reset(space, type);
3879 bmap = isl_basic_map_reset_space(bmap, space);
3880 return bmap;
3883 __isl_give isl_basic_map *isl_basic_map_insert_dims(
3884 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3885 unsigned pos, unsigned n)
3887 isl_bool rational;
3888 isl_space *res_space;
3889 struct isl_basic_map *res;
3890 struct isl_dim_map *dim_map;
3891 unsigned total, off;
3892 enum isl_dim_type t;
3894 if (n == 0)
3895 return basic_map_space_reset(bmap, type);
3897 res_space = isl_space_insert_dims(isl_basic_map_get_space(bmap),
3898 type, pos, n);
3899 if (!res_space)
3900 return isl_basic_map_free(bmap);
3902 total = isl_basic_map_total_dim(bmap) + n;
3903 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3904 off = 0;
3905 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3906 if (t != type) {
3907 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3908 } else {
3909 unsigned size = isl_basic_map_dim(bmap, t);
3910 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3911 0, pos, off);
3912 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3913 pos, size - pos, off + pos + n);
3915 off += isl_space_dim(res_space, t);
3917 isl_dim_map_div(dim_map, bmap, off);
3919 res = isl_basic_map_alloc_space(res_space,
3920 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3921 rational = isl_basic_map_is_rational(bmap);
3922 if (rational < 0)
3923 res = isl_basic_map_free(res);
3924 if (rational)
3925 res = isl_basic_map_set_rational(res);
3926 if (isl_basic_map_plain_is_empty(bmap)) {
3927 isl_basic_map_free(bmap);
3928 free(dim_map);
3929 return isl_basic_map_set_to_empty(res);
3931 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3932 return isl_basic_map_finalize(res);
3935 __isl_give isl_basic_set *isl_basic_set_insert_dims(
3936 __isl_take isl_basic_set *bset,
3937 enum isl_dim_type type, unsigned pos, unsigned n)
3939 return isl_basic_map_insert_dims(bset, type, pos, n);
3942 __isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
3943 enum isl_dim_type type, unsigned n)
3945 if (!bmap)
3946 return NULL;
3947 return isl_basic_map_insert_dims(bmap, type,
3948 isl_basic_map_dim(bmap, type), n);
3951 __isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
3952 enum isl_dim_type type, unsigned n)
3954 if (!bset)
3955 return NULL;
3956 isl_assert(bset->ctx, type != isl_dim_in, goto error);
3957 return isl_basic_map_add_dims(bset, type, n);
3958 error:
3959 isl_basic_set_free(bset);
3960 return NULL;
3963 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
3964 enum isl_dim_type type)
3966 isl_space *space;
3968 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3969 return map;
3971 space = isl_map_get_space(map);
3972 space = isl_space_reset(space, type);
3973 map = isl_map_reset_space(map, space);
3974 return map;
3977 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3978 enum isl_dim_type type, unsigned pos, unsigned n)
3980 int i;
3982 if (n == 0)
3983 return map_space_reset(map, type);
3985 map = isl_map_cow(map);
3986 if (!map)
3987 return NULL;
3989 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3990 if (!map->dim)
3991 goto error;
3993 for (i = 0; i < map->n; ++i) {
3994 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3995 if (!map->p[i])
3996 goto error;
3999 return map;
4000 error:
4001 isl_map_free(map);
4002 return NULL;
4005 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
4006 enum isl_dim_type type, unsigned pos, unsigned n)
4008 return isl_map_insert_dims(set, type, pos, n);
4011 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
4012 enum isl_dim_type type, unsigned n)
4014 if (!map)
4015 return NULL;
4016 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
4019 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
4020 enum isl_dim_type type, unsigned n)
4022 if (!set)
4023 return NULL;
4024 isl_assert(set->ctx, type != isl_dim_in, goto error);
4025 return set_from_map(isl_map_add_dims(set_to_map(set), type, n));
4026 error:
4027 isl_set_free(set);
4028 return NULL;
4031 __isl_give isl_basic_map *isl_basic_map_move_dims(
4032 __isl_take isl_basic_map *bmap,
4033 enum isl_dim_type dst_type, unsigned dst_pos,
4034 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4036 struct isl_dim_map *dim_map;
4037 struct isl_basic_map *res;
4038 enum isl_dim_type t;
4039 unsigned total, off;
4041 if (!bmap)
4042 return NULL;
4043 if (n == 0) {
4044 bmap = isl_basic_map_reset(bmap, src_type);
4045 bmap = isl_basic_map_reset(bmap, dst_type);
4046 return bmap;
4049 if (isl_basic_map_check_range(bmap, src_type, src_pos, n) < 0)
4050 return isl_basic_map_free(bmap);
4052 if (dst_type == src_type && dst_pos == src_pos)
4053 return bmap;
4055 isl_assert(bmap->ctx, dst_type != src_type, goto error);
4057 if (pos(bmap->dim, dst_type) + dst_pos ==
4058 pos(bmap->dim, src_type) + src_pos +
4059 ((src_type < dst_type) ? n : 0)) {
4060 bmap = isl_basic_map_cow(bmap);
4061 if (!bmap)
4062 return NULL;
4064 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4065 src_type, src_pos, n);
4066 if (!bmap->dim)
4067 goto error;
4069 bmap = isl_basic_map_finalize(bmap);
4071 return bmap;
4074 total = isl_basic_map_total_dim(bmap);
4075 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4077 off = 0;
4078 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4079 unsigned size = isl_space_dim(bmap->dim, t);
4080 if (t == dst_type) {
4081 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4082 0, dst_pos, off);
4083 off += dst_pos;
4084 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
4085 src_pos, n, off);
4086 off += n;
4087 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4088 dst_pos, size - dst_pos, off);
4089 off += size - dst_pos;
4090 } else if (t == src_type) {
4091 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4092 0, src_pos, off);
4093 off += src_pos;
4094 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4095 src_pos + n, size - src_pos - n, off);
4096 off += size - src_pos - n;
4097 } else {
4098 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4099 off += size;
4102 isl_dim_map_div(dim_map, bmap, off);
4104 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4105 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4106 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4107 if (!bmap)
4108 goto error;
4110 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4111 src_type, src_pos, n);
4112 if (!bmap->dim)
4113 goto error;
4115 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
4116 bmap = isl_basic_map_gauss(bmap, NULL);
4117 bmap = isl_basic_map_finalize(bmap);
4119 return bmap;
4120 error:
4121 isl_basic_map_free(bmap);
4122 return NULL;
4125 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
4126 enum isl_dim_type dst_type, unsigned dst_pos,
4127 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4129 isl_basic_map *bmap = bset_to_bmap(bset);
4130 bmap = isl_basic_map_move_dims(bmap, dst_type, dst_pos,
4131 src_type, src_pos, n);
4132 return bset_from_bmap(bmap);
4135 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
4136 enum isl_dim_type dst_type, unsigned dst_pos,
4137 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4139 if (!set)
4140 return NULL;
4141 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
4142 return set_from_map(isl_map_move_dims(set_to_map(set),
4143 dst_type, dst_pos, src_type, src_pos, n));
4144 error:
4145 isl_set_free(set);
4146 return NULL;
4149 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
4150 enum isl_dim_type dst_type, unsigned dst_pos,
4151 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4153 int i;
4155 if (n == 0) {
4156 map = isl_map_reset(map, src_type);
4157 map = isl_map_reset(map, dst_type);
4158 return map;
4161 if (isl_map_check_range(map, src_type, src_pos, n))
4162 return isl_map_free(map);
4164 if (dst_type == src_type && dst_pos == src_pos)
4165 return map;
4167 isl_assert(map->ctx, dst_type != src_type, goto error);
4169 map = isl_map_cow(map);
4170 if (!map)
4171 return NULL;
4173 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
4174 if (!map->dim)
4175 goto error;
4177 for (i = 0; i < map->n; ++i) {
4178 map->p[i] = isl_basic_map_move_dims(map->p[i],
4179 dst_type, dst_pos,
4180 src_type, src_pos, n);
4181 if (!map->p[i])
4182 goto error;
4185 return map;
4186 error:
4187 isl_map_free(map);
4188 return NULL;
4191 /* Move the specified dimensions to the last columns right before
4192 * the divs. Don't change the dimension specification of bmap.
4193 * That's the responsibility of the caller.
4195 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
4196 enum isl_dim_type type, unsigned first, unsigned n)
4198 struct isl_dim_map *dim_map;
4199 struct isl_basic_map *res;
4200 enum isl_dim_type t;
4201 unsigned total, off;
4203 if (!bmap)
4204 return NULL;
4205 if (pos(bmap->dim, type) + first + n ==
4206 1 + isl_space_dim(bmap->dim, isl_dim_all))
4207 return bmap;
4209 total = isl_basic_map_total_dim(bmap);
4210 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4212 off = 0;
4213 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4214 unsigned size = isl_space_dim(bmap->dim, t);
4215 if (t == type) {
4216 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4217 0, first, off);
4218 off += first;
4219 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4220 first, n, total - bmap->n_div - n);
4221 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4222 first + n, size - (first + n), off);
4223 off += size - (first + n);
4224 } else {
4225 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4226 off += size;
4229 isl_dim_map_div(dim_map, bmap, off + n);
4231 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4232 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4233 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4234 return res;
4237 /* Insert "n" rows in the divs of "bmap".
4239 * The number of columns is not changed, which means that the last
4240 * dimensions of "bmap" are being reintepreted as the new divs.
4241 * The space of "bmap" is not adjusted, however, which means
4242 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
4243 * from the space of "bmap" is the responsibility of the caller.
4245 static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
4246 int n)
4248 int i;
4249 size_t row_size;
4250 isl_int **new_div;
4251 isl_int *old;
4253 bmap = isl_basic_map_cow(bmap);
4254 if (!bmap)
4255 return NULL;
4257 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
4258 old = bmap->block2.data;
4259 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
4260 (bmap->extra + n) * (1 + row_size));
4261 if (!bmap->block2.data)
4262 return isl_basic_map_free(bmap);
4263 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
4264 if (!new_div)
4265 return isl_basic_map_free(bmap);
4266 for (i = 0; i < n; ++i) {
4267 new_div[i] = bmap->block2.data +
4268 (bmap->extra + i) * (1 + row_size);
4269 isl_seq_clr(new_div[i], 1 + row_size);
4271 for (i = 0; i < bmap->extra; ++i)
4272 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
4273 free(bmap->div);
4274 bmap->div = new_div;
4275 bmap->n_div += n;
4276 bmap->extra += n;
4278 return bmap;
4281 /* Drop constraints from "bmap" that only involve the variables
4282 * of "type" in the range [first, first + n] that are not related
4283 * to any of the variables outside that interval.
4284 * These constraints cannot influence the values for the variables
4285 * outside the interval, except in case they cause "bmap" to be empty.
4286 * Only drop the constraints if "bmap" is known to be non-empty.
4288 static __isl_give isl_basic_map *drop_irrelevant_constraints(
4289 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
4290 unsigned first, unsigned n)
4292 int i;
4293 int *groups;
4294 unsigned dim, n_div;
4295 isl_bool non_empty;
4297 non_empty = isl_basic_map_plain_is_non_empty(bmap);
4298 if (non_empty < 0)
4299 return isl_basic_map_free(bmap);
4300 if (!non_empty)
4301 return bmap;
4303 dim = isl_basic_map_dim(bmap, isl_dim_all);
4304 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4305 groups = isl_calloc_array(isl_basic_map_get_ctx(bmap), int, dim);
4306 if (!groups)
4307 return isl_basic_map_free(bmap);
4308 first += isl_basic_map_offset(bmap, type) - 1;
4309 for (i = 0; i < first; ++i)
4310 groups[i] = -1;
4311 for (i = first + n; i < dim - n_div; ++i)
4312 groups[i] = -1;
4314 bmap = isl_basic_map_drop_unrelated_constraints(bmap, groups);
4316 return bmap;
4319 /* Turn the n dimensions of type type, starting at first
4320 * into existentially quantified variables.
4322 * If a subset of the projected out variables are unrelated
4323 * to any of the variables that remain, then the constraints
4324 * involving this subset are simply dropped first.
4326 __isl_give isl_basic_map *isl_basic_map_project_out(
4327 __isl_take isl_basic_map *bmap,
4328 enum isl_dim_type type, unsigned first, unsigned n)
4330 isl_bool empty;
4332 if (n == 0)
4333 return basic_map_space_reset(bmap, type);
4334 if (type == isl_dim_div)
4335 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
4336 "cannot project out existentially quantified variables",
4337 return isl_basic_map_free(bmap));
4339 empty = isl_basic_map_plain_is_empty(bmap);
4340 if (empty < 0)
4341 return isl_basic_map_free(bmap);
4342 if (empty)
4343 bmap = isl_basic_map_set_to_empty(bmap);
4345 bmap = drop_irrelevant_constraints(bmap, type, first, n);
4346 if (!bmap)
4347 return NULL;
4349 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
4350 return isl_basic_map_remove_dims(bmap, type, first, n);
4352 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
4353 return isl_basic_map_free(bmap);
4355 bmap = move_last(bmap, type, first, n);
4356 bmap = isl_basic_map_cow(bmap);
4357 bmap = insert_div_rows(bmap, n);
4358 if (!bmap)
4359 return NULL;
4361 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
4362 if (!bmap->dim)
4363 goto error;
4364 bmap = isl_basic_map_simplify(bmap);
4365 bmap = isl_basic_map_drop_redundant_divs(bmap);
4366 return isl_basic_map_finalize(bmap);
4367 error:
4368 isl_basic_map_free(bmap);
4369 return NULL;
4372 /* Turn the n dimensions of type type, starting at first
4373 * into existentially quantified variables.
4375 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
4376 enum isl_dim_type type, unsigned first, unsigned n)
4378 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset),
4379 type, first, n));
4382 /* Turn the n dimensions of type type, starting at first
4383 * into existentially quantified variables.
4385 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
4386 enum isl_dim_type type, unsigned first, unsigned n)
4388 int i;
4390 if (n == 0)
4391 return map_space_reset(map, type);
4393 if (isl_map_check_range(map, type, first, n) < 0)
4394 return isl_map_free(map);
4396 map = isl_map_cow(map);
4397 if (!map)
4398 return NULL;
4400 map->dim = isl_space_drop_dims(map->dim, type, first, n);
4401 if (!map->dim)
4402 goto error;
4404 for (i = 0; i < map->n; ++i) {
4405 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
4406 if (!map->p[i])
4407 goto error;
4410 return map;
4411 error:
4412 isl_map_free(map);
4413 return NULL;
4416 /* Turn all the dimensions of type "type", except the "n" starting at "first"
4417 * into existentially quantified variables.
4419 __isl_give isl_map *isl_map_project_onto(__isl_take isl_map *map,
4420 enum isl_dim_type type, unsigned first, unsigned n)
4422 unsigned dim;
4424 if (isl_map_check_range(map, type, first, n) < 0)
4425 return isl_map_free(map);
4426 dim = isl_map_dim(map, type);
4427 map = isl_map_project_out(map, type, first + n, dim - (first + n));
4428 map = isl_map_project_out(map, type, 0, first);
4429 return map;
4432 /* Turn the n dimensions of type type, starting at first
4433 * into existentially quantified variables.
4435 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
4436 enum isl_dim_type type, unsigned first, unsigned n)
4438 return set_from_map(isl_map_project_out(set_to_map(set),
4439 type, first, n));
4442 /* Return a map that projects the elements in "set" onto their
4443 * "n" set dimensions starting at "first".
4444 * "type" should be equal to isl_dim_set.
4446 __isl_give isl_map *isl_set_project_onto_map(__isl_take isl_set *set,
4447 enum isl_dim_type type, unsigned first, unsigned n)
4449 int i;
4450 int dim;
4451 isl_map *map;
4453 if (!set)
4454 return NULL;
4455 if (type != isl_dim_set)
4456 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4457 "only set dimensions can be projected out", goto error);
4458 dim = isl_set_dim(set, isl_dim_set);
4459 if (first + n > dim || first + n < first)
4460 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4461 "index out of bounds", goto error);
4463 map = isl_map_from_domain(set);
4464 map = isl_map_add_dims(map, isl_dim_out, n);
4465 for (i = 0; i < n; ++i)
4466 map = isl_map_equate(map, isl_dim_in, first + i,
4467 isl_dim_out, i);
4468 return map;
4469 error:
4470 isl_set_free(set);
4471 return NULL;
4474 static __isl_give isl_basic_map *add_divs(__isl_take isl_basic_map *bmap,
4475 unsigned n)
4477 int i, j;
4479 for (i = 0; i < n; ++i) {
4480 j = isl_basic_map_alloc_div(bmap);
4481 if (j < 0)
4482 goto error;
4483 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
4485 return bmap;
4486 error:
4487 isl_basic_map_free(bmap);
4488 return NULL;
4491 struct isl_basic_map *isl_basic_map_apply_range(
4492 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4494 isl_space *space_result = NULL;
4495 struct isl_basic_map *bmap;
4496 unsigned n_in, n_out, n, nparam, total, pos;
4497 struct isl_dim_map *dim_map1, *dim_map2;
4499 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4500 goto error;
4501 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_out,
4502 bmap2->dim, isl_dim_in))
4503 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4504 "spaces don't match", goto error);
4506 space_result = isl_space_join(isl_space_copy(bmap1->dim),
4507 isl_space_copy(bmap2->dim));
4509 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4510 n_out = isl_basic_map_dim(bmap2, isl_dim_out);
4511 n = isl_basic_map_dim(bmap1, isl_dim_out);
4512 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4514 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
4515 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4516 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
4517 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4518 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
4519 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4520 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
4521 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
4522 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4523 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4524 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4526 bmap = isl_basic_map_alloc_space(space_result,
4527 bmap1->n_div + bmap2->n_div + n,
4528 bmap1->n_eq + bmap2->n_eq,
4529 bmap1->n_ineq + bmap2->n_ineq);
4530 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4531 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4532 bmap = add_divs(bmap, n);
4533 bmap = isl_basic_map_simplify(bmap);
4534 bmap = isl_basic_map_drop_redundant_divs(bmap);
4535 return isl_basic_map_finalize(bmap);
4536 error:
4537 isl_basic_map_free(bmap1);
4538 isl_basic_map_free(bmap2);
4539 return NULL;
4542 struct isl_basic_set *isl_basic_set_apply(
4543 struct isl_basic_set *bset, struct isl_basic_map *bmap)
4545 if (!bset || !bmap)
4546 goto error;
4548 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
4549 goto error);
4551 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset),
4552 bmap));
4553 error:
4554 isl_basic_set_free(bset);
4555 isl_basic_map_free(bmap);
4556 return NULL;
4559 struct isl_basic_map *isl_basic_map_apply_domain(
4560 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4562 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4563 goto error;
4564 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_in,
4565 bmap2->dim, isl_dim_in))
4566 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4567 "spaces don't match", goto error);
4569 bmap1 = isl_basic_map_reverse(bmap1);
4570 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
4571 return isl_basic_map_reverse(bmap1);
4572 error:
4573 isl_basic_map_free(bmap1);
4574 isl_basic_map_free(bmap2);
4575 return NULL;
4578 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4579 * A \cap B -> f(A) + f(B)
4581 __isl_give isl_basic_map *isl_basic_map_sum(__isl_take isl_basic_map *bmap1,
4582 __isl_take isl_basic_map *bmap2)
4584 unsigned n_in, n_out, nparam, total, pos;
4585 struct isl_basic_map *bmap = NULL;
4586 struct isl_dim_map *dim_map1, *dim_map2;
4587 int i;
4589 if (!bmap1 || !bmap2)
4590 goto error;
4592 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
4593 goto error);
4595 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4596 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4597 n_out = isl_basic_map_dim(bmap1, isl_dim_out);
4599 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
4600 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4601 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
4602 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4603 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
4604 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4605 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4606 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
4607 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4608 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4609 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
4611 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
4612 bmap1->n_div + bmap2->n_div + 2 * n_out,
4613 bmap1->n_eq + bmap2->n_eq + n_out,
4614 bmap1->n_ineq + bmap2->n_ineq);
4615 for (i = 0; i < n_out; ++i) {
4616 int j = isl_basic_map_alloc_equality(bmap);
4617 if (j < 0)
4618 goto error;
4619 isl_seq_clr(bmap->eq[j], 1+total);
4620 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
4621 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
4622 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
4624 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4625 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4626 bmap = add_divs(bmap, 2 * n_out);
4628 bmap = isl_basic_map_simplify(bmap);
4629 return isl_basic_map_finalize(bmap);
4630 error:
4631 isl_basic_map_free(bmap);
4632 isl_basic_map_free(bmap1);
4633 isl_basic_map_free(bmap2);
4634 return NULL;
4637 /* Given two maps A -> f(A) and B -> g(B), construct a map
4638 * A \cap B -> f(A) + f(B)
4640 __isl_give isl_map *isl_map_sum(__isl_take isl_map *map1,
4641 __isl_take isl_map *map2)
4643 struct isl_map *result;
4644 int i, j;
4646 if (!map1 || !map2)
4647 goto error;
4649 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
4651 result = isl_map_alloc_space(isl_space_copy(map1->dim),
4652 map1->n * map2->n, 0);
4653 if (!result)
4654 goto error;
4655 for (i = 0; i < map1->n; ++i)
4656 for (j = 0; j < map2->n; ++j) {
4657 struct isl_basic_map *part;
4658 part = isl_basic_map_sum(
4659 isl_basic_map_copy(map1->p[i]),
4660 isl_basic_map_copy(map2->p[j]));
4661 if (isl_basic_map_is_empty(part))
4662 isl_basic_map_free(part);
4663 else
4664 result = isl_map_add_basic_map(result, part);
4665 if (!result)
4666 goto error;
4668 isl_map_free(map1);
4669 isl_map_free(map2);
4670 return result;
4671 error:
4672 isl_map_free(map1);
4673 isl_map_free(map2);
4674 return NULL;
4677 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
4678 __isl_take isl_set *set2)
4680 return set_from_map(isl_map_sum(set_to_map(set1), set_to_map(set2)));
4683 /* Given a basic map A -> f(A), construct A -> -f(A).
4685 __isl_give isl_basic_map *isl_basic_map_neg(__isl_take isl_basic_map *bmap)
4687 int i, j;
4688 unsigned off, n;
4690 bmap = isl_basic_map_cow(bmap);
4691 if (!bmap)
4692 return NULL;
4694 n = isl_basic_map_dim(bmap, isl_dim_out);
4695 off = isl_basic_map_offset(bmap, isl_dim_out);
4696 for (i = 0; i < bmap->n_eq; ++i)
4697 for (j = 0; j < n; ++j)
4698 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
4699 for (i = 0; i < bmap->n_ineq; ++i)
4700 for (j = 0; j < n; ++j)
4701 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
4702 for (i = 0; i < bmap->n_div; ++i)
4703 for (j = 0; j < n; ++j)
4704 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
4705 bmap = isl_basic_map_gauss(bmap, NULL);
4706 return isl_basic_map_finalize(bmap);
4709 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
4711 return isl_basic_map_neg(bset);
4714 /* Given a map A -> f(A), construct A -> -f(A).
4716 __isl_give isl_map *isl_map_neg(__isl_take isl_map *map)
4718 int i;
4720 map = isl_map_cow(map);
4721 if (!map)
4722 return NULL;
4724 for (i = 0; i < map->n; ++i) {
4725 map->p[i] = isl_basic_map_neg(map->p[i]);
4726 if (!map->p[i])
4727 goto error;
4730 return map;
4731 error:
4732 isl_map_free(map);
4733 return NULL;
4736 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
4738 return set_from_map(isl_map_neg(set_to_map(set)));
4741 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4742 * A -> floor(f(A)/d).
4744 __isl_give isl_basic_map *isl_basic_map_floordiv(__isl_take isl_basic_map *bmap,
4745 isl_int d)
4747 unsigned n_in, n_out, nparam, total, pos;
4748 struct isl_basic_map *result = NULL;
4749 struct isl_dim_map *dim_map;
4750 int i;
4752 if (!bmap)
4753 return NULL;
4755 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4756 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4757 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4759 total = nparam + n_in + n_out + bmap->n_div + n_out;
4760 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4761 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
4762 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
4763 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
4764 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
4766 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
4767 bmap->n_div + n_out,
4768 bmap->n_eq, bmap->n_ineq + 2 * n_out);
4769 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
4770 result = add_divs(result, n_out);
4771 for (i = 0; i < n_out; ++i) {
4772 int j;
4773 j = isl_basic_map_alloc_inequality(result);
4774 if (j < 0)
4775 goto error;
4776 isl_seq_clr(result->ineq[j], 1+total);
4777 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
4778 isl_int_set_si(result->ineq[j][1+pos+i], 1);
4779 j = isl_basic_map_alloc_inequality(result);
4780 if (j < 0)
4781 goto error;
4782 isl_seq_clr(result->ineq[j], 1+total);
4783 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
4784 isl_int_set_si(result->ineq[j][1+pos+i], -1);
4785 isl_int_sub_ui(result->ineq[j][0], d, 1);
4788 result = isl_basic_map_simplify(result);
4789 return isl_basic_map_finalize(result);
4790 error:
4791 isl_basic_map_free(result);
4792 return NULL;
4795 /* Given a map A -> f(A) and an integer d, construct a map
4796 * A -> floor(f(A)/d).
4798 __isl_give isl_map *isl_map_floordiv(__isl_take isl_map *map, isl_int d)
4800 int i;
4802 map = isl_map_cow(map);
4803 if (!map)
4804 return NULL;
4806 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4807 for (i = 0; i < map->n; ++i) {
4808 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
4809 if (!map->p[i])
4810 goto error;
4812 map = isl_map_unmark_normalized(map);
4814 return map;
4815 error:
4816 isl_map_free(map);
4817 return NULL;
4820 /* Given a map A -> f(A) and an integer d, construct a map
4821 * A -> floor(f(A)/d).
4823 __isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
4824 __isl_take isl_val *d)
4826 if (!map || !d)
4827 goto error;
4828 if (!isl_val_is_int(d))
4829 isl_die(isl_val_get_ctx(d), isl_error_invalid,
4830 "expecting integer denominator", goto error);
4831 map = isl_map_floordiv(map, d->n);
4832 isl_val_free(d);
4833 return map;
4834 error:
4835 isl_map_free(map);
4836 isl_val_free(d);
4837 return NULL;
4840 static __isl_give isl_basic_map *var_equal(__isl_take isl_basic_map *bmap,
4841 unsigned pos)
4843 int i;
4844 unsigned nparam;
4845 unsigned n_in;
4847 i = isl_basic_map_alloc_equality(bmap);
4848 if (i < 0)
4849 goto error;
4850 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4851 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4852 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
4853 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
4854 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
4855 return isl_basic_map_finalize(bmap);
4856 error:
4857 isl_basic_map_free(bmap);
4858 return NULL;
4861 /* Add a constraint to "bmap" expressing i_pos < o_pos
4863 static __isl_give isl_basic_map *var_less(__isl_take isl_basic_map *bmap,
4864 unsigned pos)
4866 int i;
4867 unsigned nparam;
4868 unsigned n_in;
4870 i = isl_basic_map_alloc_inequality(bmap);
4871 if (i < 0)
4872 goto error;
4873 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4874 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4875 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4876 isl_int_set_si(bmap->ineq[i][0], -1);
4877 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4878 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4879 return isl_basic_map_finalize(bmap);
4880 error:
4881 isl_basic_map_free(bmap);
4882 return NULL;
4885 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4887 static __isl_give isl_basic_map *var_less_or_equal(
4888 __isl_take isl_basic_map *bmap, unsigned pos)
4890 int i;
4891 unsigned nparam;
4892 unsigned n_in;
4894 i = isl_basic_map_alloc_inequality(bmap);
4895 if (i < 0)
4896 goto error;
4897 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4898 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4899 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4900 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4901 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4902 return isl_basic_map_finalize(bmap);
4903 error:
4904 isl_basic_map_free(bmap);
4905 return NULL;
4908 /* Add a constraint to "bmap" expressing i_pos > o_pos
4910 static __isl_give isl_basic_map *var_more(__isl_take isl_basic_map *bmap,
4911 unsigned pos)
4913 int i;
4914 unsigned nparam;
4915 unsigned n_in;
4917 i = isl_basic_map_alloc_inequality(bmap);
4918 if (i < 0)
4919 goto error;
4920 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4921 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4922 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4923 isl_int_set_si(bmap->ineq[i][0], -1);
4924 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4925 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4926 return isl_basic_map_finalize(bmap);
4927 error:
4928 isl_basic_map_free(bmap);
4929 return NULL;
4932 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4934 static __isl_give isl_basic_map *var_more_or_equal(
4935 __isl_take isl_basic_map *bmap, unsigned pos)
4937 int i;
4938 unsigned nparam;
4939 unsigned n_in;
4941 i = isl_basic_map_alloc_inequality(bmap);
4942 if (i < 0)
4943 goto error;
4944 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4945 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4946 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4947 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4948 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4949 return isl_basic_map_finalize(bmap);
4950 error:
4951 isl_basic_map_free(bmap);
4952 return NULL;
4955 __isl_give isl_basic_map *isl_basic_map_equal(
4956 __isl_take isl_space *space, unsigned n_equal)
4958 int i;
4959 struct isl_basic_map *bmap;
4960 bmap = isl_basic_map_alloc_space(space, 0, n_equal, 0);
4961 if (!bmap)
4962 return NULL;
4963 for (i = 0; i < n_equal && bmap; ++i)
4964 bmap = var_equal(bmap, i);
4965 return isl_basic_map_finalize(bmap);
4968 /* Return a relation on of dimension "space" expressing i_[0..pos] << o_[0..pos]
4970 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *space,
4971 unsigned pos)
4973 int i;
4974 struct isl_basic_map *bmap;
4975 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
4976 if (!bmap)
4977 return NULL;
4978 for (i = 0; i < pos && bmap; ++i)
4979 bmap = var_equal(bmap, i);
4980 if (bmap)
4981 bmap = var_less(bmap, pos);
4982 return isl_basic_map_finalize(bmap);
4985 /* Return a relation on "space" expressing i_[0..pos] <<= o_[0..pos]
4987 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
4988 __isl_take isl_space *space, unsigned pos)
4990 int i;
4991 isl_basic_map *bmap;
4993 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
4994 for (i = 0; i < pos; ++i)
4995 bmap = var_equal(bmap, i);
4996 bmap = var_less_or_equal(bmap, pos);
4997 return isl_basic_map_finalize(bmap);
5000 /* Return a relation on "space" expressing i_pos > o_pos
5002 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *space,
5003 unsigned pos)
5005 int i;
5006 struct isl_basic_map *bmap;
5007 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
5008 if (!bmap)
5009 return NULL;
5010 for (i = 0; i < pos && bmap; ++i)
5011 bmap = var_equal(bmap, i);
5012 if (bmap)
5013 bmap = var_more(bmap, pos);
5014 return isl_basic_map_finalize(bmap);
5017 /* Return a relation on "space" expressing i_[0..pos] >>= o_[0..pos]
5019 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
5020 __isl_take isl_space *space, unsigned pos)
5022 int i;
5023 isl_basic_map *bmap;
5025 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
5026 for (i = 0; i < pos; ++i)
5027 bmap = var_equal(bmap, i);
5028 bmap = var_more_or_equal(bmap, pos);
5029 return isl_basic_map_finalize(bmap);
5032 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *space,
5033 unsigned n, int equal)
5035 struct isl_map *map;
5036 int i;
5038 if (n == 0 && equal)
5039 return isl_map_universe(space);
5041 map = isl_map_alloc_space(isl_space_copy(space), n, ISL_MAP_DISJOINT);
5043 for (i = 0; i + 1 < n; ++i)
5044 map = isl_map_add_basic_map(map,
5045 isl_basic_map_less_at(isl_space_copy(space), i));
5046 if (n > 0) {
5047 if (equal)
5048 map = isl_map_add_basic_map(map,
5049 isl_basic_map_less_or_equal_at(space, n - 1));
5050 else
5051 map = isl_map_add_basic_map(map,
5052 isl_basic_map_less_at(space, n - 1));
5053 } else
5054 isl_space_free(space);
5056 return map;
5059 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *space, int equal)
5061 if (!space)
5062 return NULL;
5063 return map_lex_lte_first(space, space->n_out, equal);
5066 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
5068 return map_lex_lte_first(dim, n, 0);
5071 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
5073 return map_lex_lte_first(dim, n, 1);
5076 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
5078 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
5081 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
5083 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
5086 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *space,
5087 unsigned n, int equal)
5089 struct isl_map *map;
5090 int i;
5092 if (n == 0 && equal)
5093 return isl_map_universe(space);
5095 map = isl_map_alloc_space(isl_space_copy(space), n, ISL_MAP_DISJOINT);
5097 for (i = 0; i + 1 < n; ++i)
5098 map = isl_map_add_basic_map(map,
5099 isl_basic_map_more_at(isl_space_copy(space), i));
5100 if (n > 0) {
5101 if (equal)
5102 map = isl_map_add_basic_map(map,
5103 isl_basic_map_more_or_equal_at(space, n - 1));
5104 else
5105 map = isl_map_add_basic_map(map,
5106 isl_basic_map_more_at(space, n - 1));
5107 } else
5108 isl_space_free(space);
5110 return map;
5113 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *space, int equal)
5115 if (!space)
5116 return NULL;
5117 return map_lex_gte_first(space, space->n_out, equal);
5120 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
5122 return map_lex_gte_first(dim, n, 0);
5125 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
5127 return map_lex_gte_first(dim, n, 1);
5130 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
5132 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
5135 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
5137 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
5140 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
5141 __isl_take isl_set *set2)
5143 isl_map *map;
5144 map = isl_map_lex_le(isl_set_get_space(set1));
5145 map = isl_map_intersect_domain(map, set1);
5146 map = isl_map_intersect_range(map, set2);
5147 return map;
5150 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
5151 __isl_take isl_set *set2)
5153 isl_map *map;
5154 map = isl_map_lex_lt(isl_set_get_space(set1));
5155 map = isl_map_intersect_domain(map, set1);
5156 map = isl_map_intersect_range(map, set2);
5157 return map;
5160 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
5161 __isl_take isl_set *set2)
5163 isl_map *map;
5164 map = isl_map_lex_ge(isl_set_get_space(set1));
5165 map = isl_map_intersect_domain(map, set1);
5166 map = isl_map_intersect_range(map, set2);
5167 return map;
5170 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
5171 __isl_take isl_set *set2)
5173 isl_map *map;
5174 map = isl_map_lex_gt(isl_set_get_space(set1));
5175 map = isl_map_intersect_domain(map, set1);
5176 map = isl_map_intersect_range(map, set2);
5177 return map;
5180 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
5181 __isl_take isl_map *map2)
5183 isl_map *map;
5184 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
5185 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5186 map = isl_map_apply_range(map, isl_map_reverse(map2));
5187 return map;
5190 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
5191 __isl_take isl_map *map2)
5193 isl_map *map;
5194 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
5195 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5196 map = isl_map_apply_range(map, isl_map_reverse(map2));
5197 return map;
5200 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
5201 __isl_take isl_map *map2)
5203 isl_map *map;
5204 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
5205 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5206 map = isl_map_apply_range(map, isl_map_reverse(map2));
5207 return map;
5210 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
5211 __isl_take isl_map *map2)
5213 isl_map *map;
5214 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
5215 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5216 map = isl_map_apply_range(map, isl_map_reverse(map2));
5217 return map;
5220 /* For a div d = floor(f/m), add the constraint
5222 * f - m d >= 0
5224 static isl_stat add_upper_div_constraint(__isl_keep isl_basic_map *bmap,
5225 unsigned pos, isl_int *div)
5227 int i;
5228 unsigned total = isl_basic_map_total_dim(bmap);
5230 i = isl_basic_map_alloc_inequality(bmap);
5231 if (i < 0)
5232 return isl_stat_error;
5233 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
5234 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
5236 return isl_stat_ok;
5239 /* For a div d = floor(f/m), add the constraint
5241 * -(f-(m-1)) + m d >= 0
5243 static isl_stat add_lower_div_constraint(__isl_keep isl_basic_map *bmap,
5244 unsigned pos, isl_int *div)
5246 int i;
5247 unsigned total = isl_basic_map_total_dim(bmap);
5249 i = isl_basic_map_alloc_inequality(bmap);
5250 if (i < 0)
5251 return isl_stat_error;
5252 isl_seq_neg(bmap->ineq[i], div + 1, 1 + total);
5253 isl_int_set(bmap->ineq[i][1 + pos], div[0]);
5254 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
5255 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
5257 return isl_stat_ok;
5260 /* For a div d = floor(f/m), add the constraints
5262 * f - m d >= 0
5263 * -(f-(m-1)) + m d >= 0
5265 * Note that the second constraint is the negation of
5267 * f - m d >= m
5269 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
5270 unsigned pos, isl_int *div)
5272 if (add_upper_div_constraint(bmap, pos, div) < 0)
5273 return -1;
5274 if (add_lower_div_constraint(bmap, pos, div) < 0)
5275 return -1;
5276 return 0;
5279 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
5280 unsigned pos, isl_int *div)
5282 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset),
5283 pos, div);
5286 int isl_basic_map_add_div_constraints(__isl_keep isl_basic_map *bmap,
5287 unsigned div)
5289 unsigned total = isl_basic_map_total_dim(bmap);
5290 unsigned div_pos = total - bmap->n_div + div;
5292 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
5293 bmap->div[div]);
5296 /* For each known div d = floor(f/m), add the constraints
5298 * f - m d >= 0
5299 * -(f-(m-1)) + m d >= 0
5301 * Remove duplicate constraints in case of some these div constraints
5302 * already appear in "bmap".
5304 __isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
5305 __isl_take isl_basic_map *bmap)
5307 unsigned n_div;
5309 if (!bmap)
5310 return NULL;
5311 n_div = isl_basic_map_dim(bmap, isl_dim_div);
5312 if (n_div == 0)
5313 return bmap;
5315 bmap = add_known_div_constraints(bmap);
5316 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
5317 bmap = isl_basic_map_finalize(bmap);
5318 return bmap;
5321 /* Add the div constraint of sign "sign" for div "div" of "bmap".
5323 * In particular, if this div is of the form d = floor(f/m),
5324 * then add the constraint
5326 * f - m d >= 0
5328 * if sign < 0 or the constraint
5330 * -(f-(m-1)) + m d >= 0
5332 * if sign > 0.
5334 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map *bmap,
5335 unsigned div, int sign)
5337 unsigned total;
5338 unsigned div_pos;
5340 if (!bmap)
5341 return -1;
5343 total = isl_basic_map_total_dim(bmap);
5344 div_pos = total - bmap->n_div + div;
5346 if (sign < 0)
5347 return add_upper_div_constraint(bmap, div_pos, bmap->div[div]);
5348 else
5349 return add_lower_div_constraint(bmap, div_pos, bmap->div[div]);
5352 __isl_give isl_basic_set *isl_basic_map_underlying_set(
5353 __isl_take isl_basic_map *bmap)
5355 if (!bmap)
5356 goto error;
5357 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
5358 bmap->n_div == 0 &&
5359 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
5360 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
5361 return bset_from_bmap(bmap);
5362 bmap = isl_basic_map_cow(bmap);
5363 if (!bmap)
5364 goto error;
5365 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
5366 if (!bmap->dim)
5367 goto error;
5368 bmap->extra -= bmap->n_div;
5369 bmap->n_div = 0;
5370 bmap = isl_basic_map_finalize(bmap);
5371 return bset_from_bmap(bmap);
5372 error:
5373 isl_basic_map_free(bmap);
5374 return NULL;
5377 __isl_give isl_basic_set *isl_basic_set_underlying_set(
5378 __isl_take isl_basic_set *bset)
5380 return isl_basic_map_underlying_set(bset_to_bmap(bset));
5383 /* Replace each element in "list" by the result of applying
5384 * isl_basic_map_underlying_set to the element.
5386 __isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
5387 __isl_take isl_basic_map_list *list)
5389 int i, n;
5391 if (!list)
5392 return NULL;
5394 n = isl_basic_map_list_n_basic_map(list);
5395 for (i = 0; i < n; ++i) {
5396 isl_basic_map *bmap;
5397 isl_basic_set *bset;
5399 bmap = isl_basic_map_list_get_basic_map(list, i);
5400 bset = isl_basic_set_underlying_set(bmap);
5401 list = isl_basic_set_list_set_basic_set(list, i, bset);
5404 return list;
5407 __isl_give isl_basic_map *isl_basic_map_overlying_set(
5408 __isl_take isl_basic_set *bset, __isl_take isl_basic_map *like)
5410 struct isl_basic_map *bmap;
5411 struct isl_ctx *ctx;
5412 unsigned total;
5413 int i;
5415 if (!bset || !like)
5416 goto error;
5417 ctx = bset->ctx;
5418 isl_assert(ctx, bset->n_div == 0, goto error);
5419 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
5420 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
5421 goto error);
5422 if (like->n_div == 0) {
5423 isl_space *space = isl_basic_map_get_space(like);
5424 isl_basic_map_free(like);
5425 return isl_basic_map_reset_space(bset, space);
5427 bset = isl_basic_set_cow(bset);
5428 if (!bset)
5429 goto error;
5430 total = bset->dim->n_out + bset->extra;
5431 bmap = bset_to_bmap(bset);
5432 isl_space_free(bmap->dim);
5433 bmap->dim = isl_space_copy(like->dim);
5434 if (!bmap->dim)
5435 goto error;
5436 bmap->n_div = like->n_div;
5437 bmap->extra += like->n_div;
5438 if (bmap->extra) {
5439 unsigned ltotal;
5440 isl_int **div;
5441 ltotal = total - bmap->extra + like->extra;
5442 if (ltotal > total)
5443 ltotal = total;
5444 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
5445 bmap->extra * (1 + 1 + total));
5446 if (isl_blk_is_error(bmap->block2))
5447 goto error;
5448 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
5449 if (!div)
5450 goto error;
5451 bmap->div = div;
5452 for (i = 0; i < bmap->extra; ++i)
5453 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
5454 for (i = 0; i < like->n_div; ++i) {
5455 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
5456 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
5458 bmap = isl_basic_map_add_known_div_constraints(bmap);
5460 isl_basic_map_free(like);
5461 bmap = isl_basic_map_simplify(bmap);
5462 bmap = isl_basic_map_finalize(bmap);
5463 return bmap;
5464 error:
5465 isl_basic_map_free(like);
5466 isl_basic_set_free(bset);
5467 return NULL;
5470 struct isl_basic_set *isl_basic_set_from_underlying_set(
5471 struct isl_basic_set *bset, struct isl_basic_set *like)
5473 return bset_from_bmap(isl_basic_map_overlying_set(bset,
5474 bset_to_bmap(like)));
5477 __isl_give isl_set *isl_map_underlying_set(__isl_take isl_map *map)
5479 int i;
5481 map = isl_map_cow(map);
5482 if (!map)
5483 return NULL;
5484 map->dim = isl_space_cow(map->dim);
5485 if (!map->dim)
5486 goto error;
5488 for (i = 1; i < map->n; ++i)
5489 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
5490 goto error);
5491 for (i = 0; i < map->n; ++i) {
5492 map->p[i] = bset_to_bmap(
5493 isl_basic_map_underlying_set(map->p[i]));
5494 if (!map->p[i])
5495 goto error;
5497 if (map->n == 0)
5498 map->dim = isl_space_underlying(map->dim, 0);
5499 else {
5500 isl_space_free(map->dim);
5501 map->dim = isl_space_copy(map->p[0]->dim);
5503 if (!map->dim)
5504 goto error;
5505 return set_from_map(map);
5506 error:
5507 isl_map_free(map);
5508 return NULL;
5511 /* Replace the space of "bmap" by "space".
5513 * If the space of "bmap" is identical to "space" (including the identifiers
5514 * of the input and output dimensions), then simply return the original input.
5516 __isl_give isl_basic_map *isl_basic_map_reset_space(
5517 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
5519 isl_bool equal;
5520 isl_space *bmap_space;
5522 bmap_space = isl_basic_map_peek_space(bmap);
5523 equal = isl_space_is_equal(bmap_space, space);
5524 if (equal >= 0 && equal)
5525 equal = isl_space_has_equal_ids(bmap_space, space);
5526 if (equal < 0)
5527 goto error;
5528 if (equal) {
5529 isl_space_free(space);
5530 return bmap;
5532 bmap = isl_basic_map_cow(bmap);
5533 if (!bmap || !space)
5534 goto error;
5536 isl_space_free(bmap->dim);
5537 bmap->dim = space;
5539 bmap = isl_basic_map_finalize(bmap);
5541 return bmap;
5542 error:
5543 isl_basic_map_free(bmap);
5544 isl_space_free(space);
5545 return NULL;
5548 __isl_give isl_basic_set *isl_basic_set_reset_space(
5549 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
5551 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset),
5552 dim));
5555 /* Check that the total dimensions of "map" and "space" are the same.
5557 static isl_stat check_map_space_equal_total_dim(__isl_keep isl_map *map,
5558 __isl_keep isl_space *space)
5560 unsigned dim1, dim2;
5562 if (!map || !space)
5563 return isl_stat_error;
5564 dim1 = isl_map_dim(map, isl_dim_all);
5565 dim2 = isl_space_dim(space, isl_dim_all);
5566 if (dim1 == dim2)
5567 return isl_stat_ok;
5568 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5569 "total dimensions do not match", return isl_stat_error);
5572 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
5573 __isl_take isl_space *space)
5575 int i;
5577 map = isl_map_cow(map);
5578 if (!map || !space)
5579 goto error;
5581 for (i = 0; i < map->n; ++i) {
5582 map->p[i] = isl_basic_map_reset_space(map->p[i],
5583 isl_space_copy(space));
5584 if (!map->p[i])
5585 goto error;
5587 isl_space_free(map->dim);
5588 map->dim = space;
5590 return map;
5591 error:
5592 isl_map_free(map);
5593 isl_space_free(space);
5594 return NULL;
5597 /* Replace the space of "map" by "space", without modifying
5598 * the dimension of "map".
5600 * If the space of "map" is identical to "space" (including the identifiers
5601 * of the input and output dimensions), then simply return the original input.
5603 __isl_give isl_map *isl_map_reset_equal_dim_space(__isl_take isl_map *map,
5604 __isl_take isl_space *space)
5606 isl_bool equal;
5607 isl_space *map_space;
5609 map_space = isl_map_peek_space(map);
5610 equal = isl_space_is_equal(map_space, space);
5611 if (equal >= 0 && equal)
5612 equal = isl_space_has_equal_ids(map_space, space);
5613 if (equal < 0)
5614 goto error;
5615 if (equal) {
5616 isl_space_free(space);
5617 return map;
5619 if (check_map_space_equal_total_dim(map, space) < 0)
5620 goto error;
5621 return isl_map_reset_space(map, space);
5622 error:
5623 isl_map_free(map);
5624 isl_space_free(space);
5625 return NULL;
5628 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
5629 __isl_take isl_space *dim)
5631 return set_from_map(isl_map_reset_space(set_to_map(set), dim));
5634 /* Compute the parameter domain of the given basic set.
5636 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
5638 isl_bool is_params;
5639 isl_space *space;
5640 unsigned n;
5642 is_params = isl_basic_set_is_params(bset);
5643 if (is_params < 0)
5644 return isl_basic_set_free(bset);
5645 if (is_params)
5646 return bset;
5648 n = isl_basic_set_dim(bset, isl_dim_set);
5649 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
5650 space = isl_basic_set_get_space(bset);
5651 space = isl_space_params(space);
5652 bset = isl_basic_set_reset_space(bset, space);
5653 return bset;
5656 /* Construct a zero-dimensional basic set with the given parameter domain.
5658 __isl_give isl_basic_set *isl_basic_set_from_params(
5659 __isl_take isl_basic_set *bset)
5661 isl_space *space;
5662 space = isl_basic_set_get_space(bset);
5663 space = isl_space_set_from_params(space);
5664 bset = isl_basic_set_reset_space(bset, space);
5665 return bset;
5668 /* Compute the parameter domain of the given set.
5670 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
5672 isl_space *space;
5673 unsigned n;
5675 if (isl_set_is_params(set))
5676 return set;
5678 n = isl_set_dim(set, isl_dim_set);
5679 set = isl_set_project_out(set, isl_dim_set, 0, n);
5680 space = isl_set_get_space(set);
5681 space = isl_space_params(space);
5682 set = isl_set_reset_space(set, space);
5683 return set;
5686 /* Construct a zero-dimensional set with the given parameter domain.
5688 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
5690 isl_space *space;
5691 space = isl_set_get_space(set);
5692 space = isl_space_set_from_params(space);
5693 set = isl_set_reset_space(set, space);
5694 return set;
5697 /* Compute the parameter domain of the given map.
5699 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
5701 isl_space *space;
5702 unsigned n;
5704 n = isl_map_dim(map, isl_dim_in);
5705 map = isl_map_project_out(map, isl_dim_in, 0, n);
5706 n = isl_map_dim(map, isl_dim_out);
5707 map = isl_map_project_out(map, isl_dim_out, 0, n);
5708 space = isl_map_get_space(map);
5709 space = isl_space_params(space);
5710 map = isl_map_reset_space(map, space);
5711 return map;
5714 __isl_give isl_basic_set *isl_basic_map_domain(__isl_take isl_basic_map *bmap)
5716 isl_space *space;
5717 unsigned n_out;
5719 if (!bmap)
5720 return NULL;
5721 space = isl_space_domain(isl_basic_map_get_space(bmap));
5723 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5724 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
5726 return isl_basic_map_reset_space(bmap, space);
5729 isl_bool isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
5731 if (!bmap)
5732 return isl_bool_error;
5733 return isl_space_may_be_set(bmap->dim);
5736 /* Is this basic map actually a set?
5737 * Users should never call this function. Outside of isl,
5738 * the type should indicate whether something is a set or a map.
5740 isl_bool isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
5742 if (!bmap)
5743 return isl_bool_error;
5744 return isl_space_is_set(bmap->dim);
5747 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
5749 isl_bool is_set;
5751 is_set = isl_basic_map_is_set(bmap);
5752 if (is_set < 0)
5753 goto error;
5754 if (is_set)
5755 return bmap;
5756 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
5757 error:
5758 isl_basic_map_free(bmap);
5759 return NULL;
5762 __isl_give isl_basic_map *isl_basic_map_domain_map(
5763 __isl_take isl_basic_map *bmap)
5765 int i;
5766 isl_space *space;
5767 isl_basic_map *domain;
5768 int nparam, n_in, n_out;
5770 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5771 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5772 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5774 space = isl_basic_map_get_space(bmap);
5775 space = isl_space_from_range(isl_space_domain(space));
5776 domain = isl_basic_map_universe(space);
5778 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5779 bmap = isl_basic_map_apply_range(bmap, domain);
5780 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
5782 for (i = 0; i < n_in; ++i)
5783 bmap = isl_basic_map_equate(bmap, isl_dim_in, i,
5784 isl_dim_out, i);
5786 bmap = isl_basic_map_gauss(bmap, NULL);
5787 return isl_basic_map_finalize(bmap);
5790 __isl_give isl_basic_map *isl_basic_map_range_map(
5791 __isl_take isl_basic_map *bmap)
5793 int i;
5794 isl_space *space;
5795 isl_basic_map *range;
5796 int nparam, n_in, n_out;
5798 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5799 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5800 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5802 space = isl_basic_map_get_space(bmap);
5803 space = isl_space_from_range(isl_space_range(space));
5804 range = isl_basic_map_universe(space);
5806 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5807 bmap = isl_basic_map_apply_range(bmap, range);
5808 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
5810 for (i = 0; i < n_out; ++i)
5811 bmap = isl_basic_map_equate(bmap, isl_dim_in, n_in + i,
5812 isl_dim_out, i);
5814 bmap = isl_basic_map_gauss(bmap, NULL);
5815 return isl_basic_map_finalize(bmap);
5818 int isl_map_may_be_set(__isl_keep isl_map *map)
5820 if (!map)
5821 return -1;
5822 return isl_space_may_be_set(map->dim);
5825 /* Is this map actually a set?
5826 * Users should never call this function. Outside of isl,
5827 * the type should indicate whether something is a set or a map.
5829 isl_bool isl_map_is_set(__isl_keep isl_map *map)
5831 if (!map)
5832 return isl_bool_error;
5833 return isl_space_is_set(map->dim);
5836 __isl_give isl_set *isl_map_range(__isl_take isl_map *map)
5838 int i;
5839 isl_bool is_set;
5840 struct isl_set *set;
5842 is_set = isl_map_is_set(map);
5843 if (is_set < 0)
5844 goto error;
5845 if (is_set)
5846 return set_from_map(map);
5848 map = isl_map_cow(map);
5849 if (!map)
5850 goto error;
5852 set = set_from_map(map);
5853 set->dim = isl_space_range(set->dim);
5854 if (!set->dim)
5855 goto error;
5856 for (i = 0; i < map->n; ++i) {
5857 set->p[i] = isl_basic_map_range(map->p[i]);
5858 if (!set->p[i])
5859 goto error;
5861 ISL_F_CLR(set, ISL_MAP_DISJOINT);
5862 ISL_F_CLR(set, ISL_SET_NORMALIZED);
5863 return set;
5864 error:
5865 isl_map_free(map);
5866 return NULL;
5869 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
5871 int i;
5873 map = isl_map_cow(map);
5874 if (!map)
5875 return NULL;
5877 map->dim = isl_space_domain_map(map->dim);
5878 if (!map->dim)
5879 goto error;
5880 for (i = 0; i < map->n; ++i) {
5881 map->p[i] = isl_basic_map_domain_map(map->p[i]);
5882 if (!map->p[i])
5883 goto error;
5885 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5886 map = isl_map_unmark_normalized(map);
5887 return map;
5888 error:
5889 isl_map_free(map);
5890 return NULL;
5893 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
5895 int i;
5896 isl_space *range_dim;
5898 map = isl_map_cow(map);
5899 if (!map)
5900 return NULL;
5902 range_dim = isl_space_range(isl_map_get_space(map));
5903 range_dim = isl_space_from_range(range_dim);
5904 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
5905 map->dim = isl_space_join(map->dim, range_dim);
5906 if (!map->dim)
5907 goto error;
5908 for (i = 0; i < map->n; ++i) {
5909 map->p[i] = isl_basic_map_range_map(map->p[i]);
5910 if (!map->p[i])
5911 goto error;
5913 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5914 map = isl_map_unmark_normalized(map);
5915 return map;
5916 error:
5917 isl_map_free(map);
5918 return NULL;
5921 /* Given a wrapped map of the form A[B -> C],
5922 * return the map A[B -> C] -> B.
5924 __isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
5926 isl_id *id;
5927 isl_map *map;
5929 if (!set)
5930 return NULL;
5931 if (!isl_set_has_tuple_id(set))
5932 return isl_map_domain_map(isl_set_unwrap(set));
5934 id = isl_set_get_tuple_id(set);
5935 map = isl_map_domain_map(isl_set_unwrap(set));
5936 map = isl_map_set_tuple_id(map, isl_dim_in, id);
5938 return map;
5941 __isl_give isl_basic_map *isl_basic_map_from_domain(
5942 __isl_take isl_basic_set *bset)
5944 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
5947 __isl_give isl_basic_map *isl_basic_map_from_range(
5948 __isl_take isl_basic_set *bset)
5950 isl_space *space;
5951 space = isl_basic_set_get_space(bset);
5952 space = isl_space_from_range(space);
5953 bset = isl_basic_set_reset_space(bset, space);
5954 return bset_to_bmap(bset);
5957 /* Create a relation with the given set as range.
5958 * The domain of the created relation is a zero-dimensional
5959 * flat anonymous space.
5961 __isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
5963 isl_space *space;
5964 space = isl_set_get_space(set);
5965 space = isl_space_from_range(space);
5966 set = isl_set_reset_space(set, space);
5967 return set_to_map(set);
5970 /* Create a relation with the given set as domain.
5971 * The range of the created relation is a zero-dimensional
5972 * flat anonymous space.
5974 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
5976 return isl_map_reverse(isl_map_from_range(set));
5979 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
5980 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
5982 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
5985 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
5986 __isl_take isl_set *range)
5988 return isl_map_apply_range(isl_map_reverse(domain), range);
5991 /* Return a newly allocated isl_map with given space and flags and
5992 * room for "n" basic maps.
5993 * Make sure that all cached information is cleared.
5995 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *space, int n,
5996 unsigned flags)
5998 struct isl_map *map;
6000 if (!space)
6001 return NULL;
6002 if (n < 0)
6003 isl_die(space->ctx, isl_error_internal,
6004 "negative number of basic maps", goto error);
6005 map = isl_calloc(space->ctx, struct isl_map,
6006 sizeof(struct isl_map) +
6007 (n - 1) * sizeof(struct isl_basic_map *));
6008 if (!map)
6009 goto error;
6011 map->ctx = space->ctx;
6012 isl_ctx_ref(map->ctx);
6013 map->ref = 1;
6014 map->size = n;
6015 map->n = 0;
6016 map->dim = space;
6017 map->flags = flags;
6018 return map;
6019 error:
6020 isl_space_free(space);
6021 return NULL;
6024 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *space)
6026 struct isl_basic_map *bmap;
6027 bmap = isl_basic_map_alloc_space(space, 0, 1, 0);
6028 bmap = isl_basic_map_set_to_empty(bmap);
6029 return bmap;
6032 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *space)
6034 struct isl_basic_set *bset;
6035 bset = isl_basic_set_alloc_space(space, 0, 1, 0);
6036 bset = isl_basic_set_set_to_empty(bset);
6037 return bset;
6040 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *space)
6042 struct isl_basic_map *bmap;
6043 bmap = isl_basic_map_alloc_space(space, 0, 0, 0);
6044 bmap = isl_basic_map_finalize(bmap);
6045 return bmap;
6048 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *space)
6050 struct isl_basic_set *bset;
6051 bset = isl_basic_set_alloc_space(space, 0, 0, 0);
6052 bset = isl_basic_set_finalize(bset);
6053 return bset;
6056 __isl_give isl_basic_map *isl_basic_map_nat_universe(
6057 __isl_take isl_space *space)
6059 int i;
6060 unsigned total = isl_space_dim(space, isl_dim_all);
6061 isl_basic_map *bmap;
6063 bmap = isl_basic_map_alloc_space(space, 0, 0, total);
6064 for (i = 0; i < total; ++i) {
6065 int k = isl_basic_map_alloc_inequality(bmap);
6066 if (k < 0)
6067 goto error;
6068 isl_seq_clr(bmap->ineq[k], 1 + total);
6069 isl_int_set_si(bmap->ineq[k][1 + i], 1);
6071 return bmap;
6072 error:
6073 isl_basic_map_free(bmap);
6074 return NULL;
6077 __isl_give isl_basic_set *isl_basic_set_nat_universe(
6078 __isl_take isl_space *space)
6080 return isl_basic_map_nat_universe(space);
6083 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
6085 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
6088 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
6090 return isl_map_nat_universe(dim);
6093 __isl_give isl_map *isl_map_empty(__isl_take isl_space *space)
6095 return isl_map_alloc_space(space, 0, ISL_MAP_DISJOINT);
6098 __isl_give isl_set *isl_set_empty(__isl_take isl_space *space)
6100 return isl_set_alloc_space(space, 0, ISL_MAP_DISJOINT);
6103 __isl_give isl_map *isl_map_universe(__isl_take isl_space *space)
6105 struct isl_map *map;
6106 if (!space)
6107 return NULL;
6108 map = isl_map_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6109 map = isl_map_add_basic_map(map, isl_basic_map_universe(space));
6110 return map;
6113 __isl_give isl_set *isl_set_universe(__isl_take isl_space *space)
6115 struct isl_set *set;
6116 if (!space)
6117 return NULL;
6118 set = isl_set_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6119 set = isl_set_add_basic_set(set, isl_basic_set_universe(space));
6120 return set;
6123 struct isl_map *isl_map_dup(struct isl_map *map)
6125 int i;
6126 struct isl_map *dup;
6128 if (!map)
6129 return NULL;
6130 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
6131 for (i = 0; i < map->n; ++i)
6132 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
6133 return dup;
6136 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
6137 __isl_take isl_basic_map *bmap)
6139 if (!bmap || !map)
6140 goto error;
6141 if (isl_basic_map_plain_is_empty(bmap)) {
6142 isl_basic_map_free(bmap);
6143 return map;
6145 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
6146 isl_assert(map->ctx, map->n < map->size, goto error);
6147 map->p[map->n] = bmap;
6148 map->n++;
6149 map = isl_map_unmark_normalized(map);
6150 return map;
6151 error:
6152 if (map)
6153 isl_map_free(map);
6154 if (bmap)
6155 isl_basic_map_free(bmap);
6156 return NULL;
6159 __isl_null isl_map *isl_map_free(__isl_take isl_map *map)
6161 int i;
6163 if (!map)
6164 return NULL;
6166 if (--map->ref > 0)
6167 return NULL;
6169 clear_caches(map);
6170 isl_ctx_deref(map->ctx);
6171 for (i = 0; i < map->n; ++i)
6172 isl_basic_map_free(map->p[i]);
6173 isl_space_free(map->dim);
6174 free(map);
6176 return NULL;
6179 static __isl_give isl_basic_map *isl_basic_map_fix_pos_si(
6180 __isl_take isl_basic_map *bmap, unsigned pos, int value)
6182 int j;
6184 bmap = isl_basic_map_cow(bmap);
6185 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6186 j = isl_basic_map_alloc_equality(bmap);
6187 if (j < 0)
6188 goto error;
6189 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6190 isl_int_set_si(bmap->eq[j][pos], -1);
6191 isl_int_set_si(bmap->eq[j][0], value);
6192 bmap = isl_basic_map_simplify(bmap);
6193 return isl_basic_map_finalize(bmap);
6194 error:
6195 isl_basic_map_free(bmap);
6196 return NULL;
6199 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
6200 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
6202 int j;
6204 bmap = isl_basic_map_cow(bmap);
6205 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6206 j = isl_basic_map_alloc_equality(bmap);
6207 if (j < 0)
6208 goto error;
6209 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6210 isl_int_set_si(bmap->eq[j][pos], -1);
6211 isl_int_set(bmap->eq[j][0], value);
6212 bmap = isl_basic_map_simplify(bmap);
6213 return isl_basic_map_finalize(bmap);
6214 error:
6215 isl_basic_map_free(bmap);
6216 return NULL;
6219 __isl_give isl_basic_map *isl_basic_map_fix_si(__isl_take isl_basic_map *bmap,
6220 enum isl_dim_type type, unsigned pos, int value)
6222 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6223 return isl_basic_map_free(bmap);
6224 return isl_basic_map_fix_pos_si(bmap,
6225 isl_basic_map_offset(bmap, type) + pos, value);
6228 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
6229 enum isl_dim_type type, unsigned pos, isl_int value)
6231 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6232 return isl_basic_map_free(bmap);
6233 return isl_basic_map_fix_pos(bmap,
6234 isl_basic_map_offset(bmap, type) + pos, value);
6237 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
6238 * to be equal to "v".
6240 __isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
6241 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6243 if (!bmap || !v)
6244 goto error;
6245 if (!isl_val_is_int(v))
6246 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
6247 "expecting integer value", goto error);
6248 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6249 goto error;
6250 pos += isl_basic_map_offset(bmap, type);
6251 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
6252 isl_val_free(v);
6253 return bmap;
6254 error:
6255 isl_basic_map_free(bmap);
6256 isl_val_free(v);
6257 return NULL;
6260 /* Fix the value of the variable at position "pos" of type "type" of "bset"
6261 * to be equal to "v".
6263 __isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
6264 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6266 return isl_basic_map_fix_val(bset, type, pos, v);
6269 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
6270 enum isl_dim_type type, unsigned pos, int value)
6272 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6273 type, pos, value));
6276 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
6277 enum isl_dim_type type, unsigned pos, isl_int value)
6279 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset),
6280 type, pos, value));
6283 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
6284 unsigned input, int value)
6286 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
6289 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
6290 unsigned dim, int value)
6292 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6293 isl_dim_set, dim, value));
6296 /* Remove the basic map at position "i" from "map" if this basic map
6297 * is (obviously) empty.
6299 static __isl_give isl_map *remove_if_empty(__isl_take isl_map *map, int i)
6301 isl_bool empty;
6303 if (!map)
6304 return NULL;
6306 empty = isl_basic_map_plain_is_empty(map->p[i]);
6307 if (empty < 0)
6308 return isl_map_free(map);
6309 if (!empty)
6310 return map;
6312 isl_basic_map_free(map->p[i]);
6313 map->n--;
6314 if (i != map->n) {
6315 map->p[i] = map->p[map->n];
6316 map = isl_map_unmark_normalized(map);
6320 return map;
6323 /* Perform "fn" on each basic map of "map", where we may not be holding
6324 * the only reference to "map".
6325 * In particular, "fn" should be a semantics preserving operation
6326 * that we want to apply to all copies of "map". We therefore need
6327 * to be careful not to modify "map" in a way that breaks "map"
6328 * in case anything goes wrong.
6330 __isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
6331 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
6333 struct isl_basic_map *bmap;
6334 int i;
6336 if (!map)
6337 return NULL;
6339 for (i = map->n - 1; i >= 0; --i) {
6340 bmap = isl_basic_map_copy(map->p[i]);
6341 bmap = fn(bmap);
6342 if (!bmap)
6343 goto error;
6344 isl_basic_map_free(map->p[i]);
6345 map->p[i] = bmap;
6346 map = remove_if_empty(map, i);
6347 if (!map)
6348 return NULL;
6351 return map;
6352 error:
6353 isl_map_free(map);
6354 return NULL;
6357 __isl_give isl_map *isl_map_fix_si(__isl_take isl_map *map,
6358 enum isl_dim_type type, unsigned pos, int value)
6360 int i;
6362 map = isl_map_cow(map);
6363 if (!map)
6364 return NULL;
6366 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6367 for (i = map->n - 1; i >= 0; --i) {
6368 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
6369 map = remove_if_empty(map, i);
6370 if (!map)
6371 return NULL;
6373 map = isl_map_unmark_normalized(map);
6374 return map;
6375 error:
6376 isl_map_free(map);
6377 return NULL;
6380 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
6381 enum isl_dim_type type, unsigned pos, int value)
6383 return set_from_map(isl_map_fix_si(set_to_map(set), type, pos, value));
6386 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
6387 enum isl_dim_type type, unsigned pos, isl_int value)
6389 int i;
6391 map = isl_map_cow(map);
6392 if (!map)
6393 return NULL;
6395 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6396 for (i = 0; i < map->n; ++i) {
6397 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
6398 if (!map->p[i])
6399 goto error;
6401 map = isl_map_unmark_normalized(map);
6402 return map;
6403 error:
6404 isl_map_free(map);
6405 return NULL;
6408 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
6409 enum isl_dim_type type, unsigned pos, isl_int value)
6411 return set_from_map(isl_map_fix(set_to_map(set), type, pos, value));
6414 /* Fix the value of the variable at position "pos" of type "type" of "map"
6415 * to be equal to "v".
6417 __isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
6418 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6420 int i;
6422 map = isl_map_cow(map);
6423 if (!map || !v)
6424 goto error;
6426 if (!isl_val_is_int(v))
6427 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6428 "expecting integer value", goto error);
6429 if (pos >= isl_map_dim(map, type))
6430 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6431 "index out of bounds", goto error);
6432 for (i = map->n - 1; i >= 0; --i) {
6433 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
6434 isl_val_copy(v));
6435 map = remove_if_empty(map, i);
6436 if (!map)
6437 goto error;
6439 map = isl_map_unmark_normalized(map);
6440 isl_val_free(v);
6441 return map;
6442 error:
6443 isl_map_free(map);
6444 isl_val_free(v);
6445 return NULL;
6448 /* Fix the value of the variable at position "pos" of type "type" of "set"
6449 * to be equal to "v".
6451 __isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
6452 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6454 return isl_map_fix_val(set, type, pos, v);
6457 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
6458 unsigned input, int value)
6460 return isl_map_fix_si(map, isl_dim_in, input, value);
6463 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
6465 return set_from_map(isl_map_fix_si(set_to_map(set),
6466 isl_dim_set, dim, value));
6469 static __isl_give isl_basic_map *basic_map_bound_si(
6470 __isl_take isl_basic_map *bmap,
6471 enum isl_dim_type type, unsigned pos, int value, int upper)
6473 int j;
6475 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6476 return isl_basic_map_free(bmap);
6477 pos += isl_basic_map_offset(bmap, type);
6478 bmap = isl_basic_map_cow(bmap);
6479 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6480 j = isl_basic_map_alloc_inequality(bmap);
6481 if (j < 0)
6482 goto error;
6483 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6484 if (upper) {
6485 isl_int_set_si(bmap->ineq[j][pos], -1);
6486 isl_int_set_si(bmap->ineq[j][0], value);
6487 } else {
6488 isl_int_set_si(bmap->ineq[j][pos], 1);
6489 isl_int_set_si(bmap->ineq[j][0], -value);
6491 bmap = isl_basic_map_simplify(bmap);
6492 return isl_basic_map_finalize(bmap);
6493 error:
6494 isl_basic_map_free(bmap);
6495 return NULL;
6498 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
6499 __isl_take isl_basic_map *bmap,
6500 enum isl_dim_type type, unsigned pos, int value)
6502 return basic_map_bound_si(bmap, type, pos, value, 0);
6505 /* Constrain the values of the given dimension to be no greater than "value".
6507 __isl_give isl_basic_map *isl_basic_map_upper_bound_si(
6508 __isl_take isl_basic_map *bmap,
6509 enum isl_dim_type type, unsigned pos, int value)
6511 return basic_map_bound_si(bmap, type, pos, value, 1);
6514 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
6515 enum isl_dim_type type, unsigned pos, int value, int upper)
6517 int i;
6519 map = isl_map_cow(map);
6520 if (!map)
6521 return NULL;
6523 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6524 for (i = 0; i < map->n; ++i) {
6525 map->p[i] = basic_map_bound_si(map->p[i],
6526 type, pos, value, upper);
6527 if (!map->p[i])
6528 goto error;
6530 map = isl_map_unmark_normalized(map);
6531 return map;
6532 error:
6533 isl_map_free(map);
6534 return NULL;
6537 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
6538 enum isl_dim_type type, unsigned pos, int value)
6540 return map_bound_si(map, type, pos, value, 0);
6543 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
6544 enum isl_dim_type type, unsigned pos, int value)
6546 return map_bound_si(map, type, pos, value, 1);
6549 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
6550 enum isl_dim_type type, unsigned pos, int value)
6552 return set_from_map(isl_map_lower_bound_si(set_to_map(set),
6553 type, pos, value));
6556 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
6557 enum isl_dim_type type, unsigned pos, int value)
6559 return isl_map_upper_bound_si(set, type, pos, value);
6562 /* Bound the given variable of "bmap" from below (or above is "upper"
6563 * is set) to "value".
6565 static __isl_give isl_basic_map *basic_map_bound(
6566 __isl_take isl_basic_map *bmap,
6567 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6569 int j;
6571 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6572 return isl_basic_map_free(bmap);
6573 pos += isl_basic_map_offset(bmap, type);
6574 bmap = isl_basic_map_cow(bmap);
6575 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6576 j = isl_basic_map_alloc_inequality(bmap);
6577 if (j < 0)
6578 goto error;
6579 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6580 if (upper) {
6581 isl_int_set_si(bmap->ineq[j][pos], -1);
6582 isl_int_set(bmap->ineq[j][0], value);
6583 } else {
6584 isl_int_set_si(bmap->ineq[j][pos], 1);
6585 isl_int_neg(bmap->ineq[j][0], value);
6587 bmap = isl_basic_map_simplify(bmap);
6588 return isl_basic_map_finalize(bmap);
6589 error:
6590 isl_basic_map_free(bmap);
6591 return NULL;
6594 /* Bound the given variable of "map" from below (or above is "upper"
6595 * is set) to "value".
6597 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
6598 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6600 int i;
6602 map = isl_map_cow(map);
6603 if (!map)
6604 return NULL;
6606 if (pos >= isl_map_dim(map, type))
6607 isl_die(map->ctx, isl_error_invalid,
6608 "index out of bounds", goto error);
6609 for (i = map->n - 1; i >= 0; --i) {
6610 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
6611 map = remove_if_empty(map, i);
6612 if (!map)
6613 return NULL;
6615 map = isl_map_unmark_normalized(map);
6616 return map;
6617 error:
6618 isl_map_free(map);
6619 return NULL;
6622 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
6623 enum isl_dim_type type, unsigned pos, isl_int value)
6625 return map_bound(map, type, pos, value, 0);
6628 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
6629 enum isl_dim_type type, unsigned pos, isl_int value)
6631 return map_bound(map, type, pos, value, 1);
6634 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
6635 enum isl_dim_type type, unsigned pos, isl_int value)
6637 return isl_map_lower_bound(set, type, pos, value);
6640 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
6641 enum isl_dim_type type, unsigned pos, isl_int value)
6643 return isl_map_upper_bound(set, type, pos, value);
6646 /* Force the values of the variable at position "pos" of type "type" of "set"
6647 * to be no smaller than "value".
6649 __isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
6650 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6652 if (!value)
6653 goto error;
6654 if (!isl_val_is_int(value))
6655 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6656 "expecting integer value", goto error);
6657 set = isl_set_lower_bound(set, type, pos, value->n);
6658 isl_val_free(value);
6659 return set;
6660 error:
6661 isl_val_free(value);
6662 isl_set_free(set);
6663 return NULL;
6666 /* Force the values of the variable at position "pos" of type "type" of "set"
6667 * to be no greater than "value".
6669 __isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
6670 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6672 if (!value)
6673 goto error;
6674 if (!isl_val_is_int(value))
6675 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6676 "expecting integer value", goto error);
6677 set = isl_set_upper_bound(set, type, pos, value->n);
6678 isl_val_free(value);
6679 return set;
6680 error:
6681 isl_val_free(value);
6682 isl_set_free(set);
6683 return NULL;
6686 /* Bound the given variable of "bset" from below (or above is "upper"
6687 * is set) to "value".
6689 static __isl_give isl_basic_set *isl_basic_set_bound(
6690 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6691 isl_int value, int upper)
6693 return bset_from_bmap(basic_map_bound(bset_to_bmap(bset),
6694 type, pos, value, upper));
6697 /* Bound the given variable of "bset" from below (or above is "upper"
6698 * is set) to "value".
6700 static __isl_give isl_basic_set *isl_basic_set_bound_val(
6701 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6702 __isl_take isl_val *value, int upper)
6704 if (!value)
6705 goto error;
6706 if (!isl_val_is_int(value))
6707 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
6708 "expecting integer value", goto error);
6709 bset = isl_basic_set_bound(bset, type, pos, value->n, upper);
6710 isl_val_free(value);
6711 return bset;
6712 error:
6713 isl_val_free(value);
6714 isl_basic_set_free(bset);
6715 return NULL;
6718 /* Bound the given variable of "bset" from below to "value".
6720 __isl_give isl_basic_set *isl_basic_set_lower_bound_val(
6721 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6722 __isl_take isl_val *value)
6724 return isl_basic_set_bound_val(bset, type, pos, value, 0);
6727 /* Bound the given variable of "bset" from above to "value".
6729 __isl_give isl_basic_set *isl_basic_set_upper_bound_val(
6730 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6731 __isl_take isl_val *value)
6733 return isl_basic_set_bound_val(bset, type, pos, value, 1);
6736 __isl_give isl_map *isl_map_reverse(__isl_take isl_map *map)
6738 int i;
6740 map = isl_map_cow(map);
6741 if (!map)
6742 return NULL;
6744 map->dim = isl_space_reverse(map->dim);
6745 if (!map->dim)
6746 goto error;
6747 for (i = 0; i < map->n; ++i) {
6748 map->p[i] = isl_basic_map_reverse(map->p[i]);
6749 if (!map->p[i])
6750 goto error;
6752 map = isl_map_unmark_normalized(map);
6753 return map;
6754 error:
6755 isl_map_free(map);
6756 return NULL;
6759 #undef TYPE
6760 #define TYPE isl_pw_multi_aff
6761 #undef SUFFIX
6762 #define SUFFIX _pw_multi_aff
6763 #undef EMPTY
6764 #define EMPTY isl_pw_multi_aff_empty
6765 #undef ADD
6766 #define ADD isl_pw_multi_aff_union_add
6767 #include "isl_map_lexopt_templ.c"
6769 /* Given a map "map", compute the lexicographically minimal
6770 * (or maximal) image element for each domain element in dom,
6771 * in the form of an isl_pw_multi_aff.
6772 * If "empty" is not NULL, then set *empty to those elements in dom that
6773 * do not have an image element.
6774 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6775 * should be computed over the domain of "map". "empty" is also NULL
6776 * in this case.
6778 * We first compute the lexicographically minimal or maximal element
6779 * in the first basic map. This results in a partial solution "res"
6780 * and a subset "todo" of dom that still need to be handled.
6781 * We then consider each of the remaining maps in "map" and successively
6782 * update both "res" and "todo".
6783 * If "empty" is NULL, then the todo sets are not needed and therefore
6784 * also not computed.
6786 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
6787 __isl_take isl_map *map, __isl_take isl_set *dom,
6788 __isl_give isl_set **empty, unsigned flags)
6790 int i;
6791 int full;
6792 isl_pw_multi_aff *res;
6793 isl_set *todo;
6795 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6796 if (!map || (!full && !dom))
6797 goto error;
6799 if (isl_map_plain_is_empty(map)) {
6800 if (empty)
6801 *empty = dom;
6802 else
6803 isl_set_free(dom);
6804 return isl_pw_multi_aff_from_map(map);
6807 res = basic_map_partial_lexopt_pw_multi_aff(
6808 isl_basic_map_copy(map->p[0]),
6809 isl_set_copy(dom), empty, flags);
6811 if (empty)
6812 todo = *empty;
6813 for (i = 1; i < map->n; ++i) {
6814 isl_pw_multi_aff *res_i;
6816 res_i = basic_map_partial_lexopt_pw_multi_aff(
6817 isl_basic_map_copy(map->p[i]),
6818 isl_set_copy(dom), empty, flags);
6820 if (ISL_FL_ISSET(flags, ISL_OPT_MAX))
6821 res = isl_pw_multi_aff_union_lexmax(res, res_i);
6822 else
6823 res = isl_pw_multi_aff_union_lexmin(res, res_i);
6825 if (empty)
6826 todo = isl_set_intersect(todo, *empty);
6829 isl_set_free(dom);
6830 isl_map_free(map);
6832 if (empty)
6833 *empty = todo;
6835 return res;
6836 error:
6837 if (empty)
6838 *empty = NULL;
6839 isl_set_free(dom);
6840 isl_map_free(map);
6841 return NULL;
6844 #undef TYPE
6845 #define TYPE isl_map
6846 #undef SUFFIX
6847 #define SUFFIX
6848 #undef EMPTY
6849 #define EMPTY isl_map_empty
6850 #undef ADD
6851 #define ADD isl_map_union_disjoint
6852 #include "isl_map_lexopt_templ.c"
6854 /* Given a map "map", compute the lexicographically minimal
6855 * (or maximal) image element for each domain element in "dom",
6856 * in the form of an isl_map.
6857 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6858 * do not have an image element.
6859 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6860 * should be computed over the domain of "map". "empty" is also NULL
6861 * in this case.
6863 * If the input consists of more than one disjunct, then first
6864 * compute the desired result in the form of an isl_pw_multi_aff and
6865 * then convert that into an isl_map.
6867 * This function used to have an explicit implementation in terms
6868 * of isl_maps, but it would continually intersect the domains of
6869 * partial results with the complement of the domain of the next
6870 * partial solution, potentially leading to an explosion in the number
6871 * of disjuncts if there are several disjuncts in the input.
6872 * An even earlier implementation of this function would look for
6873 * better results in the domain of the partial result and for extra
6874 * results in the complement of this domain, which would lead to
6875 * even more splintering.
6877 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
6878 __isl_take isl_map *map, __isl_take isl_set *dom,
6879 __isl_give isl_set **empty, unsigned flags)
6881 int full;
6882 struct isl_map *res;
6883 isl_pw_multi_aff *pma;
6885 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6886 if (!map || (!full && !dom))
6887 goto error;
6889 if (isl_map_plain_is_empty(map)) {
6890 if (empty)
6891 *empty = dom;
6892 else
6893 isl_set_free(dom);
6894 return map;
6897 if (map->n == 1) {
6898 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
6899 dom, empty, flags);
6900 isl_map_free(map);
6901 return res;
6904 pma = isl_map_partial_lexopt_aligned_pw_multi_aff(map, dom, empty,
6905 flags);
6906 return isl_map_from_pw_multi_aff(pma);
6907 error:
6908 if (empty)
6909 *empty = NULL;
6910 isl_set_free(dom);
6911 isl_map_free(map);
6912 return NULL;
6915 __isl_give isl_map *isl_map_partial_lexmax(
6916 __isl_take isl_map *map, __isl_take isl_set *dom,
6917 __isl_give isl_set **empty)
6919 return isl_map_partial_lexopt(map, dom, empty, ISL_OPT_MAX);
6922 __isl_give isl_map *isl_map_partial_lexmin(
6923 __isl_take isl_map *map, __isl_take isl_set *dom,
6924 __isl_give isl_set **empty)
6926 return isl_map_partial_lexopt(map, dom, empty, 0);
6929 __isl_give isl_set *isl_set_partial_lexmin(
6930 __isl_take isl_set *set, __isl_take isl_set *dom,
6931 __isl_give isl_set **empty)
6933 return set_from_map(isl_map_partial_lexmin(set_to_map(set),
6934 dom, empty));
6937 __isl_give isl_set *isl_set_partial_lexmax(
6938 __isl_take isl_set *set, __isl_take isl_set *dom,
6939 __isl_give isl_set **empty)
6941 return set_from_map(isl_map_partial_lexmax(set_to_map(set),
6942 dom, empty));
6945 /* Compute the lexicographic minimum (or maximum if "flags" includes
6946 * ISL_OPT_MAX) of "bset" over its parametric domain.
6948 __isl_give isl_set *isl_basic_set_lexopt(__isl_take isl_basic_set *bset,
6949 unsigned flags)
6951 return isl_basic_map_lexopt(bset, flags);
6954 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
6956 return isl_basic_map_lexopt(bmap, ISL_OPT_MAX);
6959 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
6961 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset)));
6964 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
6966 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset)));
6969 /* Compute the lexicographic minimum of "bset" over its parametric domain
6970 * for the purpose of quantifier elimination.
6971 * That is, find an explicit representation for all the existentially
6972 * quantified variables in "bset" by computing their lexicographic
6973 * minimum.
6975 static __isl_give isl_set *isl_basic_set_lexmin_compute_divs(
6976 __isl_take isl_basic_set *bset)
6978 return isl_basic_set_lexopt(bset, ISL_OPT_QE);
6981 /* Given a basic map with one output dimension, compute the minimum or
6982 * maximum of that dimension as an isl_pw_aff.
6984 * Compute the optimum as a lexicographic optimum over the single
6985 * output dimension and extract the single isl_pw_aff from the result.
6987 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
6988 int max)
6990 isl_pw_multi_aff *pma;
6991 isl_pw_aff *pwaff;
6993 bmap = isl_basic_map_copy(bmap);
6994 pma = isl_basic_map_lexopt_pw_multi_aff(bmap, max ? ISL_OPT_MAX : 0);
6995 pwaff = isl_pw_multi_aff_get_pw_aff(pma, 0);
6996 isl_pw_multi_aff_free(pma);
6998 return pwaff;
7001 /* Compute the minimum or maximum of the given output dimension
7002 * as a function of the parameters and the input dimensions,
7003 * but independently of the other output dimensions.
7005 * We first project out the other output dimension and then compute
7006 * the "lexicographic" maximum in each basic map, combining the results
7007 * using isl_pw_aff_union_max.
7009 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
7010 int max)
7012 int i;
7013 isl_pw_aff *pwaff;
7014 unsigned n_out;
7016 n_out = isl_map_dim(map, isl_dim_out);
7017 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
7018 map = isl_map_project_out(map, isl_dim_out, 0, pos);
7019 if (!map)
7020 return NULL;
7022 if (map->n == 0) {
7023 isl_space *space = isl_map_get_space(map);
7024 isl_map_free(map);
7025 return isl_pw_aff_empty(space);
7028 pwaff = basic_map_dim_opt(map->p[0], max);
7029 for (i = 1; i < map->n; ++i) {
7030 isl_pw_aff *pwaff_i;
7032 pwaff_i = basic_map_dim_opt(map->p[i], max);
7033 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
7036 isl_map_free(map);
7038 return pwaff;
7041 /* Compute the minimum of the given output dimension as a function of the
7042 * parameters and input dimensions, but independently of
7043 * the other output dimensions.
7045 __isl_give isl_pw_aff *isl_map_dim_min(__isl_take isl_map *map, int pos)
7047 return map_dim_opt(map, pos, 0);
7050 /* Compute the maximum of the given output dimension as a function of the
7051 * parameters and input dimensions, but independently of
7052 * the other output dimensions.
7054 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
7056 return map_dim_opt(map, pos, 1);
7059 /* Compute the minimum or maximum of the given set dimension
7060 * as a function of the parameters,
7061 * but independently of the other set dimensions.
7063 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
7064 int max)
7066 return map_dim_opt(set, pos, max);
7069 /* Compute the maximum of the given set dimension as a function of the
7070 * parameters, but independently of the other set dimensions.
7072 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
7074 return set_dim_opt(set, pos, 1);
7077 /* Compute the minimum of the given set dimension as a function of the
7078 * parameters, but independently of the other set dimensions.
7080 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
7082 return set_dim_opt(set, pos, 0);
7085 /* Apply a preimage specified by "mat" on the parameters of "bset".
7086 * bset is assumed to have only parameters and divs.
7088 static __isl_give isl_basic_set *basic_set_parameter_preimage(
7089 __isl_take isl_basic_set *bset, __isl_take isl_mat *mat)
7091 unsigned nparam;
7093 if (!bset || !mat)
7094 goto error;
7096 bset->dim = isl_space_cow(bset->dim);
7097 if (!bset->dim)
7098 goto error;
7100 nparam = isl_basic_set_dim(bset, isl_dim_param);
7102 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
7104 bset->dim->nparam = 0;
7105 bset->dim->n_out = nparam;
7106 bset = isl_basic_set_preimage(bset, mat);
7107 if (bset) {
7108 bset->dim->nparam = bset->dim->n_out;
7109 bset->dim->n_out = 0;
7111 return bset;
7112 error:
7113 isl_mat_free(mat);
7114 isl_basic_set_free(bset);
7115 return NULL;
7118 /* Apply a preimage specified by "mat" on the parameters of "set".
7119 * set is assumed to have only parameters and divs.
7121 static __isl_give isl_set *set_parameter_preimage(__isl_take isl_set *set,
7122 __isl_take isl_mat *mat)
7124 isl_space *space;
7125 unsigned nparam;
7127 if (!set || !mat)
7128 goto error;
7130 nparam = isl_set_dim(set, isl_dim_param);
7132 if (mat->n_row != 1 + nparam)
7133 isl_die(isl_set_get_ctx(set), isl_error_internal,
7134 "unexpected number of rows", goto error);
7136 space = isl_set_get_space(set);
7137 space = isl_space_move_dims(space, isl_dim_set, 0,
7138 isl_dim_param, 0, nparam);
7139 set = isl_set_reset_space(set, space);
7140 set = isl_set_preimage(set, mat);
7141 nparam = isl_set_dim(set, isl_dim_out);
7142 space = isl_set_get_space(set);
7143 space = isl_space_move_dims(space, isl_dim_param, 0,
7144 isl_dim_out, 0, nparam);
7145 set = isl_set_reset_space(set, space);
7146 return set;
7147 error:
7148 isl_mat_free(mat);
7149 isl_set_free(set);
7150 return NULL;
7153 /* Intersect the basic set "bset" with the affine space specified by the
7154 * equalities in "eq".
7156 static __isl_give isl_basic_set *basic_set_append_equalities(
7157 __isl_take isl_basic_set *bset, __isl_take isl_mat *eq)
7159 int i, k;
7160 unsigned len;
7162 if (!bset || !eq)
7163 goto error;
7165 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
7166 eq->n_row, 0);
7167 if (!bset)
7168 goto error;
7170 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
7171 for (i = 0; i < eq->n_row; ++i) {
7172 k = isl_basic_set_alloc_equality(bset);
7173 if (k < 0)
7174 goto error;
7175 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
7176 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
7178 isl_mat_free(eq);
7180 bset = isl_basic_set_gauss(bset, NULL);
7181 bset = isl_basic_set_finalize(bset);
7183 return bset;
7184 error:
7185 isl_mat_free(eq);
7186 isl_basic_set_free(bset);
7187 return NULL;
7190 /* Intersect the set "set" with the affine space specified by the
7191 * equalities in "eq".
7193 static struct isl_set *set_append_equalities(struct isl_set *set,
7194 struct isl_mat *eq)
7196 int i;
7198 if (!set || !eq)
7199 goto error;
7201 for (i = 0; i < set->n; ++i) {
7202 set->p[i] = basic_set_append_equalities(set->p[i],
7203 isl_mat_copy(eq));
7204 if (!set->p[i])
7205 goto error;
7207 isl_mat_free(eq);
7208 return set;
7209 error:
7210 isl_mat_free(eq);
7211 isl_set_free(set);
7212 return NULL;
7215 /* Given a basic set "bset" that only involves parameters and existentially
7216 * quantified variables, return the index of the first equality
7217 * that only involves parameters. If there is no such equality then
7218 * return bset->n_eq.
7220 * This function assumes that isl_basic_set_gauss has been called on "bset".
7222 static int first_parameter_equality(__isl_keep isl_basic_set *bset)
7224 int i, j;
7225 unsigned nparam, n_div;
7227 if (!bset)
7228 return -1;
7230 nparam = isl_basic_set_dim(bset, isl_dim_param);
7231 n_div = isl_basic_set_dim(bset, isl_dim_div);
7233 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
7234 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
7235 ++i;
7238 return i;
7241 /* Compute an explicit representation for the existentially quantified
7242 * variables in "bset" by computing the "minimal value" of the set
7243 * variables. Since there are no set variables, the computation of
7244 * the minimal value essentially computes an explicit representation
7245 * of the non-empty part(s) of "bset".
7247 * The input only involves parameters and existentially quantified variables.
7248 * All equalities among parameters have been removed.
7250 * Since the existentially quantified variables in the result are in general
7251 * going to be different from those in the input, we first replace
7252 * them by the minimal number of variables based on their equalities.
7253 * This should simplify the parametric integer programming.
7255 static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
7257 isl_morph *morph1, *morph2;
7258 isl_set *set;
7259 unsigned n;
7261 if (!bset)
7262 return NULL;
7263 if (bset->n_eq == 0)
7264 return isl_basic_set_lexmin_compute_divs(bset);
7266 morph1 = isl_basic_set_parameter_compression(bset);
7267 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
7268 bset = isl_basic_set_lift(bset);
7269 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
7270 bset = isl_morph_basic_set(morph2, bset);
7271 n = isl_basic_set_dim(bset, isl_dim_set);
7272 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
7274 set = isl_basic_set_lexmin_compute_divs(bset);
7276 set = isl_morph_set(isl_morph_inverse(morph1), set);
7278 return set;
7281 /* Project the given basic set onto its parameter domain, possibly introducing
7282 * new, explicit, existential variables in the constraints.
7283 * The input has parameters and (possibly implicit) existential variables.
7284 * The output has the same parameters, but only
7285 * explicit existentially quantified variables.
7287 * The actual projection is performed by pip, but pip doesn't seem
7288 * to like equalities very much, so we first remove the equalities
7289 * among the parameters by performing a variable compression on
7290 * the parameters. Afterward, an inverse transformation is performed
7291 * and the equalities among the parameters are inserted back in.
7293 * The variable compression on the parameters may uncover additional
7294 * equalities that were only implicit before. We therefore check
7295 * if there are any new parameter equalities in the result and
7296 * if so recurse. The removal of parameter equalities is required
7297 * for the parameter compression performed by base_compute_divs.
7299 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
7301 int i;
7302 struct isl_mat *eq;
7303 struct isl_mat *T, *T2;
7304 struct isl_set *set;
7305 unsigned nparam;
7307 bset = isl_basic_set_cow(bset);
7308 if (!bset)
7309 return NULL;
7311 if (bset->n_eq == 0)
7312 return base_compute_divs(bset);
7314 bset = isl_basic_set_gauss(bset, NULL);
7315 if (!bset)
7316 return NULL;
7317 if (isl_basic_set_plain_is_empty(bset))
7318 return isl_set_from_basic_set(bset);
7320 i = first_parameter_equality(bset);
7321 if (i == bset->n_eq)
7322 return base_compute_divs(bset);
7324 nparam = isl_basic_set_dim(bset, isl_dim_param);
7325 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
7326 0, 1 + nparam);
7327 eq = isl_mat_cow(eq);
7328 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
7329 if (T && T->n_col == 0) {
7330 isl_mat_free(T);
7331 isl_mat_free(T2);
7332 isl_mat_free(eq);
7333 bset = isl_basic_set_set_to_empty(bset);
7334 return isl_set_from_basic_set(bset);
7336 bset = basic_set_parameter_preimage(bset, T);
7338 i = first_parameter_equality(bset);
7339 if (!bset)
7340 set = NULL;
7341 else if (i == bset->n_eq)
7342 set = base_compute_divs(bset);
7343 else
7344 set = parameter_compute_divs(bset);
7345 set = set_parameter_preimage(set, T2);
7346 set = set_append_equalities(set, eq);
7347 return set;
7350 /* Insert the divs from "ls" before those of "bmap".
7352 * The number of columns is not changed, which means that the last
7353 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7354 * The caller is responsible for removing the same number of dimensions
7355 * from the space of "bmap".
7357 static __isl_give isl_basic_map *insert_divs_from_local_space(
7358 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
7360 int i;
7361 int n_div;
7362 int old_n_div;
7364 n_div = isl_local_space_dim(ls, isl_dim_div);
7365 if (n_div == 0)
7366 return bmap;
7368 old_n_div = bmap->n_div;
7369 bmap = insert_div_rows(bmap, n_div);
7370 if (!bmap)
7371 return NULL;
7373 for (i = 0; i < n_div; ++i) {
7374 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
7375 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
7378 return bmap;
7381 /* Replace the space of "bmap" by the space and divs of "ls".
7383 * If "ls" has any divs, then we simplify the result since we may
7384 * have discovered some additional equalities that could simplify
7385 * the div expressions.
7387 static __isl_give isl_basic_map *basic_replace_space_by_local_space(
7388 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
7390 int n_div;
7392 bmap = isl_basic_map_cow(bmap);
7393 if (!bmap || !ls)
7394 goto error;
7396 n_div = isl_local_space_dim(ls, isl_dim_div);
7397 bmap = insert_divs_from_local_space(bmap, ls);
7398 if (!bmap)
7399 goto error;
7401 isl_space_free(bmap->dim);
7402 bmap->dim = isl_local_space_get_space(ls);
7403 if (!bmap->dim)
7404 goto error;
7406 isl_local_space_free(ls);
7407 if (n_div > 0)
7408 bmap = isl_basic_map_simplify(bmap);
7409 bmap = isl_basic_map_finalize(bmap);
7410 return bmap;
7411 error:
7412 isl_basic_map_free(bmap);
7413 isl_local_space_free(ls);
7414 return NULL;
7417 /* Replace the space of "map" by the space and divs of "ls".
7419 static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
7420 __isl_take isl_local_space *ls)
7422 int i;
7424 map = isl_map_cow(map);
7425 if (!map || !ls)
7426 goto error;
7428 for (i = 0; i < map->n; ++i) {
7429 map->p[i] = basic_replace_space_by_local_space(map->p[i],
7430 isl_local_space_copy(ls));
7431 if (!map->p[i])
7432 goto error;
7434 isl_space_free(map->dim);
7435 map->dim = isl_local_space_get_space(ls);
7436 if (!map->dim)
7437 goto error;
7439 isl_local_space_free(ls);
7440 return map;
7441 error:
7442 isl_local_space_free(ls);
7443 isl_map_free(map);
7444 return NULL;
7447 /* Compute an explicit representation for the existentially
7448 * quantified variables for which do not know any explicit representation yet.
7450 * We first sort the existentially quantified variables so that the
7451 * existentially quantified variables for which we already have an explicit
7452 * representation are placed before those for which we do not.
7453 * The input dimensions, the output dimensions and the existentially
7454 * quantified variables for which we already have an explicit
7455 * representation are then turned into parameters.
7456 * compute_divs returns a map with the same parameters and
7457 * no input or output dimensions and the dimension specification
7458 * is reset to that of the input, including the existentially quantified
7459 * variables for which we already had an explicit representation.
7461 static __isl_give isl_map *compute_divs(__isl_take isl_basic_map *bmap)
7463 struct isl_basic_set *bset;
7464 struct isl_set *set;
7465 struct isl_map *map;
7466 isl_space *space;
7467 isl_local_space *ls;
7468 unsigned nparam;
7469 unsigned n_in;
7470 unsigned n_out;
7471 int n_known;
7472 int i;
7474 bmap = isl_basic_map_sort_divs(bmap);
7475 bmap = isl_basic_map_cow(bmap);
7476 if (!bmap)
7477 return NULL;
7479 n_known = isl_basic_map_first_unknown_div(bmap);
7480 if (n_known < 0)
7481 return isl_map_from_basic_map(isl_basic_map_free(bmap));
7483 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7484 n_in = isl_basic_map_dim(bmap, isl_dim_in);
7485 n_out = isl_basic_map_dim(bmap, isl_dim_out);
7486 space = isl_space_set_alloc(bmap->ctx,
7487 nparam + n_in + n_out + n_known, 0);
7488 if (!space)
7489 goto error;
7491 ls = isl_basic_map_get_local_space(bmap);
7492 ls = isl_local_space_drop_dims(ls, isl_dim_div,
7493 n_known, bmap->n_div - n_known);
7494 if (n_known > 0) {
7495 for (i = n_known; i < bmap->n_div; ++i)
7496 swap_div(bmap, i - n_known, i);
7497 bmap->n_div -= n_known;
7498 bmap->extra -= n_known;
7500 bmap = isl_basic_map_reset_space(bmap, space);
7501 bset = bset_from_bmap(bmap);
7503 set = parameter_compute_divs(bset);
7504 map = set_to_map(set);
7505 map = replace_space_by_local_space(map, ls);
7507 return map;
7508 error:
7509 isl_basic_map_free(bmap);
7510 return NULL;
7513 /* Remove the explicit representation of local variable "div",
7514 * if there is any.
7516 __isl_give isl_basic_map *isl_basic_map_mark_div_unknown(
7517 __isl_take isl_basic_map *bmap, int div)
7519 isl_bool unknown;
7521 unknown = isl_basic_map_div_is_marked_unknown(bmap, div);
7522 if (unknown < 0)
7523 return isl_basic_map_free(bmap);
7524 if (unknown)
7525 return bmap;
7527 bmap = isl_basic_map_cow(bmap);
7528 if (!bmap)
7529 return NULL;
7530 isl_int_set_si(bmap->div[div][0], 0);
7531 return bmap;
7534 /* Is local variable "div" of "bmap" marked as not having an explicit
7535 * representation?
7536 * Note that even if "div" is not marked in this way and therefore
7537 * has an explicit representation, this representation may still
7538 * depend (indirectly) on other local variables that do not
7539 * have an explicit representation.
7541 isl_bool isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map *bmap,
7542 int div)
7544 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
7545 return isl_bool_error;
7546 return isl_int_is_zero(bmap->div[div][0]);
7549 /* Return the position of the first local variable that does not
7550 * have an explicit representation.
7551 * Return the total number of local variables if they all have
7552 * an explicit representation.
7553 * Return -1 on error.
7555 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map *bmap)
7557 int i;
7559 if (!bmap)
7560 return -1;
7562 for (i = 0; i < bmap->n_div; ++i) {
7563 if (!isl_basic_map_div_is_known(bmap, i))
7564 return i;
7566 return bmap->n_div;
7569 /* Return the position of the first local variable that does not
7570 * have an explicit representation.
7571 * Return the total number of local variables if they all have
7572 * an explicit representation.
7573 * Return -1 on error.
7575 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set *bset)
7577 return isl_basic_map_first_unknown_div(bset);
7580 /* Does "bmap" have an explicit representation for all local variables?
7582 isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
7584 int first, n;
7586 n = isl_basic_map_dim(bmap, isl_dim_div);
7587 first = isl_basic_map_first_unknown_div(bmap);
7588 if (first < 0)
7589 return isl_bool_error;
7590 return first == n;
7593 /* Do all basic maps in "map" have an explicit representation
7594 * for all local variables?
7596 isl_bool isl_map_divs_known(__isl_keep isl_map *map)
7598 int i;
7600 if (!map)
7601 return isl_bool_error;
7603 for (i = 0; i < map->n; ++i) {
7604 int known = isl_basic_map_divs_known(map->p[i]);
7605 if (known <= 0)
7606 return known;
7609 return isl_bool_true;
7612 /* If bmap contains any unknown divs, then compute explicit
7613 * expressions for them. However, this computation may be
7614 * quite expensive, so first try to remove divs that aren't
7615 * strictly needed.
7617 __isl_give isl_map *isl_basic_map_compute_divs(__isl_take isl_basic_map *bmap)
7619 int known;
7620 struct isl_map *map;
7622 known = isl_basic_map_divs_known(bmap);
7623 if (known < 0)
7624 goto error;
7625 if (known)
7626 return isl_map_from_basic_map(bmap);
7628 bmap = isl_basic_map_drop_redundant_divs(bmap);
7630 known = isl_basic_map_divs_known(bmap);
7631 if (known < 0)
7632 goto error;
7633 if (known)
7634 return isl_map_from_basic_map(bmap);
7636 map = compute_divs(bmap);
7637 return map;
7638 error:
7639 isl_basic_map_free(bmap);
7640 return NULL;
7643 __isl_give isl_map *isl_map_compute_divs(__isl_take isl_map *map)
7645 int i;
7646 int known;
7647 struct isl_map *res;
7649 if (!map)
7650 return NULL;
7651 if (map->n == 0)
7652 return map;
7654 known = isl_map_divs_known(map);
7655 if (known < 0) {
7656 isl_map_free(map);
7657 return NULL;
7659 if (known)
7660 return map;
7662 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
7663 for (i = 1 ; i < map->n; ++i) {
7664 struct isl_map *r2;
7665 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
7666 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
7667 res = isl_map_union_disjoint(res, r2);
7668 else
7669 res = isl_map_union(res, r2);
7671 isl_map_free(map);
7673 return res;
7676 __isl_give isl_set *isl_basic_set_compute_divs(__isl_take isl_basic_set *bset)
7678 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset)));
7681 struct isl_set *isl_set_compute_divs(struct isl_set *set)
7683 return set_from_map(isl_map_compute_divs(set_to_map(set)));
7686 __isl_give isl_set *isl_map_domain(__isl_take isl_map *map)
7688 int i;
7689 struct isl_set *set;
7691 if (!map)
7692 goto error;
7694 map = isl_map_cow(map);
7695 if (!map)
7696 return NULL;
7698 set = set_from_map(map);
7699 set->dim = isl_space_domain(set->dim);
7700 if (!set->dim)
7701 goto error;
7702 for (i = 0; i < map->n; ++i) {
7703 set->p[i] = isl_basic_map_domain(map->p[i]);
7704 if (!set->p[i])
7705 goto error;
7707 ISL_F_CLR(set, ISL_MAP_DISJOINT);
7708 ISL_F_CLR(set, ISL_SET_NORMALIZED);
7709 return set;
7710 error:
7711 isl_map_free(map);
7712 return NULL;
7715 /* Return the union of "map1" and "map2", where we assume for now that
7716 * "map1" and "map2" are disjoint. Note that the basic maps inside
7717 * "map1" or "map2" may not be disjoint from each other.
7718 * Also note that this function is also called from isl_map_union,
7719 * which takes care of handling the situation where "map1" and "map2"
7720 * may not be disjoint.
7722 * If one of the inputs is empty, we can simply return the other input.
7723 * Similarly, if one of the inputs is universal, then it is equal to the union.
7725 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
7726 __isl_take isl_map *map2)
7728 int i;
7729 unsigned flags = 0;
7730 struct isl_map *map = NULL;
7731 int is_universe;
7733 if (!map1 || !map2)
7734 goto error;
7736 if (!isl_space_is_equal(map1->dim, map2->dim))
7737 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
7738 "spaces don't match", goto error);
7740 if (map1->n == 0) {
7741 isl_map_free(map1);
7742 return map2;
7744 if (map2->n == 0) {
7745 isl_map_free(map2);
7746 return map1;
7749 is_universe = isl_map_plain_is_universe(map1);
7750 if (is_universe < 0)
7751 goto error;
7752 if (is_universe) {
7753 isl_map_free(map2);
7754 return map1;
7757 is_universe = isl_map_plain_is_universe(map2);
7758 if (is_universe < 0)
7759 goto error;
7760 if (is_universe) {
7761 isl_map_free(map1);
7762 return map2;
7765 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
7766 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
7767 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7769 map = isl_map_alloc_space(isl_space_copy(map1->dim),
7770 map1->n + map2->n, flags);
7771 if (!map)
7772 goto error;
7773 for (i = 0; i < map1->n; ++i) {
7774 map = isl_map_add_basic_map(map,
7775 isl_basic_map_copy(map1->p[i]));
7776 if (!map)
7777 goto error;
7779 for (i = 0; i < map2->n; ++i) {
7780 map = isl_map_add_basic_map(map,
7781 isl_basic_map_copy(map2->p[i]));
7782 if (!map)
7783 goto error;
7785 isl_map_free(map1);
7786 isl_map_free(map2);
7787 return map;
7788 error:
7789 isl_map_free(map);
7790 isl_map_free(map1);
7791 isl_map_free(map2);
7792 return NULL;
7795 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7796 * guaranteed to be disjoint by the caller.
7798 * Note that this functions is called from within isl_map_make_disjoint,
7799 * so we have to be careful not to touch the constraints of the inputs
7800 * in any way.
7802 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
7803 __isl_take isl_map *map2)
7805 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
7808 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7809 * not be disjoint. The parameters are assumed to have been aligned.
7811 * We currently simply call map_union_disjoint, the internal operation
7812 * of which does not really depend on the inputs being disjoint.
7813 * If the result contains more than one basic map, then we clear
7814 * the disjoint flag since the result may contain basic maps from
7815 * both inputs and these are not guaranteed to be disjoint.
7817 * As a special case, if "map1" and "map2" are obviously equal,
7818 * then we simply return "map1".
7820 static __isl_give isl_map *map_union_aligned(__isl_take isl_map *map1,
7821 __isl_take isl_map *map2)
7823 int equal;
7825 if (!map1 || !map2)
7826 goto error;
7828 equal = isl_map_plain_is_equal(map1, map2);
7829 if (equal < 0)
7830 goto error;
7831 if (equal) {
7832 isl_map_free(map2);
7833 return map1;
7836 map1 = map_union_disjoint(map1, map2);
7837 if (!map1)
7838 return NULL;
7839 if (map1->n > 1)
7840 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
7841 return map1;
7842 error:
7843 isl_map_free(map1);
7844 isl_map_free(map2);
7845 return NULL;
7848 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7849 * not be disjoint.
7851 __isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
7852 __isl_take isl_map *map2)
7854 return isl_map_align_params_map_map_and(map1, map2, &map_union_aligned);
7857 __isl_give isl_set *isl_set_union_disjoint(
7858 __isl_take isl_set *set1, __isl_take isl_set *set2)
7860 return set_from_map(isl_map_union_disjoint(set_to_map(set1),
7861 set_to_map(set2)));
7864 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
7866 return set_from_map(isl_map_union(set_to_map(set1), set_to_map(set2)));
7869 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7870 * the results.
7872 * "map" and "set" are assumed to be compatible and non-NULL.
7874 static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
7875 __isl_take isl_set *set,
7876 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
7877 __isl_take isl_basic_set *bset))
7879 unsigned flags = 0;
7880 struct isl_map *result;
7881 int i, j;
7883 if (isl_set_plain_is_universe(set)) {
7884 isl_set_free(set);
7885 return map;
7888 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
7889 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
7890 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7892 result = isl_map_alloc_space(isl_space_copy(map->dim),
7893 map->n * set->n, flags);
7894 for (i = 0; result && i < map->n; ++i)
7895 for (j = 0; j < set->n; ++j) {
7896 result = isl_map_add_basic_map(result,
7897 fn(isl_basic_map_copy(map->p[i]),
7898 isl_basic_set_copy(set->p[j])));
7899 if (!result)
7900 break;
7903 isl_map_free(map);
7904 isl_set_free(set);
7905 return result;
7908 static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
7909 __isl_take isl_set *set)
7911 isl_bool ok;
7913 ok = isl_map_compatible_range(map, set);
7914 if (ok < 0)
7915 goto error;
7916 if (!ok)
7917 isl_die(set->ctx, isl_error_invalid,
7918 "incompatible spaces", goto error);
7920 return map_intersect_set(map, set, &isl_basic_map_intersect_range);
7921 error:
7922 isl_map_free(map);
7923 isl_set_free(set);
7924 return NULL;
7927 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
7928 __isl_take isl_set *set)
7930 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
7933 static __isl_give isl_map *map_intersect_domain(__isl_take isl_map *map,
7934 __isl_take isl_set *set)
7936 isl_bool ok;
7938 ok = isl_map_compatible_domain(map, set);
7939 if (ok < 0)
7940 goto error;
7941 if (!ok)
7942 isl_die(set->ctx, isl_error_invalid,
7943 "incompatible spaces", goto error);
7945 return map_intersect_set(map, set, &isl_basic_map_intersect_domain);
7946 error:
7947 isl_map_free(map);
7948 isl_set_free(set);
7949 return NULL;
7952 __isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
7953 __isl_take isl_set *set)
7955 return isl_map_align_params_map_map_and(map, set,
7956 &map_intersect_domain);
7959 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7960 * in the space B -> C, return the intersection.
7961 * The parameters are assumed to have been aligned.
7963 * The map "factor" is first extended to a map living in the space
7964 * [A -> B] -> C and then a regular intersection is computed.
7966 static __isl_give isl_map *map_intersect_domain_factor_range(
7967 __isl_take isl_map *map, __isl_take isl_map *factor)
7969 isl_space *space;
7970 isl_map *ext_factor;
7972 space = isl_space_domain_factor_domain(isl_map_get_space(map));
7973 ext_factor = isl_map_universe(space);
7974 ext_factor = isl_map_domain_product(ext_factor, factor);
7975 return map_intersect(map, ext_factor);
7978 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7979 * in the space B -> C, return the intersection.
7981 __isl_give isl_map *isl_map_intersect_domain_factor_range(
7982 __isl_take isl_map *map, __isl_take isl_map *factor)
7984 return isl_map_align_params_map_map_and(map, factor,
7985 &map_intersect_domain_factor_range);
7988 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
7989 * in the space A -> C, return the intersection.
7991 * The map "factor" is first extended to a map living in the space
7992 * A -> [B -> C] and then a regular intersection is computed.
7994 static __isl_give isl_map *map_intersect_range_factor_range(
7995 __isl_take isl_map *map, __isl_take isl_map *factor)
7997 isl_space *space;
7998 isl_map *ext_factor;
8000 space = isl_space_range_factor_domain(isl_map_get_space(map));
8001 ext_factor = isl_map_universe(space);
8002 ext_factor = isl_map_range_product(ext_factor, factor);
8003 return isl_map_intersect(map, ext_factor);
8006 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
8007 * in the space A -> C, return the intersection.
8009 __isl_give isl_map *isl_map_intersect_range_factor_range(
8010 __isl_take isl_map *map, __isl_take isl_map *factor)
8012 return isl_map_align_params_map_map_and(map, factor,
8013 &map_intersect_range_factor_range);
8016 static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
8017 __isl_take isl_map *map2)
8019 if (!map1 || !map2)
8020 goto error;
8021 map1 = isl_map_reverse(map1);
8022 map1 = isl_map_apply_range(map1, map2);
8023 return isl_map_reverse(map1);
8024 error:
8025 isl_map_free(map1);
8026 isl_map_free(map2);
8027 return NULL;
8030 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
8031 __isl_take isl_map *map2)
8033 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
8036 static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
8037 __isl_take isl_map *map2)
8039 isl_space *space;
8040 struct isl_map *result;
8041 int i, j;
8043 if (!map1 || !map2)
8044 goto error;
8046 space = isl_space_join(isl_space_copy(map1->dim),
8047 isl_space_copy(map2->dim));
8049 result = isl_map_alloc_space(space, map1->n * map2->n, 0);
8050 if (!result)
8051 goto error;
8052 for (i = 0; i < map1->n; ++i)
8053 for (j = 0; j < map2->n; ++j) {
8054 result = isl_map_add_basic_map(result,
8055 isl_basic_map_apply_range(
8056 isl_basic_map_copy(map1->p[i]),
8057 isl_basic_map_copy(map2->p[j])));
8058 if (!result)
8059 goto error;
8061 isl_map_free(map1);
8062 isl_map_free(map2);
8063 if (result && result->n <= 1)
8064 ISL_F_SET(result, ISL_MAP_DISJOINT);
8065 return result;
8066 error:
8067 isl_map_free(map1);
8068 isl_map_free(map2);
8069 return NULL;
8072 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
8073 __isl_take isl_map *map2)
8075 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
8079 * returns range - domain
8081 __isl_give isl_basic_set *isl_basic_map_deltas(__isl_take isl_basic_map *bmap)
8083 isl_space *target_space;
8084 struct isl_basic_set *bset;
8085 unsigned dim;
8086 unsigned nparam;
8087 int i;
8089 if (!bmap)
8090 goto error;
8091 isl_assert(bmap->ctx, isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8092 bmap->dim, isl_dim_out),
8093 goto error);
8094 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
8095 dim = isl_basic_map_dim(bmap, isl_dim_in);
8096 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8097 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
8098 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
8099 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
8100 for (i = 0; i < dim; ++i) {
8101 int j = isl_basic_map_alloc_equality(bmap);
8102 if (j < 0) {
8103 bmap = isl_basic_map_free(bmap);
8104 break;
8106 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8107 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8108 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
8109 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
8111 bset = isl_basic_map_domain(bmap);
8112 bset = isl_basic_set_reset_space(bset, target_space);
8113 return bset;
8114 error:
8115 isl_basic_map_free(bmap);
8116 return NULL;
8120 * returns range - domain
8122 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
8124 int i;
8125 isl_space *dim;
8126 struct isl_set *result;
8128 if (!map)
8129 return NULL;
8131 isl_assert(map->ctx, isl_space_tuple_is_equal(map->dim, isl_dim_in,
8132 map->dim, isl_dim_out),
8133 goto error);
8134 dim = isl_map_get_space(map);
8135 dim = isl_space_domain(dim);
8136 result = isl_set_alloc_space(dim, map->n, 0);
8137 if (!result)
8138 goto error;
8139 for (i = 0; i < map->n; ++i)
8140 result = isl_set_add_basic_set(result,
8141 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
8142 isl_map_free(map);
8143 return result;
8144 error:
8145 isl_map_free(map);
8146 return NULL;
8150 * returns [domain -> range] -> range - domain
8152 __isl_give isl_basic_map *isl_basic_map_deltas_map(
8153 __isl_take isl_basic_map *bmap)
8155 int i, k;
8156 isl_space *space;
8157 isl_basic_map *domain;
8158 int nparam, n;
8159 unsigned total;
8161 if (!isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8162 bmap->dim, isl_dim_out))
8163 isl_die(bmap->ctx, isl_error_invalid,
8164 "domain and range don't match", goto error);
8166 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8167 n = isl_basic_map_dim(bmap, isl_dim_in);
8169 space = isl_basic_map_get_space(bmap);
8170 space = isl_space_from_range(isl_space_domain(space));
8171 domain = isl_basic_map_universe(space);
8173 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
8174 bmap = isl_basic_map_apply_range(bmap, domain);
8175 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
8177 total = isl_basic_map_total_dim(bmap);
8179 for (i = 0; i < n; ++i) {
8180 k = isl_basic_map_alloc_equality(bmap);
8181 if (k < 0)
8182 goto error;
8183 isl_seq_clr(bmap->eq[k], 1 + total);
8184 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
8185 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
8186 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
8189 bmap = isl_basic_map_gauss(bmap, NULL);
8190 return isl_basic_map_finalize(bmap);
8191 error:
8192 isl_basic_map_free(bmap);
8193 return NULL;
8197 * returns [domain -> range] -> range - domain
8199 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
8201 int i;
8202 isl_space *domain_space;
8204 if (!map)
8205 return NULL;
8207 if (!isl_space_tuple_is_equal(map->dim, isl_dim_in,
8208 map->dim, isl_dim_out))
8209 isl_die(map->ctx, isl_error_invalid,
8210 "domain and range don't match", goto error);
8212 map = isl_map_cow(map);
8213 if (!map)
8214 return NULL;
8216 domain_space = isl_space_domain(isl_map_get_space(map));
8217 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
8218 map->dim = isl_space_join(map->dim, isl_space_from_range(domain_space));
8219 if (!map->dim)
8220 goto error;
8221 for (i = 0; i < map->n; ++i) {
8222 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
8223 if (!map->p[i])
8224 goto error;
8226 map = isl_map_unmark_normalized(map);
8227 return map;
8228 error:
8229 isl_map_free(map);
8230 return NULL;
8233 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *space)
8235 unsigned n_in, n_out;
8237 if (!space)
8238 return NULL;
8239 n_in = isl_space_dim(space, isl_dim_in);
8240 n_out = isl_space_dim(space, isl_dim_out);
8241 if (n_in != n_out)
8242 isl_die(space->ctx, isl_error_invalid,
8243 "number of input and output dimensions needs to be "
8244 "the same", goto error);
8245 return isl_basic_map_equal(space, n_in);
8246 error:
8247 isl_space_free(space);
8248 return NULL;
8251 __isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
8253 return isl_map_from_basic_map(isl_basic_map_identity(dim));
8256 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
8258 isl_space *dim = isl_set_get_space(set);
8259 isl_map *id;
8260 id = isl_map_identity(isl_space_map_from_set(dim));
8261 return isl_map_intersect_range(id, set);
8264 /* Construct a basic set with all set dimensions having only non-negative
8265 * values.
8267 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
8268 __isl_take isl_space *space)
8270 int i;
8271 unsigned nparam;
8272 unsigned dim;
8273 struct isl_basic_set *bset;
8275 if (!space)
8276 return NULL;
8277 nparam = space->nparam;
8278 dim = space->n_out;
8279 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
8280 if (!bset)
8281 return NULL;
8282 for (i = 0; i < dim; ++i) {
8283 int k = isl_basic_set_alloc_inequality(bset);
8284 if (k < 0)
8285 goto error;
8286 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
8287 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
8289 return bset;
8290 error:
8291 isl_basic_set_free(bset);
8292 return NULL;
8295 /* Construct the half-space x_pos >= 0.
8297 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *space,
8298 int pos)
8300 int k;
8301 isl_basic_set *nonneg;
8303 nonneg = isl_basic_set_alloc_space(space, 0, 0, 1);
8304 k = isl_basic_set_alloc_inequality(nonneg);
8305 if (k < 0)
8306 goto error;
8307 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
8308 isl_int_set_si(nonneg->ineq[k][pos], 1);
8310 return isl_basic_set_finalize(nonneg);
8311 error:
8312 isl_basic_set_free(nonneg);
8313 return NULL;
8316 /* Construct the half-space x_pos <= -1.
8318 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *space,
8319 int pos)
8321 int k;
8322 isl_basic_set *neg;
8324 neg = isl_basic_set_alloc_space(space, 0, 0, 1);
8325 k = isl_basic_set_alloc_inequality(neg);
8326 if (k < 0)
8327 goto error;
8328 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
8329 isl_int_set_si(neg->ineq[k][0], -1);
8330 isl_int_set_si(neg->ineq[k][pos], -1);
8332 return isl_basic_set_finalize(neg);
8333 error:
8334 isl_basic_set_free(neg);
8335 return NULL;
8338 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
8339 enum isl_dim_type type, unsigned first, unsigned n)
8341 int i;
8342 unsigned offset;
8343 isl_basic_set *nonneg;
8344 isl_basic_set *neg;
8346 if (!set)
8347 return NULL;
8348 if (n == 0)
8349 return set;
8351 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
8353 offset = pos(set->dim, type);
8354 for (i = 0; i < n; ++i) {
8355 nonneg = nonneg_halfspace(isl_set_get_space(set),
8356 offset + first + i);
8357 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
8359 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
8362 return set;
8363 error:
8364 isl_set_free(set);
8365 return NULL;
8368 static isl_stat foreach_orthant(__isl_take isl_set *set, int *signs, int first,
8369 int len,
8370 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8371 void *user)
8373 isl_set *half;
8375 if (!set)
8376 return isl_stat_error;
8377 if (isl_set_plain_is_empty(set)) {
8378 isl_set_free(set);
8379 return isl_stat_ok;
8381 if (first == len)
8382 return fn(set, signs, user);
8384 signs[first] = 1;
8385 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
8386 1 + first));
8387 half = isl_set_intersect(half, isl_set_copy(set));
8388 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
8389 goto error;
8391 signs[first] = -1;
8392 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
8393 1 + first));
8394 half = isl_set_intersect(half, set);
8395 return foreach_orthant(half, signs, first + 1, len, fn, user);
8396 error:
8397 isl_set_free(set);
8398 return isl_stat_error;
8401 /* Call "fn" on the intersections of "set" with each of the orthants
8402 * (except for obviously empty intersections). The orthant is identified
8403 * by the signs array, with each entry having value 1 or -1 according
8404 * to the sign of the corresponding variable.
8406 isl_stat isl_set_foreach_orthant(__isl_keep isl_set *set,
8407 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8408 void *user)
8410 unsigned nparam;
8411 unsigned nvar;
8412 int *signs;
8413 isl_stat r;
8415 if (!set)
8416 return isl_stat_error;
8417 if (isl_set_plain_is_empty(set))
8418 return isl_stat_ok;
8420 nparam = isl_set_dim(set, isl_dim_param);
8421 nvar = isl_set_dim(set, isl_dim_set);
8423 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
8425 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
8426 fn, user);
8428 free(signs);
8430 return r;
8433 isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8435 return isl_map_is_equal(set_to_map(set1), set_to_map(set2));
8438 isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
8439 __isl_keep isl_basic_map *bmap2)
8441 isl_bool is_subset;
8442 struct isl_map *map1;
8443 struct isl_map *map2;
8445 if (!bmap1 || !bmap2)
8446 return isl_bool_error;
8448 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
8449 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
8451 is_subset = isl_map_is_subset(map1, map2);
8453 isl_map_free(map1);
8454 isl_map_free(map2);
8456 return is_subset;
8459 isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
8460 __isl_keep isl_basic_set *bset2)
8462 return isl_basic_map_is_subset(bset1, bset2);
8465 isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
8466 __isl_keep isl_basic_map *bmap2)
8468 isl_bool is_subset;
8470 if (!bmap1 || !bmap2)
8471 return isl_bool_error;
8472 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8473 if (is_subset != isl_bool_true)
8474 return is_subset;
8475 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8476 return is_subset;
8479 isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
8480 __isl_keep isl_basic_set *bset2)
8482 return isl_basic_map_is_equal(
8483 bset_to_bmap(bset1), bset_to_bmap(bset2));
8486 isl_bool isl_map_is_empty(__isl_keep isl_map *map)
8488 int i;
8489 int is_empty;
8491 if (!map)
8492 return isl_bool_error;
8493 for (i = 0; i < map->n; ++i) {
8494 is_empty = isl_basic_map_is_empty(map->p[i]);
8495 if (is_empty < 0)
8496 return isl_bool_error;
8497 if (!is_empty)
8498 return isl_bool_false;
8500 return isl_bool_true;
8503 isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
8505 return map ? map->n == 0 : isl_bool_error;
8508 isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
8510 return set ? set->n == 0 : isl_bool_error;
8513 isl_bool isl_set_is_empty(__isl_keep isl_set *set)
8515 return isl_map_is_empty(set_to_map(set));
8518 isl_bool isl_map_has_equal_space(__isl_keep isl_map *map1,
8519 __isl_keep isl_map *map2)
8521 if (!map1 || !map2)
8522 return isl_bool_error;
8524 return isl_space_is_equal(map1->dim, map2->dim);
8527 isl_bool isl_set_has_equal_space(__isl_keep isl_set *set1,
8528 __isl_keep isl_set *set2)
8530 if (!set1 || !set2)
8531 return isl_bool_error;
8533 return isl_space_is_equal(set1->dim, set2->dim);
8536 static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8538 isl_bool is_subset;
8540 if (!map1 || !map2)
8541 return isl_bool_error;
8542 is_subset = isl_map_is_subset(map1, map2);
8543 if (is_subset != isl_bool_true)
8544 return is_subset;
8545 is_subset = isl_map_is_subset(map2, map1);
8546 return is_subset;
8549 /* Is "map1" equal to "map2"?
8551 * First check if they are obviously equal.
8552 * If not, then perform a more detailed analysis.
8554 isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8556 isl_bool equal;
8558 equal = isl_map_plain_is_equal(map1, map2);
8559 if (equal < 0 || equal)
8560 return equal;
8561 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
8564 isl_bool isl_basic_map_is_strict_subset(
8565 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8567 isl_bool is_subset;
8569 if (!bmap1 || !bmap2)
8570 return isl_bool_error;
8571 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8572 if (is_subset != isl_bool_true)
8573 return is_subset;
8574 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8575 if (is_subset == isl_bool_error)
8576 return is_subset;
8577 return !is_subset;
8580 isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
8581 __isl_keep isl_map *map2)
8583 isl_bool is_subset;
8585 if (!map1 || !map2)
8586 return isl_bool_error;
8587 is_subset = isl_map_is_subset(map1, map2);
8588 if (is_subset != isl_bool_true)
8589 return is_subset;
8590 is_subset = isl_map_is_subset(map2, map1);
8591 if (is_subset == isl_bool_error)
8592 return is_subset;
8593 return !is_subset;
8596 isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
8597 __isl_keep isl_set *set2)
8599 return isl_map_is_strict_subset(set_to_map(set1), set_to_map(set2));
8602 /* Is "bmap" obviously equal to the universe with the same space?
8604 * That is, does it not have any constraints?
8606 isl_bool isl_basic_map_plain_is_universe(__isl_keep isl_basic_map *bmap)
8608 if (!bmap)
8609 return isl_bool_error;
8610 return bmap->n_eq == 0 && bmap->n_ineq == 0;
8613 /* Is "bset" obviously equal to the universe with the same space?
8615 isl_bool isl_basic_set_plain_is_universe(__isl_keep isl_basic_set *bset)
8617 return isl_basic_map_plain_is_universe(bset);
8620 /* If "c" does not involve any existentially quantified variables,
8621 * then set *univ to false and abort
8623 static isl_stat involves_divs(__isl_take isl_constraint *c, void *user)
8625 isl_bool *univ = user;
8626 unsigned n;
8628 n = isl_constraint_dim(c, isl_dim_div);
8629 *univ = isl_constraint_involves_dims(c, isl_dim_div, 0, n);
8630 isl_constraint_free(c);
8631 if (*univ < 0 || !*univ)
8632 return isl_stat_error;
8633 return isl_stat_ok;
8636 /* Is "bmap" equal to the universe with the same space?
8638 * First check if it is obviously equal to the universe.
8639 * If not and if there are any constraints not involving
8640 * existentially quantified variables, then it is certainly
8641 * not equal to the universe.
8642 * Otherwise, check if the universe is a subset of "bmap".
8644 isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
8646 isl_bool univ;
8647 isl_basic_map *test;
8649 univ = isl_basic_map_plain_is_universe(bmap);
8650 if (univ < 0 || univ)
8651 return univ;
8652 if (isl_basic_map_dim(bmap, isl_dim_div) == 0)
8653 return isl_bool_false;
8654 univ = isl_bool_true;
8655 if (isl_basic_map_foreach_constraint(bmap, &involves_divs, &univ) < 0 &&
8656 univ)
8657 return isl_bool_error;
8658 if (univ < 0 || !univ)
8659 return univ;
8660 test = isl_basic_map_universe(isl_basic_map_get_space(bmap));
8661 univ = isl_basic_map_is_subset(test, bmap);
8662 isl_basic_map_free(test);
8663 return univ;
8666 /* Is "bset" equal to the universe with the same space?
8668 isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
8670 return isl_basic_map_is_universe(bset);
8673 isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
8675 int i;
8677 if (!map)
8678 return isl_bool_error;
8680 for (i = 0; i < map->n; ++i) {
8681 isl_bool r = isl_basic_map_plain_is_universe(map->p[i]);
8682 if (r < 0 || r)
8683 return r;
8686 return isl_bool_false;
8689 isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
8691 return isl_map_plain_is_universe(set_to_map(set));
8694 isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
8696 struct isl_basic_set *bset = NULL;
8697 struct isl_vec *sample = NULL;
8698 isl_bool empty, non_empty;
8700 if (!bmap)
8701 return isl_bool_error;
8703 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
8704 return isl_bool_true;
8706 if (isl_basic_map_plain_is_universe(bmap))
8707 return isl_bool_false;
8709 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
8710 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
8711 copy = isl_basic_map_remove_redundancies(copy);
8712 empty = isl_basic_map_plain_is_empty(copy);
8713 isl_basic_map_free(copy);
8714 return empty;
8717 non_empty = isl_basic_map_plain_is_non_empty(bmap);
8718 if (non_empty < 0)
8719 return isl_bool_error;
8720 if (non_empty)
8721 return isl_bool_false;
8722 isl_vec_free(bmap->sample);
8723 bmap->sample = NULL;
8724 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
8725 if (!bset)
8726 return isl_bool_error;
8727 sample = isl_basic_set_sample_vec(bset);
8728 if (!sample)
8729 return isl_bool_error;
8730 empty = sample->size == 0;
8731 isl_vec_free(bmap->sample);
8732 bmap->sample = sample;
8733 if (empty)
8734 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
8736 return empty;
8739 isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
8741 if (!bmap)
8742 return isl_bool_error;
8743 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
8746 isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
8748 if (!bset)
8749 return isl_bool_error;
8750 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
8753 /* Is "bmap" known to be non-empty?
8755 * That is, is the cached sample still valid?
8757 isl_bool isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map *bmap)
8759 unsigned total;
8761 if (!bmap)
8762 return isl_bool_error;
8763 if (!bmap->sample)
8764 return isl_bool_false;
8765 total = 1 + isl_basic_map_total_dim(bmap);
8766 if (bmap->sample->size != total)
8767 return isl_bool_false;
8768 return isl_basic_map_contains(bmap, bmap->sample);
8771 isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
8773 return isl_basic_map_is_empty(bset_to_bmap(bset));
8776 __isl_give isl_map *isl_basic_map_union(__isl_take isl_basic_map *bmap1,
8777 __isl_take isl_basic_map *bmap2)
8779 struct isl_map *map;
8780 if (!bmap1 || !bmap2)
8781 goto error;
8783 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
8785 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
8786 if (!map)
8787 goto error;
8788 map = isl_map_add_basic_map(map, bmap1);
8789 map = isl_map_add_basic_map(map, bmap2);
8790 return map;
8791 error:
8792 isl_basic_map_free(bmap1);
8793 isl_basic_map_free(bmap2);
8794 return NULL;
8797 struct isl_set *isl_basic_set_union(
8798 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
8800 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1),
8801 bset_to_bmap(bset2)));
8804 /* Order divs such that any div only depends on previous divs */
8805 __isl_give isl_basic_map *isl_basic_map_order_divs(
8806 __isl_take isl_basic_map *bmap)
8808 int i;
8809 unsigned off;
8811 if (!bmap)
8812 return NULL;
8814 off = isl_space_dim(bmap->dim, isl_dim_all);
8816 for (i = 0; i < bmap->n_div; ++i) {
8817 int pos;
8818 if (isl_int_is_zero(bmap->div[i][0]))
8819 continue;
8820 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
8821 bmap->n_div-i);
8822 if (pos == -1)
8823 continue;
8824 if (pos == 0)
8825 isl_die(isl_basic_map_get_ctx(bmap), isl_error_internal,
8826 "integer division depends on itself",
8827 return isl_basic_map_free(bmap));
8828 isl_basic_map_swap_div(bmap, i, i + pos);
8829 --i;
8831 return bmap;
8834 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
8836 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset)));
8839 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
8841 int i;
8843 if (!map)
8844 return 0;
8846 for (i = 0; i < map->n; ++i) {
8847 map->p[i] = isl_basic_map_order_divs(map->p[i]);
8848 if (!map->p[i])
8849 goto error;
8852 return map;
8853 error:
8854 isl_map_free(map);
8855 return NULL;
8858 /* Sort the local variables of "bset".
8860 __isl_give isl_basic_set *isl_basic_set_sort_divs(
8861 __isl_take isl_basic_set *bset)
8863 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset)));
8866 /* Apply the expansion computed by isl_merge_divs.
8867 * The expansion itself is given by "exp" while the resulting
8868 * list of divs is given by "div".
8870 * Move the integer divisions of "bmap" into the right position
8871 * according to "exp" and then introduce the additional integer
8872 * divisions, adding div constraints.
8873 * The moving should be done first to avoid moving coefficients
8874 * in the definitions of the extra integer divisions.
8876 __isl_give isl_basic_map *isl_basic_map_expand_divs(
8877 __isl_take isl_basic_map *bmap, __isl_take isl_mat *div, int *exp)
8879 int i, j;
8880 int n_div;
8882 bmap = isl_basic_map_cow(bmap);
8883 if (!bmap || !div)
8884 goto error;
8886 if (div->n_row < bmap->n_div)
8887 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
8888 "not an expansion", goto error);
8890 n_div = bmap->n_div;
8891 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
8892 div->n_row - n_div, 0,
8893 2 * (div->n_row - n_div));
8895 for (i = n_div; i < div->n_row; ++i)
8896 if (isl_basic_map_alloc_div(bmap) < 0)
8897 goto error;
8899 for (j = n_div - 1; j >= 0; --j) {
8900 if (exp[j] == j)
8901 break;
8902 isl_basic_map_swap_div(bmap, j, exp[j]);
8904 j = 0;
8905 for (i = 0; i < div->n_row; ++i) {
8906 if (j < n_div && exp[j] == i) {
8907 j++;
8908 } else {
8909 isl_seq_cpy(bmap->div[i], div->row[i], div->n_col);
8910 if (isl_basic_map_div_is_marked_unknown(bmap, i))
8911 continue;
8912 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
8913 goto error;
8917 isl_mat_free(div);
8918 return bmap;
8919 error:
8920 isl_basic_map_free(bmap);
8921 isl_mat_free(div);
8922 return NULL;
8925 /* Apply the expansion computed by isl_merge_divs.
8926 * The expansion itself is given by "exp" while the resulting
8927 * list of divs is given by "div".
8929 __isl_give isl_basic_set *isl_basic_set_expand_divs(
8930 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
8932 return isl_basic_map_expand_divs(bset, div, exp);
8935 /* Look for a div in dst that corresponds to the div "div" in src.
8936 * The divs before "div" in src and dst are assumed to be the same.
8938 * Returns -1 if no corresponding div was found and the position
8939 * of the corresponding div in dst otherwise.
8941 static int find_div(__isl_keep isl_basic_map *dst,
8942 __isl_keep isl_basic_map *src, unsigned div)
8944 int i;
8946 unsigned total = isl_space_dim(src->dim, isl_dim_all);
8948 isl_assert(dst->ctx, div <= dst->n_div, return -1);
8949 for (i = div; i < dst->n_div; ++i)
8950 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
8951 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
8952 dst->n_div - div) == -1)
8953 return i;
8954 return -1;
8957 /* Align the divs of "dst" to those of "src", adding divs from "src"
8958 * if needed. That is, make sure that the first src->n_div divs
8959 * of the result are equal to those of src.
8961 * The result is not finalized as by design it will have redundant
8962 * divs if any divs from "src" were copied.
8964 __isl_give isl_basic_map *isl_basic_map_align_divs(
8965 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
8967 int i;
8968 isl_bool known;
8969 int extended;
8970 unsigned total;
8972 if (!dst || !src)
8973 return isl_basic_map_free(dst);
8975 if (src->n_div == 0)
8976 return dst;
8978 known = isl_basic_map_divs_known(src);
8979 if (known < 0)
8980 return isl_basic_map_free(dst);
8981 if (!known)
8982 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
8983 "some src divs are unknown",
8984 return isl_basic_map_free(dst));
8986 src = isl_basic_map_order_divs(isl_basic_map_copy(src));
8987 if (!src)
8988 return isl_basic_map_free(dst);
8990 extended = 0;
8991 total = isl_space_dim(src->dim, isl_dim_all);
8992 for (i = 0; i < src->n_div; ++i) {
8993 int j = find_div(dst, src, i);
8994 if (j < 0) {
8995 if (!extended) {
8996 int extra = src->n_div - i;
8997 dst = isl_basic_map_cow(dst);
8998 if (!dst)
8999 goto error;
9000 dst = isl_basic_map_extend_space(dst,
9001 isl_space_copy(dst->dim),
9002 extra, 0, 2 * extra);
9003 extended = 1;
9005 j = isl_basic_map_alloc_div(dst);
9006 if (j < 0)
9007 goto error;
9008 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
9009 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
9010 if (isl_basic_map_add_div_constraints(dst, j) < 0)
9011 goto error;
9013 if (j != i)
9014 isl_basic_map_swap_div(dst, i, j);
9016 isl_basic_map_free(src);
9017 return dst;
9018 error:
9019 isl_basic_map_free(src);
9020 isl_basic_map_free(dst);
9021 return NULL;
9024 __isl_give isl_map *isl_map_align_divs_internal(__isl_take isl_map *map)
9026 int i;
9028 if (!map)
9029 return NULL;
9030 if (map->n == 0)
9031 return map;
9032 map = isl_map_compute_divs(map);
9033 map = isl_map_cow(map);
9034 if (!map)
9035 return NULL;
9037 for (i = 1; i < map->n; ++i)
9038 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
9039 for (i = 1; i < map->n; ++i) {
9040 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
9041 if (!map->p[i])
9042 return isl_map_free(map);
9045 map = isl_map_unmark_normalized(map);
9046 return map;
9049 __isl_give isl_map *isl_map_align_divs(__isl_take isl_map *map)
9051 return isl_map_align_divs_internal(map);
9054 struct isl_set *isl_set_align_divs(struct isl_set *set)
9056 return set_from_map(isl_map_align_divs_internal(set_to_map(set)));
9059 /* Align the divs of the basic maps in "map" to those
9060 * of the basic maps in "list", as well as to the other basic maps in "map".
9061 * The elements in "list" are assumed to have known divs.
9063 __isl_give isl_map *isl_map_align_divs_to_basic_map_list(
9064 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
9066 int i, n;
9068 map = isl_map_compute_divs(map);
9069 map = isl_map_cow(map);
9070 if (!map || !list)
9071 return isl_map_free(map);
9072 if (map->n == 0)
9073 return map;
9075 n = isl_basic_map_list_n_basic_map(list);
9076 for (i = 0; i < n; ++i) {
9077 isl_basic_map *bmap;
9079 bmap = isl_basic_map_list_get_basic_map(list, i);
9080 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
9081 isl_basic_map_free(bmap);
9083 if (!map->p[0])
9084 return isl_map_free(map);
9086 return isl_map_align_divs_internal(map);
9089 /* Align the divs of each element of "list" to those of "bmap".
9090 * Both "bmap" and the elements of "list" are assumed to have known divs.
9092 __isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
9093 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
9095 int i, n;
9097 if (!list || !bmap)
9098 return isl_basic_map_list_free(list);
9100 n = isl_basic_map_list_n_basic_map(list);
9101 for (i = 0; i < n; ++i) {
9102 isl_basic_map *bmap_i;
9104 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9105 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
9106 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
9109 return list;
9112 static __isl_give isl_set *set_apply( __isl_take isl_set *set,
9113 __isl_take isl_map *map)
9115 isl_bool ok;
9117 ok = isl_map_compatible_domain(map, set);
9118 if (ok < 0)
9119 goto error;
9120 if (!ok)
9121 isl_die(isl_set_get_ctx(set), isl_error_invalid,
9122 "incompatible spaces", goto error);
9123 map = isl_map_intersect_domain(map, set);
9124 set = isl_map_range(map);
9125 return set;
9126 error:
9127 isl_set_free(set);
9128 isl_map_free(map);
9129 return NULL;
9132 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
9133 __isl_take isl_map *map)
9135 return isl_map_align_params_map_map_and(set, map, &set_apply);
9138 /* There is no need to cow as removing empty parts doesn't change
9139 * the meaning of the set.
9141 __isl_give isl_map *isl_map_remove_empty_parts(__isl_take isl_map *map)
9143 int i;
9145 if (!map)
9146 return NULL;
9148 for (i = map->n - 1; i >= 0; --i)
9149 map = remove_if_empty(map, i);
9151 return map;
9154 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
9156 return set_from_map(isl_map_remove_empty_parts(set_to_map(set)));
9159 /* Create a binary relation that maps the shared initial "pos" dimensions
9160 * of "bset1" and "bset2" to the remaining dimensions of "bset1" and "bset2".
9162 static __isl_give isl_basic_map *join_initial(__isl_keep isl_basic_set *bset1,
9163 __isl_keep isl_basic_set *bset2, int pos)
9165 isl_basic_map *bmap1;
9166 isl_basic_map *bmap2;
9168 bmap1 = isl_basic_map_from_range(isl_basic_set_copy(bset1));
9169 bmap2 = isl_basic_map_from_range(isl_basic_set_copy(bset2));
9170 bmap1 = isl_basic_map_move_dims(bmap1, isl_dim_in, 0,
9171 isl_dim_out, 0, pos);
9172 bmap2 = isl_basic_map_move_dims(bmap2, isl_dim_in, 0,
9173 isl_dim_out, 0, pos);
9174 return isl_basic_map_range_product(bmap1, bmap2);
9177 /* Given two basic sets bset1 and bset2, compute the maximal difference
9178 * between the values of dimension pos in bset1 and those in bset2
9179 * for any common value of the parameters and dimensions preceding pos.
9181 static enum isl_lp_result basic_set_maximal_difference_at(
9182 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
9183 int pos, isl_int *opt)
9185 isl_basic_map *bmap1;
9186 struct isl_ctx *ctx;
9187 struct isl_vec *obj;
9188 unsigned total;
9189 unsigned nparam;
9190 unsigned dim1;
9191 enum isl_lp_result res;
9193 if (!bset1 || !bset2)
9194 return isl_lp_error;
9196 nparam = isl_basic_set_n_param(bset1);
9197 dim1 = isl_basic_set_n_dim(bset1);
9199 bmap1 = join_initial(bset1, bset2, pos);
9200 if (!bmap1)
9201 return isl_lp_error;
9203 total = isl_basic_map_total_dim(bmap1);
9204 ctx = bmap1->ctx;
9205 obj = isl_vec_alloc(ctx, 1 + total);
9206 if (!obj)
9207 goto error;
9208 isl_seq_clr(obj->block.data, 1 + total);
9209 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
9210 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
9211 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
9212 opt, NULL, NULL);
9213 isl_basic_map_free(bmap1);
9214 isl_vec_free(obj);
9215 return res;
9216 error:
9217 isl_basic_map_free(bmap1);
9218 return isl_lp_error;
9221 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
9222 * for any common value of the parameters and dimensions preceding pos
9223 * in both basic sets, the values of dimension pos in bset1 are
9224 * smaller or larger than those in bset2.
9226 * Returns
9227 * 1 if bset1 follows bset2
9228 * -1 if bset1 precedes bset2
9229 * 0 if bset1 and bset2 are incomparable
9230 * -2 if some error occurred.
9232 int isl_basic_set_compare_at(__isl_keep isl_basic_set *bset1,
9233 __isl_keep isl_basic_set *bset2, int pos)
9235 isl_int opt;
9236 enum isl_lp_result res;
9237 int cmp;
9239 isl_int_init(opt);
9241 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
9243 if (res == isl_lp_empty)
9244 cmp = 0;
9245 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
9246 res == isl_lp_unbounded)
9247 cmp = 1;
9248 else if (res == isl_lp_ok && isl_int_is_neg(opt))
9249 cmp = -1;
9250 else
9251 cmp = -2;
9253 isl_int_clear(opt);
9254 return cmp;
9257 /* Given two basic sets bset1 and bset2, check whether
9258 * for any common value of the parameters and dimensions preceding pos
9259 * there is a value of dimension pos in bset1 that is larger
9260 * than a value of the same dimension in bset2.
9262 * Return
9263 * 1 if there exists such a pair
9264 * 0 if there is no such pair, but there is a pair of equal values
9265 * -1 otherwise
9266 * -2 if some error occurred.
9268 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
9269 __isl_keep isl_basic_set *bset2, int pos)
9271 isl_bool empty;
9272 isl_basic_map *bmap;
9273 unsigned dim1;
9275 dim1 = isl_basic_set_dim(bset1, isl_dim_set);
9276 bmap = join_initial(bset1, bset2, pos);
9277 bmap = isl_basic_map_order_ge(bmap, isl_dim_out, 0,
9278 isl_dim_out, dim1 - pos);
9279 empty = isl_basic_map_is_empty(bmap);
9280 if (empty < 0)
9281 goto error;
9282 if (empty) {
9283 isl_basic_map_free(bmap);
9284 return -1;
9286 bmap = isl_basic_map_order_gt(bmap, isl_dim_out, 0,
9287 isl_dim_out, dim1 - pos);
9288 empty = isl_basic_map_is_empty(bmap);
9289 if (empty < 0)
9290 goto error;
9291 isl_basic_map_free(bmap);
9292 if (empty)
9293 return 0;
9294 return 1;
9295 error:
9296 isl_basic_map_free(bmap);
9297 return -2;
9300 /* Given two sets set1 and set2, check whether
9301 * for any common value of the parameters and dimensions preceding pos
9302 * there is a value of dimension pos in set1 that is larger
9303 * than a value of the same dimension in set2.
9305 * Return
9306 * 1 if there exists such a pair
9307 * 0 if there is no such pair, but there is a pair of equal values
9308 * -1 otherwise
9309 * -2 if some error occurred.
9311 int isl_set_follows_at(__isl_keep isl_set *set1,
9312 __isl_keep isl_set *set2, int pos)
9314 int i, j;
9315 int follows = -1;
9317 if (!set1 || !set2)
9318 return -2;
9320 for (i = 0; i < set1->n; ++i)
9321 for (j = 0; j < set2->n; ++j) {
9322 int f;
9323 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
9324 if (f == 1 || f == -2)
9325 return f;
9326 if (f > follows)
9327 follows = f;
9330 return follows;
9333 static isl_bool isl_basic_map_plain_has_fixed_var(
9334 __isl_keep isl_basic_map *bmap, unsigned pos, isl_int *val)
9336 int i;
9337 int d;
9338 unsigned total;
9340 if (!bmap)
9341 return isl_bool_error;
9342 total = isl_basic_map_total_dim(bmap);
9343 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
9344 for (; d+1 > pos; --d)
9345 if (!isl_int_is_zero(bmap->eq[i][1+d]))
9346 break;
9347 if (d != pos)
9348 continue;
9349 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
9350 return isl_bool_false;
9351 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
9352 return isl_bool_false;
9353 if (!isl_int_is_one(bmap->eq[i][1+d]))
9354 return isl_bool_false;
9355 if (val)
9356 isl_int_neg(*val, bmap->eq[i][0]);
9357 return isl_bool_true;
9359 return isl_bool_false;
9362 static isl_bool isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
9363 unsigned pos, isl_int *val)
9365 int i;
9366 isl_int v;
9367 isl_int tmp;
9368 isl_bool fixed;
9370 if (!map)
9371 return isl_bool_error;
9372 if (map->n == 0)
9373 return isl_bool_false;
9374 if (map->n == 1)
9375 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
9376 isl_int_init(v);
9377 isl_int_init(tmp);
9378 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
9379 for (i = 1; fixed == isl_bool_true && i < map->n; ++i) {
9380 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
9381 if (fixed == isl_bool_true && isl_int_ne(tmp, v))
9382 fixed = isl_bool_false;
9384 if (val)
9385 isl_int_set(*val, v);
9386 isl_int_clear(tmp);
9387 isl_int_clear(v);
9388 return fixed;
9391 static isl_bool isl_basic_set_plain_has_fixed_var(
9392 __isl_keep isl_basic_set *bset, unsigned pos, isl_int *val)
9394 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset),
9395 pos, val);
9398 isl_bool isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
9399 enum isl_dim_type type, unsigned pos, isl_int *val)
9401 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
9402 return isl_bool_error;
9403 return isl_basic_map_plain_has_fixed_var(bmap,
9404 isl_basic_map_offset(bmap, type) - 1 + pos, val);
9407 /* If "bmap" obviously lies on a hyperplane where the given dimension
9408 * has a fixed value, then return that value.
9409 * Otherwise return NaN.
9411 __isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
9412 __isl_keep isl_basic_map *bmap,
9413 enum isl_dim_type type, unsigned pos)
9415 isl_ctx *ctx;
9416 isl_val *v;
9417 isl_bool fixed;
9419 if (!bmap)
9420 return NULL;
9421 ctx = isl_basic_map_get_ctx(bmap);
9422 v = isl_val_alloc(ctx);
9423 if (!v)
9424 return NULL;
9425 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
9426 if (fixed < 0)
9427 return isl_val_free(v);
9428 if (fixed) {
9429 isl_int_set_si(v->d, 1);
9430 return v;
9432 isl_val_free(v);
9433 return isl_val_nan(ctx);
9436 isl_bool isl_map_plain_is_fixed(__isl_keep isl_map *map,
9437 enum isl_dim_type type, unsigned pos, isl_int *val)
9439 if (pos >= isl_map_dim(map, type))
9440 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9441 "position out of bounds", return isl_bool_error);
9442 return isl_map_plain_has_fixed_var(map,
9443 map_offset(map, type) - 1 + pos, val);
9446 /* If "map" obviously lies on a hyperplane where the given dimension
9447 * has a fixed value, then return that value.
9448 * Otherwise return NaN.
9450 __isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
9451 enum isl_dim_type type, unsigned pos)
9453 isl_ctx *ctx;
9454 isl_val *v;
9455 isl_bool fixed;
9457 if (!map)
9458 return NULL;
9459 ctx = isl_map_get_ctx(map);
9460 v = isl_val_alloc(ctx);
9461 if (!v)
9462 return NULL;
9463 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
9464 if (fixed < 0)
9465 return isl_val_free(v);
9466 if (fixed) {
9467 isl_int_set_si(v->d, 1);
9468 return v;
9470 isl_val_free(v);
9471 return isl_val_nan(ctx);
9474 /* If "set" obviously lies on a hyperplane where the given dimension
9475 * has a fixed value, then return that value.
9476 * Otherwise return NaN.
9478 __isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
9479 enum isl_dim_type type, unsigned pos)
9481 return isl_map_plain_get_val_if_fixed(set, type, pos);
9484 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9485 * then return this fixed value in *val.
9487 isl_bool isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
9488 unsigned dim, isl_int *val)
9490 return isl_basic_set_plain_has_fixed_var(bset,
9491 isl_basic_set_n_param(bset) + dim, val);
9494 /* Return -1 if the constraint "c1" should be sorted before "c2"
9495 * and 1 if it should be sorted after "c2".
9496 * Return 0 if the two constraints are the same (up to the constant term).
9498 * In particular, if a constraint involves later variables than another
9499 * then it is sorted after this other constraint.
9500 * uset_gist depends on constraints without existentially quantified
9501 * variables sorting first.
9503 * For constraints that have the same latest variable, those
9504 * with the same coefficient for this latest variable (first in absolute value
9505 * and then in actual value) are grouped together.
9506 * This is useful for detecting pairs of constraints that can
9507 * be chained in their printed representation.
9509 * Finally, within a group, constraints are sorted according to
9510 * their coefficients (excluding the constant term).
9512 static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
9514 isl_int **c1 = (isl_int **) p1;
9515 isl_int **c2 = (isl_int **) p2;
9516 int l1, l2;
9517 unsigned size = *(unsigned *) arg;
9518 int cmp;
9520 l1 = isl_seq_last_non_zero(*c1 + 1, size);
9521 l2 = isl_seq_last_non_zero(*c2 + 1, size);
9523 if (l1 != l2)
9524 return l1 - l2;
9526 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9527 if (cmp != 0)
9528 return cmp;
9529 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9530 if (cmp != 0)
9531 return -cmp;
9533 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
9536 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9537 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9538 * and 0 if the two constraints are the same (up to the constant term).
9540 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
9541 isl_int *c1, isl_int *c2)
9543 unsigned total;
9545 if (!bmap)
9546 return -2;
9547 total = isl_basic_map_total_dim(bmap);
9548 return sort_constraint_cmp(&c1, &c2, &total);
9551 __isl_give isl_basic_map *isl_basic_map_sort_constraints(
9552 __isl_take isl_basic_map *bmap)
9554 unsigned total;
9556 if (!bmap)
9557 return NULL;
9558 if (bmap->n_ineq == 0)
9559 return bmap;
9560 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_SORTED))
9561 return bmap;
9562 total = isl_basic_map_total_dim(bmap);
9563 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
9564 &sort_constraint_cmp, &total) < 0)
9565 return isl_basic_map_free(bmap);
9566 ISL_F_SET(bmap, ISL_BASIC_MAP_SORTED);
9567 return bmap;
9570 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
9571 __isl_take isl_basic_set *bset)
9573 isl_basic_map *bmap = bset_to_bmap(bset);
9574 return bset_from_bmap(isl_basic_map_sort_constraints(bmap));
9577 __isl_give isl_basic_map *isl_basic_map_normalize(
9578 __isl_take isl_basic_map *bmap)
9580 bmap = isl_basic_map_remove_redundancies(bmap);
9581 bmap = isl_basic_map_sort_constraints(bmap);
9582 return bmap;
9584 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map *bmap1,
9585 __isl_keep isl_basic_map *bmap2)
9587 int i, cmp;
9588 unsigned total;
9589 isl_space *space1, *space2;
9591 if (!bmap1 || !bmap2)
9592 return -1;
9594 if (bmap1 == bmap2)
9595 return 0;
9596 space1 = isl_basic_map_peek_space(bmap1);
9597 space2 = isl_basic_map_peek_space(bmap2);
9598 cmp = isl_space_cmp(space1, space2);
9599 if (cmp)
9600 return cmp;
9601 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
9602 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
9603 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
9604 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
9605 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9606 return 0;
9607 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
9608 return 1;
9609 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9610 return -1;
9611 if (bmap1->n_eq != bmap2->n_eq)
9612 return bmap1->n_eq - bmap2->n_eq;
9613 if (bmap1->n_ineq != bmap2->n_ineq)
9614 return bmap1->n_ineq - bmap2->n_ineq;
9615 if (bmap1->n_div != bmap2->n_div)
9616 return bmap1->n_div - bmap2->n_div;
9617 total = isl_basic_map_total_dim(bmap1);
9618 for (i = 0; i < bmap1->n_eq; ++i) {
9619 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
9620 if (cmp)
9621 return cmp;
9623 for (i = 0; i < bmap1->n_ineq; ++i) {
9624 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
9625 if (cmp)
9626 return cmp;
9628 for (i = 0; i < bmap1->n_div; ++i) {
9629 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
9630 if (cmp)
9631 return cmp;
9633 return 0;
9636 int isl_basic_set_plain_cmp(__isl_keep isl_basic_set *bset1,
9637 __isl_keep isl_basic_set *bset2)
9639 return isl_basic_map_plain_cmp(bset1, bset2);
9642 int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
9644 int i, cmp;
9646 if (set1 == set2)
9647 return 0;
9648 if (set1->n != set2->n)
9649 return set1->n - set2->n;
9651 for (i = 0; i < set1->n; ++i) {
9652 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
9653 if (cmp)
9654 return cmp;
9657 return 0;
9660 isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
9661 __isl_keep isl_basic_map *bmap2)
9663 if (!bmap1 || !bmap2)
9664 return isl_bool_error;
9665 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
9668 isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
9669 __isl_keep isl_basic_set *bset2)
9671 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1),
9672 bset_to_bmap(bset2));
9675 static int qsort_bmap_cmp(const void *p1, const void *p2)
9677 isl_basic_map *bmap1 = *(isl_basic_map **) p1;
9678 isl_basic_map *bmap2 = *(isl_basic_map **) p2;
9680 return isl_basic_map_plain_cmp(bmap1, bmap2);
9683 /* Sort the basic maps of "map" and remove duplicate basic maps.
9685 * While removing basic maps, we make sure that the basic maps remain
9686 * sorted because isl_map_normalize expects the basic maps of the result
9687 * to be sorted.
9689 static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
9691 int i, j;
9693 map = isl_map_remove_empty_parts(map);
9694 if (!map)
9695 return NULL;
9696 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
9697 for (i = map->n - 1; i >= 1; --i) {
9698 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
9699 continue;
9700 isl_basic_map_free(map->p[i-1]);
9701 for (j = i; j < map->n; ++j)
9702 map->p[j - 1] = map->p[j];
9703 map->n--;
9706 return map;
9709 /* Remove obvious duplicates among the basic maps of "map".
9711 * Unlike isl_map_normalize, this function does not remove redundant
9712 * constraints and only removes duplicates that have exactly the same
9713 * constraints in the input. It does sort the constraints and
9714 * the basic maps to ease the detection of duplicates.
9716 * If "map" has already been normalized or if the basic maps are
9717 * disjoint, then there can be no duplicates.
9719 __isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
9721 int i;
9722 isl_basic_map *bmap;
9724 if (!map)
9725 return NULL;
9726 if (map->n <= 1)
9727 return map;
9728 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
9729 return map;
9730 for (i = 0; i < map->n; ++i) {
9731 bmap = isl_basic_map_copy(map->p[i]);
9732 bmap = isl_basic_map_sort_constraints(bmap);
9733 if (!bmap)
9734 return isl_map_free(map);
9735 isl_basic_map_free(map->p[i]);
9736 map->p[i] = bmap;
9739 map = sort_and_remove_duplicates(map);
9740 return map;
9743 /* We normalize in place, but if anything goes wrong we need
9744 * to return NULL, so we need to make sure we don't change the
9745 * meaning of any possible other copies of map.
9747 __isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
9749 int i;
9750 struct isl_basic_map *bmap;
9752 if (!map)
9753 return NULL;
9754 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
9755 return map;
9756 for (i = 0; i < map->n; ++i) {
9757 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
9758 if (!bmap)
9759 goto error;
9760 isl_basic_map_free(map->p[i]);
9761 map->p[i] = bmap;
9764 map = sort_and_remove_duplicates(map);
9765 if (map)
9766 ISL_F_SET(map, ISL_MAP_NORMALIZED);
9767 return map;
9768 error:
9769 isl_map_free(map);
9770 return NULL;
9773 struct isl_set *isl_set_normalize(struct isl_set *set)
9775 return set_from_map(isl_map_normalize(set_to_map(set)));
9778 isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
9779 __isl_keep isl_map *map2)
9781 int i;
9782 isl_bool equal;
9784 if (!map1 || !map2)
9785 return isl_bool_error;
9787 if (map1 == map2)
9788 return isl_bool_true;
9789 if (!isl_space_is_equal(map1->dim, map2->dim))
9790 return isl_bool_false;
9792 map1 = isl_map_copy(map1);
9793 map2 = isl_map_copy(map2);
9794 map1 = isl_map_normalize(map1);
9795 map2 = isl_map_normalize(map2);
9796 if (!map1 || !map2)
9797 goto error;
9798 equal = map1->n == map2->n;
9799 for (i = 0; equal && i < map1->n; ++i) {
9800 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
9801 if (equal < 0)
9802 goto error;
9804 isl_map_free(map1);
9805 isl_map_free(map2);
9806 return equal;
9807 error:
9808 isl_map_free(map1);
9809 isl_map_free(map2);
9810 return isl_bool_error;
9813 isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
9814 __isl_keep isl_set *set2)
9816 return isl_map_plain_is_equal(set_to_map(set1), set_to_map(set2));
9819 /* Return the basic maps in "map" as a list.
9821 __isl_give isl_basic_map_list *isl_map_get_basic_map_list(
9822 __isl_keep isl_map *map)
9824 int i;
9825 isl_ctx *ctx;
9826 isl_basic_map_list *list;
9828 if (!map)
9829 return NULL;
9830 ctx = isl_map_get_ctx(map);
9831 list = isl_basic_map_list_alloc(ctx, map->n);
9833 for (i = 0; i < map->n; ++i) {
9834 isl_basic_map *bmap;
9836 bmap = isl_basic_map_copy(map->p[i]);
9837 list = isl_basic_map_list_add(list, bmap);
9840 return list;
9843 /* Return the intersection of the elements in the non-empty list "list".
9844 * All elements are assumed to live in the same space.
9846 __isl_give isl_basic_map *isl_basic_map_list_intersect(
9847 __isl_take isl_basic_map_list *list)
9849 int i, n;
9850 isl_basic_map *bmap;
9852 if (!list)
9853 return NULL;
9854 n = isl_basic_map_list_n_basic_map(list);
9855 if (n < 1)
9856 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
9857 "expecting non-empty list", goto error);
9859 bmap = isl_basic_map_list_get_basic_map(list, 0);
9860 for (i = 1; i < n; ++i) {
9861 isl_basic_map *bmap_i;
9863 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9864 bmap = isl_basic_map_intersect(bmap, bmap_i);
9867 isl_basic_map_list_free(list);
9868 return bmap;
9869 error:
9870 isl_basic_map_list_free(list);
9871 return NULL;
9874 /* Return the intersection of the elements in the non-empty list "list".
9875 * All elements are assumed to live in the same space.
9877 __isl_give isl_basic_set *isl_basic_set_list_intersect(
9878 __isl_take isl_basic_set_list *list)
9880 return isl_basic_map_list_intersect(list);
9883 /* Return the union of the elements of "list".
9884 * The list is required to have at least one element.
9886 __isl_give isl_set *isl_basic_set_list_union(
9887 __isl_take isl_basic_set_list *list)
9889 int i, n;
9890 isl_space *space;
9891 isl_basic_set *bset;
9892 isl_set *set;
9894 if (!list)
9895 return NULL;
9896 n = isl_basic_set_list_n_basic_set(list);
9897 if (n < 1)
9898 isl_die(isl_basic_set_list_get_ctx(list), isl_error_invalid,
9899 "expecting non-empty list", goto error);
9901 bset = isl_basic_set_list_get_basic_set(list, 0);
9902 space = isl_basic_set_get_space(bset);
9903 isl_basic_set_free(bset);
9905 set = isl_set_alloc_space(space, n, 0);
9906 for (i = 0; i < n; ++i) {
9907 bset = isl_basic_set_list_get_basic_set(list, i);
9908 set = isl_set_add_basic_set(set, bset);
9911 isl_basic_set_list_free(list);
9912 return set;
9913 error:
9914 isl_basic_set_list_free(list);
9915 return NULL;
9918 /* Return the union of the elements in the non-empty list "list".
9919 * All elements are assumed to live in the same space.
9921 __isl_give isl_set *isl_set_list_union(__isl_take isl_set_list *list)
9923 int i, n;
9924 isl_set *set;
9926 if (!list)
9927 return NULL;
9928 n = isl_set_list_n_set(list);
9929 if (n < 1)
9930 isl_die(isl_set_list_get_ctx(list), isl_error_invalid,
9931 "expecting non-empty list", goto error);
9933 set = isl_set_list_get_set(list, 0);
9934 for (i = 1; i < n; ++i) {
9935 isl_set *set_i;
9937 set_i = isl_set_list_get_set(list, i);
9938 set = isl_set_union(set, set_i);
9941 isl_set_list_free(list);
9942 return set;
9943 error:
9944 isl_set_list_free(list);
9945 return NULL;
9948 __isl_give isl_basic_map *isl_basic_map_product(
9949 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9951 isl_space *space_result = NULL;
9952 struct isl_basic_map *bmap;
9953 unsigned in1, in2, out1, out2, nparam, total, pos;
9954 struct isl_dim_map *dim_map1, *dim_map2;
9956 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
9957 goto error;
9958 space_result = isl_space_product(isl_space_copy(bmap1->dim),
9959 isl_space_copy(bmap2->dim));
9961 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9962 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9963 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9964 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9965 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9967 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
9968 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9969 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9970 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9971 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9972 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9973 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9974 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9975 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9976 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9977 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9979 bmap = isl_basic_map_alloc_space(space_result,
9980 bmap1->n_div + bmap2->n_div,
9981 bmap1->n_eq + bmap2->n_eq,
9982 bmap1->n_ineq + bmap2->n_ineq);
9983 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9984 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9985 bmap = isl_basic_map_simplify(bmap);
9986 return isl_basic_map_finalize(bmap);
9987 error:
9988 isl_basic_map_free(bmap1);
9989 isl_basic_map_free(bmap2);
9990 return NULL;
9993 __isl_give isl_basic_map *isl_basic_map_flat_product(
9994 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9996 isl_basic_map *prod;
9998 prod = isl_basic_map_product(bmap1, bmap2);
9999 prod = isl_basic_map_flatten(prod);
10000 return prod;
10003 __isl_give isl_basic_set *isl_basic_set_flat_product(
10004 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
10006 return isl_basic_map_flat_range_product(bset1, bset2);
10009 __isl_give isl_basic_map *isl_basic_map_domain_product(
10010 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10012 isl_space *space_result = NULL;
10013 isl_basic_map *bmap;
10014 unsigned in1, in2, out, nparam, total, pos;
10015 struct isl_dim_map *dim_map1, *dim_map2;
10017 if (!bmap1 || !bmap2)
10018 goto error;
10020 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
10021 isl_space_copy(bmap2->dim));
10023 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
10024 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
10025 out = isl_basic_map_dim(bmap1, isl_dim_out);
10026 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10028 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
10029 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10030 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10031 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10032 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10033 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10034 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
10035 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
10036 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
10037 isl_dim_map_div(dim_map1, bmap1, pos += out);
10038 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10040 bmap = isl_basic_map_alloc_space(space_result,
10041 bmap1->n_div + bmap2->n_div,
10042 bmap1->n_eq + bmap2->n_eq,
10043 bmap1->n_ineq + bmap2->n_ineq);
10044 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10045 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10046 bmap = isl_basic_map_simplify(bmap);
10047 return isl_basic_map_finalize(bmap);
10048 error:
10049 isl_basic_map_free(bmap1);
10050 isl_basic_map_free(bmap2);
10051 return NULL;
10054 __isl_give isl_basic_map *isl_basic_map_range_product(
10055 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10057 isl_bool rational;
10058 isl_space *space_result = NULL;
10059 isl_basic_map *bmap;
10060 unsigned in, out1, out2, nparam, total, pos;
10061 struct isl_dim_map *dim_map1, *dim_map2;
10063 rational = isl_basic_map_is_rational(bmap1);
10064 if (rational >= 0 && rational)
10065 rational = isl_basic_map_is_rational(bmap2);
10066 if (!bmap1 || !bmap2 || rational < 0)
10067 goto error;
10069 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
10070 goto error;
10072 space_result = isl_space_range_product(isl_space_copy(bmap1->dim),
10073 isl_space_copy(bmap2->dim));
10075 in = isl_basic_map_dim(bmap1, isl_dim_in);
10076 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
10077 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
10078 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10080 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
10081 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10082 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10083 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10084 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10085 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10086 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
10087 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
10088 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
10089 isl_dim_map_div(dim_map1, bmap1, pos += out2);
10090 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10092 bmap = isl_basic_map_alloc_space(space_result,
10093 bmap1->n_div + bmap2->n_div,
10094 bmap1->n_eq + bmap2->n_eq,
10095 bmap1->n_ineq + bmap2->n_ineq);
10096 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10097 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10098 if (rational)
10099 bmap = isl_basic_map_set_rational(bmap);
10100 bmap = isl_basic_map_simplify(bmap);
10101 return isl_basic_map_finalize(bmap);
10102 error:
10103 isl_basic_map_free(bmap1);
10104 isl_basic_map_free(bmap2);
10105 return NULL;
10108 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
10109 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10111 isl_basic_map *prod;
10113 prod = isl_basic_map_range_product(bmap1, bmap2);
10114 prod = isl_basic_map_flatten_range(prod);
10115 return prod;
10118 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
10119 * and collect the results.
10120 * The result live in the space obtained by calling "space_product"
10121 * on the spaces of "map1" and "map2".
10122 * If "remove_duplicates" is set then the result may contain duplicates
10123 * (even if the inputs do not) and so we try and remove the obvious
10124 * duplicates.
10126 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
10127 __isl_take isl_map *map2,
10128 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
10129 __isl_take isl_space *right),
10130 __isl_give isl_basic_map *(*basic_map_product)(
10131 __isl_take isl_basic_map *left,
10132 __isl_take isl_basic_map *right),
10133 int remove_duplicates)
10135 unsigned flags = 0;
10136 struct isl_map *result;
10137 int i, j;
10138 isl_bool m;
10140 m = isl_map_has_equal_params(map1, map2);
10141 if (m < 0)
10142 goto error;
10143 if (!m)
10144 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
10145 "parameters don't match", goto error);
10147 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
10148 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
10149 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
10151 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
10152 isl_space_copy(map2->dim)),
10153 map1->n * map2->n, flags);
10154 if (!result)
10155 goto error;
10156 for (i = 0; i < map1->n; ++i)
10157 for (j = 0; j < map2->n; ++j) {
10158 struct isl_basic_map *part;
10159 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
10160 isl_basic_map_copy(map2->p[j]));
10161 if (isl_basic_map_is_empty(part))
10162 isl_basic_map_free(part);
10163 else
10164 result = isl_map_add_basic_map(result, part);
10165 if (!result)
10166 goto error;
10168 if (remove_duplicates)
10169 result = isl_map_remove_obvious_duplicates(result);
10170 isl_map_free(map1);
10171 isl_map_free(map2);
10172 return result;
10173 error:
10174 isl_map_free(map1);
10175 isl_map_free(map2);
10176 return NULL;
10179 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
10181 static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
10182 __isl_take isl_map *map2)
10184 return map_product(map1, map2, &isl_space_product,
10185 &isl_basic_map_product, 0);
10188 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
10189 __isl_take isl_map *map2)
10191 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
10194 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
10196 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
10197 __isl_take isl_map *map2)
10199 isl_map *prod;
10201 prod = isl_map_product(map1, map2);
10202 prod = isl_map_flatten(prod);
10203 return prod;
10206 /* Given two set A and B, construct its Cartesian product A x B.
10208 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
10210 return isl_map_range_product(set1, set2);
10213 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
10214 __isl_take isl_set *set2)
10216 return isl_map_flat_range_product(set1, set2);
10219 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10221 static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
10222 __isl_take isl_map *map2)
10224 return map_product(map1, map2, &isl_space_domain_product,
10225 &isl_basic_map_domain_product, 1);
10228 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10230 static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
10231 __isl_take isl_map *map2)
10233 return map_product(map1, map2, &isl_space_range_product,
10234 &isl_basic_map_range_product, 1);
10237 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
10238 __isl_take isl_map *map2)
10240 return isl_map_align_params_map_map_and(map1, map2,
10241 &map_domain_product_aligned);
10244 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
10245 __isl_take isl_map *map2)
10247 return isl_map_align_params_map_map_and(map1, map2,
10248 &map_range_product_aligned);
10251 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10253 __isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
10255 isl_space *space;
10256 int total1, keep1, total2, keep2;
10258 if (!map)
10259 return NULL;
10260 if (!isl_space_domain_is_wrapping(map->dim) ||
10261 !isl_space_range_is_wrapping(map->dim))
10262 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10263 "not a product", return isl_map_free(map));
10265 space = isl_map_get_space(map);
10266 total1 = isl_space_dim(space, isl_dim_in);
10267 total2 = isl_space_dim(space, isl_dim_out);
10268 space = isl_space_factor_domain(space);
10269 keep1 = isl_space_dim(space, isl_dim_in);
10270 keep2 = isl_space_dim(space, isl_dim_out);
10271 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
10272 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
10273 map = isl_map_reset_space(map, space);
10275 return map;
10278 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10280 __isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
10282 isl_space *space;
10283 int total1, keep1, total2, keep2;
10285 if (!map)
10286 return NULL;
10287 if (!isl_space_domain_is_wrapping(map->dim) ||
10288 !isl_space_range_is_wrapping(map->dim))
10289 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10290 "not a product", return isl_map_free(map));
10292 space = isl_map_get_space(map);
10293 total1 = isl_space_dim(space, isl_dim_in);
10294 total2 = isl_space_dim(space, isl_dim_out);
10295 space = isl_space_factor_range(space);
10296 keep1 = isl_space_dim(space, isl_dim_in);
10297 keep2 = isl_space_dim(space, isl_dim_out);
10298 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
10299 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
10300 map = isl_map_reset_space(map, space);
10302 return map;
10305 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10307 __isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
10309 isl_space *space;
10310 int total, keep;
10312 if (!map)
10313 return NULL;
10314 if (!isl_space_domain_is_wrapping(map->dim))
10315 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10316 "domain is not a product", return isl_map_free(map));
10318 space = isl_map_get_space(map);
10319 total = isl_space_dim(space, isl_dim_in);
10320 space = isl_space_domain_factor_domain(space);
10321 keep = isl_space_dim(space, isl_dim_in);
10322 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
10323 map = isl_map_reset_space(map, space);
10325 return map;
10328 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10330 __isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
10332 isl_space *space;
10333 int total, keep;
10335 if (!map)
10336 return NULL;
10337 if (!isl_space_domain_is_wrapping(map->dim))
10338 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10339 "domain is not a product", return isl_map_free(map));
10341 space = isl_map_get_space(map);
10342 total = isl_space_dim(space, isl_dim_in);
10343 space = isl_space_domain_factor_range(space);
10344 keep = isl_space_dim(space, isl_dim_in);
10345 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
10346 map = isl_map_reset_space(map, space);
10348 return map;
10351 /* Given a map A -> [B -> C], extract the map A -> B.
10353 __isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
10355 isl_space *space;
10356 int total, keep;
10358 if (!map)
10359 return NULL;
10360 if (!isl_space_range_is_wrapping(map->dim))
10361 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10362 "range is not a product", return isl_map_free(map));
10364 space = isl_map_get_space(map);
10365 total = isl_space_dim(space, isl_dim_out);
10366 space = isl_space_range_factor_domain(space);
10367 keep = isl_space_dim(space, isl_dim_out);
10368 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
10369 map = isl_map_reset_space(map, space);
10371 return map;
10374 /* Given a map A -> [B -> C], extract the map A -> C.
10376 __isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
10378 isl_space *space;
10379 int total, keep;
10381 if (!map)
10382 return NULL;
10383 if (!isl_space_range_is_wrapping(map->dim))
10384 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10385 "range is not a product", return isl_map_free(map));
10387 space = isl_map_get_space(map);
10388 total = isl_space_dim(space, isl_dim_out);
10389 space = isl_space_range_factor_range(space);
10390 keep = isl_space_dim(space, isl_dim_out);
10391 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
10392 map = isl_map_reset_space(map, space);
10394 return map;
10397 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10399 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
10400 __isl_take isl_map *map2)
10402 isl_map *prod;
10404 prod = isl_map_domain_product(map1, map2);
10405 prod = isl_map_flatten_domain(prod);
10406 return prod;
10409 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10411 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
10412 __isl_take isl_map *map2)
10414 isl_map *prod;
10416 prod = isl_map_range_product(map1, map2);
10417 prod = isl_map_flatten_range(prod);
10418 return prod;
10421 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
10423 int i;
10424 uint32_t hash = isl_hash_init();
10425 unsigned total;
10427 if (!bmap)
10428 return 0;
10429 bmap = isl_basic_map_copy(bmap);
10430 bmap = isl_basic_map_normalize(bmap);
10431 if (!bmap)
10432 return 0;
10433 total = isl_basic_map_total_dim(bmap);
10434 isl_hash_byte(hash, bmap->n_eq & 0xFF);
10435 for (i = 0; i < bmap->n_eq; ++i) {
10436 uint32_t c_hash;
10437 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
10438 isl_hash_hash(hash, c_hash);
10440 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
10441 for (i = 0; i < bmap->n_ineq; ++i) {
10442 uint32_t c_hash;
10443 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
10444 isl_hash_hash(hash, c_hash);
10446 isl_hash_byte(hash, bmap->n_div & 0xFF);
10447 for (i = 0; i < bmap->n_div; ++i) {
10448 uint32_t c_hash;
10449 if (isl_int_is_zero(bmap->div[i][0]))
10450 continue;
10451 isl_hash_byte(hash, i & 0xFF);
10452 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
10453 isl_hash_hash(hash, c_hash);
10455 isl_basic_map_free(bmap);
10456 return hash;
10459 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
10461 return isl_basic_map_get_hash(bset_to_bmap(bset));
10464 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
10466 int i;
10467 uint32_t hash;
10469 if (!map)
10470 return 0;
10471 map = isl_map_copy(map);
10472 map = isl_map_normalize(map);
10473 if (!map)
10474 return 0;
10476 hash = isl_hash_init();
10477 for (i = 0; i < map->n; ++i) {
10478 uint32_t bmap_hash;
10479 bmap_hash = isl_basic_map_get_hash(map->p[i]);
10480 isl_hash_hash(hash, bmap_hash);
10483 isl_map_free(map);
10485 return hash;
10488 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
10490 return isl_map_get_hash(set_to_map(set));
10493 /* Return the number of basic maps in the (current) representation of "map".
10495 int isl_map_n_basic_map(__isl_keep isl_map *map)
10497 return map ? map->n : 0;
10500 int isl_set_n_basic_set(__isl_keep isl_set *set)
10502 return set ? set->n : 0;
10505 isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
10506 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
10508 int i;
10510 if (!map)
10511 return isl_stat_error;
10513 for (i = 0; i < map->n; ++i)
10514 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
10515 return isl_stat_error;
10517 return isl_stat_ok;
10520 isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
10521 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
10523 int i;
10525 if (!set)
10526 return isl_stat_error;
10528 for (i = 0; i < set->n; ++i)
10529 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
10530 return isl_stat_error;
10532 return isl_stat_ok;
10535 /* Return a list of basic sets, the union of which is equal to "set".
10537 __isl_give isl_basic_set_list *isl_set_get_basic_set_list(
10538 __isl_keep isl_set *set)
10540 int i;
10541 isl_basic_set_list *list;
10543 if (!set)
10544 return NULL;
10546 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
10547 for (i = 0; i < set->n; ++i) {
10548 isl_basic_set *bset;
10550 bset = isl_basic_set_copy(set->p[i]);
10551 list = isl_basic_set_list_add(list, bset);
10554 return list;
10557 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
10559 isl_space *space;
10561 if (!bset)
10562 return NULL;
10564 bset = isl_basic_set_cow(bset);
10565 if (!bset)
10566 return NULL;
10568 space = isl_basic_set_get_space(bset);
10569 space = isl_space_lift(space, bset->n_div);
10570 if (!space)
10571 goto error;
10572 isl_space_free(bset->dim);
10573 bset->dim = space;
10574 bset->extra -= bset->n_div;
10575 bset->n_div = 0;
10577 bset = isl_basic_set_finalize(bset);
10579 return bset;
10580 error:
10581 isl_basic_set_free(bset);
10582 return NULL;
10585 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
10587 int i;
10588 isl_space *space;
10589 unsigned n_div;
10591 set = set_from_map(isl_map_align_divs_internal(set_to_map(set)));
10593 if (!set)
10594 return NULL;
10596 set = isl_set_cow(set);
10597 if (!set)
10598 return NULL;
10600 n_div = set->p[0]->n_div;
10601 space = isl_set_get_space(set);
10602 space = isl_space_lift(space, n_div);
10603 if (!space)
10604 goto error;
10605 isl_space_free(set->dim);
10606 set->dim = space;
10608 for (i = 0; i < set->n; ++i) {
10609 set->p[i] = isl_basic_set_lift(set->p[i]);
10610 if (!set->p[i])
10611 goto error;
10614 return set;
10615 error:
10616 isl_set_free(set);
10617 return NULL;
10620 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
10622 unsigned dim;
10623 int size = 0;
10625 if (!bset)
10626 return -1;
10628 dim = isl_basic_set_total_dim(bset);
10629 size += bset->n_eq * (1 + dim);
10630 size += bset->n_ineq * (1 + dim);
10631 size += bset->n_div * (2 + dim);
10633 return size;
10636 int isl_set_size(__isl_keep isl_set *set)
10638 int i;
10639 int size = 0;
10641 if (!set)
10642 return -1;
10644 for (i = 0; i < set->n; ++i)
10645 size += isl_basic_set_size(set->p[i]);
10647 return size;
10650 /* Check if there is any lower bound (if lower == 0) and/or upper
10651 * bound (if upper == 0) on the specified dim.
10653 static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10654 enum isl_dim_type type, unsigned pos, int lower, int upper)
10656 int i;
10658 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
10659 return isl_bool_error;
10661 pos += isl_basic_map_offset(bmap, type);
10663 for (i = 0; i < bmap->n_div; ++i) {
10664 if (isl_int_is_zero(bmap->div[i][0]))
10665 continue;
10666 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
10667 return isl_bool_true;
10670 for (i = 0; i < bmap->n_eq; ++i)
10671 if (!isl_int_is_zero(bmap->eq[i][pos]))
10672 return isl_bool_true;
10674 for (i = 0; i < bmap->n_ineq; ++i) {
10675 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
10676 if (sgn > 0)
10677 lower = 1;
10678 if (sgn < 0)
10679 upper = 1;
10682 return lower && upper;
10685 isl_bool isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10686 enum isl_dim_type type, unsigned pos)
10688 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
10691 isl_bool isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
10692 enum isl_dim_type type, unsigned pos)
10694 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
10697 isl_bool isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
10698 enum isl_dim_type type, unsigned pos)
10700 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
10703 isl_bool isl_map_dim_is_bounded(__isl_keep isl_map *map,
10704 enum isl_dim_type type, unsigned pos)
10706 int i;
10708 if (!map)
10709 return isl_bool_error;
10711 for (i = 0; i < map->n; ++i) {
10712 isl_bool bounded;
10713 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
10714 if (bounded < 0 || !bounded)
10715 return bounded;
10718 return isl_bool_true;
10721 /* Return true if the specified dim is involved in both an upper bound
10722 * and a lower bound.
10724 isl_bool isl_set_dim_is_bounded(__isl_keep isl_set *set,
10725 enum isl_dim_type type, unsigned pos)
10727 return isl_map_dim_is_bounded(set_to_map(set), type, pos);
10730 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10732 static isl_bool has_any_bound(__isl_keep isl_map *map,
10733 enum isl_dim_type type, unsigned pos,
10734 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10735 enum isl_dim_type type, unsigned pos))
10737 int i;
10739 if (!map)
10740 return isl_bool_error;
10742 for (i = 0; i < map->n; ++i) {
10743 isl_bool bounded;
10744 bounded = fn(map->p[i], type, pos);
10745 if (bounded < 0 || bounded)
10746 return bounded;
10749 return isl_bool_false;
10752 /* Return 1 if the specified dim is involved in any lower bound.
10754 isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
10755 enum isl_dim_type type, unsigned pos)
10757 return has_any_bound(set, type, pos,
10758 &isl_basic_map_dim_has_lower_bound);
10761 /* Return 1 if the specified dim is involved in any upper bound.
10763 isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
10764 enum isl_dim_type type, unsigned pos)
10766 return has_any_bound(set, type, pos,
10767 &isl_basic_map_dim_has_upper_bound);
10770 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10772 static isl_bool has_bound(__isl_keep isl_map *map,
10773 enum isl_dim_type type, unsigned pos,
10774 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10775 enum isl_dim_type type, unsigned pos))
10777 int i;
10779 if (!map)
10780 return isl_bool_error;
10782 for (i = 0; i < map->n; ++i) {
10783 isl_bool bounded;
10784 bounded = fn(map->p[i], type, pos);
10785 if (bounded < 0 || !bounded)
10786 return bounded;
10789 return isl_bool_true;
10792 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10794 isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
10795 enum isl_dim_type type, unsigned pos)
10797 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
10800 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10802 isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
10803 enum isl_dim_type type, unsigned pos)
10805 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
10808 /* For each of the "n" variables starting at "first", determine
10809 * the sign of the variable and put the results in the first "n"
10810 * elements of the array "signs".
10811 * Sign
10812 * 1 means that the variable is non-negative
10813 * -1 means that the variable is non-positive
10814 * 0 means the variable attains both positive and negative values.
10816 isl_stat isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
10817 unsigned first, unsigned n, int *signs)
10819 isl_vec *bound = NULL;
10820 struct isl_tab *tab = NULL;
10821 struct isl_tab_undo *snap;
10822 int i;
10824 if (!bset || !signs)
10825 return isl_stat_error;
10827 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
10828 tab = isl_tab_from_basic_set(bset, 0);
10829 if (!bound || !tab)
10830 goto error;
10832 isl_seq_clr(bound->el, bound->size);
10833 isl_int_set_si(bound->el[0], -1);
10835 snap = isl_tab_snap(tab);
10836 for (i = 0; i < n; ++i) {
10837 int empty;
10839 isl_int_set_si(bound->el[1 + first + i], -1);
10840 if (isl_tab_add_ineq(tab, bound->el) < 0)
10841 goto error;
10842 empty = tab->empty;
10843 isl_int_set_si(bound->el[1 + first + i], 0);
10844 if (isl_tab_rollback(tab, snap) < 0)
10845 goto error;
10847 if (empty) {
10848 signs[i] = 1;
10849 continue;
10852 isl_int_set_si(bound->el[1 + first + i], 1);
10853 if (isl_tab_add_ineq(tab, bound->el) < 0)
10854 goto error;
10855 empty = tab->empty;
10856 isl_int_set_si(bound->el[1 + first + i], 0);
10857 if (isl_tab_rollback(tab, snap) < 0)
10858 goto error;
10860 signs[i] = empty ? -1 : 0;
10863 isl_tab_free(tab);
10864 isl_vec_free(bound);
10865 return isl_stat_ok;
10866 error:
10867 isl_tab_free(tab);
10868 isl_vec_free(bound);
10869 return isl_stat_error;
10872 isl_stat isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
10873 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
10875 if (!bset || !signs)
10876 return isl_stat_error;
10877 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
10878 return isl_stat_error);
10880 first += pos(bset->dim, type) - 1;
10881 return isl_basic_set_vars_get_sign(bset, first, n, signs);
10884 /* Is it possible for the integer division "div" to depend (possibly
10885 * indirectly) on any output dimensions?
10887 * If the div is undefined, then we conservatively assume that it
10888 * may depend on them.
10889 * Otherwise, we check if it actually depends on them or on any integer
10890 * divisions that may depend on them.
10892 static isl_bool div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
10894 int i;
10895 unsigned n_out, o_out;
10896 unsigned n_div, o_div;
10898 if (isl_int_is_zero(bmap->div[div][0]))
10899 return isl_bool_true;
10901 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10902 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10904 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
10905 return isl_bool_true;
10907 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10908 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10910 for (i = 0; i < n_div; ++i) {
10911 isl_bool may_involve;
10913 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
10914 continue;
10915 may_involve = div_may_involve_output(bmap, i);
10916 if (may_involve < 0 || may_involve)
10917 return may_involve;
10920 return isl_bool_false;
10923 /* Return the first integer division of "bmap" in the range
10924 * [first, first + n[ that may depend on any output dimensions and
10925 * that has a non-zero coefficient in "c" (where the first coefficient
10926 * in "c" corresponds to integer division "first").
10928 static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
10929 isl_int *c, int first, int n)
10931 int k;
10933 if (!bmap)
10934 return -1;
10936 for (k = first; k < first + n; ++k) {
10937 isl_bool may_involve;
10939 if (isl_int_is_zero(c[k]))
10940 continue;
10941 may_involve = div_may_involve_output(bmap, k);
10942 if (may_involve < 0)
10943 return -1;
10944 if (may_involve)
10945 return k;
10948 return first + n;
10951 /* Look for a pair of inequality constraints in "bmap" of the form
10953 * -l + i >= 0 or i >= l
10954 * and
10955 * n + l - i >= 0 or i <= l + n
10957 * with n < "m" and i the output dimension at position "pos".
10958 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10959 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10960 * and earlier output dimensions, as well as integer divisions that do
10961 * not involve any of the output dimensions.
10963 * Return the index of the first inequality constraint or bmap->n_ineq
10964 * if no such pair can be found.
10966 static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
10967 int pos, isl_int m)
10969 int i, j;
10970 isl_ctx *ctx;
10971 unsigned total;
10972 unsigned n_div, o_div;
10973 unsigned n_out, o_out;
10974 int less;
10976 if (!bmap)
10977 return -1;
10979 ctx = isl_basic_map_get_ctx(bmap);
10980 total = isl_basic_map_total_dim(bmap);
10981 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10982 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10983 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10984 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10985 for (i = 0; i < bmap->n_ineq; ++i) {
10986 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
10987 continue;
10988 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
10989 n_out - (pos + 1)) != -1)
10990 continue;
10991 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
10992 0, n_div) < n_div)
10993 continue;
10994 for (j = i + 1; j < bmap->n_ineq; ++j) {
10995 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
10996 ctx->one))
10997 continue;
10998 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
10999 bmap->ineq[j] + 1, total))
11000 continue;
11001 break;
11003 if (j >= bmap->n_ineq)
11004 continue;
11005 isl_int_add(bmap->ineq[i][0],
11006 bmap->ineq[i][0], bmap->ineq[j][0]);
11007 less = isl_int_abs_lt(bmap->ineq[i][0], m);
11008 isl_int_sub(bmap->ineq[i][0],
11009 bmap->ineq[i][0], bmap->ineq[j][0]);
11010 if (!less)
11011 continue;
11012 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
11013 return i;
11014 else
11015 return j;
11018 return bmap->n_ineq;
11021 /* Return the index of the equality of "bmap" that defines
11022 * the output dimension "pos" in terms of earlier dimensions.
11023 * The equality may also involve integer divisions, as long
11024 * as those integer divisions are defined in terms of
11025 * parameters or input dimensions.
11026 * In this case, *div is set to the number of integer divisions and
11027 * *ineq is set to the number of inequality constraints (provided
11028 * div and ineq are not NULL).
11030 * The equality may also involve a single integer division involving
11031 * the output dimensions (typically only output dimension "pos") as
11032 * long as the coefficient of output dimension "pos" is 1 or -1 and
11033 * there is a pair of constraints i >= l and i <= l + n, with i referring
11034 * to output dimension "pos", l an expression involving only earlier
11035 * dimensions and n smaller than the coefficient of the integer division
11036 * in the equality. In this case, the output dimension can be defined
11037 * in terms of a modulo expression that does not involve the integer division.
11038 * *div is then set to this single integer division and
11039 * *ineq is set to the index of constraint i >= l.
11041 * Return bmap->n_eq if there is no such equality.
11042 * Return -1 on error.
11044 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
11045 int pos, int *div, int *ineq)
11047 int j, k, l;
11048 unsigned n_out, o_out;
11049 unsigned n_div, o_div;
11051 if (!bmap)
11052 return -1;
11054 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11055 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11056 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11057 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11059 if (ineq)
11060 *ineq = bmap->n_ineq;
11061 if (div)
11062 *div = n_div;
11063 for (j = 0; j < bmap->n_eq; ++j) {
11064 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
11065 continue;
11066 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
11067 n_out - (pos + 1)) != -1)
11068 continue;
11069 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11070 0, n_div);
11071 if (k >= n_div)
11072 return j;
11073 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
11074 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
11075 continue;
11076 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11077 k + 1, n_div - (k+1)) < n_div)
11078 continue;
11079 l = find_modulo_constraint_pair(bmap, pos,
11080 bmap->eq[j][o_div + k]);
11081 if (l < 0)
11082 return -1;
11083 if (l >= bmap->n_ineq)
11084 continue;
11085 if (div)
11086 *div = k;
11087 if (ineq)
11088 *ineq = l;
11089 return j;
11092 return bmap->n_eq;
11095 /* Check if the given basic map is obviously single-valued.
11096 * In particular, for each output dimension, check that there is
11097 * an equality that defines the output dimension in terms of
11098 * earlier dimensions.
11100 isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
11102 int i;
11103 unsigned n_out;
11105 if (!bmap)
11106 return isl_bool_error;
11108 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11110 for (i = 0; i < n_out; ++i) {
11111 int eq;
11113 eq = isl_basic_map_output_defining_equality(bmap, i,
11114 NULL, NULL);
11115 if (eq < 0)
11116 return isl_bool_error;
11117 if (eq >= bmap->n_eq)
11118 return isl_bool_false;
11121 return isl_bool_true;
11124 /* Check if the given basic map is single-valued.
11125 * We simply compute
11127 * M \circ M^-1
11129 * and check if the result is a subset of the identity mapping.
11131 isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
11133 isl_space *space;
11134 isl_basic_map *test;
11135 isl_basic_map *id;
11136 isl_bool sv;
11138 sv = isl_basic_map_plain_is_single_valued(bmap);
11139 if (sv < 0 || sv)
11140 return sv;
11142 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
11143 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
11145 space = isl_basic_map_get_space(bmap);
11146 space = isl_space_map_from_set(isl_space_range(space));
11147 id = isl_basic_map_identity(space);
11149 sv = isl_basic_map_is_subset(test, id);
11151 isl_basic_map_free(test);
11152 isl_basic_map_free(id);
11154 return sv;
11157 /* Check if the given map is obviously single-valued.
11159 isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
11161 if (!map)
11162 return isl_bool_error;
11163 if (map->n == 0)
11164 return isl_bool_true;
11165 if (map->n >= 2)
11166 return isl_bool_false;
11168 return isl_basic_map_plain_is_single_valued(map->p[0]);
11171 /* Check if the given map is single-valued.
11172 * We simply compute
11174 * M \circ M^-1
11176 * and check if the result is a subset of the identity mapping.
11178 isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
11180 isl_space *dim;
11181 isl_map *test;
11182 isl_map *id;
11183 isl_bool sv;
11185 sv = isl_map_plain_is_single_valued(map);
11186 if (sv < 0 || sv)
11187 return sv;
11189 test = isl_map_reverse(isl_map_copy(map));
11190 test = isl_map_apply_range(test, isl_map_copy(map));
11192 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
11193 id = isl_map_identity(dim);
11195 sv = isl_map_is_subset(test, id);
11197 isl_map_free(test);
11198 isl_map_free(id);
11200 return sv;
11203 isl_bool isl_map_is_injective(__isl_keep isl_map *map)
11205 isl_bool in;
11207 map = isl_map_copy(map);
11208 map = isl_map_reverse(map);
11209 in = isl_map_is_single_valued(map);
11210 isl_map_free(map);
11212 return in;
11215 /* Check if the given map is obviously injective.
11217 isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
11219 isl_bool in;
11221 map = isl_map_copy(map);
11222 map = isl_map_reverse(map);
11223 in = isl_map_plain_is_single_valued(map);
11224 isl_map_free(map);
11226 return in;
11229 isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
11231 isl_bool sv;
11233 sv = isl_map_is_single_valued(map);
11234 if (sv < 0 || !sv)
11235 return sv;
11237 return isl_map_is_injective(map);
11240 isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
11242 return isl_map_is_single_valued(set_to_map(set));
11245 /* Does "map" only map elements to themselves?
11247 * If the domain and range spaces are different, then "map"
11248 * is considered not to be an identity relation, even if it is empty.
11249 * Otherwise, construct the maximal identity relation and
11250 * check whether "map" is a subset of this relation.
11252 isl_bool isl_map_is_identity(__isl_keep isl_map *map)
11254 isl_space *space;
11255 isl_map *id;
11256 isl_bool equal, is_identity;
11258 space = isl_map_get_space(map);
11259 equal = isl_space_tuple_is_equal(space, isl_dim_in, space, isl_dim_out);
11260 isl_space_free(space);
11261 if (equal < 0 || !equal)
11262 return equal;
11264 id = isl_map_identity(isl_map_get_space(map));
11265 is_identity = isl_map_is_subset(map, id);
11266 isl_map_free(id);
11268 return is_identity;
11271 int isl_map_is_translation(__isl_keep isl_map *map)
11273 int ok;
11274 isl_set *delta;
11276 delta = isl_map_deltas(isl_map_copy(map));
11277 ok = isl_set_is_singleton(delta);
11278 isl_set_free(delta);
11280 return ok;
11283 static int unique(isl_int *p, unsigned pos, unsigned len)
11285 if (isl_seq_first_non_zero(p, pos) != -1)
11286 return 0;
11287 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
11288 return 0;
11289 return 1;
11292 isl_bool isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
11294 int i, j;
11295 unsigned nvar;
11296 unsigned ovar;
11298 if (!bset)
11299 return isl_bool_error;
11301 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
11302 return isl_bool_false;
11304 nvar = isl_basic_set_dim(bset, isl_dim_set);
11305 ovar = isl_space_offset(bset->dim, isl_dim_set);
11306 for (j = 0; j < nvar; ++j) {
11307 int lower = 0, upper = 0;
11308 for (i = 0; i < bset->n_eq; ++i) {
11309 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
11310 continue;
11311 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
11312 return isl_bool_false;
11313 break;
11315 if (i < bset->n_eq)
11316 continue;
11317 for (i = 0; i < bset->n_ineq; ++i) {
11318 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
11319 continue;
11320 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
11321 return isl_bool_false;
11322 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
11323 lower = 1;
11324 else
11325 upper = 1;
11327 if (!lower || !upper)
11328 return isl_bool_false;
11331 return isl_bool_true;
11334 isl_bool isl_set_is_box(__isl_keep isl_set *set)
11336 if (!set)
11337 return isl_bool_error;
11338 if (set->n != 1)
11339 return isl_bool_false;
11341 return isl_basic_set_is_box(set->p[0]);
11344 isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
11346 if (!bset)
11347 return isl_bool_error;
11349 return isl_space_is_wrapping(bset->dim);
11352 isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
11354 if (!set)
11355 return isl_bool_error;
11357 return isl_space_is_wrapping(set->dim);
11360 /* Modify the space of "map" through a call to "change".
11361 * If "can_change" is set (not NULL), then first call it to check
11362 * if the modification is allowed, printing the error message "cannot_change"
11363 * if it is not.
11365 static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
11366 isl_bool (*can_change)(__isl_keep isl_map *map),
11367 const char *cannot_change,
11368 __isl_give isl_space *(*change)(__isl_take isl_space *space))
11370 isl_bool ok;
11371 isl_space *space;
11373 if (!map)
11374 return NULL;
11376 ok = can_change ? can_change(map) : isl_bool_true;
11377 if (ok < 0)
11378 return isl_map_free(map);
11379 if (!ok)
11380 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
11381 return isl_map_free(map));
11383 space = change(isl_map_get_space(map));
11384 map = isl_map_reset_space(map, space);
11386 return map;
11389 /* Is the domain of "map" a wrapped relation?
11391 isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
11393 if (!map)
11394 return isl_bool_error;
11396 return isl_space_domain_is_wrapping(map->dim);
11399 /* Does "map" have a wrapped relation in both domain and range?
11401 isl_bool isl_map_is_product(__isl_keep isl_map *map)
11403 return isl_space_is_product(isl_map_peek_space(map));
11406 /* Is the range of "map" a wrapped relation?
11408 isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
11410 if (!map)
11411 return isl_bool_error;
11413 return isl_space_range_is_wrapping(map->dim);
11416 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
11418 bmap = isl_basic_map_cow(bmap);
11419 if (!bmap)
11420 return NULL;
11422 bmap->dim = isl_space_wrap(bmap->dim);
11423 if (!bmap->dim)
11424 goto error;
11426 bmap = isl_basic_map_finalize(bmap);
11428 return bset_from_bmap(bmap);
11429 error:
11430 isl_basic_map_free(bmap);
11431 return NULL;
11434 /* Given a map A -> B, return the set (A -> B).
11436 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
11438 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
11441 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
11443 bset = isl_basic_set_cow(bset);
11444 if (!bset)
11445 return NULL;
11447 bset->dim = isl_space_unwrap(bset->dim);
11448 if (!bset->dim)
11449 goto error;
11451 bset = isl_basic_set_finalize(bset);
11453 return bset_to_bmap(bset);
11454 error:
11455 isl_basic_set_free(bset);
11456 return NULL;
11459 /* Given a set (A -> B), return the map A -> B.
11460 * Error out if "set" is not of the form (A -> B).
11462 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
11464 return isl_map_change_space(set, &isl_set_is_wrapping,
11465 "not a wrapping set", &isl_space_unwrap);
11468 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
11469 enum isl_dim_type type)
11471 if (!bmap)
11472 return NULL;
11474 if (!isl_space_is_named_or_nested(bmap->dim, type))
11475 return bmap;
11477 bmap = isl_basic_map_cow(bmap);
11478 if (!bmap)
11479 return NULL;
11481 bmap->dim = isl_space_reset(bmap->dim, type);
11482 if (!bmap->dim)
11483 goto error;
11485 bmap = isl_basic_map_finalize(bmap);
11487 return bmap;
11488 error:
11489 isl_basic_map_free(bmap);
11490 return NULL;
11493 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
11494 enum isl_dim_type type)
11496 int i;
11498 if (!map)
11499 return NULL;
11501 if (!isl_space_is_named_or_nested(map->dim, type))
11502 return map;
11504 map = isl_map_cow(map);
11505 if (!map)
11506 return NULL;
11508 for (i = 0; i < map->n; ++i) {
11509 map->p[i] = isl_basic_map_reset(map->p[i], type);
11510 if (!map->p[i])
11511 goto error;
11513 map->dim = isl_space_reset(map->dim, type);
11514 if (!map->dim)
11515 goto error;
11517 return map;
11518 error:
11519 isl_map_free(map);
11520 return NULL;
11523 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
11525 if (!bmap)
11526 return NULL;
11528 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
11529 return bmap;
11531 bmap = isl_basic_map_cow(bmap);
11532 if (!bmap)
11533 return NULL;
11535 bmap->dim = isl_space_flatten(bmap->dim);
11536 if (!bmap->dim)
11537 goto error;
11539 bmap = isl_basic_map_finalize(bmap);
11541 return bmap;
11542 error:
11543 isl_basic_map_free(bmap);
11544 return NULL;
11547 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
11549 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset)));
11552 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
11553 __isl_take isl_basic_map *bmap)
11555 if (!bmap)
11556 return NULL;
11558 if (!bmap->dim->nested[0])
11559 return bmap;
11561 bmap = isl_basic_map_cow(bmap);
11562 if (!bmap)
11563 return NULL;
11565 bmap->dim = isl_space_flatten_domain(bmap->dim);
11566 if (!bmap->dim)
11567 goto error;
11569 bmap = isl_basic_map_finalize(bmap);
11571 return bmap;
11572 error:
11573 isl_basic_map_free(bmap);
11574 return NULL;
11577 __isl_give isl_basic_map *isl_basic_map_flatten_range(
11578 __isl_take isl_basic_map *bmap)
11580 if (!bmap)
11581 return NULL;
11583 if (!bmap->dim->nested[1])
11584 return bmap;
11586 bmap = isl_basic_map_cow(bmap);
11587 if (!bmap)
11588 return NULL;
11590 bmap->dim = isl_space_flatten_range(bmap->dim);
11591 if (!bmap->dim)
11592 goto error;
11594 bmap = isl_basic_map_finalize(bmap);
11596 return bmap;
11597 error:
11598 isl_basic_map_free(bmap);
11599 return NULL;
11602 /* Remove any internal structure from the spaces of domain and range of "map".
11604 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
11606 if (!map)
11607 return NULL;
11609 if (!map->dim->nested[0] && !map->dim->nested[1])
11610 return map;
11612 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
11615 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
11617 return set_from_map(isl_map_flatten(set_to_map(set)));
11620 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
11622 isl_space *space, *flat_space;
11623 isl_map *map;
11625 space = isl_set_get_space(set);
11626 flat_space = isl_space_flatten(isl_space_copy(space));
11627 map = isl_map_identity(isl_space_join(isl_space_reverse(space),
11628 flat_space));
11629 map = isl_map_intersect_domain(map, set);
11631 return map;
11634 /* Remove any internal structure from the space of the domain of "map".
11636 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
11638 if (!map)
11639 return NULL;
11641 if (!map->dim->nested[0])
11642 return map;
11644 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
11647 /* Remove any internal structure from the space of the range of "map".
11649 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
11651 if (!map)
11652 return NULL;
11654 if (!map->dim->nested[1])
11655 return map;
11657 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
11660 /* Reorder the dimensions of "bmap" according to the given dim_map
11661 * and set the dimension specification to "space" and
11662 * perform Gaussian elimination on the result.
11664 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
11665 __isl_take isl_space *space, __isl_take struct isl_dim_map *dim_map)
11667 isl_basic_map *res;
11668 unsigned flags;
11669 unsigned n_div;
11671 if (!bmap || !space || !dim_map)
11672 goto error;
11674 flags = bmap->flags;
11675 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
11676 ISL_FL_CLR(flags, ISL_BASIC_MAP_SORTED);
11677 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
11678 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11679 res = isl_basic_map_alloc_space(space, n_div, bmap->n_eq, bmap->n_ineq);
11680 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
11681 if (res)
11682 res->flags = flags;
11683 res = isl_basic_map_gauss(res, NULL);
11684 res = isl_basic_map_finalize(res);
11685 return res;
11686 error:
11687 free(dim_map);
11688 isl_basic_map_free(bmap);
11689 isl_space_free(space);
11690 return NULL;
11693 /* Reorder the dimensions of "map" according to given reordering.
11695 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
11696 __isl_take isl_reordering *r)
11698 int i;
11699 struct isl_dim_map *dim_map;
11701 map = isl_map_cow(map);
11702 dim_map = isl_dim_map_from_reordering(r);
11703 if (!map || !r || !dim_map)
11704 goto error;
11706 for (i = 0; i < map->n; ++i) {
11707 struct isl_dim_map *dim_map_i;
11708 isl_space *space;
11710 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
11712 space = isl_reordering_get_space(r);
11713 map->p[i] = isl_basic_map_realign(map->p[i], space, dim_map_i);
11715 if (!map->p[i])
11716 goto error;
11719 map = isl_map_reset_space(map, isl_reordering_get_space(r));
11720 map = isl_map_unmark_normalized(map);
11722 isl_reordering_free(r);
11723 free(dim_map);
11724 return map;
11725 error:
11726 free(dim_map);
11727 isl_map_free(map);
11728 isl_reordering_free(r);
11729 return NULL;
11732 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
11733 __isl_take isl_reordering *r)
11735 return set_from_map(isl_map_realign(set_to_map(set), r));
11738 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
11739 __isl_take isl_space *model)
11741 isl_ctx *ctx;
11742 isl_bool aligned;
11744 if (!map || !model)
11745 goto error;
11747 ctx = isl_space_get_ctx(model);
11748 if (!isl_space_has_named_params(model))
11749 isl_die(ctx, isl_error_invalid,
11750 "model has unnamed parameters", goto error);
11751 if (isl_map_check_named_params(map) < 0)
11752 goto error;
11753 aligned = isl_map_space_has_equal_params(map, model);
11754 if (aligned < 0)
11755 goto error;
11756 if (!aligned) {
11757 isl_reordering *exp;
11759 exp = isl_parameter_alignment_reordering(map->dim, model);
11760 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
11761 map = isl_map_realign(map, exp);
11764 isl_space_free(model);
11765 return map;
11766 error:
11767 isl_space_free(model);
11768 isl_map_free(map);
11769 return NULL;
11772 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
11773 __isl_take isl_space *model)
11775 return isl_map_align_params(set, model);
11778 /* Align the parameters of "bmap" to those of "model", introducing
11779 * additional parameters if needed.
11781 __isl_give isl_basic_map *isl_basic_map_align_params(
11782 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
11784 isl_ctx *ctx;
11785 isl_bool equal_params;
11787 if (!bmap || !model)
11788 goto error;
11790 ctx = isl_space_get_ctx(model);
11791 if (!isl_space_has_named_params(model))
11792 isl_die(ctx, isl_error_invalid,
11793 "model has unnamed parameters", goto error);
11794 if (isl_basic_map_check_named_params(bmap) < 0)
11795 goto error;
11796 equal_params = isl_space_has_equal_params(bmap->dim, model);
11797 if (equal_params < 0)
11798 goto error;
11799 if (!equal_params) {
11800 isl_reordering *exp;
11801 struct isl_dim_map *dim_map;
11803 exp = isl_parameter_alignment_reordering(bmap->dim, model);
11804 exp = isl_reordering_extend_space(exp,
11805 isl_basic_map_get_space(bmap));
11806 dim_map = isl_dim_map_from_reordering(exp);
11807 bmap = isl_basic_map_realign(bmap,
11808 isl_reordering_get_space(exp),
11809 isl_dim_map_extend(dim_map, bmap));
11810 isl_reordering_free(exp);
11811 free(dim_map);
11814 isl_space_free(model);
11815 return bmap;
11816 error:
11817 isl_space_free(model);
11818 isl_basic_map_free(bmap);
11819 return NULL;
11822 /* Do "bset" and "space" have the same parameters?
11824 isl_bool isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set *bset,
11825 __isl_keep isl_space *space)
11827 isl_space *bset_space;
11829 bset_space = isl_basic_set_peek_space(bset);
11830 return isl_space_has_equal_params(bset_space, space);
11833 /* Do "map" and "space" have the same parameters?
11835 isl_bool isl_map_space_has_equal_params(__isl_keep isl_map *map,
11836 __isl_keep isl_space *space)
11838 isl_space *map_space;
11840 map_space = isl_map_peek_space(map);
11841 return isl_space_has_equal_params(map_space, space);
11844 /* Do "set" and "space" have the same parameters?
11846 isl_bool isl_set_space_has_equal_params(__isl_keep isl_set *set,
11847 __isl_keep isl_space *space)
11849 return isl_map_space_has_equal_params(set_to_map(set), space);
11852 /* Align the parameters of "bset" to those of "model", introducing
11853 * additional parameters if needed.
11855 __isl_give isl_basic_set *isl_basic_set_align_params(
11856 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
11858 return isl_basic_map_align_params(bset, model);
11861 /* Drop all parameters not referenced by "map".
11863 __isl_give isl_map *isl_map_drop_unused_params(__isl_take isl_map *map)
11865 int i;
11867 if (isl_map_check_named_params(map) < 0)
11868 return isl_map_free(map);
11870 for (i = isl_map_dim(map, isl_dim_param) - 1; i >= 0; i--) {
11871 isl_bool involves;
11873 involves = isl_map_involves_dims(map, isl_dim_param, i, 1);
11874 if (involves < 0)
11875 return isl_map_free(map);
11876 if (!involves)
11877 map = isl_map_project_out(map, isl_dim_param, i, 1);
11880 return map;
11883 /* Drop all parameters not referenced by "set".
11885 __isl_give isl_set *isl_set_drop_unused_params(
11886 __isl_take isl_set *set)
11888 return set_from_map(isl_map_drop_unused_params(set_to_map(set)));
11891 /* Drop all parameters not referenced by "bmap".
11893 __isl_give isl_basic_map *isl_basic_map_drop_unused_params(
11894 __isl_take isl_basic_map *bmap)
11896 int i;
11898 if (isl_basic_map_check_named_params(bmap) < 0)
11899 return isl_basic_map_free(bmap);
11901 for (i = isl_basic_map_dim(bmap, isl_dim_param) - 1; i >= 0; i--) {
11902 isl_bool involves;
11904 involves = isl_basic_map_involves_dims(bmap,
11905 isl_dim_param, i, 1);
11906 if (involves < 0)
11907 return isl_basic_map_free(bmap);
11908 if (!involves)
11909 bmap = isl_basic_map_drop(bmap, isl_dim_param, i, 1);
11912 return bmap;
11915 /* Drop all parameters not referenced by "bset".
11917 __isl_give isl_basic_set *isl_basic_set_drop_unused_params(
11918 __isl_take isl_basic_set *bset)
11920 return bset_from_bmap(isl_basic_map_drop_unused_params(
11921 bset_to_bmap(bset)));
11924 __isl_give isl_mat *isl_basic_map_equalities_matrix(
11925 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11926 enum isl_dim_type c2, enum isl_dim_type c3,
11927 enum isl_dim_type c4, enum isl_dim_type c5)
11929 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11930 struct isl_mat *mat;
11931 int i, j, k;
11932 int pos;
11934 if (!bmap)
11935 return NULL;
11936 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
11937 isl_basic_map_total_dim(bmap) + 1);
11938 if (!mat)
11939 return NULL;
11940 for (i = 0; i < bmap->n_eq; ++i)
11941 for (j = 0, pos = 0; j < 5; ++j) {
11942 int off = isl_basic_map_offset(bmap, c[j]);
11943 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11944 isl_int_set(mat->row[i][pos],
11945 bmap->eq[i][off + k]);
11946 ++pos;
11950 return mat;
11953 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
11954 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11955 enum isl_dim_type c2, enum isl_dim_type c3,
11956 enum isl_dim_type c4, enum isl_dim_type c5)
11958 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11959 struct isl_mat *mat;
11960 int i, j, k;
11961 int pos;
11963 if (!bmap)
11964 return NULL;
11965 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
11966 isl_basic_map_total_dim(bmap) + 1);
11967 if (!mat)
11968 return NULL;
11969 for (i = 0; i < bmap->n_ineq; ++i)
11970 for (j = 0, pos = 0; j < 5; ++j) {
11971 int off = isl_basic_map_offset(bmap, c[j]);
11972 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11973 isl_int_set(mat->row[i][pos],
11974 bmap->ineq[i][off + k]);
11975 ++pos;
11979 return mat;
11982 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
11983 __isl_take isl_space *space,
11984 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11985 enum isl_dim_type c2, enum isl_dim_type c3,
11986 enum isl_dim_type c4, enum isl_dim_type c5)
11988 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11989 isl_basic_map *bmap = NULL;
11990 unsigned total;
11991 unsigned extra;
11992 int i, j, k, l;
11993 int pos;
11995 if (!space || !eq || !ineq)
11996 goto error;
11998 if (eq->n_col != ineq->n_col)
11999 isl_die(space->ctx, isl_error_invalid,
12000 "equalities and inequalities matrices should have "
12001 "same number of columns", goto error);
12003 total = 1 + isl_space_dim(space, isl_dim_all);
12005 if (eq->n_col < total)
12006 isl_die(space->ctx, isl_error_invalid,
12007 "number of columns too small", goto error);
12009 extra = eq->n_col - total;
12011 bmap = isl_basic_map_alloc_space(isl_space_copy(space), extra,
12012 eq->n_row, ineq->n_row);
12013 if (!bmap)
12014 goto error;
12015 for (i = 0; i < extra; ++i) {
12016 k = isl_basic_map_alloc_div(bmap);
12017 if (k < 0)
12018 goto error;
12019 isl_int_set_si(bmap->div[k][0], 0);
12021 for (i = 0; i < eq->n_row; ++i) {
12022 l = isl_basic_map_alloc_equality(bmap);
12023 if (l < 0)
12024 goto error;
12025 for (j = 0, pos = 0; j < 5; ++j) {
12026 int off = isl_basic_map_offset(bmap, c[j]);
12027 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
12028 isl_int_set(bmap->eq[l][off + k],
12029 eq->row[i][pos]);
12030 ++pos;
12034 for (i = 0; i < ineq->n_row; ++i) {
12035 l = isl_basic_map_alloc_inequality(bmap);
12036 if (l < 0)
12037 goto error;
12038 for (j = 0, pos = 0; j < 5; ++j) {
12039 int off = isl_basic_map_offset(bmap, c[j]);
12040 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
12041 isl_int_set(bmap->ineq[l][off + k],
12042 ineq->row[i][pos]);
12043 ++pos;
12048 isl_space_free(space);
12049 isl_mat_free(eq);
12050 isl_mat_free(ineq);
12052 bmap = isl_basic_map_simplify(bmap);
12053 return isl_basic_map_finalize(bmap);
12054 error:
12055 isl_space_free(space);
12056 isl_mat_free(eq);
12057 isl_mat_free(ineq);
12058 isl_basic_map_free(bmap);
12059 return NULL;
12062 __isl_give isl_mat *isl_basic_set_equalities_matrix(
12063 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
12064 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12066 return isl_basic_map_equalities_matrix(bset_to_bmap(bset),
12067 c1, c2, c3, c4, isl_dim_in);
12070 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
12071 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
12072 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12074 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset),
12075 c1, c2, c3, c4, isl_dim_in);
12078 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
12079 __isl_take isl_space *dim,
12080 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
12081 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12083 isl_basic_map *bmap;
12084 bmap = isl_basic_map_from_constraint_matrices(dim, eq, ineq,
12085 c1, c2, c3, c4, isl_dim_in);
12086 return bset_from_bmap(bmap);
12089 isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
12091 if (!bmap)
12092 return isl_bool_error;
12094 return isl_space_can_zip(bmap->dim);
12097 isl_bool isl_map_can_zip(__isl_keep isl_map *map)
12099 if (!map)
12100 return isl_bool_error;
12102 return isl_space_can_zip(map->dim);
12105 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
12106 * (A -> C) -> (B -> D).
12108 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
12110 unsigned pos;
12111 unsigned n1;
12112 unsigned n2;
12114 if (!bmap)
12115 return NULL;
12117 if (!isl_basic_map_can_zip(bmap))
12118 isl_die(bmap->ctx, isl_error_invalid,
12119 "basic map cannot be zipped", goto error);
12120 pos = isl_basic_map_offset(bmap, isl_dim_in) +
12121 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
12122 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
12123 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
12124 bmap = isl_basic_map_cow(bmap);
12125 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
12126 if (!bmap)
12127 return NULL;
12128 bmap->dim = isl_space_zip(bmap->dim);
12129 if (!bmap->dim)
12130 goto error;
12131 bmap = isl_basic_map_mark_final(bmap);
12132 return bmap;
12133 error:
12134 isl_basic_map_free(bmap);
12135 return NULL;
12138 /* Given a map (A -> B) -> (C -> D), return the corresponding map
12139 * (A -> C) -> (B -> D).
12141 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
12143 int i;
12145 if (!map)
12146 return NULL;
12148 if (!isl_map_can_zip(map))
12149 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
12150 goto error);
12152 map = isl_map_cow(map);
12153 if (!map)
12154 return NULL;
12156 for (i = 0; i < map->n; ++i) {
12157 map->p[i] = isl_basic_map_zip(map->p[i]);
12158 if (!map->p[i])
12159 goto error;
12162 map->dim = isl_space_zip(map->dim);
12163 if (!map->dim)
12164 goto error;
12166 return map;
12167 error:
12168 isl_map_free(map);
12169 return NULL;
12172 /* Can we apply isl_basic_map_curry to "bmap"?
12173 * That is, does it have a nested relation in its domain?
12175 isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
12177 if (!bmap)
12178 return isl_bool_error;
12180 return isl_space_can_curry(bmap->dim);
12183 /* Can we apply isl_map_curry to "map"?
12184 * That is, does it have a nested relation in its domain?
12186 isl_bool isl_map_can_curry(__isl_keep isl_map *map)
12188 if (!map)
12189 return isl_bool_error;
12191 return isl_space_can_curry(map->dim);
12194 /* Given a basic map (A -> B) -> C, return the corresponding basic map
12195 * A -> (B -> C).
12197 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
12200 if (!bmap)
12201 return NULL;
12203 if (!isl_basic_map_can_curry(bmap))
12204 isl_die(bmap->ctx, isl_error_invalid,
12205 "basic map cannot be curried", goto error);
12206 bmap = isl_basic_map_cow(bmap);
12207 if (!bmap)
12208 return NULL;
12209 bmap->dim = isl_space_curry(bmap->dim);
12210 if (!bmap->dim)
12211 goto error;
12212 bmap = isl_basic_map_mark_final(bmap);
12213 return bmap;
12214 error:
12215 isl_basic_map_free(bmap);
12216 return NULL;
12219 /* Given a map (A -> B) -> C, return the corresponding map
12220 * A -> (B -> C).
12222 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
12224 return isl_map_change_space(map, &isl_map_can_curry,
12225 "map cannot be curried", &isl_space_curry);
12228 /* Can isl_map_range_curry be applied to "map"?
12229 * That is, does it have a nested relation in its range,
12230 * the domain of which is itself a nested relation?
12232 isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
12234 if (!map)
12235 return isl_bool_error;
12237 return isl_space_can_range_curry(map->dim);
12240 /* Given a map A -> ((B -> C) -> D), return the corresponding map
12241 * A -> (B -> (C -> D)).
12243 __isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
12245 return isl_map_change_space(map, &isl_map_can_range_curry,
12246 "map range cannot be curried",
12247 &isl_space_range_curry);
12250 /* Can we apply isl_basic_map_uncurry to "bmap"?
12251 * That is, does it have a nested relation in its domain?
12253 isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
12255 if (!bmap)
12256 return isl_bool_error;
12258 return isl_space_can_uncurry(bmap->dim);
12261 /* Can we apply isl_map_uncurry to "map"?
12262 * That is, does it have a nested relation in its domain?
12264 isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
12266 if (!map)
12267 return isl_bool_error;
12269 return isl_space_can_uncurry(map->dim);
12272 /* Given a basic map A -> (B -> C), return the corresponding basic map
12273 * (A -> B) -> C.
12275 __isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
12278 if (!bmap)
12279 return NULL;
12281 if (!isl_basic_map_can_uncurry(bmap))
12282 isl_die(bmap->ctx, isl_error_invalid,
12283 "basic map cannot be uncurried",
12284 return isl_basic_map_free(bmap));
12285 bmap = isl_basic_map_cow(bmap);
12286 if (!bmap)
12287 return NULL;
12288 bmap->dim = isl_space_uncurry(bmap->dim);
12289 if (!bmap->dim)
12290 return isl_basic_map_free(bmap);
12291 bmap = isl_basic_map_mark_final(bmap);
12292 return bmap;
12295 /* Given a map A -> (B -> C), return the corresponding map
12296 * (A -> B) -> C.
12298 __isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
12300 return isl_map_change_space(map, &isl_map_can_uncurry,
12301 "map cannot be uncurried", &isl_space_uncurry);
12304 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
12305 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12307 return isl_map_equate(set, type1, pos1, type2, pos2);
12310 /* Construct a basic map where the given dimensions are equal to each other.
12312 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
12313 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12315 isl_basic_map *bmap = NULL;
12316 int i;
12318 if (!space)
12319 return NULL;
12321 if (pos1 >= isl_space_dim(space, type1))
12322 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12323 "index out of bounds", goto error);
12324 if (pos2 >= isl_space_dim(space, type2))
12325 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12326 "index out of bounds", goto error);
12328 if (type1 == type2 && pos1 == pos2)
12329 return isl_basic_map_universe(space);
12331 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
12332 i = isl_basic_map_alloc_equality(bmap);
12333 if (i < 0)
12334 goto error;
12335 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12336 pos1 += isl_basic_map_offset(bmap, type1);
12337 pos2 += isl_basic_map_offset(bmap, type2);
12338 isl_int_set_si(bmap->eq[i][pos1], -1);
12339 isl_int_set_si(bmap->eq[i][pos2], 1);
12340 bmap = isl_basic_map_finalize(bmap);
12341 isl_space_free(space);
12342 return bmap;
12343 error:
12344 isl_space_free(space);
12345 isl_basic_map_free(bmap);
12346 return NULL;
12349 /* Add a constraint imposing that the given two dimensions are equal.
12351 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
12352 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12354 isl_basic_map *eq;
12356 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12358 bmap = isl_basic_map_intersect(bmap, eq);
12360 return bmap;
12363 /* Add a constraint imposing that the given two dimensions are equal.
12365 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
12366 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12368 isl_basic_map *bmap;
12370 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
12372 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12374 return map;
12377 /* Add a constraint imposing that the given two dimensions have opposite values.
12379 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
12380 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12382 isl_basic_map *bmap = NULL;
12383 int i;
12385 if (!map)
12386 return NULL;
12388 if (pos1 >= isl_map_dim(map, type1))
12389 isl_die(map->ctx, isl_error_invalid,
12390 "index out of bounds", goto error);
12391 if (pos2 >= isl_map_dim(map, type2))
12392 isl_die(map->ctx, isl_error_invalid,
12393 "index out of bounds", goto error);
12395 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
12396 i = isl_basic_map_alloc_equality(bmap);
12397 if (i < 0)
12398 goto error;
12399 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12400 pos1 += isl_basic_map_offset(bmap, type1);
12401 pos2 += isl_basic_map_offset(bmap, type2);
12402 isl_int_set_si(bmap->eq[i][pos1], 1);
12403 isl_int_set_si(bmap->eq[i][pos2], 1);
12404 bmap = isl_basic_map_finalize(bmap);
12406 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12408 return map;
12409 error:
12410 isl_basic_map_free(bmap);
12411 isl_map_free(map);
12412 return NULL;
12415 /* Construct a constraint imposing that the value of the first dimension is
12416 * greater than or equal to that of the second.
12418 static __isl_give isl_constraint *constraint_order_ge(
12419 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
12420 enum isl_dim_type type2, int pos2)
12422 isl_constraint *c;
12424 if (!space)
12425 return NULL;
12427 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
12429 if (pos1 >= isl_constraint_dim(c, type1))
12430 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12431 "index out of bounds", return isl_constraint_free(c));
12432 if (pos2 >= isl_constraint_dim(c, type2))
12433 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12434 "index out of bounds", return isl_constraint_free(c));
12436 if (type1 == type2 && pos1 == pos2)
12437 return c;
12439 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
12440 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
12442 return c;
12445 /* Add a constraint imposing that the value of the first dimension is
12446 * greater than or equal to that of the second.
12448 __isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
12449 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12451 isl_constraint *c;
12452 isl_space *space;
12454 if (type1 == type2 && pos1 == pos2)
12455 return bmap;
12456 space = isl_basic_map_get_space(bmap);
12457 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12458 bmap = isl_basic_map_add_constraint(bmap, c);
12460 return bmap;
12463 /* Add a constraint imposing that the value of the first dimension is
12464 * greater than or equal to that of the second.
12466 __isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
12467 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12469 isl_constraint *c;
12470 isl_space *space;
12472 if (type1 == type2 && pos1 == pos2)
12473 return map;
12474 space = isl_map_get_space(map);
12475 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12476 map = isl_map_add_constraint(map, c);
12478 return map;
12481 /* Add a constraint imposing that the value of the first dimension is
12482 * less than or equal to that of the second.
12484 __isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
12485 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12487 return isl_map_order_ge(map, type2, pos2, type1, pos1);
12490 /* Construct a basic map where the value of the first dimension is
12491 * greater than that of the second.
12493 static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
12494 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12496 isl_basic_map *bmap = NULL;
12497 int i;
12499 if (!space)
12500 return NULL;
12502 if (pos1 >= isl_space_dim(space, type1))
12503 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12504 "index out of bounds", goto error);
12505 if (pos2 >= isl_space_dim(space, type2))
12506 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12507 "index out of bounds", goto error);
12509 if (type1 == type2 && pos1 == pos2)
12510 return isl_basic_map_empty(space);
12512 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
12513 i = isl_basic_map_alloc_inequality(bmap);
12514 if (i < 0)
12515 return isl_basic_map_free(bmap);
12516 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
12517 pos1 += isl_basic_map_offset(bmap, type1);
12518 pos2 += isl_basic_map_offset(bmap, type2);
12519 isl_int_set_si(bmap->ineq[i][pos1], 1);
12520 isl_int_set_si(bmap->ineq[i][pos2], -1);
12521 isl_int_set_si(bmap->ineq[i][0], -1);
12522 bmap = isl_basic_map_finalize(bmap);
12524 return bmap;
12525 error:
12526 isl_space_free(space);
12527 isl_basic_map_free(bmap);
12528 return NULL;
12531 /* Add a constraint imposing that the value of the first dimension is
12532 * greater than that of the second.
12534 __isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
12535 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12537 isl_basic_map *gt;
12539 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12541 bmap = isl_basic_map_intersect(bmap, gt);
12543 return bmap;
12546 /* Add a constraint imposing that the value of the first dimension is
12547 * greater than that of the second.
12549 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
12550 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12552 isl_basic_map *bmap;
12554 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
12556 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12558 return map;
12561 /* Add a constraint imposing that the value of the first dimension is
12562 * smaller than that of the second.
12564 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
12565 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12567 return isl_map_order_gt(map, type2, pos2, type1, pos1);
12570 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
12571 int pos)
12573 isl_aff *div;
12574 isl_local_space *ls;
12576 if (!bmap)
12577 return NULL;
12579 if (!isl_basic_map_divs_known(bmap))
12580 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12581 "some divs are unknown", return NULL);
12583 ls = isl_basic_map_get_local_space(bmap);
12584 div = isl_local_space_get_div(ls, pos);
12585 isl_local_space_free(ls);
12587 return div;
12590 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
12591 int pos)
12593 return isl_basic_map_get_div(bset, pos);
12596 /* Plug in "subs" for dimension "type", "pos" of "bset".
12598 * Let i be the dimension to replace and let "subs" be of the form
12600 * f/d
12602 * Any integer division with a non-zero coefficient for i,
12604 * floor((a i + g)/m)
12606 * is replaced by
12608 * floor((a f + d g)/(m d))
12610 * Constraints of the form
12612 * a i + g
12614 * are replaced by
12616 * a f + d g
12618 * We currently require that "subs" is an integral expression.
12619 * Handling rational expressions may require us to add stride constraints
12620 * as we do in isl_basic_set_preimage_multi_aff.
12622 __isl_give isl_basic_set *isl_basic_set_substitute(
12623 __isl_take isl_basic_set *bset,
12624 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12626 int i;
12627 isl_int v;
12628 isl_ctx *ctx;
12630 if (bset && isl_basic_set_plain_is_empty(bset))
12631 return bset;
12633 bset = isl_basic_set_cow(bset);
12634 if (!bset || !subs)
12635 goto error;
12637 ctx = isl_basic_set_get_ctx(bset);
12638 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
12639 isl_die(ctx, isl_error_invalid,
12640 "spaces don't match", goto error);
12641 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
12642 isl_die(ctx, isl_error_unsupported,
12643 "cannot handle divs yet", goto error);
12644 if (!isl_int_is_one(subs->v->el[0]))
12645 isl_die(ctx, isl_error_invalid,
12646 "can only substitute integer expressions", goto error);
12648 pos += isl_basic_set_offset(bset, type);
12650 isl_int_init(v);
12652 for (i = 0; i < bset->n_eq; ++i) {
12653 if (isl_int_is_zero(bset->eq[i][pos]))
12654 continue;
12655 isl_int_set(v, bset->eq[i][pos]);
12656 isl_int_set_si(bset->eq[i][pos], 0);
12657 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
12658 v, subs->v->el + 1, subs->v->size - 1);
12661 for (i = 0; i < bset->n_ineq; ++i) {
12662 if (isl_int_is_zero(bset->ineq[i][pos]))
12663 continue;
12664 isl_int_set(v, bset->ineq[i][pos]);
12665 isl_int_set_si(bset->ineq[i][pos], 0);
12666 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
12667 v, subs->v->el + 1, subs->v->size - 1);
12670 for (i = 0; i < bset->n_div; ++i) {
12671 if (isl_int_is_zero(bset->div[i][1 + pos]))
12672 continue;
12673 isl_int_set(v, bset->div[i][1 + pos]);
12674 isl_int_set_si(bset->div[i][1 + pos], 0);
12675 isl_seq_combine(bset->div[i] + 1,
12676 subs->v->el[0], bset->div[i] + 1,
12677 v, subs->v->el + 1, subs->v->size - 1);
12678 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
12681 isl_int_clear(v);
12683 bset = isl_basic_set_simplify(bset);
12684 return isl_basic_set_finalize(bset);
12685 error:
12686 isl_basic_set_free(bset);
12687 return NULL;
12690 /* Plug in "subs" for dimension "type", "pos" of "set".
12692 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
12693 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12695 int i;
12697 if (set && isl_set_plain_is_empty(set))
12698 return set;
12700 set = isl_set_cow(set);
12701 if (!set || !subs)
12702 goto error;
12704 for (i = set->n - 1; i >= 0; --i) {
12705 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
12706 set = set_from_map(remove_if_empty(set_to_map(set), i));
12707 if (!set)
12708 return NULL;
12711 return set;
12712 error:
12713 isl_set_free(set);
12714 return NULL;
12717 /* Check if the range of "ma" is compatible with the domain or range
12718 * (depending on "type") of "bmap".
12720 static isl_stat check_basic_map_compatible_range_multi_aff(
12721 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
12722 __isl_keep isl_multi_aff *ma)
12724 isl_bool m;
12725 isl_space *ma_space;
12727 ma_space = isl_multi_aff_get_space(ma);
12729 m = isl_space_has_equal_params(bmap->dim, ma_space);
12730 if (m < 0)
12731 goto error;
12732 if (!m)
12733 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12734 "parameters don't match", goto error);
12735 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
12736 if (m < 0)
12737 goto error;
12738 if (!m)
12739 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12740 "spaces don't match", goto error);
12742 isl_space_free(ma_space);
12743 return isl_stat_ok;
12744 error:
12745 isl_space_free(ma_space);
12746 return isl_stat_error;
12749 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12750 * coefficients before the transformed range of dimensions,
12751 * the "n_after" coefficients after the transformed range of dimensions
12752 * and the coefficients of the other divs in "bmap".
12754 static int set_ma_divs(__isl_keep isl_basic_map *bmap,
12755 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
12757 int i;
12758 int n_param;
12759 int n_set;
12760 isl_local_space *ls;
12762 if (n_div == 0)
12763 return 0;
12765 ls = isl_aff_get_domain_local_space(ma->u.p[0]);
12766 if (!ls)
12767 return -1;
12769 n_param = isl_local_space_dim(ls, isl_dim_param);
12770 n_set = isl_local_space_dim(ls, isl_dim_set);
12771 for (i = 0; i < n_div; ++i) {
12772 int o_bmap = 0, o_ls = 0;
12774 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
12775 o_bmap += 1 + 1 + n_param;
12776 o_ls += 1 + 1 + n_param;
12777 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
12778 o_bmap += n_before;
12779 isl_seq_cpy(bmap->div[i] + o_bmap,
12780 ls->div->row[i] + o_ls, n_set);
12781 o_bmap += n_set;
12782 o_ls += n_set;
12783 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
12784 o_bmap += n_after;
12785 isl_seq_cpy(bmap->div[i] + o_bmap,
12786 ls->div->row[i] + o_ls, n_div);
12787 o_bmap += n_div;
12788 o_ls += n_div;
12789 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
12790 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
12791 goto error;
12794 isl_local_space_free(ls);
12795 return 0;
12796 error:
12797 isl_local_space_free(ls);
12798 return -1;
12801 /* How many stride constraints does "ma" enforce?
12802 * That is, how many of the affine expressions have a denominator
12803 * different from one?
12805 static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
12807 int i;
12808 int strides = 0;
12810 for (i = 0; i < ma->n; ++i)
12811 if (!isl_int_is_one(ma->u.p[i]->v->el[0]))
12812 strides++;
12814 return strides;
12817 /* For each affine expression in ma of the form
12819 * x_i = (f_i y + h_i)/m_i
12821 * with m_i different from one, add a constraint to "bmap"
12822 * of the form
12824 * f_i y + h_i = m_i alpha_i
12826 * with alpha_i an additional existentially quantified variable.
12828 * The input variables of "ma" correspond to a subset of the variables
12829 * of "bmap". There are "n_before" variables in "bmap" before this
12830 * subset and "n_after" variables after this subset.
12831 * The integer divisions of the affine expressions in "ma" are assumed
12832 * to have been aligned. There are "n_div_ma" of them and
12833 * they appear first in "bmap", straight after the "n_after" variables.
12835 static __isl_give isl_basic_map *add_ma_strides(
12836 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
12837 int n_before, int n_after, int n_div_ma)
12839 int i, k;
12840 int div;
12841 int total;
12842 int n_param;
12843 int n_in;
12845 total = isl_basic_map_total_dim(bmap);
12846 n_param = isl_multi_aff_dim(ma, isl_dim_param);
12847 n_in = isl_multi_aff_dim(ma, isl_dim_in);
12848 for (i = 0; i < ma->n; ++i) {
12849 int o_bmap = 0, o_ma = 1;
12851 if (isl_int_is_one(ma->u.p[i]->v->el[0]))
12852 continue;
12853 div = isl_basic_map_alloc_div(bmap);
12854 k = isl_basic_map_alloc_equality(bmap);
12855 if (div < 0 || k < 0)
12856 goto error;
12857 isl_int_set_si(bmap->div[div][0], 0);
12858 isl_seq_cpy(bmap->eq[k] + o_bmap,
12859 ma->u.p[i]->v->el + o_ma, 1 + n_param);
12860 o_bmap += 1 + n_param;
12861 o_ma += 1 + n_param;
12862 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
12863 o_bmap += n_before;
12864 isl_seq_cpy(bmap->eq[k] + o_bmap,
12865 ma->u.p[i]->v->el + o_ma, n_in);
12866 o_bmap += n_in;
12867 o_ma += n_in;
12868 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
12869 o_bmap += n_after;
12870 isl_seq_cpy(bmap->eq[k] + o_bmap,
12871 ma->u.p[i]->v->el + o_ma, n_div_ma);
12872 o_bmap += n_div_ma;
12873 o_ma += n_div_ma;
12874 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
12875 isl_int_neg(bmap->eq[k][1 + total], ma->u.p[i]->v->el[0]);
12876 total++;
12879 return bmap;
12880 error:
12881 isl_basic_map_free(bmap);
12882 return NULL;
12885 /* Replace the domain or range space (depending on "type) of "space" by "set".
12887 static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
12888 enum isl_dim_type type, __isl_take isl_space *set)
12890 if (type == isl_dim_in) {
12891 space = isl_space_range(space);
12892 space = isl_space_map_from_domain_and_range(set, space);
12893 } else {
12894 space = isl_space_domain(space);
12895 space = isl_space_map_from_domain_and_range(space, set);
12898 return space;
12901 /* Compute the preimage of the domain or range (depending on "type")
12902 * of "bmap" under the function represented by "ma".
12903 * In other words, plug in "ma" in the domain or range of "bmap".
12904 * The result is a basic map that lives in the same space as "bmap"
12905 * except that the domain or range has been replaced by
12906 * the domain space of "ma".
12908 * If bmap is represented by
12910 * A(p) + S u + B x + T v + C(divs) >= 0,
12912 * where u and x are input and output dimensions if type == isl_dim_out
12913 * while x and v are input and output dimensions if type == isl_dim_in,
12914 * and ma is represented by
12916 * x = D(p) + F(y) + G(divs')
12918 * then the result is
12920 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12922 * The divs in the input set are similarly adjusted.
12923 * In particular
12925 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12927 * becomes
12929 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12930 * B_i G(divs') + c_i(divs))/n_i)
12932 * If bmap is not a rational map and if F(y) involves any denominators
12934 * x_i = (f_i y + h_i)/m_i
12936 * then additional constraints are added to ensure that we only
12937 * map back integer points. That is we enforce
12939 * f_i y + h_i = m_i alpha_i
12941 * with alpha_i an additional existentially quantified variable.
12943 * We first copy over the divs from "ma".
12944 * Then we add the modified constraints and divs from "bmap".
12945 * Finally, we add the stride constraints, if needed.
12947 __isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
12948 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
12949 __isl_take isl_multi_aff *ma)
12951 int i, k;
12952 isl_space *space;
12953 isl_basic_map *res = NULL;
12954 int n_before, n_after, n_div_bmap, n_div_ma;
12955 isl_int f, c1, c2, g;
12956 isl_bool rational;
12957 int strides;
12959 isl_int_init(f);
12960 isl_int_init(c1);
12961 isl_int_init(c2);
12962 isl_int_init(g);
12964 ma = isl_multi_aff_align_divs(ma);
12965 if (!bmap || !ma)
12966 goto error;
12967 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
12968 goto error;
12970 if (type == isl_dim_in) {
12971 n_before = 0;
12972 n_after = isl_basic_map_dim(bmap, isl_dim_out);
12973 } else {
12974 n_before = isl_basic_map_dim(bmap, isl_dim_in);
12975 n_after = 0;
12977 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
12978 n_div_ma = ma->n ? isl_aff_dim(ma->u.p[0], isl_dim_div) : 0;
12980 space = isl_multi_aff_get_domain_space(ma);
12981 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
12982 rational = isl_basic_map_is_rational(bmap);
12983 strides = rational ? 0 : multi_aff_strides(ma);
12984 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
12985 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
12986 if (rational)
12987 res = isl_basic_map_set_rational(res);
12989 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
12990 if (isl_basic_map_alloc_div(res) < 0)
12991 goto error;
12993 if (set_ma_divs(res, ma, n_before, n_after, n_div_ma) < 0)
12994 goto error;
12996 for (i = 0; i < bmap->n_eq; ++i) {
12997 k = isl_basic_map_alloc_equality(res);
12998 if (k < 0)
12999 goto error;
13000 isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
13001 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13004 for (i = 0; i < bmap->n_ineq; ++i) {
13005 k = isl_basic_map_alloc_inequality(res);
13006 if (k < 0)
13007 goto error;
13008 isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
13009 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13012 for (i = 0; i < bmap->n_div; ++i) {
13013 if (isl_int_is_zero(bmap->div[i][0])) {
13014 isl_int_set_si(res->div[n_div_ma + i][0], 0);
13015 continue;
13017 isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
13018 n_before, n_after, n_div_ma, n_div_bmap,
13019 f, c1, c2, g, 1);
13022 if (strides)
13023 res = add_ma_strides(res, ma, n_before, n_after, n_div_ma);
13025 isl_int_clear(f);
13026 isl_int_clear(c1);
13027 isl_int_clear(c2);
13028 isl_int_clear(g);
13029 isl_basic_map_free(bmap);
13030 isl_multi_aff_free(ma);
13031 res = isl_basic_map_simplify(res);
13032 return isl_basic_map_finalize(res);
13033 error:
13034 isl_int_clear(f);
13035 isl_int_clear(c1);
13036 isl_int_clear(c2);
13037 isl_int_clear(g);
13038 isl_basic_map_free(bmap);
13039 isl_multi_aff_free(ma);
13040 isl_basic_map_free(res);
13041 return NULL;
13044 /* Compute the preimage of "bset" under the function represented by "ma".
13045 * In other words, plug in "ma" in "bset". The result is a basic set
13046 * that lives in the domain space of "ma".
13048 __isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
13049 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
13051 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
13054 /* Compute the preimage of the domain of "bmap" under the function
13055 * represented by "ma".
13056 * In other words, plug in "ma" in the domain of "bmap".
13057 * The result is a basic map that lives in the same space as "bmap"
13058 * except that the domain has been replaced by the domain space of "ma".
13060 __isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
13061 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13063 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
13066 /* Compute the preimage of the range of "bmap" under the function
13067 * represented by "ma".
13068 * In other words, plug in "ma" in the range of "bmap".
13069 * The result is a basic map that lives in the same space as "bmap"
13070 * except that the range has been replaced by the domain space of "ma".
13072 __isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
13073 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13075 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
13078 /* Check if the range of "ma" is compatible with the domain or range
13079 * (depending on "type") of "map".
13080 * Return isl_stat_error if anything is wrong.
13082 static isl_stat check_map_compatible_range_multi_aff(
13083 __isl_keep isl_map *map, enum isl_dim_type type,
13084 __isl_keep isl_multi_aff *ma)
13086 isl_bool m;
13087 isl_space *ma_space;
13089 ma_space = isl_multi_aff_get_space(ma);
13090 m = isl_space_tuple_is_equal(map->dim, type, ma_space, isl_dim_out);
13091 isl_space_free(ma_space);
13092 if (m < 0)
13093 return isl_stat_error;
13094 if (!m)
13095 isl_die(isl_map_get_ctx(map), isl_error_invalid,
13096 "spaces don't match", return isl_stat_error);
13097 return isl_stat_ok;
13100 /* Compute the preimage of the domain or range (depending on "type")
13101 * of "map" under the function represented by "ma".
13102 * In other words, plug in "ma" in the domain or range of "map".
13103 * The result is a map that lives in the same space as "map"
13104 * except that the domain or range has been replaced by
13105 * the domain space of "ma".
13107 * The parameters are assumed to have been aligned.
13109 static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
13110 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13112 int i;
13113 isl_space *space;
13115 map = isl_map_cow(map);
13116 ma = isl_multi_aff_align_divs(ma);
13117 if (!map || !ma)
13118 goto error;
13119 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
13120 goto error;
13122 for (i = 0; i < map->n; ++i) {
13123 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
13124 isl_multi_aff_copy(ma));
13125 if (!map->p[i])
13126 goto error;
13129 space = isl_multi_aff_get_domain_space(ma);
13130 space = isl_space_set(isl_map_get_space(map), type, space);
13132 isl_space_free(map->dim);
13133 map->dim = space;
13134 if (!map->dim)
13135 goto error;
13137 isl_multi_aff_free(ma);
13138 if (map->n > 1)
13139 ISL_F_CLR(map, ISL_MAP_DISJOINT);
13140 ISL_F_CLR(map, ISL_SET_NORMALIZED);
13141 return map;
13142 error:
13143 isl_multi_aff_free(ma);
13144 isl_map_free(map);
13145 return NULL;
13148 /* Compute the preimage of the domain or range (depending on "type")
13149 * of "map" under the function represented by "ma".
13150 * In other words, plug in "ma" in the domain or range of "map".
13151 * The result is a map that lives in the same space as "map"
13152 * except that the domain or range has been replaced by
13153 * the domain space of "ma".
13155 __isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
13156 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13158 isl_bool aligned;
13160 if (!map || !ma)
13161 goto error;
13163 aligned = isl_map_space_has_equal_params(map, ma->space);
13164 if (aligned < 0)
13165 goto error;
13166 if (aligned)
13167 return map_preimage_multi_aff(map, type, ma);
13169 if (isl_map_check_named_params(map) < 0)
13170 goto error;
13171 if (!isl_space_has_named_params(ma->space))
13172 isl_die(map->ctx, isl_error_invalid,
13173 "unaligned unnamed parameters", goto error);
13174 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
13175 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
13177 return map_preimage_multi_aff(map, type, ma);
13178 error:
13179 isl_multi_aff_free(ma);
13180 return isl_map_free(map);
13183 /* Compute the preimage of "set" under the function represented by "ma".
13184 * In other words, plug in "ma" in "set". The result is a set
13185 * that lives in the domain space of "ma".
13187 __isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
13188 __isl_take isl_multi_aff *ma)
13190 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
13193 /* Compute the preimage of the domain of "map" under the function
13194 * represented by "ma".
13195 * In other words, plug in "ma" in the domain of "map".
13196 * The result is a map that lives in the same space as "map"
13197 * except that the domain has been replaced by the domain space of "ma".
13199 __isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
13200 __isl_take isl_multi_aff *ma)
13202 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
13205 /* Compute the preimage of the range of "map" under the function
13206 * represented by "ma".
13207 * In other words, plug in "ma" in the range of "map".
13208 * The result is a map that lives in the same space as "map"
13209 * except that the range has been replaced by the domain space of "ma".
13211 __isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
13212 __isl_take isl_multi_aff *ma)
13214 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
13217 /* Compute the preimage of "map" under the function represented by "pma".
13218 * In other words, plug in "pma" in the domain or range of "map".
13219 * The result is a map that lives in the same space as "map",
13220 * except that the space of type "type" has been replaced by
13221 * the domain space of "pma".
13223 * The parameters of "map" and "pma" are assumed to have been aligned.
13225 static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
13226 __isl_take isl_map *map, enum isl_dim_type type,
13227 __isl_take isl_pw_multi_aff *pma)
13229 int i;
13230 isl_map *res;
13232 if (!pma)
13233 goto error;
13235 if (pma->n == 0) {
13236 isl_pw_multi_aff_free(pma);
13237 res = isl_map_empty(isl_map_get_space(map));
13238 isl_map_free(map);
13239 return res;
13242 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13243 isl_multi_aff_copy(pma->p[0].maff));
13244 if (type == isl_dim_in)
13245 res = isl_map_intersect_domain(res,
13246 isl_map_copy(pma->p[0].set));
13247 else
13248 res = isl_map_intersect_range(res,
13249 isl_map_copy(pma->p[0].set));
13251 for (i = 1; i < pma->n; ++i) {
13252 isl_map *res_i;
13254 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13255 isl_multi_aff_copy(pma->p[i].maff));
13256 if (type == isl_dim_in)
13257 res_i = isl_map_intersect_domain(res_i,
13258 isl_map_copy(pma->p[i].set));
13259 else
13260 res_i = isl_map_intersect_range(res_i,
13261 isl_map_copy(pma->p[i].set));
13262 res = isl_map_union(res, res_i);
13265 isl_pw_multi_aff_free(pma);
13266 isl_map_free(map);
13267 return res;
13268 error:
13269 isl_pw_multi_aff_free(pma);
13270 isl_map_free(map);
13271 return NULL;
13274 /* Compute the preimage of "map" under the function represented by "pma".
13275 * In other words, plug in "pma" in the domain or range of "map".
13276 * The result is a map that lives in the same space as "map",
13277 * except that the space of type "type" has been replaced by
13278 * the domain space of "pma".
13280 __isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
13281 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
13283 isl_bool aligned;
13285 if (!map || !pma)
13286 goto error;
13288 aligned = isl_map_space_has_equal_params(map, pma->dim);
13289 if (aligned < 0)
13290 goto error;
13291 if (aligned)
13292 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13294 if (isl_map_check_named_params(map) < 0)
13295 goto error;
13296 if (isl_pw_multi_aff_check_named_params(pma) < 0)
13297 goto error;
13298 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
13299 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
13301 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13302 error:
13303 isl_pw_multi_aff_free(pma);
13304 return isl_map_free(map);
13307 /* Compute the preimage of "set" under the function represented by "pma".
13308 * In other words, plug in "pma" in "set". The result is a set
13309 * that lives in the domain space of "pma".
13311 __isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
13312 __isl_take isl_pw_multi_aff *pma)
13314 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
13317 /* Compute the preimage of the domain of "map" under the function
13318 * represented by "pma".
13319 * In other words, plug in "pma" in the domain of "map".
13320 * The result is a map that lives in the same space as "map",
13321 * except that domain space has been replaced by the domain space of "pma".
13323 __isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
13324 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13326 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
13329 /* Compute the preimage of the range of "map" under the function
13330 * represented by "pma".
13331 * In other words, plug in "pma" in the range of "map".
13332 * The result is a map that lives in the same space as "map",
13333 * except that range space has been replaced by the domain space of "pma".
13335 __isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
13336 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13338 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
13341 /* Compute the preimage of "map" under the function represented by "mpa".
13342 * In other words, plug in "mpa" in the domain or range of "map".
13343 * The result is a map that lives in the same space as "map",
13344 * except that the space of type "type" has been replaced by
13345 * the domain space of "mpa".
13347 * If the map does not involve any constraints that refer to the
13348 * dimensions of the substituted space, then the only possible
13349 * effect of "mpa" on the map is to map the space to a different space.
13350 * We create a separate isl_multi_aff to effectuate this change
13351 * in order to avoid spurious splitting of the map along the pieces
13352 * of "mpa".
13353 * If "mpa" has a non-trivial explicit domain, however,
13354 * then the full substitution should be performed.
13356 __isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
13357 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
13359 int n;
13360 isl_bool full;
13361 isl_pw_multi_aff *pma;
13363 if (!map || !mpa)
13364 goto error;
13366 n = isl_map_dim(map, type);
13367 full = isl_map_involves_dims(map, type, 0, n);
13368 if (full >= 0 && !full)
13369 full = isl_multi_pw_aff_has_non_trivial_domain(mpa);
13370 if (full < 0)
13371 goto error;
13372 if (!full) {
13373 isl_space *space;
13374 isl_multi_aff *ma;
13376 space = isl_multi_pw_aff_get_space(mpa);
13377 isl_multi_pw_aff_free(mpa);
13378 ma = isl_multi_aff_zero(space);
13379 return isl_map_preimage_multi_aff(map, type, ma);
13382 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
13383 return isl_map_preimage_pw_multi_aff(map, type, pma);
13384 error:
13385 isl_map_free(map);
13386 isl_multi_pw_aff_free(mpa);
13387 return NULL;
13390 /* Compute the preimage of "map" under the function represented by "mpa".
13391 * In other words, plug in "mpa" in the domain "map".
13392 * The result is a map that lives in the same space as "map",
13393 * except that domain space has been replaced by the domain space of "mpa".
13395 __isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
13396 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
13398 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
13401 /* Compute the preimage of "set" by the function represented by "mpa".
13402 * In other words, plug in "mpa" in "set".
13404 __isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
13405 __isl_take isl_multi_pw_aff *mpa)
13407 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);
13410 /* Return a copy of the equality constraints of "bset" as a matrix.
13412 __isl_give isl_mat *isl_basic_set_extract_equalities(
13413 __isl_keep isl_basic_set *bset)
13415 isl_ctx *ctx;
13416 unsigned total;
13418 if (!bset)
13419 return NULL;
13421 ctx = isl_basic_set_get_ctx(bset);
13422 total = 1 + isl_basic_set_dim(bset, isl_dim_all);
13423 return isl_mat_sub_alloc6(ctx, bset->eq, 0, bset->n_eq, 0, total);
13426 /* Are the "n" "coefficients" starting at "first" of the integer division
13427 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13428 * to each other?
13429 * The "coefficient" at position 0 is the denominator.
13430 * The "coefficient" at position 1 is the constant term.
13432 isl_bool isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map *bmap1,
13433 int pos1, __isl_keep isl_basic_map *bmap2, int pos2,
13434 unsigned first, unsigned n)
13436 if (isl_basic_map_check_range(bmap1, isl_dim_div, pos1, 1) < 0)
13437 return isl_bool_error;
13438 if (isl_basic_map_check_range(bmap2, isl_dim_div, pos2, 1) < 0)
13439 return isl_bool_error;
13440 return isl_seq_eq(bmap1->div[pos1] + first,
13441 bmap2->div[pos2] + first, n);
13444 /* Are the integer division expressions at position "pos1" in "bmap1" and
13445 * "pos2" in "bmap2" equal to each other, except that the constant terms
13446 * are different?
13448 isl_bool isl_basic_map_equal_div_expr_except_constant(
13449 __isl_keep isl_basic_map *bmap1, int pos1,
13450 __isl_keep isl_basic_map *bmap2, int pos2)
13452 isl_bool equal;
13453 unsigned total;
13455 if (!bmap1 || !bmap2)
13456 return isl_bool_error;
13457 total = isl_basic_map_total_dim(bmap1);
13458 if (total != isl_basic_map_total_dim(bmap2))
13459 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
13460 "incomparable div expressions", return isl_bool_error);
13461 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13462 0, 1);
13463 if (equal < 0 || !equal)
13464 return equal;
13465 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13466 1, 1);
13467 if (equal < 0 || equal)
13468 return isl_bool_not(equal);
13469 return isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13470 2, total);
13473 /* Replace the numerator of the constant term of the integer division
13474 * expression at position "div" in "bmap" by "value".
13475 * The caller guarantees that this does not change the meaning
13476 * of the input.
13478 __isl_give isl_basic_map *isl_basic_map_set_div_expr_constant_num_si_inplace(
13479 __isl_take isl_basic_map *bmap, int div, int value)
13481 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
13482 return isl_basic_map_free(bmap);
13484 isl_int_set_si(bmap->div[div][1], value);
13486 return bmap;
13489 /* Is the point "inner" internal to inequality constraint "ineq"
13490 * of "bset"?
13491 * The point is considered to be internal to the inequality constraint,
13492 * if it strictly lies on the positive side of the inequality constraint,
13493 * or if it lies on the constraint and the constraint is lexico-positive.
13495 static isl_bool is_internal(__isl_keep isl_vec *inner,
13496 __isl_keep isl_basic_set *bset, int ineq)
13498 isl_ctx *ctx;
13499 int pos;
13500 unsigned total;
13502 if (!inner || !bset)
13503 return isl_bool_error;
13505 ctx = isl_basic_set_get_ctx(bset);
13506 isl_seq_inner_product(inner->el, bset->ineq[ineq], inner->size,
13507 &ctx->normalize_gcd);
13508 if (!isl_int_is_zero(ctx->normalize_gcd))
13509 return isl_int_is_nonneg(ctx->normalize_gcd);
13511 total = isl_basic_set_dim(bset, isl_dim_all);
13512 pos = isl_seq_first_non_zero(bset->ineq[ineq] + 1, total);
13513 return isl_int_is_pos(bset->ineq[ineq][1 + pos]);
13516 /* Tighten the inequality constraints of "bset" that are outward with respect
13517 * to the point "vec".
13518 * That is, tighten the constraints that are not satisfied by "vec".
13520 * "vec" is a point internal to some superset S of "bset" that is used
13521 * to make the subsets of S disjoint, by tightening one half of the constraints
13522 * that separate two subsets. In particular, the constraints of S
13523 * are all satisfied by "vec" and should not be tightened.
13524 * Of the internal constraints, those that have "vec" on the outside
13525 * are tightened. The shared facet is included in the adjacent subset
13526 * with the opposite constraint.
13527 * For constraints that saturate "vec", this criterion cannot be used
13528 * to determine which of the two sides should be tightened.
13529 * Instead, the sign of the first non-zero coefficient is used
13530 * to make this choice. Note that this second criterion is never used
13531 * on the constraints of S since "vec" is interior to "S".
13533 __isl_give isl_basic_set *isl_basic_set_tighten_outward(
13534 __isl_take isl_basic_set *bset, __isl_keep isl_vec *vec)
13536 int j;
13538 bset = isl_basic_set_cow(bset);
13539 if (!bset)
13540 return NULL;
13541 for (j = 0; j < bset->n_ineq; ++j) {
13542 isl_bool internal;
13544 internal = is_internal(vec, bset, j);
13545 if (internal < 0)
13546 return isl_basic_set_free(bset);
13547 if (internal)
13548 continue;
13549 isl_int_sub_ui(bset->ineq[j][0], bset->ineq[j][0], 1);
13552 return bset;
13555 /* Replace the variables x of type "type" starting at "first" in "bmap"
13556 * by x' with x = M x' with M the matrix trans.
13557 * That is, replace the corresponding coefficients c by c M.
13559 * The transformation matrix should be a square matrix.
13561 __isl_give isl_basic_map *isl_basic_map_transform_dims(
13562 __isl_take isl_basic_map *bmap, enum isl_dim_type type, unsigned first,
13563 __isl_take isl_mat *trans)
13565 unsigned pos;
13567 bmap = isl_basic_map_cow(bmap);
13568 if (!bmap || !trans)
13569 goto error;
13571 if (trans->n_row != trans->n_col)
13572 isl_die(trans->ctx, isl_error_invalid,
13573 "expecting square transformation matrix", goto error);
13574 if (first + trans->n_row > isl_basic_map_dim(bmap, type))
13575 isl_die(trans->ctx, isl_error_invalid,
13576 "oversized transformation matrix", goto error);
13578 pos = isl_basic_map_offset(bmap, type) + first;
13580 if (isl_mat_sub_transform(bmap->eq, bmap->n_eq, pos,
13581 isl_mat_copy(trans)) < 0)
13582 goto error;
13583 if (isl_mat_sub_transform(bmap->ineq, bmap->n_ineq, pos,
13584 isl_mat_copy(trans)) < 0)
13585 goto error;
13586 if (isl_mat_sub_transform(bmap->div, bmap->n_div, 1 + pos,
13587 isl_mat_copy(trans)) < 0)
13588 goto error;
13590 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
13591 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
13593 isl_mat_free(trans);
13594 return bmap;
13595 error:
13596 isl_mat_free(trans);
13597 isl_basic_map_free(bmap);
13598 return NULL;
13601 /* Replace the variables x of type "type" starting at "first" in "bset"
13602 * by x' with x = M x' with M the matrix trans.
13603 * That is, replace the corresponding coefficients c by c M.
13605 * The transformation matrix should be a square matrix.
13607 __isl_give isl_basic_set *isl_basic_set_transform_dims(
13608 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned first,
13609 __isl_take isl_mat *trans)
13611 return isl_basic_map_transform_dims(bset, type, first, trans);