extract out generic isl_*_has_single_reference
[isl.git] / isl_map.c
blob9b0e984e19dd60e9c46d91c9a92e4a107bc3e747
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 unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type)
99 return map ? n(map->dim, type) : 0;
102 unsigned isl_set_dim(__isl_keep isl_set *set, enum isl_dim_type type)
104 return set ? n(set->dim, type) : 0;
107 unsigned isl_basic_map_offset(struct isl_basic_map *bmap,
108 enum isl_dim_type type)
110 isl_space *space;
112 if (!bmap)
113 return 0;
115 space = bmap->dim;
116 switch (type) {
117 case isl_dim_cst: return 0;
118 case isl_dim_param: return 1;
119 case isl_dim_in: return 1 + space->nparam;
120 case isl_dim_out: return 1 + space->nparam + space->n_in;
121 case isl_dim_div: return 1 + space->nparam + space->n_in +
122 space->n_out;
123 default: return 0;
127 unsigned isl_basic_set_offset(__isl_keep isl_basic_set *bset,
128 enum isl_dim_type type)
130 return isl_basic_map_offset(bset, type);
133 static unsigned map_offset(__isl_keep isl_map *map, enum isl_dim_type type)
135 return pos(map->dim, type);
138 unsigned isl_basic_set_dim(__isl_keep isl_basic_set *bset,
139 enum isl_dim_type type)
141 return isl_basic_map_dim(bset, type);
144 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set *bset)
146 return isl_basic_set_dim(bset, isl_dim_set);
149 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set *bset)
151 return isl_basic_set_dim(bset, isl_dim_param);
154 unsigned isl_basic_set_total_dim(__isl_keep const isl_basic_set *bset)
156 if (!bset)
157 return 0;
158 return isl_space_dim(bset->dim, isl_dim_all) + bset->n_div;
161 unsigned isl_set_n_dim(__isl_keep isl_set *set)
163 return isl_set_dim(set, isl_dim_set);
166 unsigned isl_set_n_param(__isl_keep isl_set *set)
168 return isl_set_dim(set, isl_dim_param);
171 unsigned isl_basic_map_n_in(__isl_keep const isl_basic_map *bmap)
173 return bmap ? bmap->dim->n_in : 0;
176 unsigned isl_basic_map_n_out(__isl_keep const isl_basic_map *bmap)
178 return bmap ? bmap->dim->n_out : 0;
181 unsigned isl_basic_map_n_param(__isl_keep const isl_basic_map *bmap)
183 return bmap ? bmap->dim->nparam : 0;
186 unsigned isl_basic_map_n_div(__isl_keep const isl_basic_map *bmap)
188 return bmap ? bmap->n_div : 0;
191 unsigned isl_basic_map_total_dim(__isl_keep const isl_basic_map *bmap)
193 return bmap ? isl_space_dim(bmap->dim, isl_dim_all) + bmap->n_div : 0;
196 unsigned isl_map_n_in(__isl_keep const isl_map *map)
198 return map ? map->dim->n_in : 0;
201 unsigned isl_map_n_out(__isl_keep const isl_map *map)
203 return map ? map->dim->n_out : 0;
206 unsigned isl_map_n_param(__isl_keep const isl_map *map)
208 return map ? map->dim->nparam : 0;
211 /* Return the number of equality constraints in the description of "bmap".
212 * Return -1 on error.
214 int isl_basic_map_n_equality(__isl_keep isl_basic_map *bmap)
216 if (!bmap)
217 return -1;
218 return bmap->n_eq;
221 /* Return the number of equality constraints in the description of "bset".
222 * Return -1 on error.
224 int isl_basic_set_n_equality(__isl_keep isl_basic_set *bset)
226 return isl_basic_map_n_equality(bset_to_bmap(bset));
229 /* Return the number of inequality constraints in the description of "bmap".
230 * Return -1 on error.
232 int isl_basic_map_n_inequality(__isl_keep isl_basic_map *bmap)
234 if (!bmap)
235 return -1;
236 return bmap->n_ineq;
239 /* Return the number of inequality constraints in the description of "bset".
240 * Return -1 on error.
242 int isl_basic_set_n_inequality(__isl_keep isl_basic_set *bset)
244 return isl_basic_map_n_inequality(bset_to_bmap(bset));
247 /* Do "bmap1" and "bmap2" have the same parameters?
249 static isl_bool isl_basic_map_has_equal_params(__isl_keep isl_basic_map *bmap1,
250 __isl_keep isl_basic_map *bmap2)
252 isl_space *space1, *space2;
254 space1 = isl_basic_map_peek_space(bmap1);
255 space2 = isl_basic_map_peek_space(bmap2);
256 return isl_space_has_equal_params(space1, space2);
259 /* Do "map1" and "map2" have the same parameters?
261 isl_bool isl_map_has_equal_params(__isl_keep isl_map *map1,
262 __isl_keep isl_map *map2)
264 isl_space *space1, *space2;
266 space1 = isl_map_peek_space(map1);
267 space2 = isl_map_peek_space(map2);
268 return isl_space_has_equal_params(space1, space2);
271 /* Do "map" and "set" have the same parameters?
273 static isl_bool isl_map_set_has_equal_params(__isl_keep isl_map *map,
274 __isl_keep isl_set *set)
276 return isl_map_has_equal_params(map, set_to_map(set));
279 isl_bool isl_map_compatible_domain(__isl_keep isl_map *map,
280 __isl_keep isl_set *set)
282 isl_bool m;
283 if (!map || !set)
284 return isl_bool_error;
285 m = isl_map_has_equal_params(map, set_to_map(set));
286 if (m < 0 || !m)
287 return m;
288 return isl_space_tuple_is_equal(map->dim, isl_dim_in,
289 set->dim, isl_dim_set);
292 isl_bool isl_basic_map_compatible_domain(__isl_keep isl_basic_map *bmap,
293 __isl_keep isl_basic_set *bset)
295 isl_bool m;
296 if (!bmap || !bset)
297 return isl_bool_error;
298 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
299 if (m < 0 || !m)
300 return m;
301 return isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
302 bset->dim, isl_dim_set);
305 isl_bool isl_map_compatible_range(__isl_keep isl_map *map,
306 __isl_keep isl_set *set)
308 isl_bool m;
309 if (!map || !set)
310 return isl_bool_error;
311 m = isl_map_has_equal_params(map, set_to_map(set));
312 if (m < 0 || !m)
313 return m;
314 return isl_space_tuple_is_equal(map->dim, isl_dim_out,
315 set->dim, isl_dim_set);
318 isl_bool isl_basic_map_compatible_range(__isl_keep isl_basic_map *bmap,
319 __isl_keep isl_basic_set *bset)
321 isl_bool m;
322 if (!bmap || !bset)
323 return isl_bool_error;
324 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
325 if (m < 0 || !m)
326 return m;
327 return isl_space_tuple_is_equal(bmap->dim, isl_dim_out,
328 bset->dim, isl_dim_set);
331 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap)
333 return bmap ? bmap->ctx : NULL;
336 isl_ctx *isl_basic_set_get_ctx(__isl_keep isl_basic_set *bset)
338 return bset ? bset->ctx : NULL;
341 isl_ctx *isl_map_get_ctx(__isl_keep isl_map *map)
343 return map ? map->ctx : NULL;
346 isl_ctx *isl_set_get_ctx(__isl_keep isl_set *set)
348 return set ? set->ctx : NULL;
351 /* Return the space of "bmap".
353 __isl_keep isl_space *isl_basic_map_peek_space(
354 __isl_keep const isl_basic_map *bmap)
356 return bmap ? bmap->dim : NULL;
359 /* Return the space of "bset".
361 __isl_keep isl_space *isl_basic_set_peek_space(__isl_keep isl_basic_set *bset)
363 return isl_basic_map_peek_space(bset_to_bmap(bset));
366 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap)
368 return isl_space_copy(isl_basic_map_peek_space(bmap));
371 __isl_give isl_space *isl_basic_set_get_space(__isl_keep isl_basic_set *bset)
373 return isl_basic_map_get_space(bset_to_bmap(bset));
376 /* Extract the divs in "bmap" as a matrix.
378 __isl_give isl_mat *isl_basic_map_get_divs(__isl_keep isl_basic_map *bmap)
380 int i;
381 isl_ctx *ctx;
382 isl_mat *div;
383 unsigned total;
384 unsigned cols;
386 if (!bmap)
387 return NULL;
389 ctx = isl_basic_map_get_ctx(bmap);
390 total = isl_space_dim(bmap->dim, isl_dim_all);
391 cols = 1 + 1 + total + bmap->n_div;
392 div = isl_mat_alloc(ctx, bmap->n_div, cols);
393 if (!div)
394 return NULL;
396 for (i = 0; i < bmap->n_div; ++i)
397 isl_seq_cpy(div->row[i], bmap->div[i], cols);
399 return div;
402 /* Extract the divs in "bset" as a matrix.
404 __isl_give isl_mat *isl_basic_set_get_divs(__isl_keep isl_basic_set *bset)
406 return isl_basic_map_get_divs(bset);
409 __isl_give isl_local_space *isl_basic_map_get_local_space(
410 __isl_keep isl_basic_map *bmap)
412 isl_mat *div;
414 if (!bmap)
415 return NULL;
417 div = isl_basic_map_get_divs(bmap);
418 return isl_local_space_alloc_div(isl_space_copy(bmap->dim), div);
421 __isl_give isl_local_space *isl_basic_set_get_local_space(
422 __isl_keep isl_basic_set *bset)
424 return isl_basic_map_get_local_space(bset);
427 /* For each known div d = floor(f/m), add the constraints
429 * f - m d >= 0
430 * -(f-(m-1)) + m d >= 0
432 * Do not finalize the result.
434 static __isl_give isl_basic_map *add_known_div_constraints(
435 __isl_take isl_basic_map *bmap)
437 int i;
438 unsigned n_div;
440 if (!bmap)
441 return NULL;
442 n_div = isl_basic_map_dim(bmap, isl_dim_div);
443 if (n_div == 0)
444 return bmap;
445 bmap = isl_basic_map_cow(bmap);
446 bmap = isl_basic_map_extend_constraints(bmap, 0, 2 * n_div);
447 if (!bmap)
448 return NULL;
449 for (i = 0; i < n_div; ++i) {
450 if (isl_int_is_zero(bmap->div[i][0]))
451 continue;
452 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
453 return isl_basic_map_free(bmap);
456 return bmap;
459 __isl_give isl_basic_map *isl_basic_map_from_local_space(
460 __isl_take isl_local_space *ls)
462 int i;
463 int n_div;
464 isl_basic_map *bmap;
466 if (!ls)
467 return NULL;
469 n_div = isl_local_space_dim(ls, isl_dim_div);
470 bmap = isl_basic_map_alloc_space(isl_local_space_get_space(ls),
471 n_div, 0, 2 * n_div);
473 for (i = 0; i < n_div; ++i)
474 if (isl_basic_map_alloc_div(bmap) < 0)
475 goto error;
477 for (i = 0; i < n_div; ++i)
478 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
479 bmap = add_known_div_constraints(bmap);
481 isl_local_space_free(ls);
482 return bmap;
483 error:
484 isl_local_space_free(ls);
485 isl_basic_map_free(bmap);
486 return NULL;
489 __isl_give isl_basic_set *isl_basic_set_from_local_space(
490 __isl_take isl_local_space *ls)
492 return isl_basic_map_from_local_space(ls);
495 __isl_give isl_space *isl_map_get_space(__isl_keep isl_map *map)
497 return isl_space_copy(isl_map_peek_space(map));
500 __isl_give isl_space *isl_set_get_space(__isl_keep isl_set *set)
502 if (!set)
503 return NULL;
504 return isl_space_copy(set->dim);
507 __isl_give isl_basic_map *isl_basic_map_set_tuple_name(
508 __isl_take isl_basic_map *bmap, enum isl_dim_type type, const char *s)
510 bmap = isl_basic_map_cow(bmap);
511 if (!bmap)
512 return NULL;
513 bmap->dim = isl_space_set_tuple_name(bmap->dim, type, s);
514 if (!bmap->dim)
515 goto error;
516 bmap = isl_basic_map_finalize(bmap);
517 return bmap;
518 error:
519 isl_basic_map_free(bmap);
520 return NULL;
523 __isl_give isl_basic_set *isl_basic_set_set_tuple_name(
524 __isl_take isl_basic_set *bset, const char *s)
526 return isl_basic_map_set_tuple_name(bset, isl_dim_set, s);
529 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map *bmap,
530 enum isl_dim_type type)
532 return bmap ? isl_space_get_tuple_name(bmap->dim, type) : NULL;
535 __isl_give isl_map *isl_map_set_tuple_name(__isl_take isl_map *map,
536 enum isl_dim_type type, const char *s)
538 int i;
540 map = isl_map_cow(map);
541 if (!map)
542 return NULL;
544 map->dim = isl_space_set_tuple_name(map->dim, type, s);
545 if (!map->dim)
546 goto error;
548 for (i = 0; i < map->n; ++i) {
549 map->p[i] = isl_basic_map_set_tuple_name(map->p[i], type, s);
550 if (!map->p[i])
551 goto error;
554 return map;
555 error:
556 isl_map_free(map);
557 return NULL;
560 /* Replace the identifier of the tuple of type "type" by "id".
562 __isl_give isl_basic_map *isl_basic_map_set_tuple_id(
563 __isl_take isl_basic_map *bmap,
564 enum isl_dim_type type, __isl_take isl_id *id)
566 bmap = isl_basic_map_cow(bmap);
567 if (!bmap)
568 goto error;
569 bmap->dim = isl_space_set_tuple_id(bmap->dim, type, id);
570 if (!bmap->dim)
571 return isl_basic_map_free(bmap);
572 bmap = isl_basic_map_finalize(bmap);
573 return bmap;
574 error:
575 isl_id_free(id);
576 return NULL;
579 /* Replace the identifier of the tuple by "id".
581 __isl_give isl_basic_set *isl_basic_set_set_tuple_id(
582 __isl_take isl_basic_set *bset, __isl_take isl_id *id)
584 return isl_basic_map_set_tuple_id(bset, isl_dim_set, id);
587 /* Does the input or output tuple have a name?
589 isl_bool isl_map_has_tuple_name(__isl_keep isl_map *map, enum isl_dim_type type)
591 return map ? isl_space_has_tuple_name(map->dim, type) : isl_bool_error;
594 const char *isl_map_get_tuple_name(__isl_keep isl_map *map,
595 enum isl_dim_type type)
597 return map ? isl_space_get_tuple_name(map->dim, type) : NULL;
600 __isl_give isl_set *isl_set_set_tuple_name(__isl_take isl_set *set,
601 const char *s)
603 return set_from_map(isl_map_set_tuple_name(set_to_map(set),
604 isl_dim_set, s));
607 __isl_give isl_map *isl_map_set_tuple_id(__isl_take isl_map *map,
608 enum isl_dim_type type, __isl_take isl_id *id)
610 map = isl_map_cow(map);
611 if (!map)
612 goto error;
614 map->dim = isl_space_set_tuple_id(map->dim, type, id);
616 return isl_map_reset_space(map, isl_space_copy(map->dim));
617 error:
618 isl_id_free(id);
619 return NULL;
622 __isl_give isl_set *isl_set_set_tuple_id(__isl_take isl_set *set,
623 __isl_take isl_id *id)
625 return isl_map_set_tuple_id(set, isl_dim_set, id);
628 __isl_give isl_map *isl_map_reset_tuple_id(__isl_take isl_map *map,
629 enum isl_dim_type type)
631 map = isl_map_cow(map);
632 if (!map)
633 return NULL;
635 map->dim = isl_space_reset_tuple_id(map->dim, type);
637 return isl_map_reset_space(map, isl_space_copy(map->dim));
640 __isl_give isl_set *isl_set_reset_tuple_id(__isl_take isl_set *set)
642 return isl_map_reset_tuple_id(set, isl_dim_set);
645 isl_bool isl_map_has_tuple_id(__isl_keep isl_map *map, enum isl_dim_type type)
647 return map ? isl_space_has_tuple_id(map->dim, type) : isl_bool_error;
650 __isl_give isl_id *isl_map_get_tuple_id(__isl_keep isl_map *map,
651 enum isl_dim_type type)
653 return map ? isl_space_get_tuple_id(map->dim, type) : NULL;
656 isl_bool isl_set_has_tuple_id(__isl_keep isl_set *set)
658 return isl_map_has_tuple_id(set, isl_dim_set);
661 __isl_give isl_id *isl_set_get_tuple_id(__isl_keep isl_set *set)
663 return isl_map_get_tuple_id(set, isl_dim_set);
666 /* Does the set tuple have a name?
668 isl_bool isl_set_has_tuple_name(__isl_keep isl_set *set)
670 if (!set)
671 return isl_bool_error;
672 return isl_space_has_tuple_name(set->dim, isl_dim_set);
676 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set *bset)
678 return bset ? isl_space_get_tuple_name(bset->dim, isl_dim_set) : NULL;
681 const char *isl_set_get_tuple_name(__isl_keep isl_set *set)
683 return set ? isl_space_get_tuple_name(set->dim, isl_dim_set) : NULL;
686 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map *bmap,
687 enum isl_dim_type type, unsigned pos)
689 return bmap ? isl_space_get_dim_name(bmap->dim, type, pos) : NULL;
692 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set *bset,
693 enum isl_dim_type type, unsigned pos)
695 return bset ? isl_space_get_dim_name(bset->dim, type, pos) : NULL;
698 /* Does the given dimension have a name?
700 isl_bool isl_map_has_dim_name(__isl_keep isl_map *map,
701 enum isl_dim_type type, unsigned pos)
703 if (!map)
704 return isl_bool_error;
705 return isl_space_has_dim_name(map->dim, type, pos);
708 const char *isl_map_get_dim_name(__isl_keep isl_map *map,
709 enum isl_dim_type type, unsigned pos)
711 return map ? isl_space_get_dim_name(map->dim, type, pos) : NULL;
714 const char *isl_set_get_dim_name(__isl_keep isl_set *set,
715 enum isl_dim_type type, unsigned pos)
717 return set ? isl_space_get_dim_name(set->dim, type, pos) : NULL;
720 /* Does the given dimension have a name?
722 isl_bool isl_set_has_dim_name(__isl_keep isl_set *set,
723 enum isl_dim_type type, unsigned pos)
725 if (!set)
726 return isl_bool_error;
727 return isl_space_has_dim_name(set->dim, type, pos);
730 __isl_give isl_basic_map *isl_basic_map_set_dim_name(
731 __isl_take isl_basic_map *bmap,
732 enum isl_dim_type type, unsigned pos, const char *s)
734 bmap = isl_basic_map_cow(bmap);
735 if (!bmap)
736 return NULL;
737 bmap->dim = isl_space_set_dim_name(bmap->dim, type, pos, s);
738 if (!bmap->dim)
739 goto error;
740 return isl_basic_map_finalize(bmap);
741 error:
742 isl_basic_map_free(bmap);
743 return NULL;
746 __isl_give isl_map *isl_map_set_dim_name(__isl_take isl_map *map,
747 enum isl_dim_type type, unsigned pos, const char *s)
749 int i;
751 map = isl_map_cow(map);
752 if (!map)
753 return NULL;
755 map->dim = isl_space_set_dim_name(map->dim, type, pos, s);
756 if (!map->dim)
757 goto error;
759 for (i = 0; i < map->n; ++i) {
760 map->p[i] = isl_basic_map_set_dim_name(map->p[i], type, pos, s);
761 if (!map->p[i])
762 goto error;
765 return map;
766 error:
767 isl_map_free(map);
768 return NULL;
771 __isl_give isl_basic_set *isl_basic_set_set_dim_name(
772 __isl_take isl_basic_set *bset,
773 enum isl_dim_type type, unsigned pos, const char *s)
775 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset),
776 type, pos, s));
779 __isl_give isl_set *isl_set_set_dim_name(__isl_take isl_set *set,
780 enum isl_dim_type type, unsigned pos, const char *s)
782 return set_from_map(isl_map_set_dim_name(set_to_map(set),
783 type, pos, s));
786 isl_bool isl_basic_map_has_dim_id(__isl_keep isl_basic_map *bmap,
787 enum isl_dim_type type, unsigned pos)
789 if (!bmap)
790 return isl_bool_error;
791 return isl_space_has_dim_id(bmap->dim, type, pos);
794 __isl_give isl_id *isl_basic_set_get_dim_id(__isl_keep isl_basic_set *bset,
795 enum isl_dim_type type, unsigned pos)
797 return bset ? isl_space_get_dim_id(bset->dim, type, pos) : NULL;
800 isl_bool isl_map_has_dim_id(__isl_keep isl_map *map,
801 enum isl_dim_type type, unsigned pos)
803 return map ? isl_space_has_dim_id(map->dim, type, pos) : isl_bool_error;
806 __isl_give isl_id *isl_map_get_dim_id(__isl_keep isl_map *map,
807 enum isl_dim_type type, unsigned pos)
809 return map ? isl_space_get_dim_id(map->dim, type, pos) : NULL;
812 isl_bool isl_set_has_dim_id(__isl_keep isl_set *set,
813 enum isl_dim_type type, unsigned pos)
815 return isl_map_has_dim_id(set, type, pos);
818 __isl_give isl_id *isl_set_get_dim_id(__isl_keep isl_set *set,
819 enum isl_dim_type type, unsigned pos)
821 return isl_map_get_dim_id(set, type, pos);
824 __isl_give isl_map *isl_map_set_dim_id(__isl_take isl_map *map,
825 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
827 map = isl_map_cow(map);
828 if (!map)
829 goto error;
831 map->dim = isl_space_set_dim_id(map->dim, type, pos, id);
833 return isl_map_reset_space(map, isl_space_copy(map->dim));
834 error:
835 isl_id_free(id);
836 return NULL;
839 __isl_give isl_set *isl_set_set_dim_id(__isl_take isl_set *set,
840 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
842 return isl_map_set_dim_id(set, type, pos, id);
845 int isl_map_find_dim_by_id(__isl_keep isl_map *map, enum isl_dim_type type,
846 __isl_keep isl_id *id)
848 if (!map)
849 return -1;
850 return isl_space_find_dim_by_id(map->dim, type, id);
853 int isl_set_find_dim_by_id(__isl_keep isl_set *set, enum isl_dim_type type,
854 __isl_keep isl_id *id)
856 return isl_map_find_dim_by_id(set, type, id);
859 /* Return the position of the dimension of the given type and name
860 * in "bmap".
861 * Return -1 if no such dimension can be found.
863 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map *bmap,
864 enum isl_dim_type type, const char *name)
866 if (!bmap)
867 return -1;
868 return isl_space_find_dim_by_name(bmap->dim, type, name);
871 int isl_map_find_dim_by_name(__isl_keep isl_map *map, enum isl_dim_type type,
872 const char *name)
874 if (!map)
875 return -1;
876 return isl_space_find_dim_by_name(map->dim, type, name);
879 int isl_set_find_dim_by_name(__isl_keep isl_set *set, enum isl_dim_type type,
880 const char *name)
882 return isl_map_find_dim_by_name(set, type, name);
885 /* Check whether equality i of bset is a pure stride constraint
886 * on a single dimension, i.e., of the form
888 * v = k e
890 * with k a constant and e an existentially quantified variable.
892 isl_bool isl_basic_set_eq_is_stride(__isl_keep isl_basic_set *bset, int i)
894 unsigned nparam;
895 unsigned d;
896 unsigned n_div;
897 int pos1;
898 int pos2;
900 if (!bset)
901 return isl_bool_error;
903 if (!isl_int_is_zero(bset->eq[i][0]))
904 return isl_bool_false;
906 nparam = isl_basic_set_dim(bset, isl_dim_param);
907 d = isl_basic_set_dim(bset, isl_dim_set);
908 n_div = isl_basic_set_dim(bset, isl_dim_div);
910 if (isl_seq_first_non_zero(bset->eq[i] + 1, nparam) != -1)
911 return isl_bool_false;
912 pos1 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam, d);
913 if (pos1 == -1)
914 return isl_bool_false;
915 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + pos1 + 1,
916 d - pos1 - 1) != -1)
917 return isl_bool_false;
919 pos2 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d, n_div);
920 if (pos2 == -1)
921 return isl_bool_false;
922 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d + pos2 + 1,
923 n_div - pos2 - 1) != -1)
924 return isl_bool_false;
925 if (!isl_int_is_one(bset->eq[i][1 + nparam + pos1]) &&
926 !isl_int_is_negone(bset->eq[i][1 + nparam + pos1]))
927 return isl_bool_false;
929 return isl_bool_true;
932 /* Reset the user pointer on all identifiers of parameters and tuples
933 * of the space of "map".
935 __isl_give isl_map *isl_map_reset_user(__isl_take isl_map *map)
937 isl_space *space;
939 space = isl_map_get_space(map);
940 space = isl_space_reset_user(space);
941 map = isl_map_reset_space(map, space);
943 return map;
946 /* Reset the user pointer on all identifiers of parameters and tuples
947 * of the space of "set".
949 __isl_give isl_set *isl_set_reset_user(__isl_take isl_set *set)
951 return isl_map_reset_user(set);
954 isl_bool isl_basic_map_is_rational(__isl_keep isl_basic_map *bmap)
956 if (!bmap)
957 return isl_bool_error;
958 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
961 /* Has "map" been marked as a rational map?
962 * In particular, have all basic maps in "map" been marked this way?
963 * An empty map is not considered to be rational.
964 * Maps where only some of the basic maps are marked rational
965 * are not allowed.
967 isl_bool isl_map_is_rational(__isl_keep isl_map *map)
969 int i;
970 isl_bool rational;
972 if (!map)
973 return isl_bool_error;
974 if (map->n == 0)
975 return isl_bool_false;
976 rational = isl_basic_map_is_rational(map->p[0]);
977 if (rational < 0)
978 return rational;
979 for (i = 1; i < map->n; ++i) {
980 isl_bool rational_i;
982 rational_i = isl_basic_map_is_rational(map->p[i]);
983 if (rational_i < 0)
984 return rational_i;
985 if (rational != rational_i)
986 isl_die(isl_map_get_ctx(map), isl_error_unsupported,
987 "mixed rational and integer basic maps "
988 "not supported", return isl_bool_error);
991 return rational;
994 /* Has "set" been marked as a rational set?
995 * In particular, have all basic set in "set" been marked this way?
996 * An empty set is not considered to be rational.
997 * Sets where only some of the basic sets are marked rational
998 * are not allowed.
1000 isl_bool isl_set_is_rational(__isl_keep isl_set *set)
1002 return isl_map_is_rational(set);
1005 int isl_basic_set_is_rational(__isl_keep isl_basic_set *bset)
1007 return isl_basic_map_is_rational(bset);
1010 /* Does "bmap" contain any rational points?
1012 * If "bmap" has an equality for each dimension, equating the dimension
1013 * to an integer constant, then it has no rational points, even if it
1014 * is marked as rational.
1016 isl_bool isl_basic_map_has_rational(__isl_keep isl_basic_map *bmap)
1018 isl_bool has_rational = isl_bool_true;
1019 unsigned total;
1021 if (!bmap)
1022 return isl_bool_error;
1023 if (isl_basic_map_plain_is_empty(bmap))
1024 return isl_bool_false;
1025 if (!isl_basic_map_is_rational(bmap))
1026 return isl_bool_false;
1027 bmap = isl_basic_map_copy(bmap);
1028 bmap = isl_basic_map_implicit_equalities(bmap);
1029 if (!bmap)
1030 return isl_bool_error;
1031 total = isl_basic_map_total_dim(bmap);
1032 if (bmap->n_eq == total) {
1033 int i, j;
1034 for (i = 0; i < bmap->n_eq; ++i) {
1035 j = isl_seq_first_non_zero(bmap->eq[i] + 1, total);
1036 if (j < 0)
1037 break;
1038 if (!isl_int_is_one(bmap->eq[i][1 + j]) &&
1039 !isl_int_is_negone(bmap->eq[i][1 + j]))
1040 break;
1041 j = isl_seq_first_non_zero(bmap->eq[i] + 1 + j + 1,
1042 total - j - 1);
1043 if (j >= 0)
1044 break;
1046 if (i == bmap->n_eq)
1047 has_rational = isl_bool_false;
1049 isl_basic_map_free(bmap);
1051 return has_rational;
1054 /* Does "map" contain any rational points?
1056 isl_bool isl_map_has_rational(__isl_keep isl_map *map)
1058 int i;
1059 isl_bool has_rational;
1061 if (!map)
1062 return isl_bool_error;
1063 for (i = 0; i < map->n; ++i) {
1064 has_rational = isl_basic_map_has_rational(map->p[i]);
1065 if (has_rational < 0 || has_rational)
1066 return has_rational;
1068 return isl_bool_false;
1071 /* Does "set" contain any rational points?
1073 isl_bool isl_set_has_rational(__isl_keep isl_set *set)
1075 return isl_map_has_rational(set);
1078 /* Is this basic set a parameter domain?
1080 isl_bool isl_basic_set_is_params(__isl_keep isl_basic_set *bset)
1082 if (!bset)
1083 return isl_bool_error;
1084 return isl_space_is_params(bset->dim);
1087 /* Is this set a parameter domain?
1089 isl_bool isl_set_is_params(__isl_keep isl_set *set)
1091 if (!set)
1092 return isl_bool_error;
1093 return isl_space_is_params(set->dim);
1096 /* Is this map actually a parameter domain?
1097 * Users should never call this function. Outside of isl,
1098 * a map can never be a parameter domain.
1100 isl_bool isl_map_is_params(__isl_keep isl_map *map)
1102 if (!map)
1103 return isl_bool_error;
1104 return isl_space_is_params(map->dim);
1107 static struct isl_basic_map *basic_map_init(struct isl_ctx *ctx,
1108 struct isl_basic_map *bmap, unsigned extra,
1109 unsigned n_eq, unsigned n_ineq)
1111 int i;
1112 size_t row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + extra;
1114 bmap->ctx = ctx;
1115 isl_ctx_ref(ctx);
1117 bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
1118 if (isl_blk_is_error(bmap->block))
1119 goto error;
1121 bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
1122 if ((n_ineq + n_eq) && !bmap->ineq)
1123 goto error;
1125 if (extra == 0) {
1126 bmap->block2 = isl_blk_empty();
1127 bmap->div = NULL;
1128 } else {
1129 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
1130 if (isl_blk_is_error(bmap->block2))
1131 goto error;
1133 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
1134 if (!bmap->div)
1135 goto error;
1138 for (i = 0; i < n_ineq + n_eq; ++i)
1139 bmap->ineq[i] = bmap->block.data + i * row_size;
1141 for (i = 0; i < extra; ++i)
1142 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
1144 bmap->ref = 1;
1145 bmap->flags = 0;
1146 bmap->c_size = n_eq + n_ineq;
1147 bmap->eq = bmap->ineq + n_ineq;
1148 bmap->extra = extra;
1149 bmap->n_eq = 0;
1150 bmap->n_ineq = 0;
1151 bmap->n_div = 0;
1152 bmap->sample = NULL;
1154 return bmap;
1155 error:
1156 isl_basic_map_free(bmap);
1157 return NULL;
1160 struct isl_basic_set *isl_basic_set_alloc(struct isl_ctx *ctx,
1161 unsigned nparam, unsigned dim, unsigned extra,
1162 unsigned n_eq, unsigned n_ineq)
1164 struct isl_basic_map *bmap;
1165 isl_space *space;
1167 space = isl_space_set_alloc(ctx, nparam, dim);
1168 if (!space)
1169 return NULL;
1171 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1172 return bset_from_bmap(bmap);
1175 __isl_give isl_basic_set *isl_basic_set_alloc_space(__isl_take isl_space *dim,
1176 unsigned extra, unsigned n_eq, unsigned n_ineq)
1178 struct isl_basic_map *bmap;
1179 if (!dim)
1180 return NULL;
1181 isl_assert(dim->ctx, dim->n_in == 0, goto error);
1182 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1183 return bset_from_bmap(bmap);
1184 error:
1185 isl_space_free(dim);
1186 return NULL;
1189 struct isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *dim,
1190 unsigned extra, unsigned n_eq, unsigned n_ineq)
1192 struct isl_basic_map *bmap;
1194 if (!dim)
1195 return NULL;
1196 bmap = isl_calloc_type(dim->ctx, struct isl_basic_map);
1197 if (!bmap)
1198 goto error;
1199 bmap->dim = dim;
1201 return basic_map_init(dim->ctx, bmap, extra, n_eq, n_ineq);
1202 error:
1203 isl_space_free(dim);
1204 return NULL;
1207 struct isl_basic_map *isl_basic_map_alloc(struct isl_ctx *ctx,
1208 unsigned nparam, unsigned in, unsigned out, unsigned extra,
1209 unsigned n_eq, unsigned n_ineq)
1211 struct isl_basic_map *bmap;
1212 isl_space *dim;
1214 dim = isl_space_alloc(ctx, nparam, in, out);
1215 if (!dim)
1216 return NULL;
1218 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1219 return bmap;
1222 static __isl_give isl_basic_map *dup_constraints(__isl_take isl_basic_map *dst,
1223 __isl_keep isl_basic_map *src)
1225 int i;
1226 unsigned total = isl_basic_map_total_dim(src);
1228 if (!dst)
1229 return NULL;
1231 for (i = 0; i < src->n_eq; ++i) {
1232 int j = isl_basic_map_alloc_equality(dst);
1233 if (j < 0)
1234 return isl_basic_map_free(dst);
1235 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
1238 for (i = 0; i < src->n_ineq; ++i) {
1239 int j = isl_basic_map_alloc_inequality(dst);
1240 if (j < 0)
1241 return isl_basic_map_free(dst);
1242 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
1245 for (i = 0; i < src->n_div; ++i) {
1246 int j = isl_basic_map_alloc_div(dst);
1247 if (j < 0)
1248 return isl_basic_map_free(dst);
1249 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
1251 ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
1252 return dst;
1255 __isl_give isl_basic_map *isl_basic_map_dup(__isl_keep isl_basic_map *bmap)
1257 struct isl_basic_map *dup;
1259 if (!bmap)
1260 return NULL;
1261 dup = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
1262 bmap->n_div, bmap->n_eq, bmap->n_ineq);
1263 dup = dup_constraints(dup, bmap);
1264 if (!dup)
1265 return NULL;
1266 dup->flags = bmap->flags;
1267 dup->sample = isl_vec_copy(bmap->sample);
1268 return dup;
1271 struct isl_basic_set *isl_basic_set_dup(struct isl_basic_set *bset)
1273 struct isl_basic_map *dup;
1275 dup = isl_basic_map_dup(bset_to_bmap(bset));
1276 return bset_from_bmap(dup);
1279 __isl_give isl_basic_set *isl_basic_set_copy(__isl_keep isl_basic_set *bset)
1281 if (!bset)
1282 return NULL;
1284 if (ISL_F_ISSET(bset, ISL_BASIC_SET_FINAL)) {
1285 bset->ref++;
1286 return bset;
1288 return isl_basic_set_dup(bset);
1291 __isl_give isl_set *isl_set_copy(__isl_keep isl_set *set)
1293 if (!set)
1294 return NULL;
1296 set->ref++;
1297 return set;
1300 __isl_give isl_basic_map *isl_basic_map_copy(__isl_keep isl_basic_map *bmap)
1302 if (!bmap)
1303 return NULL;
1305 if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
1306 bmap->ref++;
1307 return bmap;
1309 bmap = isl_basic_map_dup(bmap);
1310 if (bmap)
1311 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1312 return bmap;
1315 __isl_give isl_map *isl_map_copy(__isl_keep isl_map *map)
1317 if (!map)
1318 return NULL;
1320 map->ref++;
1321 return map;
1324 __isl_null isl_basic_map *isl_basic_map_free(__isl_take isl_basic_map *bmap)
1326 if (!bmap)
1327 return NULL;
1329 if (--bmap->ref > 0)
1330 return NULL;
1332 isl_ctx_deref(bmap->ctx);
1333 free(bmap->div);
1334 isl_blk_free(bmap->ctx, bmap->block2);
1335 free(bmap->ineq);
1336 isl_blk_free(bmap->ctx, bmap->block);
1337 isl_vec_free(bmap->sample);
1338 isl_space_free(bmap->dim);
1339 free(bmap);
1341 return NULL;
1344 __isl_null isl_basic_set *isl_basic_set_free(__isl_take isl_basic_set *bset)
1346 return isl_basic_map_free(bset_to_bmap(bset));
1349 static int room_for_con(struct isl_basic_map *bmap, unsigned n)
1351 return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
1354 /* Check that "map" has only named parameters, reporting an error
1355 * if it does not.
1357 isl_stat isl_map_check_named_params(__isl_keep isl_map *map)
1359 return isl_space_check_named_params(isl_map_peek_space(map));
1362 /* Check that "bmap" has only named parameters, reporting an error
1363 * if it does not.
1365 static isl_stat isl_basic_map_check_named_params(__isl_keep isl_basic_map *bmap)
1367 return isl_space_check_named_params(isl_basic_map_peek_space(bmap));
1370 /* Check that "bmap1" and "bmap2" have the same parameters,
1371 * reporting an error if they do not.
1373 static isl_stat isl_basic_map_check_equal_params(
1374 __isl_keep isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
1376 isl_bool match;
1378 match = isl_basic_map_has_equal_params(bmap1, bmap2);
1379 if (match < 0)
1380 return isl_stat_error;
1381 if (!match)
1382 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
1383 "parameters don't match", return isl_stat_error);
1384 return isl_stat_ok;
1387 __isl_give isl_map *isl_map_align_params_map_map_and(
1388 __isl_take isl_map *map1, __isl_take isl_map *map2,
1389 __isl_give isl_map *(*fn)(__isl_take isl_map *map1,
1390 __isl_take isl_map *map2))
1392 if (!map1 || !map2)
1393 goto error;
1394 if (isl_map_has_equal_params(map1, map2))
1395 return fn(map1, map2);
1396 if (isl_map_check_named_params(map1) < 0)
1397 goto error;
1398 if (isl_map_check_named_params(map2) < 0)
1399 goto error;
1400 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1401 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1402 return fn(map1, map2);
1403 error:
1404 isl_map_free(map1);
1405 isl_map_free(map2);
1406 return NULL;
1409 isl_bool isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
1410 __isl_keep isl_map *map2,
1411 isl_bool (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
1413 isl_bool r;
1415 if (!map1 || !map2)
1416 return isl_bool_error;
1417 if (isl_map_has_equal_params(map1, map2))
1418 return fn(map1, map2);
1419 if (isl_map_check_named_params(map1) < 0)
1420 return isl_bool_error;
1421 if (isl_map_check_named_params(map2) < 0)
1422 return isl_bool_error;
1423 map1 = isl_map_copy(map1);
1424 map2 = isl_map_copy(map2);
1425 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1426 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1427 r = fn(map1, map2);
1428 isl_map_free(map1);
1429 isl_map_free(map2);
1430 return r;
1433 int isl_basic_map_alloc_equality(struct isl_basic_map *bmap)
1435 struct isl_ctx *ctx;
1436 if (!bmap)
1437 return -1;
1438 ctx = bmap->ctx;
1439 isl_assert(ctx, room_for_con(bmap, 1), return -1);
1440 isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
1441 return -1);
1442 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1443 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1444 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1445 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1446 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1447 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1448 isl_int *t;
1449 int j = isl_basic_map_alloc_inequality(bmap);
1450 if (j < 0)
1451 return -1;
1452 t = bmap->ineq[j];
1453 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1454 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1455 bmap->eq[-1] = t;
1456 bmap->n_eq++;
1457 bmap->n_ineq--;
1458 bmap->eq--;
1459 return 0;
1461 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
1462 bmap->extra - bmap->n_div);
1463 return bmap->n_eq++;
1466 int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
1468 return isl_basic_map_alloc_equality(bset_to_bmap(bset));
1471 int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
1473 if (!bmap)
1474 return -1;
1475 isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
1476 bmap->n_eq -= n;
1477 return 0;
1480 int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
1482 return isl_basic_map_free_equality(bset_to_bmap(bset), n);
1485 int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
1487 isl_int *t;
1488 if (!bmap)
1489 return -1;
1490 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1492 if (pos != bmap->n_eq - 1) {
1493 t = bmap->eq[pos];
1494 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
1495 bmap->eq[bmap->n_eq - 1] = t;
1497 bmap->n_eq--;
1498 return 0;
1501 /* Turn inequality "pos" of "bmap" into an equality.
1503 * In particular, we move the inequality in front of the equalities
1504 * and move the last inequality in the position of the moved inequality.
1505 * Note that isl_tab_make_equalities_explicit depends on this particular
1506 * change in the ordering of the constraints.
1508 void isl_basic_map_inequality_to_equality(
1509 struct isl_basic_map *bmap, unsigned pos)
1511 isl_int *t;
1513 t = bmap->ineq[pos];
1514 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1515 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1516 bmap->eq[-1] = t;
1517 bmap->n_eq++;
1518 bmap->n_ineq--;
1519 bmap->eq--;
1520 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1521 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1522 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1523 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1526 static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
1528 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1531 int isl_basic_map_alloc_inequality(__isl_keep isl_basic_map *bmap)
1533 struct isl_ctx *ctx;
1534 if (!bmap)
1535 return -1;
1536 ctx = bmap->ctx;
1537 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1538 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1539 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1540 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1541 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1542 isl_seq_clr(bmap->ineq[bmap->n_ineq] +
1543 1 + isl_basic_map_total_dim(bmap),
1544 bmap->extra - bmap->n_div);
1545 return bmap->n_ineq++;
1548 int isl_basic_set_alloc_inequality(__isl_keep isl_basic_set *bset)
1550 return isl_basic_map_alloc_inequality(bset_to_bmap(bset));
1553 int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
1555 if (!bmap)
1556 return -1;
1557 isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
1558 bmap->n_ineq -= n;
1559 return 0;
1562 int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
1564 return isl_basic_map_free_inequality(bset_to_bmap(bset), n);
1567 int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
1569 isl_int *t;
1570 if (!bmap)
1571 return -1;
1572 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1574 if (pos != bmap->n_ineq - 1) {
1575 t = bmap->ineq[pos];
1576 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1577 bmap->ineq[bmap->n_ineq - 1] = t;
1578 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1580 bmap->n_ineq--;
1581 return 0;
1584 int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
1586 return isl_basic_map_drop_inequality(bset_to_bmap(bset), pos);
1589 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1590 isl_int *eq)
1592 int k;
1594 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1595 if (!bmap)
1596 return NULL;
1597 k = isl_basic_map_alloc_equality(bmap);
1598 if (k < 0)
1599 goto error;
1600 isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
1601 return bmap;
1602 error:
1603 isl_basic_map_free(bmap);
1604 return NULL;
1607 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1608 isl_int *eq)
1610 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset), eq));
1613 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1614 isl_int *ineq)
1616 int k;
1618 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1619 if (!bmap)
1620 return NULL;
1621 k = isl_basic_map_alloc_inequality(bmap);
1622 if (k < 0)
1623 goto error;
1624 isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
1625 return bmap;
1626 error:
1627 isl_basic_map_free(bmap);
1628 return NULL;
1631 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1632 isl_int *ineq)
1634 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset), ineq));
1637 int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
1639 if (!bmap)
1640 return -1;
1641 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1642 isl_seq_clr(bmap->div[bmap->n_div] +
1643 1 + 1 + isl_basic_map_total_dim(bmap),
1644 bmap->extra - bmap->n_div);
1645 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1646 return bmap->n_div++;
1649 int isl_basic_set_alloc_div(struct isl_basic_set *bset)
1651 return isl_basic_map_alloc_div(bset_to_bmap(bset));
1654 /* Check that there are "n" dimensions of type "type" starting at "first"
1655 * in "bmap".
1657 static isl_stat isl_basic_map_check_range(__isl_keep isl_basic_map *bmap,
1658 enum isl_dim_type type, unsigned first, unsigned n)
1660 unsigned dim;
1662 if (!bmap)
1663 return isl_stat_error;
1664 dim = isl_basic_map_dim(bmap, type);
1665 if (first + n > dim || first + n < first)
1666 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1667 "position or range out of bounds",
1668 return isl_stat_error);
1669 return isl_stat_ok;
1672 /* Insert an extra integer division, prescribed by "div", to "bmap"
1673 * at (integer division) position "pos".
1675 * The integer division is first added at the end and then moved
1676 * into the right position.
1678 __isl_give isl_basic_map *isl_basic_map_insert_div(
1679 __isl_take isl_basic_map *bmap, int pos, __isl_keep isl_vec *div)
1681 int i, k;
1683 bmap = isl_basic_map_cow(bmap);
1684 if (!bmap || !div)
1685 return isl_basic_map_free(bmap);
1687 if (div->size != 1 + 1 + isl_basic_map_dim(bmap, isl_dim_all))
1688 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1689 "unexpected size", return isl_basic_map_free(bmap));
1690 if (isl_basic_map_check_range(bmap, isl_dim_div, pos, 0) < 0)
1691 return isl_basic_map_free(bmap);
1693 bmap = isl_basic_map_extend_space(bmap,
1694 isl_basic_map_get_space(bmap), 1, 0, 2);
1695 k = isl_basic_map_alloc_div(bmap);
1696 if (k < 0)
1697 return isl_basic_map_free(bmap);
1698 isl_seq_cpy(bmap->div[k], div->el, div->size);
1699 isl_int_set_si(bmap->div[k][div->size], 0);
1701 for (i = k; i > pos; --i)
1702 isl_basic_map_swap_div(bmap, i, i - 1);
1704 return bmap;
1707 isl_stat isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
1709 if (!bmap)
1710 return isl_stat_error;
1711 isl_assert(bmap->ctx, n <= bmap->n_div, return isl_stat_error);
1712 bmap->n_div -= n;
1713 return isl_stat_ok;
1716 /* Copy constraint from src to dst, putting the vars of src at offset
1717 * dim_off in dst and the divs of src at offset div_off in dst.
1718 * If both sets are actually map, then dim_off applies to the input
1719 * variables.
1721 static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
1722 struct isl_basic_map *src_map, isl_int *src,
1723 unsigned in_off, unsigned out_off, unsigned div_off)
1725 unsigned src_nparam = isl_basic_map_dim(src_map, isl_dim_param);
1726 unsigned dst_nparam = isl_basic_map_dim(dst_map, isl_dim_param);
1727 unsigned src_in = isl_basic_map_dim(src_map, isl_dim_in);
1728 unsigned dst_in = isl_basic_map_dim(dst_map, isl_dim_in);
1729 unsigned src_out = isl_basic_map_dim(src_map, isl_dim_out);
1730 unsigned dst_out = isl_basic_map_dim(dst_map, isl_dim_out);
1731 isl_int_set(dst[0], src[0]);
1732 isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
1733 if (dst_nparam > src_nparam)
1734 isl_seq_clr(dst+1+src_nparam,
1735 dst_nparam - src_nparam);
1736 isl_seq_clr(dst+1+dst_nparam, in_off);
1737 isl_seq_cpy(dst+1+dst_nparam+in_off,
1738 src+1+src_nparam,
1739 isl_min(dst_in-in_off, src_in));
1740 if (dst_in-in_off > src_in)
1741 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
1742 dst_in - in_off - src_in);
1743 isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
1744 isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
1745 src+1+src_nparam+src_in,
1746 isl_min(dst_out-out_off, src_out));
1747 if (dst_out-out_off > src_out)
1748 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
1749 dst_out - out_off - src_out);
1750 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
1751 isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
1752 src+1+src_nparam+src_in+src_out,
1753 isl_min(dst_map->extra-div_off, src_map->n_div));
1754 if (dst_map->n_div-div_off > src_map->n_div)
1755 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
1756 div_off+src_map->n_div,
1757 dst_map->n_div - div_off - src_map->n_div);
1760 static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
1761 struct isl_basic_map *src_map, isl_int *src,
1762 unsigned in_off, unsigned out_off, unsigned div_off)
1764 isl_int_set(dst[0], src[0]);
1765 copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
1768 static __isl_give isl_basic_map *add_constraints(
1769 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2,
1770 unsigned i_pos, unsigned o_pos)
1772 int i;
1773 unsigned div_off;
1775 if (!bmap1 || !bmap2)
1776 goto error;
1778 div_off = bmap1->n_div;
1780 for (i = 0; i < bmap2->n_eq; ++i) {
1781 int i1 = isl_basic_map_alloc_equality(bmap1);
1782 if (i1 < 0)
1783 goto error;
1784 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
1785 i_pos, o_pos, div_off);
1788 for (i = 0; i < bmap2->n_ineq; ++i) {
1789 int i1 = isl_basic_map_alloc_inequality(bmap1);
1790 if (i1 < 0)
1791 goto error;
1792 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
1793 i_pos, o_pos, div_off);
1796 for (i = 0; i < bmap2->n_div; ++i) {
1797 int i1 = isl_basic_map_alloc_div(bmap1);
1798 if (i1 < 0)
1799 goto error;
1800 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
1801 i_pos, o_pos, div_off);
1804 isl_basic_map_free(bmap2);
1806 return bmap1;
1808 error:
1809 isl_basic_map_free(bmap1);
1810 isl_basic_map_free(bmap2);
1811 return NULL;
1814 struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
1815 struct isl_basic_set *bset2, unsigned pos)
1817 return bset_from_bmap(add_constraints(bset_to_bmap(bset1),
1818 bset_to_bmap(bset2), 0, pos));
1821 __isl_give isl_basic_map *isl_basic_map_extend_space(
1822 __isl_take isl_basic_map *base, __isl_take isl_space *dim,
1823 unsigned extra, unsigned n_eq, unsigned n_ineq)
1825 struct isl_basic_map *ext;
1826 unsigned flags;
1827 int dims_ok;
1829 if (!dim)
1830 goto error;
1832 if (!base)
1833 goto error;
1835 dims_ok = isl_space_is_equal(base->dim, dim) &&
1836 base->extra >= base->n_div + extra;
1838 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1839 room_for_ineq(base, n_ineq)) {
1840 isl_space_free(dim);
1841 return base;
1844 isl_assert(base->ctx, base->dim->nparam <= dim->nparam, goto error);
1845 isl_assert(base->ctx, base->dim->n_in <= dim->n_in, goto error);
1846 isl_assert(base->ctx, base->dim->n_out <= dim->n_out, goto error);
1847 extra += base->extra;
1848 n_eq += base->n_eq;
1849 n_ineq += base->n_ineq;
1851 ext = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1852 dim = NULL;
1853 if (!ext)
1854 goto error;
1856 if (dims_ok)
1857 ext->sample = isl_vec_copy(base->sample);
1858 flags = base->flags;
1859 ext = add_constraints(ext, base, 0, 0);
1860 if (ext) {
1861 ext->flags = flags;
1862 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
1865 return ext;
1867 error:
1868 isl_space_free(dim);
1869 isl_basic_map_free(base);
1870 return NULL;
1873 __isl_give isl_basic_set *isl_basic_set_extend_space(
1874 __isl_take isl_basic_set *base,
1875 __isl_take isl_space *dim, unsigned extra,
1876 unsigned n_eq, unsigned n_ineq)
1878 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base),
1879 dim, extra, n_eq, n_ineq));
1882 struct isl_basic_map *isl_basic_map_extend_constraints(
1883 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
1885 if (!base)
1886 return NULL;
1887 return isl_basic_map_extend_space(base, isl_space_copy(base->dim),
1888 0, n_eq, n_ineq);
1891 struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
1892 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
1893 unsigned n_eq, unsigned n_ineq)
1895 struct isl_basic_map *bmap;
1896 isl_space *dim;
1898 if (!base)
1899 return NULL;
1900 dim = isl_space_alloc(base->ctx, nparam, n_in, n_out);
1901 if (!dim)
1902 goto error;
1904 bmap = isl_basic_map_extend_space(base, dim, extra, n_eq, n_ineq);
1905 return bmap;
1906 error:
1907 isl_basic_map_free(base);
1908 return NULL;
1911 struct isl_basic_set *isl_basic_set_extend(struct isl_basic_set *base,
1912 unsigned nparam, unsigned dim, unsigned extra,
1913 unsigned n_eq, unsigned n_ineq)
1915 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base),
1916 nparam, 0, dim, extra, n_eq, n_ineq));
1919 struct isl_basic_set *isl_basic_set_extend_constraints(
1920 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1922 isl_basic_map *bmap = bset_to_bmap(base);
1923 bmap = isl_basic_map_extend_constraints(bmap, n_eq, n_ineq);
1924 return bset_from_bmap(bmap);
1927 __isl_give isl_basic_set *isl_basic_set_cow(__isl_take isl_basic_set *bset)
1929 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset)));
1932 __isl_give isl_basic_map *isl_basic_map_cow(__isl_take isl_basic_map *bmap)
1934 if (!bmap)
1935 return NULL;
1937 if (bmap->ref > 1) {
1938 bmap->ref--;
1939 bmap = isl_basic_map_dup(bmap);
1941 if (bmap) {
1942 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
1943 ISL_F_CLR(bmap, ISL_BASIC_MAP_REDUCED_COEFFICIENTS);
1945 return bmap;
1948 /* Clear all cached information in "map", either because it is about
1949 * to be modified or because it is being freed.
1950 * Always return the same pointer that is passed in.
1951 * This is needed for the use in isl_map_free.
1953 static __isl_give isl_map *clear_caches(__isl_take isl_map *map)
1955 isl_basic_map_free(map->cached_simple_hull[0]);
1956 isl_basic_map_free(map->cached_simple_hull[1]);
1957 map->cached_simple_hull[0] = NULL;
1958 map->cached_simple_hull[1] = NULL;
1959 return map;
1962 __isl_give isl_set *isl_set_cow(__isl_take isl_set *set)
1964 return isl_map_cow(set);
1967 /* Return an isl_map that is equal to "map" and that has only
1968 * a single reference.
1970 * If the original input already has only one reference, then
1971 * simply return it, but clear all cached information, since
1972 * it may be rendered invalid by the operations that will be
1973 * performed on the result.
1975 * Otherwise, create a duplicate (without any cached information).
1977 __isl_give isl_map *isl_map_cow(__isl_take isl_map *map)
1979 if (!map)
1980 return NULL;
1982 if (map->ref == 1)
1983 return clear_caches(map);
1984 map->ref--;
1985 return isl_map_dup(map);
1988 static void swap_vars(struct isl_blk blk, isl_int *a,
1989 unsigned a_len, unsigned b_len)
1991 isl_seq_cpy(blk.data, a+a_len, b_len);
1992 isl_seq_cpy(blk.data+b_len, a, a_len);
1993 isl_seq_cpy(a, blk.data, b_len+a_len);
1996 static __isl_give isl_basic_map *isl_basic_map_swap_vars(
1997 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
1999 int i;
2000 struct isl_blk blk;
2002 if (!bmap)
2003 goto error;
2005 isl_assert(bmap->ctx,
2006 pos + n1 + n2 <= 1 + isl_basic_map_total_dim(bmap), goto error);
2008 if (n1 == 0 || n2 == 0)
2009 return bmap;
2011 bmap = isl_basic_map_cow(bmap);
2012 if (!bmap)
2013 return NULL;
2015 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
2016 if (isl_blk_is_error(blk))
2017 goto error;
2019 for (i = 0; i < bmap->n_eq; ++i)
2020 swap_vars(blk,
2021 bmap->eq[i] + pos, n1, n2);
2023 for (i = 0; i < bmap->n_ineq; ++i)
2024 swap_vars(blk,
2025 bmap->ineq[i] + pos, n1, n2);
2027 for (i = 0; i < bmap->n_div; ++i)
2028 swap_vars(blk,
2029 bmap->div[i]+1 + pos, n1, n2);
2031 isl_blk_free(bmap->ctx, blk);
2033 ISL_F_CLR(bmap, ISL_BASIC_SET_NORMALIZED);
2034 bmap = isl_basic_map_gauss(bmap, NULL);
2035 return isl_basic_map_finalize(bmap);
2036 error:
2037 isl_basic_map_free(bmap);
2038 return NULL;
2041 __isl_give isl_basic_map *isl_basic_map_set_to_empty(
2042 __isl_take isl_basic_map *bmap)
2044 int i = 0;
2045 unsigned total;
2046 if (!bmap)
2047 goto error;
2048 total = isl_basic_map_total_dim(bmap);
2049 if (isl_basic_map_free_div(bmap, bmap->n_div) < 0)
2050 return isl_basic_map_free(bmap);
2051 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
2052 if (bmap->n_eq > 0)
2053 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
2054 else {
2055 i = isl_basic_map_alloc_equality(bmap);
2056 if (i < 0)
2057 goto error;
2059 isl_int_set_si(bmap->eq[i][0], 1);
2060 isl_seq_clr(bmap->eq[i]+1, total);
2061 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
2062 isl_vec_free(bmap->sample);
2063 bmap->sample = NULL;
2064 return isl_basic_map_finalize(bmap);
2065 error:
2066 isl_basic_map_free(bmap);
2067 return NULL;
2070 __isl_give isl_basic_set *isl_basic_set_set_to_empty(
2071 __isl_take isl_basic_set *bset)
2073 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset)));
2076 __isl_give isl_basic_map *isl_basic_map_set_rational(
2077 __isl_take isl_basic_map *bmap)
2079 if (!bmap)
2080 return NULL;
2082 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
2083 return bmap;
2085 bmap = isl_basic_map_cow(bmap);
2086 if (!bmap)
2087 return NULL;
2089 ISL_F_SET(bmap, ISL_BASIC_MAP_RATIONAL);
2091 return isl_basic_map_finalize(bmap);
2094 __isl_give isl_basic_set *isl_basic_set_set_rational(
2095 __isl_take isl_basic_set *bset)
2097 return isl_basic_map_set_rational(bset);
2100 __isl_give isl_basic_set *isl_basic_set_set_integral(
2101 __isl_take isl_basic_set *bset)
2103 if (!bset)
2104 return NULL;
2106 if (!ISL_F_ISSET(bset, ISL_BASIC_MAP_RATIONAL))
2107 return bset;
2109 bset = isl_basic_set_cow(bset);
2110 if (!bset)
2111 return NULL;
2113 ISL_F_CLR(bset, ISL_BASIC_MAP_RATIONAL);
2115 return isl_basic_set_finalize(bset);
2118 __isl_give isl_map *isl_map_set_rational(__isl_take isl_map *map)
2120 int i;
2122 map = isl_map_cow(map);
2123 if (!map)
2124 return NULL;
2125 for (i = 0; i < map->n; ++i) {
2126 map->p[i] = isl_basic_map_set_rational(map->p[i]);
2127 if (!map->p[i])
2128 goto error;
2130 return map;
2131 error:
2132 isl_map_free(map);
2133 return NULL;
2136 __isl_give isl_set *isl_set_set_rational(__isl_take isl_set *set)
2138 return isl_map_set_rational(set);
2141 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
2142 * of "bmap").
2144 static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
2146 isl_int *t = bmap->div[a];
2147 bmap->div[a] = bmap->div[b];
2148 bmap->div[b] = t;
2151 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
2152 * div definitions accordingly.
2154 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
2156 int i;
2157 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
2159 swap_div(bmap, a, b);
2161 for (i = 0; i < bmap->n_eq; ++i)
2162 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
2164 for (i = 0; i < bmap->n_ineq; ++i)
2165 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
2167 for (i = 0; i < bmap->n_div; ++i)
2168 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
2169 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2172 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
2173 * div definitions accordingly.
2175 void isl_basic_set_swap_div(__isl_keep isl_basic_set *bset, int a, int b)
2177 isl_basic_map_swap_div(bset, a, b);
2180 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
2182 isl_seq_cpy(c, c + n, rem);
2183 isl_seq_clr(c + rem, n);
2186 /* Drop n dimensions starting at first.
2188 * In principle, this frees up some extra variables as the number
2189 * of columns remains constant, but we would have to extend
2190 * the div array too as the number of rows in this array is assumed
2191 * to be equal to extra.
2193 __isl_give isl_basic_set *isl_basic_set_drop_dims(
2194 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2196 return isl_basic_map_drop(bset_to_bmap(bset), isl_dim_set, first, n);
2199 /* Move "n" divs starting at "first" to the end of the list of divs.
2201 static struct isl_basic_map *move_divs_last(struct isl_basic_map *bmap,
2202 unsigned first, unsigned n)
2204 isl_int **div;
2205 int i;
2207 if (first + n == bmap->n_div)
2208 return bmap;
2210 div = isl_alloc_array(bmap->ctx, isl_int *, n);
2211 if (!div)
2212 goto error;
2213 for (i = 0; i < n; ++i)
2214 div[i] = bmap->div[first + i];
2215 for (i = 0; i < bmap->n_div - first - n; ++i)
2216 bmap->div[first + i] = bmap->div[first + n + i];
2217 for (i = 0; i < n; ++i)
2218 bmap->div[bmap->n_div - n + i] = div[i];
2219 free(div);
2220 return bmap;
2221 error:
2222 isl_basic_map_free(bmap);
2223 return NULL;
2226 /* Check that there are "n" dimensions of type "type" starting at "first"
2227 * in "map".
2229 static isl_stat isl_map_check_range(__isl_keep isl_map *map,
2230 enum isl_dim_type type, unsigned first, unsigned n)
2232 if (!map)
2233 return isl_stat_error;
2234 if (first + n > isl_map_dim(map, type) || first + n < first)
2235 isl_die(isl_map_get_ctx(map), isl_error_invalid,
2236 "position or range out of bounds",
2237 return isl_stat_error);
2238 return isl_stat_ok;
2241 /* Drop "n" dimensions of type "type" starting at "first".
2243 * In principle, this frees up some extra variables as the number
2244 * of columns remains constant, but we would have to extend
2245 * the div array too as the number of rows in this array is assumed
2246 * to be equal to extra.
2248 __isl_give isl_basic_map *isl_basic_map_drop(__isl_take isl_basic_map *bmap,
2249 enum isl_dim_type type, unsigned first, unsigned n)
2251 int i;
2252 unsigned dim;
2253 unsigned offset;
2254 unsigned left;
2256 if (!bmap)
2257 goto error;
2259 dim = isl_basic_map_dim(bmap, type);
2260 isl_assert(bmap->ctx, first + n <= dim, goto error);
2262 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2263 return bmap;
2265 bmap = isl_basic_map_cow(bmap);
2266 if (!bmap)
2267 return NULL;
2269 offset = isl_basic_map_offset(bmap, type) + first;
2270 left = isl_basic_map_total_dim(bmap) - (offset - 1) - n;
2271 for (i = 0; i < bmap->n_eq; ++i)
2272 constraint_drop_vars(bmap->eq[i]+offset, n, left);
2274 for (i = 0; i < bmap->n_ineq; ++i)
2275 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
2277 for (i = 0; i < bmap->n_div; ++i)
2278 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
2280 if (type == isl_dim_div) {
2281 bmap = move_divs_last(bmap, first, n);
2282 if (!bmap)
2283 goto error;
2284 if (isl_basic_map_free_div(bmap, n) < 0)
2285 return isl_basic_map_free(bmap);
2286 } else
2287 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
2288 if (!bmap->dim)
2289 goto error;
2291 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
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_NORMALIZED);
2393 if (isl_basic_map_free_div(bmap, 1) < 0)
2394 return isl_basic_map_free(bmap);
2396 return bmap;
2397 error:
2398 isl_basic_map_free(bmap);
2399 return NULL;
2402 /* Eliminate the specified n dimensions starting at first from the
2403 * constraints, without removing the dimensions from the space.
2404 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2406 __isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
2407 enum isl_dim_type type, unsigned first, unsigned n)
2409 int i;
2411 if (n == 0)
2412 return map;
2414 if (isl_map_check_range(map, type, first, n) < 0)
2415 return isl_map_free(map);
2417 map = isl_map_cow(map);
2418 if (!map)
2419 return NULL;
2421 for (i = 0; i < map->n; ++i) {
2422 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
2423 if (!map->p[i])
2424 goto error;
2426 return map;
2427 error:
2428 isl_map_free(map);
2429 return NULL;
2432 /* Eliminate the specified n dimensions starting at first from the
2433 * constraints, without removing the dimensions from the space.
2434 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2436 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
2437 enum isl_dim_type type, unsigned first, unsigned n)
2439 return set_from_map(isl_map_eliminate(set_to_map(set), type, first, n));
2442 /* Eliminate the specified n dimensions starting at first from the
2443 * constraints, without removing the dimensions from the space.
2444 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2446 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
2447 unsigned first, unsigned n)
2449 return isl_set_eliminate(set, isl_dim_set, first, n);
2452 __isl_give isl_basic_map *isl_basic_map_remove_divs(
2453 __isl_take isl_basic_map *bmap)
2455 if (!bmap)
2456 return NULL;
2457 bmap = isl_basic_map_eliminate_vars(bmap,
2458 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
2459 if (!bmap)
2460 return NULL;
2461 bmap->n_div = 0;
2462 return isl_basic_map_finalize(bmap);
2465 __isl_give isl_basic_set *isl_basic_set_remove_divs(
2466 __isl_take isl_basic_set *bset)
2468 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset)));
2471 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
2473 int i;
2475 if (!map)
2476 return NULL;
2477 if (map->n == 0)
2478 return map;
2480 map = isl_map_cow(map);
2481 if (!map)
2482 return NULL;
2484 for (i = 0; i < map->n; ++i) {
2485 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
2486 if (!map->p[i])
2487 goto error;
2489 return map;
2490 error:
2491 isl_map_free(map);
2492 return NULL;
2495 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
2497 return isl_map_remove_divs(set);
2500 __isl_give isl_basic_map *isl_basic_map_remove_dims(
2501 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
2502 unsigned first, unsigned n)
2504 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2505 return isl_basic_map_free(bmap);
2506 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2507 return bmap;
2508 bmap = isl_basic_map_eliminate_vars(bmap,
2509 isl_basic_map_offset(bmap, type) - 1 + first, n);
2510 if (!bmap)
2511 return bmap;
2512 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
2513 return bmap;
2514 bmap = isl_basic_map_drop(bmap, type, first, n);
2515 return bmap;
2518 /* Return true if the definition of the given div (recursively) involves
2519 * any of the given variables.
2521 static isl_bool div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
2522 unsigned first, unsigned n)
2524 int i;
2525 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2527 if (isl_int_is_zero(bmap->div[div][0]))
2528 return isl_bool_false;
2529 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
2530 return isl_bool_true;
2532 for (i = bmap->n_div - 1; i >= 0; --i) {
2533 isl_bool involves;
2535 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2536 continue;
2537 involves = div_involves_vars(bmap, i, first, n);
2538 if (involves < 0 || involves)
2539 return involves;
2542 return isl_bool_false;
2545 /* Try and add a lower and/or upper bound on "div" to "bmap"
2546 * based on inequality "i".
2547 * "total" is the total number of variables (excluding the divs).
2548 * "v" is a temporary object that can be used during the calculations.
2549 * If "lb" is set, then a lower bound should be constructed.
2550 * If "ub" is set, then an upper bound should be constructed.
2552 * The calling function has already checked that the inequality does not
2553 * reference "div", but we still need to check that the inequality is
2554 * of the right form. We'll consider the case where we want to construct
2555 * a lower bound. The construction of upper bounds is similar.
2557 * Let "div" be of the form
2559 * q = floor((a + f(x))/d)
2561 * We essentially check if constraint "i" is of the form
2563 * b + f(x) >= 0
2565 * so that we can use it to derive a lower bound on "div".
2566 * However, we allow a slightly more general form
2568 * b + g(x) >= 0
2570 * with the condition that the coefficients of g(x) - f(x) are all
2571 * divisible by d.
2572 * Rewriting this constraint as
2574 * 0 >= -b - g(x)
2576 * adding a + f(x) to both sides and dividing by d, we obtain
2578 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2580 * Taking the floor on both sides, we obtain
2582 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2584 * or
2586 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2588 * In the case of an upper bound, we construct the constraint
2590 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2593 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2594 __isl_take isl_basic_map *bmap, int div, int i,
2595 unsigned total, isl_int v, int lb, int ub)
2597 int j;
2599 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2600 if (lb) {
2601 isl_int_sub(v, bmap->ineq[i][1 + j],
2602 bmap->div[div][1 + 1 + j]);
2603 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2605 if (ub) {
2606 isl_int_add(v, bmap->ineq[i][1 + j],
2607 bmap->div[div][1 + 1 + j]);
2608 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2611 if (!lb && !ub)
2612 return bmap;
2614 bmap = isl_basic_map_cow(bmap);
2615 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2616 if (lb) {
2617 int k = isl_basic_map_alloc_inequality(bmap);
2618 if (k < 0)
2619 goto error;
2620 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2621 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2622 bmap->div[div][1 + j]);
2623 isl_int_cdiv_q(bmap->ineq[k][j],
2624 bmap->ineq[k][j], bmap->div[div][0]);
2626 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2628 if (ub) {
2629 int k = isl_basic_map_alloc_inequality(bmap);
2630 if (k < 0)
2631 goto error;
2632 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2633 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2634 bmap->div[div][1 + j]);
2635 isl_int_fdiv_q(bmap->ineq[k][j],
2636 bmap->ineq[k][j], bmap->div[div][0]);
2638 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2641 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
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_NORMALIZED);
3362 return 0;
3365 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *space, int n,
3366 unsigned flags)
3368 if (!space)
3369 return NULL;
3370 if (isl_space_dim(space, isl_dim_in) != 0)
3371 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3372 "set cannot have input dimensions", goto error);
3373 return isl_map_alloc_space(space, n, flags);
3374 error:
3375 isl_space_free(space);
3376 return NULL;
3379 /* Make sure "map" has room for at least "n" more basic maps.
3381 __isl_give isl_map *isl_map_grow(__isl_take isl_map *map, int n)
3383 int i;
3384 struct isl_map *grown = NULL;
3386 if (!map)
3387 return NULL;
3388 isl_assert(map->ctx, n >= 0, goto error);
3389 if (map->n + n <= map->size)
3390 return map;
3391 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
3392 if (!grown)
3393 goto error;
3394 for (i = 0; i < map->n; ++i) {
3395 grown->p[i] = isl_basic_map_copy(map->p[i]);
3396 if (!grown->p[i])
3397 goto error;
3398 grown->n++;
3400 isl_map_free(map);
3401 return grown;
3402 error:
3403 isl_map_free(grown);
3404 isl_map_free(map);
3405 return NULL;
3408 /* Make sure "set" has room for at least "n" more basic sets.
3410 struct isl_set *isl_set_grow(struct isl_set *set, int n)
3412 return set_from_map(isl_map_grow(set_to_map(set), n));
3415 __isl_give isl_set *isl_set_from_basic_set(__isl_take isl_basic_set *bset)
3417 return isl_map_from_basic_map(bset);
3420 __isl_give isl_map *isl_map_from_basic_map(__isl_take isl_basic_map *bmap)
3422 struct isl_map *map;
3424 if (!bmap)
3425 return NULL;
3427 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
3428 return isl_map_add_basic_map(map, bmap);
3431 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
3432 __isl_take isl_basic_set *bset)
3434 return set_from_map(isl_map_add_basic_map(set_to_map(set),
3435 bset_to_bmap(bset)));
3438 __isl_null isl_set *isl_set_free(__isl_take isl_set *set)
3440 return isl_map_free(set);
3443 void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
3445 int i;
3447 if (!set) {
3448 fprintf(out, "null set\n");
3449 return;
3452 fprintf(out, "%*s", indent, "");
3453 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3454 set->ref, set->n, set->dim->nparam, set->dim->n_out,
3455 set->flags);
3456 for (i = 0; i < set->n; ++i) {
3457 fprintf(out, "%*s", indent, "");
3458 fprintf(out, "basic set %d:\n", i);
3459 isl_basic_set_print_internal(set->p[i], out, indent+4);
3463 void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
3465 int i;
3467 if (!map) {
3468 fprintf(out, "null map\n");
3469 return;
3472 fprintf(out, "%*s", indent, "");
3473 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3474 "flags: %x, n_name: %d\n",
3475 map->ref, map->n, map->dim->nparam, map->dim->n_in,
3476 map->dim->n_out, map->flags, map->dim->n_id);
3477 for (i = 0; i < map->n; ++i) {
3478 fprintf(out, "%*s", indent, "");
3479 fprintf(out, "basic map %d:\n", i);
3480 isl_basic_map_print_internal(map->p[i], out, indent+4);
3484 __isl_give isl_basic_map *isl_basic_map_intersect_domain(
3485 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3487 struct isl_basic_map *bmap_domain;
3489 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3490 goto error;
3492 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
3493 isl_assert(bset->ctx,
3494 isl_basic_map_compatible_domain(bmap, bset), goto error);
3496 bmap = isl_basic_map_cow(bmap);
3497 if (!bmap)
3498 goto error;
3499 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3500 bset->n_div, bset->n_eq, bset->n_ineq);
3501 bmap_domain = isl_basic_map_from_domain(bset);
3502 bmap = add_constraints(bmap, bmap_domain, 0, 0);
3504 bmap = isl_basic_map_simplify(bmap);
3505 return isl_basic_map_finalize(bmap);
3506 error:
3507 isl_basic_map_free(bmap);
3508 isl_basic_set_free(bset);
3509 return NULL;
3512 /* Check that the space of "bset" is the same as that of the range of "bmap".
3514 static isl_stat isl_basic_map_check_compatible_range(
3515 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3517 isl_bool ok;
3519 ok = isl_basic_map_compatible_range(bmap, bset);
3520 if (ok < 0)
3521 return isl_stat_error;
3522 if (!ok)
3523 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3524 "incompatible spaces", return isl_stat_error);
3526 return isl_stat_ok;
3529 __isl_give isl_basic_map *isl_basic_map_intersect_range(
3530 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3532 struct isl_basic_map *bmap_range;
3534 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3535 goto error;
3537 if (isl_space_dim(bset->dim, isl_dim_set) != 0 &&
3538 isl_basic_map_check_compatible_range(bmap, bset) < 0)
3539 goto error;
3541 if (isl_basic_set_plain_is_universe(bset)) {
3542 isl_basic_set_free(bset);
3543 return bmap;
3546 bmap = isl_basic_map_cow(bmap);
3547 if (!bmap)
3548 goto error;
3549 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3550 bset->n_div, bset->n_eq, bset->n_ineq);
3551 bmap_range = bset_to_bmap(bset);
3552 bmap = add_constraints(bmap, bmap_range, 0, 0);
3554 bmap = isl_basic_map_simplify(bmap);
3555 return isl_basic_map_finalize(bmap);
3556 error:
3557 isl_basic_map_free(bmap);
3558 isl_basic_set_free(bset);
3559 return NULL;
3562 isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
3563 __isl_keep isl_vec *vec)
3565 int i;
3566 unsigned total;
3567 isl_int s;
3569 if (!bmap || !vec)
3570 return isl_bool_error;
3572 total = 1 + isl_basic_map_total_dim(bmap);
3573 if (total != vec->size)
3574 return isl_bool_false;
3576 isl_int_init(s);
3578 for (i = 0; i < bmap->n_eq; ++i) {
3579 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
3580 if (!isl_int_is_zero(s)) {
3581 isl_int_clear(s);
3582 return isl_bool_false;
3586 for (i = 0; i < bmap->n_ineq; ++i) {
3587 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
3588 if (isl_int_is_neg(s)) {
3589 isl_int_clear(s);
3590 return isl_bool_false;
3594 isl_int_clear(s);
3596 return isl_bool_true;
3599 isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
3600 __isl_keep isl_vec *vec)
3602 return isl_basic_map_contains(bset_to_bmap(bset), vec);
3605 __isl_give isl_basic_map *isl_basic_map_intersect(
3606 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
3608 struct isl_vec *sample = NULL;
3610 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
3611 goto error;
3612 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
3613 isl_space_dim(bmap1->dim, isl_dim_param) &&
3614 isl_space_dim(bmap2->dim, isl_dim_all) !=
3615 isl_space_dim(bmap2->dim, isl_dim_param))
3616 return isl_basic_map_intersect(bmap2, bmap1);
3618 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
3619 isl_space_dim(bmap2->dim, isl_dim_param))
3620 isl_assert(bmap1->ctx,
3621 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
3623 if (isl_basic_map_plain_is_empty(bmap1)) {
3624 isl_basic_map_free(bmap2);
3625 return bmap1;
3627 if (isl_basic_map_plain_is_empty(bmap2)) {
3628 isl_basic_map_free(bmap1);
3629 return bmap2;
3632 if (bmap1->sample &&
3633 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
3634 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
3635 sample = isl_vec_copy(bmap1->sample);
3636 else if (bmap2->sample &&
3637 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
3638 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
3639 sample = isl_vec_copy(bmap2->sample);
3641 bmap1 = isl_basic_map_cow(bmap1);
3642 if (!bmap1)
3643 goto error;
3644 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
3645 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
3646 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
3648 if (!bmap1)
3649 isl_vec_free(sample);
3650 else if (sample) {
3651 isl_vec_free(bmap1->sample);
3652 bmap1->sample = sample;
3655 bmap1 = isl_basic_map_simplify(bmap1);
3656 return isl_basic_map_finalize(bmap1);
3657 error:
3658 if (sample)
3659 isl_vec_free(sample);
3660 isl_basic_map_free(bmap1);
3661 isl_basic_map_free(bmap2);
3662 return NULL;
3665 struct isl_basic_set *isl_basic_set_intersect(
3666 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
3668 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1),
3669 bset_to_bmap(bset2)));
3672 __isl_give isl_basic_set *isl_basic_set_intersect_params(
3673 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3675 return isl_basic_set_intersect(bset1, bset2);
3678 /* Special case of isl_map_intersect, where both map1 and map2
3679 * are convex, without any divs and such that either map1 or map2
3680 * contains a single constraint. This constraint is then simply
3681 * added to the other map.
3683 static __isl_give isl_map *map_intersect_add_constraint(
3684 __isl_take isl_map *map1, __isl_take isl_map *map2)
3686 isl_assert(map1->ctx, map1->n == 1, goto error);
3687 isl_assert(map2->ctx, map1->n == 1, goto error);
3688 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
3689 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
3691 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
3692 return isl_map_intersect(map2, map1);
3694 map1 = isl_map_cow(map1);
3695 if (!map1)
3696 goto error;
3697 if (isl_map_plain_is_empty(map1)) {
3698 isl_map_free(map2);
3699 return map1;
3701 map1->p[0] = isl_basic_map_cow(map1->p[0]);
3702 if (map2->p[0]->n_eq == 1)
3703 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
3704 else
3705 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
3706 map2->p[0]->ineq[0]);
3708 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
3709 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
3710 if (!map1->p[0])
3711 goto error;
3713 if (isl_basic_map_plain_is_empty(map1->p[0])) {
3714 isl_basic_map_free(map1->p[0]);
3715 map1->n = 0;
3718 isl_map_free(map2);
3720 map1 = isl_map_unmark_normalized(map1);
3721 return map1;
3722 error:
3723 isl_map_free(map1);
3724 isl_map_free(map2);
3725 return NULL;
3728 /* map2 may be either a parameter domain or a map living in the same
3729 * space as map1.
3731 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3732 __isl_take isl_map *map2)
3734 unsigned flags = 0;
3735 isl_bool equal;
3736 isl_map *result;
3737 int i, j;
3739 if (!map1 || !map2)
3740 goto error;
3742 if ((isl_map_plain_is_empty(map1) ||
3743 isl_map_plain_is_universe(map2)) &&
3744 isl_space_is_equal(map1->dim, map2->dim)) {
3745 isl_map_free(map2);
3746 return map1;
3748 if ((isl_map_plain_is_empty(map2) ||
3749 isl_map_plain_is_universe(map1)) &&
3750 isl_space_is_equal(map1->dim, map2->dim)) {
3751 isl_map_free(map1);
3752 return map2;
3755 if (map1->n == 1 && map2->n == 1 &&
3756 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
3757 isl_space_is_equal(map1->dim, map2->dim) &&
3758 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3759 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3760 return map_intersect_add_constraint(map1, map2);
3762 equal = isl_map_plain_is_equal(map1, map2);
3763 if (equal < 0)
3764 goto error;
3765 if (equal) {
3766 isl_map_free(map2);
3767 return map1;
3770 if (isl_space_dim(map2->dim, isl_dim_all) !=
3771 isl_space_dim(map2->dim, isl_dim_param))
3772 isl_assert(map1->ctx,
3773 isl_space_is_equal(map1->dim, map2->dim), goto error);
3775 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3776 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3777 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3779 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3780 map1->n * map2->n, flags);
3781 if (!result)
3782 goto error;
3783 for (i = 0; i < map1->n; ++i)
3784 for (j = 0; j < map2->n; ++j) {
3785 struct isl_basic_map *part;
3786 part = isl_basic_map_intersect(
3787 isl_basic_map_copy(map1->p[i]),
3788 isl_basic_map_copy(map2->p[j]));
3789 if (isl_basic_map_is_empty(part) < 0)
3790 part = isl_basic_map_free(part);
3791 result = isl_map_add_basic_map(result, part);
3792 if (!result)
3793 goto error;
3795 isl_map_free(map1);
3796 isl_map_free(map2);
3797 return result;
3798 error:
3799 isl_map_free(map1);
3800 isl_map_free(map2);
3801 return NULL;
3804 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3805 __isl_take isl_map *map2)
3807 if (!map1 || !map2)
3808 goto error;
3809 if (!isl_space_is_equal(map1->dim, map2->dim))
3810 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
3811 "spaces don't match", goto error);
3812 return map_intersect_internal(map1, map2);
3813 error:
3814 isl_map_free(map1);
3815 isl_map_free(map2);
3816 return NULL;
3819 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3820 __isl_take isl_map *map2)
3822 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
3825 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
3827 return set_from_map(isl_map_intersect(set_to_map(set1),
3828 set_to_map(set2)));
3831 /* map_intersect_internal accepts intersections
3832 * with parameter domains, so we can just call that function.
3834 static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
3835 __isl_take isl_set *params)
3837 return map_intersect_internal(map, params);
3840 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
3841 __isl_take isl_map *map2)
3843 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
3846 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3847 __isl_take isl_set *params)
3849 return isl_map_intersect_params(set, params);
3852 __isl_give isl_basic_map *isl_basic_map_reverse(__isl_take isl_basic_map *bmap)
3854 isl_space *space;
3855 unsigned pos, n1, n2;
3857 if (!bmap)
3858 return NULL;
3859 bmap = isl_basic_map_cow(bmap);
3860 if (!bmap)
3861 return NULL;
3862 space = isl_space_reverse(isl_space_copy(bmap->dim));
3863 pos = isl_basic_map_offset(bmap, isl_dim_in);
3864 n1 = isl_basic_map_dim(bmap, isl_dim_in);
3865 n2 = isl_basic_map_dim(bmap, isl_dim_out);
3866 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
3867 return isl_basic_map_reset_space(bmap, space);
3870 static __isl_give isl_basic_map *basic_map_space_reset(
3871 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
3873 isl_space *space;
3875 if (!bmap)
3876 return NULL;
3877 if (!isl_space_is_named_or_nested(bmap->dim, type))
3878 return bmap;
3880 space = isl_basic_map_get_space(bmap);
3881 space = isl_space_reset(space, type);
3882 bmap = isl_basic_map_reset_space(bmap, space);
3883 return bmap;
3886 __isl_give isl_basic_map *isl_basic_map_insert_dims(
3887 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3888 unsigned pos, unsigned n)
3890 isl_bool rational;
3891 isl_space *res_space;
3892 struct isl_basic_map *res;
3893 struct isl_dim_map *dim_map;
3894 unsigned total, off;
3895 enum isl_dim_type t;
3897 if (n == 0)
3898 return basic_map_space_reset(bmap, type);
3900 res_space = isl_space_insert_dims(isl_basic_map_get_space(bmap),
3901 type, pos, n);
3902 if (!res_space)
3903 return isl_basic_map_free(bmap);
3905 total = isl_basic_map_total_dim(bmap) + n;
3906 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3907 off = 0;
3908 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3909 if (t != type) {
3910 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3911 } else {
3912 unsigned size = isl_basic_map_dim(bmap, t);
3913 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3914 0, pos, off);
3915 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3916 pos, size - pos, off + pos + n);
3918 off += isl_space_dim(res_space, t);
3920 isl_dim_map_div(dim_map, bmap, off);
3922 res = isl_basic_map_alloc_space(res_space,
3923 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3924 rational = isl_basic_map_is_rational(bmap);
3925 if (rational < 0)
3926 res = isl_basic_map_free(res);
3927 if (rational)
3928 res = isl_basic_map_set_rational(res);
3929 if (isl_basic_map_plain_is_empty(bmap)) {
3930 isl_basic_map_free(bmap);
3931 free(dim_map);
3932 return isl_basic_map_set_to_empty(res);
3934 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3935 return isl_basic_map_finalize(res);
3938 __isl_give isl_basic_set *isl_basic_set_insert_dims(
3939 __isl_take isl_basic_set *bset,
3940 enum isl_dim_type type, unsigned pos, unsigned n)
3942 return isl_basic_map_insert_dims(bset, type, pos, n);
3945 __isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
3946 enum isl_dim_type type, unsigned n)
3948 if (!bmap)
3949 return NULL;
3950 return isl_basic_map_insert_dims(bmap, type,
3951 isl_basic_map_dim(bmap, type), n);
3954 __isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
3955 enum isl_dim_type type, unsigned n)
3957 if (!bset)
3958 return NULL;
3959 isl_assert(bset->ctx, type != isl_dim_in, goto error);
3960 return isl_basic_map_add_dims(bset, type, n);
3961 error:
3962 isl_basic_set_free(bset);
3963 return NULL;
3966 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
3967 enum isl_dim_type type)
3969 isl_space *space;
3971 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3972 return map;
3974 space = isl_map_get_space(map);
3975 space = isl_space_reset(space, type);
3976 map = isl_map_reset_space(map, space);
3977 return map;
3980 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3981 enum isl_dim_type type, unsigned pos, unsigned n)
3983 int i;
3985 if (n == 0)
3986 return map_space_reset(map, type);
3988 map = isl_map_cow(map);
3989 if (!map)
3990 return NULL;
3992 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3993 if (!map->dim)
3994 goto error;
3996 for (i = 0; i < map->n; ++i) {
3997 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3998 if (!map->p[i])
3999 goto error;
4002 return map;
4003 error:
4004 isl_map_free(map);
4005 return NULL;
4008 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
4009 enum isl_dim_type type, unsigned pos, unsigned n)
4011 return isl_map_insert_dims(set, type, pos, n);
4014 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
4015 enum isl_dim_type type, unsigned n)
4017 if (!map)
4018 return NULL;
4019 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
4022 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
4023 enum isl_dim_type type, unsigned n)
4025 if (!set)
4026 return NULL;
4027 isl_assert(set->ctx, type != isl_dim_in, goto error);
4028 return set_from_map(isl_map_add_dims(set_to_map(set), type, n));
4029 error:
4030 isl_set_free(set);
4031 return NULL;
4034 __isl_give isl_basic_map *isl_basic_map_move_dims(
4035 __isl_take isl_basic_map *bmap,
4036 enum isl_dim_type dst_type, unsigned dst_pos,
4037 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4039 struct isl_dim_map *dim_map;
4040 struct isl_basic_map *res;
4041 enum isl_dim_type t;
4042 unsigned total, off;
4044 if (!bmap)
4045 return NULL;
4046 if (n == 0) {
4047 bmap = isl_basic_map_reset(bmap, src_type);
4048 bmap = isl_basic_map_reset(bmap, dst_type);
4049 return bmap;
4052 if (isl_basic_map_check_range(bmap, src_type, src_pos, n) < 0)
4053 return isl_basic_map_free(bmap);
4055 if (dst_type == src_type && dst_pos == src_pos)
4056 return bmap;
4058 isl_assert(bmap->ctx, dst_type != src_type, goto error);
4060 if (pos(bmap->dim, dst_type) + dst_pos ==
4061 pos(bmap->dim, src_type) + src_pos +
4062 ((src_type < dst_type) ? n : 0)) {
4063 bmap = isl_basic_map_cow(bmap);
4064 if (!bmap)
4065 return NULL;
4067 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4068 src_type, src_pos, n);
4069 if (!bmap->dim)
4070 goto error;
4072 bmap = isl_basic_map_finalize(bmap);
4074 return bmap;
4077 total = isl_basic_map_total_dim(bmap);
4078 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4080 off = 0;
4081 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4082 unsigned size = isl_space_dim(bmap->dim, t);
4083 if (t == dst_type) {
4084 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4085 0, dst_pos, off);
4086 off += dst_pos;
4087 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
4088 src_pos, n, off);
4089 off += n;
4090 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4091 dst_pos, size - dst_pos, off);
4092 off += size - dst_pos;
4093 } else if (t == src_type) {
4094 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4095 0, src_pos, off);
4096 off += src_pos;
4097 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4098 src_pos + n, size - src_pos - n, off);
4099 off += size - src_pos - n;
4100 } else {
4101 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4102 off += size;
4105 isl_dim_map_div(dim_map, bmap, off);
4107 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4108 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4109 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4110 if (!bmap)
4111 goto error;
4113 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4114 src_type, src_pos, n);
4115 if (!bmap->dim)
4116 goto error;
4118 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
4119 bmap = isl_basic_map_gauss(bmap, NULL);
4120 bmap = isl_basic_map_finalize(bmap);
4122 return bmap;
4123 error:
4124 isl_basic_map_free(bmap);
4125 return NULL;
4128 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
4129 enum isl_dim_type dst_type, unsigned dst_pos,
4130 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4132 isl_basic_map *bmap = bset_to_bmap(bset);
4133 bmap = isl_basic_map_move_dims(bmap, dst_type, dst_pos,
4134 src_type, src_pos, n);
4135 return bset_from_bmap(bmap);
4138 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
4139 enum isl_dim_type dst_type, unsigned dst_pos,
4140 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4142 if (!set)
4143 return NULL;
4144 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
4145 return set_from_map(isl_map_move_dims(set_to_map(set),
4146 dst_type, dst_pos, src_type, src_pos, n));
4147 error:
4148 isl_set_free(set);
4149 return NULL;
4152 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
4153 enum isl_dim_type dst_type, unsigned dst_pos,
4154 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4156 int i;
4158 if (n == 0) {
4159 map = isl_map_reset(map, src_type);
4160 map = isl_map_reset(map, dst_type);
4161 return map;
4164 if (isl_map_check_range(map, src_type, src_pos, n))
4165 return isl_map_free(map);
4167 if (dst_type == src_type && dst_pos == src_pos)
4168 return map;
4170 isl_assert(map->ctx, dst_type != src_type, goto error);
4172 map = isl_map_cow(map);
4173 if (!map)
4174 return NULL;
4176 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
4177 if (!map->dim)
4178 goto error;
4180 for (i = 0; i < map->n; ++i) {
4181 map->p[i] = isl_basic_map_move_dims(map->p[i],
4182 dst_type, dst_pos,
4183 src_type, src_pos, n);
4184 if (!map->p[i])
4185 goto error;
4188 return map;
4189 error:
4190 isl_map_free(map);
4191 return NULL;
4194 /* Move the specified dimensions to the last columns right before
4195 * the divs. Don't change the dimension specification of bmap.
4196 * That's the responsibility of the caller.
4198 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
4199 enum isl_dim_type type, unsigned first, unsigned n)
4201 struct isl_dim_map *dim_map;
4202 struct isl_basic_map *res;
4203 enum isl_dim_type t;
4204 unsigned total, off;
4206 if (!bmap)
4207 return NULL;
4208 if (pos(bmap->dim, type) + first + n ==
4209 1 + isl_space_dim(bmap->dim, isl_dim_all))
4210 return bmap;
4212 total = isl_basic_map_total_dim(bmap);
4213 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4215 off = 0;
4216 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4217 unsigned size = isl_space_dim(bmap->dim, t);
4218 if (t == type) {
4219 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4220 0, first, off);
4221 off += first;
4222 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4223 first, n, total - bmap->n_div - n);
4224 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4225 first + n, size - (first + n), off);
4226 off += size - (first + n);
4227 } else {
4228 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4229 off += size;
4232 isl_dim_map_div(dim_map, bmap, off + n);
4234 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4235 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4236 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4237 return res;
4240 /* Insert "n" rows in the divs of "bmap".
4242 * The number of columns is not changed, which means that the last
4243 * dimensions of "bmap" are being reintepreted as the new divs.
4244 * The space of "bmap" is not adjusted, however, which means
4245 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
4246 * from the space of "bmap" is the responsibility of the caller.
4248 static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
4249 int n)
4251 int i;
4252 size_t row_size;
4253 isl_int **new_div;
4254 isl_int *old;
4256 bmap = isl_basic_map_cow(bmap);
4257 if (!bmap)
4258 return NULL;
4260 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
4261 old = bmap->block2.data;
4262 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
4263 (bmap->extra + n) * (1 + row_size));
4264 if (!bmap->block2.data)
4265 return isl_basic_map_free(bmap);
4266 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
4267 if (!new_div)
4268 return isl_basic_map_free(bmap);
4269 for (i = 0; i < n; ++i) {
4270 new_div[i] = bmap->block2.data +
4271 (bmap->extra + i) * (1 + row_size);
4272 isl_seq_clr(new_div[i], 1 + row_size);
4274 for (i = 0; i < bmap->extra; ++i)
4275 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
4276 free(bmap->div);
4277 bmap->div = new_div;
4278 bmap->n_div += n;
4279 bmap->extra += n;
4281 return bmap;
4284 /* Drop constraints from "bmap" that only involve the variables
4285 * of "type" in the range [first, first + n] that are not related
4286 * to any of the variables outside that interval.
4287 * These constraints cannot influence the values for the variables
4288 * outside the interval, except in case they cause "bmap" to be empty.
4289 * Only drop the constraints if "bmap" is known to be non-empty.
4291 static __isl_give isl_basic_map *drop_irrelevant_constraints(
4292 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
4293 unsigned first, unsigned n)
4295 int i;
4296 int *groups;
4297 unsigned dim, n_div;
4298 isl_bool non_empty;
4300 non_empty = isl_basic_map_plain_is_non_empty(bmap);
4301 if (non_empty < 0)
4302 return isl_basic_map_free(bmap);
4303 if (!non_empty)
4304 return bmap;
4306 dim = isl_basic_map_dim(bmap, isl_dim_all);
4307 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4308 groups = isl_calloc_array(isl_basic_map_get_ctx(bmap), int, dim);
4309 if (!groups)
4310 return isl_basic_map_free(bmap);
4311 first += isl_basic_map_offset(bmap, type) - 1;
4312 for (i = 0; i < first; ++i)
4313 groups[i] = -1;
4314 for (i = first + n; i < dim - n_div; ++i)
4315 groups[i] = -1;
4317 bmap = isl_basic_map_drop_unrelated_constraints(bmap, groups);
4319 return bmap;
4322 /* Turn the n dimensions of type type, starting at first
4323 * into existentially quantified variables.
4325 * If a subset of the projected out variables are unrelated
4326 * to any of the variables that remain, then the constraints
4327 * involving this subset are simply dropped first.
4329 __isl_give isl_basic_map *isl_basic_map_project_out(
4330 __isl_take isl_basic_map *bmap,
4331 enum isl_dim_type type, unsigned first, unsigned n)
4333 isl_bool empty;
4335 if (n == 0)
4336 return basic_map_space_reset(bmap, type);
4337 if (type == isl_dim_div)
4338 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
4339 "cannot project out existentially quantified variables",
4340 return isl_basic_map_free(bmap));
4342 empty = isl_basic_map_plain_is_empty(bmap);
4343 if (empty < 0)
4344 return isl_basic_map_free(bmap);
4345 if (empty)
4346 bmap = isl_basic_map_set_to_empty(bmap);
4348 bmap = drop_irrelevant_constraints(bmap, type, first, n);
4349 if (!bmap)
4350 return NULL;
4352 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
4353 return isl_basic_map_remove_dims(bmap, type, first, n);
4355 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
4356 return isl_basic_map_free(bmap);
4358 bmap = move_last(bmap, type, first, n);
4359 bmap = isl_basic_map_cow(bmap);
4360 bmap = insert_div_rows(bmap, n);
4361 if (!bmap)
4362 return NULL;
4364 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
4365 if (!bmap->dim)
4366 goto error;
4367 bmap = isl_basic_map_simplify(bmap);
4368 bmap = isl_basic_map_drop_redundant_divs(bmap);
4369 return isl_basic_map_finalize(bmap);
4370 error:
4371 isl_basic_map_free(bmap);
4372 return NULL;
4375 /* Turn the n dimensions of type type, starting at first
4376 * into existentially quantified variables.
4378 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
4379 enum isl_dim_type type, unsigned first, unsigned n)
4381 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset),
4382 type, first, n));
4385 /* Turn the n dimensions of type type, starting at first
4386 * into existentially quantified variables.
4388 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
4389 enum isl_dim_type type, unsigned first, unsigned n)
4391 int i;
4393 if (n == 0)
4394 return map_space_reset(map, type);
4396 if (isl_map_check_range(map, type, first, n) < 0)
4397 return isl_map_free(map);
4399 map = isl_map_cow(map);
4400 if (!map)
4401 return NULL;
4403 map->dim = isl_space_drop_dims(map->dim, type, first, n);
4404 if (!map->dim)
4405 goto error;
4407 for (i = 0; i < map->n; ++i) {
4408 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
4409 if (!map->p[i])
4410 goto error;
4413 return map;
4414 error:
4415 isl_map_free(map);
4416 return NULL;
4419 /* Turn all the dimensions of type "type", except the "n" starting at "first"
4420 * into existentially quantified variables.
4422 __isl_give isl_map *isl_map_project_onto(__isl_take isl_map *map,
4423 enum isl_dim_type type, unsigned first, unsigned n)
4425 unsigned dim;
4427 if (isl_map_check_range(map, type, first, n) < 0)
4428 return isl_map_free(map);
4429 dim = isl_map_dim(map, type);
4430 map = isl_map_project_out(map, type, first + n, dim - (first + n));
4431 map = isl_map_project_out(map, type, 0, first);
4432 return map;
4435 /* Turn the n dimensions of type type, starting at first
4436 * into existentially quantified variables.
4438 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
4439 enum isl_dim_type type, unsigned first, unsigned n)
4441 return set_from_map(isl_map_project_out(set_to_map(set),
4442 type, first, n));
4445 /* Return a map that projects the elements in "set" onto their
4446 * "n" set dimensions starting at "first".
4447 * "type" should be equal to isl_dim_set.
4449 __isl_give isl_map *isl_set_project_onto_map(__isl_take isl_set *set,
4450 enum isl_dim_type type, unsigned first, unsigned n)
4452 int i;
4453 int dim;
4454 isl_map *map;
4456 if (!set)
4457 return NULL;
4458 if (type != isl_dim_set)
4459 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4460 "only set dimensions can be projected out", goto error);
4461 dim = isl_set_dim(set, isl_dim_set);
4462 if (first + n > dim || first + n < first)
4463 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4464 "index out of bounds", goto error);
4466 map = isl_map_from_domain(set);
4467 map = isl_map_add_dims(map, isl_dim_out, n);
4468 for (i = 0; i < n; ++i)
4469 map = isl_map_equate(map, isl_dim_in, first + i,
4470 isl_dim_out, i);
4471 return map;
4472 error:
4473 isl_set_free(set);
4474 return NULL;
4477 static struct isl_basic_map *add_divs(struct isl_basic_map *bmap, unsigned n)
4479 int i, j;
4481 for (i = 0; i < n; ++i) {
4482 j = isl_basic_map_alloc_div(bmap);
4483 if (j < 0)
4484 goto error;
4485 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
4487 return bmap;
4488 error:
4489 isl_basic_map_free(bmap);
4490 return NULL;
4493 struct isl_basic_map *isl_basic_map_apply_range(
4494 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4496 isl_space *dim_result = NULL;
4497 struct isl_basic_map *bmap;
4498 unsigned n_in, n_out, n, nparam, total, pos;
4499 struct isl_dim_map *dim_map1, *dim_map2;
4501 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4502 goto error;
4503 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_out,
4504 bmap2->dim, isl_dim_in))
4505 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4506 "spaces don't match", goto error);
4508 dim_result = isl_space_join(isl_space_copy(bmap1->dim),
4509 isl_space_copy(bmap2->dim));
4511 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4512 n_out = isl_basic_map_dim(bmap2, isl_dim_out);
4513 n = isl_basic_map_dim(bmap1, isl_dim_out);
4514 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4516 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
4517 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4518 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
4519 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4520 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
4521 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4522 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
4523 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
4524 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4525 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4526 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4528 bmap = isl_basic_map_alloc_space(dim_result,
4529 bmap1->n_div + bmap2->n_div + n,
4530 bmap1->n_eq + bmap2->n_eq,
4531 bmap1->n_ineq + bmap2->n_ineq);
4532 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4533 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4534 bmap = add_divs(bmap, n);
4535 bmap = isl_basic_map_simplify(bmap);
4536 bmap = isl_basic_map_drop_redundant_divs(bmap);
4537 return isl_basic_map_finalize(bmap);
4538 error:
4539 isl_basic_map_free(bmap1);
4540 isl_basic_map_free(bmap2);
4541 return NULL;
4544 struct isl_basic_set *isl_basic_set_apply(
4545 struct isl_basic_set *bset, struct isl_basic_map *bmap)
4547 if (!bset || !bmap)
4548 goto error;
4550 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
4551 goto error);
4553 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset),
4554 bmap));
4555 error:
4556 isl_basic_set_free(bset);
4557 isl_basic_map_free(bmap);
4558 return NULL;
4561 struct isl_basic_map *isl_basic_map_apply_domain(
4562 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4564 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4565 goto error;
4566 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_in,
4567 bmap2->dim, isl_dim_in))
4568 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4569 "spaces don't match", goto error);
4571 bmap1 = isl_basic_map_reverse(bmap1);
4572 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
4573 return isl_basic_map_reverse(bmap1);
4574 error:
4575 isl_basic_map_free(bmap1);
4576 isl_basic_map_free(bmap2);
4577 return NULL;
4580 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4581 * A \cap B -> f(A) + f(B)
4583 __isl_give isl_basic_map *isl_basic_map_sum(__isl_take isl_basic_map *bmap1,
4584 __isl_take isl_basic_map *bmap2)
4586 unsigned n_in, n_out, nparam, total, pos;
4587 struct isl_basic_map *bmap = NULL;
4588 struct isl_dim_map *dim_map1, *dim_map2;
4589 int i;
4591 if (!bmap1 || !bmap2)
4592 goto error;
4594 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
4595 goto error);
4597 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4598 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4599 n_out = isl_basic_map_dim(bmap1, isl_dim_out);
4601 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
4602 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4603 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
4604 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4605 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
4606 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4607 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4608 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
4609 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4610 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4611 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
4613 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
4614 bmap1->n_div + bmap2->n_div + 2 * n_out,
4615 bmap1->n_eq + bmap2->n_eq + n_out,
4616 bmap1->n_ineq + bmap2->n_ineq);
4617 for (i = 0; i < n_out; ++i) {
4618 int j = isl_basic_map_alloc_equality(bmap);
4619 if (j < 0)
4620 goto error;
4621 isl_seq_clr(bmap->eq[j], 1+total);
4622 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
4623 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
4624 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
4626 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4627 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4628 bmap = add_divs(bmap, 2 * n_out);
4630 bmap = isl_basic_map_simplify(bmap);
4631 return isl_basic_map_finalize(bmap);
4632 error:
4633 isl_basic_map_free(bmap);
4634 isl_basic_map_free(bmap1);
4635 isl_basic_map_free(bmap2);
4636 return NULL;
4639 /* Given two maps A -> f(A) and B -> g(B), construct a map
4640 * A \cap B -> f(A) + f(B)
4642 __isl_give isl_map *isl_map_sum(__isl_take isl_map *map1,
4643 __isl_take isl_map *map2)
4645 struct isl_map *result;
4646 int i, j;
4648 if (!map1 || !map2)
4649 goto error;
4651 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
4653 result = isl_map_alloc_space(isl_space_copy(map1->dim),
4654 map1->n * map2->n, 0);
4655 if (!result)
4656 goto error;
4657 for (i = 0; i < map1->n; ++i)
4658 for (j = 0; j < map2->n; ++j) {
4659 struct isl_basic_map *part;
4660 part = isl_basic_map_sum(
4661 isl_basic_map_copy(map1->p[i]),
4662 isl_basic_map_copy(map2->p[j]));
4663 if (isl_basic_map_is_empty(part))
4664 isl_basic_map_free(part);
4665 else
4666 result = isl_map_add_basic_map(result, part);
4667 if (!result)
4668 goto error;
4670 isl_map_free(map1);
4671 isl_map_free(map2);
4672 return result;
4673 error:
4674 isl_map_free(map1);
4675 isl_map_free(map2);
4676 return NULL;
4679 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
4680 __isl_take isl_set *set2)
4682 return set_from_map(isl_map_sum(set_to_map(set1), set_to_map(set2)));
4685 /* Given a basic map A -> f(A), construct A -> -f(A).
4687 __isl_give isl_basic_map *isl_basic_map_neg(__isl_take isl_basic_map *bmap)
4689 int i, j;
4690 unsigned off, n;
4692 bmap = isl_basic_map_cow(bmap);
4693 if (!bmap)
4694 return NULL;
4696 n = isl_basic_map_dim(bmap, isl_dim_out);
4697 off = isl_basic_map_offset(bmap, isl_dim_out);
4698 for (i = 0; i < bmap->n_eq; ++i)
4699 for (j = 0; j < n; ++j)
4700 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
4701 for (i = 0; i < bmap->n_ineq; ++i)
4702 for (j = 0; j < n; ++j)
4703 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
4704 for (i = 0; i < bmap->n_div; ++i)
4705 for (j = 0; j < n; ++j)
4706 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
4707 bmap = isl_basic_map_gauss(bmap, NULL);
4708 return isl_basic_map_finalize(bmap);
4711 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
4713 return isl_basic_map_neg(bset);
4716 /* Given a map A -> f(A), construct A -> -f(A).
4718 __isl_give isl_map *isl_map_neg(__isl_take isl_map *map)
4720 int i;
4722 map = isl_map_cow(map);
4723 if (!map)
4724 return NULL;
4726 for (i = 0; i < map->n; ++i) {
4727 map->p[i] = isl_basic_map_neg(map->p[i]);
4728 if (!map->p[i])
4729 goto error;
4732 return map;
4733 error:
4734 isl_map_free(map);
4735 return NULL;
4738 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
4740 return set_from_map(isl_map_neg(set_to_map(set)));
4743 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4744 * A -> floor(f(A)/d).
4746 __isl_give isl_basic_map *isl_basic_map_floordiv(__isl_take isl_basic_map *bmap,
4747 isl_int d)
4749 unsigned n_in, n_out, nparam, total, pos;
4750 struct isl_basic_map *result = NULL;
4751 struct isl_dim_map *dim_map;
4752 int i;
4754 if (!bmap)
4755 return NULL;
4757 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4758 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4759 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4761 total = nparam + n_in + n_out + bmap->n_div + n_out;
4762 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4763 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
4764 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
4765 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
4766 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
4768 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
4769 bmap->n_div + n_out,
4770 bmap->n_eq, bmap->n_ineq + 2 * n_out);
4771 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
4772 result = add_divs(result, n_out);
4773 for (i = 0; i < n_out; ++i) {
4774 int j;
4775 j = isl_basic_map_alloc_inequality(result);
4776 if (j < 0)
4777 goto error;
4778 isl_seq_clr(result->ineq[j], 1+total);
4779 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
4780 isl_int_set_si(result->ineq[j][1+pos+i], 1);
4781 j = isl_basic_map_alloc_inequality(result);
4782 if (j < 0)
4783 goto error;
4784 isl_seq_clr(result->ineq[j], 1+total);
4785 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
4786 isl_int_set_si(result->ineq[j][1+pos+i], -1);
4787 isl_int_sub_ui(result->ineq[j][0], d, 1);
4790 result = isl_basic_map_simplify(result);
4791 return isl_basic_map_finalize(result);
4792 error:
4793 isl_basic_map_free(result);
4794 return NULL;
4797 /* Given a map A -> f(A) and an integer d, construct a map
4798 * A -> floor(f(A)/d).
4800 __isl_give isl_map *isl_map_floordiv(__isl_take isl_map *map, isl_int d)
4802 int i;
4804 map = isl_map_cow(map);
4805 if (!map)
4806 return NULL;
4808 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4809 for (i = 0; i < map->n; ++i) {
4810 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
4811 if (!map->p[i])
4812 goto error;
4814 map = isl_map_unmark_normalized(map);
4816 return map;
4817 error:
4818 isl_map_free(map);
4819 return NULL;
4822 /* Given a map A -> f(A) and an integer d, construct a map
4823 * A -> floor(f(A)/d).
4825 __isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
4826 __isl_take isl_val *d)
4828 if (!map || !d)
4829 goto error;
4830 if (!isl_val_is_int(d))
4831 isl_die(isl_val_get_ctx(d), isl_error_invalid,
4832 "expecting integer denominator", goto error);
4833 map = isl_map_floordiv(map, d->n);
4834 isl_val_free(d);
4835 return map;
4836 error:
4837 isl_map_free(map);
4838 isl_val_free(d);
4839 return NULL;
4842 static __isl_give isl_basic_map *var_equal(__isl_take isl_basic_map *bmap,
4843 unsigned pos)
4845 int i;
4846 unsigned nparam;
4847 unsigned n_in;
4849 i = isl_basic_map_alloc_equality(bmap);
4850 if (i < 0)
4851 goto error;
4852 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4853 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4854 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
4855 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
4856 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
4857 return isl_basic_map_finalize(bmap);
4858 error:
4859 isl_basic_map_free(bmap);
4860 return NULL;
4863 /* Add a constraint to "bmap" expressing i_pos < o_pos
4865 static __isl_give isl_basic_map *var_less(__isl_take isl_basic_map *bmap,
4866 unsigned pos)
4868 int i;
4869 unsigned nparam;
4870 unsigned n_in;
4872 i = isl_basic_map_alloc_inequality(bmap);
4873 if (i < 0)
4874 goto error;
4875 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4876 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4877 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4878 isl_int_set_si(bmap->ineq[i][0], -1);
4879 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4880 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4881 return isl_basic_map_finalize(bmap);
4882 error:
4883 isl_basic_map_free(bmap);
4884 return NULL;
4887 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4889 static __isl_give isl_basic_map *var_less_or_equal(
4890 __isl_take isl_basic_map *bmap, unsigned pos)
4892 int i;
4893 unsigned nparam;
4894 unsigned n_in;
4896 i = isl_basic_map_alloc_inequality(bmap);
4897 if (i < 0)
4898 goto error;
4899 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4900 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4901 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4902 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4903 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4904 return isl_basic_map_finalize(bmap);
4905 error:
4906 isl_basic_map_free(bmap);
4907 return NULL;
4910 /* Add a constraint to "bmap" expressing i_pos > o_pos
4912 static __isl_give isl_basic_map *var_more(__isl_take isl_basic_map *bmap,
4913 unsigned pos)
4915 int i;
4916 unsigned nparam;
4917 unsigned n_in;
4919 i = isl_basic_map_alloc_inequality(bmap);
4920 if (i < 0)
4921 goto error;
4922 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4923 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4924 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4925 isl_int_set_si(bmap->ineq[i][0], -1);
4926 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4927 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4928 return isl_basic_map_finalize(bmap);
4929 error:
4930 isl_basic_map_free(bmap);
4931 return NULL;
4934 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4936 static __isl_give isl_basic_map *var_more_or_equal(
4937 __isl_take isl_basic_map *bmap, unsigned pos)
4939 int i;
4940 unsigned nparam;
4941 unsigned n_in;
4943 i = isl_basic_map_alloc_inequality(bmap);
4944 if (i < 0)
4945 goto error;
4946 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4947 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4948 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4949 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4950 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4951 return isl_basic_map_finalize(bmap);
4952 error:
4953 isl_basic_map_free(bmap);
4954 return NULL;
4957 __isl_give isl_basic_map *isl_basic_map_equal(
4958 __isl_take isl_space *dim, unsigned n_equal)
4960 int i;
4961 struct isl_basic_map *bmap;
4962 bmap = isl_basic_map_alloc_space(dim, 0, n_equal, 0);
4963 if (!bmap)
4964 return NULL;
4965 for (i = 0; i < n_equal && bmap; ++i)
4966 bmap = var_equal(bmap, i);
4967 return isl_basic_map_finalize(bmap);
4970 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4972 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *dim,
4973 unsigned pos)
4975 int i;
4976 struct isl_basic_map *bmap;
4977 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4978 if (!bmap)
4979 return NULL;
4980 for (i = 0; i < pos && bmap; ++i)
4981 bmap = var_equal(bmap, i);
4982 if (bmap)
4983 bmap = var_less(bmap, pos);
4984 return isl_basic_map_finalize(bmap);
4987 /* Return a relation on "dim" expressing i_[0..pos] <<= o_[0..pos]
4989 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
4990 __isl_take isl_space *dim, unsigned pos)
4992 int i;
4993 isl_basic_map *bmap;
4995 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4996 for (i = 0; i < pos; ++i)
4997 bmap = var_equal(bmap, i);
4998 bmap = var_less_or_equal(bmap, pos);
4999 return isl_basic_map_finalize(bmap);
5002 /* Return a relation on "dim" expressing i_pos > o_pos
5004 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *dim,
5005 unsigned pos)
5007 int i;
5008 struct isl_basic_map *bmap;
5009 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
5010 if (!bmap)
5011 return NULL;
5012 for (i = 0; i < pos && bmap; ++i)
5013 bmap = var_equal(bmap, i);
5014 if (bmap)
5015 bmap = var_more(bmap, pos);
5016 return isl_basic_map_finalize(bmap);
5019 /* Return a relation on "dim" expressing i_[0..pos] >>= o_[0..pos]
5021 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
5022 __isl_take isl_space *dim, unsigned pos)
5024 int i;
5025 isl_basic_map *bmap;
5027 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
5028 for (i = 0; i < pos; ++i)
5029 bmap = var_equal(bmap, i);
5030 bmap = var_more_or_equal(bmap, pos);
5031 return isl_basic_map_finalize(bmap);
5034 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *dims,
5035 unsigned n, int equal)
5037 struct isl_map *map;
5038 int i;
5040 if (n == 0 && equal)
5041 return isl_map_universe(dims);
5043 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
5045 for (i = 0; i + 1 < n; ++i)
5046 map = isl_map_add_basic_map(map,
5047 isl_basic_map_less_at(isl_space_copy(dims), i));
5048 if (n > 0) {
5049 if (equal)
5050 map = isl_map_add_basic_map(map,
5051 isl_basic_map_less_or_equal_at(dims, n - 1));
5052 else
5053 map = isl_map_add_basic_map(map,
5054 isl_basic_map_less_at(dims, n - 1));
5055 } else
5056 isl_space_free(dims);
5058 return map;
5061 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *dims, int equal)
5063 if (!dims)
5064 return NULL;
5065 return map_lex_lte_first(dims, dims->n_out, equal);
5068 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
5070 return map_lex_lte_first(dim, n, 0);
5073 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
5075 return map_lex_lte_first(dim, n, 1);
5078 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
5080 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
5083 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
5085 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
5088 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *dims,
5089 unsigned n, int equal)
5091 struct isl_map *map;
5092 int i;
5094 if (n == 0 && equal)
5095 return isl_map_universe(dims);
5097 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
5099 for (i = 0; i + 1 < n; ++i)
5100 map = isl_map_add_basic_map(map,
5101 isl_basic_map_more_at(isl_space_copy(dims), i));
5102 if (n > 0) {
5103 if (equal)
5104 map = isl_map_add_basic_map(map,
5105 isl_basic_map_more_or_equal_at(dims, n - 1));
5106 else
5107 map = isl_map_add_basic_map(map,
5108 isl_basic_map_more_at(dims, n - 1));
5109 } else
5110 isl_space_free(dims);
5112 return map;
5115 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *dims, int equal)
5117 if (!dims)
5118 return NULL;
5119 return map_lex_gte_first(dims, dims->n_out, equal);
5122 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
5124 return map_lex_gte_first(dim, n, 0);
5127 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
5129 return map_lex_gte_first(dim, n, 1);
5132 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
5134 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
5137 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
5139 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
5142 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
5143 __isl_take isl_set *set2)
5145 isl_map *map;
5146 map = isl_map_lex_le(isl_set_get_space(set1));
5147 map = isl_map_intersect_domain(map, set1);
5148 map = isl_map_intersect_range(map, set2);
5149 return map;
5152 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
5153 __isl_take isl_set *set2)
5155 isl_map *map;
5156 map = isl_map_lex_lt(isl_set_get_space(set1));
5157 map = isl_map_intersect_domain(map, set1);
5158 map = isl_map_intersect_range(map, set2);
5159 return map;
5162 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
5163 __isl_take isl_set *set2)
5165 isl_map *map;
5166 map = isl_map_lex_ge(isl_set_get_space(set1));
5167 map = isl_map_intersect_domain(map, set1);
5168 map = isl_map_intersect_range(map, set2);
5169 return map;
5172 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
5173 __isl_take isl_set *set2)
5175 isl_map *map;
5176 map = isl_map_lex_gt(isl_set_get_space(set1));
5177 map = isl_map_intersect_domain(map, set1);
5178 map = isl_map_intersect_range(map, set2);
5179 return map;
5182 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
5183 __isl_take isl_map *map2)
5185 isl_map *map;
5186 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
5187 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5188 map = isl_map_apply_range(map, isl_map_reverse(map2));
5189 return map;
5192 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
5193 __isl_take isl_map *map2)
5195 isl_map *map;
5196 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
5197 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5198 map = isl_map_apply_range(map, isl_map_reverse(map2));
5199 return map;
5202 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
5203 __isl_take isl_map *map2)
5205 isl_map *map;
5206 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
5207 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5208 map = isl_map_apply_range(map, isl_map_reverse(map2));
5209 return map;
5212 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
5213 __isl_take isl_map *map2)
5215 isl_map *map;
5216 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
5217 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5218 map = isl_map_apply_range(map, isl_map_reverse(map2));
5219 return map;
5222 /* For a div d = floor(f/m), add the constraint
5224 * f - m d >= 0
5226 static isl_stat add_upper_div_constraint(__isl_keep isl_basic_map *bmap,
5227 unsigned pos, isl_int *div)
5229 int i;
5230 unsigned total = isl_basic_map_total_dim(bmap);
5232 i = isl_basic_map_alloc_inequality(bmap);
5233 if (i < 0)
5234 return isl_stat_error;
5235 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
5236 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
5238 return isl_stat_ok;
5241 /* For a div d = floor(f/m), add the constraint
5243 * -(f-(m-1)) + m d >= 0
5245 static isl_stat add_lower_div_constraint(__isl_keep isl_basic_map *bmap,
5246 unsigned pos, isl_int *div)
5248 int i;
5249 unsigned total = isl_basic_map_total_dim(bmap);
5251 i = isl_basic_map_alloc_inequality(bmap);
5252 if (i < 0)
5253 return isl_stat_error;
5254 isl_seq_neg(bmap->ineq[i], div + 1, 1 + total);
5255 isl_int_set(bmap->ineq[i][1 + pos], div[0]);
5256 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
5257 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
5259 return isl_stat_ok;
5262 /* For a div d = floor(f/m), add the constraints
5264 * f - m d >= 0
5265 * -(f-(m-1)) + m d >= 0
5267 * Note that the second constraint is the negation of
5269 * f - m d >= m
5271 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
5272 unsigned pos, isl_int *div)
5274 if (add_upper_div_constraint(bmap, pos, div) < 0)
5275 return -1;
5276 if (add_lower_div_constraint(bmap, pos, div) < 0)
5277 return -1;
5278 return 0;
5281 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
5282 unsigned pos, isl_int *div)
5284 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset),
5285 pos, div);
5288 int isl_basic_map_add_div_constraints(struct isl_basic_map *bmap, unsigned div)
5290 unsigned total = isl_basic_map_total_dim(bmap);
5291 unsigned div_pos = total - bmap->n_div + div;
5293 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
5294 bmap->div[div]);
5297 /* For each known div d = floor(f/m), add the constraints
5299 * f - m d >= 0
5300 * -(f-(m-1)) + m d >= 0
5302 * Remove duplicate constraints in case of some these div constraints
5303 * already appear in "bmap".
5305 __isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
5306 __isl_take isl_basic_map *bmap)
5308 unsigned n_div;
5310 if (!bmap)
5311 return NULL;
5312 n_div = isl_basic_map_dim(bmap, isl_dim_div);
5313 if (n_div == 0)
5314 return bmap;
5316 bmap = add_known_div_constraints(bmap);
5317 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
5318 bmap = isl_basic_map_finalize(bmap);
5319 return bmap;
5322 /* Add the div constraint of sign "sign" for div "div" of "bmap".
5324 * In particular, if this div is of the form d = floor(f/m),
5325 * then add the constraint
5327 * f - m d >= 0
5329 * if sign < 0 or the constraint
5331 * -(f-(m-1)) + m d >= 0
5333 * if sign > 0.
5335 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map *bmap,
5336 unsigned div, int sign)
5338 unsigned total;
5339 unsigned div_pos;
5341 if (!bmap)
5342 return -1;
5344 total = isl_basic_map_total_dim(bmap);
5345 div_pos = total - bmap->n_div + div;
5347 if (sign < 0)
5348 return add_upper_div_constraint(bmap, div_pos, bmap->div[div]);
5349 else
5350 return add_lower_div_constraint(bmap, div_pos, bmap->div[div]);
5353 __isl_give isl_basic_set *isl_basic_map_underlying_set(
5354 __isl_take isl_basic_map *bmap)
5356 if (!bmap)
5357 goto error;
5358 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
5359 bmap->n_div == 0 &&
5360 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
5361 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
5362 return bset_from_bmap(bmap);
5363 bmap = isl_basic_map_cow(bmap);
5364 if (!bmap)
5365 goto error;
5366 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
5367 if (!bmap->dim)
5368 goto error;
5369 bmap->extra -= bmap->n_div;
5370 bmap->n_div = 0;
5371 bmap = isl_basic_map_finalize(bmap);
5372 return bset_from_bmap(bmap);
5373 error:
5374 isl_basic_map_free(bmap);
5375 return NULL;
5378 __isl_give isl_basic_set *isl_basic_set_underlying_set(
5379 __isl_take isl_basic_set *bset)
5381 return isl_basic_map_underlying_set(bset_to_bmap(bset));
5384 /* Replace each element in "list" by the result of applying
5385 * isl_basic_map_underlying_set to the element.
5387 __isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
5388 __isl_take isl_basic_map_list *list)
5390 int i, n;
5392 if (!list)
5393 return NULL;
5395 n = isl_basic_map_list_n_basic_map(list);
5396 for (i = 0; i < n; ++i) {
5397 isl_basic_map *bmap;
5398 isl_basic_set *bset;
5400 bmap = isl_basic_map_list_get_basic_map(list, i);
5401 bset = isl_basic_set_underlying_set(bmap);
5402 list = isl_basic_set_list_set_basic_set(list, i, bset);
5405 return list;
5408 __isl_give isl_basic_map *isl_basic_map_overlying_set(
5409 __isl_take isl_basic_set *bset, __isl_take isl_basic_map *like)
5411 struct isl_basic_map *bmap;
5412 struct isl_ctx *ctx;
5413 unsigned total;
5414 int i;
5416 if (!bset || !like)
5417 goto error;
5418 ctx = bset->ctx;
5419 isl_assert(ctx, bset->n_div == 0, goto error);
5420 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
5421 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
5422 goto error);
5423 if (like->n_div == 0) {
5424 isl_space *space = isl_basic_map_get_space(like);
5425 isl_basic_map_free(like);
5426 return isl_basic_map_reset_space(bset, space);
5428 bset = isl_basic_set_cow(bset);
5429 if (!bset)
5430 goto error;
5431 total = bset->dim->n_out + bset->extra;
5432 bmap = bset_to_bmap(bset);
5433 isl_space_free(bmap->dim);
5434 bmap->dim = isl_space_copy(like->dim);
5435 if (!bmap->dim)
5436 goto error;
5437 bmap->n_div = like->n_div;
5438 bmap->extra += like->n_div;
5439 if (bmap->extra) {
5440 unsigned ltotal;
5441 isl_int **div;
5442 ltotal = total - bmap->extra + like->extra;
5443 if (ltotal > total)
5444 ltotal = total;
5445 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
5446 bmap->extra * (1 + 1 + total));
5447 if (isl_blk_is_error(bmap->block2))
5448 goto error;
5449 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
5450 if (!div)
5451 goto error;
5452 bmap->div = div;
5453 for (i = 0; i < bmap->extra; ++i)
5454 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
5455 for (i = 0; i < like->n_div; ++i) {
5456 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
5457 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
5459 bmap = isl_basic_map_add_known_div_constraints(bmap);
5461 isl_basic_map_free(like);
5462 bmap = isl_basic_map_simplify(bmap);
5463 bmap = isl_basic_map_finalize(bmap);
5464 return bmap;
5465 error:
5466 isl_basic_map_free(like);
5467 isl_basic_set_free(bset);
5468 return NULL;
5471 struct isl_basic_set *isl_basic_set_from_underlying_set(
5472 struct isl_basic_set *bset, struct isl_basic_set *like)
5474 return bset_from_bmap(isl_basic_map_overlying_set(bset,
5475 bset_to_bmap(like)));
5478 __isl_give isl_set *isl_map_underlying_set(__isl_take isl_map *map)
5480 int i;
5482 map = isl_map_cow(map);
5483 if (!map)
5484 return NULL;
5485 map->dim = isl_space_cow(map->dim);
5486 if (!map->dim)
5487 goto error;
5489 for (i = 1; i < map->n; ++i)
5490 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
5491 goto error);
5492 for (i = 0; i < map->n; ++i) {
5493 map->p[i] = bset_to_bmap(
5494 isl_basic_map_underlying_set(map->p[i]));
5495 if (!map->p[i])
5496 goto error;
5498 if (map->n == 0)
5499 map->dim = isl_space_underlying(map->dim, 0);
5500 else {
5501 isl_space_free(map->dim);
5502 map->dim = isl_space_copy(map->p[0]->dim);
5504 if (!map->dim)
5505 goto error;
5506 return set_from_map(map);
5507 error:
5508 isl_map_free(map);
5509 return NULL;
5512 /* Replace the space of "bmap" by "space".
5514 * If the space of "bmap" is identical to "space" (including the identifiers
5515 * of the input and output dimensions), then simply return the original input.
5517 __isl_give isl_basic_map *isl_basic_map_reset_space(
5518 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
5520 isl_bool equal;
5521 isl_space *bmap_space;
5523 bmap_space = isl_basic_map_peek_space(bmap);
5524 equal = isl_space_is_equal(bmap_space, space);
5525 if (equal >= 0 && equal)
5526 equal = isl_space_has_equal_ids(bmap_space, space);
5527 if (equal < 0)
5528 goto error;
5529 if (equal) {
5530 isl_space_free(space);
5531 return bmap;
5533 bmap = isl_basic_map_cow(bmap);
5534 if (!bmap || !space)
5535 goto error;
5537 isl_space_free(bmap->dim);
5538 bmap->dim = space;
5540 bmap = isl_basic_map_finalize(bmap);
5542 return bmap;
5543 error:
5544 isl_basic_map_free(bmap);
5545 isl_space_free(space);
5546 return NULL;
5549 __isl_give isl_basic_set *isl_basic_set_reset_space(
5550 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
5552 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset),
5553 dim));
5556 /* Check that the total dimensions of "map" and "space" are the same.
5558 static isl_stat check_map_space_equal_total_dim(__isl_keep isl_map *map,
5559 __isl_keep isl_space *space)
5561 unsigned dim1, dim2;
5563 if (!map || !space)
5564 return isl_stat_error;
5565 dim1 = isl_map_dim(map, isl_dim_all);
5566 dim2 = isl_space_dim(space, isl_dim_all);
5567 if (dim1 == dim2)
5568 return isl_stat_ok;
5569 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5570 "total dimensions do not match", return isl_stat_error);
5573 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
5574 __isl_take isl_space *dim)
5576 int i;
5578 map = isl_map_cow(map);
5579 if (!map || !dim)
5580 goto error;
5582 for (i = 0; i < map->n; ++i) {
5583 map->p[i] = isl_basic_map_reset_space(map->p[i],
5584 isl_space_copy(dim));
5585 if (!map->p[i])
5586 goto error;
5588 isl_space_free(map->dim);
5589 map->dim = dim;
5591 return map;
5592 error:
5593 isl_map_free(map);
5594 isl_space_free(dim);
5595 return NULL;
5598 /* Replace the space of "map" by "space", without modifying
5599 * the dimension of "map".
5601 * If the space of "map" is identical to "space" (including the identifiers
5602 * of the input and output dimensions), then simply return the original input.
5604 __isl_give isl_map *isl_map_reset_equal_dim_space(__isl_take isl_map *map,
5605 __isl_take isl_space *space)
5607 isl_bool equal;
5608 isl_space *map_space;
5610 map_space = isl_map_peek_space(map);
5611 equal = isl_space_is_equal(map_space, space);
5612 if (equal >= 0 && equal)
5613 equal = isl_space_has_equal_ids(map_space, space);
5614 if (equal < 0)
5615 goto error;
5616 if (equal) {
5617 isl_space_free(space);
5618 return map;
5620 if (check_map_space_equal_total_dim(map, space) < 0)
5621 goto error;
5622 return isl_map_reset_space(map, space);
5623 error:
5624 isl_map_free(map);
5625 isl_space_free(space);
5626 return NULL;
5629 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
5630 __isl_take isl_space *dim)
5632 return set_from_map(isl_map_reset_space(set_to_map(set), dim));
5635 /* Compute the parameter domain of the given basic set.
5637 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
5639 isl_bool is_params;
5640 isl_space *space;
5641 unsigned n;
5643 is_params = isl_basic_set_is_params(bset);
5644 if (is_params < 0)
5645 return isl_basic_set_free(bset);
5646 if (is_params)
5647 return bset;
5649 n = isl_basic_set_dim(bset, isl_dim_set);
5650 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
5651 space = isl_basic_set_get_space(bset);
5652 space = isl_space_params(space);
5653 bset = isl_basic_set_reset_space(bset, space);
5654 return bset;
5657 /* Construct a zero-dimensional basic set with the given parameter domain.
5659 __isl_give isl_basic_set *isl_basic_set_from_params(
5660 __isl_take isl_basic_set *bset)
5662 isl_space *space;
5663 space = isl_basic_set_get_space(bset);
5664 space = isl_space_set_from_params(space);
5665 bset = isl_basic_set_reset_space(bset, space);
5666 return bset;
5669 /* Compute the parameter domain of the given set.
5671 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
5673 isl_space *space;
5674 unsigned n;
5676 if (isl_set_is_params(set))
5677 return set;
5679 n = isl_set_dim(set, isl_dim_set);
5680 set = isl_set_project_out(set, isl_dim_set, 0, n);
5681 space = isl_set_get_space(set);
5682 space = isl_space_params(space);
5683 set = isl_set_reset_space(set, space);
5684 return set;
5687 /* Construct a zero-dimensional set with the given parameter domain.
5689 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
5691 isl_space *space;
5692 space = isl_set_get_space(set);
5693 space = isl_space_set_from_params(space);
5694 set = isl_set_reset_space(set, space);
5695 return set;
5698 /* Compute the parameter domain of the given map.
5700 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
5702 isl_space *space;
5703 unsigned n;
5705 n = isl_map_dim(map, isl_dim_in);
5706 map = isl_map_project_out(map, isl_dim_in, 0, n);
5707 n = isl_map_dim(map, isl_dim_out);
5708 map = isl_map_project_out(map, isl_dim_out, 0, n);
5709 space = isl_map_get_space(map);
5710 space = isl_space_params(space);
5711 map = isl_map_reset_space(map, space);
5712 return map;
5715 struct isl_basic_set *isl_basic_map_domain(struct isl_basic_map *bmap)
5717 isl_space *space;
5718 unsigned n_out;
5720 if (!bmap)
5721 return NULL;
5722 space = isl_space_domain(isl_basic_map_get_space(bmap));
5724 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5725 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
5727 return isl_basic_map_reset_space(bmap, space);
5730 isl_bool isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
5732 if (!bmap)
5733 return isl_bool_error;
5734 return isl_space_may_be_set(bmap->dim);
5737 /* Is this basic map actually a set?
5738 * Users should never call this function. Outside of isl,
5739 * the type should indicate whether something is a set or a map.
5741 isl_bool isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
5743 if (!bmap)
5744 return isl_bool_error;
5745 return isl_space_is_set(bmap->dim);
5748 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
5750 isl_bool is_set;
5752 is_set = isl_basic_map_is_set(bmap);
5753 if (is_set < 0)
5754 goto error;
5755 if (is_set)
5756 return bmap;
5757 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
5758 error:
5759 isl_basic_map_free(bmap);
5760 return NULL;
5763 __isl_give isl_basic_map *isl_basic_map_domain_map(
5764 __isl_take isl_basic_map *bmap)
5766 int i;
5767 isl_space *dim;
5768 isl_basic_map *domain;
5769 int nparam, n_in, n_out;
5771 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5772 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5773 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5775 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
5776 domain = isl_basic_map_universe(dim);
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 *dim;
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 dim = isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap)));
5803 range = isl_basic_map_universe(dim);
5805 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5806 bmap = isl_basic_map_apply_range(bmap, range);
5807 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
5809 for (i = 0; i < n_out; ++i)
5810 bmap = isl_basic_map_equate(bmap, isl_dim_in, n_in + i,
5811 isl_dim_out, i);
5813 bmap = isl_basic_map_gauss(bmap, NULL);
5814 return isl_basic_map_finalize(bmap);
5817 int isl_map_may_be_set(__isl_keep isl_map *map)
5819 if (!map)
5820 return -1;
5821 return isl_space_may_be_set(map->dim);
5824 /* Is this map actually a set?
5825 * Users should never call this function. Outside of isl,
5826 * the type should indicate whether something is a set or a map.
5828 isl_bool isl_map_is_set(__isl_keep isl_map *map)
5830 if (!map)
5831 return isl_bool_error;
5832 return isl_space_is_set(map->dim);
5835 __isl_give isl_set *isl_map_range(__isl_take isl_map *map)
5837 int i;
5838 isl_bool is_set;
5839 struct isl_set *set;
5841 is_set = isl_map_is_set(map);
5842 if (is_set < 0)
5843 goto error;
5844 if (is_set)
5845 return set_from_map(map);
5847 map = isl_map_cow(map);
5848 if (!map)
5849 goto error;
5851 set = set_from_map(map);
5852 set->dim = isl_space_range(set->dim);
5853 if (!set->dim)
5854 goto error;
5855 for (i = 0; i < map->n; ++i) {
5856 set->p[i] = isl_basic_map_range(map->p[i]);
5857 if (!set->p[i])
5858 goto error;
5860 ISL_F_CLR(set, ISL_MAP_DISJOINT);
5861 ISL_F_CLR(set, ISL_SET_NORMALIZED);
5862 return set;
5863 error:
5864 isl_map_free(map);
5865 return NULL;
5868 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
5870 int i;
5872 map = isl_map_cow(map);
5873 if (!map)
5874 return NULL;
5876 map->dim = isl_space_domain_map(map->dim);
5877 if (!map->dim)
5878 goto error;
5879 for (i = 0; i < map->n; ++i) {
5880 map->p[i] = isl_basic_map_domain_map(map->p[i]);
5881 if (!map->p[i])
5882 goto error;
5884 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5885 map = isl_map_unmark_normalized(map);
5886 return map;
5887 error:
5888 isl_map_free(map);
5889 return NULL;
5892 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
5894 int i;
5895 isl_space *range_dim;
5897 map = isl_map_cow(map);
5898 if (!map)
5899 return NULL;
5901 range_dim = isl_space_range(isl_map_get_space(map));
5902 range_dim = isl_space_from_range(range_dim);
5903 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
5904 map->dim = isl_space_join(map->dim, range_dim);
5905 if (!map->dim)
5906 goto error;
5907 for (i = 0; i < map->n; ++i) {
5908 map->p[i] = isl_basic_map_range_map(map->p[i]);
5909 if (!map->p[i])
5910 goto error;
5912 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5913 map = isl_map_unmark_normalized(map);
5914 return map;
5915 error:
5916 isl_map_free(map);
5917 return NULL;
5920 /* Given a wrapped map of the form A[B -> C],
5921 * return the map A[B -> C] -> B.
5923 __isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
5925 isl_id *id;
5926 isl_map *map;
5928 if (!set)
5929 return NULL;
5930 if (!isl_set_has_tuple_id(set))
5931 return isl_map_domain_map(isl_set_unwrap(set));
5933 id = isl_set_get_tuple_id(set);
5934 map = isl_map_domain_map(isl_set_unwrap(set));
5935 map = isl_map_set_tuple_id(map, isl_dim_in, id);
5937 return map;
5940 __isl_give isl_basic_map *isl_basic_map_from_domain(
5941 __isl_take isl_basic_set *bset)
5943 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
5946 __isl_give isl_basic_map *isl_basic_map_from_range(
5947 __isl_take isl_basic_set *bset)
5949 isl_space *space;
5950 space = isl_basic_set_get_space(bset);
5951 space = isl_space_from_range(space);
5952 bset = isl_basic_set_reset_space(bset, space);
5953 return bset_to_bmap(bset);
5956 /* Create a relation with the given set as range.
5957 * The domain of the created relation is a zero-dimensional
5958 * flat anonymous space.
5960 __isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
5962 isl_space *space;
5963 space = isl_set_get_space(set);
5964 space = isl_space_from_range(space);
5965 set = isl_set_reset_space(set, space);
5966 return set_to_map(set);
5969 /* Create a relation with the given set as domain.
5970 * The range of the created relation is a zero-dimensional
5971 * flat anonymous space.
5973 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
5975 return isl_map_reverse(isl_map_from_range(set));
5978 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
5979 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
5981 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
5984 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
5985 __isl_take isl_set *range)
5987 return isl_map_apply_range(isl_map_reverse(domain), range);
5990 /* Return a newly allocated isl_map with given space and flags and
5991 * room for "n" basic maps.
5992 * Make sure that all cached information is cleared.
5994 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *space, int n,
5995 unsigned flags)
5997 struct isl_map *map;
5999 if (!space)
6000 return NULL;
6001 if (n < 0)
6002 isl_die(space->ctx, isl_error_internal,
6003 "negative number of basic maps", goto error);
6004 map = isl_calloc(space->ctx, struct isl_map,
6005 sizeof(struct isl_map) +
6006 (n - 1) * sizeof(struct isl_basic_map *));
6007 if (!map)
6008 goto error;
6010 map->ctx = space->ctx;
6011 isl_ctx_ref(map->ctx);
6012 map->ref = 1;
6013 map->size = n;
6014 map->n = 0;
6015 map->dim = space;
6016 map->flags = flags;
6017 return map;
6018 error:
6019 isl_space_free(space);
6020 return NULL;
6023 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *space)
6025 struct isl_basic_map *bmap;
6026 bmap = isl_basic_map_alloc_space(space, 0, 1, 0);
6027 bmap = isl_basic_map_set_to_empty(bmap);
6028 return bmap;
6031 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *space)
6033 struct isl_basic_set *bset;
6034 bset = isl_basic_set_alloc_space(space, 0, 1, 0);
6035 bset = isl_basic_set_set_to_empty(bset);
6036 return bset;
6039 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *space)
6041 struct isl_basic_map *bmap;
6042 bmap = isl_basic_map_alloc_space(space, 0, 0, 0);
6043 bmap = isl_basic_map_finalize(bmap);
6044 return bmap;
6047 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *space)
6049 struct isl_basic_set *bset;
6050 bset = isl_basic_set_alloc_space(space, 0, 0, 0);
6051 bset = isl_basic_set_finalize(bset);
6052 return bset;
6055 __isl_give isl_basic_map *isl_basic_map_nat_universe(__isl_take isl_space *dim)
6057 int i;
6058 unsigned total = isl_space_dim(dim, isl_dim_all);
6059 isl_basic_map *bmap;
6061 bmap= isl_basic_map_alloc_space(dim, 0, 0, total);
6062 for (i = 0; i < total; ++i) {
6063 int k = isl_basic_map_alloc_inequality(bmap);
6064 if (k < 0)
6065 goto error;
6066 isl_seq_clr(bmap->ineq[k], 1 + total);
6067 isl_int_set_si(bmap->ineq[k][1 + i], 1);
6069 return bmap;
6070 error:
6071 isl_basic_map_free(bmap);
6072 return NULL;
6075 __isl_give isl_basic_set *isl_basic_set_nat_universe(__isl_take isl_space *dim)
6077 return isl_basic_map_nat_universe(dim);
6080 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
6082 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
6085 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
6087 return isl_map_nat_universe(dim);
6090 __isl_give isl_map *isl_map_empty(__isl_take isl_space *space)
6092 return isl_map_alloc_space(space, 0, ISL_MAP_DISJOINT);
6095 __isl_give isl_set *isl_set_empty(__isl_take isl_space *space)
6097 return isl_set_alloc_space(space, 0, ISL_MAP_DISJOINT);
6100 __isl_give isl_map *isl_map_universe(__isl_take isl_space *space)
6102 struct isl_map *map;
6103 if (!space)
6104 return NULL;
6105 map = isl_map_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6106 map = isl_map_add_basic_map(map, isl_basic_map_universe(space));
6107 return map;
6110 __isl_give isl_set *isl_set_universe(__isl_take isl_space *space)
6112 struct isl_set *set;
6113 if (!space)
6114 return NULL;
6115 set = isl_set_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6116 set = isl_set_add_basic_set(set, isl_basic_set_universe(space));
6117 return set;
6120 struct isl_map *isl_map_dup(struct isl_map *map)
6122 int i;
6123 struct isl_map *dup;
6125 if (!map)
6126 return NULL;
6127 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
6128 for (i = 0; i < map->n; ++i)
6129 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
6130 return dup;
6133 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
6134 __isl_take isl_basic_map *bmap)
6136 if (!bmap || !map)
6137 goto error;
6138 if (isl_basic_map_plain_is_empty(bmap)) {
6139 isl_basic_map_free(bmap);
6140 return map;
6142 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
6143 isl_assert(map->ctx, map->n < map->size, goto error);
6144 map->p[map->n] = bmap;
6145 map->n++;
6146 map = isl_map_unmark_normalized(map);
6147 return map;
6148 error:
6149 if (map)
6150 isl_map_free(map);
6151 if (bmap)
6152 isl_basic_map_free(bmap);
6153 return NULL;
6156 __isl_null isl_map *isl_map_free(__isl_take isl_map *map)
6158 int i;
6160 if (!map)
6161 return NULL;
6163 if (--map->ref > 0)
6164 return NULL;
6166 clear_caches(map);
6167 isl_ctx_deref(map->ctx);
6168 for (i = 0; i < map->n; ++i)
6169 isl_basic_map_free(map->p[i]);
6170 isl_space_free(map->dim);
6171 free(map);
6173 return NULL;
6176 static struct isl_basic_map *isl_basic_map_fix_pos_si(
6177 struct isl_basic_map *bmap, unsigned pos, int value)
6179 int j;
6181 bmap = isl_basic_map_cow(bmap);
6182 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6183 j = isl_basic_map_alloc_equality(bmap);
6184 if (j < 0)
6185 goto error;
6186 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6187 isl_int_set_si(bmap->eq[j][pos], -1);
6188 isl_int_set_si(bmap->eq[j][0], value);
6189 bmap = isl_basic_map_simplify(bmap);
6190 return isl_basic_map_finalize(bmap);
6191 error:
6192 isl_basic_map_free(bmap);
6193 return NULL;
6196 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
6197 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
6199 int j;
6201 bmap = isl_basic_map_cow(bmap);
6202 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6203 j = isl_basic_map_alloc_equality(bmap);
6204 if (j < 0)
6205 goto error;
6206 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6207 isl_int_set_si(bmap->eq[j][pos], -1);
6208 isl_int_set(bmap->eq[j][0], value);
6209 bmap = isl_basic_map_simplify(bmap);
6210 return isl_basic_map_finalize(bmap);
6211 error:
6212 isl_basic_map_free(bmap);
6213 return NULL;
6216 __isl_give isl_basic_map *isl_basic_map_fix_si(__isl_take isl_basic_map *bmap,
6217 enum isl_dim_type type, unsigned pos, int value)
6219 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6220 return isl_basic_map_free(bmap);
6221 return isl_basic_map_fix_pos_si(bmap,
6222 isl_basic_map_offset(bmap, type) + pos, value);
6225 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
6226 enum isl_dim_type type, unsigned pos, isl_int value)
6228 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6229 return isl_basic_map_free(bmap);
6230 return isl_basic_map_fix_pos(bmap,
6231 isl_basic_map_offset(bmap, type) + pos, value);
6234 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
6235 * to be equal to "v".
6237 __isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
6238 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6240 if (!bmap || !v)
6241 goto error;
6242 if (!isl_val_is_int(v))
6243 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
6244 "expecting integer value", goto error);
6245 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6246 goto error;
6247 pos += isl_basic_map_offset(bmap, type);
6248 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
6249 isl_val_free(v);
6250 return bmap;
6251 error:
6252 isl_basic_map_free(bmap);
6253 isl_val_free(v);
6254 return NULL;
6257 /* Fix the value of the variable at position "pos" of type "type" of "bset"
6258 * to be equal to "v".
6260 __isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
6261 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6263 return isl_basic_map_fix_val(bset, type, pos, v);
6266 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
6267 enum isl_dim_type type, unsigned pos, int value)
6269 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6270 type, pos, value));
6273 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
6274 enum isl_dim_type type, unsigned pos, isl_int value)
6276 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset),
6277 type, pos, value));
6280 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
6281 unsigned input, int value)
6283 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
6286 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
6287 unsigned dim, int value)
6289 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6290 isl_dim_set, dim, value));
6293 /* Remove the basic map at position "i" from "map" if this basic map
6294 * is (obviously) empty.
6296 static __isl_give isl_map *remove_if_empty(__isl_take isl_map *map, int i)
6298 isl_bool empty;
6300 if (!map)
6301 return NULL;
6303 empty = isl_basic_map_plain_is_empty(map->p[i]);
6304 if (empty < 0)
6305 return isl_map_free(map);
6306 if (!empty)
6307 return map;
6309 isl_basic_map_free(map->p[i]);
6310 map->n--;
6311 if (i != map->n) {
6312 map->p[i] = map->p[map->n];
6313 map = isl_map_unmark_normalized(map);
6317 return map;
6320 /* Perform "fn" on each basic map of "map", where we may not be holding
6321 * the only reference to "map".
6322 * In particular, "fn" should be a semantics preserving operation
6323 * that we want to apply to all copies of "map". We therefore need
6324 * to be careful not to modify "map" in a way that breaks "map"
6325 * in case anything goes wrong.
6327 __isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
6328 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
6330 struct isl_basic_map *bmap;
6331 int i;
6333 if (!map)
6334 return NULL;
6336 for (i = map->n - 1; i >= 0; --i) {
6337 bmap = isl_basic_map_copy(map->p[i]);
6338 bmap = fn(bmap);
6339 if (!bmap)
6340 goto error;
6341 isl_basic_map_free(map->p[i]);
6342 map->p[i] = bmap;
6343 map = remove_if_empty(map, i);
6344 if (!map)
6345 return NULL;
6348 return map;
6349 error:
6350 isl_map_free(map);
6351 return NULL;
6354 __isl_give isl_map *isl_map_fix_si(__isl_take isl_map *map,
6355 enum isl_dim_type type, unsigned pos, int value)
6357 int i;
6359 map = isl_map_cow(map);
6360 if (!map)
6361 return NULL;
6363 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6364 for (i = map->n - 1; i >= 0; --i) {
6365 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
6366 map = remove_if_empty(map, i);
6367 if (!map)
6368 return NULL;
6370 map = isl_map_unmark_normalized(map);
6371 return map;
6372 error:
6373 isl_map_free(map);
6374 return NULL;
6377 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
6378 enum isl_dim_type type, unsigned pos, int value)
6380 return set_from_map(isl_map_fix_si(set_to_map(set), type, pos, value));
6383 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
6384 enum isl_dim_type type, unsigned pos, isl_int value)
6386 int i;
6388 map = isl_map_cow(map);
6389 if (!map)
6390 return NULL;
6392 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6393 for (i = 0; i < map->n; ++i) {
6394 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
6395 if (!map->p[i])
6396 goto error;
6398 map = isl_map_unmark_normalized(map);
6399 return map;
6400 error:
6401 isl_map_free(map);
6402 return NULL;
6405 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
6406 enum isl_dim_type type, unsigned pos, isl_int value)
6408 return set_from_map(isl_map_fix(set_to_map(set), type, pos, value));
6411 /* Fix the value of the variable at position "pos" of type "type" of "map"
6412 * to be equal to "v".
6414 __isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
6415 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6417 int i;
6419 map = isl_map_cow(map);
6420 if (!map || !v)
6421 goto error;
6423 if (!isl_val_is_int(v))
6424 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6425 "expecting integer value", goto error);
6426 if (pos >= isl_map_dim(map, type))
6427 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6428 "index out of bounds", goto error);
6429 for (i = map->n - 1; i >= 0; --i) {
6430 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
6431 isl_val_copy(v));
6432 map = remove_if_empty(map, i);
6433 if (!map)
6434 goto error;
6436 map = isl_map_unmark_normalized(map);
6437 isl_val_free(v);
6438 return map;
6439 error:
6440 isl_map_free(map);
6441 isl_val_free(v);
6442 return NULL;
6445 /* Fix the value of the variable at position "pos" of type "type" of "set"
6446 * to be equal to "v".
6448 __isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
6449 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6451 return isl_map_fix_val(set, type, pos, v);
6454 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
6455 unsigned input, int value)
6457 return isl_map_fix_si(map, isl_dim_in, input, value);
6460 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
6462 return set_from_map(isl_map_fix_si(set_to_map(set),
6463 isl_dim_set, dim, value));
6466 static __isl_give isl_basic_map *basic_map_bound_si(
6467 __isl_take isl_basic_map *bmap,
6468 enum isl_dim_type type, unsigned pos, int value, int upper)
6470 int j;
6472 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6473 return isl_basic_map_free(bmap);
6474 pos += isl_basic_map_offset(bmap, type);
6475 bmap = isl_basic_map_cow(bmap);
6476 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6477 j = isl_basic_map_alloc_inequality(bmap);
6478 if (j < 0)
6479 goto error;
6480 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6481 if (upper) {
6482 isl_int_set_si(bmap->ineq[j][pos], -1);
6483 isl_int_set_si(bmap->ineq[j][0], value);
6484 } else {
6485 isl_int_set_si(bmap->ineq[j][pos], 1);
6486 isl_int_set_si(bmap->ineq[j][0], -value);
6488 bmap = isl_basic_map_simplify(bmap);
6489 return isl_basic_map_finalize(bmap);
6490 error:
6491 isl_basic_map_free(bmap);
6492 return NULL;
6495 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
6496 __isl_take isl_basic_map *bmap,
6497 enum isl_dim_type type, unsigned pos, int value)
6499 return basic_map_bound_si(bmap, type, pos, value, 0);
6502 /* Constrain the values of the given dimension to be no greater than "value".
6504 __isl_give isl_basic_map *isl_basic_map_upper_bound_si(
6505 __isl_take isl_basic_map *bmap,
6506 enum isl_dim_type type, unsigned pos, int value)
6508 return basic_map_bound_si(bmap, type, pos, value, 1);
6511 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
6512 enum isl_dim_type type, unsigned pos, int value, int upper)
6514 int i;
6516 map = isl_map_cow(map);
6517 if (!map)
6518 return NULL;
6520 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6521 for (i = 0; i < map->n; ++i) {
6522 map->p[i] = basic_map_bound_si(map->p[i],
6523 type, pos, value, upper);
6524 if (!map->p[i])
6525 goto error;
6527 map = isl_map_unmark_normalized(map);
6528 return map;
6529 error:
6530 isl_map_free(map);
6531 return NULL;
6534 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
6535 enum isl_dim_type type, unsigned pos, int value)
6537 return map_bound_si(map, type, pos, value, 0);
6540 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
6541 enum isl_dim_type type, unsigned pos, int value)
6543 return map_bound_si(map, type, pos, value, 1);
6546 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
6547 enum isl_dim_type type, unsigned pos, int value)
6549 return set_from_map(isl_map_lower_bound_si(set_to_map(set),
6550 type, pos, value));
6553 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
6554 enum isl_dim_type type, unsigned pos, int value)
6556 return isl_map_upper_bound_si(set, type, pos, value);
6559 /* Bound the given variable of "bmap" from below (or above is "upper"
6560 * is set) to "value".
6562 static __isl_give isl_basic_map *basic_map_bound(
6563 __isl_take isl_basic_map *bmap,
6564 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6566 int j;
6568 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6569 return isl_basic_map_free(bmap);
6570 pos += isl_basic_map_offset(bmap, type);
6571 bmap = isl_basic_map_cow(bmap);
6572 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6573 j = isl_basic_map_alloc_inequality(bmap);
6574 if (j < 0)
6575 goto error;
6576 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6577 if (upper) {
6578 isl_int_set_si(bmap->ineq[j][pos], -1);
6579 isl_int_set(bmap->ineq[j][0], value);
6580 } else {
6581 isl_int_set_si(bmap->ineq[j][pos], 1);
6582 isl_int_neg(bmap->ineq[j][0], value);
6584 bmap = isl_basic_map_simplify(bmap);
6585 return isl_basic_map_finalize(bmap);
6586 error:
6587 isl_basic_map_free(bmap);
6588 return NULL;
6591 /* Bound the given variable of "map" from below (or above is "upper"
6592 * is set) to "value".
6594 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
6595 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6597 int i;
6599 map = isl_map_cow(map);
6600 if (!map)
6601 return NULL;
6603 if (pos >= isl_map_dim(map, type))
6604 isl_die(map->ctx, isl_error_invalid,
6605 "index out of bounds", goto error);
6606 for (i = map->n - 1; i >= 0; --i) {
6607 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
6608 map = remove_if_empty(map, i);
6609 if (!map)
6610 return NULL;
6612 map = isl_map_unmark_normalized(map);
6613 return map;
6614 error:
6615 isl_map_free(map);
6616 return NULL;
6619 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
6620 enum isl_dim_type type, unsigned pos, isl_int value)
6622 return map_bound(map, type, pos, value, 0);
6625 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
6626 enum isl_dim_type type, unsigned pos, isl_int value)
6628 return map_bound(map, type, pos, value, 1);
6631 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
6632 enum isl_dim_type type, unsigned pos, isl_int value)
6634 return isl_map_lower_bound(set, type, pos, value);
6637 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
6638 enum isl_dim_type type, unsigned pos, isl_int value)
6640 return isl_map_upper_bound(set, type, pos, value);
6643 /* Force the values of the variable at position "pos" of type "type" of "set"
6644 * to be no smaller than "value".
6646 __isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
6647 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6649 if (!value)
6650 goto error;
6651 if (!isl_val_is_int(value))
6652 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6653 "expecting integer value", goto error);
6654 set = isl_set_lower_bound(set, type, pos, value->n);
6655 isl_val_free(value);
6656 return set;
6657 error:
6658 isl_val_free(value);
6659 isl_set_free(set);
6660 return NULL;
6663 /* Force the values of the variable at position "pos" of type "type" of "set"
6664 * to be no greater than "value".
6666 __isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
6667 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6669 if (!value)
6670 goto error;
6671 if (!isl_val_is_int(value))
6672 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6673 "expecting integer value", goto error);
6674 set = isl_set_upper_bound(set, type, pos, value->n);
6675 isl_val_free(value);
6676 return set;
6677 error:
6678 isl_val_free(value);
6679 isl_set_free(set);
6680 return NULL;
6683 /* Bound the given variable of "bset" from below (or above is "upper"
6684 * is set) to "value".
6686 static __isl_give isl_basic_set *isl_basic_set_bound(
6687 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6688 isl_int value, int upper)
6690 return bset_from_bmap(basic_map_bound(bset_to_bmap(bset),
6691 type, pos, value, upper));
6694 /* Bound the given variable of "bset" from below (or above is "upper"
6695 * is set) to "value".
6697 static __isl_give isl_basic_set *isl_basic_set_bound_val(
6698 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6699 __isl_take isl_val *value, int upper)
6701 if (!value)
6702 goto error;
6703 if (!isl_val_is_int(value))
6704 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
6705 "expecting integer value", goto error);
6706 bset = isl_basic_set_bound(bset, type, pos, value->n, upper);
6707 isl_val_free(value);
6708 return bset;
6709 error:
6710 isl_val_free(value);
6711 isl_basic_set_free(bset);
6712 return NULL;
6715 /* Bound the given variable of "bset" from below to "value".
6717 __isl_give isl_basic_set *isl_basic_set_lower_bound_val(
6718 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6719 __isl_take isl_val *value)
6721 return isl_basic_set_bound_val(bset, type, pos, value, 0);
6724 /* Bound the given variable of "bset" from above to "value".
6726 __isl_give isl_basic_set *isl_basic_set_upper_bound_val(
6727 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6728 __isl_take isl_val *value)
6730 return isl_basic_set_bound_val(bset, type, pos, value, 1);
6733 __isl_give isl_map *isl_map_reverse(__isl_take isl_map *map)
6735 int i;
6737 map = isl_map_cow(map);
6738 if (!map)
6739 return NULL;
6741 map->dim = isl_space_reverse(map->dim);
6742 if (!map->dim)
6743 goto error;
6744 for (i = 0; i < map->n; ++i) {
6745 map->p[i] = isl_basic_map_reverse(map->p[i]);
6746 if (!map->p[i])
6747 goto error;
6749 map = isl_map_unmark_normalized(map);
6750 return map;
6751 error:
6752 isl_map_free(map);
6753 return NULL;
6756 #undef TYPE
6757 #define TYPE isl_pw_multi_aff
6758 #undef SUFFIX
6759 #define SUFFIX _pw_multi_aff
6760 #undef EMPTY
6761 #define EMPTY isl_pw_multi_aff_empty
6762 #undef ADD
6763 #define ADD isl_pw_multi_aff_union_add
6764 #include "isl_map_lexopt_templ.c"
6766 /* Given a map "map", compute the lexicographically minimal
6767 * (or maximal) image element for each domain element in dom,
6768 * in the form of an isl_pw_multi_aff.
6769 * If "empty" is not NULL, then set *empty to those elements in dom that
6770 * do not have an image element.
6771 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6772 * should be computed over the domain of "map". "empty" is also NULL
6773 * in this case.
6775 * We first compute the lexicographically minimal or maximal element
6776 * in the first basic map. This results in a partial solution "res"
6777 * and a subset "todo" of dom that still need to be handled.
6778 * We then consider each of the remaining maps in "map" and successively
6779 * update both "res" and "todo".
6780 * If "empty" is NULL, then the todo sets are not needed and therefore
6781 * also not computed.
6783 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
6784 __isl_take isl_map *map, __isl_take isl_set *dom,
6785 __isl_give isl_set **empty, unsigned flags)
6787 int i;
6788 int full;
6789 isl_pw_multi_aff *res;
6790 isl_set *todo;
6792 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6793 if (!map || (!full && !dom))
6794 goto error;
6796 if (isl_map_plain_is_empty(map)) {
6797 if (empty)
6798 *empty = dom;
6799 else
6800 isl_set_free(dom);
6801 return isl_pw_multi_aff_from_map(map);
6804 res = basic_map_partial_lexopt_pw_multi_aff(
6805 isl_basic_map_copy(map->p[0]),
6806 isl_set_copy(dom), empty, flags);
6808 if (empty)
6809 todo = *empty;
6810 for (i = 1; i < map->n; ++i) {
6811 isl_pw_multi_aff *res_i;
6813 res_i = basic_map_partial_lexopt_pw_multi_aff(
6814 isl_basic_map_copy(map->p[i]),
6815 isl_set_copy(dom), empty, flags);
6817 if (ISL_FL_ISSET(flags, ISL_OPT_MAX))
6818 res = isl_pw_multi_aff_union_lexmax(res, res_i);
6819 else
6820 res = isl_pw_multi_aff_union_lexmin(res, res_i);
6822 if (empty)
6823 todo = isl_set_intersect(todo, *empty);
6826 isl_set_free(dom);
6827 isl_map_free(map);
6829 if (empty)
6830 *empty = todo;
6832 return res;
6833 error:
6834 if (empty)
6835 *empty = NULL;
6836 isl_set_free(dom);
6837 isl_map_free(map);
6838 return NULL;
6841 #undef TYPE
6842 #define TYPE isl_map
6843 #undef SUFFIX
6844 #define SUFFIX
6845 #undef EMPTY
6846 #define EMPTY isl_map_empty
6847 #undef ADD
6848 #define ADD isl_map_union_disjoint
6849 #include "isl_map_lexopt_templ.c"
6851 /* Given a map "map", compute the lexicographically minimal
6852 * (or maximal) image element for each domain element in "dom",
6853 * in the form of an isl_map.
6854 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6855 * do not have an image element.
6856 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6857 * should be computed over the domain of "map". "empty" is also NULL
6858 * in this case.
6860 * If the input consists of more than one disjunct, then first
6861 * compute the desired result in the form of an isl_pw_multi_aff and
6862 * then convert that into an isl_map.
6864 * This function used to have an explicit implementation in terms
6865 * of isl_maps, but it would continually intersect the domains of
6866 * partial results with the complement of the domain of the next
6867 * partial solution, potentially leading to an explosion in the number
6868 * of disjuncts if there are several disjuncts in the input.
6869 * An even earlier implementation of this function would look for
6870 * better results in the domain of the partial result and for extra
6871 * results in the complement of this domain, which would lead to
6872 * even more splintering.
6874 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
6875 __isl_take isl_map *map, __isl_take isl_set *dom,
6876 __isl_give isl_set **empty, unsigned flags)
6878 int full;
6879 struct isl_map *res;
6880 isl_pw_multi_aff *pma;
6882 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6883 if (!map || (!full && !dom))
6884 goto error;
6886 if (isl_map_plain_is_empty(map)) {
6887 if (empty)
6888 *empty = dom;
6889 else
6890 isl_set_free(dom);
6891 return map;
6894 if (map->n == 1) {
6895 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
6896 dom, empty, flags);
6897 isl_map_free(map);
6898 return res;
6901 pma = isl_map_partial_lexopt_aligned_pw_multi_aff(map, dom, empty,
6902 flags);
6903 return isl_map_from_pw_multi_aff(pma);
6904 error:
6905 if (empty)
6906 *empty = NULL;
6907 isl_set_free(dom);
6908 isl_map_free(map);
6909 return NULL;
6912 __isl_give isl_map *isl_map_partial_lexmax(
6913 __isl_take isl_map *map, __isl_take isl_set *dom,
6914 __isl_give isl_set **empty)
6916 return isl_map_partial_lexopt(map, dom, empty, ISL_OPT_MAX);
6919 __isl_give isl_map *isl_map_partial_lexmin(
6920 __isl_take isl_map *map, __isl_take isl_set *dom,
6921 __isl_give isl_set **empty)
6923 return isl_map_partial_lexopt(map, dom, empty, 0);
6926 __isl_give isl_set *isl_set_partial_lexmin(
6927 __isl_take isl_set *set, __isl_take isl_set *dom,
6928 __isl_give isl_set **empty)
6930 return set_from_map(isl_map_partial_lexmin(set_to_map(set),
6931 dom, empty));
6934 __isl_give isl_set *isl_set_partial_lexmax(
6935 __isl_take isl_set *set, __isl_take isl_set *dom,
6936 __isl_give isl_set **empty)
6938 return set_from_map(isl_map_partial_lexmax(set_to_map(set),
6939 dom, empty));
6942 /* Compute the lexicographic minimum (or maximum if "flags" includes
6943 * ISL_OPT_MAX) of "bset" over its parametric domain.
6945 __isl_give isl_set *isl_basic_set_lexopt(__isl_take isl_basic_set *bset,
6946 unsigned flags)
6948 return isl_basic_map_lexopt(bset, flags);
6951 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
6953 return isl_basic_map_lexopt(bmap, ISL_OPT_MAX);
6956 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
6958 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset)));
6961 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
6963 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset)));
6966 /* Compute the lexicographic minimum of "bset" over its parametric domain
6967 * for the purpose of quantifier elimination.
6968 * That is, find an explicit representation for all the existentially
6969 * quantified variables in "bset" by computing their lexicographic
6970 * minimum.
6972 static __isl_give isl_set *isl_basic_set_lexmin_compute_divs(
6973 __isl_take isl_basic_set *bset)
6975 return isl_basic_set_lexopt(bset, ISL_OPT_QE);
6978 /* Given a basic map with one output dimension, compute the minimum or
6979 * maximum of that dimension as an isl_pw_aff.
6981 * Compute the optimum as a lexicographic optimum over the single
6982 * output dimension and extract the single isl_pw_aff from the result.
6984 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
6985 int max)
6987 isl_pw_multi_aff *pma;
6988 isl_pw_aff *pwaff;
6990 bmap = isl_basic_map_copy(bmap);
6991 pma = isl_basic_map_lexopt_pw_multi_aff(bmap, max ? ISL_OPT_MAX : 0);
6992 pwaff = isl_pw_multi_aff_get_pw_aff(pma, 0);
6993 isl_pw_multi_aff_free(pma);
6995 return pwaff;
6998 /* Compute the minimum or maximum of the given output dimension
6999 * as a function of the parameters and the input dimensions,
7000 * but independently of the other output dimensions.
7002 * We first project out the other output dimension and then compute
7003 * the "lexicographic" maximum in each basic map, combining the results
7004 * using isl_pw_aff_union_max.
7006 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
7007 int max)
7009 int i;
7010 isl_pw_aff *pwaff;
7011 unsigned n_out;
7013 n_out = isl_map_dim(map, isl_dim_out);
7014 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
7015 map = isl_map_project_out(map, isl_dim_out, 0, pos);
7016 if (!map)
7017 return NULL;
7019 if (map->n == 0) {
7020 isl_space *dim = isl_map_get_space(map);
7021 isl_map_free(map);
7022 return isl_pw_aff_empty(dim);
7025 pwaff = basic_map_dim_opt(map->p[0], max);
7026 for (i = 1; i < map->n; ++i) {
7027 isl_pw_aff *pwaff_i;
7029 pwaff_i = basic_map_dim_opt(map->p[i], max);
7030 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
7033 isl_map_free(map);
7035 return pwaff;
7038 /* Compute the minimum of the given output dimension as a function of the
7039 * parameters and input dimensions, but independently of
7040 * the other output dimensions.
7042 __isl_give isl_pw_aff *isl_map_dim_min(__isl_take isl_map *map, int pos)
7044 return map_dim_opt(map, pos, 0);
7047 /* Compute the maximum of the given output dimension as a function of the
7048 * parameters and input dimensions, but independently of
7049 * the other output dimensions.
7051 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
7053 return map_dim_opt(map, pos, 1);
7056 /* Compute the minimum or maximum of the given set dimension
7057 * as a function of the parameters,
7058 * but independently of the other set dimensions.
7060 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
7061 int max)
7063 return map_dim_opt(set, pos, max);
7066 /* Compute the maximum of the given set dimension as a function of the
7067 * parameters, but independently of the other set dimensions.
7069 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
7071 return set_dim_opt(set, pos, 1);
7074 /* Compute the minimum of the given set dimension as a function of the
7075 * parameters, but independently of the other set dimensions.
7077 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
7079 return set_dim_opt(set, pos, 0);
7082 /* Apply a preimage specified by "mat" on the parameters of "bset".
7083 * bset is assumed to have only parameters and divs.
7085 static __isl_give isl_basic_set *basic_set_parameter_preimage(
7086 __isl_take isl_basic_set *bset, __isl_take isl_mat *mat)
7088 unsigned nparam;
7090 if (!bset || !mat)
7091 goto error;
7093 bset->dim = isl_space_cow(bset->dim);
7094 if (!bset->dim)
7095 goto error;
7097 nparam = isl_basic_set_dim(bset, isl_dim_param);
7099 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
7101 bset->dim->nparam = 0;
7102 bset->dim->n_out = nparam;
7103 bset = isl_basic_set_preimage(bset, mat);
7104 if (bset) {
7105 bset->dim->nparam = bset->dim->n_out;
7106 bset->dim->n_out = 0;
7108 return bset;
7109 error:
7110 isl_mat_free(mat);
7111 isl_basic_set_free(bset);
7112 return NULL;
7115 /* Apply a preimage specified by "mat" on the parameters of "set".
7116 * set is assumed to have only parameters and divs.
7118 static __isl_give isl_set *set_parameter_preimage(__isl_take isl_set *set,
7119 __isl_take isl_mat *mat)
7121 isl_space *space;
7122 unsigned nparam;
7124 if (!set || !mat)
7125 goto error;
7127 nparam = isl_set_dim(set, isl_dim_param);
7129 if (mat->n_row != 1 + nparam)
7130 isl_die(isl_set_get_ctx(set), isl_error_internal,
7131 "unexpected number of rows", goto error);
7133 space = isl_set_get_space(set);
7134 space = isl_space_move_dims(space, isl_dim_set, 0,
7135 isl_dim_param, 0, nparam);
7136 set = isl_set_reset_space(set, space);
7137 set = isl_set_preimage(set, mat);
7138 nparam = isl_set_dim(set, isl_dim_out);
7139 space = isl_set_get_space(set);
7140 space = isl_space_move_dims(space, isl_dim_param, 0,
7141 isl_dim_out, 0, nparam);
7142 set = isl_set_reset_space(set, space);
7143 return set;
7144 error:
7145 isl_mat_free(mat);
7146 isl_set_free(set);
7147 return NULL;
7150 /* Intersect the basic set "bset" with the affine space specified by the
7151 * equalities in "eq".
7153 static __isl_give isl_basic_set *basic_set_append_equalities(
7154 __isl_take isl_basic_set *bset, __isl_take isl_mat *eq)
7156 int i, k;
7157 unsigned len;
7159 if (!bset || !eq)
7160 goto error;
7162 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
7163 eq->n_row, 0);
7164 if (!bset)
7165 goto error;
7167 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
7168 for (i = 0; i < eq->n_row; ++i) {
7169 k = isl_basic_set_alloc_equality(bset);
7170 if (k < 0)
7171 goto error;
7172 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
7173 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
7175 isl_mat_free(eq);
7177 bset = isl_basic_set_gauss(bset, NULL);
7178 bset = isl_basic_set_finalize(bset);
7180 return bset;
7181 error:
7182 isl_mat_free(eq);
7183 isl_basic_set_free(bset);
7184 return NULL;
7187 /* Intersect the set "set" with the affine space specified by the
7188 * equalities in "eq".
7190 static struct isl_set *set_append_equalities(struct isl_set *set,
7191 struct isl_mat *eq)
7193 int i;
7195 if (!set || !eq)
7196 goto error;
7198 for (i = 0; i < set->n; ++i) {
7199 set->p[i] = basic_set_append_equalities(set->p[i],
7200 isl_mat_copy(eq));
7201 if (!set->p[i])
7202 goto error;
7204 isl_mat_free(eq);
7205 return set;
7206 error:
7207 isl_mat_free(eq);
7208 isl_set_free(set);
7209 return NULL;
7212 /* Given a basic set "bset" that only involves parameters and existentially
7213 * quantified variables, return the index of the first equality
7214 * that only involves parameters. If there is no such equality then
7215 * return bset->n_eq.
7217 * This function assumes that isl_basic_set_gauss has been called on "bset".
7219 static int first_parameter_equality(__isl_keep isl_basic_set *bset)
7221 int i, j;
7222 unsigned nparam, n_div;
7224 if (!bset)
7225 return -1;
7227 nparam = isl_basic_set_dim(bset, isl_dim_param);
7228 n_div = isl_basic_set_dim(bset, isl_dim_div);
7230 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
7231 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
7232 ++i;
7235 return i;
7238 /* Compute an explicit representation for the existentially quantified
7239 * variables in "bset" by computing the "minimal value" of the set
7240 * variables. Since there are no set variables, the computation of
7241 * the minimal value essentially computes an explicit representation
7242 * of the non-empty part(s) of "bset".
7244 * The input only involves parameters and existentially quantified variables.
7245 * All equalities among parameters have been removed.
7247 * Since the existentially quantified variables in the result are in general
7248 * going to be different from those in the input, we first replace
7249 * them by the minimal number of variables based on their equalities.
7250 * This should simplify the parametric integer programming.
7252 static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
7254 isl_morph *morph1, *morph2;
7255 isl_set *set;
7256 unsigned n;
7258 if (!bset)
7259 return NULL;
7260 if (bset->n_eq == 0)
7261 return isl_basic_set_lexmin_compute_divs(bset);
7263 morph1 = isl_basic_set_parameter_compression(bset);
7264 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
7265 bset = isl_basic_set_lift(bset);
7266 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
7267 bset = isl_morph_basic_set(morph2, bset);
7268 n = isl_basic_set_dim(bset, isl_dim_set);
7269 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
7271 set = isl_basic_set_lexmin_compute_divs(bset);
7273 set = isl_morph_set(isl_morph_inverse(morph1), set);
7275 return set;
7278 /* Project the given basic set onto its parameter domain, possibly introducing
7279 * new, explicit, existential variables in the constraints.
7280 * The input has parameters and (possibly implicit) existential variables.
7281 * The output has the same parameters, but only
7282 * explicit existentially quantified variables.
7284 * The actual projection is performed by pip, but pip doesn't seem
7285 * to like equalities very much, so we first remove the equalities
7286 * among the parameters by performing a variable compression on
7287 * the parameters. Afterward, an inverse transformation is performed
7288 * and the equalities among the parameters are inserted back in.
7290 * The variable compression on the parameters may uncover additional
7291 * equalities that were only implicit before. We therefore check
7292 * if there are any new parameter equalities in the result and
7293 * if so recurse. The removal of parameter equalities is required
7294 * for the parameter compression performed by base_compute_divs.
7296 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
7298 int i;
7299 struct isl_mat *eq;
7300 struct isl_mat *T, *T2;
7301 struct isl_set *set;
7302 unsigned nparam;
7304 bset = isl_basic_set_cow(bset);
7305 if (!bset)
7306 return NULL;
7308 if (bset->n_eq == 0)
7309 return base_compute_divs(bset);
7311 bset = isl_basic_set_gauss(bset, NULL);
7312 if (!bset)
7313 return NULL;
7314 if (isl_basic_set_plain_is_empty(bset))
7315 return isl_set_from_basic_set(bset);
7317 i = first_parameter_equality(bset);
7318 if (i == bset->n_eq)
7319 return base_compute_divs(bset);
7321 nparam = isl_basic_set_dim(bset, isl_dim_param);
7322 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
7323 0, 1 + nparam);
7324 eq = isl_mat_cow(eq);
7325 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
7326 if (T && T->n_col == 0) {
7327 isl_mat_free(T);
7328 isl_mat_free(T2);
7329 isl_mat_free(eq);
7330 bset = isl_basic_set_set_to_empty(bset);
7331 return isl_set_from_basic_set(bset);
7333 bset = basic_set_parameter_preimage(bset, T);
7335 i = first_parameter_equality(bset);
7336 if (!bset)
7337 set = NULL;
7338 else if (i == bset->n_eq)
7339 set = base_compute_divs(bset);
7340 else
7341 set = parameter_compute_divs(bset);
7342 set = set_parameter_preimage(set, T2);
7343 set = set_append_equalities(set, eq);
7344 return set;
7347 /* Insert the divs from "ls" before those of "bmap".
7349 * The number of columns is not changed, which means that the last
7350 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7351 * The caller is responsible for removing the same number of dimensions
7352 * from the space of "bmap".
7354 static __isl_give isl_basic_map *insert_divs_from_local_space(
7355 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
7357 int i;
7358 int n_div;
7359 int old_n_div;
7361 n_div = isl_local_space_dim(ls, isl_dim_div);
7362 if (n_div == 0)
7363 return bmap;
7365 old_n_div = bmap->n_div;
7366 bmap = insert_div_rows(bmap, n_div);
7367 if (!bmap)
7368 return NULL;
7370 for (i = 0; i < n_div; ++i) {
7371 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
7372 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
7375 return bmap;
7378 /* Replace the space of "bmap" by the space and divs of "ls".
7380 * If "ls" has any divs, then we simplify the result since we may
7381 * have discovered some additional equalities that could simplify
7382 * the div expressions.
7384 static __isl_give isl_basic_map *basic_replace_space_by_local_space(
7385 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
7387 int n_div;
7389 bmap = isl_basic_map_cow(bmap);
7390 if (!bmap || !ls)
7391 goto error;
7393 n_div = isl_local_space_dim(ls, isl_dim_div);
7394 bmap = insert_divs_from_local_space(bmap, ls);
7395 if (!bmap)
7396 goto error;
7398 isl_space_free(bmap->dim);
7399 bmap->dim = isl_local_space_get_space(ls);
7400 if (!bmap->dim)
7401 goto error;
7403 isl_local_space_free(ls);
7404 if (n_div > 0)
7405 bmap = isl_basic_map_simplify(bmap);
7406 bmap = isl_basic_map_finalize(bmap);
7407 return bmap;
7408 error:
7409 isl_basic_map_free(bmap);
7410 isl_local_space_free(ls);
7411 return NULL;
7414 /* Replace the space of "map" by the space and divs of "ls".
7416 static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
7417 __isl_take isl_local_space *ls)
7419 int i;
7421 map = isl_map_cow(map);
7422 if (!map || !ls)
7423 goto error;
7425 for (i = 0; i < map->n; ++i) {
7426 map->p[i] = basic_replace_space_by_local_space(map->p[i],
7427 isl_local_space_copy(ls));
7428 if (!map->p[i])
7429 goto error;
7431 isl_space_free(map->dim);
7432 map->dim = isl_local_space_get_space(ls);
7433 if (!map->dim)
7434 goto error;
7436 isl_local_space_free(ls);
7437 return map;
7438 error:
7439 isl_local_space_free(ls);
7440 isl_map_free(map);
7441 return NULL;
7444 /* Compute an explicit representation for the existentially
7445 * quantified variables for which do not know any explicit representation yet.
7447 * We first sort the existentially quantified variables so that the
7448 * existentially quantified variables for which we already have an explicit
7449 * representation are placed before those for which we do not.
7450 * The input dimensions, the output dimensions and the existentially
7451 * quantified variables for which we already have an explicit
7452 * representation are then turned into parameters.
7453 * compute_divs returns a map with the same parameters and
7454 * no input or output dimensions and the dimension specification
7455 * is reset to that of the input, including the existentially quantified
7456 * variables for which we already had an explicit representation.
7458 static struct isl_map *compute_divs(struct isl_basic_map *bmap)
7460 struct isl_basic_set *bset;
7461 struct isl_set *set;
7462 struct isl_map *map;
7463 isl_space *dim;
7464 isl_local_space *ls;
7465 unsigned nparam;
7466 unsigned n_in;
7467 unsigned n_out;
7468 int n_known;
7469 int i;
7471 bmap = isl_basic_map_sort_divs(bmap);
7472 bmap = isl_basic_map_cow(bmap);
7473 if (!bmap)
7474 return NULL;
7476 n_known = isl_basic_map_first_unknown_div(bmap);
7477 if (n_known < 0)
7478 return isl_map_from_basic_map(isl_basic_map_free(bmap));
7480 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7481 n_in = isl_basic_map_dim(bmap, isl_dim_in);
7482 n_out = isl_basic_map_dim(bmap, isl_dim_out);
7483 dim = isl_space_set_alloc(bmap->ctx,
7484 nparam + n_in + n_out + n_known, 0);
7485 if (!dim)
7486 goto error;
7488 ls = isl_basic_map_get_local_space(bmap);
7489 ls = isl_local_space_drop_dims(ls, isl_dim_div,
7490 n_known, bmap->n_div - n_known);
7491 if (n_known > 0) {
7492 for (i = n_known; i < bmap->n_div; ++i)
7493 swap_div(bmap, i - n_known, i);
7494 bmap->n_div -= n_known;
7495 bmap->extra -= n_known;
7497 bmap = isl_basic_map_reset_space(bmap, dim);
7498 bset = bset_from_bmap(bmap);
7500 set = parameter_compute_divs(bset);
7501 map = set_to_map(set);
7502 map = replace_space_by_local_space(map, ls);
7504 return map;
7505 error:
7506 isl_basic_map_free(bmap);
7507 return NULL;
7510 /* Remove the explicit representation of local variable "div",
7511 * if there is any.
7513 __isl_give isl_basic_map *isl_basic_map_mark_div_unknown(
7514 __isl_take isl_basic_map *bmap, int div)
7516 isl_bool unknown;
7518 unknown = isl_basic_map_div_is_marked_unknown(bmap, div);
7519 if (unknown < 0)
7520 return isl_basic_map_free(bmap);
7521 if (unknown)
7522 return bmap;
7524 bmap = isl_basic_map_cow(bmap);
7525 if (!bmap)
7526 return NULL;
7527 isl_int_set_si(bmap->div[div][0], 0);
7528 return bmap;
7531 /* Is local variable "div" of "bmap" marked as not having an explicit
7532 * representation?
7533 * Note that even if "div" is not marked in this way and therefore
7534 * has an explicit representation, this representation may still
7535 * depend (indirectly) on other local variables that do not
7536 * have an explicit representation.
7538 isl_bool isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map *bmap,
7539 int div)
7541 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
7542 return isl_bool_error;
7543 return isl_int_is_zero(bmap->div[div][0]);
7546 /* Return the position of the first local variable that does not
7547 * have an explicit representation.
7548 * Return the total number of local variables if they all have
7549 * an explicit representation.
7550 * Return -1 on error.
7552 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map *bmap)
7554 int i;
7556 if (!bmap)
7557 return -1;
7559 for (i = 0; i < bmap->n_div; ++i) {
7560 if (!isl_basic_map_div_is_known(bmap, i))
7561 return i;
7563 return bmap->n_div;
7566 /* Return the position of the first local variable that does not
7567 * have an explicit representation.
7568 * Return the total number of local variables if they all have
7569 * an explicit representation.
7570 * Return -1 on error.
7572 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set *bset)
7574 return isl_basic_map_first_unknown_div(bset);
7577 /* Does "bmap" have an explicit representation for all local variables?
7579 isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
7581 int first, n;
7583 n = isl_basic_map_dim(bmap, isl_dim_div);
7584 first = isl_basic_map_first_unknown_div(bmap);
7585 if (first < 0)
7586 return isl_bool_error;
7587 return first == n;
7590 /* Do all basic maps in "map" have an explicit representation
7591 * for all local variables?
7593 isl_bool isl_map_divs_known(__isl_keep isl_map *map)
7595 int i;
7597 if (!map)
7598 return isl_bool_error;
7600 for (i = 0; i < map->n; ++i) {
7601 int known = isl_basic_map_divs_known(map->p[i]);
7602 if (known <= 0)
7603 return known;
7606 return isl_bool_true;
7609 /* If bmap contains any unknown divs, then compute explicit
7610 * expressions for them. However, this computation may be
7611 * quite expensive, so first try to remove divs that aren't
7612 * strictly needed.
7614 __isl_give isl_map *isl_basic_map_compute_divs(__isl_take isl_basic_map *bmap)
7616 int known;
7617 struct isl_map *map;
7619 known = isl_basic_map_divs_known(bmap);
7620 if (known < 0)
7621 goto error;
7622 if (known)
7623 return isl_map_from_basic_map(bmap);
7625 bmap = isl_basic_map_drop_redundant_divs(bmap);
7627 known = isl_basic_map_divs_known(bmap);
7628 if (known < 0)
7629 goto error;
7630 if (known)
7631 return isl_map_from_basic_map(bmap);
7633 map = compute_divs(bmap);
7634 return map;
7635 error:
7636 isl_basic_map_free(bmap);
7637 return NULL;
7640 __isl_give isl_map *isl_map_compute_divs(__isl_take isl_map *map)
7642 int i;
7643 int known;
7644 struct isl_map *res;
7646 if (!map)
7647 return NULL;
7648 if (map->n == 0)
7649 return map;
7651 known = isl_map_divs_known(map);
7652 if (known < 0) {
7653 isl_map_free(map);
7654 return NULL;
7656 if (known)
7657 return map;
7659 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
7660 for (i = 1 ; i < map->n; ++i) {
7661 struct isl_map *r2;
7662 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
7663 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
7664 res = isl_map_union_disjoint(res, r2);
7665 else
7666 res = isl_map_union(res, r2);
7668 isl_map_free(map);
7670 return res;
7673 __isl_give isl_set *isl_basic_set_compute_divs(__isl_take isl_basic_set *bset)
7675 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset)));
7678 struct isl_set *isl_set_compute_divs(struct isl_set *set)
7680 return set_from_map(isl_map_compute_divs(set_to_map(set)));
7683 __isl_give isl_set *isl_map_domain(__isl_take isl_map *map)
7685 int i;
7686 struct isl_set *set;
7688 if (!map)
7689 goto error;
7691 map = isl_map_cow(map);
7692 if (!map)
7693 return NULL;
7695 set = set_from_map(map);
7696 set->dim = isl_space_domain(set->dim);
7697 if (!set->dim)
7698 goto error;
7699 for (i = 0; i < map->n; ++i) {
7700 set->p[i] = isl_basic_map_domain(map->p[i]);
7701 if (!set->p[i])
7702 goto error;
7704 ISL_F_CLR(set, ISL_MAP_DISJOINT);
7705 ISL_F_CLR(set, ISL_SET_NORMALIZED);
7706 return set;
7707 error:
7708 isl_map_free(map);
7709 return NULL;
7712 /* Return the union of "map1" and "map2", where we assume for now that
7713 * "map1" and "map2" are disjoint. Note that the basic maps inside
7714 * "map1" or "map2" may not be disjoint from each other.
7715 * Also note that this function is also called from isl_map_union,
7716 * which takes care of handling the situation where "map1" and "map2"
7717 * may not be disjoint.
7719 * If one of the inputs is empty, we can simply return the other input.
7720 * Similarly, if one of the inputs is universal, then it is equal to the union.
7722 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
7723 __isl_take isl_map *map2)
7725 int i;
7726 unsigned flags = 0;
7727 struct isl_map *map = NULL;
7728 int is_universe;
7730 if (!map1 || !map2)
7731 goto error;
7733 if (!isl_space_is_equal(map1->dim, map2->dim))
7734 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
7735 "spaces don't match", goto error);
7737 if (map1->n == 0) {
7738 isl_map_free(map1);
7739 return map2;
7741 if (map2->n == 0) {
7742 isl_map_free(map2);
7743 return map1;
7746 is_universe = isl_map_plain_is_universe(map1);
7747 if (is_universe < 0)
7748 goto error;
7749 if (is_universe) {
7750 isl_map_free(map2);
7751 return map1;
7754 is_universe = isl_map_plain_is_universe(map2);
7755 if (is_universe < 0)
7756 goto error;
7757 if (is_universe) {
7758 isl_map_free(map1);
7759 return map2;
7762 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
7763 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
7764 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7766 map = isl_map_alloc_space(isl_space_copy(map1->dim),
7767 map1->n + map2->n, flags);
7768 if (!map)
7769 goto error;
7770 for (i = 0; i < map1->n; ++i) {
7771 map = isl_map_add_basic_map(map,
7772 isl_basic_map_copy(map1->p[i]));
7773 if (!map)
7774 goto error;
7776 for (i = 0; i < map2->n; ++i) {
7777 map = isl_map_add_basic_map(map,
7778 isl_basic_map_copy(map2->p[i]));
7779 if (!map)
7780 goto error;
7782 isl_map_free(map1);
7783 isl_map_free(map2);
7784 return map;
7785 error:
7786 isl_map_free(map);
7787 isl_map_free(map1);
7788 isl_map_free(map2);
7789 return NULL;
7792 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7793 * guaranteed to be disjoint by the caller.
7795 * Note that this functions is called from within isl_map_make_disjoint,
7796 * so we have to be careful not to touch the constraints of the inputs
7797 * in any way.
7799 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
7800 __isl_take isl_map *map2)
7802 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
7805 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7806 * not be disjoint. The parameters are assumed to have been aligned.
7808 * We currently simply call map_union_disjoint, the internal operation
7809 * of which does not really depend on the inputs being disjoint.
7810 * If the result contains more than one basic map, then we clear
7811 * the disjoint flag since the result may contain basic maps from
7812 * both inputs and these are not guaranteed to be disjoint.
7814 * As a special case, if "map1" and "map2" are obviously equal,
7815 * then we simply return "map1".
7817 static __isl_give isl_map *map_union_aligned(__isl_take isl_map *map1,
7818 __isl_take isl_map *map2)
7820 int equal;
7822 if (!map1 || !map2)
7823 goto error;
7825 equal = isl_map_plain_is_equal(map1, map2);
7826 if (equal < 0)
7827 goto error;
7828 if (equal) {
7829 isl_map_free(map2);
7830 return map1;
7833 map1 = map_union_disjoint(map1, map2);
7834 if (!map1)
7835 return NULL;
7836 if (map1->n > 1)
7837 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
7838 return map1;
7839 error:
7840 isl_map_free(map1);
7841 isl_map_free(map2);
7842 return NULL;
7845 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7846 * not be disjoint.
7848 __isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
7849 __isl_take isl_map *map2)
7851 return isl_map_align_params_map_map_and(map1, map2, &map_union_aligned);
7854 __isl_give isl_set *isl_set_union_disjoint(
7855 __isl_take isl_set *set1, __isl_take isl_set *set2)
7857 return set_from_map(isl_map_union_disjoint(set_to_map(set1),
7858 set_to_map(set2)));
7861 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
7863 return set_from_map(isl_map_union(set_to_map(set1), set_to_map(set2)));
7866 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7867 * the results.
7869 * "map" and "set" are assumed to be compatible and non-NULL.
7871 static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
7872 __isl_take isl_set *set,
7873 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
7874 __isl_take isl_basic_set *bset))
7876 unsigned flags = 0;
7877 struct isl_map *result;
7878 int i, j;
7880 if (isl_set_plain_is_universe(set)) {
7881 isl_set_free(set);
7882 return map;
7885 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
7886 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
7887 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7889 result = isl_map_alloc_space(isl_space_copy(map->dim),
7890 map->n * set->n, flags);
7891 for (i = 0; result && i < map->n; ++i)
7892 for (j = 0; j < set->n; ++j) {
7893 result = isl_map_add_basic_map(result,
7894 fn(isl_basic_map_copy(map->p[i]),
7895 isl_basic_set_copy(set->p[j])));
7896 if (!result)
7897 break;
7900 isl_map_free(map);
7901 isl_set_free(set);
7902 return result;
7905 static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
7906 __isl_take isl_set *set)
7908 isl_bool ok;
7910 ok = isl_map_compatible_range(map, set);
7911 if (ok < 0)
7912 goto error;
7913 if (!ok)
7914 isl_die(set->ctx, isl_error_invalid,
7915 "incompatible spaces", goto error);
7917 return map_intersect_set(map, set, &isl_basic_map_intersect_range);
7918 error:
7919 isl_map_free(map);
7920 isl_set_free(set);
7921 return NULL;
7924 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
7925 __isl_take isl_set *set)
7927 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
7930 static __isl_give isl_map *map_intersect_domain(__isl_take isl_map *map,
7931 __isl_take isl_set *set)
7933 isl_bool ok;
7935 ok = isl_map_compatible_domain(map, set);
7936 if (ok < 0)
7937 goto error;
7938 if (!ok)
7939 isl_die(set->ctx, isl_error_invalid,
7940 "incompatible spaces", goto error);
7942 return map_intersect_set(map, set, &isl_basic_map_intersect_domain);
7943 error:
7944 isl_map_free(map);
7945 isl_set_free(set);
7946 return NULL;
7949 __isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
7950 __isl_take isl_set *set)
7952 return isl_map_align_params_map_map_and(map, set,
7953 &map_intersect_domain);
7956 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7957 * in the space B -> C, return the intersection.
7958 * The parameters are assumed to have been aligned.
7960 * The map "factor" is first extended to a map living in the space
7961 * [A -> B] -> C and then a regular intersection is computed.
7963 static __isl_give isl_map *map_intersect_domain_factor_range(
7964 __isl_take isl_map *map, __isl_take isl_map *factor)
7966 isl_space *space;
7967 isl_map *ext_factor;
7969 space = isl_space_domain_factor_domain(isl_map_get_space(map));
7970 ext_factor = isl_map_universe(space);
7971 ext_factor = isl_map_domain_product(ext_factor, factor);
7972 return map_intersect(map, ext_factor);
7975 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7976 * in the space B -> C, return the intersection.
7978 __isl_give isl_map *isl_map_intersect_domain_factor_range(
7979 __isl_take isl_map *map, __isl_take isl_map *factor)
7981 return isl_map_align_params_map_map_and(map, factor,
7982 &map_intersect_domain_factor_range);
7985 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
7986 * in the space A -> C, return the intersection.
7988 * The map "factor" is first extended to a map living in the space
7989 * A -> [B -> C] and then a regular intersection is computed.
7991 static __isl_give isl_map *map_intersect_range_factor_range(
7992 __isl_take isl_map *map, __isl_take isl_map *factor)
7994 isl_space *space;
7995 isl_map *ext_factor;
7997 space = isl_space_range_factor_domain(isl_map_get_space(map));
7998 ext_factor = isl_map_universe(space);
7999 ext_factor = isl_map_range_product(ext_factor, factor);
8000 return isl_map_intersect(map, ext_factor);
8003 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
8004 * in the space A -> C, return the intersection.
8006 __isl_give isl_map *isl_map_intersect_range_factor_range(
8007 __isl_take isl_map *map, __isl_take isl_map *factor)
8009 return isl_map_align_params_map_map_and(map, factor,
8010 &map_intersect_range_factor_range);
8013 static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
8014 __isl_take isl_map *map2)
8016 if (!map1 || !map2)
8017 goto error;
8018 map1 = isl_map_reverse(map1);
8019 map1 = isl_map_apply_range(map1, map2);
8020 return isl_map_reverse(map1);
8021 error:
8022 isl_map_free(map1);
8023 isl_map_free(map2);
8024 return NULL;
8027 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
8028 __isl_take isl_map *map2)
8030 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
8033 static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
8034 __isl_take isl_map *map2)
8036 isl_space *dim_result;
8037 struct isl_map *result;
8038 int i, j;
8040 if (!map1 || !map2)
8041 goto error;
8043 dim_result = isl_space_join(isl_space_copy(map1->dim),
8044 isl_space_copy(map2->dim));
8046 result = isl_map_alloc_space(dim_result, map1->n * map2->n, 0);
8047 if (!result)
8048 goto error;
8049 for (i = 0; i < map1->n; ++i)
8050 for (j = 0; j < map2->n; ++j) {
8051 result = isl_map_add_basic_map(result,
8052 isl_basic_map_apply_range(
8053 isl_basic_map_copy(map1->p[i]),
8054 isl_basic_map_copy(map2->p[j])));
8055 if (!result)
8056 goto error;
8058 isl_map_free(map1);
8059 isl_map_free(map2);
8060 if (result && result->n <= 1)
8061 ISL_F_SET(result, ISL_MAP_DISJOINT);
8062 return result;
8063 error:
8064 isl_map_free(map1);
8065 isl_map_free(map2);
8066 return NULL;
8069 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
8070 __isl_take isl_map *map2)
8072 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
8076 * returns range - domain
8078 __isl_give isl_basic_set *isl_basic_map_deltas(__isl_take isl_basic_map *bmap)
8080 isl_space *target_space;
8081 struct isl_basic_set *bset;
8082 unsigned dim;
8083 unsigned nparam;
8084 int i;
8086 if (!bmap)
8087 goto error;
8088 isl_assert(bmap->ctx, isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8089 bmap->dim, isl_dim_out),
8090 goto error);
8091 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
8092 dim = isl_basic_map_dim(bmap, isl_dim_in);
8093 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8094 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
8095 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
8096 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
8097 for (i = 0; i < dim; ++i) {
8098 int j = isl_basic_map_alloc_equality(bmap);
8099 if (j < 0) {
8100 bmap = isl_basic_map_free(bmap);
8101 break;
8103 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8104 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8105 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
8106 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
8108 bset = isl_basic_map_domain(bmap);
8109 bset = isl_basic_set_reset_space(bset, target_space);
8110 return bset;
8111 error:
8112 isl_basic_map_free(bmap);
8113 return NULL;
8117 * returns range - domain
8119 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
8121 int i;
8122 isl_space *dim;
8123 struct isl_set *result;
8125 if (!map)
8126 return NULL;
8128 isl_assert(map->ctx, isl_space_tuple_is_equal(map->dim, isl_dim_in,
8129 map->dim, isl_dim_out),
8130 goto error);
8131 dim = isl_map_get_space(map);
8132 dim = isl_space_domain(dim);
8133 result = isl_set_alloc_space(dim, map->n, 0);
8134 if (!result)
8135 goto error;
8136 for (i = 0; i < map->n; ++i)
8137 result = isl_set_add_basic_set(result,
8138 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
8139 isl_map_free(map);
8140 return result;
8141 error:
8142 isl_map_free(map);
8143 return NULL;
8147 * returns [domain -> range] -> range - domain
8149 __isl_give isl_basic_map *isl_basic_map_deltas_map(
8150 __isl_take isl_basic_map *bmap)
8152 int i, k;
8153 isl_space *dim;
8154 isl_basic_map *domain;
8155 int nparam, n;
8156 unsigned total;
8158 if (!isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8159 bmap->dim, isl_dim_out))
8160 isl_die(bmap->ctx, isl_error_invalid,
8161 "domain and range don't match", goto error);
8163 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8164 n = isl_basic_map_dim(bmap, isl_dim_in);
8166 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
8167 domain = isl_basic_map_universe(dim);
8169 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
8170 bmap = isl_basic_map_apply_range(bmap, domain);
8171 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
8173 total = isl_basic_map_total_dim(bmap);
8175 for (i = 0; i < n; ++i) {
8176 k = isl_basic_map_alloc_equality(bmap);
8177 if (k < 0)
8178 goto error;
8179 isl_seq_clr(bmap->eq[k], 1 + total);
8180 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
8181 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
8182 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
8185 bmap = isl_basic_map_gauss(bmap, NULL);
8186 return isl_basic_map_finalize(bmap);
8187 error:
8188 isl_basic_map_free(bmap);
8189 return NULL;
8193 * returns [domain -> range] -> range - domain
8195 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
8197 int i;
8198 isl_space *domain_dim;
8200 if (!map)
8201 return NULL;
8203 if (!isl_space_tuple_is_equal(map->dim, isl_dim_in,
8204 map->dim, isl_dim_out))
8205 isl_die(map->ctx, isl_error_invalid,
8206 "domain and range don't match", goto error);
8208 map = isl_map_cow(map);
8209 if (!map)
8210 return NULL;
8212 domain_dim = isl_space_from_range(isl_space_domain(isl_map_get_space(map)));
8213 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
8214 map->dim = isl_space_join(map->dim, domain_dim);
8215 if (!map->dim)
8216 goto error;
8217 for (i = 0; i < map->n; ++i) {
8218 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
8219 if (!map->p[i])
8220 goto error;
8222 map = isl_map_unmark_normalized(map);
8223 return map;
8224 error:
8225 isl_map_free(map);
8226 return NULL;
8229 static __isl_give isl_basic_map *basic_map_identity(__isl_take isl_space *dims)
8231 struct isl_basic_map *bmap;
8232 unsigned nparam;
8233 unsigned dim;
8234 int i;
8236 if (!dims)
8237 return NULL;
8239 nparam = dims->nparam;
8240 dim = dims->n_out;
8241 bmap = isl_basic_map_alloc_space(dims, 0, dim, 0);
8242 if (!bmap)
8243 goto error;
8245 for (i = 0; i < dim; ++i) {
8246 int j = isl_basic_map_alloc_equality(bmap);
8247 if (j < 0)
8248 goto error;
8249 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8250 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8251 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
8253 return isl_basic_map_finalize(bmap);
8254 error:
8255 isl_basic_map_free(bmap);
8256 return NULL;
8259 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *dim)
8261 if (!dim)
8262 return NULL;
8263 if (dim->n_in != dim->n_out)
8264 isl_die(dim->ctx, isl_error_invalid,
8265 "number of input and output dimensions needs to be "
8266 "the same", goto error);
8267 return basic_map_identity(dim);
8268 error:
8269 isl_space_free(dim);
8270 return NULL;
8273 __isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
8275 return isl_map_from_basic_map(isl_basic_map_identity(dim));
8278 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
8280 isl_space *dim = isl_set_get_space(set);
8281 isl_map *id;
8282 id = isl_map_identity(isl_space_map_from_set(dim));
8283 return isl_map_intersect_range(id, set);
8286 /* Construct a basic set with all set dimensions having only non-negative
8287 * values.
8289 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
8290 __isl_take isl_space *space)
8292 int i;
8293 unsigned nparam;
8294 unsigned dim;
8295 struct isl_basic_set *bset;
8297 if (!space)
8298 return NULL;
8299 nparam = space->nparam;
8300 dim = space->n_out;
8301 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
8302 if (!bset)
8303 return NULL;
8304 for (i = 0; i < dim; ++i) {
8305 int k = isl_basic_set_alloc_inequality(bset);
8306 if (k < 0)
8307 goto error;
8308 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
8309 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
8311 return bset;
8312 error:
8313 isl_basic_set_free(bset);
8314 return NULL;
8317 /* Construct the half-space x_pos >= 0.
8319 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *dim,
8320 int pos)
8322 int k;
8323 isl_basic_set *nonneg;
8325 nonneg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8326 k = isl_basic_set_alloc_inequality(nonneg);
8327 if (k < 0)
8328 goto error;
8329 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
8330 isl_int_set_si(nonneg->ineq[k][pos], 1);
8332 return isl_basic_set_finalize(nonneg);
8333 error:
8334 isl_basic_set_free(nonneg);
8335 return NULL;
8338 /* Construct the half-space x_pos <= -1.
8340 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *dim, int pos)
8342 int k;
8343 isl_basic_set *neg;
8345 neg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8346 k = isl_basic_set_alloc_inequality(neg);
8347 if (k < 0)
8348 goto error;
8349 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
8350 isl_int_set_si(neg->ineq[k][0], -1);
8351 isl_int_set_si(neg->ineq[k][pos], -1);
8353 return isl_basic_set_finalize(neg);
8354 error:
8355 isl_basic_set_free(neg);
8356 return NULL;
8359 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
8360 enum isl_dim_type type, unsigned first, unsigned n)
8362 int i;
8363 unsigned offset;
8364 isl_basic_set *nonneg;
8365 isl_basic_set *neg;
8367 if (!set)
8368 return NULL;
8369 if (n == 0)
8370 return set;
8372 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
8374 offset = pos(set->dim, type);
8375 for (i = 0; i < n; ++i) {
8376 nonneg = nonneg_halfspace(isl_set_get_space(set),
8377 offset + first + i);
8378 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
8380 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
8383 return set;
8384 error:
8385 isl_set_free(set);
8386 return NULL;
8389 static isl_stat foreach_orthant(__isl_take isl_set *set, int *signs, int first,
8390 int len,
8391 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8392 void *user)
8394 isl_set *half;
8396 if (!set)
8397 return isl_stat_error;
8398 if (isl_set_plain_is_empty(set)) {
8399 isl_set_free(set);
8400 return isl_stat_ok;
8402 if (first == len)
8403 return fn(set, signs, user);
8405 signs[first] = 1;
8406 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
8407 1 + first));
8408 half = isl_set_intersect(half, isl_set_copy(set));
8409 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
8410 goto error;
8412 signs[first] = -1;
8413 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
8414 1 + first));
8415 half = isl_set_intersect(half, set);
8416 return foreach_orthant(half, signs, first + 1, len, fn, user);
8417 error:
8418 isl_set_free(set);
8419 return isl_stat_error;
8422 /* Call "fn" on the intersections of "set" with each of the orthants
8423 * (except for obviously empty intersections). The orthant is identified
8424 * by the signs array, with each entry having value 1 or -1 according
8425 * to the sign of the corresponding variable.
8427 isl_stat isl_set_foreach_orthant(__isl_keep isl_set *set,
8428 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8429 void *user)
8431 unsigned nparam;
8432 unsigned nvar;
8433 int *signs;
8434 isl_stat r;
8436 if (!set)
8437 return isl_stat_error;
8438 if (isl_set_plain_is_empty(set))
8439 return isl_stat_ok;
8441 nparam = isl_set_dim(set, isl_dim_param);
8442 nvar = isl_set_dim(set, isl_dim_set);
8444 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
8446 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
8447 fn, user);
8449 free(signs);
8451 return r;
8454 isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8456 return isl_map_is_equal(set_to_map(set1), set_to_map(set2));
8459 isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
8460 __isl_keep isl_basic_map *bmap2)
8462 int is_subset;
8463 struct isl_map *map1;
8464 struct isl_map *map2;
8466 if (!bmap1 || !bmap2)
8467 return isl_bool_error;
8469 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
8470 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
8472 is_subset = isl_map_is_subset(map1, map2);
8474 isl_map_free(map1);
8475 isl_map_free(map2);
8477 return is_subset;
8480 isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
8481 __isl_keep isl_basic_set *bset2)
8483 return isl_basic_map_is_subset(bset1, bset2);
8486 isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
8487 __isl_keep isl_basic_map *bmap2)
8489 isl_bool is_subset;
8491 if (!bmap1 || !bmap2)
8492 return isl_bool_error;
8493 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8494 if (is_subset != isl_bool_true)
8495 return is_subset;
8496 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8497 return is_subset;
8500 isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
8501 __isl_keep isl_basic_set *bset2)
8503 return isl_basic_map_is_equal(
8504 bset_to_bmap(bset1), bset_to_bmap(bset2));
8507 isl_bool isl_map_is_empty(__isl_keep isl_map *map)
8509 int i;
8510 int is_empty;
8512 if (!map)
8513 return isl_bool_error;
8514 for (i = 0; i < map->n; ++i) {
8515 is_empty = isl_basic_map_is_empty(map->p[i]);
8516 if (is_empty < 0)
8517 return isl_bool_error;
8518 if (!is_empty)
8519 return isl_bool_false;
8521 return isl_bool_true;
8524 isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
8526 return map ? map->n == 0 : isl_bool_error;
8529 isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
8531 return set ? set->n == 0 : isl_bool_error;
8534 isl_bool isl_set_is_empty(__isl_keep isl_set *set)
8536 return isl_map_is_empty(set_to_map(set));
8539 isl_bool isl_map_has_equal_space(__isl_keep isl_map *map1,
8540 __isl_keep isl_map *map2)
8542 if (!map1 || !map2)
8543 return isl_bool_error;
8545 return isl_space_is_equal(map1->dim, map2->dim);
8548 isl_bool isl_set_has_equal_space(__isl_keep isl_set *set1,
8549 __isl_keep isl_set *set2)
8551 if (!set1 || !set2)
8552 return isl_bool_error;
8554 return isl_space_is_equal(set1->dim, set2->dim);
8557 static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8559 isl_bool is_subset;
8561 if (!map1 || !map2)
8562 return isl_bool_error;
8563 is_subset = isl_map_is_subset(map1, map2);
8564 if (is_subset != isl_bool_true)
8565 return is_subset;
8566 is_subset = isl_map_is_subset(map2, map1);
8567 return is_subset;
8570 /* Is "map1" equal to "map2"?
8572 * First check if they are obviously equal.
8573 * If not, then perform a more detailed analysis.
8575 isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8577 isl_bool equal;
8579 equal = isl_map_plain_is_equal(map1, map2);
8580 if (equal < 0 || equal)
8581 return equal;
8582 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
8585 isl_bool isl_basic_map_is_strict_subset(
8586 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8588 isl_bool is_subset;
8590 if (!bmap1 || !bmap2)
8591 return isl_bool_error;
8592 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8593 if (is_subset != isl_bool_true)
8594 return is_subset;
8595 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8596 if (is_subset == isl_bool_error)
8597 return is_subset;
8598 return !is_subset;
8601 isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
8602 __isl_keep isl_map *map2)
8604 isl_bool is_subset;
8606 if (!map1 || !map2)
8607 return isl_bool_error;
8608 is_subset = isl_map_is_subset(map1, map2);
8609 if (is_subset != isl_bool_true)
8610 return is_subset;
8611 is_subset = isl_map_is_subset(map2, map1);
8612 if (is_subset == isl_bool_error)
8613 return is_subset;
8614 return !is_subset;
8617 isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
8618 __isl_keep isl_set *set2)
8620 return isl_map_is_strict_subset(set_to_map(set1), set_to_map(set2));
8623 /* Is "bmap" obviously equal to the universe with the same space?
8625 * That is, does it not have any constraints?
8627 isl_bool isl_basic_map_plain_is_universe(__isl_keep isl_basic_map *bmap)
8629 if (!bmap)
8630 return isl_bool_error;
8631 return bmap->n_eq == 0 && bmap->n_ineq == 0;
8634 /* Is "bset" obviously equal to the universe with the same space?
8636 isl_bool isl_basic_set_plain_is_universe(__isl_keep isl_basic_set *bset)
8638 return isl_basic_map_plain_is_universe(bset);
8641 /* If "c" does not involve any existentially quantified variables,
8642 * then set *univ to false and abort
8644 static isl_stat involves_divs(__isl_take isl_constraint *c, void *user)
8646 isl_bool *univ = user;
8647 unsigned n;
8649 n = isl_constraint_dim(c, isl_dim_div);
8650 *univ = isl_constraint_involves_dims(c, isl_dim_div, 0, n);
8651 isl_constraint_free(c);
8652 if (*univ < 0 || !*univ)
8653 return isl_stat_error;
8654 return isl_stat_ok;
8657 /* Is "bmap" equal to the universe with the same space?
8659 * First check if it is obviously equal to the universe.
8660 * If not and if there are any constraints not involving
8661 * existentially quantified variables, then it is certainly
8662 * not equal to the universe.
8663 * Otherwise, check if the universe is a subset of "bmap".
8665 isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
8667 isl_bool univ;
8668 isl_basic_map *test;
8670 univ = isl_basic_map_plain_is_universe(bmap);
8671 if (univ < 0 || univ)
8672 return univ;
8673 if (isl_basic_map_dim(bmap, isl_dim_div) == 0)
8674 return isl_bool_false;
8675 univ = isl_bool_true;
8676 if (isl_basic_map_foreach_constraint(bmap, &involves_divs, &univ) < 0 &&
8677 univ)
8678 return isl_bool_error;
8679 if (univ < 0 || !univ)
8680 return univ;
8681 test = isl_basic_map_universe(isl_basic_map_get_space(bmap));
8682 univ = isl_basic_map_is_subset(test, bmap);
8683 isl_basic_map_free(test);
8684 return univ;
8687 /* Is "bset" equal to the universe with the same space?
8689 isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
8691 return isl_basic_map_is_universe(bset);
8694 isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
8696 int i;
8698 if (!map)
8699 return isl_bool_error;
8701 for (i = 0; i < map->n; ++i) {
8702 isl_bool r = isl_basic_map_plain_is_universe(map->p[i]);
8703 if (r < 0 || r)
8704 return r;
8707 return isl_bool_false;
8710 isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
8712 return isl_map_plain_is_universe(set_to_map(set));
8715 isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
8717 struct isl_basic_set *bset = NULL;
8718 struct isl_vec *sample = NULL;
8719 isl_bool empty, non_empty;
8721 if (!bmap)
8722 return isl_bool_error;
8724 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
8725 return isl_bool_true;
8727 if (isl_basic_map_plain_is_universe(bmap))
8728 return isl_bool_false;
8730 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
8731 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
8732 copy = isl_basic_map_remove_redundancies(copy);
8733 empty = isl_basic_map_plain_is_empty(copy);
8734 isl_basic_map_free(copy);
8735 return empty;
8738 non_empty = isl_basic_map_plain_is_non_empty(bmap);
8739 if (non_empty < 0)
8740 return isl_bool_error;
8741 if (non_empty)
8742 return isl_bool_false;
8743 isl_vec_free(bmap->sample);
8744 bmap->sample = NULL;
8745 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
8746 if (!bset)
8747 return isl_bool_error;
8748 sample = isl_basic_set_sample_vec(bset);
8749 if (!sample)
8750 return isl_bool_error;
8751 empty = sample->size == 0;
8752 isl_vec_free(bmap->sample);
8753 bmap->sample = sample;
8754 if (empty)
8755 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
8757 return empty;
8760 isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
8762 if (!bmap)
8763 return isl_bool_error;
8764 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
8767 isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
8769 if (!bset)
8770 return isl_bool_error;
8771 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
8774 /* Is "bmap" known to be non-empty?
8776 * That is, is the cached sample still valid?
8778 isl_bool isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map *bmap)
8780 unsigned total;
8782 if (!bmap)
8783 return isl_bool_error;
8784 if (!bmap->sample)
8785 return isl_bool_false;
8786 total = 1 + isl_basic_map_total_dim(bmap);
8787 if (bmap->sample->size != total)
8788 return isl_bool_false;
8789 return isl_basic_map_contains(bmap, bmap->sample);
8792 isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
8794 return isl_basic_map_is_empty(bset_to_bmap(bset));
8797 __isl_give isl_map *isl_basic_map_union(__isl_take isl_basic_map *bmap1,
8798 __isl_take isl_basic_map *bmap2)
8800 struct isl_map *map;
8801 if (!bmap1 || !bmap2)
8802 goto error;
8804 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
8806 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
8807 if (!map)
8808 goto error;
8809 map = isl_map_add_basic_map(map, bmap1);
8810 map = isl_map_add_basic_map(map, bmap2);
8811 return map;
8812 error:
8813 isl_basic_map_free(bmap1);
8814 isl_basic_map_free(bmap2);
8815 return NULL;
8818 struct isl_set *isl_basic_set_union(
8819 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
8821 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1),
8822 bset_to_bmap(bset2)));
8825 /* Order divs such that any div only depends on previous divs */
8826 __isl_give isl_basic_map *isl_basic_map_order_divs(
8827 __isl_take isl_basic_map *bmap)
8829 int i;
8830 unsigned off;
8832 if (!bmap)
8833 return NULL;
8835 off = isl_space_dim(bmap->dim, isl_dim_all);
8837 for (i = 0; i < bmap->n_div; ++i) {
8838 int pos;
8839 if (isl_int_is_zero(bmap->div[i][0]))
8840 continue;
8841 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
8842 bmap->n_div-i);
8843 if (pos == -1)
8844 continue;
8845 if (pos == 0)
8846 isl_die(isl_basic_map_get_ctx(bmap), isl_error_internal,
8847 "integer division depends on itself",
8848 return isl_basic_map_free(bmap));
8849 isl_basic_map_swap_div(bmap, i, i + pos);
8850 --i;
8852 return bmap;
8855 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
8857 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset)));
8860 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
8862 int i;
8864 if (!map)
8865 return 0;
8867 for (i = 0; i < map->n; ++i) {
8868 map->p[i] = isl_basic_map_order_divs(map->p[i]);
8869 if (!map->p[i])
8870 goto error;
8873 return map;
8874 error:
8875 isl_map_free(map);
8876 return NULL;
8879 /* Sort the local variables of "bset".
8881 __isl_give isl_basic_set *isl_basic_set_sort_divs(
8882 __isl_take isl_basic_set *bset)
8884 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset)));
8887 /* Apply the expansion computed by isl_merge_divs.
8888 * The expansion itself is given by "exp" while the resulting
8889 * list of divs is given by "div".
8891 * Move the integer divisions of "bmap" into the right position
8892 * according to "exp" and then introduce the additional integer
8893 * divisions, adding div constraints.
8894 * The moving should be done first to avoid moving coefficients
8895 * in the definitions of the extra integer divisions.
8897 __isl_give isl_basic_map *isl_basic_map_expand_divs(
8898 __isl_take isl_basic_map *bmap, __isl_take isl_mat *div, int *exp)
8900 int i, j;
8901 int n_div;
8903 bmap = isl_basic_map_cow(bmap);
8904 if (!bmap || !div)
8905 goto error;
8907 if (div->n_row < bmap->n_div)
8908 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
8909 "not an expansion", goto error);
8911 n_div = bmap->n_div;
8912 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
8913 div->n_row - n_div, 0,
8914 2 * (div->n_row - n_div));
8916 for (i = n_div; i < div->n_row; ++i)
8917 if (isl_basic_map_alloc_div(bmap) < 0)
8918 goto error;
8920 for (j = n_div - 1; j >= 0; --j) {
8921 if (exp[j] == j)
8922 break;
8923 isl_basic_map_swap_div(bmap, j, exp[j]);
8925 j = 0;
8926 for (i = 0; i < div->n_row; ++i) {
8927 if (j < n_div && exp[j] == i) {
8928 j++;
8929 } else {
8930 isl_seq_cpy(bmap->div[i], div->row[i], div->n_col);
8931 if (isl_basic_map_div_is_marked_unknown(bmap, i))
8932 continue;
8933 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
8934 goto error;
8938 isl_mat_free(div);
8939 return bmap;
8940 error:
8941 isl_basic_map_free(bmap);
8942 isl_mat_free(div);
8943 return NULL;
8946 /* Apply the expansion computed by isl_merge_divs.
8947 * The expansion itself is given by "exp" while the resulting
8948 * list of divs is given by "div".
8950 __isl_give isl_basic_set *isl_basic_set_expand_divs(
8951 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
8953 return isl_basic_map_expand_divs(bset, div, exp);
8956 /* Look for a div in dst that corresponds to the div "div" in src.
8957 * The divs before "div" in src and dst are assumed to be the same.
8959 * Returns -1 if no corresponding div was found and the position
8960 * of the corresponding div in dst otherwise.
8962 static int find_div(__isl_keep isl_basic_map *dst,
8963 __isl_keep isl_basic_map *src, unsigned div)
8965 int i;
8967 unsigned total = isl_space_dim(src->dim, isl_dim_all);
8969 isl_assert(dst->ctx, div <= dst->n_div, return -1);
8970 for (i = div; i < dst->n_div; ++i)
8971 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
8972 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
8973 dst->n_div - div) == -1)
8974 return i;
8975 return -1;
8978 /* Align the divs of "dst" to those of "src", adding divs from "src"
8979 * if needed. That is, make sure that the first src->n_div divs
8980 * of the result are equal to those of src.
8982 * The result is not finalized as by design it will have redundant
8983 * divs if any divs from "src" were copied.
8985 __isl_give isl_basic_map *isl_basic_map_align_divs(
8986 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
8988 int i;
8989 int known, extended;
8990 unsigned total;
8992 if (!dst || !src)
8993 return isl_basic_map_free(dst);
8995 if (src->n_div == 0)
8996 return dst;
8998 known = isl_basic_map_divs_known(src);
8999 if (known < 0)
9000 return isl_basic_map_free(dst);
9001 if (!known)
9002 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
9003 "some src divs are unknown",
9004 return isl_basic_map_free(dst));
9006 src = isl_basic_map_order_divs(isl_basic_map_copy(src));
9007 if (!src)
9008 return isl_basic_map_free(dst);
9010 extended = 0;
9011 total = isl_space_dim(src->dim, isl_dim_all);
9012 for (i = 0; i < src->n_div; ++i) {
9013 int j = find_div(dst, src, i);
9014 if (j < 0) {
9015 if (!extended) {
9016 int extra = src->n_div - i;
9017 dst = isl_basic_map_cow(dst);
9018 if (!dst)
9019 goto error;
9020 dst = isl_basic_map_extend_space(dst,
9021 isl_space_copy(dst->dim),
9022 extra, 0, 2 * extra);
9023 extended = 1;
9025 j = isl_basic_map_alloc_div(dst);
9026 if (j < 0)
9027 goto error;
9028 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
9029 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
9030 if (isl_basic_map_add_div_constraints(dst, j) < 0)
9031 goto error;
9033 if (j != i)
9034 isl_basic_map_swap_div(dst, i, j);
9036 isl_basic_map_free(src);
9037 return dst;
9038 error:
9039 isl_basic_map_free(src);
9040 isl_basic_map_free(dst);
9041 return NULL;
9044 __isl_give isl_map *isl_map_align_divs_internal(__isl_take isl_map *map)
9046 int i;
9048 if (!map)
9049 return NULL;
9050 if (map->n == 0)
9051 return map;
9052 map = isl_map_compute_divs(map);
9053 map = isl_map_cow(map);
9054 if (!map)
9055 return NULL;
9057 for (i = 1; i < map->n; ++i)
9058 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
9059 for (i = 1; i < map->n; ++i) {
9060 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
9061 if (!map->p[i])
9062 return isl_map_free(map);
9065 map = isl_map_unmark_normalized(map);
9066 return map;
9069 __isl_give isl_map *isl_map_align_divs(__isl_take isl_map *map)
9071 return isl_map_align_divs_internal(map);
9074 struct isl_set *isl_set_align_divs(struct isl_set *set)
9076 return set_from_map(isl_map_align_divs_internal(set_to_map(set)));
9079 /* Align the divs of the basic maps in "map" to those
9080 * of the basic maps in "list", as well as to the other basic maps in "map".
9081 * The elements in "list" are assumed to have known divs.
9083 __isl_give isl_map *isl_map_align_divs_to_basic_map_list(
9084 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
9086 int i, n;
9088 map = isl_map_compute_divs(map);
9089 map = isl_map_cow(map);
9090 if (!map || !list)
9091 return isl_map_free(map);
9092 if (map->n == 0)
9093 return map;
9095 n = isl_basic_map_list_n_basic_map(list);
9096 for (i = 0; i < n; ++i) {
9097 isl_basic_map *bmap;
9099 bmap = isl_basic_map_list_get_basic_map(list, i);
9100 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
9101 isl_basic_map_free(bmap);
9103 if (!map->p[0])
9104 return isl_map_free(map);
9106 return isl_map_align_divs_internal(map);
9109 /* Align the divs of each element of "list" to those of "bmap".
9110 * Both "bmap" and the elements of "list" are assumed to have known divs.
9112 __isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
9113 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
9115 int i, n;
9117 if (!list || !bmap)
9118 return isl_basic_map_list_free(list);
9120 n = isl_basic_map_list_n_basic_map(list);
9121 for (i = 0; i < n; ++i) {
9122 isl_basic_map *bmap_i;
9124 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9125 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
9126 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
9129 return list;
9132 static __isl_give isl_set *set_apply( __isl_take isl_set *set,
9133 __isl_take isl_map *map)
9135 isl_bool ok;
9137 ok = isl_map_compatible_domain(map, set);
9138 if (ok < 0)
9139 goto error;
9140 if (!ok)
9141 isl_die(isl_set_get_ctx(set), isl_error_invalid,
9142 "incompatible spaces", goto error);
9143 map = isl_map_intersect_domain(map, set);
9144 set = isl_map_range(map);
9145 return set;
9146 error:
9147 isl_set_free(set);
9148 isl_map_free(map);
9149 return NULL;
9152 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
9153 __isl_take isl_map *map)
9155 return isl_map_align_params_map_map_and(set, map, &set_apply);
9158 /* There is no need to cow as removing empty parts doesn't change
9159 * the meaning of the set.
9161 __isl_give isl_map *isl_map_remove_empty_parts(__isl_take isl_map *map)
9163 int i;
9165 if (!map)
9166 return NULL;
9168 for (i = map->n - 1; i >= 0; --i)
9169 map = remove_if_empty(map, i);
9171 return map;
9174 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
9176 return set_from_map(isl_map_remove_empty_parts(set_to_map(set)));
9179 /* Create a binary relation that maps the shared initial "pos" dimensions
9180 * of "bset1" and "bset2" to the remaining dimensions of "bset1" and "bset2".
9182 static __isl_give isl_basic_map *join_initial(__isl_keep isl_basic_set *bset1,
9183 __isl_keep isl_basic_set *bset2, int pos)
9185 isl_basic_map *bmap1;
9186 isl_basic_map *bmap2;
9188 bmap1 = isl_basic_map_from_range(isl_basic_set_copy(bset1));
9189 bmap2 = isl_basic_map_from_range(isl_basic_set_copy(bset2));
9190 bmap1 = isl_basic_map_move_dims(bmap1, isl_dim_in, 0,
9191 isl_dim_out, 0, pos);
9192 bmap2 = isl_basic_map_move_dims(bmap2, isl_dim_in, 0,
9193 isl_dim_out, 0, pos);
9194 return isl_basic_map_range_product(bmap1, bmap2);
9197 /* Given two basic sets bset1 and bset2, compute the maximal difference
9198 * between the values of dimension pos in bset1 and those in bset2
9199 * for any common value of the parameters and dimensions preceding pos.
9201 static enum isl_lp_result basic_set_maximal_difference_at(
9202 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
9203 int pos, isl_int *opt)
9205 isl_basic_map *bmap1;
9206 struct isl_ctx *ctx;
9207 struct isl_vec *obj;
9208 unsigned total;
9209 unsigned nparam;
9210 unsigned dim1;
9211 enum isl_lp_result res;
9213 if (!bset1 || !bset2)
9214 return isl_lp_error;
9216 nparam = isl_basic_set_n_param(bset1);
9217 dim1 = isl_basic_set_n_dim(bset1);
9219 bmap1 = join_initial(bset1, bset2, pos);
9220 if (!bmap1)
9221 return isl_lp_error;
9223 total = isl_basic_map_total_dim(bmap1);
9224 ctx = bmap1->ctx;
9225 obj = isl_vec_alloc(ctx, 1 + total);
9226 if (!obj)
9227 goto error;
9228 isl_seq_clr(obj->block.data, 1 + total);
9229 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
9230 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
9231 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
9232 opt, NULL, NULL);
9233 isl_basic_map_free(bmap1);
9234 isl_vec_free(obj);
9235 return res;
9236 error:
9237 isl_basic_map_free(bmap1);
9238 return isl_lp_error;
9241 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
9242 * for any common value of the parameters and dimensions preceding pos
9243 * in both basic sets, the values of dimension pos in bset1 are
9244 * smaller or larger than those in bset2.
9246 * Returns
9247 * 1 if bset1 follows bset2
9248 * -1 if bset1 precedes bset2
9249 * 0 if bset1 and bset2 are incomparable
9250 * -2 if some error occurred.
9252 int isl_basic_set_compare_at(struct isl_basic_set *bset1,
9253 struct isl_basic_set *bset2, int pos)
9255 isl_int opt;
9256 enum isl_lp_result res;
9257 int cmp;
9259 isl_int_init(opt);
9261 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
9263 if (res == isl_lp_empty)
9264 cmp = 0;
9265 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
9266 res == isl_lp_unbounded)
9267 cmp = 1;
9268 else if (res == isl_lp_ok && isl_int_is_neg(opt))
9269 cmp = -1;
9270 else
9271 cmp = -2;
9273 isl_int_clear(opt);
9274 return cmp;
9277 /* Given two basic sets bset1 and bset2, check whether
9278 * for any common value of the parameters and dimensions preceding pos
9279 * there is a value of dimension pos in bset1 that is larger
9280 * than a value of the same dimension in bset2.
9282 * Return
9283 * 1 if there exists such a pair
9284 * 0 if there is no such pair, but there is a pair of equal values
9285 * -1 otherwise
9286 * -2 if some error occurred.
9288 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
9289 __isl_keep isl_basic_set *bset2, int pos)
9291 isl_bool empty;
9292 isl_basic_map *bmap;
9293 unsigned dim1;
9295 dim1 = isl_basic_set_dim(bset1, isl_dim_set);
9296 bmap = join_initial(bset1, bset2, pos);
9297 bmap = isl_basic_map_order_ge(bmap, isl_dim_out, 0,
9298 isl_dim_out, dim1 - pos);
9299 empty = isl_basic_map_is_empty(bmap);
9300 if (empty < 0)
9301 goto error;
9302 if (empty) {
9303 isl_basic_map_free(bmap);
9304 return -1;
9306 bmap = isl_basic_map_order_gt(bmap, isl_dim_out, 0,
9307 isl_dim_out, dim1 - pos);
9308 empty = isl_basic_map_is_empty(bmap);
9309 if (empty < 0)
9310 goto error;
9311 isl_basic_map_free(bmap);
9312 if (empty)
9313 return 0;
9314 return 1;
9315 error:
9316 isl_basic_map_free(bmap);
9317 return -2;
9320 /* Given two sets set1 and set2, check whether
9321 * for any common value of the parameters and dimensions preceding pos
9322 * there is a value of dimension pos in set1 that is larger
9323 * than a value of the same dimension in set2.
9325 * Return
9326 * 1 if there exists such a pair
9327 * 0 if there is no such pair, but there is a pair of equal values
9328 * -1 otherwise
9329 * -2 if some error occurred.
9331 int isl_set_follows_at(__isl_keep isl_set *set1,
9332 __isl_keep isl_set *set2, int pos)
9334 int i, j;
9335 int follows = -1;
9337 if (!set1 || !set2)
9338 return -2;
9340 for (i = 0; i < set1->n; ++i)
9341 for (j = 0; j < set2->n; ++j) {
9342 int f;
9343 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
9344 if (f == 1 || f == -2)
9345 return f;
9346 if (f > follows)
9347 follows = f;
9350 return follows;
9353 static isl_bool isl_basic_map_plain_has_fixed_var(
9354 __isl_keep isl_basic_map *bmap, unsigned pos, isl_int *val)
9356 int i;
9357 int d;
9358 unsigned total;
9360 if (!bmap)
9361 return isl_bool_error;
9362 total = isl_basic_map_total_dim(bmap);
9363 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
9364 for (; d+1 > pos; --d)
9365 if (!isl_int_is_zero(bmap->eq[i][1+d]))
9366 break;
9367 if (d != pos)
9368 continue;
9369 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
9370 return isl_bool_false;
9371 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
9372 return isl_bool_false;
9373 if (!isl_int_is_one(bmap->eq[i][1+d]))
9374 return isl_bool_false;
9375 if (val)
9376 isl_int_neg(*val, bmap->eq[i][0]);
9377 return isl_bool_true;
9379 return isl_bool_false;
9382 static isl_bool isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
9383 unsigned pos, isl_int *val)
9385 int i;
9386 isl_int v;
9387 isl_int tmp;
9388 isl_bool fixed;
9390 if (!map)
9391 return isl_bool_error;
9392 if (map->n == 0)
9393 return isl_bool_false;
9394 if (map->n == 1)
9395 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
9396 isl_int_init(v);
9397 isl_int_init(tmp);
9398 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
9399 for (i = 1; fixed == isl_bool_true && i < map->n; ++i) {
9400 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
9401 if (fixed == isl_bool_true && isl_int_ne(tmp, v))
9402 fixed = isl_bool_false;
9404 if (val)
9405 isl_int_set(*val, v);
9406 isl_int_clear(tmp);
9407 isl_int_clear(v);
9408 return fixed;
9411 static isl_bool isl_basic_set_plain_has_fixed_var(
9412 __isl_keep isl_basic_set *bset, unsigned pos, isl_int *val)
9414 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset),
9415 pos, val);
9418 isl_bool isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
9419 enum isl_dim_type type, unsigned pos, isl_int *val)
9421 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
9422 return isl_bool_error;
9423 return isl_basic_map_plain_has_fixed_var(bmap,
9424 isl_basic_map_offset(bmap, type) - 1 + pos, val);
9427 /* If "bmap" obviously lies on a hyperplane where the given dimension
9428 * has a fixed value, then return that value.
9429 * Otherwise return NaN.
9431 __isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
9432 __isl_keep isl_basic_map *bmap,
9433 enum isl_dim_type type, unsigned pos)
9435 isl_ctx *ctx;
9436 isl_val *v;
9437 isl_bool fixed;
9439 if (!bmap)
9440 return NULL;
9441 ctx = isl_basic_map_get_ctx(bmap);
9442 v = isl_val_alloc(ctx);
9443 if (!v)
9444 return NULL;
9445 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
9446 if (fixed < 0)
9447 return isl_val_free(v);
9448 if (fixed) {
9449 isl_int_set_si(v->d, 1);
9450 return v;
9452 isl_val_free(v);
9453 return isl_val_nan(ctx);
9456 isl_bool isl_map_plain_is_fixed(__isl_keep isl_map *map,
9457 enum isl_dim_type type, unsigned pos, isl_int *val)
9459 if (pos >= isl_map_dim(map, type))
9460 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9461 "position out of bounds", return isl_bool_error);
9462 return isl_map_plain_has_fixed_var(map,
9463 map_offset(map, type) - 1 + pos, val);
9466 /* If "map" obviously lies on a hyperplane where the given dimension
9467 * has a fixed value, then return that value.
9468 * Otherwise return NaN.
9470 __isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
9471 enum isl_dim_type type, unsigned pos)
9473 isl_ctx *ctx;
9474 isl_val *v;
9475 isl_bool fixed;
9477 if (!map)
9478 return NULL;
9479 ctx = isl_map_get_ctx(map);
9480 v = isl_val_alloc(ctx);
9481 if (!v)
9482 return NULL;
9483 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
9484 if (fixed < 0)
9485 return isl_val_free(v);
9486 if (fixed) {
9487 isl_int_set_si(v->d, 1);
9488 return v;
9490 isl_val_free(v);
9491 return isl_val_nan(ctx);
9494 /* If "set" obviously lies on a hyperplane where the given dimension
9495 * has a fixed value, then return that value.
9496 * Otherwise return NaN.
9498 __isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
9499 enum isl_dim_type type, unsigned pos)
9501 return isl_map_plain_get_val_if_fixed(set, type, pos);
9504 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9505 * then return this fixed value in *val.
9507 isl_bool isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
9508 unsigned dim, isl_int *val)
9510 return isl_basic_set_plain_has_fixed_var(bset,
9511 isl_basic_set_n_param(bset) + dim, val);
9514 /* Return -1 if the constraint "c1" should be sorted before "c2"
9515 * and 1 if it should be sorted after "c2".
9516 * Return 0 if the two constraints are the same (up to the constant term).
9518 * In particular, if a constraint involves later variables than another
9519 * then it is sorted after this other constraint.
9520 * uset_gist depends on constraints without existentially quantified
9521 * variables sorting first.
9523 * For constraints that have the same latest variable, those
9524 * with the same coefficient for this latest variable (first in absolute value
9525 * and then in actual value) are grouped together.
9526 * This is useful for detecting pairs of constraints that can
9527 * be chained in their printed representation.
9529 * Finally, within a group, constraints are sorted according to
9530 * their coefficients (excluding the constant term).
9532 static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
9534 isl_int **c1 = (isl_int **) p1;
9535 isl_int **c2 = (isl_int **) p2;
9536 int l1, l2;
9537 unsigned size = *(unsigned *) arg;
9538 int cmp;
9540 l1 = isl_seq_last_non_zero(*c1 + 1, size);
9541 l2 = isl_seq_last_non_zero(*c2 + 1, size);
9543 if (l1 != l2)
9544 return l1 - l2;
9546 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9547 if (cmp != 0)
9548 return cmp;
9549 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9550 if (cmp != 0)
9551 return -cmp;
9553 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
9556 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9557 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9558 * and 0 if the two constraints are the same (up to the constant term).
9560 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
9561 isl_int *c1, isl_int *c2)
9563 unsigned total;
9565 if (!bmap)
9566 return -2;
9567 total = isl_basic_map_total_dim(bmap);
9568 return sort_constraint_cmp(&c1, &c2, &total);
9571 __isl_give isl_basic_map *isl_basic_map_sort_constraints(
9572 __isl_take isl_basic_map *bmap)
9574 unsigned total;
9576 if (!bmap)
9577 return NULL;
9578 if (bmap->n_ineq == 0)
9579 return bmap;
9580 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9581 return bmap;
9582 total = isl_basic_map_total_dim(bmap);
9583 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
9584 &sort_constraint_cmp, &total) < 0)
9585 return isl_basic_map_free(bmap);
9586 return bmap;
9589 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
9590 __isl_take isl_basic_set *bset)
9592 isl_basic_map *bmap = bset_to_bmap(bset);
9593 return bset_from_bmap(isl_basic_map_sort_constraints(bmap));
9596 __isl_give isl_basic_map *isl_basic_map_normalize(
9597 __isl_take isl_basic_map *bmap)
9599 if (!bmap)
9600 return NULL;
9601 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9602 return bmap;
9603 bmap = isl_basic_map_remove_redundancies(bmap);
9604 bmap = isl_basic_map_sort_constraints(bmap);
9605 if (bmap)
9606 ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED);
9607 return bmap;
9609 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map *bmap1,
9610 __isl_keep isl_basic_map *bmap2)
9612 int i, cmp;
9613 unsigned total;
9614 isl_space *space1, *space2;
9616 if (!bmap1 || !bmap2)
9617 return -1;
9619 if (bmap1 == bmap2)
9620 return 0;
9621 space1 = isl_basic_map_peek_space(bmap1);
9622 space2 = isl_basic_map_peek_space(bmap2);
9623 cmp = isl_space_cmp(space1, space2);
9624 if (cmp)
9625 return cmp;
9626 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
9627 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
9628 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
9629 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
9630 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9631 return 0;
9632 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
9633 return 1;
9634 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9635 return -1;
9636 if (bmap1->n_eq != bmap2->n_eq)
9637 return bmap1->n_eq - bmap2->n_eq;
9638 if (bmap1->n_ineq != bmap2->n_ineq)
9639 return bmap1->n_ineq - bmap2->n_ineq;
9640 if (bmap1->n_div != bmap2->n_div)
9641 return bmap1->n_div - bmap2->n_div;
9642 total = isl_basic_map_total_dim(bmap1);
9643 for (i = 0; i < bmap1->n_eq; ++i) {
9644 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
9645 if (cmp)
9646 return cmp;
9648 for (i = 0; i < bmap1->n_ineq; ++i) {
9649 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
9650 if (cmp)
9651 return cmp;
9653 for (i = 0; i < bmap1->n_div; ++i) {
9654 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
9655 if (cmp)
9656 return cmp;
9658 return 0;
9661 int isl_basic_set_plain_cmp(__isl_keep isl_basic_set *bset1,
9662 __isl_keep isl_basic_set *bset2)
9664 return isl_basic_map_plain_cmp(bset1, bset2);
9667 int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
9669 int i, cmp;
9671 if (set1 == set2)
9672 return 0;
9673 if (set1->n != set2->n)
9674 return set1->n - set2->n;
9676 for (i = 0; i < set1->n; ++i) {
9677 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
9678 if (cmp)
9679 return cmp;
9682 return 0;
9685 isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
9686 __isl_keep isl_basic_map *bmap2)
9688 if (!bmap1 || !bmap2)
9689 return isl_bool_error;
9690 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
9693 isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
9694 __isl_keep isl_basic_set *bset2)
9696 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1),
9697 bset_to_bmap(bset2));
9700 static int qsort_bmap_cmp(const void *p1, const void *p2)
9702 isl_basic_map *bmap1 = *(isl_basic_map **) p1;
9703 isl_basic_map *bmap2 = *(isl_basic_map **) p2;
9705 return isl_basic_map_plain_cmp(bmap1, bmap2);
9708 /* Sort the basic maps of "map" and remove duplicate basic maps.
9710 * While removing basic maps, we make sure that the basic maps remain
9711 * sorted because isl_map_normalize expects the basic maps of the result
9712 * to be sorted.
9714 static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
9716 int i, j;
9718 map = isl_map_remove_empty_parts(map);
9719 if (!map)
9720 return NULL;
9721 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
9722 for (i = map->n - 1; i >= 1; --i) {
9723 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
9724 continue;
9725 isl_basic_map_free(map->p[i-1]);
9726 for (j = i; j < map->n; ++j)
9727 map->p[j - 1] = map->p[j];
9728 map->n--;
9731 return map;
9734 /* Remove obvious duplicates among the basic maps of "map".
9736 * Unlike isl_map_normalize, this function does not remove redundant
9737 * constraints and only removes duplicates that have exactly the same
9738 * constraints in the input. It does sort the constraints and
9739 * the basic maps to ease the detection of duplicates.
9741 * If "map" has already been normalized or if the basic maps are
9742 * disjoint, then there can be no duplicates.
9744 __isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
9746 int i;
9747 isl_basic_map *bmap;
9749 if (!map)
9750 return NULL;
9751 if (map->n <= 1)
9752 return map;
9753 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
9754 return map;
9755 for (i = 0; i < map->n; ++i) {
9756 bmap = isl_basic_map_copy(map->p[i]);
9757 bmap = isl_basic_map_sort_constraints(bmap);
9758 if (!bmap)
9759 return isl_map_free(map);
9760 isl_basic_map_free(map->p[i]);
9761 map->p[i] = bmap;
9764 map = sort_and_remove_duplicates(map);
9765 return map;
9768 /* We normalize in place, but if anything goes wrong we need
9769 * to return NULL, so we need to make sure we don't change the
9770 * meaning of any possible other copies of map.
9772 __isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
9774 int i;
9775 struct isl_basic_map *bmap;
9777 if (!map)
9778 return NULL;
9779 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
9780 return map;
9781 for (i = 0; i < map->n; ++i) {
9782 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
9783 if (!bmap)
9784 goto error;
9785 isl_basic_map_free(map->p[i]);
9786 map->p[i] = bmap;
9789 map = sort_and_remove_duplicates(map);
9790 if (map)
9791 ISL_F_SET(map, ISL_MAP_NORMALIZED);
9792 return map;
9793 error:
9794 isl_map_free(map);
9795 return NULL;
9798 struct isl_set *isl_set_normalize(struct isl_set *set)
9800 return set_from_map(isl_map_normalize(set_to_map(set)));
9803 isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
9804 __isl_keep isl_map *map2)
9806 int i;
9807 isl_bool equal;
9809 if (!map1 || !map2)
9810 return isl_bool_error;
9812 if (map1 == map2)
9813 return isl_bool_true;
9814 if (!isl_space_is_equal(map1->dim, map2->dim))
9815 return isl_bool_false;
9817 map1 = isl_map_copy(map1);
9818 map2 = isl_map_copy(map2);
9819 map1 = isl_map_normalize(map1);
9820 map2 = isl_map_normalize(map2);
9821 if (!map1 || !map2)
9822 goto error;
9823 equal = map1->n == map2->n;
9824 for (i = 0; equal && i < map1->n; ++i) {
9825 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
9826 if (equal < 0)
9827 goto error;
9829 isl_map_free(map1);
9830 isl_map_free(map2);
9831 return equal;
9832 error:
9833 isl_map_free(map1);
9834 isl_map_free(map2);
9835 return isl_bool_error;
9838 isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
9839 __isl_keep isl_set *set2)
9841 return isl_map_plain_is_equal(set_to_map(set1), set_to_map(set2));
9844 /* Return the basic maps in "map" as a list.
9846 __isl_give isl_basic_map_list *isl_map_get_basic_map_list(
9847 __isl_keep isl_map *map)
9849 int i;
9850 isl_ctx *ctx;
9851 isl_basic_map_list *list;
9853 if (!map)
9854 return NULL;
9855 ctx = isl_map_get_ctx(map);
9856 list = isl_basic_map_list_alloc(ctx, map->n);
9858 for (i = 0; i < map->n; ++i) {
9859 isl_basic_map *bmap;
9861 bmap = isl_basic_map_copy(map->p[i]);
9862 list = isl_basic_map_list_add(list, bmap);
9865 return list;
9868 /* Return the intersection of the elements in the non-empty list "list".
9869 * All elements are assumed to live in the same space.
9871 __isl_give isl_basic_map *isl_basic_map_list_intersect(
9872 __isl_take isl_basic_map_list *list)
9874 int i, n;
9875 isl_basic_map *bmap;
9877 if (!list)
9878 return NULL;
9879 n = isl_basic_map_list_n_basic_map(list);
9880 if (n < 1)
9881 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
9882 "expecting non-empty list", goto error);
9884 bmap = isl_basic_map_list_get_basic_map(list, 0);
9885 for (i = 1; i < n; ++i) {
9886 isl_basic_map *bmap_i;
9888 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9889 bmap = isl_basic_map_intersect(bmap, bmap_i);
9892 isl_basic_map_list_free(list);
9893 return bmap;
9894 error:
9895 isl_basic_map_list_free(list);
9896 return NULL;
9899 /* Return the intersection of the elements in the non-empty list "list".
9900 * All elements are assumed to live in the same space.
9902 __isl_give isl_basic_set *isl_basic_set_list_intersect(
9903 __isl_take isl_basic_set_list *list)
9905 return isl_basic_map_list_intersect(list);
9908 /* Return the union of the elements of "list".
9909 * The list is required to have at least one element.
9911 __isl_give isl_set *isl_basic_set_list_union(
9912 __isl_take isl_basic_set_list *list)
9914 int i, n;
9915 isl_space *space;
9916 isl_basic_set *bset;
9917 isl_set *set;
9919 if (!list)
9920 return NULL;
9921 n = isl_basic_set_list_n_basic_set(list);
9922 if (n < 1)
9923 isl_die(isl_basic_set_list_get_ctx(list), isl_error_invalid,
9924 "expecting non-empty list", goto error);
9926 bset = isl_basic_set_list_get_basic_set(list, 0);
9927 space = isl_basic_set_get_space(bset);
9928 isl_basic_set_free(bset);
9930 set = isl_set_alloc_space(space, n, 0);
9931 for (i = 0; i < n; ++i) {
9932 bset = isl_basic_set_list_get_basic_set(list, i);
9933 set = isl_set_add_basic_set(set, bset);
9936 isl_basic_set_list_free(list);
9937 return set;
9938 error:
9939 isl_basic_set_list_free(list);
9940 return NULL;
9943 /* Return the union of the elements in the non-empty list "list".
9944 * All elements are assumed to live in the same space.
9946 __isl_give isl_set *isl_set_list_union(__isl_take isl_set_list *list)
9948 int i, n;
9949 isl_set *set;
9951 if (!list)
9952 return NULL;
9953 n = isl_set_list_n_set(list);
9954 if (n < 1)
9955 isl_die(isl_set_list_get_ctx(list), isl_error_invalid,
9956 "expecting non-empty list", goto error);
9958 set = isl_set_list_get_set(list, 0);
9959 for (i = 1; i < n; ++i) {
9960 isl_set *set_i;
9962 set_i = isl_set_list_get_set(list, i);
9963 set = isl_set_union(set, set_i);
9966 isl_set_list_free(list);
9967 return set;
9968 error:
9969 isl_set_list_free(list);
9970 return NULL;
9973 __isl_give isl_basic_map *isl_basic_map_product(
9974 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9976 isl_space *dim_result = NULL;
9977 struct isl_basic_map *bmap;
9978 unsigned in1, in2, out1, out2, nparam, total, pos;
9979 struct isl_dim_map *dim_map1, *dim_map2;
9981 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
9982 goto error;
9983 dim_result = isl_space_product(isl_space_copy(bmap1->dim),
9984 isl_space_copy(bmap2->dim));
9986 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9987 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9988 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9989 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9990 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9992 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
9993 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9994 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9995 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9996 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9997 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9998 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9999 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
10000 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
10001 isl_dim_map_div(dim_map1, bmap1, pos += out2);
10002 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10004 bmap = isl_basic_map_alloc_space(dim_result,
10005 bmap1->n_div + bmap2->n_div,
10006 bmap1->n_eq + bmap2->n_eq,
10007 bmap1->n_ineq + bmap2->n_ineq);
10008 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10009 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10010 bmap = isl_basic_map_simplify(bmap);
10011 return isl_basic_map_finalize(bmap);
10012 error:
10013 isl_basic_map_free(bmap1);
10014 isl_basic_map_free(bmap2);
10015 return NULL;
10018 __isl_give isl_basic_map *isl_basic_map_flat_product(
10019 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10021 isl_basic_map *prod;
10023 prod = isl_basic_map_product(bmap1, bmap2);
10024 prod = isl_basic_map_flatten(prod);
10025 return prod;
10028 __isl_give isl_basic_set *isl_basic_set_flat_product(
10029 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
10031 return isl_basic_map_flat_range_product(bset1, bset2);
10034 __isl_give isl_basic_map *isl_basic_map_domain_product(
10035 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10037 isl_space *space_result = NULL;
10038 isl_basic_map *bmap;
10039 unsigned in1, in2, out, nparam, total, pos;
10040 struct isl_dim_map *dim_map1, *dim_map2;
10042 if (!bmap1 || !bmap2)
10043 goto error;
10045 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
10046 isl_space_copy(bmap2->dim));
10048 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
10049 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
10050 out = isl_basic_map_dim(bmap1, isl_dim_out);
10051 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10053 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
10054 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10055 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10056 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10057 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10058 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10059 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
10060 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
10061 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
10062 isl_dim_map_div(dim_map1, bmap1, pos += out);
10063 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10065 bmap = isl_basic_map_alloc_space(space_result,
10066 bmap1->n_div + bmap2->n_div,
10067 bmap1->n_eq + bmap2->n_eq,
10068 bmap1->n_ineq + bmap2->n_ineq);
10069 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10070 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10071 bmap = isl_basic_map_simplify(bmap);
10072 return isl_basic_map_finalize(bmap);
10073 error:
10074 isl_basic_map_free(bmap1);
10075 isl_basic_map_free(bmap2);
10076 return NULL;
10079 __isl_give isl_basic_map *isl_basic_map_range_product(
10080 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10082 isl_bool rational;
10083 isl_space *dim_result = NULL;
10084 isl_basic_map *bmap;
10085 unsigned in, out1, out2, nparam, total, pos;
10086 struct isl_dim_map *dim_map1, *dim_map2;
10088 rational = isl_basic_map_is_rational(bmap1);
10089 if (rational >= 0 && rational)
10090 rational = isl_basic_map_is_rational(bmap2);
10091 if (!bmap1 || !bmap2 || rational < 0)
10092 goto error;
10094 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
10095 goto error;
10097 dim_result = isl_space_range_product(isl_space_copy(bmap1->dim),
10098 isl_space_copy(bmap2->dim));
10100 in = isl_basic_map_dim(bmap1, isl_dim_in);
10101 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
10102 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
10103 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10105 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
10106 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10107 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10108 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10109 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10110 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10111 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
10112 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
10113 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
10114 isl_dim_map_div(dim_map1, bmap1, pos += out2);
10115 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10117 bmap = isl_basic_map_alloc_space(dim_result,
10118 bmap1->n_div + bmap2->n_div,
10119 bmap1->n_eq + bmap2->n_eq,
10120 bmap1->n_ineq + bmap2->n_ineq);
10121 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10122 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10123 if (rational)
10124 bmap = isl_basic_map_set_rational(bmap);
10125 bmap = isl_basic_map_simplify(bmap);
10126 return isl_basic_map_finalize(bmap);
10127 error:
10128 isl_basic_map_free(bmap1);
10129 isl_basic_map_free(bmap2);
10130 return NULL;
10133 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
10134 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10136 isl_basic_map *prod;
10138 prod = isl_basic_map_range_product(bmap1, bmap2);
10139 prod = isl_basic_map_flatten_range(prod);
10140 return prod;
10143 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
10144 * and collect the results.
10145 * The result live in the space obtained by calling "space_product"
10146 * on the spaces of "map1" and "map2".
10147 * If "remove_duplicates" is set then the result may contain duplicates
10148 * (even if the inputs do not) and so we try and remove the obvious
10149 * duplicates.
10151 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
10152 __isl_take isl_map *map2,
10153 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
10154 __isl_take isl_space *right),
10155 __isl_give isl_basic_map *(*basic_map_product)(
10156 __isl_take isl_basic_map *left,
10157 __isl_take isl_basic_map *right),
10158 int remove_duplicates)
10160 unsigned flags = 0;
10161 struct isl_map *result;
10162 int i, j;
10163 isl_bool m;
10165 m = isl_map_has_equal_params(map1, map2);
10166 if (m < 0)
10167 goto error;
10168 if (!m)
10169 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
10170 "parameters don't match", goto error);
10172 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
10173 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
10174 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
10176 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
10177 isl_space_copy(map2->dim)),
10178 map1->n * map2->n, flags);
10179 if (!result)
10180 goto error;
10181 for (i = 0; i < map1->n; ++i)
10182 for (j = 0; j < map2->n; ++j) {
10183 struct isl_basic_map *part;
10184 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
10185 isl_basic_map_copy(map2->p[j]));
10186 if (isl_basic_map_is_empty(part))
10187 isl_basic_map_free(part);
10188 else
10189 result = isl_map_add_basic_map(result, part);
10190 if (!result)
10191 goto error;
10193 if (remove_duplicates)
10194 result = isl_map_remove_obvious_duplicates(result);
10195 isl_map_free(map1);
10196 isl_map_free(map2);
10197 return result;
10198 error:
10199 isl_map_free(map1);
10200 isl_map_free(map2);
10201 return NULL;
10204 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
10206 static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
10207 __isl_take isl_map *map2)
10209 return map_product(map1, map2, &isl_space_product,
10210 &isl_basic_map_product, 0);
10213 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
10214 __isl_take isl_map *map2)
10216 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
10219 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
10221 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
10222 __isl_take isl_map *map2)
10224 isl_map *prod;
10226 prod = isl_map_product(map1, map2);
10227 prod = isl_map_flatten(prod);
10228 return prod;
10231 /* Given two set A and B, construct its Cartesian product A x B.
10233 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
10235 return isl_map_range_product(set1, set2);
10238 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
10239 __isl_take isl_set *set2)
10241 return isl_map_flat_range_product(set1, set2);
10244 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10246 static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
10247 __isl_take isl_map *map2)
10249 return map_product(map1, map2, &isl_space_domain_product,
10250 &isl_basic_map_domain_product, 1);
10253 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10255 static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
10256 __isl_take isl_map *map2)
10258 return map_product(map1, map2, &isl_space_range_product,
10259 &isl_basic_map_range_product, 1);
10262 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
10263 __isl_take isl_map *map2)
10265 return isl_map_align_params_map_map_and(map1, map2,
10266 &map_domain_product_aligned);
10269 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
10270 __isl_take isl_map *map2)
10272 return isl_map_align_params_map_map_and(map1, map2,
10273 &map_range_product_aligned);
10276 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10278 __isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
10280 isl_space *space;
10281 int total1, keep1, total2, keep2;
10283 if (!map)
10284 return NULL;
10285 if (!isl_space_domain_is_wrapping(map->dim) ||
10286 !isl_space_range_is_wrapping(map->dim))
10287 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10288 "not a product", return isl_map_free(map));
10290 space = isl_map_get_space(map);
10291 total1 = isl_space_dim(space, isl_dim_in);
10292 total2 = isl_space_dim(space, isl_dim_out);
10293 space = isl_space_factor_domain(space);
10294 keep1 = isl_space_dim(space, isl_dim_in);
10295 keep2 = isl_space_dim(space, isl_dim_out);
10296 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
10297 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
10298 map = isl_map_reset_space(map, space);
10300 return map;
10303 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10305 __isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
10307 isl_space *space;
10308 int total1, keep1, total2, keep2;
10310 if (!map)
10311 return NULL;
10312 if (!isl_space_domain_is_wrapping(map->dim) ||
10313 !isl_space_range_is_wrapping(map->dim))
10314 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10315 "not a product", return isl_map_free(map));
10317 space = isl_map_get_space(map);
10318 total1 = isl_space_dim(space, isl_dim_in);
10319 total2 = isl_space_dim(space, isl_dim_out);
10320 space = isl_space_factor_range(space);
10321 keep1 = isl_space_dim(space, isl_dim_in);
10322 keep2 = isl_space_dim(space, isl_dim_out);
10323 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
10324 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
10325 map = isl_map_reset_space(map, space);
10327 return map;
10330 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10332 __isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
10334 isl_space *space;
10335 int total, keep;
10337 if (!map)
10338 return NULL;
10339 if (!isl_space_domain_is_wrapping(map->dim))
10340 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10341 "domain is not a product", return isl_map_free(map));
10343 space = isl_map_get_space(map);
10344 total = isl_space_dim(space, isl_dim_in);
10345 space = isl_space_domain_factor_domain(space);
10346 keep = isl_space_dim(space, isl_dim_in);
10347 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
10348 map = isl_map_reset_space(map, space);
10350 return map;
10353 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10355 __isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
10357 isl_space *space;
10358 int total, keep;
10360 if (!map)
10361 return NULL;
10362 if (!isl_space_domain_is_wrapping(map->dim))
10363 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10364 "domain is not a product", return isl_map_free(map));
10366 space = isl_map_get_space(map);
10367 total = isl_space_dim(space, isl_dim_in);
10368 space = isl_space_domain_factor_range(space);
10369 keep = isl_space_dim(space, isl_dim_in);
10370 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
10371 map = isl_map_reset_space(map, space);
10373 return map;
10376 /* Given a map A -> [B -> C], extract the map A -> B.
10378 __isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
10380 isl_space *space;
10381 int total, keep;
10383 if (!map)
10384 return NULL;
10385 if (!isl_space_range_is_wrapping(map->dim))
10386 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10387 "range is not a product", return isl_map_free(map));
10389 space = isl_map_get_space(map);
10390 total = isl_space_dim(space, isl_dim_out);
10391 space = isl_space_range_factor_domain(space);
10392 keep = isl_space_dim(space, isl_dim_out);
10393 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
10394 map = isl_map_reset_space(map, space);
10396 return map;
10399 /* Given a map A -> [B -> C], extract the map A -> C.
10401 __isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
10403 isl_space *space;
10404 int total, keep;
10406 if (!map)
10407 return NULL;
10408 if (!isl_space_range_is_wrapping(map->dim))
10409 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10410 "range is not a product", return isl_map_free(map));
10412 space = isl_map_get_space(map);
10413 total = isl_space_dim(space, isl_dim_out);
10414 space = isl_space_range_factor_range(space);
10415 keep = isl_space_dim(space, isl_dim_out);
10416 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
10417 map = isl_map_reset_space(map, space);
10419 return map;
10422 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10424 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
10425 __isl_take isl_map *map2)
10427 isl_map *prod;
10429 prod = isl_map_domain_product(map1, map2);
10430 prod = isl_map_flatten_domain(prod);
10431 return prod;
10434 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10436 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
10437 __isl_take isl_map *map2)
10439 isl_map *prod;
10441 prod = isl_map_range_product(map1, map2);
10442 prod = isl_map_flatten_range(prod);
10443 return prod;
10446 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
10448 int i;
10449 uint32_t hash = isl_hash_init();
10450 unsigned total;
10452 if (!bmap)
10453 return 0;
10454 bmap = isl_basic_map_copy(bmap);
10455 bmap = isl_basic_map_normalize(bmap);
10456 if (!bmap)
10457 return 0;
10458 total = isl_basic_map_total_dim(bmap);
10459 isl_hash_byte(hash, bmap->n_eq & 0xFF);
10460 for (i = 0; i < bmap->n_eq; ++i) {
10461 uint32_t c_hash;
10462 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
10463 isl_hash_hash(hash, c_hash);
10465 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
10466 for (i = 0; i < bmap->n_ineq; ++i) {
10467 uint32_t c_hash;
10468 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
10469 isl_hash_hash(hash, c_hash);
10471 isl_hash_byte(hash, bmap->n_div & 0xFF);
10472 for (i = 0; i < bmap->n_div; ++i) {
10473 uint32_t c_hash;
10474 if (isl_int_is_zero(bmap->div[i][0]))
10475 continue;
10476 isl_hash_byte(hash, i & 0xFF);
10477 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
10478 isl_hash_hash(hash, c_hash);
10480 isl_basic_map_free(bmap);
10481 return hash;
10484 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
10486 return isl_basic_map_get_hash(bset_to_bmap(bset));
10489 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
10491 int i;
10492 uint32_t hash;
10494 if (!map)
10495 return 0;
10496 map = isl_map_copy(map);
10497 map = isl_map_normalize(map);
10498 if (!map)
10499 return 0;
10501 hash = isl_hash_init();
10502 for (i = 0; i < map->n; ++i) {
10503 uint32_t bmap_hash;
10504 bmap_hash = isl_basic_map_get_hash(map->p[i]);
10505 isl_hash_hash(hash, bmap_hash);
10508 isl_map_free(map);
10510 return hash;
10513 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
10515 return isl_map_get_hash(set_to_map(set));
10518 /* Return the number of basic maps in the (current) representation of "map".
10520 int isl_map_n_basic_map(__isl_keep isl_map *map)
10522 return map ? map->n : 0;
10525 int isl_set_n_basic_set(__isl_keep isl_set *set)
10527 return set ? set->n : 0;
10530 isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
10531 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
10533 int i;
10535 if (!map)
10536 return isl_stat_error;
10538 for (i = 0; i < map->n; ++i)
10539 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
10540 return isl_stat_error;
10542 return isl_stat_ok;
10545 isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
10546 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
10548 int i;
10550 if (!set)
10551 return isl_stat_error;
10553 for (i = 0; i < set->n; ++i)
10554 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
10555 return isl_stat_error;
10557 return isl_stat_ok;
10560 /* Return a list of basic sets, the union of which is equal to "set".
10562 __isl_give isl_basic_set_list *isl_set_get_basic_set_list(
10563 __isl_keep isl_set *set)
10565 int i;
10566 isl_basic_set_list *list;
10568 if (!set)
10569 return NULL;
10571 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
10572 for (i = 0; i < set->n; ++i) {
10573 isl_basic_set *bset;
10575 bset = isl_basic_set_copy(set->p[i]);
10576 list = isl_basic_set_list_add(list, bset);
10579 return list;
10582 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
10584 isl_space *dim;
10586 if (!bset)
10587 return NULL;
10589 bset = isl_basic_set_cow(bset);
10590 if (!bset)
10591 return NULL;
10593 dim = isl_basic_set_get_space(bset);
10594 dim = isl_space_lift(dim, bset->n_div);
10595 if (!dim)
10596 goto error;
10597 isl_space_free(bset->dim);
10598 bset->dim = dim;
10599 bset->extra -= bset->n_div;
10600 bset->n_div = 0;
10602 bset = isl_basic_set_finalize(bset);
10604 return bset;
10605 error:
10606 isl_basic_set_free(bset);
10607 return NULL;
10610 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
10612 int i;
10613 isl_space *dim;
10614 unsigned n_div;
10616 set = set_from_map(isl_map_align_divs_internal(set_to_map(set)));
10618 if (!set)
10619 return NULL;
10621 set = isl_set_cow(set);
10622 if (!set)
10623 return NULL;
10625 n_div = set->p[0]->n_div;
10626 dim = isl_set_get_space(set);
10627 dim = isl_space_lift(dim, n_div);
10628 if (!dim)
10629 goto error;
10630 isl_space_free(set->dim);
10631 set->dim = dim;
10633 for (i = 0; i < set->n; ++i) {
10634 set->p[i] = isl_basic_set_lift(set->p[i]);
10635 if (!set->p[i])
10636 goto error;
10639 return set;
10640 error:
10641 isl_set_free(set);
10642 return NULL;
10645 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
10647 unsigned dim;
10648 int size = 0;
10650 if (!bset)
10651 return -1;
10653 dim = isl_basic_set_total_dim(bset);
10654 size += bset->n_eq * (1 + dim);
10655 size += bset->n_ineq * (1 + dim);
10656 size += bset->n_div * (2 + dim);
10658 return size;
10661 int isl_set_size(__isl_keep isl_set *set)
10663 int i;
10664 int size = 0;
10666 if (!set)
10667 return -1;
10669 for (i = 0; i < set->n; ++i)
10670 size += isl_basic_set_size(set->p[i]);
10672 return size;
10675 /* Check if there is any lower bound (if lower == 0) and/or upper
10676 * bound (if upper == 0) on the specified dim.
10678 static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10679 enum isl_dim_type type, unsigned pos, int lower, int upper)
10681 int i;
10683 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
10684 return isl_bool_error;
10686 pos += isl_basic_map_offset(bmap, type);
10688 for (i = 0; i < bmap->n_div; ++i) {
10689 if (isl_int_is_zero(bmap->div[i][0]))
10690 continue;
10691 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
10692 return isl_bool_true;
10695 for (i = 0; i < bmap->n_eq; ++i)
10696 if (!isl_int_is_zero(bmap->eq[i][pos]))
10697 return isl_bool_true;
10699 for (i = 0; i < bmap->n_ineq; ++i) {
10700 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
10701 if (sgn > 0)
10702 lower = 1;
10703 if (sgn < 0)
10704 upper = 1;
10707 return lower && upper;
10710 isl_bool isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10711 enum isl_dim_type type, unsigned pos)
10713 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
10716 isl_bool isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
10717 enum isl_dim_type type, unsigned pos)
10719 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
10722 isl_bool isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
10723 enum isl_dim_type type, unsigned pos)
10725 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
10728 isl_bool isl_map_dim_is_bounded(__isl_keep isl_map *map,
10729 enum isl_dim_type type, unsigned pos)
10731 int i;
10733 if (!map)
10734 return isl_bool_error;
10736 for (i = 0; i < map->n; ++i) {
10737 isl_bool bounded;
10738 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
10739 if (bounded < 0 || !bounded)
10740 return bounded;
10743 return isl_bool_true;
10746 /* Return true if the specified dim is involved in both an upper bound
10747 * and a lower bound.
10749 isl_bool isl_set_dim_is_bounded(__isl_keep isl_set *set,
10750 enum isl_dim_type type, unsigned pos)
10752 return isl_map_dim_is_bounded(set_to_map(set), type, pos);
10755 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10757 static isl_bool has_any_bound(__isl_keep isl_map *map,
10758 enum isl_dim_type type, unsigned pos,
10759 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10760 enum isl_dim_type type, unsigned pos))
10762 int i;
10764 if (!map)
10765 return isl_bool_error;
10767 for (i = 0; i < map->n; ++i) {
10768 isl_bool bounded;
10769 bounded = fn(map->p[i], type, pos);
10770 if (bounded < 0 || bounded)
10771 return bounded;
10774 return isl_bool_false;
10777 /* Return 1 if the specified dim is involved in any lower bound.
10779 isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
10780 enum isl_dim_type type, unsigned pos)
10782 return has_any_bound(set, type, pos,
10783 &isl_basic_map_dim_has_lower_bound);
10786 /* Return 1 if the specified dim is involved in any upper bound.
10788 isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
10789 enum isl_dim_type type, unsigned pos)
10791 return has_any_bound(set, type, pos,
10792 &isl_basic_map_dim_has_upper_bound);
10795 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10797 static isl_bool has_bound(__isl_keep isl_map *map,
10798 enum isl_dim_type type, unsigned pos,
10799 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10800 enum isl_dim_type type, unsigned pos))
10802 int i;
10804 if (!map)
10805 return isl_bool_error;
10807 for (i = 0; i < map->n; ++i) {
10808 isl_bool bounded;
10809 bounded = fn(map->p[i], type, pos);
10810 if (bounded < 0 || !bounded)
10811 return bounded;
10814 return isl_bool_true;
10817 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10819 isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
10820 enum isl_dim_type type, unsigned pos)
10822 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
10825 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10827 isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
10828 enum isl_dim_type type, unsigned pos)
10830 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
10833 /* For each of the "n" variables starting at "first", determine
10834 * the sign of the variable and put the results in the first "n"
10835 * elements of the array "signs".
10836 * Sign
10837 * 1 means that the variable is non-negative
10838 * -1 means that the variable is non-positive
10839 * 0 means the variable attains both positive and negative values.
10841 isl_stat isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
10842 unsigned first, unsigned n, int *signs)
10844 isl_vec *bound = NULL;
10845 struct isl_tab *tab = NULL;
10846 struct isl_tab_undo *snap;
10847 int i;
10849 if (!bset || !signs)
10850 return isl_stat_error;
10852 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
10853 tab = isl_tab_from_basic_set(bset, 0);
10854 if (!bound || !tab)
10855 goto error;
10857 isl_seq_clr(bound->el, bound->size);
10858 isl_int_set_si(bound->el[0], -1);
10860 snap = isl_tab_snap(tab);
10861 for (i = 0; i < n; ++i) {
10862 int empty;
10864 isl_int_set_si(bound->el[1 + first + i], -1);
10865 if (isl_tab_add_ineq(tab, bound->el) < 0)
10866 goto error;
10867 empty = tab->empty;
10868 isl_int_set_si(bound->el[1 + first + i], 0);
10869 if (isl_tab_rollback(tab, snap) < 0)
10870 goto error;
10872 if (empty) {
10873 signs[i] = 1;
10874 continue;
10877 isl_int_set_si(bound->el[1 + first + i], 1);
10878 if (isl_tab_add_ineq(tab, bound->el) < 0)
10879 goto error;
10880 empty = tab->empty;
10881 isl_int_set_si(bound->el[1 + first + i], 0);
10882 if (isl_tab_rollback(tab, snap) < 0)
10883 goto error;
10885 signs[i] = empty ? -1 : 0;
10888 isl_tab_free(tab);
10889 isl_vec_free(bound);
10890 return isl_stat_ok;
10891 error:
10892 isl_tab_free(tab);
10893 isl_vec_free(bound);
10894 return isl_stat_error;
10897 isl_stat isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
10898 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
10900 if (!bset || !signs)
10901 return isl_stat_error;
10902 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
10903 return isl_stat_error);
10905 first += pos(bset->dim, type) - 1;
10906 return isl_basic_set_vars_get_sign(bset, first, n, signs);
10909 /* Is it possible for the integer division "div" to depend (possibly
10910 * indirectly) on any output dimensions?
10912 * If the div is undefined, then we conservatively assume that it
10913 * may depend on them.
10914 * Otherwise, we check if it actually depends on them or on any integer
10915 * divisions that may depend on them.
10917 static isl_bool div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
10919 int i;
10920 unsigned n_out, o_out;
10921 unsigned n_div, o_div;
10923 if (isl_int_is_zero(bmap->div[div][0]))
10924 return isl_bool_true;
10926 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10927 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10929 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
10930 return isl_bool_true;
10932 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10933 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10935 for (i = 0; i < n_div; ++i) {
10936 isl_bool may_involve;
10938 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
10939 continue;
10940 may_involve = div_may_involve_output(bmap, i);
10941 if (may_involve < 0 || may_involve)
10942 return may_involve;
10945 return isl_bool_false;
10948 /* Return the first integer division of "bmap" in the range
10949 * [first, first + n[ that may depend on any output dimensions and
10950 * that has a non-zero coefficient in "c" (where the first coefficient
10951 * in "c" corresponds to integer division "first").
10953 static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
10954 isl_int *c, int first, int n)
10956 int k;
10958 if (!bmap)
10959 return -1;
10961 for (k = first; k < first + n; ++k) {
10962 isl_bool may_involve;
10964 if (isl_int_is_zero(c[k]))
10965 continue;
10966 may_involve = div_may_involve_output(bmap, k);
10967 if (may_involve < 0)
10968 return -1;
10969 if (may_involve)
10970 return k;
10973 return first + n;
10976 /* Look for a pair of inequality constraints in "bmap" of the form
10978 * -l + i >= 0 or i >= l
10979 * and
10980 * n + l - i >= 0 or i <= l + n
10982 * with n < "m" and i the output dimension at position "pos".
10983 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10984 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10985 * and earlier output dimensions, as well as integer divisions that do
10986 * not involve any of the output dimensions.
10988 * Return the index of the first inequality constraint or bmap->n_ineq
10989 * if no such pair can be found.
10991 static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
10992 int pos, isl_int m)
10994 int i, j;
10995 isl_ctx *ctx;
10996 unsigned total;
10997 unsigned n_div, o_div;
10998 unsigned n_out, o_out;
10999 int less;
11001 if (!bmap)
11002 return -1;
11004 ctx = isl_basic_map_get_ctx(bmap);
11005 total = isl_basic_map_total_dim(bmap);
11006 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11007 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11008 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11009 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11010 for (i = 0; i < bmap->n_ineq; ++i) {
11011 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
11012 continue;
11013 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
11014 n_out - (pos + 1)) != -1)
11015 continue;
11016 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
11017 0, n_div) < n_div)
11018 continue;
11019 for (j = i + 1; j < bmap->n_ineq; ++j) {
11020 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
11021 ctx->one))
11022 continue;
11023 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
11024 bmap->ineq[j] + 1, total))
11025 continue;
11026 break;
11028 if (j >= bmap->n_ineq)
11029 continue;
11030 isl_int_add(bmap->ineq[i][0],
11031 bmap->ineq[i][0], bmap->ineq[j][0]);
11032 less = isl_int_abs_lt(bmap->ineq[i][0], m);
11033 isl_int_sub(bmap->ineq[i][0],
11034 bmap->ineq[i][0], bmap->ineq[j][0]);
11035 if (!less)
11036 continue;
11037 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
11038 return i;
11039 else
11040 return j;
11043 return bmap->n_ineq;
11046 /* Return the index of the equality of "bmap" that defines
11047 * the output dimension "pos" in terms of earlier dimensions.
11048 * The equality may also involve integer divisions, as long
11049 * as those integer divisions are defined in terms of
11050 * parameters or input dimensions.
11051 * In this case, *div is set to the number of integer divisions and
11052 * *ineq is set to the number of inequality constraints (provided
11053 * div and ineq are not NULL).
11055 * The equality may also involve a single integer division involving
11056 * the output dimensions (typically only output dimension "pos") as
11057 * long as the coefficient of output dimension "pos" is 1 or -1 and
11058 * there is a pair of constraints i >= l and i <= l + n, with i referring
11059 * to output dimension "pos", l an expression involving only earlier
11060 * dimensions and n smaller than the coefficient of the integer division
11061 * in the equality. In this case, the output dimension can be defined
11062 * in terms of a modulo expression that does not involve the integer division.
11063 * *div is then set to this single integer division and
11064 * *ineq is set to the index of constraint i >= l.
11066 * Return bmap->n_eq if there is no such equality.
11067 * Return -1 on error.
11069 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
11070 int pos, int *div, int *ineq)
11072 int j, k, l;
11073 unsigned n_out, o_out;
11074 unsigned n_div, o_div;
11076 if (!bmap)
11077 return -1;
11079 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11080 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11081 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11082 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11084 if (ineq)
11085 *ineq = bmap->n_ineq;
11086 if (div)
11087 *div = n_div;
11088 for (j = 0; j < bmap->n_eq; ++j) {
11089 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
11090 continue;
11091 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
11092 n_out - (pos + 1)) != -1)
11093 continue;
11094 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11095 0, n_div);
11096 if (k >= n_div)
11097 return j;
11098 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
11099 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
11100 continue;
11101 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11102 k + 1, n_div - (k+1)) < n_div)
11103 continue;
11104 l = find_modulo_constraint_pair(bmap, pos,
11105 bmap->eq[j][o_div + k]);
11106 if (l < 0)
11107 return -1;
11108 if (l >= bmap->n_ineq)
11109 continue;
11110 if (div)
11111 *div = k;
11112 if (ineq)
11113 *ineq = l;
11114 return j;
11117 return bmap->n_eq;
11120 /* Check if the given basic map is obviously single-valued.
11121 * In particular, for each output dimension, check that there is
11122 * an equality that defines the output dimension in terms of
11123 * earlier dimensions.
11125 isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
11127 int i;
11128 unsigned n_out;
11130 if (!bmap)
11131 return isl_bool_error;
11133 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11135 for (i = 0; i < n_out; ++i) {
11136 int eq;
11138 eq = isl_basic_map_output_defining_equality(bmap, i,
11139 NULL, NULL);
11140 if (eq < 0)
11141 return isl_bool_error;
11142 if (eq >= bmap->n_eq)
11143 return isl_bool_false;
11146 return isl_bool_true;
11149 /* Check if the given basic map is single-valued.
11150 * We simply compute
11152 * M \circ M^-1
11154 * and check if the result is a subset of the identity mapping.
11156 isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
11158 isl_space *space;
11159 isl_basic_map *test;
11160 isl_basic_map *id;
11161 isl_bool sv;
11163 sv = isl_basic_map_plain_is_single_valued(bmap);
11164 if (sv < 0 || sv)
11165 return sv;
11167 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
11168 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
11170 space = isl_basic_map_get_space(bmap);
11171 space = isl_space_map_from_set(isl_space_range(space));
11172 id = isl_basic_map_identity(space);
11174 sv = isl_basic_map_is_subset(test, id);
11176 isl_basic_map_free(test);
11177 isl_basic_map_free(id);
11179 return sv;
11182 /* Check if the given map is obviously single-valued.
11184 isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
11186 if (!map)
11187 return isl_bool_error;
11188 if (map->n == 0)
11189 return isl_bool_true;
11190 if (map->n >= 2)
11191 return isl_bool_false;
11193 return isl_basic_map_plain_is_single_valued(map->p[0]);
11196 /* Check if the given map is single-valued.
11197 * We simply compute
11199 * M \circ M^-1
11201 * and check if the result is a subset of the identity mapping.
11203 isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
11205 isl_space *dim;
11206 isl_map *test;
11207 isl_map *id;
11208 isl_bool sv;
11210 sv = isl_map_plain_is_single_valued(map);
11211 if (sv < 0 || sv)
11212 return sv;
11214 test = isl_map_reverse(isl_map_copy(map));
11215 test = isl_map_apply_range(test, isl_map_copy(map));
11217 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
11218 id = isl_map_identity(dim);
11220 sv = isl_map_is_subset(test, id);
11222 isl_map_free(test);
11223 isl_map_free(id);
11225 return sv;
11228 isl_bool isl_map_is_injective(__isl_keep isl_map *map)
11230 isl_bool in;
11232 map = isl_map_copy(map);
11233 map = isl_map_reverse(map);
11234 in = isl_map_is_single_valued(map);
11235 isl_map_free(map);
11237 return in;
11240 /* Check if the given map is obviously injective.
11242 isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
11244 isl_bool in;
11246 map = isl_map_copy(map);
11247 map = isl_map_reverse(map);
11248 in = isl_map_plain_is_single_valued(map);
11249 isl_map_free(map);
11251 return in;
11254 isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
11256 isl_bool sv;
11258 sv = isl_map_is_single_valued(map);
11259 if (sv < 0 || !sv)
11260 return sv;
11262 return isl_map_is_injective(map);
11265 isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
11267 return isl_map_is_single_valued(set_to_map(set));
11270 /* Does "map" only map elements to themselves?
11272 * If the domain and range spaces are different, then "map"
11273 * is considered not to be an identity relation, even if it is empty.
11274 * Otherwise, construct the maximal identity relation and
11275 * check whether "map" is a subset of this relation.
11277 isl_bool isl_map_is_identity(__isl_keep isl_map *map)
11279 isl_space *space;
11280 isl_map *id;
11281 isl_bool equal, is_identity;
11283 space = isl_map_get_space(map);
11284 equal = isl_space_tuple_is_equal(space, isl_dim_in, space, isl_dim_out);
11285 isl_space_free(space);
11286 if (equal < 0 || !equal)
11287 return equal;
11289 id = isl_map_identity(isl_map_get_space(map));
11290 is_identity = isl_map_is_subset(map, id);
11291 isl_map_free(id);
11293 return is_identity;
11296 int isl_map_is_translation(__isl_keep isl_map *map)
11298 int ok;
11299 isl_set *delta;
11301 delta = isl_map_deltas(isl_map_copy(map));
11302 ok = isl_set_is_singleton(delta);
11303 isl_set_free(delta);
11305 return ok;
11308 static int unique(isl_int *p, unsigned pos, unsigned len)
11310 if (isl_seq_first_non_zero(p, pos) != -1)
11311 return 0;
11312 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
11313 return 0;
11314 return 1;
11317 isl_bool isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
11319 int i, j;
11320 unsigned nvar;
11321 unsigned ovar;
11323 if (!bset)
11324 return isl_bool_error;
11326 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
11327 return isl_bool_false;
11329 nvar = isl_basic_set_dim(bset, isl_dim_set);
11330 ovar = isl_space_offset(bset->dim, isl_dim_set);
11331 for (j = 0; j < nvar; ++j) {
11332 int lower = 0, upper = 0;
11333 for (i = 0; i < bset->n_eq; ++i) {
11334 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
11335 continue;
11336 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
11337 return isl_bool_false;
11338 break;
11340 if (i < bset->n_eq)
11341 continue;
11342 for (i = 0; i < bset->n_ineq; ++i) {
11343 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
11344 continue;
11345 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
11346 return isl_bool_false;
11347 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
11348 lower = 1;
11349 else
11350 upper = 1;
11352 if (!lower || !upper)
11353 return isl_bool_false;
11356 return isl_bool_true;
11359 isl_bool isl_set_is_box(__isl_keep isl_set *set)
11361 if (!set)
11362 return isl_bool_error;
11363 if (set->n != 1)
11364 return isl_bool_false;
11366 return isl_basic_set_is_box(set->p[0]);
11369 isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
11371 if (!bset)
11372 return isl_bool_error;
11374 return isl_space_is_wrapping(bset->dim);
11377 isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
11379 if (!set)
11380 return isl_bool_error;
11382 return isl_space_is_wrapping(set->dim);
11385 /* Modify the space of "map" through a call to "change".
11386 * If "can_change" is set (not NULL), then first call it to check
11387 * if the modification is allowed, printing the error message "cannot_change"
11388 * if it is not.
11390 static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
11391 isl_bool (*can_change)(__isl_keep isl_map *map),
11392 const char *cannot_change,
11393 __isl_give isl_space *(*change)(__isl_take isl_space *space))
11395 isl_bool ok;
11396 isl_space *space;
11398 if (!map)
11399 return NULL;
11401 ok = can_change ? can_change(map) : isl_bool_true;
11402 if (ok < 0)
11403 return isl_map_free(map);
11404 if (!ok)
11405 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
11406 return isl_map_free(map));
11408 space = change(isl_map_get_space(map));
11409 map = isl_map_reset_space(map, space);
11411 return map;
11414 /* Is the domain of "map" a wrapped relation?
11416 isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
11418 if (!map)
11419 return isl_bool_error;
11421 return isl_space_domain_is_wrapping(map->dim);
11424 /* Does "map" have a wrapped relation in both domain and range?
11426 isl_bool isl_map_is_product(__isl_keep isl_map *map)
11428 return isl_space_is_product(isl_map_peek_space(map));
11431 /* Is the range of "map" a wrapped relation?
11433 isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
11435 if (!map)
11436 return isl_bool_error;
11438 return isl_space_range_is_wrapping(map->dim);
11441 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
11443 bmap = isl_basic_map_cow(bmap);
11444 if (!bmap)
11445 return NULL;
11447 bmap->dim = isl_space_wrap(bmap->dim);
11448 if (!bmap->dim)
11449 goto error;
11451 bmap = isl_basic_map_finalize(bmap);
11453 return bset_from_bmap(bmap);
11454 error:
11455 isl_basic_map_free(bmap);
11456 return NULL;
11459 /* Given a map A -> B, return the set (A -> B).
11461 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
11463 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
11466 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
11468 bset = isl_basic_set_cow(bset);
11469 if (!bset)
11470 return NULL;
11472 bset->dim = isl_space_unwrap(bset->dim);
11473 if (!bset->dim)
11474 goto error;
11476 bset = isl_basic_set_finalize(bset);
11478 return bset_to_bmap(bset);
11479 error:
11480 isl_basic_set_free(bset);
11481 return NULL;
11484 /* Given a set (A -> B), return the map A -> B.
11485 * Error out if "set" is not of the form (A -> B).
11487 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
11489 return isl_map_change_space(set, &isl_set_is_wrapping,
11490 "not a wrapping set", &isl_space_unwrap);
11493 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
11494 enum isl_dim_type type)
11496 if (!bmap)
11497 return NULL;
11499 if (!isl_space_is_named_or_nested(bmap->dim, type))
11500 return bmap;
11502 bmap = isl_basic_map_cow(bmap);
11503 if (!bmap)
11504 return NULL;
11506 bmap->dim = isl_space_reset(bmap->dim, type);
11507 if (!bmap->dim)
11508 goto error;
11510 bmap = isl_basic_map_finalize(bmap);
11512 return bmap;
11513 error:
11514 isl_basic_map_free(bmap);
11515 return NULL;
11518 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
11519 enum isl_dim_type type)
11521 int i;
11523 if (!map)
11524 return NULL;
11526 if (!isl_space_is_named_or_nested(map->dim, type))
11527 return map;
11529 map = isl_map_cow(map);
11530 if (!map)
11531 return NULL;
11533 for (i = 0; i < map->n; ++i) {
11534 map->p[i] = isl_basic_map_reset(map->p[i], type);
11535 if (!map->p[i])
11536 goto error;
11538 map->dim = isl_space_reset(map->dim, type);
11539 if (!map->dim)
11540 goto error;
11542 return map;
11543 error:
11544 isl_map_free(map);
11545 return NULL;
11548 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
11550 if (!bmap)
11551 return NULL;
11553 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
11554 return bmap;
11556 bmap = isl_basic_map_cow(bmap);
11557 if (!bmap)
11558 return NULL;
11560 bmap->dim = isl_space_flatten(bmap->dim);
11561 if (!bmap->dim)
11562 goto error;
11564 bmap = isl_basic_map_finalize(bmap);
11566 return bmap;
11567 error:
11568 isl_basic_map_free(bmap);
11569 return NULL;
11572 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
11574 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset)));
11577 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
11578 __isl_take isl_basic_map *bmap)
11580 if (!bmap)
11581 return NULL;
11583 if (!bmap->dim->nested[0])
11584 return bmap;
11586 bmap = isl_basic_map_cow(bmap);
11587 if (!bmap)
11588 return NULL;
11590 bmap->dim = isl_space_flatten_domain(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 __isl_give isl_basic_map *isl_basic_map_flatten_range(
11603 __isl_take isl_basic_map *bmap)
11605 if (!bmap)
11606 return NULL;
11608 if (!bmap->dim->nested[1])
11609 return bmap;
11611 bmap = isl_basic_map_cow(bmap);
11612 if (!bmap)
11613 return NULL;
11615 bmap->dim = isl_space_flatten_range(bmap->dim);
11616 if (!bmap->dim)
11617 goto error;
11619 bmap = isl_basic_map_finalize(bmap);
11621 return bmap;
11622 error:
11623 isl_basic_map_free(bmap);
11624 return NULL;
11627 /* Remove any internal structure from the spaces of domain and range of "map".
11629 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
11631 if (!map)
11632 return NULL;
11634 if (!map->dim->nested[0] && !map->dim->nested[1])
11635 return map;
11637 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
11640 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
11642 return set_from_map(isl_map_flatten(set_to_map(set)));
11645 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
11647 isl_space *dim, *flat_dim;
11648 isl_map *map;
11650 dim = isl_set_get_space(set);
11651 flat_dim = isl_space_flatten(isl_space_copy(dim));
11652 map = isl_map_identity(isl_space_join(isl_space_reverse(dim), flat_dim));
11653 map = isl_map_intersect_domain(map, set);
11655 return map;
11658 /* Remove any internal structure from the space of the domain of "map".
11660 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
11662 if (!map)
11663 return NULL;
11665 if (!map->dim->nested[0])
11666 return map;
11668 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
11671 /* Remove any internal structure from the space of the range of "map".
11673 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
11675 if (!map)
11676 return NULL;
11678 if (!map->dim->nested[1])
11679 return map;
11681 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
11684 /* Reorder the dimensions of "bmap" according to the given dim_map
11685 * and set the dimension specification to "space" and
11686 * perform Gaussian elimination on the result.
11688 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
11689 __isl_take isl_space *space, __isl_take struct isl_dim_map *dim_map)
11691 isl_basic_map *res;
11692 unsigned flags;
11693 unsigned n_div;
11695 if (!bmap || !space || !dim_map)
11696 goto error;
11698 flags = bmap->flags;
11699 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
11700 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED);
11701 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
11702 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11703 res = isl_basic_map_alloc_space(space, n_div, bmap->n_eq, bmap->n_ineq);
11704 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
11705 if (res)
11706 res->flags = flags;
11707 res = isl_basic_map_gauss(res, NULL);
11708 res = isl_basic_map_finalize(res);
11709 return res;
11710 error:
11711 free(dim_map);
11712 isl_basic_map_free(bmap);
11713 isl_space_free(space);
11714 return NULL;
11717 /* Reorder the dimensions of "map" according to given reordering.
11719 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
11720 __isl_take isl_reordering *r)
11722 int i;
11723 struct isl_dim_map *dim_map;
11725 map = isl_map_cow(map);
11726 dim_map = isl_dim_map_from_reordering(r);
11727 if (!map || !r || !dim_map)
11728 goto error;
11730 for (i = 0; i < map->n; ++i) {
11731 struct isl_dim_map *dim_map_i;
11732 isl_space *space;
11734 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
11736 space = isl_reordering_get_space(r);
11737 map->p[i] = isl_basic_map_realign(map->p[i], space, dim_map_i);
11739 if (!map->p[i])
11740 goto error;
11743 map = isl_map_reset_space(map, isl_reordering_get_space(r));
11744 map = isl_map_unmark_normalized(map);
11746 isl_reordering_free(r);
11747 free(dim_map);
11748 return map;
11749 error:
11750 free(dim_map);
11751 isl_map_free(map);
11752 isl_reordering_free(r);
11753 return NULL;
11756 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
11757 __isl_take isl_reordering *r)
11759 return set_from_map(isl_map_realign(set_to_map(set), r));
11762 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
11763 __isl_take isl_space *model)
11765 isl_ctx *ctx;
11766 isl_bool aligned;
11768 if (!map || !model)
11769 goto error;
11771 ctx = isl_space_get_ctx(model);
11772 if (!isl_space_has_named_params(model))
11773 isl_die(ctx, isl_error_invalid,
11774 "model has unnamed parameters", goto error);
11775 if (isl_map_check_named_params(map) < 0)
11776 goto error;
11777 aligned = isl_map_space_has_equal_params(map, model);
11778 if (aligned < 0)
11779 goto error;
11780 if (!aligned) {
11781 isl_reordering *exp;
11783 exp = isl_parameter_alignment_reordering(map->dim, model);
11784 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
11785 map = isl_map_realign(map, exp);
11788 isl_space_free(model);
11789 return map;
11790 error:
11791 isl_space_free(model);
11792 isl_map_free(map);
11793 return NULL;
11796 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
11797 __isl_take isl_space *model)
11799 return isl_map_align_params(set, model);
11802 /* Align the parameters of "bmap" to those of "model", introducing
11803 * additional parameters if needed.
11805 __isl_give isl_basic_map *isl_basic_map_align_params(
11806 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
11808 isl_ctx *ctx;
11809 isl_bool equal_params;
11811 if (!bmap || !model)
11812 goto error;
11814 ctx = isl_space_get_ctx(model);
11815 if (!isl_space_has_named_params(model))
11816 isl_die(ctx, isl_error_invalid,
11817 "model has unnamed parameters", goto error);
11818 if (isl_basic_map_check_named_params(bmap) < 0)
11819 goto error;
11820 equal_params = isl_space_has_equal_params(bmap->dim, model);
11821 if (equal_params < 0)
11822 goto error;
11823 if (!equal_params) {
11824 isl_reordering *exp;
11825 struct isl_dim_map *dim_map;
11827 exp = isl_parameter_alignment_reordering(bmap->dim, model);
11828 exp = isl_reordering_extend_space(exp,
11829 isl_basic_map_get_space(bmap));
11830 dim_map = isl_dim_map_from_reordering(exp);
11831 bmap = isl_basic_map_realign(bmap,
11832 isl_reordering_get_space(exp),
11833 isl_dim_map_extend(dim_map, bmap));
11834 isl_reordering_free(exp);
11835 free(dim_map);
11838 isl_space_free(model);
11839 return bmap;
11840 error:
11841 isl_space_free(model);
11842 isl_basic_map_free(bmap);
11843 return NULL;
11846 /* Do "bset" and "space" have the same parameters?
11848 isl_bool isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set *bset,
11849 __isl_keep isl_space *space)
11851 isl_space *bset_space;
11853 bset_space = isl_basic_set_peek_space(bset);
11854 return isl_space_has_equal_params(bset_space, space);
11857 /* Do "map" and "space" have the same parameters?
11859 isl_bool isl_map_space_has_equal_params(__isl_keep isl_map *map,
11860 __isl_keep isl_space *space)
11862 isl_space *map_space;
11864 map_space = isl_map_peek_space(map);
11865 return isl_space_has_equal_params(map_space, space);
11868 /* Do "set" and "space" have the same parameters?
11870 isl_bool isl_set_space_has_equal_params(__isl_keep isl_set *set,
11871 __isl_keep isl_space *space)
11873 return isl_map_space_has_equal_params(set_to_map(set), space);
11876 /* Align the parameters of "bset" to those of "model", introducing
11877 * additional parameters if needed.
11879 __isl_give isl_basic_set *isl_basic_set_align_params(
11880 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
11882 return isl_basic_map_align_params(bset, model);
11885 /* Drop all parameters not referenced by "map".
11887 __isl_give isl_map *isl_map_drop_unused_params(__isl_take isl_map *map)
11889 int i;
11891 if (isl_map_check_named_params(map) < 0)
11892 return isl_map_free(map);
11894 for (i = isl_map_dim(map, isl_dim_param) - 1; i >= 0; i--) {
11895 isl_bool involves;
11897 involves = isl_map_involves_dims(map, isl_dim_param, i, 1);
11898 if (involves < 0)
11899 return isl_map_free(map);
11900 if (!involves)
11901 map = isl_map_project_out(map, isl_dim_param, i, 1);
11904 return map;
11907 /* Drop all parameters not referenced by "set".
11909 __isl_give isl_set *isl_set_drop_unused_params(
11910 __isl_take isl_set *set)
11912 return set_from_map(isl_map_drop_unused_params(set_to_map(set)));
11915 /* Drop all parameters not referenced by "bmap".
11917 __isl_give isl_basic_map *isl_basic_map_drop_unused_params(
11918 __isl_take isl_basic_map *bmap)
11920 int i;
11922 if (isl_basic_map_check_named_params(bmap) < 0)
11923 return isl_basic_map_free(bmap);
11925 for (i = isl_basic_map_dim(bmap, isl_dim_param) - 1; i >= 0; i--) {
11926 isl_bool involves;
11928 involves = isl_basic_map_involves_dims(bmap,
11929 isl_dim_param, i, 1);
11930 if (involves < 0)
11931 return isl_basic_map_free(bmap);
11932 if (!involves)
11933 bmap = isl_basic_map_drop(bmap, isl_dim_param, i, 1);
11936 return bmap;
11939 /* Drop all parameters not referenced by "bset".
11941 __isl_give isl_basic_set *isl_basic_set_drop_unused_params(
11942 __isl_take isl_basic_set *bset)
11944 return bset_from_bmap(isl_basic_map_drop_unused_params(
11945 bset_to_bmap(bset)));
11948 __isl_give isl_mat *isl_basic_map_equalities_matrix(
11949 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11950 enum isl_dim_type c2, enum isl_dim_type c3,
11951 enum isl_dim_type c4, enum isl_dim_type c5)
11953 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11954 struct isl_mat *mat;
11955 int i, j, k;
11956 int pos;
11958 if (!bmap)
11959 return NULL;
11960 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
11961 isl_basic_map_total_dim(bmap) + 1);
11962 if (!mat)
11963 return NULL;
11964 for (i = 0; i < bmap->n_eq; ++i)
11965 for (j = 0, pos = 0; j < 5; ++j) {
11966 int off = isl_basic_map_offset(bmap, c[j]);
11967 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11968 isl_int_set(mat->row[i][pos],
11969 bmap->eq[i][off + k]);
11970 ++pos;
11974 return mat;
11977 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
11978 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11979 enum isl_dim_type c2, enum isl_dim_type c3,
11980 enum isl_dim_type c4, enum isl_dim_type c5)
11982 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11983 struct isl_mat *mat;
11984 int i, j, k;
11985 int pos;
11987 if (!bmap)
11988 return NULL;
11989 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
11990 isl_basic_map_total_dim(bmap) + 1);
11991 if (!mat)
11992 return NULL;
11993 for (i = 0; i < bmap->n_ineq; ++i)
11994 for (j = 0, pos = 0; j < 5; ++j) {
11995 int off = isl_basic_map_offset(bmap, c[j]);
11996 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11997 isl_int_set(mat->row[i][pos],
11998 bmap->ineq[i][off + k]);
11999 ++pos;
12003 return mat;
12006 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
12007 __isl_take isl_space *dim,
12008 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
12009 enum isl_dim_type c2, enum isl_dim_type c3,
12010 enum isl_dim_type c4, enum isl_dim_type c5)
12012 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
12013 isl_basic_map *bmap = NULL;
12014 unsigned total;
12015 unsigned extra;
12016 int i, j, k, l;
12017 int pos;
12019 if (!dim || !eq || !ineq)
12020 goto error;
12022 if (eq->n_col != ineq->n_col)
12023 isl_die(dim->ctx, isl_error_invalid,
12024 "equalities and inequalities matrices should have "
12025 "same number of columns", goto error);
12027 total = 1 + isl_space_dim(dim, isl_dim_all);
12029 if (eq->n_col < total)
12030 isl_die(dim->ctx, isl_error_invalid,
12031 "number of columns too small", goto error);
12033 extra = eq->n_col - total;
12035 bmap = isl_basic_map_alloc_space(isl_space_copy(dim), extra,
12036 eq->n_row, ineq->n_row);
12037 if (!bmap)
12038 goto error;
12039 for (i = 0; i < extra; ++i) {
12040 k = isl_basic_map_alloc_div(bmap);
12041 if (k < 0)
12042 goto error;
12043 isl_int_set_si(bmap->div[k][0], 0);
12045 for (i = 0; i < eq->n_row; ++i) {
12046 l = isl_basic_map_alloc_equality(bmap);
12047 if (l < 0)
12048 goto error;
12049 for (j = 0, pos = 0; j < 5; ++j) {
12050 int off = isl_basic_map_offset(bmap, c[j]);
12051 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
12052 isl_int_set(bmap->eq[l][off + k],
12053 eq->row[i][pos]);
12054 ++pos;
12058 for (i = 0; i < ineq->n_row; ++i) {
12059 l = isl_basic_map_alloc_inequality(bmap);
12060 if (l < 0)
12061 goto error;
12062 for (j = 0, pos = 0; j < 5; ++j) {
12063 int off = isl_basic_map_offset(bmap, c[j]);
12064 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
12065 isl_int_set(bmap->ineq[l][off + k],
12066 ineq->row[i][pos]);
12067 ++pos;
12072 isl_space_free(dim);
12073 isl_mat_free(eq);
12074 isl_mat_free(ineq);
12076 bmap = isl_basic_map_simplify(bmap);
12077 return isl_basic_map_finalize(bmap);
12078 error:
12079 isl_space_free(dim);
12080 isl_mat_free(eq);
12081 isl_mat_free(ineq);
12082 isl_basic_map_free(bmap);
12083 return NULL;
12086 __isl_give isl_mat *isl_basic_set_equalities_matrix(
12087 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
12088 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12090 return isl_basic_map_equalities_matrix(bset_to_bmap(bset),
12091 c1, c2, c3, c4, isl_dim_in);
12094 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
12095 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
12096 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12098 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset),
12099 c1, c2, c3, c4, isl_dim_in);
12102 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
12103 __isl_take isl_space *dim,
12104 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
12105 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12107 isl_basic_map *bmap;
12108 bmap = isl_basic_map_from_constraint_matrices(dim, eq, ineq,
12109 c1, c2, c3, c4, isl_dim_in);
12110 return bset_from_bmap(bmap);
12113 isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
12115 if (!bmap)
12116 return isl_bool_error;
12118 return isl_space_can_zip(bmap->dim);
12121 isl_bool isl_map_can_zip(__isl_keep isl_map *map)
12123 if (!map)
12124 return isl_bool_error;
12126 return isl_space_can_zip(map->dim);
12129 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
12130 * (A -> C) -> (B -> D).
12132 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
12134 unsigned pos;
12135 unsigned n1;
12136 unsigned n2;
12138 if (!bmap)
12139 return NULL;
12141 if (!isl_basic_map_can_zip(bmap))
12142 isl_die(bmap->ctx, isl_error_invalid,
12143 "basic map cannot be zipped", goto error);
12144 pos = isl_basic_map_offset(bmap, isl_dim_in) +
12145 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
12146 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
12147 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
12148 bmap = isl_basic_map_cow(bmap);
12149 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
12150 if (!bmap)
12151 return NULL;
12152 bmap->dim = isl_space_zip(bmap->dim);
12153 if (!bmap->dim)
12154 goto error;
12155 bmap = isl_basic_map_mark_final(bmap);
12156 return bmap;
12157 error:
12158 isl_basic_map_free(bmap);
12159 return NULL;
12162 /* Given a map (A -> B) -> (C -> D), return the corresponding map
12163 * (A -> C) -> (B -> D).
12165 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
12167 int i;
12169 if (!map)
12170 return NULL;
12172 if (!isl_map_can_zip(map))
12173 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
12174 goto error);
12176 map = isl_map_cow(map);
12177 if (!map)
12178 return NULL;
12180 for (i = 0; i < map->n; ++i) {
12181 map->p[i] = isl_basic_map_zip(map->p[i]);
12182 if (!map->p[i])
12183 goto error;
12186 map->dim = isl_space_zip(map->dim);
12187 if (!map->dim)
12188 goto error;
12190 return map;
12191 error:
12192 isl_map_free(map);
12193 return NULL;
12196 /* Can we apply isl_basic_map_curry to "bmap"?
12197 * That is, does it have a nested relation in its domain?
12199 isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
12201 if (!bmap)
12202 return isl_bool_error;
12204 return isl_space_can_curry(bmap->dim);
12207 /* Can we apply isl_map_curry to "map"?
12208 * That is, does it have a nested relation in its domain?
12210 isl_bool isl_map_can_curry(__isl_keep isl_map *map)
12212 if (!map)
12213 return isl_bool_error;
12215 return isl_space_can_curry(map->dim);
12218 /* Given a basic map (A -> B) -> C, return the corresponding basic map
12219 * A -> (B -> C).
12221 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
12224 if (!bmap)
12225 return NULL;
12227 if (!isl_basic_map_can_curry(bmap))
12228 isl_die(bmap->ctx, isl_error_invalid,
12229 "basic map cannot be curried", goto error);
12230 bmap = isl_basic_map_cow(bmap);
12231 if (!bmap)
12232 return NULL;
12233 bmap->dim = isl_space_curry(bmap->dim);
12234 if (!bmap->dim)
12235 goto error;
12236 bmap = isl_basic_map_mark_final(bmap);
12237 return bmap;
12238 error:
12239 isl_basic_map_free(bmap);
12240 return NULL;
12243 /* Given a map (A -> B) -> C, return the corresponding map
12244 * A -> (B -> C).
12246 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
12248 return isl_map_change_space(map, &isl_map_can_curry,
12249 "map cannot be curried", &isl_space_curry);
12252 /* Can isl_map_range_curry be applied to "map"?
12253 * That is, does it have a nested relation in its range,
12254 * the domain of which is itself a nested relation?
12256 isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
12258 if (!map)
12259 return isl_bool_error;
12261 return isl_space_can_range_curry(map->dim);
12264 /* Given a map A -> ((B -> C) -> D), return the corresponding map
12265 * A -> (B -> (C -> D)).
12267 __isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
12269 return isl_map_change_space(map, &isl_map_can_range_curry,
12270 "map range cannot be curried",
12271 &isl_space_range_curry);
12274 /* Can we apply isl_basic_map_uncurry to "bmap"?
12275 * That is, does it have a nested relation in its domain?
12277 isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
12279 if (!bmap)
12280 return isl_bool_error;
12282 return isl_space_can_uncurry(bmap->dim);
12285 /* Can we apply isl_map_uncurry to "map"?
12286 * That is, does it have a nested relation in its domain?
12288 isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
12290 if (!map)
12291 return isl_bool_error;
12293 return isl_space_can_uncurry(map->dim);
12296 /* Given a basic map A -> (B -> C), return the corresponding basic map
12297 * (A -> B) -> C.
12299 __isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
12302 if (!bmap)
12303 return NULL;
12305 if (!isl_basic_map_can_uncurry(bmap))
12306 isl_die(bmap->ctx, isl_error_invalid,
12307 "basic map cannot be uncurried",
12308 return isl_basic_map_free(bmap));
12309 bmap = isl_basic_map_cow(bmap);
12310 if (!bmap)
12311 return NULL;
12312 bmap->dim = isl_space_uncurry(bmap->dim);
12313 if (!bmap->dim)
12314 return isl_basic_map_free(bmap);
12315 bmap = isl_basic_map_mark_final(bmap);
12316 return bmap;
12319 /* Given a map A -> (B -> C), return the corresponding map
12320 * (A -> B) -> C.
12322 __isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
12324 return isl_map_change_space(map, &isl_map_can_uncurry,
12325 "map cannot be uncurried", &isl_space_uncurry);
12328 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
12329 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12331 return isl_map_equate(set, type1, pos1, type2, pos2);
12334 /* Construct a basic map where the given dimensions are equal to each other.
12336 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
12337 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12339 isl_basic_map *bmap = NULL;
12340 int i;
12342 if (!space)
12343 return NULL;
12345 if (pos1 >= isl_space_dim(space, type1))
12346 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12347 "index out of bounds", goto error);
12348 if (pos2 >= isl_space_dim(space, type2))
12349 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12350 "index out of bounds", goto error);
12352 if (type1 == type2 && pos1 == pos2)
12353 return isl_basic_map_universe(space);
12355 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
12356 i = isl_basic_map_alloc_equality(bmap);
12357 if (i < 0)
12358 goto error;
12359 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12360 pos1 += isl_basic_map_offset(bmap, type1);
12361 pos2 += isl_basic_map_offset(bmap, type2);
12362 isl_int_set_si(bmap->eq[i][pos1], -1);
12363 isl_int_set_si(bmap->eq[i][pos2], 1);
12364 bmap = isl_basic_map_finalize(bmap);
12365 isl_space_free(space);
12366 return bmap;
12367 error:
12368 isl_space_free(space);
12369 isl_basic_map_free(bmap);
12370 return NULL;
12373 /* Add a constraint imposing that the given two dimensions are equal.
12375 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
12376 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12378 isl_basic_map *eq;
12380 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12382 bmap = isl_basic_map_intersect(bmap, eq);
12384 return bmap;
12387 /* Add a constraint imposing that the given two dimensions are equal.
12389 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
12390 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12392 isl_basic_map *bmap;
12394 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
12396 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12398 return map;
12401 /* Add a constraint imposing that the given two dimensions have opposite values.
12403 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
12404 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12406 isl_basic_map *bmap = NULL;
12407 int i;
12409 if (!map)
12410 return NULL;
12412 if (pos1 >= isl_map_dim(map, type1))
12413 isl_die(map->ctx, isl_error_invalid,
12414 "index out of bounds", goto error);
12415 if (pos2 >= isl_map_dim(map, type2))
12416 isl_die(map->ctx, isl_error_invalid,
12417 "index out of bounds", goto error);
12419 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
12420 i = isl_basic_map_alloc_equality(bmap);
12421 if (i < 0)
12422 goto error;
12423 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12424 pos1 += isl_basic_map_offset(bmap, type1);
12425 pos2 += isl_basic_map_offset(bmap, type2);
12426 isl_int_set_si(bmap->eq[i][pos1], 1);
12427 isl_int_set_si(bmap->eq[i][pos2], 1);
12428 bmap = isl_basic_map_finalize(bmap);
12430 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12432 return map;
12433 error:
12434 isl_basic_map_free(bmap);
12435 isl_map_free(map);
12436 return NULL;
12439 /* Construct a constraint imposing that the value of the first dimension is
12440 * greater than or equal to that of the second.
12442 static __isl_give isl_constraint *constraint_order_ge(
12443 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
12444 enum isl_dim_type type2, int pos2)
12446 isl_constraint *c;
12448 if (!space)
12449 return NULL;
12451 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
12453 if (pos1 >= isl_constraint_dim(c, type1))
12454 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12455 "index out of bounds", return isl_constraint_free(c));
12456 if (pos2 >= isl_constraint_dim(c, type2))
12457 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12458 "index out of bounds", return isl_constraint_free(c));
12460 if (type1 == type2 && pos1 == pos2)
12461 return c;
12463 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
12464 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
12466 return c;
12469 /* Add a constraint imposing that the value of the first dimension is
12470 * greater than or equal to that of the second.
12472 __isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
12473 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12475 isl_constraint *c;
12476 isl_space *space;
12478 if (type1 == type2 && pos1 == pos2)
12479 return bmap;
12480 space = isl_basic_map_get_space(bmap);
12481 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12482 bmap = isl_basic_map_add_constraint(bmap, c);
12484 return bmap;
12487 /* Add a constraint imposing that the value of the first dimension is
12488 * greater than or equal to that of the second.
12490 __isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
12491 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12493 isl_constraint *c;
12494 isl_space *space;
12496 if (type1 == type2 && pos1 == pos2)
12497 return map;
12498 space = isl_map_get_space(map);
12499 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12500 map = isl_map_add_constraint(map, c);
12502 return map;
12505 /* Add a constraint imposing that the value of the first dimension is
12506 * less than or equal to that of the second.
12508 __isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
12509 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12511 return isl_map_order_ge(map, type2, pos2, type1, pos1);
12514 /* Construct a basic map where the value of the first dimension is
12515 * greater than that of the second.
12517 static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
12518 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12520 isl_basic_map *bmap = NULL;
12521 int i;
12523 if (!space)
12524 return NULL;
12526 if (pos1 >= isl_space_dim(space, type1))
12527 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12528 "index out of bounds", goto error);
12529 if (pos2 >= isl_space_dim(space, type2))
12530 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12531 "index out of bounds", goto error);
12533 if (type1 == type2 && pos1 == pos2)
12534 return isl_basic_map_empty(space);
12536 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
12537 i = isl_basic_map_alloc_inequality(bmap);
12538 if (i < 0)
12539 return isl_basic_map_free(bmap);
12540 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
12541 pos1 += isl_basic_map_offset(bmap, type1);
12542 pos2 += isl_basic_map_offset(bmap, type2);
12543 isl_int_set_si(bmap->ineq[i][pos1], 1);
12544 isl_int_set_si(bmap->ineq[i][pos2], -1);
12545 isl_int_set_si(bmap->ineq[i][0], -1);
12546 bmap = isl_basic_map_finalize(bmap);
12548 return bmap;
12549 error:
12550 isl_space_free(space);
12551 isl_basic_map_free(bmap);
12552 return NULL;
12555 /* Add a constraint imposing that the value of the first dimension is
12556 * greater than that of the second.
12558 __isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
12559 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12561 isl_basic_map *gt;
12563 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12565 bmap = isl_basic_map_intersect(bmap, gt);
12567 return bmap;
12570 /* Add a constraint imposing that the value of the first dimension is
12571 * greater than that of the second.
12573 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
12574 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12576 isl_basic_map *bmap;
12578 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
12580 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12582 return map;
12585 /* Add a constraint imposing that the value of the first dimension is
12586 * smaller than that of the second.
12588 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
12589 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12591 return isl_map_order_gt(map, type2, pos2, type1, pos1);
12594 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
12595 int pos)
12597 isl_aff *div;
12598 isl_local_space *ls;
12600 if (!bmap)
12601 return NULL;
12603 if (!isl_basic_map_divs_known(bmap))
12604 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12605 "some divs are unknown", return NULL);
12607 ls = isl_basic_map_get_local_space(bmap);
12608 div = isl_local_space_get_div(ls, pos);
12609 isl_local_space_free(ls);
12611 return div;
12614 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
12615 int pos)
12617 return isl_basic_map_get_div(bset, pos);
12620 /* Plug in "subs" for dimension "type", "pos" of "bset".
12622 * Let i be the dimension to replace and let "subs" be of the form
12624 * f/d
12626 * Any integer division with a non-zero coefficient for i,
12628 * floor((a i + g)/m)
12630 * is replaced by
12632 * floor((a f + d g)/(m d))
12634 * Constraints of the form
12636 * a i + g
12638 * are replaced by
12640 * a f + d g
12642 * We currently require that "subs" is an integral expression.
12643 * Handling rational expressions may require us to add stride constraints
12644 * as we do in isl_basic_set_preimage_multi_aff.
12646 __isl_give isl_basic_set *isl_basic_set_substitute(
12647 __isl_take isl_basic_set *bset,
12648 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12650 int i;
12651 isl_int v;
12652 isl_ctx *ctx;
12654 if (bset && isl_basic_set_plain_is_empty(bset))
12655 return bset;
12657 bset = isl_basic_set_cow(bset);
12658 if (!bset || !subs)
12659 goto error;
12661 ctx = isl_basic_set_get_ctx(bset);
12662 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
12663 isl_die(ctx, isl_error_invalid,
12664 "spaces don't match", goto error);
12665 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
12666 isl_die(ctx, isl_error_unsupported,
12667 "cannot handle divs yet", goto error);
12668 if (!isl_int_is_one(subs->v->el[0]))
12669 isl_die(ctx, isl_error_invalid,
12670 "can only substitute integer expressions", goto error);
12672 pos += isl_basic_set_offset(bset, type);
12674 isl_int_init(v);
12676 for (i = 0; i < bset->n_eq; ++i) {
12677 if (isl_int_is_zero(bset->eq[i][pos]))
12678 continue;
12679 isl_int_set(v, bset->eq[i][pos]);
12680 isl_int_set_si(bset->eq[i][pos], 0);
12681 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
12682 v, subs->v->el + 1, subs->v->size - 1);
12685 for (i = 0; i < bset->n_ineq; ++i) {
12686 if (isl_int_is_zero(bset->ineq[i][pos]))
12687 continue;
12688 isl_int_set(v, bset->ineq[i][pos]);
12689 isl_int_set_si(bset->ineq[i][pos], 0);
12690 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
12691 v, subs->v->el + 1, subs->v->size - 1);
12694 for (i = 0; i < bset->n_div; ++i) {
12695 if (isl_int_is_zero(bset->div[i][1 + pos]))
12696 continue;
12697 isl_int_set(v, bset->div[i][1 + pos]);
12698 isl_int_set_si(bset->div[i][1 + pos], 0);
12699 isl_seq_combine(bset->div[i] + 1,
12700 subs->v->el[0], bset->div[i] + 1,
12701 v, subs->v->el + 1, subs->v->size - 1);
12702 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
12705 isl_int_clear(v);
12707 bset = isl_basic_set_simplify(bset);
12708 return isl_basic_set_finalize(bset);
12709 error:
12710 isl_basic_set_free(bset);
12711 return NULL;
12714 /* Plug in "subs" for dimension "type", "pos" of "set".
12716 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
12717 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12719 int i;
12721 if (set && isl_set_plain_is_empty(set))
12722 return set;
12724 set = isl_set_cow(set);
12725 if (!set || !subs)
12726 goto error;
12728 for (i = set->n - 1; i >= 0; --i) {
12729 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
12730 set = set_from_map(remove_if_empty(set_to_map(set), i));
12731 if (!set)
12732 return NULL;
12735 return set;
12736 error:
12737 isl_set_free(set);
12738 return NULL;
12741 /* Check if the range of "ma" is compatible with the domain or range
12742 * (depending on "type") of "bmap".
12744 static isl_stat check_basic_map_compatible_range_multi_aff(
12745 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
12746 __isl_keep isl_multi_aff *ma)
12748 isl_bool m;
12749 isl_space *ma_space;
12751 ma_space = isl_multi_aff_get_space(ma);
12753 m = isl_space_has_equal_params(bmap->dim, ma_space);
12754 if (m < 0)
12755 goto error;
12756 if (!m)
12757 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12758 "parameters don't match", goto error);
12759 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
12760 if (m < 0)
12761 goto error;
12762 if (!m)
12763 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12764 "spaces don't match", goto error);
12766 isl_space_free(ma_space);
12767 return isl_stat_ok;
12768 error:
12769 isl_space_free(ma_space);
12770 return isl_stat_error;
12773 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12774 * coefficients before the transformed range of dimensions,
12775 * the "n_after" coefficients after the transformed range of dimensions
12776 * and the coefficients of the other divs in "bmap".
12778 static int set_ma_divs(__isl_keep isl_basic_map *bmap,
12779 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
12781 int i;
12782 int n_param;
12783 int n_set;
12784 isl_local_space *ls;
12786 if (n_div == 0)
12787 return 0;
12789 ls = isl_aff_get_domain_local_space(ma->u.p[0]);
12790 if (!ls)
12791 return -1;
12793 n_param = isl_local_space_dim(ls, isl_dim_param);
12794 n_set = isl_local_space_dim(ls, isl_dim_set);
12795 for (i = 0; i < n_div; ++i) {
12796 int o_bmap = 0, o_ls = 0;
12798 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
12799 o_bmap += 1 + 1 + n_param;
12800 o_ls += 1 + 1 + n_param;
12801 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
12802 o_bmap += n_before;
12803 isl_seq_cpy(bmap->div[i] + o_bmap,
12804 ls->div->row[i] + o_ls, n_set);
12805 o_bmap += n_set;
12806 o_ls += n_set;
12807 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
12808 o_bmap += n_after;
12809 isl_seq_cpy(bmap->div[i] + o_bmap,
12810 ls->div->row[i] + o_ls, n_div);
12811 o_bmap += n_div;
12812 o_ls += n_div;
12813 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
12814 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
12815 goto error;
12818 isl_local_space_free(ls);
12819 return 0;
12820 error:
12821 isl_local_space_free(ls);
12822 return -1;
12825 /* How many stride constraints does "ma" enforce?
12826 * That is, how many of the affine expressions have a denominator
12827 * different from one?
12829 static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
12831 int i;
12832 int strides = 0;
12834 for (i = 0; i < ma->n; ++i)
12835 if (!isl_int_is_one(ma->u.p[i]->v->el[0]))
12836 strides++;
12838 return strides;
12841 /* For each affine expression in ma of the form
12843 * x_i = (f_i y + h_i)/m_i
12845 * with m_i different from one, add a constraint to "bmap"
12846 * of the form
12848 * f_i y + h_i = m_i alpha_i
12850 * with alpha_i an additional existentially quantified variable.
12852 * The input variables of "ma" correspond to a subset of the variables
12853 * of "bmap". There are "n_before" variables in "bmap" before this
12854 * subset and "n_after" variables after this subset.
12855 * The integer divisions of the affine expressions in "ma" are assumed
12856 * to have been aligned. There are "n_div_ma" of them and
12857 * they appear first in "bmap", straight after the "n_after" variables.
12859 static __isl_give isl_basic_map *add_ma_strides(
12860 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
12861 int n_before, int n_after, int n_div_ma)
12863 int i, k;
12864 int div;
12865 int total;
12866 int n_param;
12867 int n_in;
12869 total = isl_basic_map_total_dim(bmap);
12870 n_param = isl_multi_aff_dim(ma, isl_dim_param);
12871 n_in = isl_multi_aff_dim(ma, isl_dim_in);
12872 for (i = 0; i < ma->n; ++i) {
12873 int o_bmap = 0, o_ma = 1;
12875 if (isl_int_is_one(ma->u.p[i]->v->el[0]))
12876 continue;
12877 div = isl_basic_map_alloc_div(bmap);
12878 k = isl_basic_map_alloc_equality(bmap);
12879 if (div < 0 || k < 0)
12880 goto error;
12881 isl_int_set_si(bmap->div[div][0], 0);
12882 isl_seq_cpy(bmap->eq[k] + o_bmap,
12883 ma->u.p[i]->v->el + o_ma, 1 + n_param);
12884 o_bmap += 1 + n_param;
12885 o_ma += 1 + n_param;
12886 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
12887 o_bmap += n_before;
12888 isl_seq_cpy(bmap->eq[k] + o_bmap,
12889 ma->u.p[i]->v->el + o_ma, n_in);
12890 o_bmap += n_in;
12891 o_ma += n_in;
12892 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
12893 o_bmap += n_after;
12894 isl_seq_cpy(bmap->eq[k] + o_bmap,
12895 ma->u.p[i]->v->el + o_ma, n_div_ma);
12896 o_bmap += n_div_ma;
12897 o_ma += n_div_ma;
12898 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
12899 isl_int_neg(bmap->eq[k][1 + total], ma->u.p[i]->v->el[0]);
12900 total++;
12903 return bmap;
12904 error:
12905 isl_basic_map_free(bmap);
12906 return NULL;
12909 /* Replace the domain or range space (depending on "type) of "space" by "set".
12911 static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
12912 enum isl_dim_type type, __isl_take isl_space *set)
12914 if (type == isl_dim_in) {
12915 space = isl_space_range(space);
12916 space = isl_space_map_from_domain_and_range(set, space);
12917 } else {
12918 space = isl_space_domain(space);
12919 space = isl_space_map_from_domain_and_range(space, set);
12922 return space;
12925 /* Compute the preimage of the domain or range (depending on "type")
12926 * of "bmap" under the function represented by "ma".
12927 * In other words, plug in "ma" in the domain or range of "bmap".
12928 * The result is a basic map that lives in the same space as "bmap"
12929 * except that the domain or range has been replaced by
12930 * the domain space of "ma".
12932 * If bmap is represented by
12934 * A(p) + S u + B x + T v + C(divs) >= 0,
12936 * where u and x are input and output dimensions if type == isl_dim_out
12937 * while x and v are input and output dimensions if type == isl_dim_in,
12938 * and ma is represented by
12940 * x = D(p) + F(y) + G(divs')
12942 * then the result is
12944 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12946 * The divs in the input set are similarly adjusted.
12947 * In particular
12949 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12951 * becomes
12953 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12954 * B_i G(divs') + c_i(divs))/n_i)
12956 * If bmap is not a rational map and if F(y) involves any denominators
12958 * x_i = (f_i y + h_i)/m_i
12960 * then additional constraints are added to ensure that we only
12961 * map back integer points. That is we enforce
12963 * f_i y + h_i = m_i alpha_i
12965 * with alpha_i an additional existentially quantified variable.
12967 * We first copy over the divs from "ma".
12968 * Then we add the modified constraints and divs from "bmap".
12969 * Finally, we add the stride constraints, if needed.
12971 __isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
12972 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
12973 __isl_take isl_multi_aff *ma)
12975 int i, k;
12976 isl_space *space;
12977 isl_basic_map *res = NULL;
12978 int n_before, n_after, n_div_bmap, n_div_ma;
12979 isl_int f, c1, c2, g;
12980 isl_bool rational;
12981 int strides;
12983 isl_int_init(f);
12984 isl_int_init(c1);
12985 isl_int_init(c2);
12986 isl_int_init(g);
12988 ma = isl_multi_aff_align_divs(ma);
12989 if (!bmap || !ma)
12990 goto error;
12991 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
12992 goto error;
12994 if (type == isl_dim_in) {
12995 n_before = 0;
12996 n_after = isl_basic_map_dim(bmap, isl_dim_out);
12997 } else {
12998 n_before = isl_basic_map_dim(bmap, isl_dim_in);
12999 n_after = 0;
13001 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
13002 n_div_ma = ma->n ? isl_aff_dim(ma->u.p[0], isl_dim_div) : 0;
13004 space = isl_multi_aff_get_domain_space(ma);
13005 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
13006 rational = isl_basic_map_is_rational(bmap);
13007 strides = rational ? 0 : multi_aff_strides(ma);
13008 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
13009 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
13010 if (rational)
13011 res = isl_basic_map_set_rational(res);
13013 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
13014 if (isl_basic_map_alloc_div(res) < 0)
13015 goto error;
13017 if (set_ma_divs(res, ma, n_before, n_after, n_div_ma) < 0)
13018 goto error;
13020 for (i = 0; i < bmap->n_eq; ++i) {
13021 k = isl_basic_map_alloc_equality(res);
13022 if (k < 0)
13023 goto error;
13024 isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
13025 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13028 for (i = 0; i < bmap->n_ineq; ++i) {
13029 k = isl_basic_map_alloc_inequality(res);
13030 if (k < 0)
13031 goto error;
13032 isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
13033 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13036 for (i = 0; i < bmap->n_div; ++i) {
13037 if (isl_int_is_zero(bmap->div[i][0])) {
13038 isl_int_set_si(res->div[n_div_ma + i][0], 0);
13039 continue;
13041 isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
13042 n_before, n_after, n_div_ma, n_div_bmap,
13043 f, c1, c2, g, 1);
13046 if (strides)
13047 res = add_ma_strides(res, ma, n_before, n_after, n_div_ma);
13049 isl_int_clear(f);
13050 isl_int_clear(c1);
13051 isl_int_clear(c2);
13052 isl_int_clear(g);
13053 isl_basic_map_free(bmap);
13054 isl_multi_aff_free(ma);
13055 res = isl_basic_map_simplify(res);
13056 return isl_basic_map_finalize(res);
13057 error:
13058 isl_int_clear(f);
13059 isl_int_clear(c1);
13060 isl_int_clear(c2);
13061 isl_int_clear(g);
13062 isl_basic_map_free(bmap);
13063 isl_multi_aff_free(ma);
13064 isl_basic_map_free(res);
13065 return NULL;
13068 /* Compute the preimage of "bset" under the function represented by "ma".
13069 * In other words, plug in "ma" in "bset". The result is a basic set
13070 * that lives in the domain space of "ma".
13072 __isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
13073 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
13075 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
13078 /* Compute the preimage of the domain of "bmap" under the function
13079 * represented by "ma".
13080 * In other words, plug in "ma" in the domain of "bmap".
13081 * The result is a basic map that lives in the same space as "bmap"
13082 * except that the domain has been replaced by the domain space of "ma".
13084 __isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
13085 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13087 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
13090 /* Compute the preimage of the range of "bmap" under the function
13091 * represented by "ma".
13092 * In other words, plug in "ma" in the range of "bmap".
13093 * The result is a basic map that lives in the same space as "bmap"
13094 * except that the range has been replaced by the domain space of "ma".
13096 __isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
13097 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13099 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
13102 /* Check if the range of "ma" is compatible with the domain or range
13103 * (depending on "type") of "map".
13104 * Return isl_stat_error if anything is wrong.
13106 static isl_stat check_map_compatible_range_multi_aff(
13107 __isl_keep isl_map *map, enum isl_dim_type type,
13108 __isl_keep isl_multi_aff *ma)
13110 isl_bool m;
13111 isl_space *ma_space;
13113 ma_space = isl_multi_aff_get_space(ma);
13114 m = isl_space_tuple_is_equal(map->dim, type, ma_space, isl_dim_out);
13115 isl_space_free(ma_space);
13116 if (m < 0)
13117 return isl_stat_error;
13118 if (!m)
13119 isl_die(isl_map_get_ctx(map), isl_error_invalid,
13120 "spaces don't match", return isl_stat_error);
13121 return isl_stat_ok;
13124 /* Compute the preimage of the domain or range (depending on "type")
13125 * of "map" under the function represented by "ma".
13126 * In other words, plug in "ma" in the domain or range of "map".
13127 * The result is a map that lives in the same space as "map"
13128 * except that the domain or range has been replaced by
13129 * the domain space of "ma".
13131 * The parameters are assumed to have been aligned.
13133 static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
13134 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13136 int i;
13137 isl_space *space;
13139 map = isl_map_cow(map);
13140 ma = isl_multi_aff_align_divs(ma);
13141 if (!map || !ma)
13142 goto error;
13143 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
13144 goto error;
13146 for (i = 0; i < map->n; ++i) {
13147 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
13148 isl_multi_aff_copy(ma));
13149 if (!map->p[i])
13150 goto error;
13153 space = isl_multi_aff_get_domain_space(ma);
13154 space = isl_space_set(isl_map_get_space(map), type, space);
13156 isl_space_free(map->dim);
13157 map->dim = space;
13158 if (!map->dim)
13159 goto error;
13161 isl_multi_aff_free(ma);
13162 if (map->n > 1)
13163 ISL_F_CLR(map, ISL_MAP_DISJOINT);
13164 ISL_F_CLR(map, ISL_SET_NORMALIZED);
13165 return map;
13166 error:
13167 isl_multi_aff_free(ma);
13168 isl_map_free(map);
13169 return NULL;
13172 /* Compute the preimage of the domain or range (depending on "type")
13173 * of "map" under the function represented by "ma".
13174 * In other words, plug in "ma" in the domain or range of "map".
13175 * The result is a map that lives in the same space as "map"
13176 * except that the domain or range has been replaced by
13177 * the domain space of "ma".
13179 __isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
13180 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13182 isl_bool aligned;
13184 if (!map || !ma)
13185 goto error;
13187 aligned = isl_map_space_has_equal_params(map, ma->space);
13188 if (aligned < 0)
13189 goto error;
13190 if (aligned)
13191 return map_preimage_multi_aff(map, type, ma);
13193 if (isl_map_check_named_params(map) < 0)
13194 goto error;
13195 if (!isl_space_has_named_params(ma->space))
13196 isl_die(map->ctx, isl_error_invalid,
13197 "unaligned unnamed parameters", goto error);
13198 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
13199 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
13201 return map_preimage_multi_aff(map, type, ma);
13202 error:
13203 isl_multi_aff_free(ma);
13204 return isl_map_free(map);
13207 /* Compute the preimage of "set" under the function represented by "ma".
13208 * In other words, plug in "ma" in "set". The result is a set
13209 * that lives in the domain space of "ma".
13211 __isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
13212 __isl_take isl_multi_aff *ma)
13214 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
13217 /* Compute the preimage of the domain of "map" under the function
13218 * represented by "ma".
13219 * In other words, plug in "ma" in the domain of "map".
13220 * The result is a map that lives in the same space as "map"
13221 * except that the domain has been replaced by the domain space of "ma".
13223 __isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
13224 __isl_take isl_multi_aff *ma)
13226 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
13229 /* Compute the preimage of the range of "map" under the function
13230 * represented by "ma".
13231 * In other words, plug in "ma" in the range of "map".
13232 * The result is a map that lives in the same space as "map"
13233 * except that the range has been replaced by the domain space of "ma".
13235 __isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
13236 __isl_take isl_multi_aff *ma)
13238 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
13241 /* Compute the preimage of "map" under the function represented by "pma".
13242 * In other words, plug in "pma" in the domain or range of "map".
13243 * The result is a map that lives in the same space as "map",
13244 * except that the space of type "type" has been replaced by
13245 * the domain space of "pma".
13247 * The parameters of "map" and "pma" are assumed to have been aligned.
13249 static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
13250 __isl_take isl_map *map, enum isl_dim_type type,
13251 __isl_take isl_pw_multi_aff *pma)
13253 int i;
13254 isl_map *res;
13256 if (!pma)
13257 goto error;
13259 if (pma->n == 0) {
13260 isl_pw_multi_aff_free(pma);
13261 res = isl_map_empty(isl_map_get_space(map));
13262 isl_map_free(map);
13263 return res;
13266 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13267 isl_multi_aff_copy(pma->p[0].maff));
13268 if (type == isl_dim_in)
13269 res = isl_map_intersect_domain(res,
13270 isl_map_copy(pma->p[0].set));
13271 else
13272 res = isl_map_intersect_range(res,
13273 isl_map_copy(pma->p[0].set));
13275 for (i = 1; i < pma->n; ++i) {
13276 isl_map *res_i;
13278 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13279 isl_multi_aff_copy(pma->p[i].maff));
13280 if (type == isl_dim_in)
13281 res_i = isl_map_intersect_domain(res_i,
13282 isl_map_copy(pma->p[i].set));
13283 else
13284 res_i = isl_map_intersect_range(res_i,
13285 isl_map_copy(pma->p[i].set));
13286 res = isl_map_union(res, res_i);
13289 isl_pw_multi_aff_free(pma);
13290 isl_map_free(map);
13291 return res;
13292 error:
13293 isl_pw_multi_aff_free(pma);
13294 isl_map_free(map);
13295 return NULL;
13298 /* Compute the preimage of "map" under the function represented by "pma".
13299 * In other words, plug in "pma" in the domain or range of "map".
13300 * The result is a map that lives in the same space as "map",
13301 * except that the space of type "type" has been replaced by
13302 * the domain space of "pma".
13304 __isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
13305 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
13307 isl_bool aligned;
13309 if (!map || !pma)
13310 goto error;
13312 aligned = isl_map_space_has_equal_params(map, pma->dim);
13313 if (aligned < 0)
13314 goto error;
13315 if (aligned)
13316 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13318 if (isl_map_check_named_params(map) < 0)
13319 goto error;
13320 if (isl_pw_multi_aff_check_named_params(pma) < 0)
13321 goto error;
13322 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
13323 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
13325 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13326 error:
13327 isl_pw_multi_aff_free(pma);
13328 return isl_map_free(map);
13331 /* Compute the preimage of "set" under the function represented by "pma".
13332 * In other words, plug in "pma" in "set". The result is a set
13333 * that lives in the domain space of "pma".
13335 __isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
13336 __isl_take isl_pw_multi_aff *pma)
13338 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
13341 /* Compute the preimage of the domain of "map" under the function
13342 * represented by "pma".
13343 * In other words, plug in "pma" in the domain of "map".
13344 * The result is a map that lives in the same space as "map",
13345 * except that domain space has been replaced by the domain space of "pma".
13347 __isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
13348 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13350 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
13353 /* Compute the preimage of the range of "map" under the function
13354 * represented by "pma".
13355 * In other words, plug in "pma" in the range of "map".
13356 * The result is a map that lives in the same space as "map",
13357 * except that range space has been replaced by the domain space of "pma".
13359 __isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
13360 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13362 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
13365 /* Compute the preimage of "map" under the function represented by "mpa".
13366 * In other words, plug in "mpa" in the domain or range of "map".
13367 * The result is a map that lives in the same space as "map",
13368 * except that the space of type "type" has been replaced by
13369 * the domain space of "mpa".
13371 * If the map does not involve any constraints that refer to the
13372 * dimensions of the substituted space, then the only possible
13373 * effect of "mpa" on the map is to map the space to a different space.
13374 * We create a separate isl_multi_aff to effectuate this change
13375 * in order to avoid spurious splitting of the map along the pieces
13376 * of "mpa".
13377 * If "mpa" has a non-trivial explicit domain, however,
13378 * then the full substitution should be performed.
13380 __isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
13381 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
13383 int n;
13384 isl_bool full;
13385 isl_pw_multi_aff *pma;
13387 if (!map || !mpa)
13388 goto error;
13390 n = isl_map_dim(map, type);
13391 full = isl_map_involves_dims(map, type, 0, n);
13392 if (full >= 0 && !full)
13393 full = isl_multi_pw_aff_has_non_trivial_domain(mpa);
13394 if (full < 0)
13395 goto error;
13396 if (!full) {
13397 isl_space *space;
13398 isl_multi_aff *ma;
13400 space = isl_multi_pw_aff_get_space(mpa);
13401 isl_multi_pw_aff_free(mpa);
13402 ma = isl_multi_aff_zero(space);
13403 return isl_map_preimage_multi_aff(map, type, ma);
13406 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
13407 return isl_map_preimage_pw_multi_aff(map, type, pma);
13408 error:
13409 isl_map_free(map);
13410 isl_multi_pw_aff_free(mpa);
13411 return NULL;
13414 /* Compute the preimage of "map" under the function represented by "mpa".
13415 * In other words, plug in "mpa" in the domain "map".
13416 * The result is a map that lives in the same space as "map",
13417 * except that domain space has been replaced by the domain space of "mpa".
13419 __isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
13420 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
13422 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
13425 /* Compute the preimage of "set" by the function represented by "mpa".
13426 * In other words, plug in "mpa" in "set".
13428 __isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
13429 __isl_take isl_multi_pw_aff *mpa)
13431 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);
13434 /* Return a copy of the equality constraints of "bset" as a matrix.
13436 __isl_give isl_mat *isl_basic_set_extract_equalities(
13437 __isl_keep isl_basic_set *bset)
13439 isl_ctx *ctx;
13440 unsigned total;
13442 if (!bset)
13443 return NULL;
13445 ctx = isl_basic_set_get_ctx(bset);
13446 total = 1 + isl_basic_set_dim(bset, isl_dim_all);
13447 return isl_mat_sub_alloc6(ctx, bset->eq, 0, bset->n_eq, 0, total);
13450 /* Are the "n" "coefficients" starting at "first" of the integer division
13451 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13452 * to each other?
13453 * The "coefficient" at position 0 is the denominator.
13454 * The "coefficient" at position 1 is the constant term.
13456 isl_bool isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map *bmap1,
13457 int pos1, __isl_keep isl_basic_map *bmap2, int pos2,
13458 unsigned first, unsigned n)
13460 if (isl_basic_map_check_range(bmap1, isl_dim_div, pos1, 1) < 0)
13461 return isl_bool_error;
13462 if (isl_basic_map_check_range(bmap2, isl_dim_div, pos2, 1) < 0)
13463 return isl_bool_error;
13464 return isl_seq_eq(bmap1->div[pos1] + first,
13465 bmap2->div[pos2] + first, n);
13468 /* Are the integer division expressions at position "pos1" in "bmap1" and
13469 * "pos2" in "bmap2" equal to each other, except that the constant terms
13470 * are different?
13472 isl_bool isl_basic_map_equal_div_expr_except_constant(
13473 __isl_keep isl_basic_map *bmap1, int pos1,
13474 __isl_keep isl_basic_map *bmap2, int pos2)
13476 isl_bool equal;
13477 unsigned total;
13479 if (!bmap1 || !bmap2)
13480 return isl_bool_error;
13481 total = isl_basic_map_total_dim(bmap1);
13482 if (total != isl_basic_map_total_dim(bmap2))
13483 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
13484 "incomparable div expressions", return isl_bool_error);
13485 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13486 0, 1);
13487 if (equal < 0 || !equal)
13488 return equal;
13489 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13490 1, 1);
13491 if (equal < 0 || equal)
13492 return isl_bool_not(equal);
13493 return isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13494 2, total);
13497 /* Replace the numerator of the constant term of the integer division
13498 * expression at position "div" in "bmap" by "value".
13499 * The caller guarantees that this does not change the meaning
13500 * of the input.
13502 __isl_give isl_basic_map *isl_basic_map_set_div_expr_constant_num_si_inplace(
13503 __isl_take isl_basic_map *bmap, int div, int value)
13505 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
13506 return isl_basic_map_free(bmap);
13508 isl_int_set_si(bmap->div[div][1], value);
13510 return bmap;
13513 /* Is the point "inner" internal to inequality constraint "ineq"
13514 * of "bset"?
13515 * The point is considered to be internal to the inequality constraint,
13516 * if it strictly lies on the positive side of the inequality constraint,
13517 * or if it lies on the constraint and the constraint is lexico-positive.
13519 static isl_bool is_internal(__isl_keep isl_vec *inner,
13520 __isl_keep isl_basic_set *bset, int ineq)
13522 isl_ctx *ctx;
13523 int pos;
13524 unsigned total;
13526 if (!inner || !bset)
13527 return isl_bool_error;
13529 ctx = isl_basic_set_get_ctx(bset);
13530 isl_seq_inner_product(inner->el, bset->ineq[ineq], inner->size,
13531 &ctx->normalize_gcd);
13532 if (!isl_int_is_zero(ctx->normalize_gcd))
13533 return isl_int_is_nonneg(ctx->normalize_gcd);
13535 total = isl_basic_set_dim(bset, isl_dim_all);
13536 pos = isl_seq_first_non_zero(bset->ineq[ineq] + 1, total);
13537 return isl_int_is_pos(bset->ineq[ineq][1 + pos]);
13540 /* Tighten the inequality constraints of "bset" that are outward with respect
13541 * to the point "vec".
13542 * That is, tighten the constraints that are not satisfied by "vec".
13544 * "vec" is a point internal to some superset S of "bset" that is used
13545 * to make the subsets of S disjoint, by tightening one half of the constraints
13546 * that separate two subsets. In particular, the constraints of S
13547 * are all satisfied by "vec" and should not be tightened.
13548 * Of the internal constraints, those that have "vec" on the outside
13549 * are tightened. The shared facet is included in the adjacent subset
13550 * with the opposite constraint.
13551 * For constraints that saturate "vec", this criterion cannot be used
13552 * to determine which of the two sides should be tightened.
13553 * Instead, the sign of the first non-zero coefficient is used
13554 * to make this choice. Note that this second criterion is never used
13555 * on the constraints of S since "vec" is interior to "S".
13557 __isl_give isl_basic_set *isl_basic_set_tighten_outward(
13558 __isl_take isl_basic_set *bset, __isl_keep isl_vec *vec)
13560 int j;
13562 bset = isl_basic_set_cow(bset);
13563 if (!bset)
13564 return NULL;
13565 for (j = 0; j < bset->n_ineq; ++j) {
13566 isl_bool internal;
13568 internal = is_internal(vec, bset, j);
13569 if (internal < 0)
13570 return isl_basic_set_free(bset);
13571 if (internal)
13572 continue;
13573 isl_int_sub_ui(bset->ineq[j][0], bset->ineq[j][0], 1);
13576 return bset;
13579 /* Replace the variables x of type "type" starting at "first" in "bmap"
13580 * by x' with x = M x' with M the matrix trans.
13581 * That is, replace the corresponding coefficients c by c M.
13583 * The transformation matrix should be a square matrix.
13585 __isl_give isl_basic_map *isl_basic_map_transform_dims(
13586 __isl_take isl_basic_map *bmap, enum isl_dim_type type, unsigned first,
13587 __isl_take isl_mat *trans)
13589 unsigned pos;
13591 bmap = isl_basic_map_cow(bmap);
13592 if (!bmap || !trans)
13593 goto error;
13595 if (trans->n_row != trans->n_col)
13596 isl_die(trans->ctx, isl_error_invalid,
13597 "expecting square transformation matrix", goto error);
13598 if (first + trans->n_row > isl_basic_map_dim(bmap, type))
13599 isl_die(trans->ctx, isl_error_invalid,
13600 "oversized transformation matrix", goto error);
13602 pos = isl_basic_map_offset(bmap, type) + first;
13604 if (isl_mat_sub_transform(bmap->eq, bmap->n_eq, pos,
13605 isl_mat_copy(trans)) < 0)
13606 goto error;
13607 if (isl_mat_sub_transform(bmap->ineq, bmap->n_ineq, pos,
13608 isl_mat_copy(trans)) < 0)
13609 goto error;
13610 if (isl_mat_sub_transform(bmap->div, bmap->n_div, 1 + pos,
13611 isl_mat_copy(trans)) < 0)
13612 goto error;
13614 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
13615 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
13617 isl_mat_free(trans);
13618 return bmap;
13619 error:
13620 isl_mat_free(trans);
13621 isl_basic_map_free(bmap);
13622 return NULL;
13625 /* Replace the variables x of type "type" starting at "first" in "bset"
13626 * by x' with x = M x' with M the matrix trans.
13627 * That is, replace the corresponding coefficients c by c M.
13629 * The transformation matrix should be a square matrix.
13631 __isl_give isl_basic_set *isl_basic_set_transform_dims(
13632 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned first,
13633 __isl_take isl_mat *trans)
13635 return isl_basic_map_transform_dims(bset, type, first, trans);