isl_map.c: map_apply_range: rename "dim" variable to "space"
[isl.git] / isl_map.c
blobbf275c7ed4b64aeca9393ba249932bdaeadad551
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(__isl_keep 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 __isl_give isl_basic_map *basic_map_init(isl_ctx *ctx,
1108 __isl_take 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 __isl_give isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *space,
1190 unsigned extra, unsigned n_eq, unsigned n_ineq)
1192 struct isl_basic_map *bmap;
1194 if (!space)
1195 return NULL;
1196 bmap = isl_calloc_type(space->ctx, struct isl_basic_map);
1197 if (!bmap)
1198 goto error;
1199 bmap->dim = space;
1201 return basic_map_init(space->ctx, bmap, extra, n_eq, n_ineq);
1202 error:
1203 isl_space_free(space);
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_NO_REDUNDANT);
1443 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1444 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1445 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1446 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1447 isl_int *t;
1448 int j = isl_basic_map_alloc_inequality(bmap);
1449 if (j < 0)
1450 return -1;
1451 t = bmap->ineq[j];
1452 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1453 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1454 bmap->eq[-1] = t;
1455 bmap->n_eq++;
1456 bmap->n_ineq--;
1457 bmap->eq--;
1458 return 0;
1460 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
1461 bmap->extra - bmap->n_div);
1462 return bmap->n_eq++;
1465 int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
1467 return isl_basic_map_alloc_equality(bset_to_bmap(bset));
1470 int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
1472 if (!bmap)
1473 return -1;
1474 isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
1475 bmap->n_eq -= n;
1476 return 0;
1479 int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
1481 return isl_basic_map_free_equality(bset_to_bmap(bset), n);
1484 int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
1486 isl_int *t;
1487 if (!bmap)
1488 return -1;
1489 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1491 if (pos != bmap->n_eq - 1) {
1492 t = bmap->eq[pos];
1493 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
1494 bmap->eq[bmap->n_eq - 1] = t;
1496 bmap->n_eq--;
1497 return 0;
1500 /* Turn inequality "pos" of "bmap" into an equality.
1502 * In particular, we move the inequality in front of the equalities
1503 * and move the last inequality in the position of the moved inequality.
1504 * Note that isl_tab_make_equalities_explicit depends on this particular
1505 * change in the ordering of the constraints.
1507 void isl_basic_map_inequality_to_equality(
1508 struct isl_basic_map *bmap, unsigned pos)
1510 isl_int *t;
1512 t = bmap->ineq[pos];
1513 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1514 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1515 bmap->eq[-1] = t;
1516 bmap->n_eq++;
1517 bmap->n_ineq--;
1518 bmap->eq--;
1519 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1520 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1521 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1522 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1525 static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
1527 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1530 int isl_basic_map_alloc_inequality(__isl_keep isl_basic_map *bmap)
1532 struct isl_ctx *ctx;
1533 if (!bmap)
1534 return -1;
1535 ctx = bmap->ctx;
1536 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1537 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1538 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1539 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1540 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1541 isl_seq_clr(bmap->ineq[bmap->n_ineq] +
1542 1 + isl_basic_map_total_dim(bmap),
1543 bmap->extra - bmap->n_div);
1544 return bmap->n_ineq++;
1547 int isl_basic_set_alloc_inequality(__isl_keep isl_basic_set *bset)
1549 return isl_basic_map_alloc_inequality(bset_to_bmap(bset));
1552 int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
1554 if (!bmap)
1555 return -1;
1556 isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
1557 bmap->n_ineq -= n;
1558 return 0;
1561 int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
1563 return isl_basic_map_free_inequality(bset_to_bmap(bset), n);
1566 int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
1568 isl_int *t;
1569 if (!bmap)
1570 return -1;
1571 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1573 if (pos != bmap->n_ineq - 1) {
1574 t = bmap->ineq[pos];
1575 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1576 bmap->ineq[bmap->n_ineq - 1] = t;
1577 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1579 bmap->n_ineq--;
1580 return 0;
1583 int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
1585 return isl_basic_map_drop_inequality(bset_to_bmap(bset), pos);
1588 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1589 isl_int *eq)
1591 int k;
1593 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1594 if (!bmap)
1595 return NULL;
1596 k = isl_basic_map_alloc_equality(bmap);
1597 if (k < 0)
1598 goto error;
1599 isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
1600 return bmap;
1601 error:
1602 isl_basic_map_free(bmap);
1603 return NULL;
1606 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1607 isl_int *eq)
1609 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset), eq));
1612 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1613 isl_int *ineq)
1615 int k;
1617 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1618 if (!bmap)
1619 return NULL;
1620 k = isl_basic_map_alloc_inequality(bmap);
1621 if (k < 0)
1622 goto error;
1623 isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
1624 return bmap;
1625 error:
1626 isl_basic_map_free(bmap);
1627 return NULL;
1630 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1631 isl_int *ineq)
1633 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset), ineq));
1636 int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
1638 if (!bmap)
1639 return -1;
1640 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1641 isl_seq_clr(bmap->div[bmap->n_div] +
1642 1 + 1 + isl_basic_map_total_dim(bmap),
1643 bmap->extra - bmap->n_div);
1644 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1645 return bmap->n_div++;
1648 int isl_basic_set_alloc_div(struct isl_basic_set *bset)
1650 return isl_basic_map_alloc_div(bset_to_bmap(bset));
1653 /* Check that there are "n" dimensions of type "type" starting at "first"
1654 * in "bmap".
1656 static isl_stat isl_basic_map_check_range(__isl_keep isl_basic_map *bmap,
1657 enum isl_dim_type type, unsigned first, unsigned n)
1659 unsigned dim;
1661 if (!bmap)
1662 return isl_stat_error;
1663 dim = isl_basic_map_dim(bmap, type);
1664 if (first + n > dim || first + n < first)
1665 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1666 "position or range out of bounds",
1667 return isl_stat_error);
1668 return isl_stat_ok;
1671 /* Insert an extra integer division, prescribed by "div", to "bmap"
1672 * at (integer division) position "pos".
1674 * The integer division is first added at the end and then moved
1675 * into the right position.
1677 __isl_give isl_basic_map *isl_basic_map_insert_div(
1678 __isl_take isl_basic_map *bmap, int pos, __isl_keep isl_vec *div)
1680 int i, k;
1682 bmap = isl_basic_map_cow(bmap);
1683 if (!bmap || !div)
1684 return isl_basic_map_free(bmap);
1686 if (div->size != 1 + 1 + isl_basic_map_dim(bmap, isl_dim_all))
1687 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1688 "unexpected size", return isl_basic_map_free(bmap));
1689 if (isl_basic_map_check_range(bmap, isl_dim_div, pos, 0) < 0)
1690 return isl_basic_map_free(bmap);
1692 bmap = isl_basic_map_extend_space(bmap,
1693 isl_basic_map_get_space(bmap), 1, 0, 2);
1694 k = isl_basic_map_alloc_div(bmap);
1695 if (k < 0)
1696 return isl_basic_map_free(bmap);
1697 isl_seq_cpy(bmap->div[k], div->el, div->size);
1698 isl_int_set_si(bmap->div[k][div->size], 0);
1700 for (i = k; i > pos; --i)
1701 isl_basic_map_swap_div(bmap, i, i - 1);
1703 return bmap;
1706 isl_stat isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
1708 if (!bmap)
1709 return isl_stat_error;
1710 isl_assert(bmap->ctx, n <= bmap->n_div, return isl_stat_error);
1711 bmap->n_div -= n;
1712 return isl_stat_ok;
1715 /* Copy constraint from src to dst, putting the vars of src at offset
1716 * dim_off in dst and the divs of src at offset div_off in dst.
1717 * If both sets are actually map, then dim_off applies to the input
1718 * variables.
1720 static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
1721 struct isl_basic_map *src_map, isl_int *src,
1722 unsigned in_off, unsigned out_off, unsigned div_off)
1724 unsigned src_nparam = isl_basic_map_dim(src_map, isl_dim_param);
1725 unsigned dst_nparam = isl_basic_map_dim(dst_map, isl_dim_param);
1726 unsigned src_in = isl_basic_map_dim(src_map, isl_dim_in);
1727 unsigned dst_in = isl_basic_map_dim(dst_map, isl_dim_in);
1728 unsigned src_out = isl_basic_map_dim(src_map, isl_dim_out);
1729 unsigned dst_out = isl_basic_map_dim(dst_map, isl_dim_out);
1730 isl_int_set(dst[0], src[0]);
1731 isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
1732 if (dst_nparam > src_nparam)
1733 isl_seq_clr(dst+1+src_nparam,
1734 dst_nparam - src_nparam);
1735 isl_seq_clr(dst+1+dst_nparam, in_off);
1736 isl_seq_cpy(dst+1+dst_nparam+in_off,
1737 src+1+src_nparam,
1738 isl_min(dst_in-in_off, src_in));
1739 if (dst_in-in_off > src_in)
1740 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
1741 dst_in - in_off - src_in);
1742 isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
1743 isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
1744 src+1+src_nparam+src_in,
1745 isl_min(dst_out-out_off, src_out));
1746 if (dst_out-out_off > src_out)
1747 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
1748 dst_out - out_off - src_out);
1749 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
1750 isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
1751 src+1+src_nparam+src_in+src_out,
1752 isl_min(dst_map->extra-div_off, src_map->n_div));
1753 if (dst_map->n_div-div_off > src_map->n_div)
1754 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
1755 div_off+src_map->n_div,
1756 dst_map->n_div - div_off - src_map->n_div);
1759 static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
1760 struct isl_basic_map *src_map, isl_int *src,
1761 unsigned in_off, unsigned out_off, unsigned div_off)
1763 isl_int_set(dst[0], src[0]);
1764 copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
1767 static __isl_give isl_basic_map *add_constraints(
1768 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2,
1769 unsigned i_pos, unsigned o_pos)
1771 int i;
1772 unsigned div_off;
1774 if (!bmap1 || !bmap2)
1775 goto error;
1777 div_off = bmap1->n_div;
1779 for (i = 0; i < bmap2->n_eq; ++i) {
1780 int i1 = isl_basic_map_alloc_equality(bmap1);
1781 if (i1 < 0)
1782 goto error;
1783 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
1784 i_pos, o_pos, div_off);
1787 for (i = 0; i < bmap2->n_ineq; ++i) {
1788 int i1 = isl_basic_map_alloc_inequality(bmap1);
1789 if (i1 < 0)
1790 goto error;
1791 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
1792 i_pos, o_pos, div_off);
1795 for (i = 0; i < bmap2->n_div; ++i) {
1796 int i1 = isl_basic_map_alloc_div(bmap1);
1797 if (i1 < 0)
1798 goto error;
1799 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
1800 i_pos, o_pos, div_off);
1803 isl_basic_map_free(bmap2);
1805 return bmap1;
1807 error:
1808 isl_basic_map_free(bmap1);
1809 isl_basic_map_free(bmap2);
1810 return NULL;
1813 struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
1814 struct isl_basic_set *bset2, unsigned pos)
1816 return bset_from_bmap(add_constraints(bset_to_bmap(bset1),
1817 bset_to_bmap(bset2), 0, pos));
1820 __isl_give isl_basic_map *isl_basic_map_extend_space(
1821 __isl_take isl_basic_map *base, __isl_take isl_space *space,
1822 unsigned extra, unsigned n_eq, unsigned n_ineq)
1824 struct isl_basic_map *ext;
1825 unsigned flags;
1826 int dims_ok;
1828 if (!space)
1829 goto error;
1831 if (!base)
1832 goto error;
1834 dims_ok = isl_space_is_equal(base->dim, space) &&
1835 base->extra >= base->n_div + extra;
1837 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1838 room_for_ineq(base, n_ineq)) {
1839 isl_space_free(space);
1840 return base;
1843 isl_assert(base->ctx, base->dim->nparam <= space->nparam, goto error);
1844 isl_assert(base->ctx, base->dim->n_in <= space->n_in, goto error);
1845 isl_assert(base->ctx, base->dim->n_out <= space->n_out, goto error);
1846 extra += base->extra;
1847 n_eq += base->n_eq;
1848 n_ineq += base->n_ineq;
1850 ext = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1851 space = NULL;
1852 if (!ext)
1853 goto error;
1855 if (dims_ok)
1856 ext->sample = isl_vec_copy(base->sample);
1857 flags = base->flags;
1858 ext = add_constraints(ext, base, 0, 0);
1859 if (ext) {
1860 ext->flags = flags;
1861 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
1864 return ext;
1866 error:
1867 isl_space_free(space);
1868 isl_basic_map_free(base);
1869 return NULL;
1872 __isl_give isl_basic_set *isl_basic_set_extend_space(
1873 __isl_take isl_basic_set *base,
1874 __isl_take isl_space *dim, unsigned extra,
1875 unsigned n_eq, unsigned n_ineq)
1877 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base),
1878 dim, extra, n_eq, n_ineq));
1881 struct isl_basic_map *isl_basic_map_extend_constraints(
1882 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
1884 if (!base)
1885 return NULL;
1886 return isl_basic_map_extend_space(base, isl_space_copy(base->dim),
1887 0, n_eq, n_ineq);
1890 struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
1891 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
1892 unsigned n_eq, unsigned n_ineq)
1894 struct isl_basic_map *bmap;
1895 isl_space *dim;
1897 if (!base)
1898 return NULL;
1899 dim = isl_space_alloc(base->ctx, nparam, n_in, n_out);
1900 if (!dim)
1901 goto error;
1903 bmap = isl_basic_map_extend_space(base, dim, extra, n_eq, n_ineq);
1904 return bmap;
1905 error:
1906 isl_basic_map_free(base);
1907 return NULL;
1910 struct isl_basic_set *isl_basic_set_extend(struct isl_basic_set *base,
1911 unsigned nparam, unsigned dim, unsigned extra,
1912 unsigned n_eq, unsigned n_ineq)
1914 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base),
1915 nparam, 0, dim, extra, n_eq, n_ineq));
1918 struct isl_basic_set *isl_basic_set_extend_constraints(
1919 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1921 isl_basic_map *bmap = bset_to_bmap(base);
1922 bmap = isl_basic_map_extend_constraints(bmap, n_eq, n_ineq);
1923 return bset_from_bmap(bmap);
1926 __isl_give isl_basic_set *isl_basic_set_cow(__isl_take isl_basic_set *bset)
1928 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset)));
1931 __isl_give isl_basic_map *isl_basic_map_cow(__isl_take isl_basic_map *bmap)
1933 if (!bmap)
1934 return NULL;
1936 if (bmap->ref > 1) {
1937 bmap->ref--;
1938 bmap = isl_basic_map_dup(bmap);
1940 if (bmap) {
1941 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
1942 ISL_F_CLR(bmap, ISL_BASIC_MAP_REDUCED_COEFFICIENTS);
1944 return bmap;
1947 /* Clear all cached information in "map", either because it is about
1948 * to be modified or because it is being freed.
1949 * Always return the same pointer that is passed in.
1950 * This is needed for the use in isl_map_free.
1952 static __isl_give isl_map *clear_caches(__isl_take isl_map *map)
1954 isl_basic_map_free(map->cached_simple_hull[0]);
1955 isl_basic_map_free(map->cached_simple_hull[1]);
1956 map->cached_simple_hull[0] = NULL;
1957 map->cached_simple_hull[1] = NULL;
1958 return map;
1961 __isl_give isl_set *isl_set_cow(__isl_take isl_set *set)
1963 return isl_map_cow(set);
1966 /* Return an isl_map that is equal to "map" and that has only
1967 * a single reference.
1969 * If the original input already has only one reference, then
1970 * simply return it, but clear all cached information, since
1971 * it may be rendered invalid by the operations that will be
1972 * performed on the result.
1974 * Otherwise, create a duplicate (without any cached information).
1976 __isl_give isl_map *isl_map_cow(__isl_take isl_map *map)
1978 if (!map)
1979 return NULL;
1981 if (map->ref == 1)
1982 return clear_caches(map);
1983 map->ref--;
1984 return isl_map_dup(map);
1987 static void swap_vars(struct isl_blk blk, isl_int *a,
1988 unsigned a_len, unsigned b_len)
1990 isl_seq_cpy(blk.data, a+a_len, b_len);
1991 isl_seq_cpy(blk.data+b_len, a, a_len);
1992 isl_seq_cpy(a, blk.data, b_len+a_len);
1995 static __isl_give isl_basic_map *isl_basic_map_swap_vars(
1996 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
1998 int i;
1999 struct isl_blk blk;
2001 if (!bmap)
2002 goto error;
2004 isl_assert(bmap->ctx,
2005 pos + n1 + n2 <= 1 + isl_basic_map_total_dim(bmap), goto error);
2007 if (n1 == 0 || n2 == 0)
2008 return bmap;
2010 bmap = isl_basic_map_cow(bmap);
2011 if (!bmap)
2012 return NULL;
2014 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
2015 if (isl_blk_is_error(blk))
2016 goto error;
2018 for (i = 0; i < bmap->n_eq; ++i)
2019 swap_vars(blk,
2020 bmap->eq[i] + pos, n1, n2);
2022 for (i = 0; i < bmap->n_ineq; ++i)
2023 swap_vars(blk,
2024 bmap->ineq[i] + pos, n1, n2);
2026 for (i = 0; i < bmap->n_div; ++i)
2027 swap_vars(blk,
2028 bmap->div[i]+1 + pos, n1, n2);
2030 isl_blk_free(bmap->ctx, blk);
2032 ISL_F_CLR(bmap, ISL_BASIC_SET_SORTED);
2033 bmap = isl_basic_map_gauss(bmap, NULL);
2034 return isl_basic_map_finalize(bmap);
2035 error:
2036 isl_basic_map_free(bmap);
2037 return NULL;
2040 __isl_give isl_basic_map *isl_basic_map_set_to_empty(
2041 __isl_take isl_basic_map *bmap)
2043 int i = 0;
2044 unsigned total;
2045 if (!bmap)
2046 goto error;
2047 total = isl_basic_map_total_dim(bmap);
2048 if (isl_basic_map_free_div(bmap, bmap->n_div) < 0)
2049 return isl_basic_map_free(bmap);
2050 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
2051 if (bmap->n_eq > 0)
2052 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
2053 else {
2054 i = isl_basic_map_alloc_equality(bmap);
2055 if (i < 0)
2056 goto error;
2058 isl_int_set_si(bmap->eq[i][0], 1);
2059 isl_seq_clr(bmap->eq[i]+1, total);
2060 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
2061 isl_vec_free(bmap->sample);
2062 bmap->sample = NULL;
2063 return isl_basic_map_finalize(bmap);
2064 error:
2065 isl_basic_map_free(bmap);
2066 return NULL;
2069 __isl_give isl_basic_set *isl_basic_set_set_to_empty(
2070 __isl_take isl_basic_set *bset)
2072 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset)));
2075 __isl_give isl_basic_map *isl_basic_map_set_rational(
2076 __isl_take isl_basic_map *bmap)
2078 if (!bmap)
2079 return NULL;
2081 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
2082 return bmap;
2084 bmap = isl_basic_map_cow(bmap);
2085 if (!bmap)
2086 return NULL;
2088 ISL_F_SET(bmap, ISL_BASIC_MAP_RATIONAL);
2090 return isl_basic_map_finalize(bmap);
2093 __isl_give isl_basic_set *isl_basic_set_set_rational(
2094 __isl_take isl_basic_set *bset)
2096 return isl_basic_map_set_rational(bset);
2099 __isl_give isl_basic_set *isl_basic_set_set_integral(
2100 __isl_take isl_basic_set *bset)
2102 if (!bset)
2103 return NULL;
2105 if (!ISL_F_ISSET(bset, ISL_BASIC_MAP_RATIONAL))
2106 return bset;
2108 bset = isl_basic_set_cow(bset);
2109 if (!bset)
2110 return NULL;
2112 ISL_F_CLR(bset, ISL_BASIC_MAP_RATIONAL);
2114 return isl_basic_set_finalize(bset);
2117 __isl_give isl_map *isl_map_set_rational(__isl_take isl_map *map)
2119 int i;
2121 map = isl_map_cow(map);
2122 if (!map)
2123 return NULL;
2124 for (i = 0; i < map->n; ++i) {
2125 map->p[i] = isl_basic_map_set_rational(map->p[i]);
2126 if (!map->p[i])
2127 goto error;
2129 return map;
2130 error:
2131 isl_map_free(map);
2132 return NULL;
2135 __isl_give isl_set *isl_set_set_rational(__isl_take isl_set *set)
2137 return isl_map_set_rational(set);
2140 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
2141 * of "bmap").
2143 static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
2145 isl_int *t = bmap->div[a];
2146 bmap->div[a] = bmap->div[b];
2147 bmap->div[b] = t;
2150 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
2151 * div definitions accordingly.
2153 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
2155 int i;
2156 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
2158 swap_div(bmap, a, b);
2160 for (i = 0; i < bmap->n_eq; ++i)
2161 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
2163 for (i = 0; i < bmap->n_ineq; ++i)
2164 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
2166 for (i = 0; i < bmap->n_div; ++i)
2167 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
2168 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
2171 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
2172 * div definitions accordingly.
2174 void isl_basic_set_swap_div(__isl_keep isl_basic_set *bset, int a, int b)
2176 isl_basic_map_swap_div(bset, a, b);
2179 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
2181 isl_seq_cpy(c, c + n, rem);
2182 isl_seq_clr(c + rem, n);
2185 /* Drop n dimensions starting at first.
2187 * In principle, this frees up some extra variables as the number
2188 * of columns remains constant, but we would have to extend
2189 * the div array too as the number of rows in this array is assumed
2190 * to be equal to extra.
2192 __isl_give isl_basic_set *isl_basic_set_drop_dims(
2193 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2195 return isl_basic_map_drop(bset_to_bmap(bset), isl_dim_set, first, n);
2198 /* Move "n" divs starting at "first" to the end of the list of divs.
2200 static struct isl_basic_map *move_divs_last(struct isl_basic_map *bmap,
2201 unsigned first, unsigned n)
2203 isl_int **div;
2204 int i;
2206 if (first + n == bmap->n_div)
2207 return bmap;
2209 div = isl_alloc_array(bmap->ctx, isl_int *, n);
2210 if (!div)
2211 goto error;
2212 for (i = 0; i < n; ++i)
2213 div[i] = bmap->div[first + i];
2214 for (i = 0; i < bmap->n_div - first - n; ++i)
2215 bmap->div[first + i] = bmap->div[first + n + i];
2216 for (i = 0; i < n; ++i)
2217 bmap->div[bmap->n_div - n + i] = div[i];
2218 free(div);
2219 return bmap;
2220 error:
2221 isl_basic_map_free(bmap);
2222 return NULL;
2225 /* Check that there are "n" dimensions of type "type" starting at "first"
2226 * in "map".
2228 static isl_stat isl_map_check_range(__isl_keep isl_map *map,
2229 enum isl_dim_type type, unsigned first, unsigned n)
2231 if (!map)
2232 return isl_stat_error;
2233 if (first + n > isl_map_dim(map, type) || first + n < first)
2234 isl_die(isl_map_get_ctx(map), isl_error_invalid,
2235 "position or range out of bounds",
2236 return isl_stat_error);
2237 return isl_stat_ok;
2240 /* Drop "n" dimensions of type "type" starting at "first".
2242 * In principle, this frees up some extra variables as the number
2243 * of columns remains constant, but we would have to extend
2244 * the div array too as the number of rows in this array is assumed
2245 * to be equal to extra.
2247 __isl_give isl_basic_map *isl_basic_map_drop(__isl_take isl_basic_map *bmap,
2248 enum isl_dim_type type, unsigned first, unsigned n)
2250 int i;
2251 unsigned dim;
2252 unsigned offset;
2253 unsigned left;
2255 if (!bmap)
2256 goto error;
2258 dim = isl_basic_map_dim(bmap, type);
2259 isl_assert(bmap->ctx, first + n <= dim, goto error);
2261 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2262 return bmap;
2264 bmap = isl_basic_map_cow(bmap);
2265 if (!bmap)
2266 return NULL;
2268 offset = isl_basic_map_offset(bmap, type) + first;
2269 left = isl_basic_map_total_dim(bmap) - (offset - 1) - n;
2270 for (i = 0; i < bmap->n_eq; ++i)
2271 constraint_drop_vars(bmap->eq[i]+offset, n, left);
2273 for (i = 0; i < bmap->n_ineq; ++i)
2274 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
2276 for (i = 0; i < bmap->n_div; ++i)
2277 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
2279 if (type == isl_dim_div) {
2280 bmap = move_divs_last(bmap, first, n);
2281 if (!bmap)
2282 goto error;
2283 if (isl_basic_map_free_div(bmap, n) < 0)
2284 return isl_basic_map_free(bmap);
2285 } else
2286 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
2287 if (!bmap->dim)
2288 goto error;
2290 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
2291 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
2292 bmap = isl_basic_map_simplify(bmap);
2293 return isl_basic_map_finalize(bmap);
2294 error:
2295 isl_basic_map_free(bmap);
2296 return NULL;
2299 __isl_give isl_basic_set *isl_basic_set_drop(__isl_take isl_basic_set *bset,
2300 enum isl_dim_type type, unsigned first, unsigned n)
2302 return bset_from_bmap(isl_basic_map_drop(bset_to_bmap(bset),
2303 type, first, n));
2306 /* No longer consider "map" to be normalized.
2308 static __isl_give isl_map *isl_map_unmark_normalized(__isl_take isl_map *map)
2310 if (!map)
2311 return NULL;
2312 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2313 return map;
2316 __isl_give isl_map *isl_map_drop(__isl_take isl_map *map,
2317 enum isl_dim_type type, unsigned first, unsigned n)
2319 int i;
2321 if (isl_map_check_range(map, type, first, n) < 0)
2322 return isl_map_free(map);
2324 if (n == 0 && !isl_space_is_named_or_nested(map->dim, type))
2325 return map;
2326 map = isl_map_cow(map);
2327 if (!map)
2328 goto error;
2329 map->dim = isl_space_drop_dims(map->dim, type, first, n);
2330 if (!map->dim)
2331 goto error;
2333 for (i = 0; i < map->n; ++i) {
2334 map->p[i] = isl_basic_map_drop(map->p[i], type, first, n);
2335 if (!map->p[i])
2336 goto error;
2338 map = isl_map_unmark_normalized(map);
2340 return map;
2341 error:
2342 isl_map_free(map);
2343 return NULL;
2346 __isl_give isl_set *isl_set_drop(__isl_take isl_set *set,
2347 enum isl_dim_type type, unsigned first, unsigned n)
2349 return set_from_map(isl_map_drop(set_to_map(set), type, first, n));
2353 * We don't cow, as the div is assumed to be redundant.
2355 __isl_give isl_basic_map *isl_basic_map_drop_div(
2356 __isl_take isl_basic_map *bmap, unsigned div)
2358 int i;
2359 unsigned pos;
2361 if (!bmap)
2362 goto error;
2364 pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
2366 isl_assert(bmap->ctx, div < bmap->n_div, goto error);
2368 for (i = 0; i < bmap->n_eq; ++i)
2369 constraint_drop_vars(bmap->eq[i]+pos, 1, bmap->extra-div-1);
2371 for (i = 0; i < bmap->n_ineq; ++i) {
2372 if (!isl_int_is_zero(bmap->ineq[i][pos])) {
2373 isl_basic_map_drop_inequality(bmap, i);
2374 --i;
2375 continue;
2377 constraint_drop_vars(bmap->ineq[i]+pos, 1, bmap->extra-div-1);
2380 for (i = 0; i < bmap->n_div; ++i)
2381 constraint_drop_vars(bmap->div[i]+1+pos, 1, bmap->extra-div-1);
2383 if (div != bmap->n_div - 1) {
2384 int j;
2385 isl_int *t = bmap->div[div];
2387 for (j = div; j < bmap->n_div - 1; ++j)
2388 bmap->div[j] = bmap->div[j+1];
2390 bmap->div[bmap->n_div - 1] = t;
2392 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
2393 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
2394 if (isl_basic_map_free_div(bmap, 1) < 0)
2395 return isl_basic_map_free(bmap);
2397 return bmap;
2398 error:
2399 isl_basic_map_free(bmap);
2400 return NULL;
2403 /* Eliminate the specified n dimensions starting at first from the
2404 * constraints, without removing the dimensions from the space.
2405 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2407 __isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
2408 enum isl_dim_type type, unsigned first, unsigned n)
2410 int i;
2412 if (n == 0)
2413 return map;
2415 if (isl_map_check_range(map, type, first, n) < 0)
2416 return isl_map_free(map);
2418 map = isl_map_cow(map);
2419 if (!map)
2420 return NULL;
2422 for (i = 0; i < map->n; ++i) {
2423 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
2424 if (!map->p[i])
2425 goto error;
2427 return map;
2428 error:
2429 isl_map_free(map);
2430 return NULL;
2433 /* Eliminate the specified n dimensions starting at first from the
2434 * constraints, without removing the dimensions from the space.
2435 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2437 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
2438 enum isl_dim_type type, unsigned first, unsigned n)
2440 return set_from_map(isl_map_eliminate(set_to_map(set), type, first, n));
2443 /* Eliminate the specified n dimensions starting at first from the
2444 * constraints, without removing the dimensions from the space.
2445 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2447 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
2448 unsigned first, unsigned n)
2450 return isl_set_eliminate(set, isl_dim_set, first, n);
2453 __isl_give isl_basic_map *isl_basic_map_remove_divs(
2454 __isl_take isl_basic_map *bmap)
2456 if (!bmap)
2457 return NULL;
2458 bmap = isl_basic_map_eliminate_vars(bmap,
2459 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
2460 if (!bmap)
2461 return NULL;
2462 bmap->n_div = 0;
2463 return isl_basic_map_finalize(bmap);
2466 __isl_give isl_basic_set *isl_basic_set_remove_divs(
2467 __isl_take isl_basic_set *bset)
2469 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset)));
2472 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
2474 int i;
2476 if (!map)
2477 return NULL;
2478 if (map->n == 0)
2479 return map;
2481 map = isl_map_cow(map);
2482 if (!map)
2483 return NULL;
2485 for (i = 0; i < map->n; ++i) {
2486 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
2487 if (!map->p[i])
2488 goto error;
2490 return map;
2491 error:
2492 isl_map_free(map);
2493 return NULL;
2496 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
2498 return isl_map_remove_divs(set);
2501 __isl_give isl_basic_map *isl_basic_map_remove_dims(
2502 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
2503 unsigned first, unsigned n)
2505 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2506 return isl_basic_map_free(bmap);
2507 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2508 return bmap;
2509 bmap = isl_basic_map_eliminate_vars(bmap,
2510 isl_basic_map_offset(bmap, type) - 1 + first, n);
2511 if (!bmap)
2512 return bmap;
2513 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
2514 return bmap;
2515 bmap = isl_basic_map_drop(bmap, type, first, n);
2516 return bmap;
2519 /* Return true if the definition of the given div (recursively) involves
2520 * any of the given variables.
2522 static isl_bool div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
2523 unsigned first, unsigned n)
2525 int i;
2526 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2528 if (isl_int_is_zero(bmap->div[div][0]))
2529 return isl_bool_false;
2530 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
2531 return isl_bool_true;
2533 for (i = bmap->n_div - 1; i >= 0; --i) {
2534 isl_bool involves;
2536 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2537 continue;
2538 involves = div_involves_vars(bmap, i, first, n);
2539 if (involves < 0 || involves)
2540 return involves;
2543 return isl_bool_false;
2546 /* Try and add a lower and/or upper bound on "div" to "bmap"
2547 * based on inequality "i".
2548 * "total" is the total number of variables (excluding the divs).
2549 * "v" is a temporary object that can be used during the calculations.
2550 * If "lb" is set, then a lower bound should be constructed.
2551 * If "ub" is set, then an upper bound should be constructed.
2553 * The calling function has already checked that the inequality does not
2554 * reference "div", but we still need to check that the inequality is
2555 * of the right form. We'll consider the case where we want to construct
2556 * a lower bound. The construction of upper bounds is similar.
2558 * Let "div" be of the form
2560 * q = floor((a + f(x))/d)
2562 * We essentially check if constraint "i" is of the form
2564 * b + f(x) >= 0
2566 * so that we can use it to derive a lower bound on "div".
2567 * However, we allow a slightly more general form
2569 * b + g(x) >= 0
2571 * with the condition that the coefficients of g(x) - f(x) are all
2572 * divisible by d.
2573 * Rewriting this constraint as
2575 * 0 >= -b - g(x)
2577 * adding a + f(x) to both sides and dividing by d, we obtain
2579 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2581 * Taking the floor on both sides, we obtain
2583 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2585 * or
2587 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2589 * In the case of an upper bound, we construct the constraint
2591 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2594 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2595 __isl_take isl_basic_map *bmap, int div, int i,
2596 unsigned total, isl_int v, int lb, int ub)
2598 int j;
2600 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2601 if (lb) {
2602 isl_int_sub(v, bmap->ineq[i][1 + j],
2603 bmap->div[div][1 + 1 + j]);
2604 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2606 if (ub) {
2607 isl_int_add(v, bmap->ineq[i][1 + j],
2608 bmap->div[div][1 + 1 + j]);
2609 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2612 if (!lb && !ub)
2613 return bmap;
2615 bmap = isl_basic_map_cow(bmap);
2616 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2617 if (lb) {
2618 int k = isl_basic_map_alloc_inequality(bmap);
2619 if (k < 0)
2620 goto error;
2621 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2622 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2623 bmap->div[div][1 + j]);
2624 isl_int_cdiv_q(bmap->ineq[k][j],
2625 bmap->ineq[k][j], bmap->div[div][0]);
2627 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2629 if (ub) {
2630 int k = isl_basic_map_alloc_inequality(bmap);
2631 if (k < 0)
2632 goto error;
2633 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2634 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2635 bmap->div[div][1 + j]);
2636 isl_int_fdiv_q(bmap->ineq[k][j],
2637 bmap->ineq[k][j], bmap->div[div][0]);
2639 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2642 return bmap;
2643 error:
2644 isl_basic_map_free(bmap);
2645 return NULL;
2648 /* This function is called right before "div" is eliminated from "bmap"
2649 * using Fourier-Motzkin.
2650 * Look through the constraints of "bmap" for constraints on the argument
2651 * of the integer division and use them to construct constraints on the
2652 * integer division itself. These constraints can then be combined
2653 * during the Fourier-Motzkin elimination.
2654 * Note that it is only useful to introduce lower bounds on "div"
2655 * if "bmap" already contains upper bounds on "div" as the newly
2656 * introduce lower bounds can then be combined with the pre-existing
2657 * upper bounds. Similarly for upper bounds.
2658 * We therefore first check if "bmap" contains any lower and/or upper bounds
2659 * on "div".
2661 * It is interesting to note that the introduction of these constraints
2662 * can indeed lead to more accurate results, even when compared to
2663 * deriving constraints on the argument of "div" from constraints on "div".
2664 * Consider, for example, the set
2666 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2668 * The second constraint can be rewritten as
2670 * 2 * [(-i-2j+3)/4] + k >= 0
2672 * from which we can derive
2674 * -i - 2j + 3 >= -2k
2676 * or
2678 * i + 2j <= 3 + 2k
2680 * Combined with the first constraint, we obtain
2682 * -3 <= 3 + 2k or k >= -3
2684 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2685 * the first constraint, we obtain
2687 * [(i + 2j)/4] >= [-3/4] = -1
2689 * Combining this constraint with the second constraint, we obtain
2691 * k >= -2
2693 static __isl_give isl_basic_map *insert_bounds_on_div(
2694 __isl_take isl_basic_map *bmap, int div)
2696 int i;
2697 int check_lb, check_ub;
2698 isl_int v;
2699 unsigned total;
2701 if (!bmap)
2702 return NULL;
2704 if (isl_int_is_zero(bmap->div[div][0]))
2705 return bmap;
2707 total = isl_space_dim(bmap->dim, isl_dim_all);
2709 check_lb = 0;
2710 check_ub = 0;
2711 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
2712 int s = isl_int_sgn(bmap->ineq[i][1 + total + div]);
2713 if (s > 0)
2714 check_ub = 1;
2715 if (s < 0)
2716 check_lb = 1;
2719 if (!check_lb && !check_ub)
2720 return bmap;
2722 isl_int_init(v);
2724 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
2725 if (!isl_int_is_zero(bmap->ineq[i][1 + total + div]))
2726 continue;
2728 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, total, v,
2729 check_lb, check_ub);
2732 isl_int_clear(v);
2734 return bmap;
2737 /* Remove all divs (recursively) involving any of the given dimensions
2738 * in their definitions.
2740 __isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
2741 __isl_take isl_basic_map *bmap,
2742 enum isl_dim_type type, unsigned first, unsigned n)
2744 int i;
2746 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2747 return isl_basic_map_free(bmap);
2748 first += isl_basic_map_offset(bmap, type);
2750 for (i = bmap->n_div - 1; i >= 0; --i) {
2751 isl_bool involves;
2753 involves = div_involves_vars(bmap, i, first, n);
2754 if (involves < 0)
2755 return isl_basic_map_free(bmap);
2756 if (!involves)
2757 continue;
2758 bmap = insert_bounds_on_div(bmap, i);
2759 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2760 if (!bmap)
2761 return NULL;
2762 i = bmap->n_div;
2765 return bmap;
2768 __isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
2769 __isl_take isl_basic_set *bset,
2770 enum isl_dim_type type, unsigned first, unsigned n)
2772 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
2775 __isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
2776 enum isl_dim_type type, unsigned first, unsigned n)
2778 int i;
2780 if (!map)
2781 return NULL;
2782 if (map->n == 0)
2783 return map;
2785 map = isl_map_cow(map);
2786 if (!map)
2787 return NULL;
2789 for (i = 0; i < map->n; ++i) {
2790 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2791 type, first, n);
2792 if (!map->p[i])
2793 goto error;
2795 return map;
2796 error:
2797 isl_map_free(map);
2798 return NULL;
2801 __isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2802 enum isl_dim_type type, unsigned first, unsigned n)
2804 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set),
2805 type, first, n));
2808 /* Does the description of "bmap" depend on the specified dimensions?
2809 * We also check whether the dimensions appear in any of the div definitions.
2810 * In principle there is no need for this check. If the dimensions appear
2811 * in a div definition, they also appear in the defining constraints of that
2812 * div.
2814 isl_bool isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
2815 enum isl_dim_type type, unsigned first, unsigned n)
2817 int i;
2819 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2820 return isl_bool_error;
2822 first += isl_basic_map_offset(bmap, type);
2823 for (i = 0; i < bmap->n_eq; ++i)
2824 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
2825 return isl_bool_true;
2826 for (i = 0; i < bmap->n_ineq; ++i)
2827 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
2828 return isl_bool_true;
2829 for (i = 0; i < bmap->n_div; ++i) {
2830 if (isl_int_is_zero(bmap->div[i][0]))
2831 continue;
2832 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
2833 return isl_bool_true;
2836 return isl_bool_false;
2839 isl_bool isl_map_involves_dims(__isl_keep isl_map *map,
2840 enum isl_dim_type type, unsigned first, unsigned n)
2842 int i;
2844 if (isl_map_check_range(map, type, first, n) < 0)
2845 return isl_bool_error;
2847 for (i = 0; i < map->n; ++i) {
2848 isl_bool involves = isl_basic_map_involves_dims(map->p[i],
2849 type, first, n);
2850 if (involves < 0 || involves)
2851 return involves;
2854 return isl_bool_false;
2857 isl_bool isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
2858 enum isl_dim_type type, unsigned first, unsigned n)
2860 return isl_basic_map_involves_dims(bset, type, first, n);
2863 isl_bool isl_set_involves_dims(__isl_keep isl_set *set,
2864 enum isl_dim_type type, unsigned first, unsigned n)
2866 return isl_map_involves_dims(set, type, first, n);
2869 /* Drop all constraints in bmap that involve any of the dimensions
2870 * first to first+n-1.
2872 static __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving(
2873 __isl_take isl_basic_map *bmap, unsigned first, unsigned n)
2875 int i;
2877 if (n == 0)
2878 return bmap;
2880 bmap = isl_basic_map_cow(bmap);
2882 if (!bmap)
2883 return NULL;
2885 for (i = bmap->n_eq - 1; i >= 0; --i) {
2886 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) == -1)
2887 continue;
2888 isl_basic_map_drop_equality(bmap, i);
2891 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2892 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) == -1)
2893 continue;
2894 isl_basic_map_drop_inequality(bmap, i);
2897 bmap = isl_basic_map_add_known_div_constraints(bmap);
2898 return bmap;
2901 /* Drop all constraints in bset that involve any of the dimensions
2902 * first to first+n-1.
2904 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving(
2905 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2907 return isl_basic_map_drop_constraints_involving(bset, first, n);
2910 /* Drop all constraints in bmap that do not involve any of the dimensions
2911 * first to first + n - 1 of the given type.
2913 __isl_give isl_basic_map *isl_basic_map_drop_constraints_not_involving_dims(
2914 __isl_take isl_basic_map *bmap,
2915 enum isl_dim_type type, unsigned first, unsigned n)
2917 int i;
2919 if (n == 0) {
2920 isl_space *space = isl_basic_map_get_space(bmap);
2921 isl_basic_map_free(bmap);
2922 return isl_basic_map_universe(space);
2924 bmap = isl_basic_map_cow(bmap);
2925 if (!bmap)
2926 return NULL;
2928 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2929 return isl_basic_map_free(bmap);
2931 first += isl_basic_map_offset(bmap, type) - 1;
2933 for (i = bmap->n_eq - 1; i >= 0; --i) {
2934 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) != -1)
2935 continue;
2936 isl_basic_map_drop_equality(bmap, i);
2939 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2940 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) != -1)
2941 continue;
2942 isl_basic_map_drop_inequality(bmap, i);
2945 bmap = isl_basic_map_add_known_div_constraints(bmap);
2946 return bmap;
2949 /* Drop all constraints in bset that do not involve any of the dimensions
2950 * first to first + n - 1 of the given type.
2952 __isl_give isl_basic_set *isl_basic_set_drop_constraints_not_involving_dims(
2953 __isl_take isl_basic_set *bset,
2954 enum isl_dim_type type, unsigned first, unsigned n)
2956 return isl_basic_map_drop_constraints_not_involving_dims(bset,
2957 type, first, n);
2960 /* Drop all constraints in bmap that involve any of the dimensions
2961 * first to first + n - 1 of the given type.
2963 __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving_dims(
2964 __isl_take isl_basic_map *bmap,
2965 enum isl_dim_type type, unsigned first, unsigned n)
2967 if (!bmap)
2968 return NULL;
2969 if (n == 0)
2970 return bmap;
2972 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2973 return isl_basic_map_free(bmap);
2975 bmap = isl_basic_map_remove_divs_involving_dims(bmap, type, first, n);
2976 first += isl_basic_map_offset(bmap, type) - 1;
2977 return isl_basic_map_drop_constraints_involving(bmap, first, n);
2980 /* Drop all constraints in bset that involve any of the dimensions
2981 * first to first + n - 1 of the given type.
2983 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving_dims(
2984 __isl_take isl_basic_set *bset,
2985 enum isl_dim_type type, unsigned first, unsigned n)
2987 return isl_basic_map_drop_constraints_involving_dims(bset,
2988 type, first, n);
2991 /* Drop constraints from "map" by applying "drop" to each basic map.
2993 static __isl_give isl_map *drop_constraints(__isl_take isl_map *map,
2994 enum isl_dim_type type, unsigned first, unsigned n,
2995 __isl_give isl_basic_map *(*drop)(__isl_take isl_basic_map *bmap,
2996 enum isl_dim_type type, unsigned first, unsigned n))
2998 int i;
3000 if (isl_map_check_range(map, type, first, n) < 0)
3001 return isl_map_free(map);
3003 map = isl_map_cow(map);
3004 if (!map)
3005 return NULL;
3007 for (i = 0; i < map->n; ++i) {
3008 map->p[i] = drop(map->p[i], type, first, n);
3009 if (!map->p[i])
3010 return isl_map_free(map);
3013 if (map->n > 1)
3014 ISL_F_CLR(map, ISL_MAP_DISJOINT);
3016 return map;
3019 /* Drop all constraints in map that involve any of the dimensions
3020 * first to first + n - 1 of the given type.
3022 __isl_give isl_map *isl_map_drop_constraints_involving_dims(
3023 __isl_take isl_map *map,
3024 enum isl_dim_type type, unsigned first, unsigned n)
3026 if (n == 0)
3027 return map;
3028 return drop_constraints(map, type, first, n,
3029 &isl_basic_map_drop_constraints_involving_dims);
3032 /* Drop all constraints in "map" that do not involve any of the dimensions
3033 * first to first + n - 1 of the given type.
3035 __isl_give isl_map *isl_map_drop_constraints_not_involving_dims(
3036 __isl_take isl_map *map,
3037 enum isl_dim_type type, unsigned first, unsigned n)
3039 if (n == 0) {
3040 isl_space *space = isl_map_get_space(map);
3041 isl_map_free(map);
3042 return isl_map_universe(space);
3044 return drop_constraints(map, type, first, n,
3045 &isl_basic_map_drop_constraints_not_involving_dims);
3048 /* Drop all constraints in set that involve any of the dimensions
3049 * first to first + n - 1 of the given type.
3051 __isl_give isl_set *isl_set_drop_constraints_involving_dims(
3052 __isl_take isl_set *set,
3053 enum isl_dim_type type, unsigned first, unsigned n)
3055 return isl_map_drop_constraints_involving_dims(set, type, first, n);
3058 /* Drop all constraints in "set" that do not involve any of the dimensions
3059 * first to first + n - 1 of the given type.
3061 __isl_give isl_set *isl_set_drop_constraints_not_involving_dims(
3062 __isl_take isl_set *set,
3063 enum isl_dim_type type, unsigned first, unsigned n)
3065 return isl_map_drop_constraints_not_involving_dims(set, type, first, n);
3068 /* Does local variable "div" of "bmap" have a complete explicit representation?
3069 * Having a complete explicit representation requires not only
3070 * an explicit representation, but also that all local variables
3071 * that appear in this explicit representation in turn have
3072 * a complete explicit representation.
3074 isl_bool isl_basic_map_div_is_known(__isl_keep isl_basic_map *bmap, int div)
3076 int i;
3077 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
3078 isl_bool marked;
3080 marked = isl_basic_map_div_is_marked_unknown(bmap, div);
3081 if (marked < 0 || marked)
3082 return isl_bool_not(marked);
3084 for (i = bmap->n_div - 1; i >= 0; --i) {
3085 isl_bool known;
3087 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
3088 continue;
3089 known = isl_basic_map_div_is_known(bmap, i);
3090 if (known < 0 || !known)
3091 return known;
3094 return isl_bool_true;
3097 /* Remove all divs that are unknown or defined in terms of unknown divs.
3099 __isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
3100 __isl_take isl_basic_map *bmap)
3102 int i;
3104 if (!bmap)
3105 return NULL;
3107 for (i = bmap->n_div - 1; i >= 0; --i) {
3108 if (isl_basic_map_div_is_known(bmap, i))
3109 continue;
3110 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
3111 if (!bmap)
3112 return NULL;
3113 i = bmap->n_div;
3116 return bmap;
3119 /* Remove all divs that are unknown or defined in terms of unknown divs.
3121 __isl_give isl_basic_set *isl_basic_set_remove_unknown_divs(
3122 __isl_take isl_basic_set *bset)
3124 return isl_basic_map_remove_unknown_divs(bset);
3127 __isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
3129 int i;
3131 if (!map)
3132 return NULL;
3133 if (map->n == 0)
3134 return map;
3136 map = isl_map_cow(map);
3137 if (!map)
3138 return NULL;
3140 for (i = 0; i < map->n; ++i) {
3141 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
3142 if (!map->p[i])
3143 goto error;
3145 return map;
3146 error:
3147 isl_map_free(map);
3148 return NULL;
3151 __isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
3153 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set)));
3156 __isl_give isl_basic_set *isl_basic_set_remove_dims(
3157 __isl_take isl_basic_set *bset,
3158 enum isl_dim_type type, unsigned first, unsigned n)
3160 isl_basic_map *bmap = bset_to_bmap(bset);
3161 bmap = isl_basic_map_remove_dims(bmap, type, first, n);
3162 return bset_from_bmap(bmap);
3165 __isl_give isl_map *isl_map_remove_dims(__isl_take isl_map *map,
3166 enum isl_dim_type type, unsigned first, unsigned n)
3168 int i;
3170 if (n == 0)
3171 return map;
3173 map = isl_map_cow(map);
3174 if (isl_map_check_range(map, type, first, n) < 0)
3175 return isl_map_free(map);
3177 for (i = 0; i < map->n; ++i) {
3178 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
3179 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
3180 if (!map->p[i])
3181 goto error;
3183 map = isl_map_drop(map, type, first, n);
3184 return map;
3185 error:
3186 isl_map_free(map);
3187 return NULL;
3190 __isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
3191 enum isl_dim_type type, unsigned first, unsigned n)
3193 return set_from_map(isl_map_remove_dims(set_to_map(bset),
3194 type, first, n));
3197 /* Project out n inputs starting at first using Fourier-Motzkin */
3198 struct isl_map *isl_map_remove_inputs(struct isl_map *map,
3199 unsigned first, unsigned n)
3201 return isl_map_remove_dims(map, isl_dim_in, first, n);
3204 static void dump_term(struct isl_basic_map *bmap,
3205 isl_int c, int pos, FILE *out)
3207 const char *name;
3208 unsigned in = isl_basic_map_dim(bmap, isl_dim_in);
3209 unsigned dim = in + isl_basic_map_dim(bmap, isl_dim_out);
3210 unsigned nparam = isl_basic_map_dim(bmap, isl_dim_param);
3211 if (!pos)
3212 isl_int_print(out, c, 0);
3213 else {
3214 if (!isl_int_is_one(c))
3215 isl_int_print(out, c, 0);
3216 if (pos < 1 + nparam) {
3217 name = isl_space_get_dim_name(bmap->dim,
3218 isl_dim_param, pos - 1);
3219 if (name)
3220 fprintf(out, "%s", name);
3221 else
3222 fprintf(out, "p%d", pos - 1);
3223 } else if (pos < 1 + nparam + in)
3224 fprintf(out, "i%d", pos - 1 - nparam);
3225 else if (pos < 1 + nparam + dim)
3226 fprintf(out, "o%d", pos - 1 - nparam - in);
3227 else
3228 fprintf(out, "e%d", pos - 1 - nparam - dim);
3232 static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
3233 int sign, FILE *out)
3235 int i;
3236 int first;
3237 unsigned len = 1 + isl_basic_map_total_dim(bmap);
3238 isl_int v;
3240 isl_int_init(v);
3241 for (i = 0, first = 1; i < len; ++i) {
3242 if (isl_int_sgn(c[i]) * sign <= 0)
3243 continue;
3244 if (!first)
3245 fprintf(out, " + ");
3246 first = 0;
3247 isl_int_abs(v, c[i]);
3248 dump_term(bmap, v, i, out);
3250 isl_int_clear(v);
3251 if (first)
3252 fprintf(out, "0");
3255 static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
3256 const char *op, FILE *out, int indent)
3258 int i;
3260 fprintf(out, "%*s", indent, "");
3262 dump_constraint_sign(bmap, c, 1, out);
3263 fprintf(out, " %s ", op);
3264 dump_constraint_sign(bmap, c, -1, out);
3266 fprintf(out, "\n");
3268 for (i = bmap->n_div; i < bmap->extra; ++i) {
3269 if (isl_int_is_zero(c[1+isl_space_dim(bmap->dim, isl_dim_all)+i]))
3270 continue;
3271 fprintf(out, "%*s", indent, "");
3272 fprintf(out, "ERROR: unused div coefficient not zero\n");
3273 abort();
3277 static void dump_constraints(struct isl_basic_map *bmap,
3278 isl_int **c, unsigned n,
3279 const char *op, FILE *out, int indent)
3281 int i;
3283 for (i = 0; i < n; ++i)
3284 dump_constraint(bmap, c[i], op, out, indent);
3287 static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
3289 int j;
3290 int first = 1;
3291 unsigned total = isl_basic_map_total_dim(bmap);
3293 for (j = 0; j < 1 + total; ++j) {
3294 if (isl_int_is_zero(exp[j]))
3295 continue;
3296 if (!first && isl_int_is_pos(exp[j]))
3297 fprintf(out, "+");
3298 dump_term(bmap, exp[j], j, out);
3299 first = 0;
3303 static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
3305 int i;
3307 dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
3308 dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
3310 for (i = 0; i < bmap->n_div; ++i) {
3311 fprintf(out, "%*s", indent, "");
3312 fprintf(out, "e%d = [(", i);
3313 dump_affine(bmap, bmap->div[i]+1, out);
3314 fprintf(out, ")/");
3315 isl_int_print(out, bmap->div[i][0], 0);
3316 fprintf(out, "]\n");
3320 void isl_basic_set_print_internal(struct isl_basic_set *bset,
3321 FILE *out, int indent)
3323 if (!bset) {
3324 fprintf(out, "null basic set\n");
3325 return;
3328 fprintf(out, "%*s", indent, "");
3329 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
3330 bset->ref, bset->dim->nparam, bset->dim->n_out,
3331 bset->extra, bset->flags);
3332 dump(bset_to_bmap(bset), out, indent);
3335 void isl_basic_map_print_internal(struct isl_basic_map *bmap,
3336 FILE *out, int indent)
3338 if (!bmap) {
3339 fprintf(out, "null basic map\n");
3340 return;
3343 fprintf(out, "%*s", indent, "");
3344 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
3345 "flags: %x, n_name: %d\n",
3346 bmap->ref,
3347 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
3348 bmap->extra, bmap->flags, bmap->dim->n_id);
3349 dump(bmap, out, indent);
3352 int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
3354 unsigned total;
3355 if (!bmap)
3356 return -1;
3357 total = isl_basic_map_total_dim(bmap);
3358 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
3359 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
3360 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
3361 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
3362 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
3363 return 0;
3366 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *space, int n,
3367 unsigned flags)
3369 if (!space)
3370 return NULL;
3371 if (isl_space_dim(space, isl_dim_in) != 0)
3372 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3373 "set cannot have input dimensions", goto error);
3374 return isl_map_alloc_space(space, n, flags);
3375 error:
3376 isl_space_free(space);
3377 return NULL;
3380 /* Make sure "map" has room for at least "n" more basic maps.
3382 __isl_give isl_map *isl_map_grow(__isl_take isl_map *map, int n)
3384 int i;
3385 struct isl_map *grown = NULL;
3387 if (!map)
3388 return NULL;
3389 isl_assert(map->ctx, n >= 0, goto error);
3390 if (map->n + n <= map->size)
3391 return map;
3392 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
3393 if (!grown)
3394 goto error;
3395 for (i = 0; i < map->n; ++i) {
3396 grown->p[i] = isl_basic_map_copy(map->p[i]);
3397 if (!grown->p[i])
3398 goto error;
3399 grown->n++;
3401 isl_map_free(map);
3402 return grown;
3403 error:
3404 isl_map_free(grown);
3405 isl_map_free(map);
3406 return NULL;
3409 /* Make sure "set" has room for at least "n" more basic sets.
3411 struct isl_set *isl_set_grow(struct isl_set *set, int n)
3413 return set_from_map(isl_map_grow(set_to_map(set), n));
3416 __isl_give isl_set *isl_set_from_basic_set(__isl_take isl_basic_set *bset)
3418 return isl_map_from_basic_map(bset);
3421 __isl_give isl_map *isl_map_from_basic_map(__isl_take isl_basic_map *bmap)
3423 struct isl_map *map;
3425 if (!bmap)
3426 return NULL;
3428 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
3429 return isl_map_add_basic_map(map, bmap);
3432 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
3433 __isl_take isl_basic_set *bset)
3435 return set_from_map(isl_map_add_basic_map(set_to_map(set),
3436 bset_to_bmap(bset)));
3439 __isl_null isl_set *isl_set_free(__isl_take isl_set *set)
3441 return isl_map_free(set);
3444 void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
3446 int i;
3448 if (!set) {
3449 fprintf(out, "null set\n");
3450 return;
3453 fprintf(out, "%*s", indent, "");
3454 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3455 set->ref, set->n, set->dim->nparam, set->dim->n_out,
3456 set->flags);
3457 for (i = 0; i < set->n; ++i) {
3458 fprintf(out, "%*s", indent, "");
3459 fprintf(out, "basic set %d:\n", i);
3460 isl_basic_set_print_internal(set->p[i], out, indent+4);
3464 void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
3466 int i;
3468 if (!map) {
3469 fprintf(out, "null map\n");
3470 return;
3473 fprintf(out, "%*s", indent, "");
3474 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3475 "flags: %x, n_name: %d\n",
3476 map->ref, map->n, map->dim->nparam, map->dim->n_in,
3477 map->dim->n_out, map->flags, map->dim->n_id);
3478 for (i = 0; i < map->n; ++i) {
3479 fprintf(out, "%*s", indent, "");
3480 fprintf(out, "basic map %d:\n", i);
3481 isl_basic_map_print_internal(map->p[i], out, indent+4);
3485 __isl_give isl_basic_map *isl_basic_map_intersect_domain(
3486 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3488 struct isl_basic_map *bmap_domain;
3490 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3491 goto error;
3493 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
3494 isl_assert(bset->ctx,
3495 isl_basic_map_compatible_domain(bmap, bset), goto error);
3497 bmap = isl_basic_map_cow(bmap);
3498 if (!bmap)
3499 goto error;
3500 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3501 bset->n_div, bset->n_eq, bset->n_ineq);
3502 bmap_domain = isl_basic_map_from_domain(bset);
3503 bmap = add_constraints(bmap, bmap_domain, 0, 0);
3505 bmap = isl_basic_map_simplify(bmap);
3506 return isl_basic_map_finalize(bmap);
3507 error:
3508 isl_basic_map_free(bmap);
3509 isl_basic_set_free(bset);
3510 return NULL;
3513 /* Check that the space of "bset" is the same as that of the range of "bmap".
3515 static isl_stat isl_basic_map_check_compatible_range(
3516 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3518 isl_bool ok;
3520 ok = isl_basic_map_compatible_range(bmap, bset);
3521 if (ok < 0)
3522 return isl_stat_error;
3523 if (!ok)
3524 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3525 "incompatible spaces", return isl_stat_error);
3527 return isl_stat_ok;
3530 __isl_give isl_basic_map *isl_basic_map_intersect_range(
3531 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3533 struct isl_basic_map *bmap_range;
3535 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3536 goto error;
3538 if (isl_space_dim(bset->dim, isl_dim_set) != 0 &&
3539 isl_basic_map_check_compatible_range(bmap, bset) < 0)
3540 goto error;
3542 if (isl_basic_set_plain_is_universe(bset)) {
3543 isl_basic_set_free(bset);
3544 return bmap;
3547 bmap = isl_basic_map_cow(bmap);
3548 if (!bmap)
3549 goto error;
3550 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3551 bset->n_div, bset->n_eq, bset->n_ineq);
3552 bmap_range = bset_to_bmap(bset);
3553 bmap = add_constraints(bmap, bmap_range, 0, 0);
3555 bmap = isl_basic_map_simplify(bmap);
3556 return isl_basic_map_finalize(bmap);
3557 error:
3558 isl_basic_map_free(bmap);
3559 isl_basic_set_free(bset);
3560 return NULL;
3563 isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
3564 __isl_keep isl_vec *vec)
3566 int i;
3567 unsigned total;
3568 isl_int s;
3570 if (!bmap || !vec)
3571 return isl_bool_error;
3573 total = 1 + isl_basic_map_total_dim(bmap);
3574 if (total != vec->size)
3575 return isl_bool_false;
3577 isl_int_init(s);
3579 for (i = 0; i < bmap->n_eq; ++i) {
3580 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
3581 if (!isl_int_is_zero(s)) {
3582 isl_int_clear(s);
3583 return isl_bool_false;
3587 for (i = 0; i < bmap->n_ineq; ++i) {
3588 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
3589 if (isl_int_is_neg(s)) {
3590 isl_int_clear(s);
3591 return isl_bool_false;
3595 isl_int_clear(s);
3597 return isl_bool_true;
3600 isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
3601 __isl_keep isl_vec *vec)
3603 return isl_basic_map_contains(bset_to_bmap(bset), vec);
3606 __isl_give isl_basic_map *isl_basic_map_intersect(
3607 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
3609 struct isl_vec *sample = NULL;
3611 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
3612 goto error;
3613 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
3614 isl_space_dim(bmap1->dim, isl_dim_param) &&
3615 isl_space_dim(bmap2->dim, isl_dim_all) !=
3616 isl_space_dim(bmap2->dim, isl_dim_param))
3617 return isl_basic_map_intersect(bmap2, bmap1);
3619 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
3620 isl_space_dim(bmap2->dim, isl_dim_param))
3621 isl_assert(bmap1->ctx,
3622 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
3624 if (isl_basic_map_plain_is_empty(bmap1)) {
3625 isl_basic_map_free(bmap2);
3626 return bmap1;
3628 if (isl_basic_map_plain_is_empty(bmap2)) {
3629 isl_basic_map_free(bmap1);
3630 return bmap2;
3633 if (bmap1->sample &&
3634 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
3635 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
3636 sample = isl_vec_copy(bmap1->sample);
3637 else if (bmap2->sample &&
3638 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
3639 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
3640 sample = isl_vec_copy(bmap2->sample);
3642 bmap1 = isl_basic_map_cow(bmap1);
3643 if (!bmap1)
3644 goto error;
3645 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
3646 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
3647 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
3649 if (!bmap1)
3650 isl_vec_free(sample);
3651 else if (sample) {
3652 isl_vec_free(bmap1->sample);
3653 bmap1->sample = sample;
3656 bmap1 = isl_basic_map_simplify(bmap1);
3657 return isl_basic_map_finalize(bmap1);
3658 error:
3659 if (sample)
3660 isl_vec_free(sample);
3661 isl_basic_map_free(bmap1);
3662 isl_basic_map_free(bmap2);
3663 return NULL;
3666 struct isl_basic_set *isl_basic_set_intersect(
3667 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
3669 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1),
3670 bset_to_bmap(bset2)));
3673 __isl_give isl_basic_set *isl_basic_set_intersect_params(
3674 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3676 return isl_basic_set_intersect(bset1, bset2);
3679 /* Special case of isl_map_intersect, where both map1 and map2
3680 * are convex, without any divs and such that either map1 or map2
3681 * contains a single constraint. This constraint is then simply
3682 * added to the other map.
3684 static __isl_give isl_map *map_intersect_add_constraint(
3685 __isl_take isl_map *map1, __isl_take isl_map *map2)
3687 isl_assert(map1->ctx, map1->n == 1, goto error);
3688 isl_assert(map2->ctx, map1->n == 1, goto error);
3689 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
3690 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
3692 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
3693 return isl_map_intersect(map2, map1);
3695 map1 = isl_map_cow(map1);
3696 if (!map1)
3697 goto error;
3698 if (isl_map_plain_is_empty(map1)) {
3699 isl_map_free(map2);
3700 return map1;
3702 map1->p[0] = isl_basic_map_cow(map1->p[0]);
3703 if (map2->p[0]->n_eq == 1)
3704 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
3705 else
3706 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
3707 map2->p[0]->ineq[0]);
3709 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
3710 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
3711 if (!map1->p[0])
3712 goto error;
3714 if (isl_basic_map_plain_is_empty(map1->p[0])) {
3715 isl_basic_map_free(map1->p[0]);
3716 map1->n = 0;
3719 isl_map_free(map2);
3721 map1 = isl_map_unmark_normalized(map1);
3722 return map1;
3723 error:
3724 isl_map_free(map1);
3725 isl_map_free(map2);
3726 return NULL;
3729 /* map2 may be either a parameter domain or a map living in the same
3730 * space as map1.
3732 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3733 __isl_take isl_map *map2)
3735 unsigned flags = 0;
3736 isl_bool equal;
3737 isl_map *result;
3738 int i, j;
3740 if (!map1 || !map2)
3741 goto error;
3743 if ((isl_map_plain_is_empty(map1) ||
3744 isl_map_plain_is_universe(map2)) &&
3745 isl_space_is_equal(map1->dim, map2->dim)) {
3746 isl_map_free(map2);
3747 return map1;
3749 if ((isl_map_plain_is_empty(map2) ||
3750 isl_map_plain_is_universe(map1)) &&
3751 isl_space_is_equal(map1->dim, map2->dim)) {
3752 isl_map_free(map1);
3753 return map2;
3756 if (map1->n == 1 && map2->n == 1 &&
3757 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
3758 isl_space_is_equal(map1->dim, map2->dim) &&
3759 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3760 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3761 return map_intersect_add_constraint(map1, map2);
3763 equal = isl_map_plain_is_equal(map1, map2);
3764 if (equal < 0)
3765 goto error;
3766 if (equal) {
3767 isl_map_free(map2);
3768 return map1;
3771 if (isl_space_dim(map2->dim, isl_dim_all) !=
3772 isl_space_dim(map2->dim, isl_dim_param))
3773 isl_assert(map1->ctx,
3774 isl_space_is_equal(map1->dim, map2->dim), goto error);
3776 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3777 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3778 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3780 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3781 map1->n * map2->n, flags);
3782 if (!result)
3783 goto error;
3784 for (i = 0; i < map1->n; ++i)
3785 for (j = 0; j < map2->n; ++j) {
3786 struct isl_basic_map *part;
3787 part = isl_basic_map_intersect(
3788 isl_basic_map_copy(map1->p[i]),
3789 isl_basic_map_copy(map2->p[j]));
3790 if (isl_basic_map_is_empty(part) < 0)
3791 part = isl_basic_map_free(part);
3792 result = isl_map_add_basic_map(result, part);
3793 if (!result)
3794 goto error;
3796 isl_map_free(map1);
3797 isl_map_free(map2);
3798 return result;
3799 error:
3800 isl_map_free(map1);
3801 isl_map_free(map2);
3802 return NULL;
3805 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3806 __isl_take isl_map *map2)
3808 if (!map1 || !map2)
3809 goto error;
3810 if (!isl_space_is_equal(map1->dim, map2->dim))
3811 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
3812 "spaces don't match", goto error);
3813 return map_intersect_internal(map1, map2);
3814 error:
3815 isl_map_free(map1);
3816 isl_map_free(map2);
3817 return NULL;
3820 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3821 __isl_take isl_map *map2)
3823 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
3826 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
3828 return set_from_map(isl_map_intersect(set_to_map(set1),
3829 set_to_map(set2)));
3832 /* map_intersect_internal accepts intersections
3833 * with parameter domains, so we can just call that function.
3835 static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
3836 __isl_take isl_set *params)
3838 return map_intersect_internal(map, params);
3841 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
3842 __isl_take isl_map *map2)
3844 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
3847 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3848 __isl_take isl_set *params)
3850 return isl_map_intersect_params(set, params);
3853 __isl_give isl_basic_map *isl_basic_map_reverse(__isl_take isl_basic_map *bmap)
3855 isl_space *space;
3856 unsigned pos, n1, n2;
3858 if (!bmap)
3859 return NULL;
3860 bmap = isl_basic_map_cow(bmap);
3861 if (!bmap)
3862 return NULL;
3863 space = isl_space_reverse(isl_space_copy(bmap->dim));
3864 pos = isl_basic_map_offset(bmap, isl_dim_in);
3865 n1 = isl_basic_map_dim(bmap, isl_dim_in);
3866 n2 = isl_basic_map_dim(bmap, isl_dim_out);
3867 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
3868 return isl_basic_map_reset_space(bmap, space);
3871 static __isl_give isl_basic_map *basic_map_space_reset(
3872 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
3874 isl_space *space;
3876 if (!bmap)
3877 return NULL;
3878 if (!isl_space_is_named_or_nested(bmap->dim, type))
3879 return bmap;
3881 space = isl_basic_map_get_space(bmap);
3882 space = isl_space_reset(space, type);
3883 bmap = isl_basic_map_reset_space(bmap, space);
3884 return bmap;
3887 __isl_give isl_basic_map *isl_basic_map_insert_dims(
3888 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3889 unsigned pos, unsigned n)
3891 isl_bool rational;
3892 isl_space *res_space;
3893 struct isl_basic_map *res;
3894 struct isl_dim_map *dim_map;
3895 unsigned total, off;
3896 enum isl_dim_type t;
3898 if (n == 0)
3899 return basic_map_space_reset(bmap, type);
3901 res_space = isl_space_insert_dims(isl_basic_map_get_space(bmap),
3902 type, pos, n);
3903 if (!res_space)
3904 return isl_basic_map_free(bmap);
3906 total = isl_basic_map_total_dim(bmap) + n;
3907 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3908 off = 0;
3909 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3910 if (t != type) {
3911 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3912 } else {
3913 unsigned size = isl_basic_map_dim(bmap, t);
3914 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3915 0, pos, off);
3916 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3917 pos, size - pos, off + pos + n);
3919 off += isl_space_dim(res_space, t);
3921 isl_dim_map_div(dim_map, bmap, off);
3923 res = isl_basic_map_alloc_space(res_space,
3924 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3925 rational = isl_basic_map_is_rational(bmap);
3926 if (rational < 0)
3927 res = isl_basic_map_free(res);
3928 if (rational)
3929 res = isl_basic_map_set_rational(res);
3930 if (isl_basic_map_plain_is_empty(bmap)) {
3931 isl_basic_map_free(bmap);
3932 free(dim_map);
3933 return isl_basic_map_set_to_empty(res);
3935 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3936 return isl_basic_map_finalize(res);
3939 __isl_give isl_basic_set *isl_basic_set_insert_dims(
3940 __isl_take isl_basic_set *bset,
3941 enum isl_dim_type type, unsigned pos, unsigned n)
3943 return isl_basic_map_insert_dims(bset, type, pos, n);
3946 __isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
3947 enum isl_dim_type type, unsigned n)
3949 if (!bmap)
3950 return NULL;
3951 return isl_basic_map_insert_dims(bmap, type,
3952 isl_basic_map_dim(bmap, type), n);
3955 __isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
3956 enum isl_dim_type type, unsigned n)
3958 if (!bset)
3959 return NULL;
3960 isl_assert(bset->ctx, type != isl_dim_in, goto error);
3961 return isl_basic_map_add_dims(bset, type, n);
3962 error:
3963 isl_basic_set_free(bset);
3964 return NULL;
3967 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
3968 enum isl_dim_type type)
3970 isl_space *space;
3972 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3973 return map;
3975 space = isl_map_get_space(map);
3976 space = isl_space_reset(space, type);
3977 map = isl_map_reset_space(map, space);
3978 return map;
3981 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3982 enum isl_dim_type type, unsigned pos, unsigned n)
3984 int i;
3986 if (n == 0)
3987 return map_space_reset(map, type);
3989 map = isl_map_cow(map);
3990 if (!map)
3991 return NULL;
3993 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3994 if (!map->dim)
3995 goto error;
3997 for (i = 0; i < map->n; ++i) {
3998 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3999 if (!map->p[i])
4000 goto error;
4003 return map;
4004 error:
4005 isl_map_free(map);
4006 return NULL;
4009 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
4010 enum isl_dim_type type, unsigned pos, unsigned n)
4012 return isl_map_insert_dims(set, type, pos, n);
4015 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
4016 enum isl_dim_type type, unsigned n)
4018 if (!map)
4019 return NULL;
4020 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
4023 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
4024 enum isl_dim_type type, unsigned n)
4026 if (!set)
4027 return NULL;
4028 isl_assert(set->ctx, type != isl_dim_in, goto error);
4029 return set_from_map(isl_map_add_dims(set_to_map(set), type, n));
4030 error:
4031 isl_set_free(set);
4032 return NULL;
4035 __isl_give isl_basic_map *isl_basic_map_move_dims(
4036 __isl_take isl_basic_map *bmap,
4037 enum isl_dim_type dst_type, unsigned dst_pos,
4038 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4040 struct isl_dim_map *dim_map;
4041 struct isl_basic_map *res;
4042 enum isl_dim_type t;
4043 unsigned total, off;
4045 if (!bmap)
4046 return NULL;
4047 if (n == 0) {
4048 bmap = isl_basic_map_reset(bmap, src_type);
4049 bmap = isl_basic_map_reset(bmap, dst_type);
4050 return bmap;
4053 if (isl_basic_map_check_range(bmap, src_type, src_pos, n) < 0)
4054 return isl_basic_map_free(bmap);
4056 if (dst_type == src_type && dst_pos == src_pos)
4057 return bmap;
4059 isl_assert(bmap->ctx, dst_type != src_type, goto error);
4061 if (pos(bmap->dim, dst_type) + dst_pos ==
4062 pos(bmap->dim, src_type) + src_pos +
4063 ((src_type < dst_type) ? n : 0)) {
4064 bmap = isl_basic_map_cow(bmap);
4065 if (!bmap)
4066 return NULL;
4068 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4069 src_type, src_pos, n);
4070 if (!bmap->dim)
4071 goto error;
4073 bmap = isl_basic_map_finalize(bmap);
4075 return bmap;
4078 total = isl_basic_map_total_dim(bmap);
4079 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4081 off = 0;
4082 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4083 unsigned size = isl_space_dim(bmap->dim, t);
4084 if (t == dst_type) {
4085 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4086 0, dst_pos, off);
4087 off += dst_pos;
4088 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
4089 src_pos, n, off);
4090 off += n;
4091 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4092 dst_pos, size - dst_pos, off);
4093 off += size - dst_pos;
4094 } else if (t == src_type) {
4095 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4096 0, src_pos, off);
4097 off += src_pos;
4098 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4099 src_pos + n, size - src_pos - n, off);
4100 off += size - src_pos - n;
4101 } else {
4102 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4103 off += size;
4106 isl_dim_map_div(dim_map, bmap, off);
4108 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4109 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4110 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4111 if (!bmap)
4112 goto error;
4114 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4115 src_type, src_pos, n);
4116 if (!bmap->dim)
4117 goto error;
4119 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
4120 bmap = isl_basic_map_gauss(bmap, NULL);
4121 bmap = isl_basic_map_finalize(bmap);
4123 return bmap;
4124 error:
4125 isl_basic_map_free(bmap);
4126 return NULL;
4129 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
4130 enum isl_dim_type dst_type, unsigned dst_pos,
4131 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4133 isl_basic_map *bmap = bset_to_bmap(bset);
4134 bmap = isl_basic_map_move_dims(bmap, dst_type, dst_pos,
4135 src_type, src_pos, n);
4136 return bset_from_bmap(bmap);
4139 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
4140 enum isl_dim_type dst_type, unsigned dst_pos,
4141 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4143 if (!set)
4144 return NULL;
4145 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
4146 return set_from_map(isl_map_move_dims(set_to_map(set),
4147 dst_type, dst_pos, src_type, src_pos, n));
4148 error:
4149 isl_set_free(set);
4150 return NULL;
4153 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
4154 enum isl_dim_type dst_type, unsigned dst_pos,
4155 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4157 int i;
4159 if (n == 0) {
4160 map = isl_map_reset(map, src_type);
4161 map = isl_map_reset(map, dst_type);
4162 return map;
4165 if (isl_map_check_range(map, src_type, src_pos, n))
4166 return isl_map_free(map);
4168 if (dst_type == src_type && dst_pos == src_pos)
4169 return map;
4171 isl_assert(map->ctx, dst_type != src_type, goto error);
4173 map = isl_map_cow(map);
4174 if (!map)
4175 return NULL;
4177 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
4178 if (!map->dim)
4179 goto error;
4181 for (i = 0; i < map->n; ++i) {
4182 map->p[i] = isl_basic_map_move_dims(map->p[i],
4183 dst_type, dst_pos,
4184 src_type, src_pos, n);
4185 if (!map->p[i])
4186 goto error;
4189 return map;
4190 error:
4191 isl_map_free(map);
4192 return NULL;
4195 /* Move the specified dimensions to the last columns right before
4196 * the divs. Don't change the dimension specification of bmap.
4197 * That's the responsibility of the caller.
4199 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
4200 enum isl_dim_type type, unsigned first, unsigned n)
4202 struct isl_dim_map *dim_map;
4203 struct isl_basic_map *res;
4204 enum isl_dim_type t;
4205 unsigned total, off;
4207 if (!bmap)
4208 return NULL;
4209 if (pos(bmap->dim, type) + first + n ==
4210 1 + isl_space_dim(bmap->dim, isl_dim_all))
4211 return bmap;
4213 total = isl_basic_map_total_dim(bmap);
4214 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4216 off = 0;
4217 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4218 unsigned size = isl_space_dim(bmap->dim, t);
4219 if (t == type) {
4220 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4221 0, first, off);
4222 off += first;
4223 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4224 first, n, total - bmap->n_div - n);
4225 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4226 first + n, size - (first + n), off);
4227 off += size - (first + n);
4228 } else {
4229 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4230 off += size;
4233 isl_dim_map_div(dim_map, bmap, off + n);
4235 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4236 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4237 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4238 return res;
4241 /* Insert "n" rows in the divs of "bmap".
4243 * The number of columns is not changed, which means that the last
4244 * dimensions of "bmap" are being reintepreted as the new divs.
4245 * The space of "bmap" is not adjusted, however, which means
4246 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
4247 * from the space of "bmap" is the responsibility of the caller.
4249 static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
4250 int n)
4252 int i;
4253 size_t row_size;
4254 isl_int **new_div;
4255 isl_int *old;
4257 bmap = isl_basic_map_cow(bmap);
4258 if (!bmap)
4259 return NULL;
4261 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
4262 old = bmap->block2.data;
4263 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
4264 (bmap->extra + n) * (1 + row_size));
4265 if (!bmap->block2.data)
4266 return isl_basic_map_free(bmap);
4267 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
4268 if (!new_div)
4269 return isl_basic_map_free(bmap);
4270 for (i = 0; i < n; ++i) {
4271 new_div[i] = bmap->block2.data +
4272 (bmap->extra + i) * (1 + row_size);
4273 isl_seq_clr(new_div[i], 1 + row_size);
4275 for (i = 0; i < bmap->extra; ++i)
4276 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
4277 free(bmap->div);
4278 bmap->div = new_div;
4279 bmap->n_div += n;
4280 bmap->extra += n;
4282 return bmap;
4285 /* Drop constraints from "bmap" that only involve the variables
4286 * of "type" in the range [first, first + n] that are not related
4287 * to any of the variables outside that interval.
4288 * These constraints cannot influence the values for the variables
4289 * outside the interval, except in case they cause "bmap" to be empty.
4290 * Only drop the constraints if "bmap" is known to be non-empty.
4292 static __isl_give isl_basic_map *drop_irrelevant_constraints(
4293 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
4294 unsigned first, unsigned n)
4296 int i;
4297 int *groups;
4298 unsigned dim, n_div;
4299 isl_bool non_empty;
4301 non_empty = isl_basic_map_plain_is_non_empty(bmap);
4302 if (non_empty < 0)
4303 return isl_basic_map_free(bmap);
4304 if (!non_empty)
4305 return bmap;
4307 dim = isl_basic_map_dim(bmap, isl_dim_all);
4308 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4309 groups = isl_calloc_array(isl_basic_map_get_ctx(bmap), int, dim);
4310 if (!groups)
4311 return isl_basic_map_free(bmap);
4312 first += isl_basic_map_offset(bmap, type) - 1;
4313 for (i = 0; i < first; ++i)
4314 groups[i] = -1;
4315 for (i = first + n; i < dim - n_div; ++i)
4316 groups[i] = -1;
4318 bmap = isl_basic_map_drop_unrelated_constraints(bmap, groups);
4320 return bmap;
4323 /* Turn the n dimensions of type type, starting at first
4324 * into existentially quantified variables.
4326 * If a subset of the projected out variables are unrelated
4327 * to any of the variables that remain, then the constraints
4328 * involving this subset are simply dropped first.
4330 __isl_give isl_basic_map *isl_basic_map_project_out(
4331 __isl_take isl_basic_map *bmap,
4332 enum isl_dim_type type, unsigned first, unsigned n)
4334 isl_bool empty;
4336 if (n == 0)
4337 return basic_map_space_reset(bmap, type);
4338 if (type == isl_dim_div)
4339 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
4340 "cannot project out existentially quantified variables",
4341 return isl_basic_map_free(bmap));
4343 empty = isl_basic_map_plain_is_empty(bmap);
4344 if (empty < 0)
4345 return isl_basic_map_free(bmap);
4346 if (empty)
4347 bmap = isl_basic_map_set_to_empty(bmap);
4349 bmap = drop_irrelevant_constraints(bmap, type, first, n);
4350 if (!bmap)
4351 return NULL;
4353 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
4354 return isl_basic_map_remove_dims(bmap, type, first, n);
4356 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
4357 return isl_basic_map_free(bmap);
4359 bmap = move_last(bmap, type, first, n);
4360 bmap = isl_basic_map_cow(bmap);
4361 bmap = insert_div_rows(bmap, n);
4362 if (!bmap)
4363 return NULL;
4365 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
4366 if (!bmap->dim)
4367 goto error;
4368 bmap = isl_basic_map_simplify(bmap);
4369 bmap = isl_basic_map_drop_redundant_divs(bmap);
4370 return isl_basic_map_finalize(bmap);
4371 error:
4372 isl_basic_map_free(bmap);
4373 return NULL;
4376 /* Turn the n dimensions of type type, starting at first
4377 * into existentially quantified variables.
4379 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
4380 enum isl_dim_type type, unsigned first, unsigned n)
4382 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset),
4383 type, first, n));
4386 /* Turn the n dimensions of type type, starting at first
4387 * into existentially quantified variables.
4389 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
4390 enum isl_dim_type type, unsigned first, unsigned n)
4392 int i;
4394 if (n == 0)
4395 return map_space_reset(map, type);
4397 if (isl_map_check_range(map, type, first, n) < 0)
4398 return isl_map_free(map);
4400 map = isl_map_cow(map);
4401 if (!map)
4402 return NULL;
4404 map->dim = isl_space_drop_dims(map->dim, type, first, n);
4405 if (!map->dim)
4406 goto error;
4408 for (i = 0; i < map->n; ++i) {
4409 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
4410 if (!map->p[i])
4411 goto error;
4414 return map;
4415 error:
4416 isl_map_free(map);
4417 return NULL;
4420 /* Turn all the dimensions of type "type", except the "n" starting at "first"
4421 * into existentially quantified variables.
4423 __isl_give isl_map *isl_map_project_onto(__isl_take isl_map *map,
4424 enum isl_dim_type type, unsigned first, unsigned n)
4426 unsigned dim;
4428 if (isl_map_check_range(map, type, first, n) < 0)
4429 return isl_map_free(map);
4430 dim = isl_map_dim(map, type);
4431 map = isl_map_project_out(map, type, first + n, dim - (first + n));
4432 map = isl_map_project_out(map, type, 0, first);
4433 return map;
4436 /* Turn the n dimensions of type type, starting at first
4437 * into existentially quantified variables.
4439 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
4440 enum isl_dim_type type, unsigned first, unsigned n)
4442 return set_from_map(isl_map_project_out(set_to_map(set),
4443 type, first, n));
4446 /* Return a map that projects the elements in "set" onto their
4447 * "n" set dimensions starting at "first".
4448 * "type" should be equal to isl_dim_set.
4450 __isl_give isl_map *isl_set_project_onto_map(__isl_take isl_set *set,
4451 enum isl_dim_type type, unsigned first, unsigned n)
4453 int i;
4454 int dim;
4455 isl_map *map;
4457 if (!set)
4458 return NULL;
4459 if (type != isl_dim_set)
4460 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4461 "only set dimensions can be projected out", goto error);
4462 dim = isl_set_dim(set, isl_dim_set);
4463 if (first + n > dim || first + n < first)
4464 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4465 "index out of bounds", goto error);
4467 map = isl_map_from_domain(set);
4468 map = isl_map_add_dims(map, isl_dim_out, n);
4469 for (i = 0; i < n; ++i)
4470 map = isl_map_equate(map, isl_dim_in, first + i,
4471 isl_dim_out, i);
4472 return map;
4473 error:
4474 isl_set_free(set);
4475 return NULL;
4478 static __isl_give isl_basic_map *add_divs(__isl_take isl_basic_map *bmap,
4479 unsigned n)
4481 int i, j;
4483 for (i = 0; i < n; ++i) {
4484 j = isl_basic_map_alloc_div(bmap);
4485 if (j < 0)
4486 goto error;
4487 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
4489 return bmap;
4490 error:
4491 isl_basic_map_free(bmap);
4492 return NULL;
4495 struct isl_basic_map *isl_basic_map_apply_range(
4496 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4498 isl_space *space_result = NULL;
4499 struct isl_basic_map *bmap;
4500 unsigned n_in, n_out, n, nparam, total, pos;
4501 struct isl_dim_map *dim_map1, *dim_map2;
4503 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4504 goto error;
4505 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_out,
4506 bmap2->dim, isl_dim_in))
4507 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4508 "spaces don't match", goto error);
4510 space_result = isl_space_join(isl_space_copy(bmap1->dim),
4511 isl_space_copy(bmap2->dim));
4513 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4514 n_out = isl_basic_map_dim(bmap2, isl_dim_out);
4515 n = isl_basic_map_dim(bmap1, isl_dim_out);
4516 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4518 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
4519 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4520 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
4521 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4522 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
4523 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4524 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
4525 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
4526 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4527 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4528 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4530 bmap = isl_basic_map_alloc_space(space_result,
4531 bmap1->n_div + bmap2->n_div + n,
4532 bmap1->n_eq + bmap2->n_eq,
4533 bmap1->n_ineq + bmap2->n_ineq);
4534 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4535 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4536 bmap = add_divs(bmap, n);
4537 bmap = isl_basic_map_simplify(bmap);
4538 bmap = isl_basic_map_drop_redundant_divs(bmap);
4539 return isl_basic_map_finalize(bmap);
4540 error:
4541 isl_basic_map_free(bmap1);
4542 isl_basic_map_free(bmap2);
4543 return NULL;
4546 struct isl_basic_set *isl_basic_set_apply(
4547 struct isl_basic_set *bset, struct isl_basic_map *bmap)
4549 if (!bset || !bmap)
4550 goto error;
4552 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
4553 goto error);
4555 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset),
4556 bmap));
4557 error:
4558 isl_basic_set_free(bset);
4559 isl_basic_map_free(bmap);
4560 return NULL;
4563 struct isl_basic_map *isl_basic_map_apply_domain(
4564 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4566 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4567 goto error;
4568 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_in,
4569 bmap2->dim, isl_dim_in))
4570 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4571 "spaces don't match", goto error);
4573 bmap1 = isl_basic_map_reverse(bmap1);
4574 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
4575 return isl_basic_map_reverse(bmap1);
4576 error:
4577 isl_basic_map_free(bmap1);
4578 isl_basic_map_free(bmap2);
4579 return NULL;
4582 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4583 * A \cap B -> f(A) + f(B)
4585 __isl_give isl_basic_map *isl_basic_map_sum(__isl_take isl_basic_map *bmap1,
4586 __isl_take isl_basic_map *bmap2)
4588 unsigned n_in, n_out, nparam, total, pos;
4589 struct isl_basic_map *bmap = NULL;
4590 struct isl_dim_map *dim_map1, *dim_map2;
4591 int i;
4593 if (!bmap1 || !bmap2)
4594 goto error;
4596 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
4597 goto error);
4599 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4600 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4601 n_out = isl_basic_map_dim(bmap1, isl_dim_out);
4603 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
4604 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4605 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
4606 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4607 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
4608 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4609 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4610 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
4611 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4612 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4613 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
4615 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
4616 bmap1->n_div + bmap2->n_div + 2 * n_out,
4617 bmap1->n_eq + bmap2->n_eq + n_out,
4618 bmap1->n_ineq + bmap2->n_ineq);
4619 for (i = 0; i < n_out; ++i) {
4620 int j = isl_basic_map_alloc_equality(bmap);
4621 if (j < 0)
4622 goto error;
4623 isl_seq_clr(bmap->eq[j], 1+total);
4624 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
4625 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
4626 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
4628 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4629 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4630 bmap = add_divs(bmap, 2 * n_out);
4632 bmap = isl_basic_map_simplify(bmap);
4633 return isl_basic_map_finalize(bmap);
4634 error:
4635 isl_basic_map_free(bmap);
4636 isl_basic_map_free(bmap1);
4637 isl_basic_map_free(bmap2);
4638 return NULL;
4641 /* Given two maps A -> f(A) and B -> g(B), construct a map
4642 * A \cap B -> f(A) + f(B)
4644 __isl_give isl_map *isl_map_sum(__isl_take isl_map *map1,
4645 __isl_take isl_map *map2)
4647 struct isl_map *result;
4648 int i, j;
4650 if (!map1 || !map2)
4651 goto error;
4653 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
4655 result = isl_map_alloc_space(isl_space_copy(map1->dim),
4656 map1->n * map2->n, 0);
4657 if (!result)
4658 goto error;
4659 for (i = 0; i < map1->n; ++i)
4660 for (j = 0; j < map2->n; ++j) {
4661 struct isl_basic_map *part;
4662 part = isl_basic_map_sum(
4663 isl_basic_map_copy(map1->p[i]),
4664 isl_basic_map_copy(map2->p[j]));
4665 if (isl_basic_map_is_empty(part))
4666 isl_basic_map_free(part);
4667 else
4668 result = isl_map_add_basic_map(result, part);
4669 if (!result)
4670 goto error;
4672 isl_map_free(map1);
4673 isl_map_free(map2);
4674 return result;
4675 error:
4676 isl_map_free(map1);
4677 isl_map_free(map2);
4678 return NULL;
4681 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
4682 __isl_take isl_set *set2)
4684 return set_from_map(isl_map_sum(set_to_map(set1), set_to_map(set2)));
4687 /* Given a basic map A -> f(A), construct A -> -f(A).
4689 __isl_give isl_basic_map *isl_basic_map_neg(__isl_take isl_basic_map *bmap)
4691 int i, j;
4692 unsigned off, n;
4694 bmap = isl_basic_map_cow(bmap);
4695 if (!bmap)
4696 return NULL;
4698 n = isl_basic_map_dim(bmap, isl_dim_out);
4699 off = isl_basic_map_offset(bmap, isl_dim_out);
4700 for (i = 0; i < bmap->n_eq; ++i)
4701 for (j = 0; j < n; ++j)
4702 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
4703 for (i = 0; i < bmap->n_ineq; ++i)
4704 for (j = 0; j < n; ++j)
4705 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
4706 for (i = 0; i < bmap->n_div; ++i)
4707 for (j = 0; j < n; ++j)
4708 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
4709 bmap = isl_basic_map_gauss(bmap, NULL);
4710 return isl_basic_map_finalize(bmap);
4713 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
4715 return isl_basic_map_neg(bset);
4718 /* Given a map A -> f(A), construct A -> -f(A).
4720 __isl_give isl_map *isl_map_neg(__isl_take isl_map *map)
4722 int i;
4724 map = isl_map_cow(map);
4725 if (!map)
4726 return NULL;
4728 for (i = 0; i < map->n; ++i) {
4729 map->p[i] = isl_basic_map_neg(map->p[i]);
4730 if (!map->p[i])
4731 goto error;
4734 return map;
4735 error:
4736 isl_map_free(map);
4737 return NULL;
4740 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
4742 return set_from_map(isl_map_neg(set_to_map(set)));
4745 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4746 * A -> floor(f(A)/d).
4748 __isl_give isl_basic_map *isl_basic_map_floordiv(__isl_take isl_basic_map *bmap,
4749 isl_int d)
4751 unsigned n_in, n_out, nparam, total, pos;
4752 struct isl_basic_map *result = NULL;
4753 struct isl_dim_map *dim_map;
4754 int i;
4756 if (!bmap)
4757 return NULL;
4759 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4760 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4761 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4763 total = nparam + n_in + n_out + bmap->n_div + n_out;
4764 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4765 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
4766 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
4767 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
4768 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
4770 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
4771 bmap->n_div + n_out,
4772 bmap->n_eq, bmap->n_ineq + 2 * n_out);
4773 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
4774 result = add_divs(result, n_out);
4775 for (i = 0; i < n_out; ++i) {
4776 int j;
4777 j = isl_basic_map_alloc_inequality(result);
4778 if (j < 0)
4779 goto error;
4780 isl_seq_clr(result->ineq[j], 1+total);
4781 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
4782 isl_int_set_si(result->ineq[j][1+pos+i], 1);
4783 j = isl_basic_map_alloc_inequality(result);
4784 if (j < 0)
4785 goto error;
4786 isl_seq_clr(result->ineq[j], 1+total);
4787 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
4788 isl_int_set_si(result->ineq[j][1+pos+i], -1);
4789 isl_int_sub_ui(result->ineq[j][0], d, 1);
4792 result = isl_basic_map_simplify(result);
4793 return isl_basic_map_finalize(result);
4794 error:
4795 isl_basic_map_free(result);
4796 return NULL;
4799 /* Given a map A -> f(A) and an integer d, construct a map
4800 * A -> floor(f(A)/d).
4802 __isl_give isl_map *isl_map_floordiv(__isl_take isl_map *map, isl_int d)
4804 int i;
4806 map = isl_map_cow(map);
4807 if (!map)
4808 return NULL;
4810 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4811 for (i = 0; i < map->n; ++i) {
4812 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
4813 if (!map->p[i])
4814 goto error;
4816 map = isl_map_unmark_normalized(map);
4818 return map;
4819 error:
4820 isl_map_free(map);
4821 return NULL;
4824 /* Given a map A -> f(A) and an integer d, construct a map
4825 * A -> floor(f(A)/d).
4827 __isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
4828 __isl_take isl_val *d)
4830 if (!map || !d)
4831 goto error;
4832 if (!isl_val_is_int(d))
4833 isl_die(isl_val_get_ctx(d), isl_error_invalid,
4834 "expecting integer denominator", goto error);
4835 map = isl_map_floordiv(map, d->n);
4836 isl_val_free(d);
4837 return map;
4838 error:
4839 isl_map_free(map);
4840 isl_val_free(d);
4841 return NULL;
4844 static __isl_give isl_basic_map *var_equal(__isl_take isl_basic_map *bmap,
4845 unsigned pos)
4847 int i;
4848 unsigned nparam;
4849 unsigned n_in;
4851 i = isl_basic_map_alloc_equality(bmap);
4852 if (i < 0)
4853 goto error;
4854 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4855 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4856 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
4857 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
4858 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
4859 return isl_basic_map_finalize(bmap);
4860 error:
4861 isl_basic_map_free(bmap);
4862 return NULL;
4865 /* Add a constraint to "bmap" expressing i_pos < o_pos
4867 static __isl_give isl_basic_map *var_less(__isl_take isl_basic_map *bmap,
4868 unsigned pos)
4870 int i;
4871 unsigned nparam;
4872 unsigned n_in;
4874 i = isl_basic_map_alloc_inequality(bmap);
4875 if (i < 0)
4876 goto error;
4877 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4878 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4879 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4880 isl_int_set_si(bmap->ineq[i][0], -1);
4881 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4882 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4883 return isl_basic_map_finalize(bmap);
4884 error:
4885 isl_basic_map_free(bmap);
4886 return NULL;
4889 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4891 static __isl_give isl_basic_map *var_less_or_equal(
4892 __isl_take isl_basic_map *bmap, unsigned pos)
4894 int i;
4895 unsigned nparam;
4896 unsigned n_in;
4898 i = isl_basic_map_alloc_inequality(bmap);
4899 if (i < 0)
4900 goto error;
4901 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4902 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4903 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4904 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4905 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4906 return isl_basic_map_finalize(bmap);
4907 error:
4908 isl_basic_map_free(bmap);
4909 return NULL;
4912 /* Add a constraint to "bmap" expressing i_pos > o_pos
4914 static __isl_give isl_basic_map *var_more(__isl_take isl_basic_map *bmap,
4915 unsigned pos)
4917 int i;
4918 unsigned nparam;
4919 unsigned n_in;
4921 i = isl_basic_map_alloc_inequality(bmap);
4922 if (i < 0)
4923 goto error;
4924 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4925 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4926 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4927 isl_int_set_si(bmap->ineq[i][0], -1);
4928 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4929 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4930 return isl_basic_map_finalize(bmap);
4931 error:
4932 isl_basic_map_free(bmap);
4933 return NULL;
4936 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4938 static __isl_give isl_basic_map *var_more_or_equal(
4939 __isl_take isl_basic_map *bmap, unsigned pos)
4941 int i;
4942 unsigned nparam;
4943 unsigned n_in;
4945 i = isl_basic_map_alloc_inequality(bmap);
4946 if (i < 0)
4947 goto error;
4948 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4949 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4950 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4951 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4952 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4953 return isl_basic_map_finalize(bmap);
4954 error:
4955 isl_basic_map_free(bmap);
4956 return NULL;
4959 __isl_give isl_basic_map *isl_basic_map_equal(
4960 __isl_take isl_space *space, unsigned n_equal)
4962 int i;
4963 struct isl_basic_map *bmap;
4964 bmap = isl_basic_map_alloc_space(space, 0, n_equal, 0);
4965 if (!bmap)
4966 return NULL;
4967 for (i = 0; i < n_equal && bmap; ++i)
4968 bmap = var_equal(bmap, i);
4969 return isl_basic_map_finalize(bmap);
4972 /* Return a relation on of dimension "space" expressing i_[0..pos] << o_[0..pos]
4974 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *space,
4975 unsigned pos)
4977 int i;
4978 struct isl_basic_map *bmap;
4979 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
4980 if (!bmap)
4981 return NULL;
4982 for (i = 0; i < pos && bmap; ++i)
4983 bmap = var_equal(bmap, i);
4984 if (bmap)
4985 bmap = var_less(bmap, pos);
4986 return isl_basic_map_finalize(bmap);
4989 /* Return a relation on "space" expressing i_[0..pos] <<= o_[0..pos]
4991 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
4992 __isl_take isl_space *space, unsigned pos)
4994 int i;
4995 isl_basic_map *bmap;
4997 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
4998 for (i = 0; i < pos; ++i)
4999 bmap = var_equal(bmap, i);
5000 bmap = var_less_or_equal(bmap, pos);
5001 return isl_basic_map_finalize(bmap);
5004 /* Return a relation on "space" expressing i_pos > o_pos
5006 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *space,
5007 unsigned pos)
5009 int i;
5010 struct isl_basic_map *bmap;
5011 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
5012 if (!bmap)
5013 return NULL;
5014 for (i = 0; i < pos && bmap; ++i)
5015 bmap = var_equal(bmap, i);
5016 if (bmap)
5017 bmap = var_more(bmap, pos);
5018 return isl_basic_map_finalize(bmap);
5021 /* Return a relation on "space" expressing i_[0..pos] >>= o_[0..pos]
5023 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
5024 __isl_take isl_space *space, unsigned pos)
5026 int i;
5027 isl_basic_map *bmap;
5029 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
5030 for (i = 0; i < pos; ++i)
5031 bmap = var_equal(bmap, i);
5032 bmap = var_more_or_equal(bmap, pos);
5033 return isl_basic_map_finalize(bmap);
5036 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *space,
5037 unsigned n, int equal)
5039 struct isl_map *map;
5040 int i;
5042 if (n == 0 && equal)
5043 return isl_map_universe(space);
5045 map = isl_map_alloc_space(isl_space_copy(space), n, ISL_MAP_DISJOINT);
5047 for (i = 0; i + 1 < n; ++i)
5048 map = isl_map_add_basic_map(map,
5049 isl_basic_map_less_at(isl_space_copy(space), i));
5050 if (n > 0) {
5051 if (equal)
5052 map = isl_map_add_basic_map(map,
5053 isl_basic_map_less_or_equal_at(space, n - 1));
5054 else
5055 map = isl_map_add_basic_map(map,
5056 isl_basic_map_less_at(space, n - 1));
5057 } else
5058 isl_space_free(space);
5060 return map;
5063 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *space, int equal)
5065 if (!space)
5066 return NULL;
5067 return map_lex_lte_first(space, space->n_out, equal);
5070 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
5072 return map_lex_lte_first(dim, n, 0);
5075 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
5077 return map_lex_lte_first(dim, n, 1);
5080 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
5082 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
5085 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
5087 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
5090 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *space,
5091 unsigned n, int equal)
5093 struct isl_map *map;
5094 int i;
5096 if (n == 0 && equal)
5097 return isl_map_universe(space);
5099 map = isl_map_alloc_space(isl_space_copy(space), n, ISL_MAP_DISJOINT);
5101 for (i = 0; i + 1 < n; ++i)
5102 map = isl_map_add_basic_map(map,
5103 isl_basic_map_more_at(isl_space_copy(space), i));
5104 if (n > 0) {
5105 if (equal)
5106 map = isl_map_add_basic_map(map,
5107 isl_basic_map_more_or_equal_at(space, n - 1));
5108 else
5109 map = isl_map_add_basic_map(map,
5110 isl_basic_map_more_at(space, n - 1));
5111 } else
5112 isl_space_free(space);
5114 return map;
5117 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *space, int equal)
5119 if (!space)
5120 return NULL;
5121 return map_lex_gte_first(space, space->n_out, equal);
5124 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
5126 return map_lex_gte_first(dim, n, 0);
5129 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
5131 return map_lex_gte_first(dim, n, 1);
5134 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
5136 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
5139 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
5141 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
5144 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
5145 __isl_take isl_set *set2)
5147 isl_map *map;
5148 map = isl_map_lex_le(isl_set_get_space(set1));
5149 map = isl_map_intersect_domain(map, set1);
5150 map = isl_map_intersect_range(map, set2);
5151 return map;
5154 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
5155 __isl_take isl_set *set2)
5157 isl_map *map;
5158 map = isl_map_lex_lt(isl_set_get_space(set1));
5159 map = isl_map_intersect_domain(map, set1);
5160 map = isl_map_intersect_range(map, set2);
5161 return map;
5164 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
5165 __isl_take isl_set *set2)
5167 isl_map *map;
5168 map = isl_map_lex_ge(isl_set_get_space(set1));
5169 map = isl_map_intersect_domain(map, set1);
5170 map = isl_map_intersect_range(map, set2);
5171 return map;
5174 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
5175 __isl_take isl_set *set2)
5177 isl_map *map;
5178 map = isl_map_lex_gt(isl_set_get_space(set1));
5179 map = isl_map_intersect_domain(map, set1);
5180 map = isl_map_intersect_range(map, set2);
5181 return map;
5184 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
5185 __isl_take isl_map *map2)
5187 isl_map *map;
5188 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
5189 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5190 map = isl_map_apply_range(map, isl_map_reverse(map2));
5191 return map;
5194 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
5195 __isl_take isl_map *map2)
5197 isl_map *map;
5198 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
5199 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5200 map = isl_map_apply_range(map, isl_map_reverse(map2));
5201 return map;
5204 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
5205 __isl_take isl_map *map2)
5207 isl_map *map;
5208 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
5209 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5210 map = isl_map_apply_range(map, isl_map_reverse(map2));
5211 return map;
5214 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
5215 __isl_take isl_map *map2)
5217 isl_map *map;
5218 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
5219 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5220 map = isl_map_apply_range(map, isl_map_reverse(map2));
5221 return map;
5224 /* For a div d = floor(f/m), add the constraint
5226 * f - m d >= 0
5228 static isl_stat add_upper_div_constraint(__isl_keep isl_basic_map *bmap,
5229 unsigned pos, isl_int *div)
5231 int i;
5232 unsigned total = isl_basic_map_total_dim(bmap);
5234 i = isl_basic_map_alloc_inequality(bmap);
5235 if (i < 0)
5236 return isl_stat_error;
5237 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
5238 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
5240 return isl_stat_ok;
5243 /* For a div d = floor(f/m), add the constraint
5245 * -(f-(m-1)) + m d >= 0
5247 static isl_stat add_lower_div_constraint(__isl_keep isl_basic_map *bmap,
5248 unsigned pos, isl_int *div)
5250 int i;
5251 unsigned total = isl_basic_map_total_dim(bmap);
5253 i = isl_basic_map_alloc_inequality(bmap);
5254 if (i < 0)
5255 return isl_stat_error;
5256 isl_seq_neg(bmap->ineq[i], div + 1, 1 + total);
5257 isl_int_set(bmap->ineq[i][1 + pos], div[0]);
5258 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
5259 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
5261 return isl_stat_ok;
5264 /* For a div d = floor(f/m), add the constraints
5266 * f - m d >= 0
5267 * -(f-(m-1)) + m d >= 0
5269 * Note that the second constraint is the negation of
5271 * f - m d >= m
5273 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
5274 unsigned pos, isl_int *div)
5276 if (add_upper_div_constraint(bmap, pos, div) < 0)
5277 return -1;
5278 if (add_lower_div_constraint(bmap, pos, div) < 0)
5279 return -1;
5280 return 0;
5283 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
5284 unsigned pos, isl_int *div)
5286 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset),
5287 pos, div);
5290 int isl_basic_map_add_div_constraints(__isl_keep isl_basic_map *bmap,
5291 unsigned div)
5293 unsigned total = isl_basic_map_total_dim(bmap);
5294 unsigned div_pos = total - bmap->n_div + div;
5296 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
5297 bmap->div[div]);
5300 /* For each known div d = floor(f/m), add the constraints
5302 * f - m d >= 0
5303 * -(f-(m-1)) + m d >= 0
5305 * Remove duplicate constraints in case of some these div constraints
5306 * already appear in "bmap".
5308 __isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
5309 __isl_take isl_basic_map *bmap)
5311 unsigned n_div;
5313 if (!bmap)
5314 return NULL;
5315 n_div = isl_basic_map_dim(bmap, isl_dim_div);
5316 if (n_div == 0)
5317 return bmap;
5319 bmap = add_known_div_constraints(bmap);
5320 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
5321 bmap = isl_basic_map_finalize(bmap);
5322 return bmap;
5325 /* Add the div constraint of sign "sign" for div "div" of "bmap".
5327 * In particular, if this div is of the form d = floor(f/m),
5328 * then add the constraint
5330 * f - m d >= 0
5332 * if sign < 0 or the constraint
5334 * -(f-(m-1)) + m d >= 0
5336 * if sign > 0.
5338 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map *bmap,
5339 unsigned div, int sign)
5341 unsigned total;
5342 unsigned div_pos;
5344 if (!bmap)
5345 return -1;
5347 total = isl_basic_map_total_dim(bmap);
5348 div_pos = total - bmap->n_div + div;
5350 if (sign < 0)
5351 return add_upper_div_constraint(bmap, div_pos, bmap->div[div]);
5352 else
5353 return add_lower_div_constraint(bmap, div_pos, bmap->div[div]);
5356 __isl_give isl_basic_set *isl_basic_map_underlying_set(
5357 __isl_take isl_basic_map *bmap)
5359 if (!bmap)
5360 goto error;
5361 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
5362 bmap->n_div == 0 &&
5363 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
5364 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
5365 return bset_from_bmap(bmap);
5366 bmap = isl_basic_map_cow(bmap);
5367 if (!bmap)
5368 goto error;
5369 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
5370 if (!bmap->dim)
5371 goto error;
5372 bmap->extra -= bmap->n_div;
5373 bmap->n_div = 0;
5374 bmap = isl_basic_map_finalize(bmap);
5375 return bset_from_bmap(bmap);
5376 error:
5377 isl_basic_map_free(bmap);
5378 return NULL;
5381 __isl_give isl_basic_set *isl_basic_set_underlying_set(
5382 __isl_take isl_basic_set *bset)
5384 return isl_basic_map_underlying_set(bset_to_bmap(bset));
5387 /* Replace each element in "list" by the result of applying
5388 * isl_basic_map_underlying_set to the element.
5390 __isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
5391 __isl_take isl_basic_map_list *list)
5393 int i, n;
5395 if (!list)
5396 return NULL;
5398 n = isl_basic_map_list_n_basic_map(list);
5399 for (i = 0; i < n; ++i) {
5400 isl_basic_map *bmap;
5401 isl_basic_set *bset;
5403 bmap = isl_basic_map_list_get_basic_map(list, i);
5404 bset = isl_basic_set_underlying_set(bmap);
5405 list = isl_basic_set_list_set_basic_set(list, i, bset);
5408 return list;
5411 __isl_give isl_basic_map *isl_basic_map_overlying_set(
5412 __isl_take isl_basic_set *bset, __isl_take isl_basic_map *like)
5414 struct isl_basic_map *bmap;
5415 struct isl_ctx *ctx;
5416 unsigned total;
5417 int i;
5419 if (!bset || !like)
5420 goto error;
5421 ctx = bset->ctx;
5422 isl_assert(ctx, bset->n_div == 0, goto error);
5423 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
5424 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
5425 goto error);
5426 if (like->n_div == 0) {
5427 isl_space *space = isl_basic_map_get_space(like);
5428 isl_basic_map_free(like);
5429 return isl_basic_map_reset_space(bset, space);
5431 bset = isl_basic_set_cow(bset);
5432 if (!bset)
5433 goto error;
5434 total = bset->dim->n_out + bset->extra;
5435 bmap = bset_to_bmap(bset);
5436 isl_space_free(bmap->dim);
5437 bmap->dim = isl_space_copy(like->dim);
5438 if (!bmap->dim)
5439 goto error;
5440 bmap->n_div = like->n_div;
5441 bmap->extra += like->n_div;
5442 if (bmap->extra) {
5443 unsigned ltotal;
5444 isl_int **div;
5445 ltotal = total - bmap->extra + like->extra;
5446 if (ltotal > total)
5447 ltotal = total;
5448 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
5449 bmap->extra * (1 + 1 + total));
5450 if (isl_blk_is_error(bmap->block2))
5451 goto error;
5452 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
5453 if (!div)
5454 goto error;
5455 bmap->div = div;
5456 for (i = 0; i < bmap->extra; ++i)
5457 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
5458 for (i = 0; i < like->n_div; ++i) {
5459 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
5460 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
5462 bmap = isl_basic_map_add_known_div_constraints(bmap);
5464 isl_basic_map_free(like);
5465 bmap = isl_basic_map_simplify(bmap);
5466 bmap = isl_basic_map_finalize(bmap);
5467 return bmap;
5468 error:
5469 isl_basic_map_free(like);
5470 isl_basic_set_free(bset);
5471 return NULL;
5474 struct isl_basic_set *isl_basic_set_from_underlying_set(
5475 struct isl_basic_set *bset, struct isl_basic_set *like)
5477 return bset_from_bmap(isl_basic_map_overlying_set(bset,
5478 bset_to_bmap(like)));
5481 __isl_give isl_set *isl_map_underlying_set(__isl_take isl_map *map)
5483 int i;
5485 map = isl_map_cow(map);
5486 if (!map)
5487 return NULL;
5488 map->dim = isl_space_cow(map->dim);
5489 if (!map->dim)
5490 goto error;
5492 for (i = 1; i < map->n; ++i)
5493 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
5494 goto error);
5495 for (i = 0; i < map->n; ++i) {
5496 map->p[i] = bset_to_bmap(
5497 isl_basic_map_underlying_set(map->p[i]));
5498 if (!map->p[i])
5499 goto error;
5501 if (map->n == 0)
5502 map->dim = isl_space_underlying(map->dim, 0);
5503 else {
5504 isl_space_free(map->dim);
5505 map->dim = isl_space_copy(map->p[0]->dim);
5507 if (!map->dim)
5508 goto error;
5509 return set_from_map(map);
5510 error:
5511 isl_map_free(map);
5512 return NULL;
5515 /* Replace the space of "bmap" by "space".
5517 * If the space of "bmap" is identical to "space" (including the identifiers
5518 * of the input and output dimensions), then simply return the original input.
5520 __isl_give isl_basic_map *isl_basic_map_reset_space(
5521 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
5523 isl_bool equal;
5524 isl_space *bmap_space;
5526 bmap_space = isl_basic_map_peek_space(bmap);
5527 equal = isl_space_is_equal(bmap_space, space);
5528 if (equal >= 0 && equal)
5529 equal = isl_space_has_equal_ids(bmap_space, space);
5530 if (equal < 0)
5531 goto error;
5532 if (equal) {
5533 isl_space_free(space);
5534 return bmap;
5536 bmap = isl_basic_map_cow(bmap);
5537 if (!bmap || !space)
5538 goto error;
5540 isl_space_free(bmap->dim);
5541 bmap->dim = space;
5543 bmap = isl_basic_map_finalize(bmap);
5545 return bmap;
5546 error:
5547 isl_basic_map_free(bmap);
5548 isl_space_free(space);
5549 return NULL;
5552 __isl_give isl_basic_set *isl_basic_set_reset_space(
5553 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
5555 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset),
5556 dim));
5559 /* Check that the total dimensions of "map" and "space" are the same.
5561 static isl_stat check_map_space_equal_total_dim(__isl_keep isl_map *map,
5562 __isl_keep isl_space *space)
5564 unsigned dim1, dim2;
5566 if (!map || !space)
5567 return isl_stat_error;
5568 dim1 = isl_map_dim(map, isl_dim_all);
5569 dim2 = isl_space_dim(space, isl_dim_all);
5570 if (dim1 == dim2)
5571 return isl_stat_ok;
5572 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5573 "total dimensions do not match", return isl_stat_error);
5576 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
5577 __isl_take isl_space *space)
5579 int i;
5581 map = isl_map_cow(map);
5582 if (!map || !space)
5583 goto error;
5585 for (i = 0; i < map->n; ++i) {
5586 map->p[i] = isl_basic_map_reset_space(map->p[i],
5587 isl_space_copy(space));
5588 if (!map->p[i])
5589 goto error;
5591 isl_space_free(map->dim);
5592 map->dim = space;
5594 return map;
5595 error:
5596 isl_map_free(map);
5597 isl_space_free(space);
5598 return NULL;
5601 /* Replace the space of "map" by "space", without modifying
5602 * the dimension of "map".
5604 * If the space of "map" is identical to "space" (including the identifiers
5605 * of the input and output dimensions), then simply return the original input.
5607 __isl_give isl_map *isl_map_reset_equal_dim_space(__isl_take isl_map *map,
5608 __isl_take isl_space *space)
5610 isl_bool equal;
5611 isl_space *map_space;
5613 map_space = isl_map_peek_space(map);
5614 equal = isl_space_is_equal(map_space, space);
5615 if (equal >= 0 && equal)
5616 equal = isl_space_has_equal_ids(map_space, space);
5617 if (equal < 0)
5618 goto error;
5619 if (equal) {
5620 isl_space_free(space);
5621 return map;
5623 if (check_map_space_equal_total_dim(map, space) < 0)
5624 goto error;
5625 return isl_map_reset_space(map, space);
5626 error:
5627 isl_map_free(map);
5628 isl_space_free(space);
5629 return NULL;
5632 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
5633 __isl_take isl_space *dim)
5635 return set_from_map(isl_map_reset_space(set_to_map(set), dim));
5638 /* Compute the parameter domain of the given basic set.
5640 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
5642 isl_bool is_params;
5643 isl_space *space;
5644 unsigned n;
5646 is_params = isl_basic_set_is_params(bset);
5647 if (is_params < 0)
5648 return isl_basic_set_free(bset);
5649 if (is_params)
5650 return bset;
5652 n = isl_basic_set_dim(bset, isl_dim_set);
5653 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
5654 space = isl_basic_set_get_space(bset);
5655 space = isl_space_params(space);
5656 bset = isl_basic_set_reset_space(bset, space);
5657 return bset;
5660 /* Construct a zero-dimensional basic set with the given parameter domain.
5662 __isl_give isl_basic_set *isl_basic_set_from_params(
5663 __isl_take isl_basic_set *bset)
5665 isl_space *space;
5666 space = isl_basic_set_get_space(bset);
5667 space = isl_space_set_from_params(space);
5668 bset = isl_basic_set_reset_space(bset, space);
5669 return bset;
5672 /* Compute the parameter domain of the given set.
5674 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
5676 isl_space *space;
5677 unsigned n;
5679 if (isl_set_is_params(set))
5680 return set;
5682 n = isl_set_dim(set, isl_dim_set);
5683 set = isl_set_project_out(set, isl_dim_set, 0, n);
5684 space = isl_set_get_space(set);
5685 space = isl_space_params(space);
5686 set = isl_set_reset_space(set, space);
5687 return set;
5690 /* Construct a zero-dimensional set with the given parameter domain.
5692 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
5694 isl_space *space;
5695 space = isl_set_get_space(set);
5696 space = isl_space_set_from_params(space);
5697 set = isl_set_reset_space(set, space);
5698 return set;
5701 /* Compute the parameter domain of the given map.
5703 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
5705 isl_space *space;
5706 unsigned n;
5708 n = isl_map_dim(map, isl_dim_in);
5709 map = isl_map_project_out(map, isl_dim_in, 0, n);
5710 n = isl_map_dim(map, isl_dim_out);
5711 map = isl_map_project_out(map, isl_dim_out, 0, n);
5712 space = isl_map_get_space(map);
5713 space = isl_space_params(space);
5714 map = isl_map_reset_space(map, space);
5715 return map;
5718 __isl_give isl_basic_set *isl_basic_map_domain(__isl_take isl_basic_map *bmap)
5720 isl_space *space;
5721 unsigned n_out;
5723 if (!bmap)
5724 return NULL;
5725 space = isl_space_domain(isl_basic_map_get_space(bmap));
5727 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5728 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
5730 return isl_basic_map_reset_space(bmap, space);
5733 isl_bool isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
5735 if (!bmap)
5736 return isl_bool_error;
5737 return isl_space_may_be_set(bmap->dim);
5740 /* Is this basic map actually a set?
5741 * Users should never call this function. Outside of isl,
5742 * the type should indicate whether something is a set or a map.
5744 isl_bool isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
5746 if (!bmap)
5747 return isl_bool_error;
5748 return isl_space_is_set(bmap->dim);
5751 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
5753 isl_bool is_set;
5755 is_set = isl_basic_map_is_set(bmap);
5756 if (is_set < 0)
5757 goto error;
5758 if (is_set)
5759 return bmap;
5760 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
5761 error:
5762 isl_basic_map_free(bmap);
5763 return NULL;
5766 __isl_give isl_basic_map *isl_basic_map_domain_map(
5767 __isl_take isl_basic_map *bmap)
5769 int i;
5770 isl_space *space;
5771 isl_basic_map *domain;
5772 int nparam, n_in, n_out;
5774 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5775 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5776 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5778 space = isl_basic_map_get_space(bmap);
5779 space = isl_space_from_range(isl_space_domain(space));
5780 domain = isl_basic_map_universe(space);
5782 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5783 bmap = isl_basic_map_apply_range(bmap, domain);
5784 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
5786 for (i = 0; i < n_in; ++i)
5787 bmap = isl_basic_map_equate(bmap, isl_dim_in, i,
5788 isl_dim_out, i);
5790 bmap = isl_basic_map_gauss(bmap, NULL);
5791 return isl_basic_map_finalize(bmap);
5794 __isl_give isl_basic_map *isl_basic_map_range_map(
5795 __isl_take isl_basic_map *bmap)
5797 int i;
5798 isl_space *space;
5799 isl_basic_map *range;
5800 int nparam, n_in, n_out;
5802 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5803 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5804 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5806 space = isl_basic_map_get_space(bmap);
5807 space = isl_space_from_range(isl_space_range(space));
5808 range = isl_basic_map_universe(space);
5810 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5811 bmap = isl_basic_map_apply_range(bmap, range);
5812 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
5814 for (i = 0; i < n_out; ++i)
5815 bmap = isl_basic_map_equate(bmap, isl_dim_in, n_in + i,
5816 isl_dim_out, i);
5818 bmap = isl_basic_map_gauss(bmap, NULL);
5819 return isl_basic_map_finalize(bmap);
5822 int isl_map_may_be_set(__isl_keep isl_map *map)
5824 if (!map)
5825 return -1;
5826 return isl_space_may_be_set(map->dim);
5829 /* Is this map actually a set?
5830 * Users should never call this function. Outside of isl,
5831 * the type should indicate whether something is a set or a map.
5833 isl_bool isl_map_is_set(__isl_keep isl_map *map)
5835 if (!map)
5836 return isl_bool_error;
5837 return isl_space_is_set(map->dim);
5840 __isl_give isl_set *isl_map_range(__isl_take isl_map *map)
5842 int i;
5843 isl_bool is_set;
5844 struct isl_set *set;
5846 is_set = isl_map_is_set(map);
5847 if (is_set < 0)
5848 goto error;
5849 if (is_set)
5850 return set_from_map(map);
5852 map = isl_map_cow(map);
5853 if (!map)
5854 goto error;
5856 set = set_from_map(map);
5857 set->dim = isl_space_range(set->dim);
5858 if (!set->dim)
5859 goto error;
5860 for (i = 0; i < map->n; ++i) {
5861 set->p[i] = isl_basic_map_range(map->p[i]);
5862 if (!set->p[i])
5863 goto error;
5865 ISL_F_CLR(set, ISL_MAP_DISJOINT);
5866 ISL_F_CLR(set, ISL_SET_NORMALIZED);
5867 return set;
5868 error:
5869 isl_map_free(map);
5870 return NULL;
5873 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
5875 int i;
5877 map = isl_map_cow(map);
5878 if (!map)
5879 return NULL;
5881 map->dim = isl_space_domain_map(map->dim);
5882 if (!map->dim)
5883 goto error;
5884 for (i = 0; i < map->n; ++i) {
5885 map->p[i] = isl_basic_map_domain_map(map->p[i]);
5886 if (!map->p[i])
5887 goto error;
5889 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5890 map = isl_map_unmark_normalized(map);
5891 return map;
5892 error:
5893 isl_map_free(map);
5894 return NULL;
5897 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
5899 int i;
5900 isl_space *range_dim;
5902 map = isl_map_cow(map);
5903 if (!map)
5904 return NULL;
5906 range_dim = isl_space_range(isl_map_get_space(map));
5907 range_dim = isl_space_from_range(range_dim);
5908 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
5909 map->dim = isl_space_join(map->dim, range_dim);
5910 if (!map->dim)
5911 goto error;
5912 for (i = 0; i < map->n; ++i) {
5913 map->p[i] = isl_basic_map_range_map(map->p[i]);
5914 if (!map->p[i])
5915 goto error;
5917 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5918 map = isl_map_unmark_normalized(map);
5919 return map;
5920 error:
5921 isl_map_free(map);
5922 return NULL;
5925 /* Given a wrapped map of the form A[B -> C],
5926 * return the map A[B -> C] -> B.
5928 __isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
5930 isl_id *id;
5931 isl_map *map;
5933 if (!set)
5934 return NULL;
5935 if (!isl_set_has_tuple_id(set))
5936 return isl_map_domain_map(isl_set_unwrap(set));
5938 id = isl_set_get_tuple_id(set);
5939 map = isl_map_domain_map(isl_set_unwrap(set));
5940 map = isl_map_set_tuple_id(map, isl_dim_in, id);
5942 return map;
5945 __isl_give isl_basic_map *isl_basic_map_from_domain(
5946 __isl_take isl_basic_set *bset)
5948 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
5951 __isl_give isl_basic_map *isl_basic_map_from_range(
5952 __isl_take isl_basic_set *bset)
5954 isl_space *space;
5955 space = isl_basic_set_get_space(bset);
5956 space = isl_space_from_range(space);
5957 bset = isl_basic_set_reset_space(bset, space);
5958 return bset_to_bmap(bset);
5961 /* Create a relation with the given set as range.
5962 * The domain of the created relation is a zero-dimensional
5963 * flat anonymous space.
5965 __isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
5967 isl_space *space;
5968 space = isl_set_get_space(set);
5969 space = isl_space_from_range(space);
5970 set = isl_set_reset_space(set, space);
5971 return set_to_map(set);
5974 /* Create a relation with the given set as domain.
5975 * The range of the created relation is a zero-dimensional
5976 * flat anonymous space.
5978 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
5980 return isl_map_reverse(isl_map_from_range(set));
5983 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
5984 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
5986 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
5989 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
5990 __isl_take isl_set *range)
5992 return isl_map_apply_range(isl_map_reverse(domain), range);
5995 /* Return a newly allocated isl_map with given space and flags and
5996 * room for "n" basic maps.
5997 * Make sure that all cached information is cleared.
5999 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *space, int n,
6000 unsigned flags)
6002 struct isl_map *map;
6004 if (!space)
6005 return NULL;
6006 if (n < 0)
6007 isl_die(space->ctx, isl_error_internal,
6008 "negative number of basic maps", goto error);
6009 map = isl_calloc(space->ctx, struct isl_map,
6010 sizeof(struct isl_map) +
6011 (n - 1) * sizeof(struct isl_basic_map *));
6012 if (!map)
6013 goto error;
6015 map->ctx = space->ctx;
6016 isl_ctx_ref(map->ctx);
6017 map->ref = 1;
6018 map->size = n;
6019 map->n = 0;
6020 map->dim = space;
6021 map->flags = flags;
6022 return map;
6023 error:
6024 isl_space_free(space);
6025 return NULL;
6028 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *space)
6030 struct isl_basic_map *bmap;
6031 bmap = isl_basic_map_alloc_space(space, 0, 1, 0);
6032 bmap = isl_basic_map_set_to_empty(bmap);
6033 return bmap;
6036 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *space)
6038 struct isl_basic_set *bset;
6039 bset = isl_basic_set_alloc_space(space, 0, 1, 0);
6040 bset = isl_basic_set_set_to_empty(bset);
6041 return bset;
6044 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *space)
6046 struct isl_basic_map *bmap;
6047 bmap = isl_basic_map_alloc_space(space, 0, 0, 0);
6048 bmap = isl_basic_map_finalize(bmap);
6049 return bmap;
6052 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *space)
6054 struct isl_basic_set *bset;
6055 bset = isl_basic_set_alloc_space(space, 0, 0, 0);
6056 bset = isl_basic_set_finalize(bset);
6057 return bset;
6060 __isl_give isl_basic_map *isl_basic_map_nat_universe(
6061 __isl_take isl_space *space)
6063 int i;
6064 unsigned total = isl_space_dim(space, isl_dim_all);
6065 isl_basic_map *bmap;
6067 bmap = isl_basic_map_alloc_space(space, 0, 0, total);
6068 for (i = 0; i < total; ++i) {
6069 int k = isl_basic_map_alloc_inequality(bmap);
6070 if (k < 0)
6071 goto error;
6072 isl_seq_clr(bmap->ineq[k], 1 + total);
6073 isl_int_set_si(bmap->ineq[k][1 + i], 1);
6075 return bmap;
6076 error:
6077 isl_basic_map_free(bmap);
6078 return NULL;
6081 __isl_give isl_basic_set *isl_basic_set_nat_universe(
6082 __isl_take isl_space *space)
6084 return isl_basic_map_nat_universe(space);
6087 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
6089 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
6092 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
6094 return isl_map_nat_universe(dim);
6097 __isl_give isl_map *isl_map_empty(__isl_take isl_space *space)
6099 return isl_map_alloc_space(space, 0, ISL_MAP_DISJOINT);
6102 __isl_give isl_set *isl_set_empty(__isl_take isl_space *space)
6104 return isl_set_alloc_space(space, 0, ISL_MAP_DISJOINT);
6107 __isl_give isl_map *isl_map_universe(__isl_take isl_space *space)
6109 struct isl_map *map;
6110 if (!space)
6111 return NULL;
6112 map = isl_map_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6113 map = isl_map_add_basic_map(map, isl_basic_map_universe(space));
6114 return map;
6117 __isl_give isl_set *isl_set_universe(__isl_take isl_space *space)
6119 struct isl_set *set;
6120 if (!space)
6121 return NULL;
6122 set = isl_set_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6123 set = isl_set_add_basic_set(set, isl_basic_set_universe(space));
6124 return set;
6127 struct isl_map *isl_map_dup(struct isl_map *map)
6129 int i;
6130 struct isl_map *dup;
6132 if (!map)
6133 return NULL;
6134 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
6135 for (i = 0; i < map->n; ++i)
6136 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
6137 return dup;
6140 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
6141 __isl_take isl_basic_map *bmap)
6143 if (!bmap || !map)
6144 goto error;
6145 if (isl_basic_map_plain_is_empty(bmap)) {
6146 isl_basic_map_free(bmap);
6147 return map;
6149 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
6150 isl_assert(map->ctx, map->n < map->size, goto error);
6151 map->p[map->n] = bmap;
6152 map->n++;
6153 map = isl_map_unmark_normalized(map);
6154 return map;
6155 error:
6156 if (map)
6157 isl_map_free(map);
6158 if (bmap)
6159 isl_basic_map_free(bmap);
6160 return NULL;
6163 __isl_null isl_map *isl_map_free(__isl_take isl_map *map)
6165 int i;
6167 if (!map)
6168 return NULL;
6170 if (--map->ref > 0)
6171 return NULL;
6173 clear_caches(map);
6174 isl_ctx_deref(map->ctx);
6175 for (i = 0; i < map->n; ++i)
6176 isl_basic_map_free(map->p[i]);
6177 isl_space_free(map->dim);
6178 free(map);
6180 return NULL;
6183 static __isl_give isl_basic_map *isl_basic_map_fix_pos_si(
6184 __isl_take isl_basic_map *bmap, unsigned pos, int value)
6186 int j;
6188 bmap = isl_basic_map_cow(bmap);
6189 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6190 j = isl_basic_map_alloc_equality(bmap);
6191 if (j < 0)
6192 goto error;
6193 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6194 isl_int_set_si(bmap->eq[j][pos], -1);
6195 isl_int_set_si(bmap->eq[j][0], value);
6196 bmap = isl_basic_map_simplify(bmap);
6197 return isl_basic_map_finalize(bmap);
6198 error:
6199 isl_basic_map_free(bmap);
6200 return NULL;
6203 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
6204 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
6206 int j;
6208 bmap = isl_basic_map_cow(bmap);
6209 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6210 j = isl_basic_map_alloc_equality(bmap);
6211 if (j < 0)
6212 goto error;
6213 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6214 isl_int_set_si(bmap->eq[j][pos], -1);
6215 isl_int_set(bmap->eq[j][0], value);
6216 bmap = isl_basic_map_simplify(bmap);
6217 return isl_basic_map_finalize(bmap);
6218 error:
6219 isl_basic_map_free(bmap);
6220 return NULL;
6223 __isl_give isl_basic_map *isl_basic_map_fix_si(__isl_take isl_basic_map *bmap,
6224 enum isl_dim_type type, unsigned pos, int value)
6226 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6227 return isl_basic_map_free(bmap);
6228 return isl_basic_map_fix_pos_si(bmap,
6229 isl_basic_map_offset(bmap, type) + pos, value);
6232 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
6233 enum isl_dim_type type, unsigned pos, isl_int value)
6235 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6236 return isl_basic_map_free(bmap);
6237 return isl_basic_map_fix_pos(bmap,
6238 isl_basic_map_offset(bmap, type) + pos, value);
6241 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
6242 * to be equal to "v".
6244 __isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
6245 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6247 if (!bmap || !v)
6248 goto error;
6249 if (!isl_val_is_int(v))
6250 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
6251 "expecting integer value", goto error);
6252 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6253 goto error;
6254 pos += isl_basic_map_offset(bmap, type);
6255 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
6256 isl_val_free(v);
6257 return bmap;
6258 error:
6259 isl_basic_map_free(bmap);
6260 isl_val_free(v);
6261 return NULL;
6264 /* Fix the value of the variable at position "pos" of type "type" of "bset"
6265 * to be equal to "v".
6267 __isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
6268 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6270 return isl_basic_map_fix_val(bset, type, pos, v);
6273 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
6274 enum isl_dim_type type, unsigned pos, int value)
6276 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6277 type, pos, value));
6280 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
6281 enum isl_dim_type type, unsigned pos, isl_int value)
6283 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset),
6284 type, pos, value));
6287 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
6288 unsigned input, int value)
6290 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
6293 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
6294 unsigned dim, int value)
6296 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6297 isl_dim_set, dim, value));
6300 /* Remove the basic map at position "i" from "map" if this basic map
6301 * is (obviously) empty.
6303 static __isl_give isl_map *remove_if_empty(__isl_take isl_map *map, int i)
6305 isl_bool empty;
6307 if (!map)
6308 return NULL;
6310 empty = isl_basic_map_plain_is_empty(map->p[i]);
6311 if (empty < 0)
6312 return isl_map_free(map);
6313 if (!empty)
6314 return map;
6316 isl_basic_map_free(map->p[i]);
6317 map->n--;
6318 if (i != map->n) {
6319 map->p[i] = map->p[map->n];
6320 map = isl_map_unmark_normalized(map);
6324 return map;
6327 /* Perform "fn" on each basic map of "map", where we may not be holding
6328 * the only reference to "map".
6329 * In particular, "fn" should be a semantics preserving operation
6330 * that we want to apply to all copies of "map". We therefore need
6331 * to be careful not to modify "map" in a way that breaks "map"
6332 * in case anything goes wrong.
6334 __isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
6335 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
6337 struct isl_basic_map *bmap;
6338 int i;
6340 if (!map)
6341 return NULL;
6343 for (i = map->n - 1; i >= 0; --i) {
6344 bmap = isl_basic_map_copy(map->p[i]);
6345 bmap = fn(bmap);
6346 if (!bmap)
6347 goto error;
6348 isl_basic_map_free(map->p[i]);
6349 map->p[i] = bmap;
6350 map = remove_if_empty(map, i);
6351 if (!map)
6352 return NULL;
6355 return map;
6356 error:
6357 isl_map_free(map);
6358 return NULL;
6361 __isl_give isl_map *isl_map_fix_si(__isl_take isl_map *map,
6362 enum isl_dim_type type, unsigned pos, int value)
6364 int i;
6366 map = isl_map_cow(map);
6367 if (!map)
6368 return NULL;
6370 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6371 for (i = map->n - 1; i >= 0; --i) {
6372 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
6373 map = remove_if_empty(map, i);
6374 if (!map)
6375 return NULL;
6377 map = isl_map_unmark_normalized(map);
6378 return map;
6379 error:
6380 isl_map_free(map);
6381 return NULL;
6384 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
6385 enum isl_dim_type type, unsigned pos, int value)
6387 return set_from_map(isl_map_fix_si(set_to_map(set), type, pos, value));
6390 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
6391 enum isl_dim_type type, unsigned pos, isl_int value)
6393 int i;
6395 map = isl_map_cow(map);
6396 if (!map)
6397 return NULL;
6399 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6400 for (i = 0; i < map->n; ++i) {
6401 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
6402 if (!map->p[i])
6403 goto error;
6405 map = isl_map_unmark_normalized(map);
6406 return map;
6407 error:
6408 isl_map_free(map);
6409 return NULL;
6412 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
6413 enum isl_dim_type type, unsigned pos, isl_int value)
6415 return set_from_map(isl_map_fix(set_to_map(set), type, pos, value));
6418 /* Fix the value of the variable at position "pos" of type "type" of "map"
6419 * to be equal to "v".
6421 __isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
6422 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6424 int i;
6426 map = isl_map_cow(map);
6427 if (!map || !v)
6428 goto error;
6430 if (!isl_val_is_int(v))
6431 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6432 "expecting integer value", goto error);
6433 if (pos >= isl_map_dim(map, type))
6434 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6435 "index out of bounds", goto error);
6436 for (i = map->n - 1; i >= 0; --i) {
6437 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
6438 isl_val_copy(v));
6439 map = remove_if_empty(map, i);
6440 if (!map)
6441 goto error;
6443 map = isl_map_unmark_normalized(map);
6444 isl_val_free(v);
6445 return map;
6446 error:
6447 isl_map_free(map);
6448 isl_val_free(v);
6449 return NULL;
6452 /* Fix the value of the variable at position "pos" of type "type" of "set"
6453 * to be equal to "v".
6455 __isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
6456 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6458 return isl_map_fix_val(set, type, pos, v);
6461 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
6462 unsigned input, int value)
6464 return isl_map_fix_si(map, isl_dim_in, input, value);
6467 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
6469 return set_from_map(isl_map_fix_si(set_to_map(set),
6470 isl_dim_set, dim, value));
6473 static __isl_give isl_basic_map *basic_map_bound_si(
6474 __isl_take isl_basic_map *bmap,
6475 enum isl_dim_type type, unsigned pos, int value, int upper)
6477 int j;
6479 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6480 return isl_basic_map_free(bmap);
6481 pos += isl_basic_map_offset(bmap, type);
6482 bmap = isl_basic_map_cow(bmap);
6483 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6484 j = isl_basic_map_alloc_inequality(bmap);
6485 if (j < 0)
6486 goto error;
6487 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6488 if (upper) {
6489 isl_int_set_si(bmap->ineq[j][pos], -1);
6490 isl_int_set_si(bmap->ineq[j][0], value);
6491 } else {
6492 isl_int_set_si(bmap->ineq[j][pos], 1);
6493 isl_int_set_si(bmap->ineq[j][0], -value);
6495 bmap = isl_basic_map_simplify(bmap);
6496 return isl_basic_map_finalize(bmap);
6497 error:
6498 isl_basic_map_free(bmap);
6499 return NULL;
6502 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
6503 __isl_take isl_basic_map *bmap,
6504 enum isl_dim_type type, unsigned pos, int value)
6506 return basic_map_bound_si(bmap, type, pos, value, 0);
6509 /* Constrain the values of the given dimension to be no greater than "value".
6511 __isl_give isl_basic_map *isl_basic_map_upper_bound_si(
6512 __isl_take isl_basic_map *bmap,
6513 enum isl_dim_type type, unsigned pos, int value)
6515 return basic_map_bound_si(bmap, type, pos, value, 1);
6518 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
6519 enum isl_dim_type type, unsigned pos, int value, int upper)
6521 int i;
6523 map = isl_map_cow(map);
6524 if (!map)
6525 return NULL;
6527 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6528 for (i = 0; i < map->n; ++i) {
6529 map->p[i] = basic_map_bound_si(map->p[i],
6530 type, pos, value, upper);
6531 if (!map->p[i])
6532 goto error;
6534 map = isl_map_unmark_normalized(map);
6535 return map;
6536 error:
6537 isl_map_free(map);
6538 return NULL;
6541 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
6542 enum isl_dim_type type, unsigned pos, int value)
6544 return map_bound_si(map, type, pos, value, 0);
6547 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
6548 enum isl_dim_type type, unsigned pos, int value)
6550 return map_bound_si(map, type, pos, value, 1);
6553 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
6554 enum isl_dim_type type, unsigned pos, int value)
6556 return set_from_map(isl_map_lower_bound_si(set_to_map(set),
6557 type, pos, value));
6560 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
6561 enum isl_dim_type type, unsigned pos, int value)
6563 return isl_map_upper_bound_si(set, type, pos, value);
6566 /* Bound the given variable of "bmap" from below (or above is "upper"
6567 * is set) to "value".
6569 static __isl_give isl_basic_map *basic_map_bound(
6570 __isl_take isl_basic_map *bmap,
6571 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6573 int j;
6575 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6576 return isl_basic_map_free(bmap);
6577 pos += isl_basic_map_offset(bmap, type);
6578 bmap = isl_basic_map_cow(bmap);
6579 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6580 j = isl_basic_map_alloc_inequality(bmap);
6581 if (j < 0)
6582 goto error;
6583 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6584 if (upper) {
6585 isl_int_set_si(bmap->ineq[j][pos], -1);
6586 isl_int_set(bmap->ineq[j][0], value);
6587 } else {
6588 isl_int_set_si(bmap->ineq[j][pos], 1);
6589 isl_int_neg(bmap->ineq[j][0], value);
6591 bmap = isl_basic_map_simplify(bmap);
6592 return isl_basic_map_finalize(bmap);
6593 error:
6594 isl_basic_map_free(bmap);
6595 return NULL;
6598 /* Bound the given variable of "map" from below (or above is "upper"
6599 * is set) to "value".
6601 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
6602 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6604 int i;
6606 map = isl_map_cow(map);
6607 if (!map)
6608 return NULL;
6610 if (pos >= isl_map_dim(map, type))
6611 isl_die(map->ctx, isl_error_invalid,
6612 "index out of bounds", goto error);
6613 for (i = map->n - 1; i >= 0; --i) {
6614 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
6615 map = remove_if_empty(map, i);
6616 if (!map)
6617 return NULL;
6619 map = isl_map_unmark_normalized(map);
6620 return map;
6621 error:
6622 isl_map_free(map);
6623 return NULL;
6626 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
6627 enum isl_dim_type type, unsigned pos, isl_int value)
6629 return map_bound(map, type, pos, value, 0);
6632 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
6633 enum isl_dim_type type, unsigned pos, isl_int value)
6635 return map_bound(map, type, pos, value, 1);
6638 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
6639 enum isl_dim_type type, unsigned pos, isl_int value)
6641 return isl_map_lower_bound(set, type, pos, value);
6644 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
6645 enum isl_dim_type type, unsigned pos, isl_int value)
6647 return isl_map_upper_bound(set, type, pos, value);
6650 /* Force the values of the variable at position "pos" of type "type" of "set"
6651 * to be no smaller than "value".
6653 __isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
6654 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6656 if (!value)
6657 goto error;
6658 if (!isl_val_is_int(value))
6659 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6660 "expecting integer value", goto error);
6661 set = isl_set_lower_bound(set, type, pos, value->n);
6662 isl_val_free(value);
6663 return set;
6664 error:
6665 isl_val_free(value);
6666 isl_set_free(set);
6667 return NULL;
6670 /* Force the values of the variable at position "pos" of type "type" of "set"
6671 * to be no greater than "value".
6673 __isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
6674 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6676 if (!value)
6677 goto error;
6678 if (!isl_val_is_int(value))
6679 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6680 "expecting integer value", goto error);
6681 set = isl_set_upper_bound(set, type, pos, value->n);
6682 isl_val_free(value);
6683 return set;
6684 error:
6685 isl_val_free(value);
6686 isl_set_free(set);
6687 return NULL;
6690 /* Bound the given variable of "bset" from below (or above is "upper"
6691 * is set) to "value".
6693 static __isl_give isl_basic_set *isl_basic_set_bound(
6694 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6695 isl_int value, int upper)
6697 return bset_from_bmap(basic_map_bound(bset_to_bmap(bset),
6698 type, pos, value, upper));
6701 /* Bound the given variable of "bset" from below (or above is "upper"
6702 * is set) to "value".
6704 static __isl_give isl_basic_set *isl_basic_set_bound_val(
6705 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6706 __isl_take isl_val *value, int upper)
6708 if (!value)
6709 goto error;
6710 if (!isl_val_is_int(value))
6711 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
6712 "expecting integer value", goto error);
6713 bset = isl_basic_set_bound(bset, type, pos, value->n, upper);
6714 isl_val_free(value);
6715 return bset;
6716 error:
6717 isl_val_free(value);
6718 isl_basic_set_free(bset);
6719 return NULL;
6722 /* Bound the given variable of "bset" from below to "value".
6724 __isl_give isl_basic_set *isl_basic_set_lower_bound_val(
6725 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6726 __isl_take isl_val *value)
6728 return isl_basic_set_bound_val(bset, type, pos, value, 0);
6731 /* Bound the given variable of "bset" from above to "value".
6733 __isl_give isl_basic_set *isl_basic_set_upper_bound_val(
6734 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6735 __isl_take isl_val *value)
6737 return isl_basic_set_bound_val(bset, type, pos, value, 1);
6740 __isl_give isl_map *isl_map_reverse(__isl_take isl_map *map)
6742 int i;
6744 map = isl_map_cow(map);
6745 if (!map)
6746 return NULL;
6748 map->dim = isl_space_reverse(map->dim);
6749 if (!map->dim)
6750 goto error;
6751 for (i = 0; i < map->n; ++i) {
6752 map->p[i] = isl_basic_map_reverse(map->p[i]);
6753 if (!map->p[i])
6754 goto error;
6756 map = isl_map_unmark_normalized(map);
6757 return map;
6758 error:
6759 isl_map_free(map);
6760 return NULL;
6763 #undef TYPE
6764 #define TYPE isl_pw_multi_aff
6765 #undef SUFFIX
6766 #define SUFFIX _pw_multi_aff
6767 #undef EMPTY
6768 #define EMPTY isl_pw_multi_aff_empty
6769 #undef ADD
6770 #define ADD isl_pw_multi_aff_union_add
6771 #include "isl_map_lexopt_templ.c"
6773 /* Given a map "map", compute the lexicographically minimal
6774 * (or maximal) image element for each domain element in dom,
6775 * in the form of an isl_pw_multi_aff.
6776 * If "empty" is not NULL, then set *empty to those elements in dom that
6777 * do not have an image element.
6778 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6779 * should be computed over the domain of "map". "empty" is also NULL
6780 * in this case.
6782 * We first compute the lexicographically minimal or maximal element
6783 * in the first basic map. This results in a partial solution "res"
6784 * and a subset "todo" of dom that still need to be handled.
6785 * We then consider each of the remaining maps in "map" and successively
6786 * update both "res" and "todo".
6787 * If "empty" is NULL, then the todo sets are not needed and therefore
6788 * also not computed.
6790 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
6791 __isl_take isl_map *map, __isl_take isl_set *dom,
6792 __isl_give isl_set **empty, unsigned flags)
6794 int i;
6795 int full;
6796 isl_pw_multi_aff *res;
6797 isl_set *todo;
6799 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6800 if (!map || (!full && !dom))
6801 goto error;
6803 if (isl_map_plain_is_empty(map)) {
6804 if (empty)
6805 *empty = dom;
6806 else
6807 isl_set_free(dom);
6808 return isl_pw_multi_aff_from_map(map);
6811 res = basic_map_partial_lexopt_pw_multi_aff(
6812 isl_basic_map_copy(map->p[0]),
6813 isl_set_copy(dom), empty, flags);
6815 if (empty)
6816 todo = *empty;
6817 for (i = 1; i < map->n; ++i) {
6818 isl_pw_multi_aff *res_i;
6820 res_i = basic_map_partial_lexopt_pw_multi_aff(
6821 isl_basic_map_copy(map->p[i]),
6822 isl_set_copy(dom), empty, flags);
6824 if (ISL_FL_ISSET(flags, ISL_OPT_MAX))
6825 res = isl_pw_multi_aff_union_lexmax(res, res_i);
6826 else
6827 res = isl_pw_multi_aff_union_lexmin(res, res_i);
6829 if (empty)
6830 todo = isl_set_intersect(todo, *empty);
6833 isl_set_free(dom);
6834 isl_map_free(map);
6836 if (empty)
6837 *empty = todo;
6839 return res;
6840 error:
6841 if (empty)
6842 *empty = NULL;
6843 isl_set_free(dom);
6844 isl_map_free(map);
6845 return NULL;
6848 #undef TYPE
6849 #define TYPE isl_map
6850 #undef SUFFIX
6851 #define SUFFIX
6852 #undef EMPTY
6853 #define EMPTY isl_map_empty
6854 #undef ADD
6855 #define ADD isl_map_union_disjoint
6856 #include "isl_map_lexopt_templ.c"
6858 /* Given a map "map", compute the lexicographically minimal
6859 * (or maximal) image element for each domain element in "dom",
6860 * in the form of an isl_map.
6861 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6862 * do not have an image element.
6863 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6864 * should be computed over the domain of "map". "empty" is also NULL
6865 * in this case.
6867 * If the input consists of more than one disjunct, then first
6868 * compute the desired result in the form of an isl_pw_multi_aff and
6869 * then convert that into an isl_map.
6871 * This function used to have an explicit implementation in terms
6872 * of isl_maps, but it would continually intersect the domains of
6873 * partial results with the complement of the domain of the next
6874 * partial solution, potentially leading to an explosion in the number
6875 * of disjuncts if there are several disjuncts in the input.
6876 * An even earlier implementation of this function would look for
6877 * better results in the domain of the partial result and for extra
6878 * results in the complement of this domain, which would lead to
6879 * even more splintering.
6881 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
6882 __isl_take isl_map *map, __isl_take isl_set *dom,
6883 __isl_give isl_set **empty, unsigned flags)
6885 int full;
6886 struct isl_map *res;
6887 isl_pw_multi_aff *pma;
6889 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6890 if (!map || (!full && !dom))
6891 goto error;
6893 if (isl_map_plain_is_empty(map)) {
6894 if (empty)
6895 *empty = dom;
6896 else
6897 isl_set_free(dom);
6898 return map;
6901 if (map->n == 1) {
6902 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
6903 dom, empty, flags);
6904 isl_map_free(map);
6905 return res;
6908 pma = isl_map_partial_lexopt_aligned_pw_multi_aff(map, dom, empty,
6909 flags);
6910 return isl_map_from_pw_multi_aff(pma);
6911 error:
6912 if (empty)
6913 *empty = NULL;
6914 isl_set_free(dom);
6915 isl_map_free(map);
6916 return NULL;
6919 __isl_give isl_map *isl_map_partial_lexmax(
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, ISL_OPT_MAX);
6926 __isl_give isl_map *isl_map_partial_lexmin(
6927 __isl_take isl_map *map, __isl_take isl_set *dom,
6928 __isl_give isl_set **empty)
6930 return isl_map_partial_lexopt(map, dom, empty, 0);
6933 __isl_give isl_set *isl_set_partial_lexmin(
6934 __isl_take isl_set *set, __isl_take isl_set *dom,
6935 __isl_give isl_set **empty)
6937 return set_from_map(isl_map_partial_lexmin(set_to_map(set),
6938 dom, empty));
6941 __isl_give isl_set *isl_set_partial_lexmax(
6942 __isl_take isl_set *set, __isl_take isl_set *dom,
6943 __isl_give isl_set **empty)
6945 return set_from_map(isl_map_partial_lexmax(set_to_map(set),
6946 dom, empty));
6949 /* Compute the lexicographic minimum (or maximum if "flags" includes
6950 * ISL_OPT_MAX) of "bset" over its parametric domain.
6952 __isl_give isl_set *isl_basic_set_lexopt(__isl_take isl_basic_set *bset,
6953 unsigned flags)
6955 return isl_basic_map_lexopt(bset, flags);
6958 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
6960 return isl_basic_map_lexopt(bmap, ISL_OPT_MAX);
6963 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
6965 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset)));
6968 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
6970 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset)));
6973 /* Compute the lexicographic minimum of "bset" over its parametric domain
6974 * for the purpose of quantifier elimination.
6975 * That is, find an explicit representation for all the existentially
6976 * quantified variables in "bset" by computing their lexicographic
6977 * minimum.
6979 static __isl_give isl_set *isl_basic_set_lexmin_compute_divs(
6980 __isl_take isl_basic_set *bset)
6982 return isl_basic_set_lexopt(bset, ISL_OPT_QE);
6985 /* Given a basic map with one output dimension, compute the minimum or
6986 * maximum of that dimension as an isl_pw_aff.
6988 * Compute the optimum as a lexicographic optimum over the single
6989 * output dimension and extract the single isl_pw_aff from the result.
6991 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
6992 int max)
6994 isl_pw_multi_aff *pma;
6995 isl_pw_aff *pwaff;
6997 bmap = isl_basic_map_copy(bmap);
6998 pma = isl_basic_map_lexopt_pw_multi_aff(bmap, max ? ISL_OPT_MAX : 0);
6999 pwaff = isl_pw_multi_aff_get_pw_aff(pma, 0);
7000 isl_pw_multi_aff_free(pma);
7002 return pwaff;
7005 /* Compute the minimum or maximum of the given output dimension
7006 * as a function of the parameters and the input dimensions,
7007 * but independently of the other output dimensions.
7009 * We first project out the other output dimension and then compute
7010 * the "lexicographic" maximum in each basic map, combining the results
7011 * using isl_pw_aff_union_max.
7013 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
7014 int max)
7016 int i;
7017 isl_pw_aff *pwaff;
7018 unsigned n_out;
7020 n_out = isl_map_dim(map, isl_dim_out);
7021 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
7022 map = isl_map_project_out(map, isl_dim_out, 0, pos);
7023 if (!map)
7024 return NULL;
7026 if (map->n == 0) {
7027 isl_space *dim = isl_map_get_space(map);
7028 isl_map_free(map);
7029 return isl_pw_aff_empty(dim);
7032 pwaff = basic_map_dim_opt(map->p[0], max);
7033 for (i = 1; i < map->n; ++i) {
7034 isl_pw_aff *pwaff_i;
7036 pwaff_i = basic_map_dim_opt(map->p[i], max);
7037 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
7040 isl_map_free(map);
7042 return pwaff;
7045 /* Compute the minimum of the given output dimension as a function of the
7046 * parameters and input dimensions, but independently of
7047 * the other output dimensions.
7049 __isl_give isl_pw_aff *isl_map_dim_min(__isl_take isl_map *map, int pos)
7051 return map_dim_opt(map, pos, 0);
7054 /* Compute the maximum of the given output dimension as a function of the
7055 * parameters and input dimensions, but independently of
7056 * the other output dimensions.
7058 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
7060 return map_dim_opt(map, pos, 1);
7063 /* Compute the minimum or maximum of the given set dimension
7064 * as a function of the parameters,
7065 * but independently of the other set dimensions.
7067 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
7068 int max)
7070 return map_dim_opt(set, pos, max);
7073 /* Compute the maximum of the given set dimension as a function of the
7074 * parameters, but independently of the other set dimensions.
7076 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
7078 return set_dim_opt(set, pos, 1);
7081 /* Compute the minimum of the given set dimension as a function of the
7082 * parameters, but independently of the other set dimensions.
7084 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
7086 return set_dim_opt(set, pos, 0);
7089 /* Apply a preimage specified by "mat" on the parameters of "bset".
7090 * bset is assumed to have only parameters and divs.
7092 static __isl_give isl_basic_set *basic_set_parameter_preimage(
7093 __isl_take isl_basic_set *bset, __isl_take isl_mat *mat)
7095 unsigned nparam;
7097 if (!bset || !mat)
7098 goto error;
7100 bset->dim = isl_space_cow(bset->dim);
7101 if (!bset->dim)
7102 goto error;
7104 nparam = isl_basic_set_dim(bset, isl_dim_param);
7106 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
7108 bset->dim->nparam = 0;
7109 bset->dim->n_out = nparam;
7110 bset = isl_basic_set_preimage(bset, mat);
7111 if (bset) {
7112 bset->dim->nparam = bset->dim->n_out;
7113 bset->dim->n_out = 0;
7115 return bset;
7116 error:
7117 isl_mat_free(mat);
7118 isl_basic_set_free(bset);
7119 return NULL;
7122 /* Apply a preimage specified by "mat" on the parameters of "set".
7123 * set is assumed to have only parameters and divs.
7125 static __isl_give isl_set *set_parameter_preimage(__isl_take isl_set *set,
7126 __isl_take isl_mat *mat)
7128 isl_space *space;
7129 unsigned nparam;
7131 if (!set || !mat)
7132 goto error;
7134 nparam = isl_set_dim(set, isl_dim_param);
7136 if (mat->n_row != 1 + nparam)
7137 isl_die(isl_set_get_ctx(set), isl_error_internal,
7138 "unexpected number of rows", goto error);
7140 space = isl_set_get_space(set);
7141 space = isl_space_move_dims(space, isl_dim_set, 0,
7142 isl_dim_param, 0, nparam);
7143 set = isl_set_reset_space(set, space);
7144 set = isl_set_preimage(set, mat);
7145 nparam = isl_set_dim(set, isl_dim_out);
7146 space = isl_set_get_space(set);
7147 space = isl_space_move_dims(space, isl_dim_param, 0,
7148 isl_dim_out, 0, nparam);
7149 set = isl_set_reset_space(set, space);
7150 return set;
7151 error:
7152 isl_mat_free(mat);
7153 isl_set_free(set);
7154 return NULL;
7157 /* Intersect the basic set "bset" with the affine space specified by the
7158 * equalities in "eq".
7160 static __isl_give isl_basic_set *basic_set_append_equalities(
7161 __isl_take isl_basic_set *bset, __isl_take isl_mat *eq)
7163 int i, k;
7164 unsigned len;
7166 if (!bset || !eq)
7167 goto error;
7169 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
7170 eq->n_row, 0);
7171 if (!bset)
7172 goto error;
7174 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
7175 for (i = 0; i < eq->n_row; ++i) {
7176 k = isl_basic_set_alloc_equality(bset);
7177 if (k < 0)
7178 goto error;
7179 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
7180 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
7182 isl_mat_free(eq);
7184 bset = isl_basic_set_gauss(bset, NULL);
7185 bset = isl_basic_set_finalize(bset);
7187 return bset;
7188 error:
7189 isl_mat_free(eq);
7190 isl_basic_set_free(bset);
7191 return NULL;
7194 /* Intersect the set "set" with the affine space specified by the
7195 * equalities in "eq".
7197 static struct isl_set *set_append_equalities(struct isl_set *set,
7198 struct isl_mat *eq)
7200 int i;
7202 if (!set || !eq)
7203 goto error;
7205 for (i = 0; i < set->n; ++i) {
7206 set->p[i] = basic_set_append_equalities(set->p[i],
7207 isl_mat_copy(eq));
7208 if (!set->p[i])
7209 goto error;
7211 isl_mat_free(eq);
7212 return set;
7213 error:
7214 isl_mat_free(eq);
7215 isl_set_free(set);
7216 return NULL;
7219 /* Given a basic set "bset" that only involves parameters and existentially
7220 * quantified variables, return the index of the first equality
7221 * that only involves parameters. If there is no such equality then
7222 * return bset->n_eq.
7224 * This function assumes that isl_basic_set_gauss has been called on "bset".
7226 static int first_parameter_equality(__isl_keep isl_basic_set *bset)
7228 int i, j;
7229 unsigned nparam, n_div;
7231 if (!bset)
7232 return -1;
7234 nparam = isl_basic_set_dim(bset, isl_dim_param);
7235 n_div = isl_basic_set_dim(bset, isl_dim_div);
7237 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
7238 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
7239 ++i;
7242 return i;
7245 /* Compute an explicit representation for the existentially quantified
7246 * variables in "bset" by computing the "minimal value" of the set
7247 * variables. Since there are no set variables, the computation of
7248 * the minimal value essentially computes an explicit representation
7249 * of the non-empty part(s) of "bset".
7251 * The input only involves parameters and existentially quantified variables.
7252 * All equalities among parameters have been removed.
7254 * Since the existentially quantified variables in the result are in general
7255 * going to be different from those in the input, we first replace
7256 * them by the minimal number of variables based on their equalities.
7257 * This should simplify the parametric integer programming.
7259 static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
7261 isl_morph *morph1, *morph2;
7262 isl_set *set;
7263 unsigned n;
7265 if (!bset)
7266 return NULL;
7267 if (bset->n_eq == 0)
7268 return isl_basic_set_lexmin_compute_divs(bset);
7270 morph1 = isl_basic_set_parameter_compression(bset);
7271 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
7272 bset = isl_basic_set_lift(bset);
7273 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
7274 bset = isl_morph_basic_set(morph2, bset);
7275 n = isl_basic_set_dim(bset, isl_dim_set);
7276 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
7278 set = isl_basic_set_lexmin_compute_divs(bset);
7280 set = isl_morph_set(isl_morph_inverse(morph1), set);
7282 return set;
7285 /* Project the given basic set onto its parameter domain, possibly introducing
7286 * new, explicit, existential variables in the constraints.
7287 * The input has parameters and (possibly implicit) existential variables.
7288 * The output has the same parameters, but only
7289 * explicit existentially quantified variables.
7291 * The actual projection is performed by pip, but pip doesn't seem
7292 * to like equalities very much, so we first remove the equalities
7293 * among the parameters by performing a variable compression on
7294 * the parameters. Afterward, an inverse transformation is performed
7295 * and the equalities among the parameters are inserted back in.
7297 * The variable compression on the parameters may uncover additional
7298 * equalities that were only implicit before. We therefore check
7299 * if there are any new parameter equalities in the result and
7300 * if so recurse. The removal of parameter equalities is required
7301 * for the parameter compression performed by base_compute_divs.
7303 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
7305 int i;
7306 struct isl_mat *eq;
7307 struct isl_mat *T, *T2;
7308 struct isl_set *set;
7309 unsigned nparam;
7311 bset = isl_basic_set_cow(bset);
7312 if (!bset)
7313 return NULL;
7315 if (bset->n_eq == 0)
7316 return base_compute_divs(bset);
7318 bset = isl_basic_set_gauss(bset, NULL);
7319 if (!bset)
7320 return NULL;
7321 if (isl_basic_set_plain_is_empty(bset))
7322 return isl_set_from_basic_set(bset);
7324 i = first_parameter_equality(bset);
7325 if (i == bset->n_eq)
7326 return base_compute_divs(bset);
7328 nparam = isl_basic_set_dim(bset, isl_dim_param);
7329 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
7330 0, 1 + nparam);
7331 eq = isl_mat_cow(eq);
7332 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
7333 if (T && T->n_col == 0) {
7334 isl_mat_free(T);
7335 isl_mat_free(T2);
7336 isl_mat_free(eq);
7337 bset = isl_basic_set_set_to_empty(bset);
7338 return isl_set_from_basic_set(bset);
7340 bset = basic_set_parameter_preimage(bset, T);
7342 i = first_parameter_equality(bset);
7343 if (!bset)
7344 set = NULL;
7345 else if (i == bset->n_eq)
7346 set = base_compute_divs(bset);
7347 else
7348 set = parameter_compute_divs(bset);
7349 set = set_parameter_preimage(set, T2);
7350 set = set_append_equalities(set, eq);
7351 return set;
7354 /* Insert the divs from "ls" before those of "bmap".
7356 * The number of columns is not changed, which means that the last
7357 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7358 * The caller is responsible for removing the same number of dimensions
7359 * from the space of "bmap".
7361 static __isl_give isl_basic_map *insert_divs_from_local_space(
7362 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
7364 int i;
7365 int n_div;
7366 int old_n_div;
7368 n_div = isl_local_space_dim(ls, isl_dim_div);
7369 if (n_div == 0)
7370 return bmap;
7372 old_n_div = bmap->n_div;
7373 bmap = insert_div_rows(bmap, n_div);
7374 if (!bmap)
7375 return NULL;
7377 for (i = 0; i < n_div; ++i) {
7378 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
7379 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
7382 return bmap;
7385 /* Replace the space of "bmap" by the space and divs of "ls".
7387 * If "ls" has any divs, then we simplify the result since we may
7388 * have discovered some additional equalities that could simplify
7389 * the div expressions.
7391 static __isl_give isl_basic_map *basic_replace_space_by_local_space(
7392 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
7394 int n_div;
7396 bmap = isl_basic_map_cow(bmap);
7397 if (!bmap || !ls)
7398 goto error;
7400 n_div = isl_local_space_dim(ls, isl_dim_div);
7401 bmap = insert_divs_from_local_space(bmap, ls);
7402 if (!bmap)
7403 goto error;
7405 isl_space_free(bmap->dim);
7406 bmap->dim = isl_local_space_get_space(ls);
7407 if (!bmap->dim)
7408 goto error;
7410 isl_local_space_free(ls);
7411 if (n_div > 0)
7412 bmap = isl_basic_map_simplify(bmap);
7413 bmap = isl_basic_map_finalize(bmap);
7414 return bmap;
7415 error:
7416 isl_basic_map_free(bmap);
7417 isl_local_space_free(ls);
7418 return NULL;
7421 /* Replace the space of "map" by the space and divs of "ls".
7423 static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
7424 __isl_take isl_local_space *ls)
7426 int i;
7428 map = isl_map_cow(map);
7429 if (!map || !ls)
7430 goto error;
7432 for (i = 0; i < map->n; ++i) {
7433 map->p[i] = basic_replace_space_by_local_space(map->p[i],
7434 isl_local_space_copy(ls));
7435 if (!map->p[i])
7436 goto error;
7438 isl_space_free(map->dim);
7439 map->dim = isl_local_space_get_space(ls);
7440 if (!map->dim)
7441 goto error;
7443 isl_local_space_free(ls);
7444 return map;
7445 error:
7446 isl_local_space_free(ls);
7447 isl_map_free(map);
7448 return NULL;
7451 /* Compute an explicit representation for the existentially
7452 * quantified variables for which do not know any explicit representation yet.
7454 * We first sort the existentially quantified variables so that the
7455 * existentially quantified variables for which we already have an explicit
7456 * representation are placed before those for which we do not.
7457 * The input dimensions, the output dimensions and the existentially
7458 * quantified variables for which we already have an explicit
7459 * representation are then turned into parameters.
7460 * compute_divs returns a map with the same parameters and
7461 * no input or output dimensions and the dimension specification
7462 * is reset to that of the input, including the existentially quantified
7463 * variables for which we already had an explicit representation.
7465 static __isl_give isl_map *compute_divs(__isl_take isl_basic_map *bmap)
7467 struct isl_basic_set *bset;
7468 struct isl_set *set;
7469 struct isl_map *map;
7470 isl_space *space;
7471 isl_local_space *ls;
7472 unsigned nparam;
7473 unsigned n_in;
7474 unsigned n_out;
7475 int n_known;
7476 int i;
7478 bmap = isl_basic_map_sort_divs(bmap);
7479 bmap = isl_basic_map_cow(bmap);
7480 if (!bmap)
7481 return NULL;
7483 n_known = isl_basic_map_first_unknown_div(bmap);
7484 if (n_known < 0)
7485 return isl_map_from_basic_map(isl_basic_map_free(bmap));
7487 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7488 n_in = isl_basic_map_dim(bmap, isl_dim_in);
7489 n_out = isl_basic_map_dim(bmap, isl_dim_out);
7490 space = isl_space_set_alloc(bmap->ctx,
7491 nparam + n_in + n_out + n_known, 0);
7492 if (!space)
7493 goto error;
7495 ls = isl_basic_map_get_local_space(bmap);
7496 ls = isl_local_space_drop_dims(ls, isl_dim_div,
7497 n_known, bmap->n_div - n_known);
7498 if (n_known > 0) {
7499 for (i = n_known; i < bmap->n_div; ++i)
7500 swap_div(bmap, i - n_known, i);
7501 bmap->n_div -= n_known;
7502 bmap->extra -= n_known;
7504 bmap = isl_basic_map_reset_space(bmap, space);
7505 bset = bset_from_bmap(bmap);
7507 set = parameter_compute_divs(bset);
7508 map = set_to_map(set);
7509 map = replace_space_by_local_space(map, ls);
7511 return map;
7512 error:
7513 isl_basic_map_free(bmap);
7514 return NULL;
7517 /* Remove the explicit representation of local variable "div",
7518 * if there is any.
7520 __isl_give isl_basic_map *isl_basic_map_mark_div_unknown(
7521 __isl_take isl_basic_map *bmap, int div)
7523 isl_bool unknown;
7525 unknown = isl_basic_map_div_is_marked_unknown(bmap, div);
7526 if (unknown < 0)
7527 return isl_basic_map_free(bmap);
7528 if (unknown)
7529 return bmap;
7531 bmap = isl_basic_map_cow(bmap);
7532 if (!bmap)
7533 return NULL;
7534 isl_int_set_si(bmap->div[div][0], 0);
7535 return bmap;
7538 /* Is local variable "div" of "bmap" marked as not having an explicit
7539 * representation?
7540 * Note that even if "div" is not marked in this way and therefore
7541 * has an explicit representation, this representation may still
7542 * depend (indirectly) on other local variables that do not
7543 * have an explicit representation.
7545 isl_bool isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map *bmap,
7546 int div)
7548 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
7549 return isl_bool_error;
7550 return isl_int_is_zero(bmap->div[div][0]);
7553 /* Return the position of the first local variable that does not
7554 * have an explicit representation.
7555 * Return the total number of local variables if they all have
7556 * an explicit representation.
7557 * Return -1 on error.
7559 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map *bmap)
7561 int i;
7563 if (!bmap)
7564 return -1;
7566 for (i = 0; i < bmap->n_div; ++i) {
7567 if (!isl_basic_map_div_is_known(bmap, i))
7568 return i;
7570 return bmap->n_div;
7573 /* Return the position of the first local variable that does not
7574 * have an explicit representation.
7575 * Return the total number of local variables if they all have
7576 * an explicit representation.
7577 * Return -1 on error.
7579 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set *bset)
7581 return isl_basic_map_first_unknown_div(bset);
7584 /* Does "bmap" have an explicit representation for all local variables?
7586 isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
7588 int first, n;
7590 n = isl_basic_map_dim(bmap, isl_dim_div);
7591 first = isl_basic_map_first_unknown_div(bmap);
7592 if (first < 0)
7593 return isl_bool_error;
7594 return first == n;
7597 /* Do all basic maps in "map" have an explicit representation
7598 * for all local variables?
7600 isl_bool isl_map_divs_known(__isl_keep isl_map *map)
7602 int i;
7604 if (!map)
7605 return isl_bool_error;
7607 for (i = 0; i < map->n; ++i) {
7608 int known = isl_basic_map_divs_known(map->p[i]);
7609 if (known <= 0)
7610 return known;
7613 return isl_bool_true;
7616 /* If bmap contains any unknown divs, then compute explicit
7617 * expressions for them. However, this computation may be
7618 * quite expensive, so first try to remove divs that aren't
7619 * strictly needed.
7621 __isl_give isl_map *isl_basic_map_compute_divs(__isl_take isl_basic_map *bmap)
7623 int known;
7624 struct isl_map *map;
7626 known = isl_basic_map_divs_known(bmap);
7627 if (known < 0)
7628 goto error;
7629 if (known)
7630 return isl_map_from_basic_map(bmap);
7632 bmap = isl_basic_map_drop_redundant_divs(bmap);
7634 known = isl_basic_map_divs_known(bmap);
7635 if (known < 0)
7636 goto error;
7637 if (known)
7638 return isl_map_from_basic_map(bmap);
7640 map = compute_divs(bmap);
7641 return map;
7642 error:
7643 isl_basic_map_free(bmap);
7644 return NULL;
7647 __isl_give isl_map *isl_map_compute_divs(__isl_take isl_map *map)
7649 int i;
7650 int known;
7651 struct isl_map *res;
7653 if (!map)
7654 return NULL;
7655 if (map->n == 0)
7656 return map;
7658 known = isl_map_divs_known(map);
7659 if (known < 0) {
7660 isl_map_free(map);
7661 return NULL;
7663 if (known)
7664 return map;
7666 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
7667 for (i = 1 ; i < map->n; ++i) {
7668 struct isl_map *r2;
7669 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
7670 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
7671 res = isl_map_union_disjoint(res, r2);
7672 else
7673 res = isl_map_union(res, r2);
7675 isl_map_free(map);
7677 return res;
7680 __isl_give isl_set *isl_basic_set_compute_divs(__isl_take isl_basic_set *bset)
7682 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset)));
7685 struct isl_set *isl_set_compute_divs(struct isl_set *set)
7687 return set_from_map(isl_map_compute_divs(set_to_map(set)));
7690 __isl_give isl_set *isl_map_domain(__isl_take isl_map *map)
7692 int i;
7693 struct isl_set *set;
7695 if (!map)
7696 goto error;
7698 map = isl_map_cow(map);
7699 if (!map)
7700 return NULL;
7702 set = set_from_map(map);
7703 set->dim = isl_space_domain(set->dim);
7704 if (!set->dim)
7705 goto error;
7706 for (i = 0; i < map->n; ++i) {
7707 set->p[i] = isl_basic_map_domain(map->p[i]);
7708 if (!set->p[i])
7709 goto error;
7711 ISL_F_CLR(set, ISL_MAP_DISJOINT);
7712 ISL_F_CLR(set, ISL_SET_NORMALIZED);
7713 return set;
7714 error:
7715 isl_map_free(map);
7716 return NULL;
7719 /* Return the union of "map1" and "map2", where we assume for now that
7720 * "map1" and "map2" are disjoint. Note that the basic maps inside
7721 * "map1" or "map2" may not be disjoint from each other.
7722 * Also note that this function is also called from isl_map_union,
7723 * which takes care of handling the situation where "map1" and "map2"
7724 * may not be disjoint.
7726 * If one of the inputs is empty, we can simply return the other input.
7727 * Similarly, if one of the inputs is universal, then it is equal to the union.
7729 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
7730 __isl_take isl_map *map2)
7732 int i;
7733 unsigned flags = 0;
7734 struct isl_map *map = NULL;
7735 int is_universe;
7737 if (!map1 || !map2)
7738 goto error;
7740 if (!isl_space_is_equal(map1->dim, map2->dim))
7741 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
7742 "spaces don't match", goto error);
7744 if (map1->n == 0) {
7745 isl_map_free(map1);
7746 return map2;
7748 if (map2->n == 0) {
7749 isl_map_free(map2);
7750 return map1;
7753 is_universe = isl_map_plain_is_universe(map1);
7754 if (is_universe < 0)
7755 goto error;
7756 if (is_universe) {
7757 isl_map_free(map2);
7758 return map1;
7761 is_universe = isl_map_plain_is_universe(map2);
7762 if (is_universe < 0)
7763 goto error;
7764 if (is_universe) {
7765 isl_map_free(map1);
7766 return map2;
7769 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
7770 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
7771 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7773 map = isl_map_alloc_space(isl_space_copy(map1->dim),
7774 map1->n + map2->n, flags);
7775 if (!map)
7776 goto error;
7777 for (i = 0; i < map1->n; ++i) {
7778 map = isl_map_add_basic_map(map,
7779 isl_basic_map_copy(map1->p[i]));
7780 if (!map)
7781 goto error;
7783 for (i = 0; i < map2->n; ++i) {
7784 map = isl_map_add_basic_map(map,
7785 isl_basic_map_copy(map2->p[i]));
7786 if (!map)
7787 goto error;
7789 isl_map_free(map1);
7790 isl_map_free(map2);
7791 return map;
7792 error:
7793 isl_map_free(map);
7794 isl_map_free(map1);
7795 isl_map_free(map2);
7796 return NULL;
7799 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7800 * guaranteed to be disjoint by the caller.
7802 * Note that this functions is called from within isl_map_make_disjoint,
7803 * so we have to be careful not to touch the constraints of the inputs
7804 * in any way.
7806 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
7807 __isl_take isl_map *map2)
7809 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
7812 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7813 * not be disjoint. The parameters are assumed to have been aligned.
7815 * We currently simply call map_union_disjoint, the internal operation
7816 * of which does not really depend on the inputs being disjoint.
7817 * If the result contains more than one basic map, then we clear
7818 * the disjoint flag since the result may contain basic maps from
7819 * both inputs and these are not guaranteed to be disjoint.
7821 * As a special case, if "map1" and "map2" are obviously equal,
7822 * then we simply return "map1".
7824 static __isl_give isl_map *map_union_aligned(__isl_take isl_map *map1,
7825 __isl_take isl_map *map2)
7827 int equal;
7829 if (!map1 || !map2)
7830 goto error;
7832 equal = isl_map_plain_is_equal(map1, map2);
7833 if (equal < 0)
7834 goto error;
7835 if (equal) {
7836 isl_map_free(map2);
7837 return map1;
7840 map1 = map_union_disjoint(map1, map2);
7841 if (!map1)
7842 return NULL;
7843 if (map1->n > 1)
7844 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
7845 return map1;
7846 error:
7847 isl_map_free(map1);
7848 isl_map_free(map2);
7849 return NULL;
7852 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7853 * not be disjoint.
7855 __isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
7856 __isl_take isl_map *map2)
7858 return isl_map_align_params_map_map_and(map1, map2, &map_union_aligned);
7861 __isl_give isl_set *isl_set_union_disjoint(
7862 __isl_take isl_set *set1, __isl_take isl_set *set2)
7864 return set_from_map(isl_map_union_disjoint(set_to_map(set1),
7865 set_to_map(set2)));
7868 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
7870 return set_from_map(isl_map_union(set_to_map(set1), set_to_map(set2)));
7873 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7874 * the results.
7876 * "map" and "set" are assumed to be compatible and non-NULL.
7878 static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
7879 __isl_take isl_set *set,
7880 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
7881 __isl_take isl_basic_set *bset))
7883 unsigned flags = 0;
7884 struct isl_map *result;
7885 int i, j;
7887 if (isl_set_plain_is_universe(set)) {
7888 isl_set_free(set);
7889 return map;
7892 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
7893 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
7894 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7896 result = isl_map_alloc_space(isl_space_copy(map->dim),
7897 map->n * set->n, flags);
7898 for (i = 0; result && i < map->n; ++i)
7899 for (j = 0; j < set->n; ++j) {
7900 result = isl_map_add_basic_map(result,
7901 fn(isl_basic_map_copy(map->p[i]),
7902 isl_basic_set_copy(set->p[j])));
7903 if (!result)
7904 break;
7907 isl_map_free(map);
7908 isl_set_free(set);
7909 return result;
7912 static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
7913 __isl_take isl_set *set)
7915 isl_bool ok;
7917 ok = isl_map_compatible_range(map, set);
7918 if (ok < 0)
7919 goto error;
7920 if (!ok)
7921 isl_die(set->ctx, isl_error_invalid,
7922 "incompatible spaces", goto error);
7924 return map_intersect_set(map, set, &isl_basic_map_intersect_range);
7925 error:
7926 isl_map_free(map);
7927 isl_set_free(set);
7928 return NULL;
7931 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
7932 __isl_take isl_set *set)
7934 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
7937 static __isl_give isl_map *map_intersect_domain(__isl_take isl_map *map,
7938 __isl_take isl_set *set)
7940 isl_bool ok;
7942 ok = isl_map_compatible_domain(map, set);
7943 if (ok < 0)
7944 goto error;
7945 if (!ok)
7946 isl_die(set->ctx, isl_error_invalid,
7947 "incompatible spaces", goto error);
7949 return map_intersect_set(map, set, &isl_basic_map_intersect_domain);
7950 error:
7951 isl_map_free(map);
7952 isl_set_free(set);
7953 return NULL;
7956 __isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
7957 __isl_take isl_set *set)
7959 return isl_map_align_params_map_map_and(map, set,
7960 &map_intersect_domain);
7963 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7964 * in the space B -> C, return the intersection.
7965 * The parameters are assumed to have been aligned.
7967 * The map "factor" is first extended to a map living in the space
7968 * [A -> B] -> C and then a regular intersection is computed.
7970 static __isl_give isl_map *map_intersect_domain_factor_range(
7971 __isl_take isl_map *map, __isl_take isl_map *factor)
7973 isl_space *space;
7974 isl_map *ext_factor;
7976 space = isl_space_domain_factor_domain(isl_map_get_space(map));
7977 ext_factor = isl_map_universe(space);
7978 ext_factor = isl_map_domain_product(ext_factor, factor);
7979 return map_intersect(map, ext_factor);
7982 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7983 * in the space B -> C, return the intersection.
7985 __isl_give isl_map *isl_map_intersect_domain_factor_range(
7986 __isl_take isl_map *map, __isl_take isl_map *factor)
7988 return isl_map_align_params_map_map_and(map, factor,
7989 &map_intersect_domain_factor_range);
7992 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
7993 * in the space A -> C, return the intersection.
7995 * The map "factor" is first extended to a map living in the space
7996 * A -> [B -> C] and then a regular intersection is computed.
7998 static __isl_give isl_map *map_intersect_range_factor_range(
7999 __isl_take isl_map *map, __isl_take isl_map *factor)
8001 isl_space *space;
8002 isl_map *ext_factor;
8004 space = isl_space_range_factor_domain(isl_map_get_space(map));
8005 ext_factor = isl_map_universe(space);
8006 ext_factor = isl_map_range_product(ext_factor, factor);
8007 return isl_map_intersect(map, ext_factor);
8010 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
8011 * in the space A -> C, return the intersection.
8013 __isl_give isl_map *isl_map_intersect_range_factor_range(
8014 __isl_take isl_map *map, __isl_take isl_map *factor)
8016 return isl_map_align_params_map_map_and(map, factor,
8017 &map_intersect_range_factor_range);
8020 static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
8021 __isl_take isl_map *map2)
8023 if (!map1 || !map2)
8024 goto error;
8025 map1 = isl_map_reverse(map1);
8026 map1 = isl_map_apply_range(map1, map2);
8027 return isl_map_reverse(map1);
8028 error:
8029 isl_map_free(map1);
8030 isl_map_free(map2);
8031 return NULL;
8034 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
8035 __isl_take isl_map *map2)
8037 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
8040 static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
8041 __isl_take isl_map *map2)
8043 isl_space *space;
8044 struct isl_map *result;
8045 int i, j;
8047 if (!map1 || !map2)
8048 goto error;
8050 space = isl_space_join(isl_space_copy(map1->dim),
8051 isl_space_copy(map2->dim));
8053 result = isl_map_alloc_space(space, map1->n * map2->n, 0);
8054 if (!result)
8055 goto error;
8056 for (i = 0; i < map1->n; ++i)
8057 for (j = 0; j < map2->n; ++j) {
8058 result = isl_map_add_basic_map(result,
8059 isl_basic_map_apply_range(
8060 isl_basic_map_copy(map1->p[i]),
8061 isl_basic_map_copy(map2->p[j])));
8062 if (!result)
8063 goto error;
8065 isl_map_free(map1);
8066 isl_map_free(map2);
8067 if (result && result->n <= 1)
8068 ISL_F_SET(result, ISL_MAP_DISJOINT);
8069 return result;
8070 error:
8071 isl_map_free(map1);
8072 isl_map_free(map2);
8073 return NULL;
8076 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
8077 __isl_take isl_map *map2)
8079 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
8083 * returns range - domain
8085 __isl_give isl_basic_set *isl_basic_map_deltas(__isl_take isl_basic_map *bmap)
8087 isl_space *target_space;
8088 struct isl_basic_set *bset;
8089 unsigned dim;
8090 unsigned nparam;
8091 int i;
8093 if (!bmap)
8094 goto error;
8095 isl_assert(bmap->ctx, isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8096 bmap->dim, isl_dim_out),
8097 goto error);
8098 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
8099 dim = isl_basic_map_dim(bmap, isl_dim_in);
8100 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8101 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
8102 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
8103 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
8104 for (i = 0; i < dim; ++i) {
8105 int j = isl_basic_map_alloc_equality(bmap);
8106 if (j < 0) {
8107 bmap = isl_basic_map_free(bmap);
8108 break;
8110 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8111 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8112 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
8113 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
8115 bset = isl_basic_map_domain(bmap);
8116 bset = isl_basic_set_reset_space(bset, target_space);
8117 return bset;
8118 error:
8119 isl_basic_map_free(bmap);
8120 return NULL;
8124 * returns range - domain
8126 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
8128 int i;
8129 isl_space *dim;
8130 struct isl_set *result;
8132 if (!map)
8133 return NULL;
8135 isl_assert(map->ctx, isl_space_tuple_is_equal(map->dim, isl_dim_in,
8136 map->dim, isl_dim_out),
8137 goto error);
8138 dim = isl_map_get_space(map);
8139 dim = isl_space_domain(dim);
8140 result = isl_set_alloc_space(dim, map->n, 0);
8141 if (!result)
8142 goto error;
8143 for (i = 0; i < map->n; ++i)
8144 result = isl_set_add_basic_set(result,
8145 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
8146 isl_map_free(map);
8147 return result;
8148 error:
8149 isl_map_free(map);
8150 return NULL;
8154 * returns [domain -> range] -> range - domain
8156 __isl_give isl_basic_map *isl_basic_map_deltas_map(
8157 __isl_take isl_basic_map *bmap)
8159 int i, k;
8160 isl_space *space;
8161 isl_basic_map *domain;
8162 int nparam, n;
8163 unsigned total;
8165 if (!isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8166 bmap->dim, isl_dim_out))
8167 isl_die(bmap->ctx, isl_error_invalid,
8168 "domain and range don't match", goto error);
8170 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8171 n = isl_basic_map_dim(bmap, isl_dim_in);
8173 space = isl_basic_map_get_space(bmap);
8174 space = isl_space_from_range(isl_space_domain(space));
8175 domain = isl_basic_map_universe(space);
8177 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
8178 bmap = isl_basic_map_apply_range(bmap, domain);
8179 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
8181 total = isl_basic_map_total_dim(bmap);
8183 for (i = 0; i < n; ++i) {
8184 k = isl_basic_map_alloc_equality(bmap);
8185 if (k < 0)
8186 goto error;
8187 isl_seq_clr(bmap->eq[k], 1 + total);
8188 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
8189 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
8190 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
8193 bmap = isl_basic_map_gauss(bmap, NULL);
8194 return isl_basic_map_finalize(bmap);
8195 error:
8196 isl_basic_map_free(bmap);
8197 return NULL;
8201 * returns [domain -> range] -> range - domain
8203 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
8205 int i;
8206 isl_space *domain_space;
8208 if (!map)
8209 return NULL;
8211 if (!isl_space_tuple_is_equal(map->dim, isl_dim_in,
8212 map->dim, isl_dim_out))
8213 isl_die(map->ctx, isl_error_invalid,
8214 "domain and range don't match", goto error);
8216 map = isl_map_cow(map);
8217 if (!map)
8218 return NULL;
8220 domain_space = isl_space_domain(isl_map_get_space(map));
8221 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
8222 map->dim = isl_space_join(map->dim, isl_space_from_range(domain_space));
8223 if (!map->dim)
8224 goto error;
8225 for (i = 0; i < map->n; ++i) {
8226 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
8227 if (!map->p[i])
8228 goto error;
8230 map = isl_map_unmark_normalized(map);
8231 return map;
8232 error:
8233 isl_map_free(map);
8234 return NULL;
8237 static __isl_give isl_basic_map *basic_map_identity(__isl_take isl_space *space)
8239 struct isl_basic_map *bmap;
8240 unsigned nparam;
8241 unsigned dim;
8242 int i;
8244 if (!space)
8245 return NULL;
8247 nparam = space->nparam;
8248 dim = space->n_out;
8249 bmap = isl_basic_map_alloc_space(space, 0, dim, 0);
8250 if (!bmap)
8251 goto error;
8253 for (i = 0; i < dim; ++i) {
8254 int j = isl_basic_map_alloc_equality(bmap);
8255 if (j < 0)
8256 goto error;
8257 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8258 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8259 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
8261 return isl_basic_map_finalize(bmap);
8262 error:
8263 isl_basic_map_free(bmap);
8264 return NULL;
8267 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *space)
8269 if (!space)
8270 return NULL;
8271 if (space->n_in != space->n_out)
8272 isl_die(space->ctx, isl_error_invalid,
8273 "number of input and output dimensions needs to be "
8274 "the same", goto error);
8275 return basic_map_identity(space);
8276 error:
8277 isl_space_free(space);
8278 return NULL;
8281 __isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
8283 return isl_map_from_basic_map(isl_basic_map_identity(dim));
8286 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
8288 isl_space *dim = isl_set_get_space(set);
8289 isl_map *id;
8290 id = isl_map_identity(isl_space_map_from_set(dim));
8291 return isl_map_intersect_range(id, set);
8294 /* Construct a basic set with all set dimensions having only non-negative
8295 * values.
8297 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
8298 __isl_take isl_space *space)
8300 int i;
8301 unsigned nparam;
8302 unsigned dim;
8303 struct isl_basic_set *bset;
8305 if (!space)
8306 return NULL;
8307 nparam = space->nparam;
8308 dim = space->n_out;
8309 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
8310 if (!bset)
8311 return NULL;
8312 for (i = 0; i < dim; ++i) {
8313 int k = isl_basic_set_alloc_inequality(bset);
8314 if (k < 0)
8315 goto error;
8316 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
8317 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
8319 return bset;
8320 error:
8321 isl_basic_set_free(bset);
8322 return NULL;
8325 /* Construct the half-space x_pos >= 0.
8327 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *space,
8328 int pos)
8330 int k;
8331 isl_basic_set *nonneg;
8333 nonneg = isl_basic_set_alloc_space(space, 0, 0, 1);
8334 k = isl_basic_set_alloc_inequality(nonneg);
8335 if (k < 0)
8336 goto error;
8337 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
8338 isl_int_set_si(nonneg->ineq[k][pos], 1);
8340 return isl_basic_set_finalize(nonneg);
8341 error:
8342 isl_basic_set_free(nonneg);
8343 return NULL;
8346 /* Construct the half-space x_pos <= -1.
8348 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *space,
8349 int pos)
8351 int k;
8352 isl_basic_set *neg;
8354 neg = isl_basic_set_alloc_space(space, 0, 0, 1);
8355 k = isl_basic_set_alloc_inequality(neg);
8356 if (k < 0)
8357 goto error;
8358 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
8359 isl_int_set_si(neg->ineq[k][0], -1);
8360 isl_int_set_si(neg->ineq[k][pos], -1);
8362 return isl_basic_set_finalize(neg);
8363 error:
8364 isl_basic_set_free(neg);
8365 return NULL;
8368 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
8369 enum isl_dim_type type, unsigned first, unsigned n)
8371 int i;
8372 unsigned offset;
8373 isl_basic_set *nonneg;
8374 isl_basic_set *neg;
8376 if (!set)
8377 return NULL;
8378 if (n == 0)
8379 return set;
8381 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
8383 offset = pos(set->dim, type);
8384 for (i = 0; i < n; ++i) {
8385 nonneg = nonneg_halfspace(isl_set_get_space(set),
8386 offset + first + i);
8387 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
8389 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
8392 return set;
8393 error:
8394 isl_set_free(set);
8395 return NULL;
8398 static isl_stat foreach_orthant(__isl_take isl_set *set, int *signs, int first,
8399 int len,
8400 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8401 void *user)
8403 isl_set *half;
8405 if (!set)
8406 return isl_stat_error;
8407 if (isl_set_plain_is_empty(set)) {
8408 isl_set_free(set);
8409 return isl_stat_ok;
8411 if (first == len)
8412 return fn(set, signs, user);
8414 signs[first] = 1;
8415 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
8416 1 + first));
8417 half = isl_set_intersect(half, isl_set_copy(set));
8418 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
8419 goto error;
8421 signs[first] = -1;
8422 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
8423 1 + first));
8424 half = isl_set_intersect(half, set);
8425 return foreach_orthant(half, signs, first + 1, len, fn, user);
8426 error:
8427 isl_set_free(set);
8428 return isl_stat_error;
8431 /* Call "fn" on the intersections of "set" with each of the orthants
8432 * (except for obviously empty intersections). The orthant is identified
8433 * by the signs array, with each entry having value 1 or -1 according
8434 * to the sign of the corresponding variable.
8436 isl_stat isl_set_foreach_orthant(__isl_keep isl_set *set,
8437 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8438 void *user)
8440 unsigned nparam;
8441 unsigned nvar;
8442 int *signs;
8443 isl_stat r;
8445 if (!set)
8446 return isl_stat_error;
8447 if (isl_set_plain_is_empty(set))
8448 return isl_stat_ok;
8450 nparam = isl_set_dim(set, isl_dim_param);
8451 nvar = isl_set_dim(set, isl_dim_set);
8453 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
8455 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
8456 fn, user);
8458 free(signs);
8460 return r;
8463 isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8465 return isl_map_is_equal(set_to_map(set1), set_to_map(set2));
8468 isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
8469 __isl_keep isl_basic_map *bmap2)
8471 int is_subset;
8472 struct isl_map *map1;
8473 struct isl_map *map2;
8475 if (!bmap1 || !bmap2)
8476 return isl_bool_error;
8478 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
8479 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
8481 is_subset = isl_map_is_subset(map1, map2);
8483 isl_map_free(map1);
8484 isl_map_free(map2);
8486 return is_subset;
8489 isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
8490 __isl_keep isl_basic_set *bset2)
8492 return isl_basic_map_is_subset(bset1, bset2);
8495 isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
8496 __isl_keep isl_basic_map *bmap2)
8498 isl_bool is_subset;
8500 if (!bmap1 || !bmap2)
8501 return isl_bool_error;
8502 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8503 if (is_subset != isl_bool_true)
8504 return is_subset;
8505 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8506 return is_subset;
8509 isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
8510 __isl_keep isl_basic_set *bset2)
8512 return isl_basic_map_is_equal(
8513 bset_to_bmap(bset1), bset_to_bmap(bset2));
8516 isl_bool isl_map_is_empty(__isl_keep isl_map *map)
8518 int i;
8519 int is_empty;
8521 if (!map)
8522 return isl_bool_error;
8523 for (i = 0; i < map->n; ++i) {
8524 is_empty = isl_basic_map_is_empty(map->p[i]);
8525 if (is_empty < 0)
8526 return isl_bool_error;
8527 if (!is_empty)
8528 return isl_bool_false;
8530 return isl_bool_true;
8533 isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
8535 return map ? map->n == 0 : isl_bool_error;
8538 isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
8540 return set ? set->n == 0 : isl_bool_error;
8543 isl_bool isl_set_is_empty(__isl_keep isl_set *set)
8545 return isl_map_is_empty(set_to_map(set));
8548 isl_bool isl_map_has_equal_space(__isl_keep isl_map *map1,
8549 __isl_keep isl_map *map2)
8551 if (!map1 || !map2)
8552 return isl_bool_error;
8554 return isl_space_is_equal(map1->dim, map2->dim);
8557 isl_bool isl_set_has_equal_space(__isl_keep isl_set *set1,
8558 __isl_keep isl_set *set2)
8560 if (!set1 || !set2)
8561 return isl_bool_error;
8563 return isl_space_is_equal(set1->dim, set2->dim);
8566 static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8568 isl_bool is_subset;
8570 if (!map1 || !map2)
8571 return isl_bool_error;
8572 is_subset = isl_map_is_subset(map1, map2);
8573 if (is_subset != isl_bool_true)
8574 return is_subset;
8575 is_subset = isl_map_is_subset(map2, map1);
8576 return is_subset;
8579 /* Is "map1" equal to "map2"?
8581 * First check if they are obviously equal.
8582 * If not, then perform a more detailed analysis.
8584 isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8586 isl_bool equal;
8588 equal = isl_map_plain_is_equal(map1, map2);
8589 if (equal < 0 || equal)
8590 return equal;
8591 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
8594 isl_bool isl_basic_map_is_strict_subset(
8595 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8597 isl_bool is_subset;
8599 if (!bmap1 || !bmap2)
8600 return isl_bool_error;
8601 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8602 if (is_subset != isl_bool_true)
8603 return is_subset;
8604 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8605 if (is_subset == isl_bool_error)
8606 return is_subset;
8607 return !is_subset;
8610 isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
8611 __isl_keep isl_map *map2)
8613 isl_bool is_subset;
8615 if (!map1 || !map2)
8616 return isl_bool_error;
8617 is_subset = isl_map_is_subset(map1, map2);
8618 if (is_subset != isl_bool_true)
8619 return is_subset;
8620 is_subset = isl_map_is_subset(map2, map1);
8621 if (is_subset == isl_bool_error)
8622 return is_subset;
8623 return !is_subset;
8626 isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
8627 __isl_keep isl_set *set2)
8629 return isl_map_is_strict_subset(set_to_map(set1), set_to_map(set2));
8632 /* Is "bmap" obviously equal to the universe with the same space?
8634 * That is, does it not have any constraints?
8636 isl_bool isl_basic_map_plain_is_universe(__isl_keep isl_basic_map *bmap)
8638 if (!bmap)
8639 return isl_bool_error;
8640 return bmap->n_eq == 0 && bmap->n_ineq == 0;
8643 /* Is "bset" obviously equal to the universe with the same space?
8645 isl_bool isl_basic_set_plain_is_universe(__isl_keep isl_basic_set *bset)
8647 return isl_basic_map_plain_is_universe(bset);
8650 /* If "c" does not involve any existentially quantified variables,
8651 * then set *univ to false and abort
8653 static isl_stat involves_divs(__isl_take isl_constraint *c, void *user)
8655 isl_bool *univ = user;
8656 unsigned n;
8658 n = isl_constraint_dim(c, isl_dim_div);
8659 *univ = isl_constraint_involves_dims(c, isl_dim_div, 0, n);
8660 isl_constraint_free(c);
8661 if (*univ < 0 || !*univ)
8662 return isl_stat_error;
8663 return isl_stat_ok;
8666 /* Is "bmap" equal to the universe with the same space?
8668 * First check if it is obviously equal to the universe.
8669 * If not and if there are any constraints not involving
8670 * existentially quantified variables, then it is certainly
8671 * not equal to the universe.
8672 * Otherwise, check if the universe is a subset of "bmap".
8674 isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
8676 isl_bool univ;
8677 isl_basic_map *test;
8679 univ = isl_basic_map_plain_is_universe(bmap);
8680 if (univ < 0 || univ)
8681 return univ;
8682 if (isl_basic_map_dim(bmap, isl_dim_div) == 0)
8683 return isl_bool_false;
8684 univ = isl_bool_true;
8685 if (isl_basic_map_foreach_constraint(bmap, &involves_divs, &univ) < 0 &&
8686 univ)
8687 return isl_bool_error;
8688 if (univ < 0 || !univ)
8689 return univ;
8690 test = isl_basic_map_universe(isl_basic_map_get_space(bmap));
8691 univ = isl_basic_map_is_subset(test, bmap);
8692 isl_basic_map_free(test);
8693 return univ;
8696 /* Is "bset" equal to the universe with the same space?
8698 isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
8700 return isl_basic_map_is_universe(bset);
8703 isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
8705 int i;
8707 if (!map)
8708 return isl_bool_error;
8710 for (i = 0; i < map->n; ++i) {
8711 isl_bool r = isl_basic_map_plain_is_universe(map->p[i]);
8712 if (r < 0 || r)
8713 return r;
8716 return isl_bool_false;
8719 isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
8721 return isl_map_plain_is_universe(set_to_map(set));
8724 isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
8726 struct isl_basic_set *bset = NULL;
8727 struct isl_vec *sample = NULL;
8728 isl_bool empty, non_empty;
8730 if (!bmap)
8731 return isl_bool_error;
8733 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
8734 return isl_bool_true;
8736 if (isl_basic_map_plain_is_universe(bmap))
8737 return isl_bool_false;
8739 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
8740 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
8741 copy = isl_basic_map_remove_redundancies(copy);
8742 empty = isl_basic_map_plain_is_empty(copy);
8743 isl_basic_map_free(copy);
8744 return empty;
8747 non_empty = isl_basic_map_plain_is_non_empty(bmap);
8748 if (non_empty < 0)
8749 return isl_bool_error;
8750 if (non_empty)
8751 return isl_bool_false;
8752 isl_vec_free(bmap->sample);
8753 bmap->sample = NULL;
8754 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
8755 if (!bset)
8756 return isl_bool_error;
8757 sample = isl_basic_set_sample_vec(bset);
8758 if (!sample)
8759 return isl_bool_error;
8760 empty = sample->size == 0;
8761 isl_vec_free(bmap->sample);
8762 bmap->sample = sample;
8763 if (empty)
8764 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
8766 return empty;
8769 isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
8771 if (!bmap)
8772 return isl_bool_error;
8773 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
8776 isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
8778 if (!bset)
8779 return isl_bool_error;
8780 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
8783 /* Is "bmap" known to be non-empty?
8785 * That is, is the cached sample still valid?
8787 isl_bool isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map *bmap)
8789 unsigned total;
8791 if (!bmap)
8792 return isl_bool_error;
8793 if (!bmap->sample)
8794 return isl_bool_false;
8795 total = 1 + isl_basic_map_total_dim(bmap);
8796 if (bmap->sample->size != total)
8797 return isl_bool_false;
8798 return isl_basic_map_contains(bmap, bmap->sample);
8801 isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
8803 return isl_basic_map_is_empty(bset_to_bmap(bset));
8806 __isl_give isl_map *isl_basic_map_union(__isl_take isl_basic_map *bmap1,
8807 __isl_take isl_basic_map *bmap2)
8809 struct isl_map *map;
8810 if (!bmap1 || !bmap2)
8811 goto error;
8813 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
8815 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
8816 if (!map)
8817 goto error;
8818 map = isl_map_add_basic_map(map, bmap1);
8819 map = isl_map_add_basic_map(map, bmap2);
8820 return map;
8821 error:
8822 isl_basic_map_free(bmap1);
8823 isl_basic_map_free(bmap2);
8824 return NULL;
8827 struct isl_set *isl_basic_set_union(
8828 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
8830 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1),
8831 bset_to_bmap(bset2)));
8834 /* Order divs such that any div only depends on previous divs */
8835 __isl_give isl_basic_map *isl_basic_map_order_divs(
8836 __isl_take isl_basic_map *bmap)
8838 int i;
8839 unsigned off;
8841 if (!bmap)
8842 return NULL;
8844 off = isl_space_dim(bmap->dim, isl_dim_all);
8846 for (i = 0; i < bmap->n_div; ++i) {
8847 int pos;
8848 if (isl_int_is_zero(bmap->div[i][0]))
8849 continue;
8850 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
8851 bmap->n_div-i);
8852 if (pos == -1)
8853 continue;
8854 if (pos == 0)
8855 isl_die(isl_basic_map_get_ctx(bmap), isl_error_internal,
8856 "integer division depends on itself",
8857 return isl_basic_map_free(bmap));
8858 isl_basic_map_swap_div(bmap, i, i + pos);
8859 --i;
8861 return bmap;
8864 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
8866 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset)));
8869 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
8871 int i;
8873 if (!map)
8874 return 0;
8876 for (i = 0; i < map->n; ++i) {
8877 map->p[i] = isl_basic_map_order_divs(map->p[i]);
8878 if (!map->p[i])
8879 goto error;
8882 return map;
8883 error:
8884 isl_map_free(map);
8885 return NULL;
8888 /* Sort the local variables of "bset".
8890 __isl_give isl_basic_set *isl_basic_set_sort_divs(
8891 __isl_take isl_basic_set *bset)
8893 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset)));
8896 /* Apply the expansion computed by isl_merge_divs.
8897 * The expansion itself is given by "exp" while the resulting
8898 * list of divs is given by "div".
8900 * Move the integer divisions of "bmap" into the right position
8901 * according to "exp" and then introduce the additional integer
8902 * divisions, adding div constraints.
8903 * The moving should be done first to avoid moving coefficients
8904 * in the definitions of the extra integer divisions.
8906 __isl_give isl_basic_map *isl_basic_map_expand_divs(
8907 __isl_take isl_basic_map *bmap, __isl_take isl_mat *div, int *exp)
8909 int i, j;
8910 int n_div;
8912 bmap = isl_basic_map_cow(bmap);
8913 if (!bmap || !div)
8914 goto error;
8916 if (div->n_row < bmap->n_div)
8917 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
8918 "not an expansion", goto error);
8920 n_div = bmap->n_div;
8921 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
8922 div->n_row - n_div, 0,
8923 2 * (div->n_row - n_div));
8925 for (i = n_div; i < div->n_row; ++i)
8926 if (isl_basic_map_alloc_div(bmap) < 0)
8927 goto error;
8929 for (j = n_div - 1; j >= 0; --j) {
8930 if (exp[j] == j)
8931 break;
8932 isl_basic_map_swap_div(bmap, j, exp[j]);
8934 j = 0;
8935 for (i = 0; i < div->n_row; ++i) {
8936 if (j < n_div && exp[j] == i) {
8937 j++;
8938 } else {
8939 isl_seq_cpy(bmap->div[i], div->row[i], div->n_col);
8940 if (isl_basic_map_div_is_marked_unknown(bmap, i))
8941 continue;
8942 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
8943 goto error;
8947 isl_mat_free(div);
8948 return bmap;
8949 error:
8950 isl_basic_map_free(bmap);
8951 isl_mat_free(div);
8952 return NULL;
8955 /* Apply the expansion computed by isl_merge_divs.
8956 * The expansion itself is given by "exp" while the resulting
8957 * list of divs is given by "div".
8959 __isl_give isl_basic_set *isl_basic_set_expand_divs(
8960 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
8962 return isl_basic_map_expand_divs(bset, div, exp);
8965 /* Look for a div in dst that corresponds to the div "div" in src.
8966 * The divs before "div" in src and dst are assumed to be the same.
8968 * Returns -1 if no corresponding div was found and the position
8969 * of the corresponding div in dst otherwise.
8971 static int find_div(__isl_keep isl_basic_map *dst,
8972 __isl_keep isl_basic_map *src, unsigned div)
8974 int i;
8976 unsigned total = isl_space_dim(src->dim, isl_dim_all);
8978 isl_assert(dst->ctx, div <= dst->n_div, return -1);
8979 for (i = div; i < dst->n_div; ++i)
8980 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
8981 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
8982 dst->n_div - div) == -1)
8983 return i;
8984 return -1;
8987 /* Align the divs of "dst" to those of "src", adding divs from "src"
8988 * if needed. That is, make sure that the first src->n_div divs
8989 * of the result are equal to those of src.
8991 * The result is not finalized as by design it will have redundant
8992 * divs if any divs from "src" were copied.
8994 __isl_give isl_basic_map *isl_basic_map_align_divs(
8995 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
8997 int i;
8998 int known, extended;
8999 unsigned total;
9001 if (!dst || !src)
9002 return isl_basic_map_free(dst);
9004 if (src->n_div == 0)
9005 return dst;
9007 known = isl_basic_map_divs_known(src);
9008 if (known < 0)
9009 return isl_basic_map_free(dst);
9010 if (!known)
9011 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
9012 "some src divs are unknown",
9013 return isl_basic_map_free(dst));
9015 src = isl_basic_map_order_divs(isl_basic_map_copy(src));
9016 if (!src)
9017 return isl_basic_map_free(dst);
9019 extended = 0;
9020 total = isl_space_dim(src->dim, isl_dim_all);
9021 for (i = 0; i < src->n_div; ++i) {
9022 int j = find_div(dst, src, i);
9023 if (j < 0) {
9024 if (!extended) {
9025 int extra = src->n_div - i;
9026 dst = isl_basic_map_cow(dst);
9027 if (!dst)
9028 goto error;
9029 dst = isl_basic_map_extend_space(dst,
9030 isl_space_copy(dst->dim),
9031 extra, 0, 2 * extra);
9032 extended = 1;
9034 j = isl_basic_map_alloc_div(dst);
9035 if (j < 0)
9036 goto error;
9037 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
9038 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
9039 if (isl_basic_map_add_div_constraints(dst, j) < 0)
9040 goto error;
9042 if (j != i)
9043 isl_basic_map_swap_div(dst, i, j);
9045 isl_basic_map_free(src);
9046 return dst;
9047 error:
9048 isl_basic_map_free(src);
9049 isl_basic_map_free(dst);
9050 return NULL;
9053 __isl_give isl_map *isl_map_align_divs_internal(__isl_take isl_map *map)
9055 int i;
9057 if (!map)
9058 return NULL;
9059 if (map->n == 0)
9060 return map;
9061 map = isl_map_compute_divs(map);
9062 map = isl_map_cow(map);
9063 if (!map)
9064 return NULL;
9066 for (i = 1; i < map->n; ++i)
9067 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
9068 for (i = 1; i < map->n; ++i) {
9069 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
9070 if (!map->p[i])
9071 return isl_map_free(map);
9074 map = isl_map_unmark_normalized(map);
9075 return map;
9078 __isl_give isl_map *isl_map_align_divs(__isl_take isl_map *map)
9080 return isl_map_align_divs_internal(map);
9083 struct isl_set *isl_set_align_divs(struct isl_set *set)
9085 return set_from_map(isl_map_align_divs_internal(set_to_map(set)));
9088 /* Align the divs of the basic maps in "map" to those
9089 * of the basic maps in "list", as well as to the other basic maps in "map".
9090 * The elements in "list" are assumed to have known divs.
9092 __isl_give isl_map *isl_map_align_divs_to_basic_map_list(
9093 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
9095 int i, n;
9097 map = isl_map_compute_divs(map);
9098 map = isl_map_cow(map);
9099 if (!map || !list)
9100 return isl_map_free(map);
9101 if (map->n == 0)
9102 return map;
9104 n = isl_basic_map_list_n_basic_map(list);
9105 for (i = 0; i < n; ++i) {
9106 isl_basic_map *bmap;
9108 bmap = isl_basic_map_list_get_basic_map(list, i);
9109 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
9110 isl_basic_map_free(bmap);
9112 if (!map->p[0])
9113 return isl_map_free(map);
9115 return isl_map_align_divs_internal(map);
9118 /* Align the divs of each element of "list" to those of "bmap".
9119 * Both "bmap" and the elements of "list" are assumed to have known divs.
9121 __isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
9122 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
9124 int i, n;
9126 if (!list || !bmap)
9127 return isl_basic_map_list_free(list);
9129 n = isl_basic_map_list_n_basic_map(list);
9130 for (i = 0; i < n; ++i) {
9131 isl_basic_map *bmap_i;
9133 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9134 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
9135 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
9138 return list;
9141 static __isl_give isl_set *set_apply( __isl_take isl_set *set,
9142 __isl_take isl_map *map)
9144 isl_bool ok;
9146 ok = isl_map_compatible_domain(map, set);
9147 if (ok < 0)
9148 goto error;
9149 if (!ok)
9150 isl_die(isl_set_get_ctx(set), isl_error_invalid,
9151 "incompatible spaces", goto error);
9152 map = isl_map_intersect_domain(map, set);
9153 set = isl_map_range(map);
9154 return set;
9155 error:
9156 isl_set_free(set);
9157 isl_map_free(map);
9158 return NULL;
9161 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
9162 __isl_take isl_map *map)
9164 return isl_map_align_params_map_map_and(set, map, &set_apply);
9167 /* There is no need to cow as removing empty parts doesn't change
9168 * the meaning of the set.
9170 __isl_give isl_map *isl_map_remove_empty_parts(__isl_take isl_map *map)
9172 int i;
9174 if (!map)
9175 return NULL;
9177 for (i = map->n - 1; i >= 0; --i)
9178 map = remove_if_empty(map, i);
9180 return map;
9183 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
9185 return set_from_map(isl_map_remove_empty_parts(set_to_map(set)));
9188 /* Create a binary relation that maps the shared initial "pos" dimensions
9189 * of "bset1" and "bset2" to the remaining dimensions of "bset1" and "bset2".
9191 static __isl_give isl_basic_map *join_initial(__isl_keep isl_basic_set *bset1,
9192 __isl_keep isl_basic_set *bset2, int pos)
9194 isl_basic_map *bmap1;
9195 isl_basic_map *bmap2;
9197 bmap1 = isl_basic_map_from_range(isl_basic_set_copy(bset1));
9198 bmap2 = isl_basic_map_from_range(isl_basic_set_copy(bset2));
9199 bmap1 = isl_basic_map_move_dims(bmap1, isl_dim_in, 0,
9200 isl_dim_out, 0, pos);
9201 bmap2 = isl_basic_map_move_dims(bmap2, isl_dim_in, 0,
9202 isl_dim_out, 0, pos);
9203 return isl_basic_map_range_product(bmap1, bmap2);
9206 /* Given two basic sets bset1 and bset2, compute the maximal difference
9207 * between the values of dimension pos in bset1 and those in bset2
9208 * for any common value of the parameters and dimensions preceding pos.
9210 static enum isl_lp_result basic_set_maximal_difference_at(
9211 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
9212 int pos, isl_int *opt)
9214 isl_basic_map *bmap1;
9215 struct isl_ctx *ctx;
9216 struct isl_vec *obj;
9217 unsigned total;
9218 unsigned nparam;
9219 unsigned dim1;
9220 enum isl_lp_result res;
9222 if (!bset1 || !bset2)
9223 return isl_lp_error;
9225 nparam = isl_basic_set_n_param(bset1);
9226 dim1 = isl_basic_set_n_dim(bset1);
9228 bmap1 = join_initial(bset1, bset2, pos);
9229 if (!bmap1)
9230 return isl_lp_error;
9232 total = isl_basic_map_total_dim(bmap1);
9233 ctx = bmap1->ctx;
9234 obj = isl_vec_alloc(ctx, 1 + total);
9235 if (!obj)
9236 goto error;
9237 isl_seq_clr(obj->block.data, 1 + total);
9238 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
9239 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
9240 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
9241 opt, NULL, NULL);
9242 isl_basic_map_free(bmap1);
9243 isl_vec_free(obj);
9244 return res;
9245 error:
9246 isl_basic_map_free(bmap1);
9247 return isl_lp_error;
9250 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
9251 * for any common value of the parameters and dimensions preceding pos
9252 * in both basic sets, the values of dimension pos in bset1 are
9253 * smaller or larger than those in bset2.
9255 * Returns
9256 * 1 if bset1 follows bset2
9257 * -1 if bset1 precedes bset2
9258 * 0 if bset1 and bset2 are incomparable
9259 * -2 if some error occurred.
9261 int isl_basic_set_compare_at(__isl_keep isl_basic_set *bset1,
9262 __isl_keep isl_basic_set *bset2, int pos)
9264 isl_int opt;
9265 enum isl_lp_result res;
9266 int cmp;
9268 isl_int_init(opt);
9270 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
9272 if (res == isl_lp_empty)
9273 cmp = 0;
9274 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
9275 res == isl_lp_unbounded)
9276 cmp = 1;
9277 else if (res == isl_lp_ok && isl_int_is_neg(opt))
9278 cmp = -1;
9279 else
9280 cmp = -2;
9282 isl_int_clear(opt);
9283 return cmp;
9286 /* Given two basic sets bset1 and bset2, check whether
9287 * for any common value of the parameters and dimensions preceding pos
9288 * there is a value of dimension pos in bset1 that is larger
9289 * than a value of the same dimension in bset2.
9291 * Return
9292 * 1 if there exists such a pair
9293 * 0 if there is no such pair, but there is a pair of equal values
9294 * -1 otherwise
9295 * -2 if some error occurred.
9297 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
9298 __isl_keep isl_basic_set *bset2, int pos)
9300 isl_bool empty;
9301 isl_basic_map *bmap;
9302 unsigned dim1;
9304 dim1 = isl_basic_set_dim(bset1, isl_dim_set);
9305 bmap = join_initial(bset1, bset2, pos);
9306 bmap = isl_basic_map_order_ge(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 if (empty) {
9312 isl_basic_map_free(bmap);
9313 return -1;
9315 bmap = isl_basic_map_order_gt(bmap, isl_dim_out, 0,
9316 isl_dim_out, dim1 - pos);
9317 empty = isl_basic_map_is_empty(bmap);
9318 if (empty < 0)
9319 goto error;
9320 isl_basic_map_free(bmap);
9321 if (empty)
9322 return 0;
9323 return 1;
9324 error:
9325 isl_basic_map_free(bmap);
9326 return -2;
9329 /* Given two sets set1 and set2, check whether
9330 * for any common value of the parameters and dimensions preceding pos
9331 * there is a value of dimension pos in set1 that is larger
9332 * than a value of the same dimension in set2.
9334 * Return
9335 * 1 if there exists such a pair
9336 * 0 if there is no such pair, but there is a pair of equal values
9337 * -1 otherwise
9338 * -2 if some error occurred.
9340 int isl_set_follows_at(__isl_keep isl_set *set1,
9341 __isl_keep isl_set *set2, int pos)
9343 int i, j;
9344 int follows = -1;
9346 if (!set1 || !set2)
9347 return -2;
9349 for (i = 0; i < set1->n; ++i)
9350 for (j = 0; j < set2->n; ++j) {
9351 int f;
9352 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
9353 if (f == 1 || f == -2)
9354 return f;
9355 if (f > follows)
9356 follows = f;
9359 return follows;
9362 static isl_bool isl_basic_map_plain_has_fixed_var(
9363 __isl_keep isl_basic_map *bmap, unsigned pos, isl_int *val)
9365 int i;
9366 int d;
9367 unsigned total;
9369 if (!bmap)
9370 return isl_bool_error;
9371 total = isl_basic_map_total_dim(bmap);
9372 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
9373 for (; d+1 > pos; --d)
9374 if (!isl_int_is_zero(bmap->eq[i][1+d]))
9375 break;
9376 if (d != pos)
9377 continue;
9378 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
9379 return isl_bool_false;
9380 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
9381 return isl_bool_false;
9382 if (!isl_int_is_one(bmap->eq[i][1+d]))
9383 return isl_bool_false;
9384 if (val)
9385 isl_int_neg(*val, bmap->eq[i][0]);
9386 return isl_bool_true;
9388 return isl_bool_false;
9391 static isl_bool isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
9392 unsigned pos, isl_int *val)
9394 int i;
9395 isl_int v;
9396 isl_int tmp;
9397 isl_bool fixed;
9399 if (!map)
9400 return isl_bool_error;
9401 if (map->n == 0)
9402 return isl_bool_false;
9403 if (map->n == 1)
9404 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
9405 isl_int_init(v);
9406 isl_int_init(tmp);
9407 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
9408 for (i = 1; fixed == isl_bool_true && i < map->n; ++i) {
9409 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
9410 if (fixed == isl_bool_true && isl_int_ne(tmp, v))
9411 fixed = isl_bool_false;
9413 if (val)
9414 isl_int_set(*val, v);
9415 isl_int_clear(tmp);
9416 isl_int_clear(v);
9417 return fixed;
9420 static isl_bool isl_basic_set_plain_has_fixed_var(
9421 __isl_keep isl_basic_set *bset, unsigned pos, isl_int *val)
9423 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset),
9424 pos, val);
9427 isl_bool isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
9428 enum isl_dim_type type, unsigned pos, isl_int *val)
9430 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
9431 return isl_bool_error;
9432 return isl_basic_map_plain_has_fixed_var(bmap,
9433 isl_basic_map_offset(bmap, type) - 1 + pos, val);
9436 /* If "bmap" obviously lies on a hyperplane where the given dimension
9437 * has a fixed value, then return that value.
9438 * Otherwise return NaN.
9440 __isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
9441 __isl_keep isl_basic_map *bmap,
9442 enum isl_dim_type type, unsigned pos)
9444 isl_ctx *ctx;
9445 isl_val *v;
9446 isl_bool fixed;
9448 if (!bmap)
9449 return NULL;
9450 ctx = isl_basic_map_get_ctx(bmap);
9451 v = isl_val_alloc(ctx);
9452 if (!v)
9453 return NULL;
9454 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
9455 if (fixed < 0)
9456 return isl_val_free(v);
9457 if (fixed) {
9458 isl_int_set_si(v->d, 1);
9459 return v;
9461 isl_val_free(v);
9462 return isl_val_nan(ctx);
9465 isl_bool isl_map_plain_is_fixed(__isl_keep isl_map *map,
9466 enum isl_dim_type type, unsigned pos, isl_int *val)
9468 if (pos >= isl_map_dim(map, type))
9469 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9470 "position out of bounds", return isl_bool_error);
9471 return isl_map_plain_has_fixed_var(map,
9472 map_offset(map, type) - 1 + pos, val);
9475 /* If "map" obviously lies on a hyperplane where the given dimension
9476 * has a fixed value, then return that value.
9477 * Otherwise return NaN.
9479 __isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
9480 enum isl_dim_type type, unsigned pos)
9482 isl_ctx *ctx;
9483 isl_val *v;
9484 isl_bool fixed;
9486 if (!map)
9487 return NULL;
9488 ctx = isl_map_get_ctx(map);
9489 v = isl_val_alloc(ctx);
9490 if (!v)
9491 return NULL;
9492 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
9493 if (fixed < 0)
9494 return isl_val_free(v);
9495 if (fixed) {
9496 isl_int_set_si(v->d, 1);
9497 return v;
9499 isl_val_free(v);
9500 return isl_val_nan(ctx);
9503 /* If "set" obviously lies on a hyperplane where the given dimension
9504 * has a fixed value, then return that value.
9505 * Otherwise return NaN.
9507 __isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
9508 enum isl_dim_type type, unsigned pos)
9510 return isl_map_plain_get_val_if_fixed(set, type, pos);
9513 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9514 * then return this fixed value in *val.
9516 isl_bool isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
9517 unsigned dim, isl_int *val)
9519 return isl_basic_set_plain_has_fixed_var(bset,
9520 isl_basic_set_n_param(bset) + dim, val);
9523 /* Return -1 if the constraint "c1" should be sorted before "c2"
9524 * and 1 if it should be sorted after "c2".
9525 * Return 0 if the two constraints are the same (up to the constant term).
9527 * In particular, if a constraint involves later variables than another
9528 * then it is sorted after this other constraint.
9529 * uset_gist depends on constraints without existentially quantified
9530 * variables sorting first.
9532 * For constraints that have the same latest variable, those
9533 * with the same coefficient for this latest variable (first in absolute value
9534 * and then in actual value) are grouped together.
9535 * This is useful for detecting pairs of constraints that can
9536 * be chained in their printed representation.
9538 * Finally, within a group, constraints are sorted according to
9539 * their coefficients (excluding the constant term).
9541 static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
9543 isl_int **c1 = (isl_int **) p1;
9544 isl_int **c2 = (isl_int **) p2;
9545 int l1, l2;
9546 unsigned size = *(unsigned *) arg;
9547 int cmp;
9549 l1 = isl_seq_last_non_zero(*c1 + 1, size);
9550 l2 = isl_seq_last_non_zero(*c2 + 1, size);
9552 if (l1 != l2)
9553 return l1 - l2;
9555 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9556 if (cmp != 0)
9557 return cmp;
9558 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9559 if (cmp != 0)
9560 return -cmp;
9562 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
9565 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9566 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9567 * and 0 if the two constraints are the same (up to the constant term).
9569 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
9570 isl_int *c1, isl_int *c2)
9572 unsigned total;
9574 if (!bmap)
9575 return -2;
9576 total = isl_basic_map_total_dim(bmap);
9577 return sort_constraint_cmp(&c1, &c2, &total);
9580 __isl_give isl_basic_map *isl_basic_map_sort_constraints(
9581 __isl_take isl_basic_map *bmap)
9583 unsigned total;
9585 if (!bmap)
9586 return NULL;
9587 if (bmap->n_ineq == 0)
9588 return bmap;
9589 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_SORTED))
9590 return bmap;
9591 total = isl_basic_map_total_dim(bmap);
9592 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
9593 &sort_constraint_cmp, &total) < 0)
9594 return isl_basic_map_free(bmap);
9595 ISL_F_SET(bmap, ISL_BASIC_MAP_SORTED);
9596 return bmap;
9599 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
9600 __isl_take isl_basic_set *bset)
9602 isl_basic_map *bmap = bset_to_bmap(bset);
9603 return bset_from_bmap(isl_basic_map_sort_constraints(bmap));
9606 __isl_give isl_basic_map *isl_basic_map_normalize(
9607 __isl_take isl_basic_map *bmap)
9609 bmap = isl_basic_map_remove_redundancies(bmap);
9610 bmap = isl_basic_map_sort_constraints(bmap);
9611 return bmap;
9613 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map *bmap1,
9614 __isl_keep isl_basic_map *bmap2)
9616 int i, cmp;
9617 unsigned total;
9618 isl_space *space1, *space2;
9620 if (!bmap1 || !bmap2)
9621 return -1;
9623 if (bmap1 == bmap2)
9624 return 0;
9625 space1 = isl_basic_map_peek_space(bmap1);
9626 space2 = isl_basic_map_peek_space(bmap2);
9627 cmp = isl_space_cmp(space1, space2);
9628 if (cmp)
9629 return cmp;
9630 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
9631 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
9632 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
9633 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
9634 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9635 return 0;
9636 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
9637 return 1;
9638 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9639 return -1;
9640 if (bmap1->n_eq != bmap2->n_eq)
9641 return bmap1->n_eq - bmap2->n_eq;
9642 if (bmap1->n_ineq != bmap2->n_ineq)
9643 return bmap1->n_ineq - bmap2->n_ineq;
9644 if (bmap1->n_div != bmap2->n_div)
9645 return bmap1->n_div - bmap2->n_div;
9646 total = isl_basic_map_total_dim(bmap1);
9647 for (i = 0; i < bmap1->n_eq; ++i) {
9648 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
9649 if (cmp)
9650 return cmp;
9652 for (i = 0; i < bmap1->n_ineq; ++i) {
9653 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
9654 if (cmp)
9655 return cmp;
9657 for (i = 0; i < bmap1->n_div; ++i) {
9658 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
9659 if (cmp)
9660 return cmp;
9662 return 0;
9665 int isl_basic_set_plain_cmp(__isl_keep isl_basic_set *bset1,
9666 __isl_keep isl_basic_set *bset2)
9668 return isl_basic_map_plain_cmp(bset1, bset2);
9671 int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
9673 int i, cmp;
9675 if (set1 == set2)
9676 return 0;
9677 if (set1->n != set2->n)
9678 return set1->n - set2->n;
9680 for (i = 0; i < set1->n; ++i) {
9681 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
9682 if (cmp)
9683 return cmp;
9686 return 0;
9689 isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
9690 __isl_keep isl_basic_map *bmap2)
9692 if (!bmap1 || !bmap2)
9693 return isl_bool_error;
9694 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
9697 isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
9698 __isl_keep isl_basic_set *bset2)
9700 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1),
9701 bset_to_bmap(bset2));
9704 static int qsort_bmap_cmp(const void *p1, const void *p2)
9706 isl_basic_map *bmap1 = *(isl_basic_map **) p1;
9707 isl_basic_map *bmap2 = *(isl_basic_map **) p2;
9709 return isl_basic_map_plain_cmp(bmap1, bmap2);
9712 /* Sort the basic maps of "map" and remove duplicate basic maps.
9714 * While removing basic maps, we make sure that the basic maps remain
9715 * sorted because isl_map_normalize expects the basic maps of the result
9716 * to be sorted.
9718 static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
9720 int i, j;
9722 map = isl_map_remove_empty_parts(map);
9723 if (!map)
9724 return NULL;
9725 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
9726 for (i = map->n - 1; i >= 1; --i) {
9727 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
9728 continue;
9729 isl_basic_map_free(map->p[i-1]);
9730 for (j = i; j < map->n; ++j)
9731 map->p[j - 1] = map->p[j];
9732 map->n--;
9735 return map;
9738 /* Remove obvious duplicates among the basic maps of "map".
9740 * Unlike isl_map_normalize, this function does not remove redundant
9741 * constraints and only removes duplicates that have exactly the same
9742 * constraints in the input. It does sort the constraints and
9743 * the basic maps to ease the detection of duplicates.
9745 * If "map" has already been normalized or if the basic maps are
9746 * disjoint, then there can be no duplicates.
9748 __isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
9750 int i;
9751 isl_basic_map *bmap;
9753 if (!map)
9754 return NULL;
9755 if (map->n <= 1)
9756 return map;
9757 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
9758 return map;
9759 for (i = 0; i < map->n; ++i) {
9760 bmap = isl_basic_map_copy(map->p[i]);
9761 bmap = isl_basic_map_sort_constraints(bmap);
9762 if (!bmap)
9763 return isl_map_free(map);
9764 isl_basic_map_free(map->p[i]);
9765 map->p[i] = bmap;
9768 map = sort_and_remove_duplicates(map);
9769 return map;
9772 /* We normalize in place, but if anything goes wrong we need
9773 * to return NULL, so we need to make sure we don't change the
9774 * meaning of any possible other copies of map.
9776 __isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
9778 int i;
9779 struct isl_basic_map *bmap;
9781 if (!map)
9782 return NULL;
9783 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
9784 return map;
9785 for (i = 0; i < map->n; ++i) {
9786 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
9787 if (!bmap)
9788 goto error;
9789 isl_basic_map_free(map->p[i]);
9790 map->p[i] = bmap;
9793 map = sort_and_remove_duplicates(map);
9794 if (map)
9795 ISL_F_SET(map, ISL_MAP_NORMALIZED);
9796 return map;
9797 error:
9798 isl_map_free(map);
9799 return NULL;
9802 struct isl_set *isl_set_normalize(struct isl_set *set)
9804 return set_from_map(isl_map_normalize(set_to_map(set)));
9807 isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
9808 __isl_keep isl_map *map2)
9810 int i;
9811 isl_bool equal;
9813 if (!map1 || !map2)
9814 return isl_bool_error;
9816 if (map1 == map2)
9817 return isl_bool_true;
9818 if (!isl_space_is_equal(map1->dim, map2->dim))
9819 return isl_bool_false;
9821 map1 = isl_map_copy(map1);
9822 map2 = isl_map_copy(map2);
9823 map1 = isl_map_normalize(map1);
9824 map2 = isl_map_normalize(map2);
9825 if (!map1 || !map2)
9826 goto error;
9827 equal = map1->n == map2->n;
9828 for (i = 0; equal && i < map1->n; ++i) {
9829 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
9830 if (equal < 0)
9831 goto error;
9833 isl_map_free(map1);
9834 isl_map_free(map2);
9835 return equal;
9836 error:
9837 isl_map_free(map1);
9838 isl_map_free(map2);
9839 return isl_bool_error;
9842 isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
9843 __isl_keep isl_set *set2)
9845 return isl_map_plain_is_equal(set_to_map(set1), set_to_map(set2));
9848 /* Return the basic maps in "map" as a list.
9850 __isl_give isl_basic_map_list *isl_map_get_basic_map_list(
9851 __isl_keep isl_map *map)
9853 int i;
9854 isl_ctx *ctx;
9855 isl_basic_map_list *list;
9857 if (!map)
9858 return NULL;
9859 ctx = isl_map_get_ctx(map);
9860 list = isl_basic_map_list_alloc(ctx, map->n);
9862 for (i = 0; i < map->n; ++i) {
9863 isl_basic_map *bmap;
9865 bmap = isl_basic_map_copy(map->p[i]);
9866 list = isl_basic_map_list_add(list, bmap);
9869 return list;
9872 /* Return the intersection of the elements in the non-empty list "list".
9873 * All elements are assumed to live in the same space.
9875 __isl_give isl_basic_map *isl_basic_map_list_intersect(
9876 __isl_take isl_basic_map_list *list)
9878 int i, n;
9879 isl_basic_map *bmap;
9881 if (!list)
9882 return NULL;
9883 n = isl_basic_map_list_n_basic_map(list);
9884 if (n < 1)
9885 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
9886 "expecting non-empty list", goto error);
9888 bmap = isl_basic_map_list_get_basic_map(list, 0);
9889 for (i = 1; i < n; ++i) {
9890 isl_basic_map *bmap_i;
9892 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9893 bmap = isl_basic_map_intersect(bmap, bmap_i);
9896 isl_basic_map_list_free(list);
9897 return bmap;
9898 error:
9899 isl_basic_map_list_free(list);
9900 return NULL;
9903 /* Return the intersection of the elements in the non-empty list "list".
9904 * All elements are assumed to live in the same space.
9906 __isl_give isl_basic_set *isl_basic_set_list_intersect(
9907 __isl_take isl_basic_set_list *list)
9909 return isl_basic_map_list_intersect(list);
9912 /* Return the union of the elements of "list".
9913 * The list is required to have at least one element.
9915 __isl_give isl_set *isl_basic_set_list_union(
9916 __isl_take isl_basic_set_list *list)
9918 int i, n;
9919 isl_space *space;
9920 isl_basic_set *bset;
9921 isl_set *set;
9923 if (!list)
9924 return NULL;
9925 n = isl_basic_set_list_n_basic_set(list);
9926 if (n < 1)
9927 isl_die(isl_basic_set_list_get_ctx(list), isl_error_invalid,
9928 "expecting non-empty list", goto error);
9930 bset = isl_basic_set_list_get_basic_set(list, 0);
9931 space = isl_basic_set_get_space(bset);
9932 isl_basic_set_free(bset);
9934 set = isl_set_alloc_space(space, n, 0);
9935 for (i = 0; i < n; ++i) {
9936 bset = isl_basic_set_list_get_basic_set(list, i);
9937 set = isl_set_add_basic_set(set, bset);
9940 isl_basic_set_list_free(list);
9941 return set;
9942 error:
9943 isl_basic_set_list_free(list);
9944 return NULL;
9947 /* Return the union of the elements in the non-empty list "list".
9948 * All elements are assumed to live in the same space.
9950 __isl_give isl_set *isl_set_list_union(__isl_take isl_set_list *list)
9952 int i, n;
9953 isl_set *set;
9955 if (!list)
9956 return NULL;
9957 n = isl_set_list_n_set(list);
9958 if (n < 1)
9959 isl_die(isl_set_list_get_ctx(list), isl_error_invalid,
9960 "expecting non-empty list", goto error);
9962 set = isl_set_list_get_set(list, 0);
9963 for (i = 1; i < n; ++i) {
9964 isl_set *set_i;
9966 set_i = isl_set_list_get_set(list, i);
9967 set = isl_set_union(set, set_i);
9970 isl_set_list_free(list);
9971 return set;
9972 error:
9973 isl_set_list_free(list);
9974 return NULL;
9977 __isl_give isl_basic_map *isl_basic_map_product(
9978 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9980 isl_space *space_result = NULL;
9981 struct isl_basic_map *bmap;
9982 unsigned in1, in2, out1, out2, nparam, total, pos;
9983 struct isl_dim_map *dim_map1, *dim_map2;
9985 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
9986 goto error;
9987 space_result = isl_space_product(isl_space_copy(bmap1->dim),
9988 isl_space_copy(bmap2->dim));
9990 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9991 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9992 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9993 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9994 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9996 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
9997 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9998 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9999 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10000 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10001 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10002 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
10003 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
10004 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
10005 isl_dim_map_div(dim_map1, bmap1, pos += out2);
10006 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10008 bmap = isl_basic_map_alloc_space(space_result,
10009 bmap1->n_div + bmap2->n_div,
10010 bmap1->n_eq + bmap2->n_eq,
10011 bmap1->n_ineq + bmap2->n_ineq);
10012 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10013 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10014 bmap = isl_basic_map_simplify(bmap);
10015 return isl_basic_map_finalize(bmap);
10016 error:
10017 isl_basic_map_free(bmap1);
10018 isl_basic_map_free(bmap2);
10019 return NULL;
10022 __isl_give isl_basic_map *isl_basic_map_flat_product(
10023 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10025 isl_basic_map *prod;
10027 prod = isl_basic_map_product(bmap1, bmap2);
10028 prod = isl_basic_map_flatten(prod);
10029 return prod;
10032 __isl_give isl_basic_set *isl_basic_set_flat_product(
10033 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
10035 return isl_basic_map_flat_range_product(bset1, bset2);
10038 __isl_give isl_basic_map *isl_basic_map_domain_product(
10039 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10041 isl_space *space_result = NULL;
10042 isl_basic_map *bmap;
10043 unsigned in1, in2, out, nparam, total, pos;
10044 struct isl_dim_map *dim_map1, *dim_map2;
10046 if (!bmap1 || !bmap2)
10047 goto error;
10049 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
10050 isl_space_copy(bmap2->dim));
10052 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
10053 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
10054 out = isl_basic_map_dim(bmap1, isl_dim_out);
10055 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10057 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
10058 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10059 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10060 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10061 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10062 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10063 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
10064 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
10065 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
10066 isl_dim_map_div(dim_map1, bmap1, pos += out);
10067 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10069 bmap = isl_basic_map_alloc_space(space_result,
10070 bmap1->n_div + bmap2->n_div,
10071 bmap1->n_eq + bmap2->n_eq,
10072 bmap1->n_ineq + bmap2->n_ineq);
10073 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10074 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10075 bmap = isl_basic_map_simplify(bmap);
10076 return isl_basic_map_finalize(bmap);
10077 error:
10078 isl_basic_map_free(bmap1);
10079 isl_basic_map_free(bmap2);
10080 return NULL;
10083 __isl_give isl_basic_map *isl_basic_map_range_product(
10084 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10086 isl_bool rational;
10087 isl_space *space_result = NULL;
10088 isl_basic_map *bmap;
10089 unsigned in, out1, out2, nparam, total, pos;
10090 struct isl_dim_map *dim_map1, *dim_map2;
10092 rational = isl_basic_map_is_rational(bmap1);
10093 if (rational >= 0 && rational)
10094 rational = isl_basic_map_is_rational(bmap2);
10095 if (!bmap1 || !bmap2 || rational < 0)
10096 goto error;
10098 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
10099 goto error;
10101 space_result = isl_space_range_product(isl_space_copy(bmap1->dim),
10102 isl_space_copy(bmap2->dim));
10104 in = isl_basic_map_dim(bmap1, isl_dim_in);
10105 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
10106 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
10107 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10109 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
10110 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10111 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10112 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10113 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10114 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10115 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
10116 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
10117 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
10118 isl_dim_map_div(dim_map1, bmap1, pos += out2);
10119 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10121 bmap = isl_basic_map_alloc_space(space_result,
10122 bmap1->n_div + bmap2->n_div,
10123 bmap1->n_eq + bmap2->n_eq,
10124 bmap1->n_ineq + bmap2->n_ineq);
10125 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10126 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10127 if (rational)
10128 bmap = isl_basic_map_set_rational(bmap);
10129 bmap = isl_basic_map_simplify(bmap);
10130 return isl_basic_map_finalize(bmap);
10131 error:
10132 isl_basic_map_free(bmap1);
10133 isl_basic_map_free(bmap2);
10134 return NULL;
10137 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
10138 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10140 isl_basic_map *prod;
10142 prod = isl_basic_map_range_product(bmap1, bmap2);
10143 prod = isl_basic_map_flatten_range(prod);
10144 return prod;
10147 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
10148 * and collect the results.
10149 * The result live in the space obtained by calling "space_product"
10150 * on the spaces of "map1" and "map2".
10151 * If "remove_duplicates" is set then the result may contain duplicates
10152 * (even if the inputs do not) and so we try and remove the obvious
10153 * duplicates.
10155 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
10156 __isl_take isl_map *map2,
10157 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
10158 __isl_take isl_space *right),
10159 __isl_give isl_basic_map *(*basic_map_product)(
10160 __isl_take isl_basic_map *left,
10161 __isl_take isl_basic_map *right),
10162 int remove_duplicates)
10164 unsigned flags = 0;
10165 struct isl_map *result;
10166 int i, j;
10167 isl_bool m;
10169 m = isl_map_has_equal_params(map1, map2);
10170 if (m < 0)
10171 goto error;
10172 if (!m)
10173 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
10174 "parameters don't match", goto error);
10176 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
10177 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
10178 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
10180 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
10181 isl_space_copy(map2->dim)),
10182 map1->n * map2->n, flags);
10183 if (!result)
10184 goto error;
10185 for (i = 0; i < map1->n; ++i)
10186 for (j = 0; j < map2->n; ++j) {
10187 struct isl_basic_map *part;
10188 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
10189 isl_basic_map_copy(map2->p[j]));
10190 if (isl_basic_map_is_empty(part))
10191 isl_basic_map_free(part);
10192 else
10193 result = isl_map_add_basic_map(result, part);
10194 if (!result)
10195 goto error;
10197 if (remove_duplicates)
10198 result = isl_map_remove_obvious_duplicates(result);
10199 isl_map_free(map1);
10200 isl_map_free(map2);
10201 return result;
10202 error:
10203 isl_map_free(map1);
10204 isl_map_free(map2);
10205 return NULL;
10208 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
10210 static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
10211 __isl_take isl_map *map2)
10213 return map_product(map1, map2, &isl_space_product,
10214 &isl_basic_map_product, 0);
10217 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
10218 __isl_take isl_map *map2)
10220 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
10223 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
10225 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
10226 __isl_take isl_map *map2)
10228 isl_map *prod;
10230 prod = isl_map_product(map1, map2);
10231 prod = isl_map_flatten(prod);
10232 return prod;
10235 /* Given two set A and B, construct its Cartesian product A x B.
10237 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
10239 return isl_map_range_product(set1, set2);
10242 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
10243 __isl_take isl_set *set2)
10245 return isl_map_flat_range_product(set1, set2);
10248 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10250 static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
10251 __isl_take isl_map *map2)
10253 return map_product(map1, map2, &isl_space_domain_product,
10254 &isl_basic_map_domain_product, 1);
10257 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10259 static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
10260 __isl_take isl_map *map2)
10262 return map_product(map1, map2, &isl_space_range_product,
10263 &isl_basic_map_range_product, 1);
10266 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
10267 __isl_take isl_map *map2)
10269 return isl_map_align_params_map_map_and(map1, map2,
10270 &map_domain_product_aligned);
10273 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
10274 __isl_take isl_map *map2)
10276 return isl_map_align_params_map_map_and(map1, map2,
10277 &map_range_product_aligned);
10280 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10282 __isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
10284 isl_space *space;
10285 int total1, keep1, total2, keep2;
10287 if (!map)
10288 return NULL;
10289 if (!isl_space_domain_is_wrapping(map->dim) ||
10290 !isl_space_range_is_wrapping(map->dim))
10291 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10292 "not a product", return isl_map_free(map));
10294 space = isl_map_get_space(map);
10295 total1 = isl_space_dim(space, isl_dim_in);
10296 total2 = isl_space_dim(space, isl_dim_out);
10297 space = isl_space_factor_domain(space);
10298 keep1 = isl_space_dim(space, isl_dim_in);
10299 keep2 = isl_space_dim(space, isl_dim_out);
10300 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
10301 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
10302 map = isl_map_reset_space(map, space);
10304 return map;
10307 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10309 __isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
10311 isl_space *space;
10312 int total1, keep1, total2, keep2;
10314 if (!map)
10315 return NULL;
10316 if (!isl_space_domain_is_wrapping(map->dim) ||
10317 !isl_space_range_is_wrapping(map->dim))
10318 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10319 "not a product", return isl_map_free(map));
10321 space = isl_map_get_space(map);
10322 total1 = isl_space_dim(space, isl_dim_in);
10323 total2 = isl_space_dim(space, isl_dim_out);
10324 space = isl_space_factor_range(space);
10325 keep1 = isl_space_dim(space, isl_dim_in);
10326 keep2 = isl_space_dim(space, isl_dim_out);
10327 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
10328 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
10329 map = isl_map_reset_space(map, space);
10331 return map;
10334 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10336 __isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
10338 isl_space *space;
10339 int total, keep;
10341 if (!map)
10342 return NULL;
10343 if (!isl_space_domain_is_wrapping(map->dim))
10344 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10345 "domain is not a product", return isl_map_free(map));
10347 space = isl_map_get_space(map);
10348 total = isl_space_dim(space, isl_dim_in);
10349 space = isl_space_domain_factor_domain(space);
10350 keep = isl_space_dim(space, isl_dim_in);
10351 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
10352 map = isl_map_reset_space(map, space);
10354 return map;
10357 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10359 __isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
10361 isl_space *space;
10362 int total, keep;
10364 if (!map)
10365 return NULL;
10366 if (!isl_space_domain_is_wrapping(map->dim))
10367 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10368 "domain is not a product", return isl_map_free(map));
10370 space = isl_map_get_space(map);
10371 total = isl_space_dim(space, isl_dim_in);
10372 space = isl_space_domain_factor_range(space);
10373 keep = isl_space_dim(space, isl_dim_in);
10374 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
10375 map = isl_map_reset_space(map, space);
10377 return map;
10380 /* Given a map A -> [B -> C], extract the map A -> B.
10382 __isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
10384 isl_space *space;
10385 int total, keep;
10387 if (!map)
10388 return NULL;
10389 if (!isl_space_range_is_wrapping(map->dim))
10390 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10391 "range is not a product", return isl_map_free(map));
10393 space = isl_map_get_space(map);
10394 total = isl_space_dim(space, isl_dim_out);
10395 space = isl_space_range_factor_domain(space);
10396 keep = isl_space_dim(space, isl_dim_out);
10397 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
10398 map = isl_map_reset_space(map, space);
10400 return map;
10403 /* Given a map A -> [B -> C], extract the map A -> C.
10405 __isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
10407 isl_space *space;
10408 int total, keep;
10410 if (!map)
10411 return NULL;
10412 if (!isl_space_range_is_wrapping(map->dim))
10413 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10414 "range is not a product", return isl_map_free(map));
10416 space = isl_map_get_space(map);
10417 total = isl_space_dim(space, isl_dim_out);
10418 space = isl_space_range_factor_range(space);
10419 keep = isl_space_dim(space, isl_dim_out);
10420 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
10421 map = isl_map_reset_space(map, space);
10423 return map;
10426 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10428 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
10429 __isl_take isl_map *map2)
10431 isl_map *prod;
10433 prod = isl_map_domain_product(map1, map2);
10434 prod = isl_map_flatten_domain(prod);
10435 return prod;
10438 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10440 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
10441 __isl_take isl_map *map2)
10443 isl_map *prod;
10445 prod = isl_map_range_product(map1, map2);
10446 prod = isl_map_flatten_range(prod);
10447 return prod;
10450 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
10452 int i;
10453 uint32_t hash = isl_hash_init();
10454 unsigned total;
10456 if (!bmap)
10457 return 0;
10458 bmap = isl_basic_map_copy(bmap);
10459 bmap = isl_basic_map_normalize(bmap);
10460 if (!bmap)
10461 return 0;
10462 total = isl_basic_map_total_dim(bmap);
10463 isl_hash_byte(hash, bmap->n_eq & 0xFF);
10464 for (i = 0; i < bmap->n_eq; ++i) {
10465 uint32_t c_hash;
10466 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
10467 isl_hash_hash(hash, c_hash);
10469 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
10470 for (i = 0; i < bmap->n_ineq; ++i) {
10471 uint32_t c_hash;
10472 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
10473 isl_hash_hash(hash, c_hash);
10475 isl_hash_byte(hash, bmap->n_div & 0xFF);
10476 for (i = 0; i < bmap->n_div; ++i) {
10477 uint32_t c_hash;
10478 if (isl_int_is_zero(bmap->div[i][0]))
10479 continue;
10480 isl_hash_byte(hash, i & 0xFF);
10481 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
10482 isl_hash_hash(hash, c_hash);
10484 isl_basic_map_free(bmap);
10485 return hash;
10488 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
10490 return isl_basic_map_get_hash(bset_to_bmap(bset));
10493 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
10495 int i;
10496 uint32_t hash;
10498 if (!map)
10499 return 0;
10500 map = isl_map_copy(map);
10501 map = isl_map_normalize(map);
10502 if (!map)
10503 return 0;
10505 hash = isl_hash_init();
10506 for (i = 0; i < map->n; ++i) {
10507 uint32_t bmap_hash;
10508 bmap_hash = isl_basic_map_get_hash(map->p[i]);
10509 isl_hash_hash(hash, bmap_hash);
10512 isl_map_free(map);
10514 return hash;
10517 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
10519 return isl_map_get_hash(set_to_map(set));
10522 /* Return the number of basic maps in the (current) representation of "map".
10524 int isl_map_n_basic_map(__isl_keep isl_map *map)
10526 return map ? map->n : 0;
10529 int isl_set_n_basic_set(__isl_keep isl_set *set)
10531 return set ? set->n : 0;
10534 isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
10535 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
10537 int i;
10539 if (!map)
10540 return isl_stat_error;
10542 for (i = 0; i < map->n; ++i)
10543 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
10544 return isl_stat_error;
10546 return isl_stat_ok;
10549 isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
10550 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
10552 int i;
10554 if (!set)
10555 return isl_stat_error;
10557 for (i = 0; i < set->n; ++i)
10558 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
10559 return isl_stat_error;
10561 return isl_stat_ok;
10564 /* Return a list of basic sets, the union of which is equal to "set".
10566 __isl_give isl_basic_set_list *isl_set_get_basic_set_list(
10567 __isl_keep isl_set *set)
10569 int i;
10570 isl_basic_set_list *list;
10572 if (!set)
10573 return NULL;
10575 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
10576 for (i = 0; i < set->n; ++i) {
10577 isl_basic_set *bset;
10579 bset = isl_basic_set_copy(set->p[i]);
10580 list = isl_basic_set_list_add(list, bset);
10583 return list;
10586 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
10588 isl_space *space;
10590 if (!bset)
10591 return NULL;
10593 bset = isl_basic_set_cow(bset);
10594 if (!bset)
10595 return NULL;
10597 space = isl_basic_set_get_space(bset);
10598 space = isl_space_lift(space, bset->n_div);
10599 if (!space)
10600 goto error;
10601 isl_space_free(bset->dim);
10602 bset->dim = space;
10603 bset->extra -= bset->n_div;
10604 bset->n_div = 0;
10606 bset = isl_basic_set_finalize(bset);
10608 return bset;
10609 error:
10610 isl_basic_set_free(bset);
10611 return NULL;
10614 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
10616 int i;
10617 isl_space *dim;
10618 unsigned n_div;
10620 set = set_from_map(isl_map_align_divs_internal(set_to_map(set)));
10622 if (!set)
10623 return NULL;
10625 set = isl_set_cow(set);
10626 if (!set)
10627 return NULL;
10629 n_div = set->p[0]->n_div;
10630 dim = isl_set_get_space(set);
10631 dim = isl_space_lift(dim, n_div);
10632 if (!dim)
10633 goto error;
10634 isl_space_free(set->dim);
10635 set->dim = dim;
10637 for (i = 0; i < set->n; ++i) {
10638 set->p[i] = isl_basic_set_lift(set->p[i]);
10639 if (!set->p[i])
10640 goto error;
10643 return set;
10644 error:
10645 isl_set_free(set);
10646 return NULL;
10649 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
10651 unsigned dim;
10652 int size = 0;
10654 if (!bset)
10655 return -1;
10657 dim = isl_basic_set_total_dim(bset);
10658 size += bset->n_eq * (1 + dim);
10659 size += bset->n_ineq * (1 + dim);
10660 size += bset->n_div * (2 + dim);
10662 return size;
10665 int isl_set_size(__isl_keep isl_set *set)
10667 int i;
10668 int size = 0;
10670 if (!set)
10671 return -1;
10673 for (i = 0; i < set->n; ++i)
10674 size += isl_basic_set_size(set->p[i]);
10676 return size;
10679 /* Check if there is any lower bound (if lower == 0) and/or upper
10680 * bound (if upper == 0) on the specified dim.
10682 static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10683 enum isl_dim_type type, unsigned pos, int lower, int upper)
10685 int i;
10687 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
10688 return isl_bool_error;
10690 pos += isl_basic_map_offset(bmap, type);
10692 for (i = 0; i < bmap->n_div; ++i) {
10693 if (isl_int_is_zero(bmap->div[i][0]))
10694 continue;
10695 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
10696 return isl_bool_true;
10699 for (i = 0; i < bmap->n_eq; ++i)
10700 if (!isl_int_is_zero(bmap->eq[i][pos]))
10701 return isl_bool_true;
10703 for (i = 0; i < bmap->n_ineq; ++i) {
10704 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
10705 if (sgn > 0)
10706 lower = 1;
10707 if (sgn < 0)
10708 upper = 1;
10711 return lower && upper;
10714 isl_bool isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10715 enum isl_dim_type type, unsigned pos)
10717 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
10720 isl_bool isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
10721 enum isl_dim_type type, unsigned pos)
10723 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
10726 isl_bool isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
10727 enum isl_dim_type type, unsigned pos)
10729 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
10732 isl_bool isl_map_dim_is_bounded(__isl_keep isl_map *map,
10733 enum isl_dim_type type, unsigned pos)
10735 int i;
10737 if (!map)
10738 return isl_bool_error;
10740 for (i = 0; i < map->n; ++i) {
10741 isl_bool bounded;
10742 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
10743 if (bounded < 0 || !bounded)
10744 return bounded;
10747 return isl_bool_true;
10750 /* Return true if the specified dim is involved in both an upper bound
10751 * and a lower bound.
10753 isl_bool isl_set_dim_is_bounded(__isl_keep isl_set *set,
10754 enum isl_dim_type type, unsigned pos)
10756 return isl_map_dim_is_bounded(set_to_map(set), type, pos);
10759 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10761 static isl_bool has_any_bound(__isl_keep isl_map *map,
10762 enum isl_dim_type type, unsigned pos,
10763 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10764 enum isl_dim_type type, unsigned pos))
10766 int i;
10768 if (!map)
10769 return isl_bool_error;
10771 for (i = 0; i < map->n; ++i) {
10772 isl_bool bounded;
10773 bounded = fn(map->p[i], type, pos);
10774 if (bounded < 0 || bounded)
10775 return bounded;
10778 return isl_bool_false;
10781 /* Return 1 if the specified dim is involved in any lower bound.
10783 isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
10784 enum isl_dim_type type, unsigned pos)
10786 return has_any_bound(set, type, pos,
10787 &isl_basic_map_dim_has_lower_bound);
10790 /* Return 1 if the specified dim is involved in any upper bound.
10792 isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
10793 enum isl_dim_type type, unsigned pos)
10795 return has_any_bound(set, type, pos,
10796 &isl_basic_map_dim_has_upper_bound);
10799 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10801 static isl_bool has_bound(__isl_keep isl_map *map,
10802 enum isl_dim_type type, unsigned pos,
10803 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10804 enum isl_dim_type type, unsigned pos))
10806 int i;
10808 if (!map)
10809 return isl_bool_error;
10811 for (i = 0; i < map->n; ++i) {
10812 isl_bool bounded;
10813 bounded = fn(map->p[i], type, pos);
10814 if (bounded < 0 || !bounded)
10815 return bounded;
10818 return isl_bool_true;
10821 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10823 isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
10824 enum isl_dim_type type, unsigned pos)
10826 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
10829 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10831 isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
10832 enum isl_dim_type type, unsigned pos)
10834 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
10837 /* For each of the "n" variables starting at "first", determine
10838 * the sign of the variable and put the results in the first "n"
10839 * elements of the array "signs".
10840 * Sign
10841 * 1 means that the variable is non-negative
10842 * -1 means that the variable is non-positive
10843 * 0 means the variable attains both positive and negative values.
10845 isl_stat isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
10846 unsigned first, unsigned n, int *signs)
10848 isl_vec *bound = NULL;
10849 struct isl_tab *tab = NULL;
10850 struct isl_tab_undo *snap;
10851 int i;
10853 if (!bset || !signs)
10854 return isl_stat_error;
10856 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
10857 tab = isl_tab_from_basic_set(bset, 0);
10858 if (!bound || !tab)
10859 goto error;
10861 isl_seq_clr(bound->el, bound->size);
10862 isl_int_set_si(bound->el[0], -1);
10864 snap = isl_tab_snap(tab);
10865 for (i = 0; i < n; ++i) {
10866 int empty;
10868 isl_int_set_si(bound->el[1 + first + i], -1);
10869 if (isl_tab_add_ineq(tab, bound->el) < 0)
10870 goto error;
10871 empty = tab->empty;
10872 isl_int_set_si(bound->el[1 + first + i], 0);
10873 if (isl_tab_rollback(tab, snap) < 0)
10874 goto error;
10876 if (empty) {
10877 signs[i] = 1;
10878 continue;
10881 isl_int_set_si(bound->el[1 + first + i], 1);
10882 if (isl_tab_add_ineq(tab, bound->el) < 0)
10883 goto error;
10884 empty = tab->empty;
10885 isl_int_set_si(bound->el[1 + first + i], 0);
10886 if (isl_tab_rollback(tab, snap) < 0)
10887 goto error;
10889 signs[i] = empty ? -1 : 0;
10892 isl_tab_free(tab);
10893 isl_vec_free(bound);
10894 return isl_stat_ok;
10895 error:
10896 isl_tab_free(tab);
10897 isl_vec_free(bound);
10898 return isl_stat_error;
10901 isl_stat isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
10902 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
10904 if (!bset || !signs)
10905 return isl_stat_error;
10906 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
10907 return isl_stat_error);
10909 first += pos(bset->dim, type) - 1;
10910 return isl_basic_set_vars_get_sign(bset, first, n, signs);
10913 /* Is it possible for the integer division "div" to depend (possibly
10914 * indirectly) on any output dimensions?
10916 * If the div is undefined, then we conservatively assume that it
10917 * may depend on them.
10918 * Otherwise, we check if it actually depends on them or on any integer
10919 * divisions that may depend on them.
10921 static isl_bool div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
10923 int i;
10924 unsigned n_out, o_out;
10925 unsigned n_div, o_div;
10927 if (isl_int_is_zero(bmap->div[div][0]))
10928 return isl_bool_true;
10930 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10931 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10933 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
10934 return isl_bool_true;
10936 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10937 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10939 for (i = 0; i < n_div; ++i) {
10940 isl_bool may_involve;
10942 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
10943 continue;
10944 may_involve = div_may_involve_output(bmap, i);
10945 if (may_involve < 0 || may_involve)
10946 return may_involve;
10949 return isl_bool_false;
10952 /* Return the first integer division of "bmap" in the range
10953 * [first, first + n[ that may depend on any output dimensions and
10954 * that has a non-zero coefficient in "c" (where the first coefficient
10955 * in "c" corresponds to integer division "first").
10957 static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
10958 isl_int *c, int first, int n)
10960 int k;
10962 if (!bmap)
10963 return -1;
10965 for (k = first; k < first + n; ++k) {
10966 isl_bool may_involve;
10968 if (isl_int_is_zero(c[k]))
10969 continue;
10970 may_involve = div_may_involve_output(bmap, k);
10971 if (may_involve < 0)
10972 return -1;
10973 if (may_involve)
10974 return k;
10977 return first + n;
10980 /* Look for a pair of inequality constraints in "bmap" of the form
10982 * -l + i >= 0 or i >= l
10983 * and
10984 * n + l - i >= 0 or i <= l + n
10986 * with n < "m" and i the output dimension at position "pos".
10987 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10988 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10989 * and earlier output dimensions, as well as integer divisions that do
10990 * not involve any of the output dimensions.
10992 * Return the index of the first inequality constraint or bmap->n_ineq
10993 * if no such pair can be found.
10995 static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
10996 int pos, isl_int m)
10998 int i, j;
10999 isl_ctx *ctx;
11000 unsigned total;
11001 unsigned n_div, o_div;
11002 unsigned n_out, o_out;
11003 int less;
11005 if (!bmap)
11006 return -1;
11008 ctx = isl_basic_map_get_ctx(bmap);
11009 total = isl_basic_map_total_dim(bmap);
11010 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11011 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11012 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11013 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11014 for (i = 0; i < bmap->n_ineq; ++i) {
11015 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
11016 continue;
11017 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
11018 n_out - (pos + 1)) != -1)
11019 continue;
11020 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
11021 0, n_div) < n_div)
11022 continue;
11023 for (j = i + 1; j < bmap->n_ineq; ++j) {
11024 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
11025 ctx->one))
11026 continue;
11027 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
11028 bmap->ineq[j] + 1, total))
11029 continue;
11030 break;
11032 if (j >= bmap->n_ineq)
11033 continue;
11034 isl_int_add(bmap->ineq[i][0],
11035 bmap->ineq[i][0], bmap->ineq[j][0]);
11036 less = isl_int_abs_lt(bmap->ineq[i][0], m);
11037 isl_int_sub(bmap->ineq[i][0],
11038 bmap->ineq[i][0], bmap->ineq[j][0]);
11039 if (!less)
11040 continue;
11041 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
11042 return i;
11043 else
11044 return j;
11047 return bmap->n_ineq;
11050 /* Return the index of the equality of "bmap" that defines
11051 * the output dimension "pos" in terms of earlier dimensions.
11052 * The equality may also involve integer divisions, as long
11053 * as those integer divisions are defined in terms of
11054 * parameters or input dimensions.
11055 * In this case, *div is set to the number of integer divisions and
11056 * *ineq is set to the number of inequality constraints (provided
11057 * div and ineq are not NULL).
11059 * The equality may also involve a single integer division involving
11060 * the output dimensions (typically only output dimension "pos") as
11061 * long as the coefficient of output dimension "pos" is 1 or -1 and
11062 * there is a pair of constraints i >= l and i <= l + n, with i referring
11063 * to output dimension "pos", l an expression involving only earlier
11064 * dimensions and n smaller than the coefficient of the integer division
11065 * in the equality. In this case, the output dimension can be defined
11066 * in terms of a modulo expression that does not involve the integer division.
11067 * *div is then set to this single integer division and
11068 * *ineq is set to the index of constraint i >= l.
11070 * Return bmap->n_eq if there is no such equality.
11071 * Return -1 on error.
11073 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
11074 int pos, int *div, int *ineq)
11076 int j, k, l;
11077 unsigned n_out, o_out;
11078 unsigned n_div, o_div;
11080 if (!bmap)
11081 return -1;
11083 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11084 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11085 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11086 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11088 if (ineq)
11089 *ineq = bmap->n_ineq;
11090 if (div)
11091 *div = n_div;
11092 for (j = 0; j < bmap->n_eq; ++j) {
11093 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
11094 continue;
11095 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
11096 n_out - (pos + 1)) != -1)
11097 continue;
11098 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11099 0, n_div);
11100 if (k >= n_div)
11101 return j;
11102 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
11103 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
11104 continue;
11105 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11106 k + 1, n_div - (k+1)) < n_div)
11107 continue;
11108 l = find_modulo_constraint_pair(bmap, pos,
11109 bmap->eq[j][o_div + k]);
11110 if (l < 0)
11111 return -1;
11112 if (l >= bmap->n_ineq)
11113 continue;
11114 if (div)
11115 *div = k;
11116 if (ineq)
11117 *ineq = l;
11118 return j;
11121 return bmap->n_eq;
11124 /* Check if the given basic map is obviously single-valued.
11125 * In particular, for each output dimension, check that there is
11126 * an equality that defines the output dimension in terms of
11127 * earlier dimensions.
11129 isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
11131 int i;
11132 unsigned n_out;
11134 if (!bmap)
11135 return isl_bool_error;
11137 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11139 for (i = 0; i < n_out; ++i) {
11140 int eq;
11142 eq = isl_basic_map_output_defining_equality(bmap, i,
11143 NULL, NULL);
11144 if (eq < 0)
11145 return isl_bool_error;
11146 if (eq >= bmap->n_eq)
11147 return isl_bool_false;
11150 return isl_bool_true;
11153 /* Check if the given basic map is single-valued.
11154 * We simply compute
11156 * M \circ M^-1
11158 * and check if the result is a subset of the identity mapping.
11160 isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
11162 isl_space *space;
11163 isl_basic_map *test;
11164 isl_basic_map *id;
11165 isl_bool sv;
11167 sv = isl_basic_map_plain_is_single_valued(bmap);
11168 if (sv < 0 || sv)
11169 return sv;
11171 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
11172 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
11174 space = isl_basic_map_get_space(bmap);
11175 space = isl_space_map_from_set(isl_space_range(space));
11176 id = isl_basic_map_identity(space);
11178 sv = isl_basic_map_is_subset(test, id);
11180 isl_basic_map_free(test);
11181 isl_basic_map_free(id);
11183 return sv;
11186 /* Check if the given map is obviously single-valued.
11188 isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
11190 if (!map)
11191 return isl_bool_error;
11192 if (map->n == 0)
11193 return isl_bool_true;
11194 if (map->n >= 2)
11195 return isl_bool_false;
11197 return isl_basic_map_plain_is_single_valued(map->p[0]);
11200 /* Check if the given map is single-valued.
11201 * We simply compute
11203 * M \circ M^-1
11205 * and check if the result is a subset of the identity mapping.
11207 isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
11209 isl_space *dim;
11210 isl_map *test;
11211 isl_map *id;
11212 isl_bool sv;
11214 sv = isl_map_plain_is_single_valued(map);
11215 if (sv < 0 || sv)
11216 return sv;
11218 test = isl_map_reverse(isl_map_copy(map));
11219 test = isl_map_apply_range(test, isl_map_copy(map));
11221 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
11222 id = isl_map_identity(dim);
11224 sv = isl_map_is_subset(test, id);
11226 isl_map_free(test);
11227 isl_map_free(id);
11229 return sv;
11232 isl_bool isl_map_is_injective(__isl_keep isl_map *map)
11234 isl_bool in;
11236 map = isl_map_copy(map);
11237 map = isl_map_reverse(map);
11238 in = isl_map_is_single_valued(map);
11239 isl_map_free(map);
11241 return in;
11244 /* Check if the given map is obviously injective.
11246 isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
11248 isl_bool in;
11250 map = isl_map_copy(map);
11251 map = isl_map_reverse(map);
11252 in = isl_map_plain_is_single_valued(map);
11253 isl_map_free(map);
11255 return in;
11258 isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
11260 isl_bool sv;
11262 sv = isl_map_is_single_valued(map);
11263 if (sv < 0 || !sv)
11264 return sv;
11266 return isl_map_is_injective(map);
11269 isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
11271 return isl_map_is_single_valued(set_to_map(set));
11274 /* Does "map" only map elements to themselves?
11276 * If the domain and range spaces are different, then "map"
11277 * is considered not to be an identity relation, even if it is empty.
11278 * Otherwise, construct the maximal identity relation and
11279 * check whether "map" is a subset of this relation.
11281 isl_bool isl_map_is_identity(__isl_keep isl_map *map)
11283 isl_space *space;
11284 isl_map *id;
11285 isl_bool equal, is_identity;
11287 space = isl_map_get_space(map);
11288 equal = isl_space_tuple_is_equal(space, isl_dim_in, space, isl_dim_out);
11289 isl_space_free(space);
11290 if (equal < 0 || !equal)
11291 return equal;
11293 id = isl_map_identity(isl_map_get_space(map));
11294 is_identity = isl_map_is_subset(map, id);
11295 isl_map_free(id);
11297 return is_identity;
11300 int isl_map_is_translation(__isl_keep isl_map *map)
11302 int ok;
11303 isl_set *delta;
11305 delta = isl_map_deltas(isl_map_copy(map));
11306 ok = isl_set_is_singleton(delta);
11307 isl_set_free(delta);
11309 return ok;
11312 static int unique(isl_int *p, unsigned pos, unsigned len)
11314 if (isl_seq_first_non_zero(p, pos) != -1)
11315 return 0;
11316 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
11317 return 0;
11318 return 1;
11321 isl_bool isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
11323 int i, j;
11324 unsigned nvar;
11325 unsigned ovar;
11327 if (!bset)
11328 return isl_bool_error;
11330 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
11331 return isl_bool_false;
11333 nvar = isl_basic_set_dim(bset, isl_dim_set);
11334 ovar = isl_space_offset(bset->dim, isl_dim_set);
11335 for (j = 0; j < nvar; ++j) {
11336 int lower = 0, upper = 0;
11337 for (i = 0; i < bset->n_eq; ++i) {
11338 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
11339 continue;
11340 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
11341 return isl_bool_false;
11342 break;
11344 if (i < bset->n_eq)
11345 continue;
11346 for (i = 0; i < bset->n_ineq; ++i) {
11347 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
11348 continue;
11349 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
11350 return isl_bool_false;
11351 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
11352 lower = 1;
11353 else
11354 upper = 1;
11356 if (!lower || !upper)
11357 return isl_bool_false;
11360 return isl_bool_true;
11363 isl_bool isl_set_is_box(__isl_keep isl_set *set)
11365 if (!set)
11366 return isl_bool_error;
11367 if (set->n != 1)
11368 return isl_bool_false;
11370 return isl_basic_set_is_box(set->p[0]);
11373 isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
11375 if (!bset)
11376 return isl_bool_error;
11378 return isl_space_is_wrapping(bset->dim);
11381 isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
11383 if (!set)
11384 return isl_bool_error;
11386 return isl_space_is_wrapping(set->dim);
11389 /* Modify the space of "map" through a call to "change".
11390 * If "can_change" is set (not NULL), then first call it to check
11391 * if the modification is allowed, printing the error message "cannot_change"
11392 * if it is not.
11394 static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
11395 isl_bool (*can_change)(__isl_keep isl_map *map),
11396 const char *cannot_change,
11397 __isl_give isl_space *(*change)(__isl_take isl_space *space))
11399 isl_bool ok;
11400 isl_space *space;
11402 if (!map)
11403 return NULL;
11405 ok = can_change ? can_change(map) : isl_bool_true;
11406 if (ok < 0)
11407 return isl_map_free(map);
11408 if (!ok)
11409 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
11410 return isl_map_free(map));
11412 space = change(isl_map_get_space(map));
11413 map = isl_map_reset_space(map, space);
11415 return map;
11418 /* Is the domain of "map" a wrapped relation?
11420 isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
11422 if (!map)
11423 return isl_bool_error;
11425 return isl_space_domain_is_wrapping(map->dim);
11428 /* Does "map" have a wrapped relation in both domain and range?
11430 isl_bool isl_map_is_product(__isl_keep isl_map *map)
11432 return isl_space_is_product(isl_map_peek_space(map));
11435 /* Is the range of "map" a wrapped relation?
11437 isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
11439 if (!map)
11440 return isl_bool_error;
11442 return isl_space_range_is_wrapping(map->dim);
11445 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
11447 bmap = isl_basic_map_cow(bmap);
11448 if (!bmap)
11449 return NULL;
11451 bmap->dim = isl_space_wrap(bmap->dim);
11452 if (!bmap->dim)
11453 goto error;
11455 bmap = isl_basic_map_finalize(bmap);
11457 return bset_from_bmap(bmap);
11458 error:
11459 isl_basic_map_free(bmap);
11460 return NULL;
11463 /* Given a map A -> B, return the set (A -> B).
11465 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
11467 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
11470 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
11472 bset = isl_basic_set_cow(bset);
11473 if (!bset)
11474 return NULL;
11476 bset->dim = isl_space_unwrap(bset->dim);
11477 if (!bset->dim)
11478 goto error;
11480 bset = isl_basic_set_finalize(bset);
11482 return bset_to_bmap(bset);
11483 error:
11484 isl_basic_set_free(bset);
11485 return NULL;
11488 /* Given a set (A -> B), return the map A -> B.
11489 * Error out if "set" is not of the form (A -> B).
11491 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
11493 return isl_map_change_space(set, &isl_set_is_wrapping,
11494 "not a wrapping set", &isl_space_unwrap);
11497 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
11498 enum isl_dim_type type)
11500 if (!bmap)
11501 return NULL;
11503 if (!isl_space_is_named_or_nested(bmap->dim, type))
11504 return bmap;
11506 bmap = isl_basic_map_cow(bmap);
11507 if (!bmap)
11508 return NULL;
11510 bmap->dim = isl_space_reset(bmap->dim, type);
11511 if (!bmap->dim)
11512 goto error;
11514 bmap = isl_basic_map_finalize(bmap);
11516 return bmap;
11517 error:
11518 isl_basic_map_free(bmap);
11519 return NULL;
11522 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
11523 enum isl_dim_type type)
11525 int i;
11527 if (!map)
11528 return NULL;
11530 if (!isl_space_is_named_or_nested(map->dim, type))
11531 return map;
11533 map = isl_map_cow(map);
11534 if (!map)
11535 return NULL;
11537 for (i = 0; i < map->n; ++i) {
11538 map->p[i] = isl_basic_map_reset(map->p[i], type);
11539 if (!map->p[i])
11540 goto error;
11542 map->dim = isl_space_reset(map->dim, type);
11543 if (!map->dim)
11544 goto error;
11546 return map;
11547 error:
11548 isl_map_free(map);
11549 return NULL;
11552 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
11554 if (!bmap)
11555 return NULL;
11557 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
11558 return bmap;
11560 bmap = isl_basic_map_cow(bmap);
11561 if (!bmap)
11562 return NULL;
11564 bmap->dim = isl_space_flatten(bmap->dim);
11565 if (!bmap->dim)
11566 goto error;
11568 bmap = isl_basic_map_finalize(bmap);
11570 return bmap;
11571 error:
11572 isl_basic_map_free(bmap);
11573 return NULL;
11576 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
11578 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset)));
11581 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
11582 __isl_take isl_basic_map *bmap)
11584 if (!bmap)
11585 return NULL;
11587 if (!bmap->dim->nested[0])
11588 return bmap;
11590 bmap = isl_basic_map_cow(bmap);
11591 if (!bmap)
11592 return NULL;
11594 bmap->dim = isl_space_flatten_domain(bmap->dim);
11595 if (!bmap->dim)
11596 goto error;
11598 bmap = isl_basic_map_finalize(bmap);
11600 return bmap;
11601 error:
11602 isl_basic_map_free(bmap);
11603 return NULL;
11606 __isl_give isl_basic_map *isl_basic_map_flatten_range(
11607 __isl_take isl_basic_map *bmap)
11609 if (!bmap)
11610 return NULL;
11612 if (!bmap->dim->nested[1])
11613 return bmap;
11615 bmap = isl_basic_map_cow(bmap);
11616 if (!bmap)
11617 return NULL;
11619 bmap->dim = isl_space_flatten_range(bmap->dim);
11620 if (!bmap->dim)
11621 goto error;
11623 bmap = isl_basic_map_finalize(bmap);
11625 return bmap;
11626 error:
11627 isl_basic_map_free(bmap);
11628 return NULL;
11631 /* Remove any internal structure from the spaces of domain and range of "map".
11633 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
11635 if (!map)
11636 return NULL;
11638 if (!map->dim->nested[0] && !map->dim->nested[1])
11639 return map;
11641 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
11644 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
11646 return set_from_map(isl_map_flatten(set_to_map(set)));
11649 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
11651 isl_space *dim, *flat_dim;
11652 isl_map *map;
11654 dim = isl_set_get_space(set);
11655 flat_dim = isl_space_flatten(isl_space_copy(dim));
11656 map = isl_map_identity(isl_space_join(isl_space_reverse(dim), flat_dim));
11657 map = isl_map_intersect_domain(map, set);
11659 return map;
11662 /* Remove any internal structure from the space of the domain of "map".
11664 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
11666 if (!map)
11667 return NULL;
11669 if (!map->dim->nested[0])
11670 return map;
11672 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
11675 /* Remove any internal structure from the space of the range of "map".
11677 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
11679 if (!map)
11680 return NULL;
11682 if (!map->dim->nested[1])
11683 return map;
11685 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
11688 /* Reorder the dimensions of "bmap" according to the given dim_map
11689 * and set the dimension specification to "space" and
11690 * perform Gaussian elimination on the result.
11692 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
11693 __isl_take isl_space *space, __isl_take struct isl_dim_map *dim_map)
11695 isl_basic_map *res;
11696 unsigned flags;
11697 unsigned n_div;
11699 if (!bmap || !space || !dim_map)
11700 goto error;
11702 flags = bmap->flags;
11703 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
11704 ISL_FL_CLR(flags, ISL_BASIC_MAP_SORTED);
11705 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
11706 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11707 res = isl_basic_map_alloc_space(space, n_div, bmap->n_eq, bmap->n_ineq);
11708 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
11709 if (res)
11710 res->flags = flags;
11711 res = isl_basic_map_gauss(res, NULL);
11712 res = isl_basic_map_finalize(res);
11713 return res;
11714 error:
11715 free(dim_map);
11716 isl_basic_map_free(bmap);
11717 isl_space_free(space);
11718 return NULL;
11721 /* Reorder the dimensions of "map" according to given reordering.
11723 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
11724 __isl_take isl_reordering *r)
11726 int i;
11727 struct isl_dim_map *dim_map;
11729 map = isl_map_cow(map);
11730 dim_map = isl_dim_map_from_reordering(r);
11731 if (!map || !r || !dim_map)
11732 goto error;
11734 for (i = 0; i < map->n; ++i) {
11735 struct isl_dim_map *dim_map_i;
11736 isl_space *space;
11738 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
11740 space = isl_reordering_get_space(r);
11741 map->p[i] = isl_basic_map_realign(map->p[i], space, dim_map_i);
11743 if (!map->p[i])
11744 goto error;
11747 map = isl_map_reset_space(map, isl_reordering_get_space(r));
11748 map = isl_map_unmark_normalized(map);
11750 isl_reordering_free(r);
11751 free(dim_map);
11752 return map;
11753 error:
11754 free(dim_map);
11755 isl_map_free(map);
11756 isl_reordering_free(r);
11757 return NULL;
11760 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
11761 __isl_take isl_reordering *r)
11763 return set_from_map(isl_map_realign(set_to_map(set), r));
11766 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
11767 __isl_take isl_space *model)
11769 isl_ctx *ctx;
11770 isl_bool aligned;
11772 if (!map || !model)
11773 goto error;
11775 ctx = isl_space_get_ctx(model);
11776 if (!isl_space_has_named_params(model))
11777 isl_die(ctx, isl_error_invalid,
11778 "model has unnamed parameters", goto error);
11779 if (isl_map_check_named_params(map) < 0)
11780 goto error;
11781 aligned = isl_map_space_has_equal_params(map, model);
11782 if (aligned < 0)
11783 goto error;
11784 if (!aligned) {
11785 isl_reordering *exp;
11787 exp = isl_parameter_alignment_reordering(map->dim, model);
11788 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
11789 map = isl_map_realign(map, exp);
11792 isl_space_free(model);
11793 return map;
11794 error:
11795 isl_space_free(model);
11796 isl_map_free(map);
11797 return NULL;
11800 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
11801 __isl_take isl_space *model)
11803 return isl_map_align_params(set, model);
11806 /* Align the parameters of "bmap" to those of "model", introducing
11807 * additional parameters if needed.
11809 __isl_give isl_basic_map *isl_basic_map_align_params(
11810 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
11812 isl_ctx *ctx;
11813 isl_bool equal_params;
11815 if (!bmap || !model)
11816 goto error;
11818 ctx = isl_space_get_ctx(model);
11819 if (!isl_space_has_named_params(model))
11820 isl_die(ctx, isl_error_invalid,
11821 "model has unnamed parameters", goto error);
11822 if (isl_basic_map_check_named_params(bmap) < 0)
11823 goto error;
11824 equal_params = isl_space_has_equal_params(bmap->dim, model);
11825 if (equal_params < 0)
11826 goto error;
11827 if (!equal_params) {
11828 isl_reordering *exp;
11829 struct isl_dim_map *dim_map;
11831 exp = isl_parameter_alignment_reordering(bmap->dim, model);
11832 exp = isl_reordering_extend_space(exp,
11833 isl_basic_map_get_space(bmap));
11834 dim_map = isl_dim_map_from_reordering(exp);
11835 bmap = isl_basic_map_realign(bmap,
11836 isl_reordering_get_space(exp),
11837 isl_dim_map_extend(dim_map, bmap));
11838 isl_reordering_free(exp);
11839 free(dim_map);
11842 isl_space_free(model);
11843 return bmap;
11844 error:
11845 isl_space_free(model);
11846 isl_basic_map_free(bmap);
11847 return NULL;
11850 /* Do "bset" and "space" have the same parameters?
11852 isl_bool isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set *bset,
11853 __isl_keep isl_space *space)
11855 isl_space *bset_space;
11857 bset_space = isl_basic_set_peek_space(bset);
11858 return isl_space_has_equal_params(bset_space, space);
11861 /* Do "map" and "space" have the same parameters?
11863 isl_bool isl_map_space_has_equal_params(__isl_keep isl_map *map,
11864 __isl_keep isl_space *space)
11866 isl_space *map_space;
11868 map_space = isl_map_peek_space(map);
11869 return isl_space_has_equal_params(map_space, space);
11872 /* Do "set" and "space" have the same parameters?
11874 isl_bool isl_set_space_has_equal_params(__isl_keep isl_set *set,
11875 __isl_keep isl_space *space)
11877 return isl_map_space_has_equal_params(set_to_map(set), space);
11880 /* Align the parameters of "bset" to those of "model", introducing
11881 * additional parameters if needed.
11883 __isl_give isl_basic_set *isl_basic_set_align_params(
11884 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
11886 return isl_basic_map_align_params(bset, model);
11889 /* Drop all parameters not referenced by "map".
11891 __isl_give isl_map *isl_map_drop_unused_params(__isl_take isl_map *map)
11893 int i;
11895 if (isl_map_check_named_params(map) < 0)
11896 return isl_map_free(map);
11898 for (i = isl_map_dim(map, isl_dim_param) - 1; i >= 0; i--) {
11899 isl_bool involves;
11901 involves = isl_map_involves_dims(map, isl_dim_param, i, 1);
11902 if (involves < 0)
11903 return isl_map_free(map);
11904 if (!involves)
11905 map = isl_map_project_out(map, isl_dim_param, i, 1);
11908 return map;
11911 /* Drop all parameters not referenced by "set".
11913 __isl_give isl_set *isl_set_drop_unused_params(
11914 __isl_take isl_set *set)
11916 return set_from_map(isl_map_drop_unused_params(set_to_map(set)));
11919 /* Drop all parameters not referenced by "bmap".
11921 __isl_give isl_basic_map *isl_basic_map_drop_unused_params(
11922 __isl_take isl_basic_map *bmap)
11924 int i;
11926 if (isl_basic_map_check_named_params(bmap) < 0)
11927 return isl_basic_map_free(bmap);
11929 for (i = isl_basic_map_dim(bmap, isl_dim_param) - 1; i >= 0; i--) {
11930 isl_bool involves;
11932 involves = isl_basic_map_involves_dims(bmap,
11933 isl_dim_param, i, 1);
11934 if (involves < 0)
11935 return isl_basic_map_free(bmap);
11936 if (!involves)
11937 bmap = isl_basic_map_drop(bmap, isl_dim_param, i, 1);
11940 return bmap;
11943 /* Drop all parameters not referenced by "bset".
11945 __isl_give isl_basic_set *isl_basic_set_drop_unused_params(
11946 __isl_take isl_basic_set *bset)
11948 return bset_from_bmap(isl_basic_map_drop_unused_params(
11949 bset_to_bmap(bset)));
11952 __isl_give isl_mat *isl_basic_map_equalities_matrix(
11953 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11954 enum isl_dim_type c2, enum isl_dim_type c3,
11955 enum isl_dim_type c4, enum isl_dim_type c5)
11957 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11958 struct isl_mat *mat;
11959 int i, j, k;
11960 int pos;
11962 if (!bmap)
11963 return NULL;
11964 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
11965 isl_basic_map_total_dim(bmap) + 1);
11966 if (!mat)
11967 return NULL;
11968 for (i = 0; i < bmap->n_eq; ++i)
11969 for (j = 0, pos = 0; j < 5; ++j) {
11970 int off = isl_basic_map_offset(bmap, c[j]);
11971 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11972 isl_int_set(mat->row[i][pos],
11973 bmap->eq[i][off + k]);
11974 ++pos;
11978 return mat;
11981 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
11982 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11983 enum isl_dim_type c2, enum isl_dim_type c3,
11984 enum isl_dim_type c4, enum isl_dim_type c5)
11986 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11987 struct isl_mat *mat;
11988 int i, j, k;
11989 int pos;
11991 if (!bmap)
11992 return NULL;
11993 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
11994 isl_basic_map_total_dim(bmap) + 1);
11995 if (!mat)
11996 return NULL;
11997 for (i = 0; i < bmap->n_ineq; ++i)
11998 for (j = 0, pos = 0; j < 5; ++j) {
11999 int off = isl_basic_map_offset(bmap, c[j]);
12000 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
12001 isl_int_set(mat->row[i][pos],
12002 bmap->ineq[i][off + k]);
12003 ++pos;
12007 return mat;
12010 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
12011 __isl_take isl_space *space,
12012 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
12013 enum isl_dim_type c2, enum isl_dim_type c3,
12014 enum isl_dim_type c4, enum isl_dim_type c5)
12016 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
12017 isl_basic_map *bmap = NULL;
12018 unsigned total;
12019 unsigned extra;
12020 int i, j, k, l;
12021 int pos;
12023 if (!space || !eq || !ineq)
12024 goto error;
12026 if (eq->n_col != ineq->n_col)
12027 isl_die(space->ctx, isl_error_invalid,
12028 "equalities and inequalities matrices should have "
12029 "same number of columns", goto error);
12031 total = 1 + isl_space_dim(space, isl_dim_all);
12033 if (eq->n_col < total)
12034 isl_die(space->ctx, isl_error_invalid,
12035 "number of columns too small", goto error);
12037 extra = eq->n_col - total;
12039 bmap = isl_basic_map_alloc_space(isl_space_copy(space), extra,
12040 eq->n_row, ineq->n_row);
12041 if (!bmap)
12042 goto error;
12043 for (i = 0; i < extra; ++i) {
12044 k = isl_basic_map_alloc_div(bmap);
12045 if (k < 0)
12046 goto error;
12047 isl_int_set_si(bmap->div[k][0], 0);
12049 for (i = 0; i < eq->n_row; ++i) {
12050 l = isl_basic_map_alloc_equality(bmap);
12051 if (l < 0)
12052 goto error;
12053 for (j = 0, pos = 0; j < 5; ++j) {
12054 int off = isl_basic_map_offset(bmap, c[j]);
12055 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
12056 isl_int_set(bmap->eq[l][off + k],
12057 eq->row[i][pos]);
12058 ++pos;
12062 for (i = 0; i < ineq->n_row; ++i) {
12063 l = isl_basic_map_alloc_inequality(bmap);
12064 if (l < 0)
12065 goto error;
12066 for (j = 0, pos = 0; j < 5; ++j) {
12067 int off = isl_basic_map_offset(bmap, c[j]);
12068 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
12069 isl_int_set(bmap->ineq[l][off + k],
12070 ineq->row[i][pos]);
12071 ++pos;
12076 isl_space_free(space);
12077 isl_mat_free(eq);
12078 isl_mat_free(ineq);
12080 bmap = isl_basic_map_simplify(bmap);
12081 return isl_basic_map_finalize(bmap);
12082 error:
12083 isl_space_free(space);
12084 isl_mat_free(eq);
12085 isl_mat_free(ineq);
12086 isl_basic_map_free(bmap);
12087 return NULL;
12090 __isl_give isl_mat *isl_basic_set_equalities_matrix(
12091 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
12092 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12094 return isl_basic_map_equalities_matrix(bset_to_bmap(bset),
12095 c1, c2, c3, c4, isl_dim_in);
12098 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
12099 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
12100 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12102 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset),
12103 c1, c2, c3, c4, isl_dim_in);
12106 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
12107 __isl_take isl_space *dim,
12108 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
12109 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12111 isl_basic_map *bmap;
12112 bmap = isl_basic_map_from_constraint_matrices(dim, eq, ineq,
12113 c1, c2, c3, c4, isl_dim_in);
12114 return bset_from_bmap(bmap);
12117 isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
12119 if (!bmap)
12120 return isl_bool_error;
12122 return isl_space_can_zip(bmap->dim);
12125 isl_bool isl_map_can_zip(__isl_keep isl_map *map)
12127 if (!map)
12128 return isl_bool_error;
12130 return isl_space_can_zip(map->dim);
12133 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
12134 * (A -> C) -> (B -> D).
12136 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
12138 unsigned pos;
12139 unsigned n1;
12140 unsigned n2;
12142 if (!bmap)
12143 return NULL;
12145 if (!isl_basic_map_can_zip(bmap))
12146 isl_die(bmap->ctx, isl_error_invalid,
12147 "basic map cannot be zipped", goto error);
12148 pos = isl_basic_map_offset(bmap, isl_dim_in) +
12149 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
12150 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
12151 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
12152 bmap = isl_basic_map_cow(bmap);
12153 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
12154 if (!bmap)
12155 return NULL;
12156 bmap->dim = isl_space_zip(bmap->dim);
12157 if (!bmap->dim)
12158 goto error;
12159 bmap = isl_basic_map_mark_final(bmap);
12160 return bmap;
12161 error:
12162 isl_basic_map_free(bmap);
12163 return NULL;
12166 /* Given a map (A -> B) -> (C -> D), return the corresponding map
12167 * (A -> C) -> (B -> D).
12169 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
12171 int i;
12173 if (!map)
12174 return NULL;
12176 if (!isl_map_can_zip(map))
12177 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
12178 goto error);
12180 map = isl_map_cow(map);
12181 if (!map)
12182 return NULL;
12184 for (i = 0; i < map->n; ++i) {
12185 map->p[i] = isl_basic_map_zip(map->p[i]);
12186 if (!map->p[i])
12187 goto error;
12190 map->dim = isl_space_zip(map->dim);
12191 if (!map->dim)
12192 goto error;
12194 return map;
12195 error:
12196 isl_map_free(map);
12197 return NULL;
12200 /* Can we apply isl_basic_map_curry to "bmap"?
12201 * That is, does it have a nested relation in its domain?
12203 isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
12205 if (!bmap)
12206 return isl_bool_error;
12208 return isl_space_can_curry(bmap->dim);
12211 /* Can we apply isl_map_curry to "map"?
12212 * That is, does it have a nested relation in its domain?
12214 isl_bool isl_map_can_curry(__isl_keep isl_map *map)
12216 if (!map)
12217 return isl_bool_error;
12219 return isl_space_can_curry(map->dim);
12222 /* Given a basic map (A -> B) -> C, return the corresponding basic map
12223 * A -> (B -> C).
12225 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
12228 if (!bmap)
12229 return NULL;
12231 if (!isl_basic_map_can_curry(bmap))
12232 isl_die(bmap->ctx, isl_error_invalid,
12233 "basic map cannot be curried", goto error);
12234 bmap = isl_basic_map_cow(bmap);
12235 if (!bmap)
12236 return NULL;
12237 bmap->dim = isl_space_curry(bmap->dim);
12238 if (!bmap->dim)
12239 goto error;
12240 bmap = isl_basic_map_mark_final(bmap);
12241 return bmap;
12242 error:
12243 isl_basic_map_free(bmap);
12244 return NULL;
12247 /* Given a map (A -> B) -> C, return the corresponding map
12248 * A -> (B -> C).
12250 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
12252 return isl_map_change_space(map, &isl_map_can_curry,
12253 "map cannot be curried", &isl_space_curry);
12256 /* Can isl_map_range_curry be applied to "map"?
12257 * That is, does it have a nested relation in its range,
12258 * the domain of which is itself a nested relation?
12260 isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
12262 if (!map)
12263 return isl_bool_error;
12265 return isl_space_can_range_curry(map->dim);
12268 /* Given a map A -> ((B -> C) -> D), return the corresponding map
12269 * A -> (B -> (C -> D)).
12271 __isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
12273 return isl_map_change_space(map, &isl_map_can_range_curry,
12274 "map range cannot be curried",
12275 &isl_space_range_curry);
12278 /* Can we apply isl_basic_map_uncurry to "bmap"?
12279 * That is, does it have a nested relation in its domain?
12281 isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
12283 if (!bmap)
12284 return isl_bool_error;
12286 return isl_space_can_uncurry(bmap->dim);
12289 /* Can we apply isl_map_uncurry to "map"?
12290 * That is, does it have a nested relation in its domain?
12292 isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
12294 if (!map)
12295 return isl_bool_error;
12297 return isl_space_can_uncurry(map->dim);
12300 /* Given a basic map A -> (B -> C), return the corresponding basic map
12301 * (A -> B) -> C.
12303 __isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
12306 if (!bmap)
12307 return NULL;
12309 if (!isl_basic_map_can_uncurry(bmap))
12310 isl_die(bmap->ctx, isl_error_invalid,
12311 "basic map cannot be uncurried",
12312 return isl_basic_map_free(bmap));
12313 bmap = isl_basic_map_cow(bmap);
12314 if (!bmap)
12315 return NULL;
12316 bmap->dim = isl_space_uncurry(bmap->dim);
12317 if (!bmap->dim)
12318 return isl_basic_map_free(bmap);
12319 bmap = isl_basic_map_mark_final(bmap);
12320 return bmap;
12323 /* Given a map A -> (B -> C), return the corresponding map
12324 * (A -> B) -> C.
12326 __isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
12328 return isl_map_change_space(map, &isl_map_can_uncurry,
12329 "map cannot be uncurried", &isl_space_uncurry);
12332 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
12333 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12335 return isl_map_equate(set, type1, pos1, type2, pos2);
12338 /* Construct a basic map where the given dimensions are equal to each other.
12340 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
12341 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12343 isl_basic_map *bmap = NULL;
12344 int i;
12346 if (!space)
12347 return NULL;
12349 if (pos1 >= isl_space_dim(space, type1))
12350 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12351 "index out of bounds", goto error);
12352 if (pos2 >= isl_space_dim(space, type2))
12353 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12354 "index out of bounds", goto error);
12356 if (type1 == type2 && pos1 == pos2)
12357 return isl_basic_map_universe(space);
12359 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
12360 i = isl_basic_map_alloc_equality(bmap);
12361 if (i < 0)
12362 goto error;
12363 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12364 pos1 += isl_basic_map_offset(bmap, type1);
12365 pos2 += isl_basic_map_offset(bmap, type2);
12366 isl_int_set_si(bmap->eq[i][pos1], -1);
12367 isl_int_set_si(bmap->eq[i][pos2], 1);
12368 bmap = isl_basic_map_finalize(bmap);
12369 isl_space_free(space);
12370 return bmap;
12371 error:
12372 isl_space_free(space);
12373 isl_basic_map_free(bmap);
12374 return NULL;
12377 /* Add a constraint imposing that the given two dimensions are equal.
12379 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
12380 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12382 isl_basic_map *eq;
12384 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12386 bmap = isl_basic_map_intersect(bmap, eq);
12388 return bmap;
12391 /* Add a constraint imposing that the given two dimensions are equal.
12393 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
12394 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12396 isl_basic_map *bmap;
12398 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
12400 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12402 return map;
12405 /* Add a constraint imposing that the given two dimensions have opposite values.
12407 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
12408 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12410 isl_basic_map *bmap = NULL;
12411 int i;
12413 if (!map)
12414 return NULL;
12416 if (pos1 >= isl_map_dim(map, type1))
12417 isl_die(map->ctx, isl_error_invalid,
12418 "index out of bounds", goto error);
12419 if (pos2 >= isl_map_dim(map, type2))
12420 isl_die(map->ctx, isl_error_invalid,
12421 "index out of bounds", goto error);
12423 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
12424 i = isl_basic_map_alloc_equality(bmap);
12425 if (i < 0)
12426 goto error;
12427 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12428 pos1 += isl_basic_map_offset(bmap, type1);
12429 pos2 += isl_basic_map_offset(bmap, type2);
12430 isl_int_set_si(bmap->eq[i][pos1], 1);
12431 isl_int_set_si(bmap->eq[i][pos2], 1);
12432 bmap = isl_basic_map_finalize(bmap);
12434 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12436 return map;
12437 error:
12438 isl_basic_map_free(bmap);
12439 isl_map_free(map);
12440 return NULL;
12443 /* Construct a constraint imposing that the value of the first dimension is
12444 * greater than or equal to that of the second.
12446 static __isl_give isl_constraint *constraint_order_ge(
12447 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
12448 enum isl_dim_type type2, int pos2)
12450 isl_constraint *c;
12452 if (!space)
12453 return NULL;
12455 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
12457 if (pos1 >= isl_constraint_dim(c, type1))
12458 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12459 "index out of bounds", return isl_constraint_free(c));
12460 if (pos2 >= isl_constraint_dim(c, type2))
12461 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12462 "index out of bounds", return isl_constraint_free(c));
12464 if (type1 == type2 && pos1 == pos2)
12465 return c;
12467 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
12468 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
12470 return c;
12473 /* Add a constraint imposing that the value of the first dimension is
12474 * greater than or equal to that of the second.
12476 __isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
12477 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12479 isl_constraint *c;
12480 isl_space *space;
12482 if (type1 == type2 && pos1 == pos2)
12483 return bmap;
12484 space = isl_basic_map_get_space(bmap);
12485 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12486 bmap = isl_basic_map_add_constraint(bmap, c);
12488 return bmap;
12491 /* Add a constraint imposing that the value of the first dimension is
12492 * greater than or equal to that of the second.
12494 __isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
12495 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12497 isl_constraint *c;
12498 isl_space *space;
12500 if (type1 == type2 && pos1 == pos2)
12501 return map;
12502 space = isl_map_get_space(map);
12503 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12504 map = isl_map_add_constraint(map, c);
12506 return map;
12509 /* Add a constraint imposing that the value of the first dimension is
12510 * less than or equal to that of the second.
12512 __isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
12513 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12515 return isl_map_order_ge(map, type2, pos2, type1, pos1);
12518 /* Construct a basic map where the value of the first dimension is
12519 * greater than that of the second.
12521 static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
12522 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12524 isl_basic_map *bmap = NULL;
12525 int i;
12527 if (!space)
12528 return NULL;
12530 if (pos1 >= isl_space_dim(space, type1))
12531 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12532 "index out of bounds", goto error);
12533 if (pos2 >= isl_space_dim(space, type2))
12534 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12535 "index out of bounds", goto error);
12537 if (type1 == type2 && pos1 == pos2)
12538 return isl_basic_map_empty(space);
12540 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
12541 i = isl_basic_map_alloc_inequality(bmap);
12542 if (i < 0)
12543 return isl_basic_map_free(bmap);
12544 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
12545 pos1 += isl_basic_map_offset(bmap, type1);
12546 pos2 += isl_basic_map_offset(bmap, type2);
12547 isl_int_set_si(bmap->ineq[i][pos1], 1);
12548 isl_int_set_si(bmap->ineq[i][pos2], -1);
12549 isl_int_set_si(bmap->ineq[i][0], -1);
12550 bmap = isl_basic_map_finalize(bmap);
12552 return bmap;
12553 error:
12554 isl_space_free(space);
12555 isl_basic_map_free(bmap);
12556 return NULL;
12559 /* Add a constraint imposing that the value of the first dimension is
12560 * greater than that of the second.
12562 __isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
12563 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12565 isl_basic_map *gt;
12567 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12569 bmap = isl_basic_map_intersect(bmap, gt);
12571 return bmap;
12574 /* Add a constraint imposing that the value of the first dimension is
12575 * greater than that of the second.
12577 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
12578 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12580 isl_basic_map *bmap;
12582 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
12584 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12586 return map;
12589 /* Add a constraint imposing that the value of the first dimension is
12590 * smaller than that of the second.
12592 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
12593 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12595 return isl_map_order_gt(map, type2, pos2, type1, pos1);
12598 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
12599 int pos)
12601 isl_aff *div;
12602 isl_local_space *ls;
12604 if (!bmap)
12605 return NULL;
12607 if (!isl_basic_map_divs_known(bmap))
12608 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12609 "some divs are unknown", return NULL);
12611 ls = isl_basic_map_get_local_space(bmap);
12612 div = isl_local_space_get_div(ls, pos);
12613 isl_local_space_free(ls);
12615 return div;
12618 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
12619 int pos)
12621 return isl_basic_map_get_div(bset, pos);
12624 /* Plug in "subs" for dimension "type", "pos" of "bset".
12626 * Let i be the dimension to replace and let "subs" be of the form
12628 * f/d
12630 * Any integer division with a non-zero coefficient for i,
12632 * floor((a i + g)/m)
12634 * is replaced by
12636 * floor((a f + d g)/(m d))
12638 * Constraints of the form
12640 * a i + g
12642 * are replaced by
12644 * a f + d g
12646 * We currently require that "subs" is an integral expression.
12647 * Handling rational expressions may require us to add stride constraints
12648 * as we do in isl_basic_set_preimage_multi_aff.
12650 __isl_give isl_basic_set *isl_basic_set_substitute(
12651 __isl_take isl_basic_set *bset,
12652 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12654 int i;
12655 isl_int v;
12656 isl_ctx *ctx;
12658 if (bset && isl_basic_set_plain_is_empty(bset))
12659 return bset;
12661 bset = isl_basic_set_cow(bset);
12662 if (!bset || !subs)
12663 goto error;
12665 ctx = isl_basic_set_get_ctx(bset);
12666 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
12667 isl_die(ctx, isl_error_invalid,
12668 "spaces don't match", goto error);
12669 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
12670 isl_die(ctx, isl_error_unsupported,
12671 "cannot handle divs yet", goto error);
12672 if (!isl_int_is_one(subs->v->el[0]))
12673 isl_die(ctx, isl_error_invalid,
12674 "can only substitute integer expressions", goto error);
12676 pos += isl_basic_set_offset(bset, type);
12678 isl_int_init(v);
12680 for (i = 0; i < bset->n_eq; ++i) {
12681 if (isl_int_is_zero(bset->eq[i][pos]))
12682 continue;
12683 isl_int_set(v, bset->eq[i][pos]);
12684 isl_int_set_si(bset->eq[i][pos], 0);
12685 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
12686 v, subs->v->el + 1, subs->v->size - 1);
12689 for (i = 0; i < bset->n_ineq; ++i) {
12690 if (isl_int_is_zero(bset->ineq[i][pos]))
12691 continue;
12692 isl_int_set(v, bset->ineq[i][pos]);
12693 isl_int_set_si(bset->ineq[i][pos], 0);
12694 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
12695 v, subs->v->el + 1, subs->v->size - 1);
12698 for (i = 0; i < bset->n_div; ++i) {
12699 if (isl_int_is_zero(bset->div[i][1 + pos]))
12700 continue;
12701 isl_int_set(v, bset->div[i][1 + pos]);
12702 isl_int_set_si(bset->div[i][1 + pos], 0);
12703 isl_seq_combine(bset->div[i] + 1,
12704 subs->v->el[0], bset->div[i] + 1,
12705 v, subs->v->el + 1, subs->v->size - 1);
12706 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
12709 isl_int_clear(v);
12711 bset = isl_basic_set_simplify(bset);
12712 return isl_basic_set_finalize(bset);
12713 error:
12714 isl_basic_set_free(bset);
12715 return NULL;
12718 /* Plug in "subs" for dimension "type", "pos" of "set".
12720 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
12721 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12723 int i;
12725 if (set && isl_set_plain_is_empty(set))
12726 return set;
12728 set = isl_set_cow(set);
12729 if (!set || !subs)
12730 goto error;
12732 for (i = set->n - 1; i >= 0; --i) {
12733 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
12734 set = set_from_map(remove_if_empty(set_to_map(set), i));
12735 if (!set)
12736 return NULL;
12739 return set;
12740 error:
12741 isl_set_free(set);
12742 return NULL;
12745 /* Check if the range of "ma" is compatible with the domain or range
12746 * (depending on "type") of "bmap".
12748 static isl_stat check_basic_map_compatible_range_multi_aff(
12749 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
12750 __isl_keep isl_multi_aff *ma)
12752 isl_bool m;
12753 isl_space *ma_space;
12755 ma_space = isl_multi_aff_get_space(ma);
12757 m = isl_space_has_equal_params(bmap->dim, ma_space);
12758 if (m < 0)
12759 goto error;
12760 if (!m)
12761 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12762 "parameters don't match", goto error);
12763 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
12764 if (m < 0)
12765 goto error;
12766 if (!m)
12767 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12768 "spaces don't match", goto error);
12770 isl_space_free(ma_space);
12771 return isl_stat_ok;
12772 error:
12773 isl_space_free(ma_space);
12774 return isl_stat_error;
12777 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12778 * coefficients before the transformed range of dimensions,
12779 * the "n_after" coefficients after the transformed range of dimensions
12780 * and the coefficients of the other divs in "bmap".
12782 static int set_ma_divs(__isl_keep isl_basic_map *bmap,
12783 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
12785 int i;
12786 int n_param;
12787 int n_set;
12788 isl_local_space *ls;
12790 if (n_div == 0)
12791 return 0;
12793 ls = isl_aff_get_domain_local_space(ma->u.p[0]);
12794 if (!ls)
12795 return -1;
12797 n_param = isl_local_space_dim(ls, isl_dim_param);
12798 n_set = isl_local_space_dim(ls, isl_dim_set);
12799 for (i = 0; i < n_div; ++i) {
12800 int o_bmap = 0, o_ls = 0;
12802 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
12803 o_bmap += 1 + 1 + n_param;
12804 o_ls += 1 + 1 + n_param;
12805 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
12806 o_bmap += n_before;
12807 isl_seq_cpy(bmap->div[i] + o_bmap,
12808 ls->div->row[i] + o_ls, n_set);
12809 o_bmap += n_set;
12810 o_ls += n_set;
12811 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
12812 o_bmap += n_after;
12813 isl_seq_cpy(bmap->div[i] + o_bmap,
12814 ls->div->row[i] + o_ls, n_div);
12815 o_bmap += n_div;
12816 o_ls += n_div;
12817 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
12818 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
12819 goto error;
12822 isl_local_space_free(ls);
12823 return 0;
12824 error:
12825 isl_local_space_free(ls);
12826 return -1;
12829 /* How many stride constraints does "ma" enforce?
12830 * That is, how many of the affine expressions have a denominator
12831 * different from one?
12833 static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
12835 int i;
12836 int strides = 0;
12838 for (i = 0; i < ma->n; ++i)
12839 if (!isl_int_is_one(ma->u.p[i]->v->el[0]))
12840 strides++;
12842 return strides;
12845 /* For each affine expression in ma of the form
12847 * x_i = (f_i y + h_i)/m_i
12849 * with m_i different from one, add a constraint to "bmap"
12850 * of the form
12852 * f_i y + h_i = m_i alpha_i
12854 * with alpha_i an additional existentially quantified variable.
12856 * The input variables of "ma" correspond to a subset of the variables
12857 * of "bmap". There are "n_before" variables in "bmap" before this
12858 * subset and "n_after" variables after this subset.
12859 * The integer divisions of the affine expressions in "ma" are assumed
12860 * to have been aligned. There are "n_div_ma" of them and
12861 * they appear first in "bmap", straight after the "n_after" variables.
12863 static __isl_give isl_basic_map *add_ma_strides(
12864 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
12865 int n_before, int n_after, int n_div_ma)
12867 int i, k;
12868 int div;
12869 int total;
12870 int n_param;
12871 int n_in;
12873 total = isl_basic_map_total_dim(bmap);
12874 n_param = isl_multi_aff_dim(ma, isl_dim_param);
12875 n_in = isl_multi_aff_dim(ma, isl_dim_in);
12876 for (i = 0; i < ma->n; ++i) {
12877 int o_bmap = 0, o_ma = 1;
12879 if (isl_int_is_one(ma->u.p[i]->v->el[0]))
12880 continue;
12881 div = isl_basic_map_alloc_div(bmap);
12882 k = isl_basic_map_alloc_equality(bmap);
12883 if (div < 0 || k < 0)
12884 goto error;
12885 isl_int_set_si(bmap->div[div][0], 0);
12886 isl_seq_cpy(bmap->eq[k] + o_bmap,
12887 ma->u.p[i]->v->el + o_ma, 1 + n_param);
12888 o_bmap += 1 + n_param;
12889 o_ma += 1 + n_param;
12890 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
12891 o_bmap += n_before;
12892 isl_seq_cpy(bmap->eq[k] + o_bmap,
12893 ma->u.p[i]->v->el + o_ma, n_in);
12894 o_bmap += n_in;
12895 o_ma += n_in;
12896 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
12897 o_bmap += n_after;
12898 isl_seq_cpy(bmap->eq[k] + o_bmap,
12899 ma->u.p[i]->v->el + o_ma, n_div_ma);
12900 o_bmap += n_div_ma;
12901 o_ma += n_div_ma;
12902 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
12903 isl_int_neg(bmap->eq[k][1 + total], ma->u.p[i]->v->el[0]);
12904 total++;
12907 return bmap;
12908 error:
12909 isl_basic_map_free(bmap);
12910 return NULL;
12913 /* Replace the domain or range space (depending on "type) of "space" by "set".
12915 static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
12916 enum isl_dim_type type, __isl_take isl_space *set)
12918 if (type == isl_dim_in) {
12919 space = isl_space_range(space);
12920 space = isl_space_map_from_domain_and_range(set, space);
12921 } else {
12922 space = isl_space_domain(space);
12923 space = isl_space_map_from_domain_and_range(space, set);
12926 return space;
12929 /* Compute the preimage of the domain or range (depending on "type")
12930 * of "bmap" under the function represented by "ma".
12931 * In other words, plug in "ma" in the domain or range of "bmap".
12932 * The result is a basic map that lives in the same space as "bmap"
12933 * except that the domain or range has been replaced by
12934 * the domain space of "ma".
12936 * If bmap is represented by
12938 * A(p) + S u + B x + T v + C(divs) >= 0,
12940 * where u and x are input and output dimensions if type == isl_dim_out
12941 * while x and v are input and output dimensions if type == isl_dim_in,
12942 * and ma is represented by
12944 * x = D(p) + F(y) + G(divs')
12946 * then the result is
12948 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12950 * The divs in the input set are similarly adjusted.
12951 * In particular
12953 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12955 * becomes
12957 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12958 * B_i G(divs') + c_i(divs))/n_i)
12960 * If bmap is not a rational map and if F(y) involves any denominators
12962 * x_i = (f_i y + h_i)/m_i
12964 * then additional constraints are added to ensure that we only
12965 * map back integer points. That is we enforce
12967 * f_i y + h_i = m_i alpha_i
12969 * with alpha_i an additional existentially quantified variable.
12971 * We first copy over the divs from "ma".
12972 * Then we add the modified constraints and divs from "bmap".
12973 * Finally, we add the stride constraints, if needed.
12975 __isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
12976 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
12977 __isl_take isl_multi_aff *ma)
12979 int i, k;
12980 isl_space *space;
12981 isl_basic_map *res = NULL;
12982 int n_before, n_after, n_div_bmap, n_div_ma;
12983 isl_int f, c1, c2, g;
12984 isl_bool rational;
12985 int strides;
12987 isl_int_init(f);
12988 isl_int_init(c1);
12989 isl_int_init(c2);
12990 isl_int_init(g);
12992 ma = isl_multi_aff_align_divs(ma);
12993 if (!bmap || !ma)
12994 goto error;
12995 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
12996 goto error;
12998 if (type == isl_dim_in) {
12999 n_before = 0;
13000 n_after = isl_basic_map_dim(bmap, isl_dim_out);
13001 } else {
13002 n_before = isl_basic_map_dim(bmap, isl_dim_in);
13003 n_after = 0;
13005 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
13006 n_div_ma = ma->n ? isl_aff_dim(ma->u.p[0], isl_dim_div) : 0;
13008 space = isl_multi_aff_get_domain_space(ma);
13009 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
13010 rational = isl_basic_map_is_rational(bmap);
13011 strides = rational ? 0 : multi_aff_strides(ma);
13012 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
13013 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
13014 if (rational)
13015 res = isl_basic_map_set_rational(res);
13017 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
13018 if (isl_basic_map_alloc_div(res) < 0)
13019 goto error;
13021 if (set_ma_divs(res, ma, n_before, n_after, n_div_ma) < 0)
13022 goto error;
13024 for (i = 0; i < bmap->n_eq; ++i) {
13025 k = isl_basic_map_alloc_equality(res);
13026 if (k < 0)
13027 goto error;
13028 isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
13029 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13032 for (i = 0; i < bmap->n_ineq; ++i) {
13033 k = isl_basic_map_alloc_inequality(res);
13034 if (k < 0)
13035 goto error;
13036 isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
13037 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13040 for (i = 0; i < bmap->n_div; ++i) {
13041 if (isl_int_is_zero(bmap->div[i][0])) {
13042 isl_int_set_si(res->div[n_div_ma + i][0], 0);
13043 continue;
13045 isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
13046 n_before, n_after, n_div_ma, n_div_bmap,
13047 f, c1, c2, g, 1);
13050 if (strides)
13051 res = add_ma_strides(res, ma, n_before, n_after, n_div_ma);
13053 isl_int_clear(f);
13054 isl_int_clear(c1);
13055 isl_int_clear(c2);
13056 isl_int_clear(g);
13057 isl_basic_map_free(bmap);
13058 isl_multi_aff_free(ma);
13059 res = isl_basic_map_simplify(res);
13060 return isl_basic_map_finalize(res);
13061 error:
13062 isl_int_clear(f);
13063 isl_int_clear(c1);
13064 isl_int_clear(c2);
13065 isl_int_clear(g);
13066 isl_basic_map_free(bmap);
13067 isl_multi_aff_free(ma);
13068 isl_basic_map_free(res);
13069 return NULL;
13072 /* Compute the preimage of "bset" under the function represented by "ma".
13073 * In other words, plug in "ma" in "bset". The result is a basic set
13074 * that lives in the domain space of "ma".
13076 __isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
13077 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
13079 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
13082 /* Compute the preimage of the domain of "bmap" under the function
13083 * represented by "ma".
13084 * In other words, plug in "ma" in the domain of "bmap".
13085 * The result is a basic map that lives in the same space as "bmap"
13086 * except that the domain has been replaced by the domain space of "ma".
13088 __isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
13089 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13091 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
13094 /* Compute the preimage of the range of "bmap" under the function
13095 * represented by "ma".
13096 * In other words, plug in "ma" in the range of "bmap".
13097 * The result is a basic map that lives in the same space as "bmap"
13098 * except that the range has been replaced by the domain space of "ma".
13100 __isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
13101 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13103 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
13106 /* Check if the range of "ma" is compatible with the domain or range
13107 * (depending on "type") of "map".
13108 * Return isl_stat_error if anything is wrong.
13110 static isl_stat check_map_compatible_range_multi_aff(
13111 __isl_keep isl_map *map, enum isl_dim_type type,
13112 __isl_keep isl_multi_aff *ma)
13114 isl_bool m;
13115 isl_space *ma_space;
13117 ma_space = isl_multi_aff_get_space(ma);
13118 m = isl_space_tuple_is_equal(map->dim, type, ma_space, isl_dim_out);
13119 isl_space_free(ma_space);
13120 if (m < 0)
13121 return isl_stat_error;
13122 if (!m)
13123 isl_die(isl_map_get_ctx(map), isl_error_invalid,
13124 "spaces don't match", return isl_stat_error);
13125 return isl_stat_ok;
13128 /* Compute the preimage of the domain or range (depending on "type")
13129 * of "map" under the function represented by "ma".
13130 * In other words, plug in "ma" in the domain or range of "map".
13131 * The result is a map that lives in the same space as "map"
13132 * except that the domain or range has been replaced by
13133 * the domain space of "ma".
13135 * The parameters are assumed to have been aligned.
13137 static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
13138 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13140 int i;
13141 isl_space *space;
13143 map = isl_map_cow(map);
13144 ma = isl_multi_aff_align_divs(ma);
13145 if (!map || !ma)
13146 goto error;
13147 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
13148 goto error;
13150 for (i = 0; i < map->n; ++i) {
13151 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
13152 isl_multi_aff_copy(ma));
13153 if (!map->p[i])
13154 goto error;
13157 space = isl_multi_aff_get_domain_space(ma);
13158 space = isl_space_set(isl_map_get_space(map), type, space);
13160 isl_space_free(map->dim);
13161 map->dim = space;
13162 if (!map->dim)
13163 goto error;
13165 isl_multi_aff_free(ma);
13166 if (map->n > 1)
13167 ISL_F_CLR(map, ISL_MAP_DISJOINT);
13168 ISL_F_CLR(map, ISL_SET_NORMALIZED);
13169 return map;
13170 error:
13171 isl_multi_aff_free(ma);
13172 isl_map_free(map);
13173 return NULL;
13176 /* Compute the preimage of the domain or range (depending on "type")
13177 * of "map" under the function represented by "ma".
13178 * In other words, plug in "ma" in the domain or range of "map".
13179 * The result is a map that lives in the same space as "map"
13180 * except that the domain or range has been replaced by
13181 * the domain space of "ma".
13183 __isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
13184 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13186 isl_bool aligned;
13188 if (!map || !ma)
13189 goto error;
13191 aligned = isl_map_space_has_equal_params(map, ma->space);
13192 if (aligned < 0)
13193 goto error;
13194 if (aligned)
13195 return map_preimage_multi_aff(map, type, ma);
13197 if (isl_map_check_named_params(map) < 0)
13198 goto error;
13199 if (!isl_space_has_named_params(ma->space))
13200 isl_die(map->ctx, isl_error_invalid,
13201 "unaligned unnamed parameters", goto error);
13202 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
13203 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
13205 return map_preimage_multi_aff(map, type, ma);
13206 error:
13207 isl_multi_aff_free(ma);
13208 return isl_map_free(map);
13211 /* Compute the preimage of "set" under the function represented by "ma".
13212 * In other words, plug in "ma" in "set". The result is a set
13213 * that lives in the domain space of "ma".
13215 __isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
13216 __isl_take isl_multi_aff *ma)
13218 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
13221 /* Compute the preimage of the domain of "map" under the function
13222 * represented by "ma".
13223 * In other words, plug in "ma" in the domain of "map".
13224 * The result is a map that lives in the same space as "map"
13225 * except that the domain has been replaced by the domain space of "ma".
13227 __isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
13228 __isl_take isl_multi_aff *ma)
13230 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
13233 /* Compute the preimage of the range of "map" under the function
13234 * represented by "ma".
13235 * In other words, plug in "ma" in the range of "map".
13236 * The result is a map that lives in the same space as "map"
13237 * except that the range has been replaced by the domain space of "ma".
13239 __isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
13240 __isl_take isl_multi_aff *ma)
13242 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
13245 /* Compute the preimage of "map" under the function represented by "pma".
13246 * In other words, plug in "pma" in the domain or range of "map".
13247 * The result is a map that lives in the same space as "map",
13248 * except that the space of type "type" has been replaced by
13249 * the domain space of "pma".
13251 * The parameters of "map" and "pma" are assumed to have been aligned.
13253 static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
13254 __isl_take isl_map *map, enum isl_dim_type type,
13255 __isl_take isl_pw_multi_aff *pma)
13257 int i;
13258 isl_map *res;
13260 if (!pma)
13261 goto error;
13263 if (pma->n == 0) {
13264 isl_pw_multi_aff_free(pma);
13265 res = isl_map_empty(isl_map_get_space(map));
13266 isl_map_free(map);
13267 return res;
13270 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13271 isl_multi_aff_copy(pma->p[0].maff));
13272 if (type == isl_dim_in)
13273 res = isl_map_intersect_domain(res,
13274 isl_map_copy(pma->p[0].set));
13275 else
13276 res = isl_map_intersect_range(res,
13277 isl_map_copy(pma->p[0].set));
13279 for (i = 1; i < pma->n; ++i) {
13280 isl_map *res_i;
13282 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13283 isl_multi_aff_copy(pma->p[i].maff));
13284 if (type == isl_dim_in)
13285 res_i = isl_map_intersect_domain(res_i,
13286 isl_map_copy(pma->p[i].set));
13287 else
13288 res_i = isl_map_intersect_range(res_i,
13289 isl_map_copy(pma->p[i].set));
13290 res = isl_map_union(res, res_i);
13293 isl_pw_multi_aff_free(pma);
13294 isl_map_free(map);
13295 return res;
13296 error:
13297 isl_pw_multi_aff_free(pma);
13298 isl_map_free(map);
13299 return NULL;
13302 /* Compute the preimage of "map" under the function represented by "pma".
13303 * In other words, plug in "pma" in the domain or range of "map".
13304 * The result is a map that lives in the same space as "map",
13305 * except that the space of type "type" has been replaced by
13306 * the domain space of "pma".
13308 __isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
13309 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
13311 isl_bool aligned;
13313 if (!map || !pma)
13314 goto error;
13316 aligned = isl_map_space_has_equal_params(map, pma->dim);
13317 if (aligned < 0)
13318 goto error;
13319 if (aligned)
13320 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13322 if (isl_map_check_named_params(map) < 0)
13323 goto error;
13324 if (isl_pw_multi_aff_check_named_params(pma) < 0)
13325 goto error;
13326 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
13327 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
13329 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13330 error:
13331 isl_pw_multi_aff_free(pma);
13332 return isl_map_free(map);
13335 /* Compute the preimage of "set" under the function represented by "pma".
13336 * In other words, plug in "pma" in "set". The result is a set
13337 * that lives in the domain space of "pma".
13339 __isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
13340 __isl_take isl_pw_multi_aff *pma)
13342 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
13345 /* Compute the preimage of the domain of "map" under the function
13346 * represented by "pma".
13347 * In other words, plug in "pma" in the domain of "map".
13348 * The result is a map that lives in the same space as "map",
13349 * except that domain space has been replaced by the domain space of "pma".
13351 __isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
13352 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13354 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
13357 /* Compute the preimage of the range of "map" under the function
13358 * represented by "pma".
13359 * In other words, plug in "pma" in the range of "map".
13360 * The result is a map that lives in the same space as "map",
13361 * except that range space has been replaced by the domain space of "pma".
13363 __isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
13364 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13366 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
13369 /* Compute the preimage of "map" under the function represented by "mpa".
13370 * In other words, plug in "mpa" in the domain or range of "map".
13371 * The result is a map that lives in the same space as "map",
13372 * except that the space of type "type" has been replaced by
13373 * the domain space of "mpa".
13375 * If the map does not involve any constraints that refer to the
13376 * dimensions of the substituted space, then the only possible
13377 * effect of "mpa" on the map is to map the space to a different space.
13378 * We create a separate isl_multi_aff to effectuate this change
13379 * in order to avoid spurious splitting of the map along the pieces
13380 * of "mpa".
13381 * If "mpa" has a non-trivial explicit domain, however,
13382 * then the full substitution should be performed.
13384 __isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
13385 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
13387 int n;
13388 isl_bool full;
13389 isl_pw_multi_aff *pma;
13391 if (!map || !mpa)
13392 goto error;
13394 n = isl_map_dim(map, type);
13395 full = isl_map_involves_dims(map, type, 0, n);
13396 if (full >= 0 && !full)
13397 full = isl_multi_pw_aff_has_non_trivial_domain(mpa);
13398 if (full < 0)
13399 goto error;
13400 if (!full) {
13401 isl_space *space;
13402 isl_multi_aff *ma;
13404 space = isl_multi_pw_aff_get_space(mpa);
13405 isl_multi_pw_aff_free(mpa);
13406 ma = isl_multi_aff_zero(space);
13407 return isl_map_preimage_multi_aff(map, type, ma);
13410 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
13411 return isl_map_preimage_pw_multi_aff(map, type, pma);
13412 error:
13413 isl_map_free(map);
13414 isl_multi_pw_aff_free(mpa);
13415 return NULL;
13418 /* Compute the preimage of "map" under the function represented by "mpa".
13419 * In other words, plug in "mpa" in the domain "map".
13420 * The result is a map that lives in the same space as "map",
13421 * except that domain space has been replaced by the domain space of "mpa".
13423 __isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
13424 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
13426 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
13429 /* Compute the preimage of "set" by the function represented by "mpa".
13430 * In other words, plug in "mpa" in "set".
13432 __isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
13433 __isl_take isl_multi_pw_aff *mpa)
13435 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);
13438 /* Return a copy of the equality constraints of "bset" as a matrix.
13440 __isl_give isl_mat *isl_basic_set_extract_equalities(
13441 __isl_keep isl_basic_set *bset)
13443 isl_ctx *ctx;
13444 unsigned total;
13446 if (!bset)
13447 return NULL;
13449 ctx = isl_basic_set_get_ctx(bset);
13450 total = 1 + isl_basic_set_dim(bset, isl_dim_all);
13451 return isl_mat_sub_alloc6(ctx, bset->eq, 0, bset->n_eq, 0, total);
13454 /* Are the "n" "coefficients" starting at "first" of the integer division
13455 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13456 * to each other?
13457 * The "coefficient" at position 0 is the denominator.
13458 * The "coefficient" at position 1 is the constant term.
13460 isl_bool isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map *bmap1,
13461 int pos1, __isl_keep isl_basic_map *bmap2, int pos2,
13462 unsigned first, unsigned n)
13464 if (isl_basic_map_check_range(bmap1, isl_dim_div, pos1, 1) < 0)
13465 return isl_bool_error;
13466 if (isl_basic_map_check_range(bmap2, isl_dim_div, pos2, 1) < 0)
13467 return isl_bool_error;
13468 return isl_seq_eq(bmap1->div[pos1] + first,
13469 bmap2->div[pos2] + first, n);
13472 /* Are the integer division expressions at position "pos1" in "bmap1" and
13473 * "pos2" in "bmap2" equal to each other, except that the constant terms
13474 * are different?
13476 isl_bool isl_basic_map_equal_div_expr_except_constant(
13477 __isl_keep isl_basic_map *bmap1, int pos1,
13478 __isl_keep isl_basic_map *bmap2, int pos2)
13480 isl_bool equal;
13481 unsigned total;
13483 if (!bmap1 || !bmap2)
13484 return isl_bool_error;
13485 total = isl_basic_map_total_dim(bmap1);
13486 if (total != isl_basic_map_total_dim(bmap2))
13487 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
13488 "incomparable div expressions", return isl_bool_error);
13489 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13490 0, 1);
13491 if (equal < 0 || !equal)
13492 return equal;
13493 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13494 1, 1);
13495 if (equal < 0 || equal)
13496 return isl_bool_not(equal);
13497 return isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13498 2, total);
13501 /* Replace the numerator of the constant term of the integer division
13502 * expression at position "div" in "bmap" by "value".
13503 * The caller guarantees that this does not change the meaning
13504 * of the input.
13506 __isl_give isl_basic_map *isl_basic_map_set_div_expr_constant_num_si_inplace(
13507 __isl_take isl_basic_map *bmap, int div, int value)
13509 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
13510 return isl_basic_map_free(bmap);
13512 isl_int_set_si(bmap->div[div][1], value);
13514 return bmap;
13517 /* Is the point "inner" internal to inequality constraint "ineq"
13518 * of "bset"?
13519 * The point is considered to be internal to the inequality constraint,
13520 * if it strictly lies on the positive side of the inequality constraint,
13521 * or if it lies on the constraint and the constraint is lexico-positive.
13523 static isl_bool is_internal(__isl_keep isl_vec *inner,
13524 __isl_keep isl_basic_set *bset, int ineq)
13526 isl_ctx *ctx;
13527 int pos;
13528 unsigned total;
13530 if (!inner || !bset)
13531 return isl_bool_error;
13533 ctx = isl_basic_set_get_ctx(bset);
13534 isl_seq_inner_product(inner->el, bset->ineq[ineq], inner->size,
13535 &ctx->normalize_gcd);
13536 if (!isl_int_is_zero(ctx->normalize_gcd))
13537 return isl_int_is_nonneg(ctx->normalize_gcd);
13539 total = isl_basic_set_dim(bset, isl_dim_all);
13540 pos = isl_seq_first_non_zero(bset->ineq[ineq] + 1, total);
13541 return isl_int_is_pos(bset->ineq[ineq][1 + pos]);
13544 /* Tighten the inequality constraints of "bset" that are outward with respect
13545 * to the point "vec".
13546 * That is, tighten the constraints that are not satisfied by "vec".
13548 * "vec" is a point internal to some superset S of "bset" that is used
13549 * to make the subsets of S disjoint, by tightening one half of the constraints
13550 * that separate two subsets. In particular, the constraints of S
13551 * are all satisfied by "vec" and should not be tightened.
13552 * Of the internal constraints, those that have "vec" on the outside
13553 * are tightened. The shared facet is included in the adjacent subset
13554 * with the opposite constraint.
13555 * For constraints that saturate "vec", this criterion cannot be used
13556 * to determine which of the two sides should be tightened.
13557 * Instead, the sign of the first non-zero coefficient is used
13558 * to make this choice. Note that this second criterion is never used
13559 * on the constraints of S since "vec" is interior to "S".
13561 __isl_give isl_basic_set *isl_basic_set_tighten_outward(
13562 __isl_take isl_basic_set *bset, __isl_keep isl_vec *vec)
13564 int j;
13566 bset = isl_basic_set_cow(bset);
13567 if (!bset)
13568 return NULL;
13569 for (j = 0; j < bset->n_ineq; ++j) {
13570 isl_bool internal;
13572 internal = is_internal(vec, bset, j);
13573 if (internal < 0)
13574 return isl_basic_set_free(bset);
13575 if (internal)
13576 continue;
13577 isl_int_sub_ui(bset->ineq[j][0], bset->ineq[j][0], 1);
13580 return bset;
13583 /* Replace the variables x of type "type" starting at "first" in "bmap"
13584 * by x' with x = M x' with M the matrix trans.
13585 * That is, replace the corresponding coefficients c by c M.
13587 * The transformation matrix should be a square matrix.
13589 __isl_give isl_basic_map *isl_basic_map_transform_dims(
13590 __isl_take isl_basic_map *bmap, enum isl_dim_type type, unsigned first,
13591 __isl_take isl_mat *trans)
13593 unsigned pos;
13595 bmap = isl_basic_map_cow(bmap);
13596 if (!bmap || !trans)
13597 goto error;
13599 if (trans->n_row != trans->n_col)
13600 isl_die(trans->ctx, isl_error_invalid,
13601 "expecting square transformation matrix", goto error);
13602 if (first + trans->n_row > isl_basic_map_dim(bmap, type))
13603 isl_die(trans->ctx, isl_error_invalid,
13604 "oversized transformation matrix", goto error);
13606 pos = isl_basic_map_offset(bmap, type) + first;
13608 if (isl_mat_sub_transform(bmap->eq, bmap->n_eq, pos,
13609 isl_mat_copy(trans)) < 0)
13610 goto error;
13611 if (isl_mat_sub_transform(bmap->ineq, bmap->n_ineq, pos,
13612 isl_mat_copy(trans)) < 0)
13613 goto error;
13614 if (isl_mat_sub_transform(bmap->div, bmap->n_div, 1 + pos,
13615 isl_mat_copy(trans)) < 0)
13616 goto error;
13618 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
13619 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
13621 isl_mat_free(trans);
13622 return bmap;
13623 error:
13624 isl_mat_free(trans);
13625 isl_basic_map_free(bmap);
13626 return NULL;
13629 /* Replace the variables x of type "type" starting at "first" in "bset"
13630 * by x' with x = M x' with M the matrix trans.
13631 * That is, replace the corresponding coefficients c by c M.
13633 * The transformation matrix should be a square matrix.
13635 __isl_give isl_basic_set *isl_basic_set_transform_dims(
13636 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned first,
13637 __isl_take isl_mat *trans)
13639 return isl_basic_map_transform_dims(bset, type, first, trans);