isl_set_from_pw_aff: explicitly convert result to set
[isl.git] / isl_map.c
blob271ff765e50b1cb1d2acfdc7f61fd3fd82faa04d
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2014 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
6 * Copyright 2016 INRIA Paris
7 * Copyright 2016 Sven Verdoolaege
9 * Use of this software is governed by the MIT license
11 * Written by Sven Verdoolaege, K.U.Leuven, Departement
12 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
13 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
14 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
15 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
16 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
17 * B.P. 105 - 78153 Le Chesnay, France
18 * and Centre de Recherche Inria de Paris, 2 rue Simone Iff - Voie DQ12,
19 * CS 42112, 75589 Paris Cedex 12, France
22 #include <string.h>
23 #include <isl_ctx_private.h>
24 #include <isl_map_private.h>
25 #include <isl_blk.h>
26 #include <isl/id.h>
27 #include <isl/constraint.h>
28 #include "isl_space_private.h"
29 #include "isl_equalities.h"
30 #include <isl_lp_private.h>
31 #include <isl_seq.h>
32 #include <isl/set.h>
33 #include <isl/map.h>
34 #include <isl_reordering.h>
35 #include "isl_sample.h"
36 #include <isl_sort.h>
37 #include "isl_tab.h"
38 #include <isl/vec.h>
39 #include <isl_mat_private.h>
40 #include <isl_vec_private.h>
41 #include <isl_dim_map.h>
42 #include <isl_local_space_private.h>
43 #include <isl_aff_private.h>
44 #include <isl_options_private.h>
45 #include <isl_morph.h>
46 #include <isl_val_private.h>
48 #include <bset_to_bmap.c>
49 #include <bset_from_bmap.c>
50 #include <set_to_map.c>
51 #include <set_from_map.c>
53 static unsigned n(__isl_keep isl_space *dim, enum isl_dim_type type)
55 switch (type) {
56 case isl_dim_param: return dim->nparam;
57 case isl_dim_in: return dim->n_in;
58 case isl_dim_out: return dim->n_out;
59 case isl_dim_all: return dim->nparam + dim->n_in + dim->n_out;
60 default: return 0;
64 static unsigned pos(__isl_keep isl_space *dim, enum isl_dim_type type)
66 switch (type) {
67 case isl_dim_param: return 1;
68 case isl_dim_in: return 1 + dim->nparam;
69 case isl_dim_out: return 1 + dim->nparam + dim->n_in;
70 default: return 0;
74 unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap,
75 enum isl_dim_type type)
77 if (!bmap)
78 return 0;
79 switch (type) {
80 case isl_dim_cst: return 1;
81 case isl_dim_param:
82 case isl_dim_in:
83 case isl_dim_out: return isl_space_dim(bmap->dim, type);
84 case isl_dim_div: return bmap->n_div;
85 case isl_dim_all: return isl_basic_map_total_dim(bmap);
86 default: return 0;
90 /* Return the space of "map".
92 __isl_keep isl_space *isl_map_peek_space(__isl_keep const isl_map *map)
94 return map ? map->dim : NULL;
97 unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type)
99 return map ? n(map->dim, type) : 0;
102 unsigned isl_set_dim(__isl_keep isl_set *set, enum isl_dim_type type)
104 return set ? n(set->dim, type) : 0;
107 unsigned isl_basic_map_offset(struct isl_basic_map *bmap,
108 enum isl_dim_type type)
110 isl_space *space;
112 if (!bmap)
113 return 0;
115 space = bmap->dim;
116 switch (type) {
117 case isl_dim_cst: return 0;
118 case isl_dim_param: return 1;
119 case isl_dim_in: return 1 + space->nparam;
120 case isl_dim_out: return 1 + space->nparam + space->n_in;
121 case isl_dim_div: return 1 + space->nparam + space->n_in +
122 space->n_out;
123 default: return 0;
127 unsigned isl_basic_set_offset(__isl_keep isl_basic_set *bset,
128 enum isl_dim_type type)
130 return isl_basic_map_offset(bset, type);
133 static unsigned map_offset(__isl_keep isl_map *map, enum isl_dim_type type)
135 return pos(map->dim, type);
138 unsigned isl_basic_set_dim(__isl_keep isl_basic_set *bset,
139 enum isl_dim_type type)
141 return isl_basic_map_dim(bset, type);
144 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set *bset)
146 return isl_basic_set_dim(bset, isl_dim_set);
149 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set *bset)
151 return isl_basic_set_dim(bset, isl_dim_param);
154 unsigned isl_basic_set_total_dim(__isl_keep const isl_basic_set *bset)
156 if (!bset)
157 return 0;
158 return isl_space_dim(bset->dim, isl_dim_all) + bset->n_div;
161 unsigned isl_set_n_dim(__isl_keep isl_set *set)
163 return isl_set_dim(set, isl_dim_set);
166 unsigned isl_set_n_param(__isl_keep isl_set *set)
168 return isl_set_dim(set, isl_dim_param);
171 unsigned isl_basic_map_n_in(__isl_keep const isl_basic_map *bmap)
173 return bmap ? bmap->dim->n_in : 0;
176 unsigned isl_basic_map_n_out(__isl_keep const isl_basic_map *bmap)
178 return bmap ? bmap->dim->n_out : 0;
181 unsigned isl_basic_map_n_param(__isl_keep const isl_basic_map *bmap)
183 return bmap ? bmap->dim->nparam : 0;
186 unsigned isl_basic_map_n_div(__isl_keep const isl_basic_map *bmap)
188 return bmap ? bmap->n_div : 0;
191 unsigned isl_basic_map_total_dim(__isl_keep const isl_basic_map *bmap)
193 return bmap ? isl_space_dim(bmap->dim, isl_dim_all) + bmap->n_div : 0;
196 unsigned isl_map_n_in(__isl_keep const isl_map *map)
198 return map ? map->dim->n_in : 0;
201 unsigned isl_map_n_out(__isl_keep const isl_map *map)
203 return map ? map->dim->n_out : 0;
206 unsigned isl_map_n_param(__isl_keep const isl_map *map)
208 return map ? map->dim->nparam : 0;
211 /* Return the number of equality constraints in the description of "bmap".
212 * Return -1 on error.
214 int isl_basic_map_n_equality(__isl_keep isl_basic_map *bmap)
216 if (!bmap)
217 return -1;
218 return bmap->n_eq;
221 /* Return the number of equality constraints in the description of "bset".
222 * Return -1 on error.
224 int isl_basic_set_n_equality(__isl_keep isl_basic_set *bset)
226 return isl_basic_map_n_equality(bset_to_bmap(bset));
229 /* Return the number of inequality constraints in the description of "bmap".
230 * Return -1 on error.
232 int isl_basic_map_n_inequality(__isl_keep isl_basic_map *bmap)
234 if (!bmap)
235 return -1;
236 return bmap->n_ineq;
239 /* Return the number of inequality constraints in the description of "bset".
240 * Return -1 on error.
242 int isl_basic_set_n_inequality(__isl_keep isl_basic_set *bset)
244 return isl_basic_map_n_inequality(bset_to_bmap(bset));
247 /* Do "bmap1" and "bmap2" have the same parameters?
249 static isl_bool isl_basic_map_has_equal_params(__isl_keep isl_basic_map *bmap1,
250 __isl_keep isl_basic_map *bmap2)
252 isl_space *space1, *space2;
254 space1 = isl_basic_map_peek_space(bmap1);
255 space2 = isl_basic_map_peek_space(bmap2);
256 return isl_space_has_equal_params(space1, space2);
259 /* Do "map1" and "map2" have the same parameters?
261 isl_bool isl_map_has_equal_params(__isl_keep isl_map *map1,
262 __isl_keep isl_map *map2)
264 isl_space *space1, *space2;
266 space1 = isl_map_peek_space(map1);
267 space2 = isl_map_peek_space(map2);
268 return isl_space_has_equal_params(space1, space2);
271 /* Do "map" and "set" have the same parameters?
273 static isl_bool isl_map_set_has_equal_params(__isl_keep isl_map *map,
274 __isl_keep isl_set *set)
276 return isl_map_has_equal_params(map, set_to_map(set));
279 isl_bool isl_map_compatible_domain(__isl_keep isl_map *map,
280 __isl_keep isl_set *set)
282 isl_bool m;
283 if (!map || !set)
284 return isl_bool_error;
285 m = isl_map_has_equal_params(map, set_to_map(set));
286 if (m < 0 || !m)
287 return m;
288 return isl_space_tuple_is_equal(map->dim, isl_dim_in,
289 set->dim, isl_dim_set);
292 isl_bool isl_basic_map_compatible_domain(__isl_keep isl_basic_map *bmap,
293 __isl_keep isl_basic_set *bset)
295 isl_bool m;
296 if (!bmap || !bset)
297 return isl_bool_error;
298 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
299 if (m < 0 || !m)
300 return m;
301 return isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
302 bset->dim, isl_dim_set);
305 isl_bool isl_map_compatible_range(__isl_keep isl_map *map,
306 __isl_keep isl_set *set)
308 isl_bool m;
309 if (!map || !set)
310 return isl_bool_error;
311 m = isl_map_has_equal_params(map, set_to_map(set));
312 if (m < 0 || !m)
313 return m;
314 return isl_space_tuple_is_equal(map->dim, isl_dim_out,
315 set->dim, isl_dim_set);
318 isl_bool isl_basic_map_compatible_range(__isl_keep isl_basic_map *bmap,
319 __isl_keep isl_basic_set *bset)
321 isl_bool m;
322 if (!bmap || !bset)
323 return isl_bool_error;
324 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
325 if (m < 0 || !m)
326 return m;
327 return isl_space_tuple_is_equal(bmap->dim, isl_dim_out,
328 bset->dim, isl_dim_set);
331 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap)
333 return bmap ? bmap->ctx : NULL;
336 isl_ctx *isl_basic_set_get_ctx(__isl_keep isl_basic_set *bset)
338 return bset ? bset->ctx : NULL;
341 isl_ctx *isl_map_get_ctx(__isl_keep isl_map *map)
343 return map ? map->ctx : NULL;
346 isl_ctx *isl_set_get_ctx(__isl_keep isl_set *set)
348 return set ? set->ctx : NULL;
351 /* Return the space of "bmap".
353 __isl_keep isl_space *isl_basic_map_peek_space(
354 __isl_keep const isl_basic_map *bmap)
356 return bmap ? bmap->dim : NULL;
359 /* Return the space of "bset".
361 __isl_keep isl_space *isl_basic_set_peek_space(__isl_keep isl_basic_set *bset)
363 return isl_basic_map_peek_space(bset_to_bmap(bset));
366 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap)
368 return isl_space_copy(isl_basic_map_peek_space(bmap));
371 __isl_give isl_space *isl_basic_set_get_space(__isl_keep isl_basic_set *bset)
373 return isl_basic_map_get_space(bset_to_bmap(bset));
376 /* Extract the divs in "bmap" as a matrix.
378 __isl_give isl_mat *isl_basic_map_get_divs(__isl_keep isl_basic_map *bmap)
380 int i;
381 isl_ctx *ctx;
382 isl_mat *div;
383 unsigned total;
384 unsigned cols;
386 if (!bmap)
387 return NULL;
389 ctx = isl_basic_map_get_ctx(bmap);
390 total = isl_space_dim(bmap->dim, isl_dim_all);
391 cols = 1 + 1 + total + bmap->n_div;
392 div = isl_mat_alloc(ctx, bmap->n_div, cols);
393 if (!div)
394 return NULL;
396 for (i = 0; i < bmap->n_div; ++i)
397 isl_seq_cpy(div->row[i], bmap->div[i], cols);
399 return div;
402 /* Extract the divs in "bset" as a matrix.
404 __isl_give isl_mat *isl_basic_set_get_divs(__isl_keep isl_basic_set *bset)
406 return isl_basic_map_get_divs(bset);
409 __isl_give isl_local_space *isl_basic_map_get_local_space(
410 __isl_keep isl_basic_map *bmap)
412 isl_mat *div;
414 if (!bmap)
415 return NULL;
417 div = isl_basic_map_get_divs(bmap);
418 return isl_local_space_alloc_div(isl_space_copy(bmap->dim), div);
421 __isl_give isl_local_space *isl_basic_set_get_local_space(
422 __isl_keep isl_basic_set *bset)
424 return isl_basic_map_get_local_space(bset);
427 /* For each known div d = floor(f/m), add the constraints
429 * f - m d >= 0
430 * -(f-(m-1)) + m d >= 0
432 * Do not finalize the result.
434 static __isl_give isl_basic_map *add_known_div_constraints(
435 __isl_take isl_basic_map *bmap)
437 int i;
438 unsigned n_div;
440 if (!bmap)
441 return NULL;
442 n_div = isl_basic_map_dim(bmap, isl_dim_div);
443 if (n_div == 0)
444 return bmap;
445 bmap = isl_basic_map_cow(bmap);
446 bmap = isl_basic_map_extend_constraints(bmap, 0, 2 * n_div);
447 if (!bmap)
448 return NULL;
449 for (i = 0; i < n_div; ++i) {
450 if (isl_int_is_zero(bmap->div[i][0]))
451 continue;
452 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
453 return isl_basic_map_free(bmap);
456 return bmap;
459 __isl_give isl_basic_map *isl_basic_map_from_local_space(
460 __isl_take isl_local_space *ls)
462 int i;
463 int n_div;
464 isl_basic_map *bmap;
466 if (!ls)
467 return NULL;
469 n_div = isl_local_space_dim(ls, isl_dim_div);
470 bmap = isl_basic_map_alloc_space(isl_local_space_get_space(ls),
471 n_div, 0, 2 * n_div);
473 for (i = 0; i < n_div; ++i)
474 if (isl_basic_map_alloc_div(bmap) < 0)
475 goto error;
477 for (i = 0; i < n_div; ++i)
478 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
479 bmap = add_known_div_constraints(bmap);
481 isl_local_space_free(ls);
482 return bmap;
483 error:
484 isl_local_space_free(ls);
485 isl_basic_map_free(bmap);
486 return NULL;
489 __isl_give isl_basic_set *isl_basic_set_from_local_space(
490 __isl_take isl_local_space *ls)
492 return isl_basic_map_from_local_space(ls);
495 __isl_give isl_space *isl_map_get_space(__isl_keep isl_map *map)
497 return isl_space_copy(isl_map_peek_space(map));
500 __isl_give isl_space *isl_set_get_space(__isl_keep isl_set *set)
502 if (!set)
503 return NULL;
504 return isl_space_copy(set->dim);
507 __isl_give isl_basic_map *isl_basic_map_set_tuple_name(
508 __isl_take isl_basic_map *bmap, enum isl_dim_type type, const char *s)
510 bmap = isl_basic_map_cow(bmap);
511 if (!bmap)
512 return NULL;
513 bmap->dim = isl_space_set_tuple_name(bmap->dim, type, s);
514 if (!bmap->dim)
515 goto error;
516 bmap = isl_basic_map_finalize(bmap);
517 return bmap;
518 error:
519 isl_basic_map_free(bmap);
520 return NULL;
523 __isl_give isl_basic_set *isl_basic_set_set_tuple_name(
524 __isl_take isl_basic_set *bset, const char *s)
526 return isl_basic_map_set_tuple_name(bset, isl_dim_set, s);
529 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map *bmap,
530 enum isl_dim_type type)
532 return bmap ? isl_space_get_tuple_name(bmap->dim, type) : NULL;
535 __isl_give isl_map *isl_map_set_tuple_name(__isl_take isl_map *map,
536 enum isl_dim_type type, const char *s)
538 int i;
540 map = isl_map_cow(map);
541 if (!map)
542 return NULL;
544 map->dim = isl_space_set_tuple_name(map->dim, type, s);
545 if (!map->dim)
546 goto error;
548 for (i = 0; i < map->n; ++i) {
549 map->p[i] = isl_basic_map_set_tuple_name(map->p[i], type, s);
550 if (!map->p[i])
551 goto error;
554 return map;
555 error:
556 isl_map_free(map);
557 return NULL;
560 /* Replace the identifier of the tuple of type "type" by "id".
562 __isl_give isl_basic_map *isl_basic_map_set_tuple_id(
563 __isl_take isl_basic_map *bmap,
564 enum isl_dim_type type, __isl_take isl_id *id)
566 bmap = isl_basic_map_cow(bmap);
567 if (!bmap)
568 goto error;
569 bmap->dim = isl_space_set_tuple_id(bmap->dim, type, id);
570 if (!bmap->dim)
571 return isl_basic_map_free(bmap);
572 bmap = isl_basic_map_finalize(bmap);
573 return bmap;
574 error:
575 isl_id_free(id);
576 return NULL;
579 /* Replace the identifier of the tuple by "id".
581 __isl_give isl_basic_set *isl_basic_set_set_tuple_id(
582 __isl_take isl_basic_set *bset, __isl_take isl_id *id)
584 return isl_basic_map_set_tuple_id(bset, isl_dim_set, id);
587 /* Does the input or output tuple have a name?
589 isl_bool isl_map_has_tuple_name(__isl_keep isl_map *map, enum isl_dim_type type)
591 return map ? isl_space_has_tuple_name(map->dim, type) : isl_bool_error;
594 const char *isl_map_get_tuple_name(__isl_keep isl_map *map,
595 enum isl_dim_type type)
597 return map ? isl_space_get_tuple_name(map->dim, type) : NULL;
600 __isl_give isl_set *isl_set_set_tuple_name(__isl_take isl_set *set,
601 const char *s)
603 return set_from_map(isl_map_set_tuple_name(set_to_map(set),
604 isl_dim_set, s));
607 __isl_give isl_map *isl_map_set_tuple_id(__isl_take isl_map *map,
608 enum isl_dim_type type, __isl_take isl_id *id)
610 map = isl_map_cow(map);
611 if (!map)
612 goto error;
614 map->dim = isl_space_set_tuple_id(map->dim, type, id);
616 return isl_map_reset_space(map, isl_space_copy(map->dim));
617 error:
618 isl_id_free(id);
619 return NULL;
622 __isl_give isl_set *isl_set_set_tuple_id(__isl_take isl_set *set,
623 __isl_take isl_id *id)
625 return isl_map_set_tuple_id(set, isl_dim_set, id);
628 __isl_give isl_map *isl_map_reset_tuple_id(__isl_take isl_map *map,
629 enum isl_dim_type type)
631 map = isl_map_cow(map);
632 if (!map)
633 return NULL;
635 map->dim = isl_space_reset_tuple_id(map->dim, type);
637 return isl_map_reset_space(map, isl_space_copy(map->dim));
640 __isl_give isl_set *isl_set_reset_tuple_id(__isl_take isl_set *set)
642 return isl_map_reset_tuple_id(set, isl_dim_set);
645 isl_bool isl_map_has_tuple_id(__isl_keep isl_map *map, enum isl_dim_type type)
647 return map ? isl_space_has_tuple_id(map->dim, type) : isl_bool_error;
650 __isl_give isl_id *isl_map_get_tuple_id(__isl_keep isl_map *map,
651 enum isl_dim_type type)
653 return map ? isl_space_get_tuple_id(map->dim, type) : NULL;
656 isl_bool isl_set_has_tuple_id(__isl_keep isl_set *set)
658 return isl_map_has_tuple_id(set, isl_dim_set);
661 __isl_give isl_id *isl_set_get_tuple_id(__isl_keep isl_set *set)
663 return isl_map_get_tuple_id(set, isl_dim_set);
666 /* Does the set tuple have a name?
668 isl_bool isl_set_has_tuple_name(__isl_keep isl_set *set)
670 if (!set)
671 return isl_bool_error;
672 return isl_space_has_tuple_name(set->dim, isl_dim_set);
676 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set *bset)
678 return bset ? isl_space_get_tuple_name(bset->dim, isl_dim_set) : NULL;
681 const char *isl_set_get_tuple_name(__isl_keep isl_set *set)
683 return set ? isl_space_get_tuple_name(set->dim, isl_dim_set) : NULL;
686 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map *bmap,
687 enum isl_dim_type type, unsigned pos)
689 return bmap ? isl_space_get_dim_name(bmap->dim, type, pos) : NULL;
692 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set *bset,
693 enum isl_dim_type type, unsigned pos)
695 return bset ? isl_space_get_dim_name(bset->dim, type, pos) : NULL;
698 /* Does the given dimension have a name?
700 isl_bool isl_map_has_dim_name(__isl_keep isl_map *map,
701 enum isl_dim_type type, unsigned pos)
703 if (!map)
704 return isl_bool_error;
705 return isl_space_has_dim_name(map->dim, type, pos);
708 const char *isl_map_get_dim_name(__isl_keep isl_map *map,
709 enum isl_dim_type type, unsigned pos)
711 return map ? isl_space_get_dim_name(map->dim, type, pos) : NULL;
714 const char *isl_set_get_dim_name(__isl_keep isl_set *set,
715 enum isl_dim_type type, unsigned pos)
717 return set ? isl_space_get_dim_name(set->dim, type, pos) : NULL;
720 /* Does the given dimension have a name?
722 isl_bool isl_set_has_dim_name(__isl_keep isl_set *set,
723 enum isl_dim_type type, unsigned pos)
725 if (!set)
726 return isl_bool_error;
727 return isl_space_has_dim_name(set->dim, type, pos);
730 __isl_give isl_basic_map *isl_basic_map_set_dim_name(
731 __isl_take isl_basic_map *bmap,
732 enum isl_dim_type type, unsigned pos, const char *s)
734 bmap = isl_basic_map_cow(bmap);
735 if (!bmap)
736 return NULL;
737 bmap->dim = isl_space_set_dim_name(bmap->dim, type, pos, s);
738 if (!bmap->dim)
739 goto error;
740 return isl_basic_map_finalize(bmap);
741 error:
742 isl_basic_map_free(bmap);
743 return NULL;
746 __isl_give isl_map *isl_map_set_dim_name(__isl_take isl_map *map,
747 enum isl_dim_type type, unsigned pos, const char *s)
749 int i;
751 map = isl_map_cow(map);
752 if (!map)
753 return NULL;
755 map->dim = isl_space_set_dim_name(map->dim, type, pos, s);
756 if (!map->dim)
757 goto error;
759 for (i = 0; i < map->n; ++i) {
760 map->p[i] = isl_basic_map_set_dim_name(map->p[i], type, pos, s);
761 if (!map->p[i])
762 goto error;
765 return map;
766 error:
767 isl_map_free(map);
768 return NULL;
771 __isl_give isl_basic_set *isl_basic_set_set_dim_name(
772 __isl_take isl_basic_set *bset,
773 enum isl_dim_type type, unsigned pos, const char *s)
775 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset),
776 type, pos, s));
779 __isl_give isl_set *isl_set_set_dim_name(__isl_take isl_set *set,
780 enum isl_dim_type type, unsigned pos, const char *s)
782 return set_from_map(isl_map_set_dim_name(set_to_map(set),
783 type, pos, s));
786 isl_bool isl_basic_map_has_dim_id(__isl_keep isl_basic_map *bmap,
787 enum isl_dim_type type, unsigned pos)
789 if (!bmap)
790 return isl_bool_error;
791 return isl_space_has_dim_id(bmap->dim, type, pos);
794 __isl_give isl_id *isl_basic_set_get_dim_id(__isl_keep isl_basic_set *bset,
795 enum isl_dim_type type, unsigned pos)
797 return bset ? isl_space_get_dim_id(bset->dim, type, pos) : NULL;
800 isl_bool isl_map_has_dim_id(__isl_keep isl_map *map,
801 enum isl_dim_type type, unsigned pos)
803 return map ? isl_space_has_dim_id(map->dim, type, pos) : isl_bool_error;
806 __isl_give isl_id *isl_map_get_dim_id(__isl_keep isl_map *map,
807 enum isl_dim_type type, unsigned pos)
809 return map ? isl_space_get_dim_id(map->dim, type, pos) : NULL;
812 isl_bool isl_set_has_dim_id(__isl_keep isl_set *set,
813 enum isl_dim_type type, unsigned pos)
815 return isl_map_has_dim_id(set, type, pos);
818 __isl_give isl_id *isl_set_get_dim_id(__isl_keep isl_set *set,
819 enum isl_dim_type type, unsigned pos)
821 return isl_map_get_dim_id(set, type, pos);
824 __isl_give isl_map *isl_map_set_dim_id(__isl_take isl_map *map,
825 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
827 map = isl_map_cow(map);
828 if (!map)
829 goto error;
831 map->dim = isl_space_set_dim_id(map->dim, type, pos, id);
833 return isl_map_reset_space(map, isl_space_copy(map->dim));
834 error:
835 isl_id_free(id);
836 return NULL;
839 __isl_give isl_set *isl_set_set_dim_id(__isl_take isl_set *set,
840 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
842 return isl_map_set_dim_id(set, type, pos, id);
845 int isl_map_find_dim_by_id(__isl_keep isl_map *map, enum isl_dim_type type,
846 __isl_keep isl_id *id)
848 if (!map)
849 return -1;
850 return isl_space_find_dim_by_id(map->dim, type, id);
853 int isl_set_find_dim_by_id(__isl_keep isl_set *set, enum isl_dim_type type,
854 __isl_keep isl_id *id)
856 return isl_map_find_dim_by_id(set, type, id);
859 /* Return the position of the dimension of the given type and name
860 * in "bmap".
861 * Return -1 if no such dimension can be found.
863 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map *bmap,
864 enum isl_dim_type type, const char *name)
866 if (!bmap)
867 return -1;
868 return isl_space_find_dim_by_name(bmap->dim, type, name);
871 int isl_map_find_dim_by_name(__isl_keep isl_map *map, enum isl_dim_type type,
872 const char *name)
874 if (!map)
875 return -1;
876 return isl_space_find_dim_by_name(map->dim, type, name);
879 int isl_set_find_dim_by_name(__isl_keep isl_set *set, enum isl_dim_type type,
880 const char *name)
882 return isl_map_find_dim_by_name(set, type, name);
885 /* Check whether equality i of bset is a pure stride constraint
886 * on a single dimension, i.e., of the form
888 * v = k e
890 * with k a constant and e an existentially quantified variable.
892 isl_bool isl_basic_set_eq_is_stride(__isl_keep isl_basic_set *bset, int i)
894 unsigned nparam;
895 unsigned d;
896 unsigned n_div;
897 int pos1;
898 int pos2;
900 if (!bset)
901 return isl_bool_error;
903 if (!isl_int_is_zero(bset->eq[i][0]))
904 return isl_bool_false;
906 nparam = isl_basic_set_dim(bset, isl_dim_param);
907 d = isl_basic_set_dim(bset, isl_dim_set);
908 n_div = isl_basic_set_dim(bset, isl_dim_div);
910 if (isl_seq_first_non_zero(bset->eq[i] + 1, nparam) != -1)
911 return isl_bool_false;
912 pos1 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam, d);
913 if (pos1 == -1)
914 return isl_bool_false;
915 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + pos1 + 1,
916 d - pos1 - 1) != -1)
917 return isl_bool_false;
919 pos2 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d, n_div);
920 if (pos2 == -1)
921 return isl_bool_false;
922 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d + pos2 + 1,
923 n_div - pos2 - 1) != -1)
924 return isl_bool_false;
925 if (!isl_int_is_one(bset->eq[i][1 + nparam + pos1]) &&
926 !isl_int_is_negone(bset->eq[i][1 + nparam + pos1]))
927 return isl_bool_false;
929 return isl_bool_true;
932 /* Reset the user pointer on all identifiers of parameters and tuples
933 * of the space of "map".
935 __isl_give isl_map *isl_map_reset_user(__isl_take isl_map *map)
937 isl_space *space;
939 space = isl_map_get_space(map);
940 space = isl_space_reset_user(space);
941 map = isl_map_reset_space(map, space);
943 return map;
946 /* Reset the user pointer on all identifiers of parameters and tuples
947 * of the space of "set".
949 __isl_give isl_set *isl_set_reset_user(__isl_take isl_set *set)
951 return isl_map_reset_user(set);
954 isl_bool isl_basic_map_is_rational(__isl_keep isl_basic_map *bmap)
956 if (!bmap)
957 return isl_bool_error;
958 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
961 /* Has "map" been marked as a rational map?
962 * In particular, have all basic maps in "map" been marked this way?
963 * An empty map is not considered to be rational.
964 * Maps where only some of the basic maps are marked rational
965 * are not allowed.
967 isl_bool isl_map_is_rational(__isl_keep isl_map *map)
969 int i;
970 isl_bool rational;
972 if (!map)
973 return isl_bool_error;
974 if (map->n == 0)
975 return isl_bool_false;
976 rational = isl_basic_map_is_rational(map->p[0]);
977 if (rational < 0)
978 return rational;
979 for (i = 1; i < map->n; ++i) {
980 isl_bool rational_i;
982 rational_i = isl_basic_map_is_rational(map->p[i]);
983 if (rational_i < 0)
984 return rational_i;
985 if (rational != rational_i)
986 isl_die(isl_map_get_ctx(map), isl_error_unsupported,
987 "mixed rational and integer basic maps "
988 "not supported", return isl_bool_error);
991 return rational;
994 /* Has "set" been marked as a rational set?
995 * In particular, have all basic set in "set" been marked this way?
996 * An empty set is not considered to be rational.
997 * Sets where only some of the basic sets are marked rational
998 * are not allowed.
1000 isl_bool isl_set_is_rational(__isl_keep isl_set *set)
1002 return isl_map_is_rational(set);
1005 int isl_basic_set_is_rational(__isl_keep isl_basic_set *bset)
1007 return isl_basic_map_is_rational(bset);
1010 /* Does "bmap" contain any rational points?
1012 * If "bmap" has an equality for each dimension, equating the dimension
1013 * to an integer constant, then it has no rational points, even if it
1014 * is marked as rational.
1016 isl_bool isl_basic_map_has_rational(__isl_keep isl_basic_map *bmap)
1018 isl_bool has_rational = isl_bool_true;
1019 unsigned total;
1021 if (!bmap)
1022 return isl_bool_error;
1023 if (isl_basic_map_plain_is_empty(bmap))
1024 return isl_bool_false;
1025 if (!isl_basic_map_is_rational(bmap))
1026 return isl_bool_false;
1027 bmap = isl_basic_map_copy(bmap);
1028 bmap = isl_basic_map_implicit_equalities(bmap);
1029 if (!bmap)
1030 return isl_bool_error;
1031 total = isl_basic_map_total_dim(bmap);
1032 if (bmap->n_eq == total) {
1033 int i, j;
1034 for (i = 0; i < bmap->n_eq; ++i) {
1035 j = isl_seq_first_non_zero(bmap->eq[i] + 1, total);
1036 if (j < 0)
1037 break;
1038 if (!isl_int_is_one(bmap->eq[i][1 + j]) &&
1039 !isl_int_is_negone(bmap->eq[i][1 + j]))
1040 break;
1041 j = isl_seq_first_non_zero(bmap->eq[i] + 1 + j + 1,
1042 total - j - 1);
1043 if (j >= 0)
1044 break;
1046 if (i == bmap->n_eq)
1047 has_rational = isl_bool_false;
1049 isl_basic_map_free(bmap);
1051 return has_rational;
1054 /* Does "map" contain any rational points?
1056 isl_bool isl_map_has_rational(__isl_keep isl_map *map)
1058 int i;
1059 isl_bool has_rational;
1061 if (!map)
1062 return isl_bool_error;
1063 for (i = 0; i < map->n; ++i) {
1064 has_rational = isl_basic_map_has_rational(map->p[i]);
1065 if (has_rational < 0 || has_rational)
1066 return has_rational;
1068 return isl_bool_false;
1071 /* Does "set" contain any rational points?
1073 isl_bool isl_set_has_rational(__isl_keep isl_set *set)
1075 return isl_map_has_rational(set);
1078 /* Is this basic set a parameter domain?
1080 isl_bool isl_basic_set_is_params(__isl_keep isl_basic_set *bset)
1082 if (!bset)
1083 return isl_bool_error;
1084 return isl_space_is_params(bset->dim);
1087 /* Is this set a parameter domain?
1089 isl_bool isl_set_is_params(__isl_keep isl_set *set)
1091 if (!set)
1092 return isl_bool_error;
1093 return isl_space_is_params(set->dim);
1096 /* Is this map actually a parameter domain?
1097 * Users should never call this function. Outside of isl,
1098 * a map can never be a parameter domain.
1100 isl_bool isl_map_is_params(__isl_keep isl_map *map)
1102 if (!map)
1103 return isl_bool_error;
1104 return isl_space_is_params(map->dim);
1107 static struct isl_basic_map *basic_map_init(struct isl_ctx *ctx,
1108 struct isl_basic_map *bmap, unsigned extra,
1109 unsigned n_eq, unsigned n_ineq)
1111 int i;
1112 size_t row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + extra;
1114 bmap->ctx = ctx;
1115 isl_ctx_ref(ctx);
1117 bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
1118 if (isl_blk_is_error(bmap->block))
1119 goto error;
1121 bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
1122 if ((n_ineq + n_eq) && !bmap->ineq)
1123 goto error;
1125 if (extra == 0) {
1126 bmap->block2 = isl_blk_empty();
1127 bmap->div = NULL;
1128 } else {
1129 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
1130 if (isl_blk_is_error(bmap->block2))
1131 goto error;
1133 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
1134 if (!bmap->div)
1135 goto error;
1138 for (i = 0; i < n_ineq + n_eq; ++i)
1139 bmap->ineq[i] = bmap->block.data + i * row_size;
1141 for (i = 0; i < extra; ++i)
1142 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
1144 bmap->ref = 1;
1145 bmap->flags = 0;
1146 bmap->c_size = n_eq + n_ineq;
1147 bmap->eq = bmap->ineq + n_ineq;
1148 bmap->extra = extra;
1149 bmap->n_eq = 0;
1150 bmap->n_ineq = 0;
1151 bmap->n_div = 0;
1152 bmap->sample = NULL;
1154 return bmap;
1155 error:
1156 isl_basic_map_free(bmap);
1157 return NULL;
1160 struct isl_basic_set *isl_basic_set_alloc(struct isl_ctx *ctx,
1161 unsigned nparam, unsigned dim, unsigned extra,
1162 unsigned n_eq, unsigned n_ineq)
1164 struct isl_basic_map *bmap;
1165 isl_space *space;
1167 space = isl_space_set_alloc(ctx, nparam, dim);
1168 if (!space)
1169 return NULL;
1171 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1172 return bset_from_bmap(bmap);
1175 __isl_give isl_basic_set *isl_basic_set_alloc_space(__isl_take isl_space *dim,
1176 unsigned extra, unsigned n_eq, unsigned n_ineq)
1178 struct isl_basic_map *bmap;
1179 if (!dim)
1180 return NULL;
1181 isl_assert(dim->ctx, dim->n_in == 0, goto error);
1182 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1183 return bset_from_bmap(bmap);
1184 error:
1185 isl_space_free(dim);
1186 return NULL;
1189 struct isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *dim,
1190 unsigned extra, unsigned n_eq, unsigned n_ineq)
1192 struct isl_basic_map *bmap;
1194 if (!dim)
1195 return NULL;
1196 bmap = isl_calloc_type(dim->ctx, struct isl_basic_map);
1197 if (!bmap)
1198 goto error;
1199 bmap->dim = dim;
1201 return basic_map_init(dim->ctx, bmap, extra, n_eq, n_ineq);
1202 error:
1203 isl_space_free(dim);
1204 return NULL;
1207 struct isl_basic_map *isl_basic_map_alloc(struct isl_ctx *ctx,
1208 unsigned nparam, unsigned in, unsigned out, unsigned extra,
1209 unsigned n_eq, unsigned n_ineq)
1211 struct isl_basic_map *bmap;
1212 isl_space *dim;
1214 dim = isl_space_alloc(ctx, nparam, in, out);
1215 if (!dim)
1216 return NULL;
1218 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1219 return bmap;
1222 static void dup_constraints(
1223 struct isl_basic_map *dst, struct isl_basic_map *src)
1225 int i;
1226 unsigned total = isl_basic_map_total_dim(src);
1228 for (i = 0; i < src->n_eq; ++i) {
1229 int j = isl_basic_map_alloc_equality(dst);
1230 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
1233 for (i = 0; i < src->n_ineq; ++i) {
1234 int j = isl_basic_map_alloc_inequality(dst);
1235 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
1238 for (i = 0; i < src->n_div; ++i) {
1239 int j = isl_basic_map_alloc_div(dst);
1240 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
1242 ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
1245 __isl_give isl_basic_map *isl_basic_map_dup(__isl_keep isl_basic_map *bmap)
1247 struct isl_basic_map *dup;
1249 if (!bmap)
1250 return NULL;
1251 dup = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
1252 bmap->n_div, bmap->n_eq, bmap->n_ineq);
1253 if (!dup)
1254 return NULL;
1255 dup_constraints(dup, bmap);
1256 dup->flags = bmap->flags;
1257 dup->sample = isl_vec_copy(bmap->sample);
1258 return dup;
1261 struct isl_basic_set *isl_basic_set_dup(struct isl_basic_set *bset)
1263 struct isl_basic_map *dup;
1265 dup = isl_basic_map_dup(bset_to_bmap(bset));
1266 return bset_from_bmap(dup);
1269 __isl_give isl_basic_set *isl_basic_set_copy(__isl_keep isl_basic_set *bset)
1271 if (!bset)
1272 return NULL;
1274 if (ISL_F_ISSET(bset, ISL_BASIC_SET_FINAL)) {
1275 bset->ref++;
1276 return bset;
1278 return isl_basic_set_dup(bset);
1281 __isl_give isl_set *isl_set_copy(__isl_keep isl_set *set)
1283 if (!set)
1284 return NULL;
1286 set->ref++;
1287 return set;
1290 __isl_give isl_basic_map *isl_basic_map_copy(__isl_keep isl_basic_map *bmap)
1292 if (!bmap)
1293 return NULL;
1295 if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
1296 bmap->ref++;
1297 return bmap;
1299 bmap = isl_basic_map_dup(bmap);
1300 if (bmap)
1301 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1302 return bmap;
1305 __isl_give isl_map *isl_map_copy(__isl_keep isl_map *map)
1307 if (!map)
1308 return NULL;
1310 map->ref++;
1311 return map;
1314 __isl_null isl_basic_map *isl_basic_map_free(__isl_take isl_basic_map *bmap)
1316 if (!bmap)
1317 return NULL;
1319 if (--bmap->ref > 0)
1320 return NULL;
1322 isl_ctx_deref(bmap->ctx);
1323 free(bmap->div);
1324 isl_blk_free(bmap->ctx, bmap->block2);
1325 free(bmap->ineq);
1326 isl_blk_free(bmap->ctx, bmap->block);
1327 isl_vec_free(bmap->sample);
1328 isl_space_free(bmap->dim);
1329 free(bmap);
1331 return NULL;
1334 __isl_null isl_basic_set *isl_basic_set_free(__isl_take isl_basic_set *bset)
1336 return isl_basic_map_free(bset_to_bmap(bset));
1339 static int room_for_con(struct isl_basic_map *bmap, unsigned n)
1341 return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
1344 /* Check that "map" has only named parameters, reporting an error
1345 * if it does not.
1347 isl_stat isl_map_check_named_params(__isl_keep isl_map *map)
1349 return isl_space_check_named_params(isl_map_peek_space(map));
1352 /* Check that "bmap" has only named parameters, reporting an error
1353 * if it does not.
1355 static isl_stat isl_basic_map_check_named_params(__isl_keep isl_basic_map *bmap)
1357 return isl_space_check_named_params(isl_basic_map_peek_space(bmap));
1360 /* Check that "bmap1" and "bmap2" have the same parameters,
1361 * reporting an error if they do not.
1363 static isl_stat isl_basic_map_check_equal_params(
1364 __isl_keep isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
1366 isl_bool match;
1368 match = isl_basic_map_has_equal_params(bmap1, bmap2);
1369 if (match < 0)
1370 return isl_stat_error;
1371 if (!match)
1372 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
1373 "parameters don't match", return isl_stat_error);
1374 return isl_stat_ok;
1377 __isl_give isl_map *isl_map_align_params_map_map_and(
1378 __isl_take isl_map *map1, __isl_take isl_map *map2,
1379 __isl_give isl_map *(*fn)(__isl_take isl_map *map1,
1380 __isl_take isl_map *map2))
1382 if (!map1 || !map2)
1383 goto error;
1384 if (isl_map_has_equal_params(map1, map2))
1385 return fn(map1, map2);
1386 if (isl_map_check_named_params(map1) < 0)
1387 goto error;
1388 if (isl_map_check_named_params(map2) < 0)
1389 goto error;
1390 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1391 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1392 return fn(map1, map2);
1393 error:
1394 isl_map_free(map1);
1395 isl_map_free(map2);
1396 return NULL;
1399 isl_bool isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
1400 __isl_keep isl_map *map2,
1401 isl_bool (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
1403 isl_bool r;
1405 if (!map1 || !map2)
1406 return isl_bool_error;
1407 if (isl_map_has_equal_params(map1, map2))
1408 return fn(map1, map2);
1409 if (isl_map_check_named_params(map1) < 0)
1410 return isl_bool_error;
1411 if (isl_map_check_named_params(map2) < 0)
1412 return isl_bool_error;
1413 map1 = isl_map_copy(map1);
1414 map2 = isl_map_copy(map2);
1415 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1416 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1417 r = fn(map1, map2);
1418 isl_map_free(map1);
1419 isl_map_free(map2);
1420 return r;
1423 int isl_basic_map_alloc_equality(struct isl_basic_map *bmap)
1425 struct isl_ctx *ctx;
1426 if (!bmap)
1427 return -1;
1428 ctx = bmap->ctx;
1429 isl_assert(ctx, room_for_con(bmap, 1), return -1);
1430 isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
1431 return -1);
1432 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1433 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1434 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1435 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1436 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1437 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1438 isl_int *t;
1439 int j = isl_basic_map_alloc_inequality(bmap);
1440 if (j < 0)
1441 return -1;
1442 t = bmap->ineq[j];
1443 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1444 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1445 bmap->eq[-1] = t;
1446 bmap->n_eq++;
1447 bmap->n_ineq--;
1448 bmap->eq--;
1449 return 0;
1451 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
1452 bmap->extra - bmap->n_div);
1453 return bmap->n_eq++;
1456 int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
1458 return isl_basic_map_alloc_equality(bset_to_bmap(bset));
1461 int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
1463 if (!bmap)
1464 return -1;
1465 isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
1466 bmap->n_eq -= n;
1467 return 0;
1470 int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
1472 return isl_basic_map_free_equality(bset_to_bmap(bset), n);
1475 int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
1477 isl_int *t;
1478 if (!bmap)
1479 return -1;
1480 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1482 if (pos != bmap->n_eq - 1) {
1483 t = bmap->eq[pos];
1484 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
1485 bmap->eq[bmap->n_eq - 1] = t;
1487 bmap->n_eq--;
1488 return 0;
1491 /* Turn inequality "pos" of "bmap" into an equality.
1493 * In particular, we move the inequality in front of the equalities
1494 * and move the last inequality in the position of the moved inequality.
1495 * Note that isl_tab_make_equalities_explicit depends on this particular
1496 * change in the ordering of the constraints.
1498 void isl_basic_map_inequality_to_equality(
1499 struct isl_basic_map *bmap, unsigned pos)
1501 isl_int *t;
1503 t = bmap->ineq[pos];
1504 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1505 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1506 bmap->eq[-1] = t;
1507 bmap->n_eq++;
1508 bmap->n_ineq--;
1509 bmap->eq--;
1510 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1511 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1512 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1513 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1516 static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
1518 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1521 int isl_basic_map_alloc_inequality(__isl_keep isl_basic_map *bmap)
1523 struct isl_ctx *ctx;
1524 if (!bmap)
1525 return -1;
1526 ctx = bmap->ctx;
1527 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1528 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1529 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1530 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1531 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1532 isl_seq_clr(bmap->ineq[bmap->n_ineq] +
1533 1 + isl_basic_map_total_dim(bmap),
1534 bmap->extra - bmap->n_div);
1535 return bmap->n_ineq++;
1538 int isl_basic_set_alloc_inequality(__isl_keep isl_basic_set *bset)
1540 return isl_basic_map_alloc_inequality(bset_to_bmap(bset));
1543 int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
1545 if (!bmap)
1546 return -1;
1547 isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
1548 bmap->n_ineq -= n;
1549 return 0;
1552 int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
1554 return isl_basic_map_free_inequality(bset_to_bmap(bset), n);
1557 int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
1559 isl_int *t;
1560 if (!bmap)
1561 return -1;
1562 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1564 if (pos != bmap->n_ineq - 1) {
1565 t = bmap->ineq[pos];
1566 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1567 bmap->ineq[bmap->n_ineq - 1] = t;
1568 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1570 bmap->n_ineq--;
1571 return 0;
1574 int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
1576 return isl_basic_map_drop_inequality(bset_to_bmap(bset), pos);
1579 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1580 isl_int *eq)
1582 int k;
1584 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1585 if (!bmap)
1586 return NULL;
1587 k = isl_basic_map_alloc_equality(bmap);
1588 if (k < 0)
1589 goto error;
1590 isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
1591 return bmap;
1592 error:
1593 isl_basic_map_free(bmap);
1594 return NULL;
1597 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1598 isl_int *eq)
1600 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset), eq));
1603 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1604 isl_int *ineq)
1606 int k;
1608 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1609 if (!bmap)
1610 return NULL;
1611 k = isl_basic_map_alloc_inequality(bmap);
1612 if (k < 0)
1613 goto error;
1614 isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
1615 return bmap;
1616 error:
1617 isl_basic_map_free(bmap);
1618 return NULL;
1621 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1622 isl_int *ineq)
1624 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset), ineq));
1627 int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
1629 if (!bmap)
1630 return -1;
1631 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1632 isl_seq_clr(bmap->div[bmap->n_div] +
1633 1 + 1 + isl_basic_map_total_dim(bmap),
1634 bmap->extra - bmap->n_div);
1635 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1636 return bmap->n_div++;
1639 int isl_basic_set_alloc_div(struct isl_basic_set *bset)
1641 return isl_basic_map_alloc_div(bset_to_bmap(bset));
1644 /* Check that there are "n" dimensions of type "type" starting at "first"
1645 * in "bmap".
1647 static isl_stat isl_basic_map_check_range(__isl_keep isl_basic_map *bmap,
1648 enum isl_dim_type type, unsigned first, unsigned n)
1650 unsigned dim;
1652 if (!bmap)
1653 return isl_stat_error;
1654 dim = isl_basic_map_dim(bmap, type);
1655 if (first + n > dim || first + n < first)
1656 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1657 "position or range out of bounds",
1658 return isl_stat_error);
1659 return isl_stat_ok;
1662 /* Insert an extra integer division, prescribed by "div", to "bmap"
1663 * at (integer division) position "pos".
1665 * The integer division is first added at the end and then moved
1666 * into the right position.
1668 __isl_give isl_basic_map *isl_basic_map_insert_div(
1669 __isl_take isl_basic_map *bmap, int pos, __isl_keep isl_vec *div)
1671 int i, k;
1673 bmap = isl_basic_map_cow(bmap);
1674 if (!bmap || !div)
1675 return isl_basic_map_free(bmap);
1677 if (div->size != 1 + 1 + isl_basic_map_dim(bmap, isl_dim_all))
1678 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1679 "unexpected size", return isl_basic_map_free(bmap));
1680 if (isl_basic_map_check_range(bmap, isl_dim_div, pos, 0) < 0)
1681 return isl_basic_map_free(bmap);
1683 bmap = isl_basic_map_extend_space(bmap,
1684 isl_basic_map_get_space(bmap), 1, 0, 2);
1685 k = isl_basic_map_alloc_div(bmap);
1686 if (k < 0)
1687 return isl_basic_map_free(bmap);
1688 isl_seq_cpy(bmap->div[k], div->el, div->size);
1689 isl_int_set_si(bmap->div[k][div->size], 0);
1691 for (i = k; i > pos; --i)
1692 isl_basic_map_swap_div(bmap, i, i - 1);
1694 return bmap;
1697 isl_stat isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
1699 if (!bmap)
1700 return isl_stat_error;
1701 isl_assert(bmap->ctx, n <= bmap->n_div, return isl_stat_error);
1702 bmap->n_div -= n;
1703 return isl_stat_ok;
1706 /* Copy constraint from src to dst, putting the vars of src at offset
1707 * dim_off in dst and the divs of src at offset div_off in dst.
1708 * If both sets are actually map, then dim_off applies to the input
1709 * variables.
1711 static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
1712 struct isl_basic_map *src_map, isl_int *src,
1713 unsigned in_off, unsigned out_off, unsigned div_off)
1715 unsigned src_nparam = isl_basic_map_dim(src_map, isl_dim_param);
1716 unsigned dst_nparam = isl_basic_map_dim(dst_map, isl_dim_param);
1717 unsigned src_in = isl_basic_map_dim(src_map, isl_dim_in);
1718 unsigned dst_in = isl_basic_map_dim(dst_map, isl_dim_in);
1719 unsigned src_out = isl_basic_map_dim(src_map, isl_dim_out);
1720 unsigned dst_out = isl_basic_map_dim(dst_map, isl_dim_out);
1721 isl_int_set(dst[0], src[0]);
1722 isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
1723 if (dst_nparam > src_nparam)
1724 isl_seq_clr(dst+1+src_nparam,
1725 dst_nparam - src_nparam);
1726 isl_seq_clr(dst+1+dst_nparam, in_off);
1727 isl_seq_cpy(dst+1+dst_nparam+in_off,
1728 src+1+src_nparam,
1729 isl_min(dst_in-in_off, src_in));
1730 if (dst_in-in_off > src_in)
1731 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
1732 dst_in - in_off - src_in);
1733 isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
1734 isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
1735 src+1+src_nparam+src_in,
1736 isl_min(dst_out-out_off, src_out));
1737 if (dst_out-out_off > src_out)
1738 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
1739 dst_out - out_off - src_out);
1740 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
1741 isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
1742 src+1+src_nparam+src_in+src_out,
1743 isl_min(dst_map->extra-div_off, src_map->n_div));
1744 if (dst_map->n_div-div_off > src_map->n_div)
1745 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
1746 div_off+src_map->n_div,
1747 dst_map->n_div - div_off - src_map->n_div);
1750 static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
1751 struct isl_basic_map *src_map, isl_int *src,
1752 unsigned in_off, unsigned out_off, unsigned div_off)
1754 isl_int_set(dst[0], src[0]);
1755 copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
1758 static __isl_give isl_basic_map *add_constraints(
1759 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2,
1760 unsigned i_pos, unsigned o_pos)
1762 int i;
1763 unsigned div_off;
1765 if (!bmap1 || !bmap2)
1766 goto error;
1768 div_off = bmap1->n_div;
1770 for (i = 0; i < bmap2->n_eq; ++i) {
1771 int i1 = isl_basic_map_alloc_equality(bmap1);
1772 if (i1 < 0)
1773 goto error;
1774 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
1775 i_pos, o_pos, div_off);
1778 for (i = 0; i < bmap2->n_ineq; ++i) {
1779 int i1 = isl_basic_map_alloc_inequality(bmap1);
1780 if (i1 < 0)
1781 goto error;
1782 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
1783 i_pos, o_pos, div_off);
1786 for (i = 0; i < bmap2->n_div; ++i) {
1787 int i1 = isl_basic_map_alloc_div(bmap1);
1788 if (i1 < 0)
1789 goto error;
1790 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
1791 i_pos, o_pos, div_off);
1794 isl_basic_map_free(bmap2);
1796 return bmap1;
1798 error:
1799 isl_basic_map_free(bmap1);
1800 isl_basic_map_free(bmap2);
1801 return NULL;
1804 struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
1805 struct isl_basic_set *bset2, unsigned pos)
1807 return bset_from_bmap(add_constraints(bset_to_bmap(bset1),
1808 bset_to_bmap(bset2), 0, pos));
1811 __isl_give isl_basic_map *isl_basic_map_extend_space(
1812 __isl_take isl_basic_map *base, __isl_take isl_space *dim,
1813 unsigned extra, unsigned n_eq, unsigned n_ineq)
1815 struct isl_basic_map *ext;
1816 unsigned flags;
1817 int dims_ok;
1819 if (!dim)
1820 goto error;
1822 if (!base)
1823 goto error;
1825 dims_ok = isl_space_is_equal(base->dim, dim) &&
1826 base->extra >= base->n_div + extra;
1828 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1829 room_for_ineq(base, n_ineq)) {
1830 isl_space_free(dim);
1831 return base;
1834 isl_assert(base->ctx, base->dim->nparam <= dim->nparam, goto error);
1835 isl_assert(base->ctx, base->dim->n_in <= dim->n_in, goto error);
1836 isl_assert(base->ctx, base->dim->n_out <= dim->n_out, goto error);
1837 extra += base->extra;
1838 n_eq += base->n_eq;
1839 n_ineq += base->n_ineq;
1841 ext = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1842 dim = NULL;
1843 if (!ext)
1844 goto error;
1846 if (dims_ok)
1847 ext->sample = isl_vec_copy(base->sample);
1848 flags = base->flags;
1849 ext = add_constraints(ext, base, 0, 0);
1850 if (ext) {
1851 ext->flags = flags;
1852 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
1855 return ext;
1857 error:
1858 isl_space_free(dim);
1859 isl_basic_map_free(base);
1860 return NULL;
1863 __isl_give isl_basic_set *isl_basic_set_extend_space(
1864 __isl_take isl_basic_set *base,
1865 __isl_take isl_space *dim, unsigned extra,
1866 unsigned n_eq, unsigned n_ineq)
1868 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base),
1869 dim, extra, n_eq, n_ineq));
1872 struct isl_basic_map *isl_basic_map_extend_constraints(
1873 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
1875 if (!base)
1876 return NULL;
1877 return isl_basic_map_extend_space(base, isl_space_copy(base->dim),
1878 0, n_eq, n_ineq);
1881 struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
1882 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
1883 unsigned n_eq, unsigned n_ineq)
1885 struct isl_basic_map *bmap;
1886 isl_space *dim;
1888 if (!base)
1889 return NULL;
1890 dim = isl_space_alloc(base->ctx, nparam, n_in, n_out);
1891 if (!dim)
1892 goto error;
1894 bmap = isl_basic_map_extend_space(base, dim, extra, n_eq, n_ineq);
1895 return bmap;
1896 error:
1897 isl_basic_map_free(base);
1898 return NULL;
1901 struct isl_basic_set *isl_basic_set_extend(struct isl_basic_set *base,
1902 unsigned nparam, unsigned dim, unsigned extra,
1903 unsigned n_eq, unsigned n_ineq)
1905 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base),
1906 nparam, 0, dim, extra, n_eq, n_ineq));
1909 struct isl_basic_set *isl_basic_set_extend_constraints(
1910 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1912 isl_basic_map *bmap = bset_to_bmap(base);
1913 bmap = isl_basic_map_extend_constraints(bmap, n_eq, n_ineq);
1914 return bset_from_bmap(bmap);
1917 __isl_give isl_basic_set *isl_basic_set_cow(__isl_take isl_basic_set *bset)
1919 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset)));
1922 __isl_give isl_basic_map *isl_basic_map_cow(__isl_take isl_basic_map *bmap)
1924 if (!bmap)
1925 return NULL;
1927 if (bmap->ref > 1) {
1928 bmap->ref--;
1929 bmap = isl_basic_map_dup(bmap);
1931 if (bmap) {
1932 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
1933 ISL_F_CLR(bmap, ISL_BASIC_MAP_REDUCED_COEFFICIENTS);
1935 return bmap;
1938 /* Clear all cached information in "map", either because it is about
1939 * to be modified or because it is being freed.
1940 * Always return the same pointer that is passed in.
1941 * This is needed for the use in isl_map_free.
1943 static __isl_give isl_map *clear_caches(__isl_take isl_map *map)
1945 isl_basic_map_free(map->cached_simple_hull[0]);
1946 isl_basic_map_free(map->cached_simple_hull[1]);
1947 map->cached_simple_hull[0] = NULL;
1948 map->cached_simple_hull[1] = NULL;
1949 return map;
1952 __isl_give isl_set *isl_set_cow(__isl_take isl_set *set)
1954 return isl_map_cow(set);
1957 /* Return an isl_map that is equal to "map" and that has only
1958 * a single reference.
1960 * If the original input already has only one reference, then
1961 * simply return it, but clear all cached information, since
1962 * it may be rendered invalid by the operations that will be
1963 * performed on the result.
1965 * Otherwise, create a duplicate (without any cached information).
1967 __isl_give isl_map *isl_map_cow(__isl_take isl_map *map)
1969 if (!map)
1970 return NULL;
1972 if (map->ref == 1)
1973 return clear_caches(map);
1974 map->ref--;
1975 return isl_map_dup(map);
1978 static void swap_vars(struct isl_blk blk, isl_int *a,
1979 unsigned a_len, unsigned b_len)
1981 isl_seq_cpy(blk.data, a+a_len, b_len);
1982 isl_seq_cpy(blk.data+b_len, a, a_len);
1983 isl_seq_cpy(a, blk.data, b_len+a_len);
1986 static __isl_give isl_basic_map *isl_basic_map_swap_vars(
1987 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
1989 int i;
1990 struct isl_blk blk;
1992 if (!bmap)
1993 goto error;
1995 isl_assert(bmap->ctx,
1996 pos + n1 + n2 <= 1 + isl_basic_map_total_dim(bmap), goto error);
1998 if (n1 == 0 || n2 == 0)
1999 return bmap;
2001 bmap = isl_basic_map_cow(bmap);
2002 if (!bmap)
2003 return NULL;
2005 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
2006 if (isl_blk_is_error(blk))
2007 goto error;
2009 for (i = 0; i < bmap->n_eq; ++i)
2010 swap_vars(blk,
2011 bmap->eq[i] + pos, n1, n2);
2013 for (i = 0; i < bmap->n_ineq; ++i)
2014 swap_vars(blk,
2015 bmap->ineq[i] + pos, n1, n2);
2017 for (i = 0; i < bmap->n_div; ++i)
2018 swap_vars(blk,
2019 bmap->div[i]+1 + pos, n1, n2);
2021 isl_blk_free(bmap->ctx, blk);
2023 ISL_F_CLR(bmap, ISL_BASIC_SET_NORMALIZED);
2024 bmap = isl_basic_map_gauss(bmap, NULL);
2025 return isl_basic_map_finalize(bmap);
2026 error:
2027 isl_basic_map_free(bmap);
2028 return NULL;
2031 __isl_give isl_basic_map *isl_basic_map_set_to_empty(
2032 __isl_take isl_basic_map *bmap)
2034 int i = 0;
2035 unsigned total;
2036 if (!bmap)
2037 goto error;
2038 total = isl_basic_map_total_dim(bmap);
2039 if (isl_basic_map_free_div(bmap, bmap->n_div) < 0)
2040 return isl_basic_map_free(bmap);
2041 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
2042 if (bmap->n_eq > 0)
2043 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
2044 else {
2045 i = isl_basic_map_alloc_equality(bmap);
2046 if (i < 0)
2047 goto error;
2049 isl_int_set_si(bmap->eq[i][0], 1);
2050 isl_seq_clr(bmap->eq[i]+1, total);
2051 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
2052 isl_vec_free(bmap->sample);
2053 bmap->sample = NULL;
2054 return isl_basic_map_finalize(bmap);
2055 error:
2056 isl_basic_map_free(bmap);
2057 return NULL;
2060 __isl_give isl_basic_set *isl_basic_set_set_to_empty(
2061 __isl_take isl_basic_set *bset)
2063 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset)));
2066 __isl_give isl_basic_map *isl_basic_map_set_rational(
2067 __isl_take isl_basic_map *bmap)
2069 if (!bmap)
2070 return NULL;
2072 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
2073 return bmap;
2075 bmap = isl_basic_map_cow(bmap);
2076 if (!bmap)
2077 return NULL;
2079 ISL_F_SET(bmap, ISL_BASIC_MAP_RATIONAL);
2081 return isl_basic_map_finalize(bmap);
2084 __isl_give isl_basic_set *isl_basic_set_set_rational(
2085 __isl_take isl_basic_set *bset)
2087 return isl_basic_map_set_rational(bset);
2090 __isl_give isl_basic_set *isl_basic_set_set_integral(
2091 __isl_take isl_basic_set *bset)
2093 if (!bset)
2094 return NULL;
2096 if (!ISL_F_ISSET(bset, ISL_BASIC_MAP_RATIONAL))
2097 return bset;
2099 bset = isl_basic_set_cow(bset);
2100 if (!bset)
2101 return NULL;
2103 ISL_F_CLR(bset, ISL_BASIC_MAP_RATIONAL);
2105 return isl_basic_set_finalize(bset);
2108 __isl_give isl_map *isl_map_set_rational(__isl_take isl_map *map)
2110 int i;
2112 map = isl_map_cow(map);
2113 if (!map)
2114 return NULL;
2115 for (i = 0; i < map->n; ++i) {
2116 map->p[i] = isl_basic_map_set_rational(map->p[i]);
2117 if (!map->p[i])
2118 goto error;
2120 return map;
2121 error:
2122 isl_map_free(map);
2123 return NULL;
2126 __isl_give isl_set *isl_set_set_rational(__isl_take isl_set *set)
2128 return isl_map_set_rational(set);
2131 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
2132 * of "bmap").
2134 static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
2136 isl_int *t = bmap->div[a];
2137 bmap->div[a] = bmap->div[b];
2138 bmap->div[b] = t;
2141 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
2142 * div definitions accordingly.
2144 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
2146 int i;
2147 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
2149 swap_div(bmap, a, b);
2151 for (i = 0; i < bmap->n_eq; ++i)
2152 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
2154 for (i = 0; i < bmap->n_ineq; ++i)
2155 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
2157 for (i = 0; i < bmap->n_div; ++i)
2158 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
2159 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2162 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
2163 * div definitions accordingly.
2165 void isl_basic_set_swap_div(__isl_keep isl_basic_set *bset, int a, int b)
2167 isl_basic_map_swap_div(bset, a, b);
2170 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
2172 isl_seq_cpy(c, c + n, rem);
2173 isl_seq_clr(c + rem, n);
2176 /* Drop n dimensions starting at first.
2178 * In principle, this frees up some extra variables as the number
2179 * of columns remains constant, but we would have to extend
2180 * the div array too as the number of rows in this array is assumed
2181 * to be equal to extra.
2183 __isl_give isl_basic_set *isl_basic_set_drop_dims(
2184 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2186 return isl_basic_map_drop(bset_to_bmap(bset), isl_dim_set, first, n);
2189 /* Move "n" divs starting at "first" to the end of the list of divs.
2191 static struct isl_basic_map *move_divs_last(struct isl_basic_map *bmap,
2192 unsigned first, unsigned n)
2194 isl_int **div;
2195 int i;
2197 if (first + n == bmap->n_div)
2198 return bmap;
2200 div = isl_alloc_array(bmap->ctx, isl_int *, n);
2201 if (!div)
2202 goto error;
2203 for (i = 0; i < n; ++i)
2204 div[i] = bmap->div[first + i];
2205 for (i = 0; i < bmap->n_div - first - n; ++i)
2206 bmap->div[first + i] = bmap->div[first + n + i];
2207 for (i = 0; i < n; ++i)
2208 bmap->div[bmap->n_div - n + i] = div[i];
2209 free(div);
2210 return bmap;
2211 error:
2212 isl_basic_map_free(bmap);
2213 return NULL;
2216 /* Check that there are "n" dimensions of type "type" starting at "first"
2217 * in "map".
2219 static isl_stat isl_map_check_range(__isl_keep isl_map *map,
2220 enum isl_dim_type type, unsigned first, unsigned n)
2222 if (!map)
2223 return isl_stat_error;
2224 if (first + n > isl_map_dim(map, type) || first + n < first)
2225 isl_die(isl_map_get_ctx(map), isl_error_invalid,
2226 "position or range out of bounds",
2227 return isl_stat_error);
2228 return isl_stat_ok;
2231 /* Drop "n" dimensions of type "type" starting at "first".
2233 * In principle, this frees up some extra variables as the number
2234 * of columns remains constant, but we would have to extend
2235 * the div array too as the number of rows in this array is assumed
2236 * to be equal to extra.
2238 __isl_give isl_basic_map *isl_basic_map_drop(__isl_take isl_basic_map *bmap,
2239 enum isl_dim_type type, unsigned first, unsigned n)
2241 int i;
2242 unsigned dim;
2243 unsigned offset;
2244 unsigned left;
2246 if (!bmap)
2247 goto error;
2249 dim = isl_basic_map_dim(bmap, type);
2250 isl_assert(bmap->ctx, first + n <= dim, goto error);
2252 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2253 return bmap;
2255 bmap = isl_basic_map_cow(bmap);
2256 if (!bmap)
2257 return NULL;
2259 offset = isl_basic_map_offset(bmap, type) + first;
2260 left = isl_basic_map_total_dim(bmap) - (offset - 1) - n;
2261 for (i = 0; i < bmap->n_eq; ++i)
2262 constraint_drop_vars(bmap->eq[i]+offset, n, left);
2264 for (i = 0; i < bmap->n_ineq; ++i)
2265 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
2267 for (i = 0; i < bmap->n_div; ++i)
2268 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
2270 if (type == isl_dim_div) {
2271 bmap = move_divs_last(bmap, first, n);
2272 if (!bmap)
2273 goto error;
2274 if (isl_basic_map_free_div(bmap, n) < 0)
2275 return isl_basic_map_free(bmap);
2276 } else
2277 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
2278 if (!bmap->dim)
2279 goto error;
2281 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2282 bmap = isl_basic_map_simplify(bmap);
2283 return isl_basic_map_finalize(bmap);
2284 error:
2285 isl_basic_map_free(bmap);
2286 return NULL;
2289 __isl_give isl_basic_set *isl_basic_set_drop(__isl_take isl_basic_set *bset,
2290 enum isl_dim_type type, unsigned first, unsigned n)
2292 return bset_from_bmap(isl_basic_map_drop(bset_to_bmap(bset),
2293 type, first, n));
2296 /* No longer consider "map" to be normalized.
2298 static __isl_give isl_map *isl_map_unmark_normalized(__isl_take isl_map *map)
2300 if (!map)
2301 return NULL;
2302 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2303 return map;
2306 __isl_give isl_map *isl_map_drop(__isl_take isl_map *map,
2307 enum isl_dim_type type, unsigned first, unsigned n)
2309 int i;
2311 if (isl_map_check_range(map, type, first, n) < 0)
2312 return isl_map_free(map);
2314 if (n == 0 && !isl_space_is_named_or_nested(map->dim, type))
2315 return map;
2316 map = isl_map_cow(map);
2317 if (!map)
2318 goto error;
2319 map->dim = isl_space_drop_dims(map->dim, type, first, n);
2320 if (!map->dim)
2321 goto error;
2323 for (i = 0; i < map->n; ++i) {
2324 map->p[i] = isl_basic_map_drop(map->p[i], type, first, n);
2325 if (!map->p[i])
2326 goto error;
2328 map = isl_map_unmark_normalized(map);
2330 return map;
2331 error:
2332 isl_map_free(map);
2333 return NULL;
2336 __isl_give isl_set *isl_set_drop(__isl_take isl_set *set,
2337 enum isl_dim_type type, unsigned first, unsigned n)
2339 return set_from_map(isl_map_drop(set_to_map(set), type, first, n));
2343 * We don't cow, as the div is assumed to be redundant.
2345 __isl_give isl_basic_map *isl_basic_map_drop_div(
2346 __isl_take isl_basic_map *bmap, unsigned div)
2348 int i;
2349 unsigned pos;
2351 if (!bmap)
2352 goto error;
2354 pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
2356 isl_assert(bmap->ctx, div < bmap->n_div, goto error);
2358 for (i = 0; i < bmap->n_eq; ++i)
2359 constraint_drop_vars(bmap->eq[i]+pos, 1, bmap->extra-div-1);
2361 for (i = 0; i < bmap->n_ineq; ++i) {
2362 if (!isl_int_is_zero(bmap->ineq[i][pos])) {
2363 isl_basic_map_drop_inequality(bmap, i);
2364 --i;
2365 continue;
2367 constraint_drop_vars(bmap->ineq[i]+pos, 1, bmap->extra-div-1);
2370 for (i = 0; i < bmap->n_div; ++i)
2371 constraint_drop_vars(bmap->div[i]+1+pos, 1, bmap->extra-div-1);
2373 if (div != bmap->n_div - 1) {
2374 int j;
2375 isl_int *t = bmap->div[div];
2377 for (j = div; j < bmap->n_div - 1; ++j)
2378 bmap->div[j] = bmap->div[j+1];
2380 bmap->div[bmap->n_div - 1] = t;
2382 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2383 if (isl_basic_map_free_div(bmap, 1) < 0)
2384 return isl_basic_map_free(bmap);
2386 return bmap;
2387 error:
2388 isl_basic_map_free(bmap);
2389 return NULL;
2392 /* Eliminate the specified n dimensions starting at first from the
2393 * constraints, without removing the dimensions from the space.
2394 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2396 __isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
2397 enum isl_dim_type type, unsigned first, unsigned n)
2399 int i;
2401 if (n == 0)
2402 return map;
2404 if (isl_map_check_range(map, type, first, n) < 0)
2405 return isl_map_free(map);
2407 map = isl_map_cow(map);
2408 if (!map)
2409 return NULL;
2411 for (i = 0; i < map->n; ++i) {
2412 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
2413 if (!map->p[i])
2414 goto error;
2416 return map;
2417 error:
2418 isl_map_free(map);
2419 return NULL;
2422 /* Eliminate the specified n dimensions starting at first from the
2423 * constraints, without removing the dimensions from the space.
2424 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2426 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
2427 enum isl_dim_type type, unsigned first, unsigned n)
2429 return set_from_map(isl_map_eliminate(set_to_map(set), type, first, n));
2432 /* Eliminate the specified n dimensions starting at first from the
2433 * constraints, without removing the dimensions from the space.
2434 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2436 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
2437 unsigned first, unsigned n)
2439 return isl_set_eliminate(set, isl_dim_set, first, n);
2442 __isl_give isl_basic_map *isl_basic_map_remove_divs(
2443 __isl_take isl_basic_map *bmap)
2445 if (!bmap)
2446 return NULL;
2447 bmap = isl_basic_map_eliminate_vars(bmap,
2448 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
2449 if (!bmap)
2450 return NULL;
2451 bmap->n_div = 0;
2452 return isl_basic_map_finalize(bmap);
2455 __isl_give isl_basic_set *isl_basic_set_remove_divs(
2456 __isl_take isl_basic_set *bset)
2458 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset)));
2461 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
2463 int i;
2465 if (!map)
2466 return NULL;
2467 if (map->n == 0)
2468 return map;
2470 map = isl_map_cow(map);
2471 if (!map)
2472 return NULL;
2474 for (i = 0; i < map->n; ++i) {
2475 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
2476 if (!map->p[i])
2477 goto error;
2479 return map;
2480 error:
2481 isl_map_free(map);
2482 return NULL;
2485 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
2487 return isl_map_remove_divs(set);
2490 __isl_give isl_basic_map *isl_basic_map_remove_dims(
2491 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
2492 unsigned first, unsigned n)
2494 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2495 return isl_basic_map_free(bmap);
2496 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2497 return bmap;
2498 bmap = isl_basic_map_eliminate_vars(bmap,
2499 isl_basic_map_offset(bmap, type) - 1 + first, n);
2500 if (!bmap)
2501 return bmap;
2502 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
2503 return bmap;
2504 bmap = isl_basic_map_drop(bmap, type, first, n);
2505 return bmap;
2508 /* Return true if the definition of the given div (recursively) involves
2509 * any of the given variables.
2511 static isl_bool div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
2512 unsigned first, unsigned n)
2514 int i;
2515 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2517 if (isl_int_is_zero(bmap->div[div][0]))
2518 return isl_bool_false;
2519 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
2520 return isl_bool_true;
2522 for (i = bmap->n_div - 1; i >= 0; --i) {
2523 isl_bool involves;
2525 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2526 continue;
2527 involves = div_involves_vars(bmap, i, first, n);
2528 if (involves < 0 || involves)
2529 return involves;
2532 return isl_bool_false;
2535 /* Try and add a lower and/or upper bound on "div" to "bmap"
2536 * based on inequality "i".
2537 * "total" is the total number of variables (excluding the divs).
2538 * "v" is a temporary object that can be used during the calculations.
2539 * If "lb" is set, then a lower bound should be constructed.
2540 * If "ub" is set, then an upper bound should be constructed.
2542 * The calling function has already checked that the inequality does not
2543 * reference "div", but we still need to check that the inequality is
2544 * of the right form. We'll consider the case where we want to construct
2545 * a lower bound. The construction of upper bounds is similar.
2547 * Let "div" be of the form
2549 * q = floor((a + f(x))/d)
2551 * We essentially check if constraint "i" is of the form
2553 * b + f(x) >= 0
2555 * so that we can use it to derive a lower bound on "div".
2556 * However, we allow a slightly more general form
2558 * b + g(x) >= 0
2560 * with the condition that the coefficients of g(x) - f(x) are all
2561 * divisible by d.
2562 * Rewriting this constraint as
2564 * 0 >= -b - g(x)
2566 * adding a + f(x) to both sides and dividing by d, we obtain
2568 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2570 * Taking the floor on both sides, we obtain
2572 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2574 * or
2576 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2578 * In the case of an upper bound, we construct the constraint
2580 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2583 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2584 __isl_take isl_basic_map *bmap, int div, int i,
2585 unsigned total, isl_int v, int lb, int ub)
2587 int j;
2589 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2590 if (lb) {
2591 isl_int_sub(v, bmap->ineq[i][1 + j],
2592 bmap->div[div][1 + 1 + j]);
2593 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2595 if (ub) {
2596 isl_int_add(v, bmap->ineq[i][1 + j],
2597 bmap->div[div][1 + 1 + j]);
2598 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2601 if (!lb && !ub)
2602 return bmap;
2604 bmap = isl_basic_map_cow(bmap);
2605 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2606 if (lb) {
2607 int k = isl_basic_map_alloc_inequality(bmap);
2608 if (k < 0)
2609 goto error;
2610 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2611 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2612 bmap->div[div][1 + j]);
2613 isl_int_cdiv_q(bmap->ineq[k][j],
2614 bmap->ineq[k][j], bmap->div[div][0]);
2616 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2618 if (ub) {
2619 int k = isl_basic_map_alloc_inequality(bmap);
2620 if (k < 0)
2621 goto error;
2622 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2623 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2624 bmap->div[div][1 + j]);
2625 isl_int_fdiv_q(bmap->ineq[k][j],
2626 bmap->ineq[k][j], bmap->div[div][0]);
2628 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2631 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2632 return bmap;
2633 error:
2634 isl_basic_map_free(bmap);
2635 return NULL;
2638 /* This function is called right before "div" is eliminated from "bmap"
2639 * using Fourier-Motzkin.
2640 * Look through the constraints of "bmap" for constraints on the argument
2641 * of the integer division and use them to construct constraints on the
2642 * integer division itself. These constraints can then be combined
2643 * during the Fourier-Motzkin elimination.
2644 * Note that it is only useful to introduce lower bounds on "div"
2645 * if "bmap" already contains upper bounds on "div" as the newly
2646 * introduce lower bounds can then be combined with the pre-existing
2647 * upper bounds. Similarly for upper bounds.
2648 * We therefore first check if "bmap" contains any lower and/or upper bounds
2649 * on "div".
2651 * It is interesting to note that the introduction of these constraints
2652 * can indeed lead to more accurate results, even when compared to
2653 * deriving constraints on the argument of "div" from constraints on "div".
2654 * Consider, for example, the set
2656 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2658 * The second constraint can be rewritten as
2660 * 2 * [(-i-2j+3)/4] + k >= 0
2662 * from which we can derive
2664 * -i - 2j + 3 >= -2k
2666 * or
2668 * i + 2j <= 3 + 2k
2670 * Combined with the first constraint, we obtain
2672 * -3 <= 3 + 2k or k >= -3
2674 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2675 * the first constraint, we obtain
2677 * [(i + 2j)/4] >= [-3/4] = -1
2679 * Combining this constraint with the second constraint, we obtain
2681 * k >= -2
2683 static __isl_give isl_basic_map *insert_bounds_on_div(
2684 __isl_take isl_basic_map *bmap, int div)
2686 int i;
2687 int check_lb, check_ub;
2688 isl_int v;
2689 unsigned total;
2691 if (!bmap)
2692 return NULL;
2694 if (isl_int_is_zero(bmap->div[div][0]))
2695 return bmap;
2697 total = isl_space_dim(bmap->dim, isl_dim_all);
2699 check_lb = 0;
2700 check_ub = 0;
2701 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
2702 int s = isl_int_sgn(bmap->ineq[i][1 + total + div]);
2703 if (s > 0)
2704 check_ub = 1;
2705 if (s < 0)
2706 check_lb = 1;
2709 if (!check_lb && !check_ub)
2710 return bmap;
2712 isl_int_init(v);
2714 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
2715 if (!isl_int_is_zero(bmap->ineq[i][1 + total + div]))
2716 continue;
2718 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, total, v,
2719 check_lb, check_ub);
2722 isl_int_clear(v);
2724 return bmap;
2727 /* Remove all divs (recursively) involving any of the given dimensions
2728 * in their definitions.
2730 __isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
2731 __isl_take isl_basic_map *bmap,
2732 enum isl_dim_type type, unsigned first, unsigned n)
2734 int i;
2736 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2737 return isl_basic_map_free(bmap);
2738 first += isl_basic_map_offset(bmap, type);
2740 for (i = bmap->n_div - 1; i >= 0; --i) {
2741 isl_bool involves;
2743 involves = div_involves_vars(bmap, i, first, n);
2744 if (involves < 0)
2745 return isl_basic_map_free(bmap);
2746 if (!involves)
2747 continue;
2748 bmap = insert_bounds_on_div(bmap, i);
2749 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2750 if (!bmap)
2751 return NULL;
2752 i = bmap->n_div;
2755 return bmap;
2758 __isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
2759 __isl_take isl_basic_set *bset,
2760 enum isl_dim_type type, unsigned first, unsigned n)
2762 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
2765 __isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
2766 enum isl_dim_type type, unsigned first, unsigned n)
2768 int i;
2770 if (!map)
2771 return NULL;
2772 if (map->n == 0)
2773 return map;
2775 map = isl_map_cow(map);
2776 if (!map)
2777 return NULL;
2779 for (i = 0; i < map->n; ++i) {
2780 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2781 type, first, n);
2782 if (!map->p[i])
2783 goto error;
2785 return map;
2786 error:
2787 isl_map_free(map);
2788 return NULL;
2791 __isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2792 enum isl_dim_type type, unsigned first, unsigned n)
2794 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set),
2795 type, first, n));
2798 /* Does the description of "bmap" depend on the specified dimensions?
2799 * We also check whether the dimensions appear in any of the div definitions.
2800 * In principle there is no need for this check. If the dimensions appear
2801 * in a div definition, they also appear in the defining constraints of that
2802 * div.
2804 isl_bool isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
2805 enum isl_dim_type type, unsigned first, unsigned n)
2807 int i;
2809 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2810 return isl_bool_error;
2812 first += isl_basic_map_offset(bmap, type);
2813 for (i = 0; i < bmap->n_eq; ++i)
2814 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
2815 return isl_bool_true;
2816 for (i = 0; i < bmap->n_ineq; ++i)
2817 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
2818 return isl_bool_true;
2819 for (i = 0; i < bmap->n_div; ++i) {
2820 if (isl_int_is_zero(bmap->div[i][0]))
2821 continue;
2822 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
2823 return isl_bool_true;
2826 return isl_bool_false;
2829 isl_bool isl_map_involves_dims(__isl_keep isl_map *map,
2830 enum isl_dim_type type, unsigned first, unsigned n)
2832 int i;
2834 if (isl_map_check_range(map, type, first, n) < 0)
2835 return isl_bool_error;
2837 for (i = 0; i < map->n; ++i) {
2838 isl_bool involves = isl_basic_map_involves_dims(map->p[i],
2839 type, first, n);
2840 if (involves < 0 || involves)
2841 return involves;
2844 return isl_bool_false;
2847 isl_bool isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
2848 enum isl_dim_type type, unsigned first, unsigned n)
2850 return isl_basic_map_involves_dims(bset, type, first, n);
2853 isl_bool isl_set_involves_dims(__isl_keep isl_set *set,
2854 enum isl_dim_type type, unsigned first, unsigned n)
2856 return isl_map_involves_dims(set, type, first, n);
2859 /* Drop all constraints in bmap that involve any of the dimensions
2860 * first to first+n-1.
2862 static __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving(
2863 __isl_take isl_basic_map *bmap, unsigned first, unsigned n)
2865 int i;
2867 if (n == 0)
2868 return bmap;
2870 bmap = isl_basic_map_cow(bmap);
2872 if (!bmap)
2873 return NULL;
2875 for (i = bmap->n_eq - 1; i >= 0; --i) {
2876 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) == -1)
2877 continue;
2878 isl_basic_map_drop_equality(bmap, i);
2881 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2882 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) == -1)
2883 continue;
2884 isl_basic_map_drop_inequality(bmap, i);
2887 bmap = isl_basic_map_add_known_div_constraints(bmap);
2888 return bmap;
2891 /* Drop all constraints in bset that involve any of the dimensions
2892 * first to first+n-1.
2894 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving(
2895 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2897 return isl_basic_map_drop_constraints_involving(bset, first, n);
2900 /* Drop all constraints in bmap that do not involve any of the dimensions
2901 * first to first + n - 1 of the given type.
2903 __isl_give isl_basic_map *isl_basic_map_drop_constraints_not_involving_dims(
2904 __isl_take isl_basic_map *bmap,
2905 enum isl_dim_type type, unsigned first, unsigned n)
2907 int i;
2909 if (n == 0) {
2910 isl_space *space = isl_basic_map_get_space(bmap);
2911 isl_basic_map_free(bmap);
2912 return isl_basic_map_universe(space);
2914 bmap = isl_basic_map_cow(bmap);
2915 if (!bmap)
2916 return NULL;
2918 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2919 return isl_basic_map_free(bmap);
2921 first += isl_basic_map_offset(bmap, type) - 1;
2923 for (i = bmap->n_eq - 1; i >= 0; --i) {
2924 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) != -1)
2925 continue;
2926 isl_basic_map_drop_equality(bmap, i);
2929 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2930 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) != -1)
2931 continue;
2932 isl_basic_map_drop_inequality(bmap, i);
2935 bmap = isl_basic_map_add_known_div_constraints(bmap);
2936 return bmap;
2939 /* Drop all constraints in bset that do not involve any of the dimensions
2940 * first to first + n - 1 of the given type.
2942 __isl_give isl_basic_set *isl_basic_set_drop_constraints_not_involving_dims(
2943 __isl_take isl_basic_set *bset,
2944 enum isl_dim_type type, unsigned first, unsigned n)
2946 return isl_basic_map_drop_constraints_not_involving_dims(bset,
2947 type, first, n);
2950 /* Drop all constraints in bmap that involve any of the dimensions
2951 * first to first + n - 1 of the given type.
2953 __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving_dims(
2954 __isl_take isl_basic_map *bmap,
2955 enum isl_dim_type type, unsigned first, unsigned n)
2957 if (!bmap)
2958 return NULL;
2959 if (n == 0)
2960 return bmap;
2962 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2963 return isl_basic_map_free(bmap);
2965 bmap = isl_basic_map_remove_divs_involving_dims(bmap, type, first, n);
2966 first += isl_basic_map_offset(bmap, type) - 1;
2967 return isl_basic_map_drop_constraints_involving(bmap, first, n);
2970 /* Drop all constraints in bset that involve any of the dimensions
2971 * first to first + n - 1 of the given type.
2973 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving_dims(
2974 __isl_take isl_basic_set *bset,
2975 enum isl_dim_type type, unsigned first, unsigned n)
2977 return isl_basic_map_drop_constraints_involving_dims(bset,
2978 type, first, n);
2981 /* Drop constraints from "map" by applying "drop" to each basic map.
2983 static __isl_give isl_map *drop_constraints(__isl_take isl_map *map,
2984 enum isl_dim_type type, unsigned first, unsigned n,
2985 __isl_give isl_basic_map *(*drop)(__isl_take isl_basic_map *bmap,
2986 enum isl_dim_type type, unsigned first, unsigned n))
2988 int i;
2990 if (isl_map_check_range(map, type, first, n) < 0)
2991 return isl_map_free(map);
2993 map = isl_map_cow(map);
2994 if (!map)
2995 return NULL;
2997 for (i = 0; i < map->n; ++i) {
2998 map->p[i] = drop(map->p[i], type, first, n);
2999 if (!map->p[i])
3000 return isl_map_free(map);
3003 if (map->n > 1)
3004 ISL_F_CLR(map, ISL_MAP_DISJOINT);
3006 return map;
3009 /* Drop all constraints in map that involve any of the dimensions
3010 * first to first + n - 1 of the given type.
3012 __isl_give isl_map *isl_map_drop_constraints_involving_dims(
3013 __isl_take isl_map *map,
3014 enum isl_dim_type type, unsigned first, unsigned n)
3016 if (n == 0)
3017 return map;
3018 return drop_constraints(map, type, first, n,
3019 &isl_basic_map_drop_constraints_involving_dims);
3022 /* Drop all constraints in "map" that do not involve any of the dimensions
3023 * first to first + n - 1 of the given type.
3025 __isl_give isl_map *isl_map_drop_constraints_not_involving_dims(
3026 __isl_take isl_map *map,
3027 enum isl_dim_type type, unsigned first, unsigned n)
3029 if (n == 0) {
3030 isl_space *space = isl_map_get_space(map);
3031 isl_map_free(map);
3032 return isl_map_universe(space);
3034 return drop_constraints(map, type, first, n,
3035 &isl_basic_map_drop_constraints_not_involving_dims);
3038 /* Drop all constraints in set that involve any of the dimensions
3039 * first to first + n - 1 of the given type.
3041 __isl_give isl_set *isl_set_drop_constraints_involving_dims(
3042 __isl_take isl_set *set,
3043 enum isl_dim_type type, unsigned first, unsigned n)
3045 return isl_map_drop_constraints_involving_dims(set, type, first, n);
3048 /* Drop all constraints in "set" that do not involve any of the dimensions
3049 * first to first + n - 1 of the given type.
3051 __isl_give isl_set *isl_set_drop_constraints_not_involving_dims(
3052 __isl_take isl_set *set,
3053 enum isl_dim_type type, unsigned first, unsigned n)
3055 return isl_map_drop_constraints_not_involving_dims(set, type, first, n);
3058 /* Does local variable "div" of "bmap" have a complete explicit representation?
3059 * Having a complete explicit representation requires not only
3060 * an explicit representation, but also that all local variables
3061 * that appear in this explicit representation in turn have
3062 * a complete explicit representation.
3064 isl_bool isl_basic_map_div_is_known(__isl_keep isl_basic_map *bmap, int div)
3066 int i;
3067 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
3068 isl_bool marked;
3070 marked = isl_basic_map_div_is_marked_unknown(bmap, div);
3071 if (marked < 0 || marked)
3072 return isl_bool_not(marked);
3074 for (i = bmap->n_div - 1; i >= 0; --i) {
3075 isl_bool known;
3077 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
3078 continue;
3079 known = isl_basic_map_div_is_known(bmap, i);
3080 if (known < 0 || !known)
3081 return known;
3084 return isl_bool_true;
3087 /* Remove all divs that are unknown or defined in terms of unknown divs.
3089 __isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
3090 __isl_take isl_basic_map *bmap)
3092 int i;
3094 if (!bmap)
3095 return NULL;
3097 for (i = bmap->n_div - 1; i >= 0; --i) {
3098 if (isl_basic_map_div_is_known(bmap, i))
3099 continue;
3100 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
3101 if (!bmap)
3102 return NULL;
3103 i = bmap->n_div;
3106 return bmap;
3109 /* Remove all divs that are unknown or defined in terms of unknown divs.
3111 __isl_give isl_basic_set *isl_basic_set_remove_unknown_divs(
3112 __isl_take isl_basic_set *bset)
3114 return isl_basic_map_remove_unknown_divs(bset);
3117 __isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
3119 int i;
3121 if (!map)
3122 return NULL;
3123 if (map->n == 0)
3124 return map;
3126 map = isl_map_cow(map);
3127 if (!map)
3128 return NULL;
3130 for (i = 0; i < map->n; ++i) {
3131 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
3132 if (!map->p[i])
3133 goto error;
3135 return map;
3136 error:
3137 isl_map_free(map);
3138 return NULL;
3141 __isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
3143 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set)));
3146 __isl_give isl_basic_set *isl_basic_set_remove_dims(
3147 __isl_take isl_basic_set *bset,
3148 enum isl_dim_type type, unsigned first, unsigned n)
3150 isl_basic_map *bmap = bset_to_bmap(bset);
3151 bmap = isl_basic_map_remove_dims(bmap, type, first, n);
3152 return bset_from_bmap(bmap);
3155 __isl_give isl_map *isl_map_remove_dims(__isl_take isl_map *map,
3156 enum isl_dim_type type, unsigned first, unsigned n)
3158 int i;
3160 if (n == 0)
3161 return map;
3163 map = isl_map_cow(map);
3164 if (isl_map_check_range(map, type, first, n) < 0)
3165 return isl_map_free(map);
3167 for (i = 0; i < map->n; ++i) {
3168 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
3169 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
3170 if (!map->p[i])
3171 goto error;
3173 map = isl_map_drop(map, type, first, n);
3174 return map;
3175 error:
3176 isl_map_free(map);
3177 return NULL;
3180 __isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
3181 enum isl_dim_type type, unsigned first, unsigned n)
3183 return set_from_map(isl_map_remove_dims(set_to_map(bset),
3184 type, first, n));
3187 /* Project out n inputs starting at first using Fourier-Motzkin */
3188 struct isl_map *isl_map_remove_inputs(struct isl_map *map,
3189 unsigned first, unsigned n)
3191 return isl_map_remove_dims(map, isl_dim_in, first, n);
3194 static void dump_term(struct isl_basic_map *bmap,
3195 isl_int c, int pos, FILE *out)
3197 const char *name;
3198 unsigned in = isl_basic_map_dim(bmap, isl_dim_in);
3199 unsigned dim = in + isl_basic_map_dim(bmap, isl_dim_out);
3200 unsigned nparam = isl_basic_map_dim(bmap, isl_dim_param);
3201 if (!pos)
3202 isl_int_print(out, c, 0);
3203 else {
3204 if (!isl_int_is_one(c))
3205 isl_int_print(out, c, 0);
3206 if (pos < 1 + nparam) {
3207 name = isl_space_get_dim_name(bmap->dim,
3208 isl_dim_param, pos - 1);
3209 if (name)
3210 fprintf(out, "%s", name);
3211 else
3212 fprintf(out, "p%d", pos - 1);
3213 } else if (pos < 1 + nparam + in)
3214 fprintf(out, "i%d", pos - 1 - nparam);
3215 else if (pos < 1 + nparam + dim)
3216 fprintf(out, "o%d", pos - 1 - nparam - in);
3217 else
3218 fprintf(out, "e%d", pos - 1 - nparam - dim);
3222 static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
3223 int sign, FILE *out)
3225 int i;
3226 int first;
3227 unsigned len = 1 + isl_basic_map_total_dim(bmap);
3228 isl_int v;
3230 isl_int_init(v);
3231 for (i = 0, first = 1; i < len; ++i) {
3232 if (isl_int_sgn(c[i]) * sign <= 0)
3233 continue;
3234 if (!first)
3235 fprintf(out, " + ");
3236 first = 0;
3237 isl_int_abs(v, c[i]);
3238 dump_term(bmap, v, i, out);
3240 isl_int_clear(v);
3241 if (first)
3242 fprintf(out, "0");
3245 static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
3246 const char *op, FILE *out, int indent)
3248 int i;
3250 fprintf(out, "%*s", indent, "");
3252 dump_constraint_sign(bmap, c, 1, out);
3253 fprintf(out, " %s ", op);
3254 dump_constraint_sign(bmap, c, -1, out);
3256 fprintf(out, "\n");
3258 for (i = bmap->n_div; i < bmap->extra; ++i) {
3259 if (isl_int_is_zero(c[1+isl_space_dim(bmap->dim, isl_dim_all)+i]))
3260 continue;
3261 fprintf(out, "%*s", indent, "");
3262 fprintf(out, "ERROR: unused div coefficient not zero\n");
3263 abort();
3267 static void dump_constraints(struct isl_basic_map *bmap,
3268 isl_int **c, unsigned n,
3269 const char *op, FILE *out, int indent)
3271 int i;
3273 for (i = 0; i < n; ++i)
3274 dump_constraint(bmap, c[i], op, out, indent);
3277 static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
3279 int j;
3280 int first = 1;
3281 unsigned total = isl_basic_map_total_dim(bmap);
3283 for (j = 0; j < 1 + total; ++j) {
3284 if (isl_int_is_zero(exp[j]))
3285 continue;
3286 if (!first && isl_int_is_pos(exp[j]))
3287 fprintf(out, "+");
3288 dump_term(bmap, exp[j], j, out);
3289 first = 0;
3293 static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
3295 int i;
3297 dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
3298 dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
3300 for (i = 0; i < bmap->n_div; ++i) {
3301 fprintf(out, "%*s", indent, "");
3302 fprintf(out, "e%d = [(", i);
3303 dump_affine(bmap, bmap->div[i]+1, out);
3304 fprintf(out, ")/");
3305 isl_int_print(out, bmap->div[i][0], 0);
3306 fprintf(out, "]\n");
3310 void isl_basic_set_print_internal(struct isl_basic_set *bset,
3311 FILE *out, int indent)
3313 if (!bset) {
3314 fprintf(out, "null basic set\n");
3315 return;
3318 fprintf(out, "%*s", indent, "");
3319 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
3320 bset->ref, bset->dim->nparam, bset->dim->n_out,
3321 bset->extra, bset->flags);
3322 dump(bset_to_bmap(bset), out, indent);
3325 void isl_basic_map_print_internal(struct isl_basic_map *bmap,
3326 FILE *out, int indent)
3328 if (!bmap) {
3329 fprintf(out, "null basic map\n");
3330 return;
3333 fprintf(out, "%*s", indent, "");
3334 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
3335 "flags: %x, n_name: %d\n",
3336 bmap->ref,
3337 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
3338 bmap->extra, bmap->flags, bmap->dim->n_id);
3339 dump(bmap, out, indent);
3342 int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
3344 unsigned total;
3345 if (!bmap)
3346 return -1;
3347 total = isl_basic_map_total_dim(bmap);
3348 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
3349 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
3350 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
3351 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
3352 return 0;
3355 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *space, int n,
3356 unsigned flags)
3358 if (!space)
3359 return NULL;
3360 if (isl_space_dim(space, isl_dim_in) != 0)
3361 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3362 "set cannot have input dimensions", goto error);
3363 return isl_map_alloc_space(space, n, flags);
3364 error:
3365 isl_space_free(space);
3366 return NULL;
3369 /* Make sure "map" has room for at least "n" more basic maps.
3371 __isl_give isl_map *isl_map_grow(__isl_take isl_map *map, int n)
3373 int i;
3374 struct isl_map *grown = NULL;
3376 if (!map)
3377 return NULL;
3378 isl_assert(map->ctx, n >= 0, goto error);
3379 if (map->n + n <= map->size)
3380 return map;
3381 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
3382 if (!grown)
3383 goto error;
3384 for (i = 0; i < map->n; ++i) {
3385 grown->p[i] = isl_basic_map_copy(map->p[i]);
3386 if (!grown->p[i])
3387 goto error;
3388 grown->n++;
3390 isl_map_free(map);
3391 return grown;
3392 error:
3393 isl_map_free(grown);
3394 isl_map_free(map);
3395 return NULL;
3398 /* Make sure "set" has room for at least "n" more basic sets.
3400 struct isl_set *isl_set_grow(struct isl_set *set, int n)
3402 return set_from_map(isl_map_grow(set_to_map(set), n));
3405 __isl_give isl_set *isl_set_from_basic_set(__isl_take isl_basic_set *bset)
3407 return isl_map_from_basic_map(bset);
3410 __isl_give isl_map *isl_map_from_basic_map(__isl_take isl_basic_map *bmap)
3412 struct isl_map *map;
3414 if (!bmap)
3415 return NULL;
3417 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
3418 return isl_map_add_basic_map(map, bmap);
3421 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
3422 __isl_take isl_basic_set *bset)
3424 return set_from_map(isl_map_add_basic_map(set_to_map(set),
3425 bset_to_bmap(bset)));
3428 __isl_null isl_set *isl_set_free(__isl_take isl_set *set)
3430 return isl_map_free(set);
3433 void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
3435 int i;
3437 if (!set) {
3438 fprintf(out, "null set\n");
3439 return;
3442 fprintf(out, "%*s", indent, "");
3443 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3444 set->ref, set->n, set->dim->nparam, set->dim->n_out,
3445 set->flags);
3446 for (i = 0; i < set->n; ++i) {
3447 fprintf(out, "%*s", indent, "");
3448 fprintf(out, "basic set %d:\n", i);
3449 isl_basic_set_print_internal(set->p[i], out, indent+4);
3453 void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
3455 int i;
3457 if (!map) {
3458 fprintf(out, "null map\n");
3459 return;
3462 fprintf(out, "%*s", indent, "");
3463 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3464 "flags: %x, n_name: %d\n",
3465 map->ref, map->n, map->dim->nparam, map->dim->n_in,
3466 map->dim->n_out, map->flags, map->dim->n_id);
3467 for (i = 0; i < map->n; ++i) {
3468 fprintf(out, "%*s", indent, "");
3469 fprintf(out, "basic map %d:\n", i);
3470 isl_basic_map_print_internal(map->p[i], out, indent+4);
3474 __isl_give isl_basic_map *isl_basic_map_intersect_domain(
3475 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3477 struct isl_basic_map *bmap_domain;
3479 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3480 goto error;
3482 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
3483 isl_assert(bset->ctx,
3484 isl_basic_map_compatible_domain(bmap, bset), goto error);
3486 bmap = isl_basic_map_cow(bmap);
3487 if (!bmap)
3488 goto error;
3489 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3490 bset->n_div, bset->n_eq, bset->n_ineq);
3491 bmap_domain = isl_basic_map_from_domain(bset);
3492 bmap = add_constraints(bmap, bmap_domain, 0, 0);
3494 bmap = isl_basic_map_simplify(bmap);
3495 return isl_basic_map_finalize(bmap);
3496 error:
3497 isl_basic_map_free(bmap);
3498 isl_basic_set_free(bset);
3499 return NULL;
3502 /* Check that the space of "bset" is the same as that of the range of "bmap".
3504 static isl_stat isl_basic_map_check_compatible_range(
3505 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3507 isl_bool ok;
3509 ok = isl_basic_map_compatible_range(bmap, bset);
3510 if (ok < 0)
3511 return isl_stat_error;
3512 if (!ok)
3513 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3514 "incompatible spaces", return isl_stat_error);
3516 return isl_stat_ok;
3519 __isl_give isl_basic_map *isl_basic_map_intersect_range(
3520 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3522 struct isl_basic_map *bmap_range;
3524 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3525 goto error;
3527 if (isl_space_dim(bset->dim, isl_dim_set) != 0 &&
3528 isl_basic_map_check_compatible_range(bmap, bset) < 0)
3529 goto error;
3531 if (isl_basic_set_plain_is_universe(bset)) {
3532 isl_basic_set_free(bset);
3533 return bmap;
3536 bmap = isl_basic_map_cow(bmap);
3537 if (!bmap)
3538 goto error;
3539 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3540 bset->n_div, bset->n_eq, bset->n_ineq);
3541 bmap_range = bset_to_bmap(bset);
3542 bmap = add_constraints(bmap, bmap_range, 0, 0);
3544 bmap = isl_basic_map_simplify(bmap);
3545 return isl_basic_map_finalize(bmap);
3546 error:
3547 isl_basic_map_free(bmap);
3548 isl_basic_set_free(bset);
3549 return NULL;
3552 isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
3553 __isl_keep isl_vec *vec)
3555 int i;
3556 unsigned total;
3557 isl_int s;
3559 if (!bmap || !vec)
3560 return isl_bool_error;
3562 total = 1 + isl_basic_map_total_dim(bmap);
3563 if (total != vec->size)
3564 return isl_bool_false;
3566 isl_int_init(s);
3568 for (i = 0; i < bmap->n_eq; ++i) {
3569 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
3570 if (!isl_int_is_zero(s)) {
3571 isl_int_clear(s);
3572 return isl_bool_false;
3576 for (i = 0; i < bmap->n_ineq; ++i) {
3577 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
3578 if (isl_int_is_neg(s)) {
3579 isl_int_clear(s);
3580 return isl_bool_false;
3584 isl_int_clear(s);
3586 return isl_bool_true;
3589 isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
3590 __isl_keep isl_vec *vec)
3592 return isl_basic_map_contains(bset_to_bmap(bset), vec);
3595 __isl_give isl_basic_map *isl_basic_map_intersect(
3596 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
3598 struct isl_vec *sample = NULL;
3600 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
3601 goto error;
3602 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
3603 isl_space_dim(bmap1->dim, isl_dim_param) &&
3604 isl_space_dim(bmap2->dim, isl_dim_all) !=
3605 isl_space_dim(bmap2->dim, isl_dim_param))
3606 return isl_basic_map_intersect(bmap2, bmap1);
3608 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
3609 isl_space_dim(bmap2->dim, isl_dim_param))
3610 isl_assert(bmap1->ctx,
3611 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
3613 if (isl_basic_map_plain_is_empty(bmap1)) {
3614 isl_basic_map_free(bmap2);
3615 return bmap1;
3617 if (isl_basic_map_plain_is_empty(bmap2)) {
3618 isl_basic_map_free(bmap1);
3619 return bmap2;
3622 if (bmap1->sample &&
3623 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
3624 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
3625 sample = isl_vec_copy(bmap1->sample);
3626 else if (bmap2->sample &&
3627 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
3628 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
3629 sample = isl_vec_copy(bmap2->sample);
3631 bmap1 = isl_basic_map_cow(bmap1);
3632 if (!bmap1)
3633 goto error;
3634 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
3635 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
3636 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
3638 if (!bmap1)
3639 isl_vec_free(sample);
3640 else if (sample) {
3641 isl_vec_free(bmap1->sample);
3642 bmap1->sample = sample;
3645 bmap1 = isl_basic_map_simplify(bmap1);
3646 return isl_basic_map_finalize(bmap1);
3647 error:
3648 if (sample)
3649 isl_vec_free(sample);
3650 isl_basic_map_free(bmap1);
3651 isl_basic_map_free(bmap2);
3652 return NULL;
3655 struct isl_basic_set *isl_basic_set_intersect(
3656 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
3658 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1),
3659 bset_to_bmap(bset2)));
3662 __isl_give isl_basic_set *isl_basic_set_intersect_params(
3663 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3665 return isl_basic_set_intersect(bset1, bset2);
3668 /* Special case of isl_map_intersect, where both map1 and map2
3669 * are convex, without any divs and such that either map1 or map2
3670 * contains a single constraint. This constraint is then simply
3671 * added to the other map.
3673 static __isl_give isl_map *map_intersect_add_constraint(
3674 __isl_take isl_map *map1, __isl_take isl_map *map2)
3676 isl_assert(map1->ctx, map1->n == 1, goto error);
3677 isl_assert(map2->ctx, map1->n == 1, goto error);
3678 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
3679 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
3681 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
3682 return isl_map_intersect(map2, map1);
3684 map1 = isl_map_cow(map1);
3685 if (!map1)
3686 goto error;
3687 if (isl_map_plain_is_empty(map1)) {
3688 isl_map_free(map2);
3689 return map1;
3691 map1->p[0] = isl_basic_map_cow(map1->p[0]);
3692 if (map2->p[0]->n_eq == 1)
3693 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
3694 else
3695 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
3696 map2->p[0]->ineq[0]);
3698 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
3699 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
3700 if (!map1->p[0])
3701 goto error;
3703 if (isl_basic_map_plain_is_empty(map1->p[0])) {
3704 isl_basic_map_free(map1->p[0]);
3705 map1->n = 0;
3708 isl_map_free(map2);
3710 return map1;
3711 error:
3712 isl_map_free(map1);
3713 isl_map_free(map2);
3714 return NULL;
3717 /* map2 may be either a parameter domain or a map living in the same
3718 * space as map1.
3720 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3721 __isl_take isl_map *map2)
3723 unsigned flags = 0;
3724 isl_bool equal;
3725 isl_map *result;
3726 int i, j;
3728 if (!map1 || !map2)
3729 goto error;
3731 if ((isl_map_plain_is_empty(map1) ||
3732 isl_map_plain_is_universe(map2)) &&
3733 isl_space_is_equal(map1->dim, map2->dim)) {
3734 isl_map_free(map2);
3735 return map1;
3737 if ((isl_map_plain_is_empty(map2) ||
3738 isl_map_plain_is_universe(map1)) &&
3739 isl_space_is_equal(map1->dim, map2->dim)) {
3740 isl_map_free(map1);
3741 return map2;
3744 if (map1->n == 1 && map2->n == 1 &&
3745 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
3746 isl_space_is_equal(map1->dim, map2->dim) &&
3747 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3748 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3749 return map_intersect_add_constraint(map1, map2);
3751 equal = isl_map_plain_is_equal(map1, map2);
3752 if (equal < 0)
3753 goto error;
3754 if (equal) {
3755 isl_map_free(map2);
3756 return map1;
3759 if (isl_space_dim(map2->dim, isl_dim_all) !=
3760 isl_space_dim(map2->dim, isl_dim_param))
3761 isl_assert(map1->ctx,
3762 isl_space_is_equal(map1->dim, map2->dim), goto error);
3764 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3765 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3766 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3768 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3769 map1->n * map2->n, flags);
3770 if (!result)
3771 goto error;
3772 for (i = 0; i < map1->n; ++i)
3773 for (j = 0; j < map2->n; ++j) {
3774 struct isl_basic_map *part;
3775 part = isl_basic_map_intersect(
3776 isl_basic_map_copy(map1->p[i]),
3777 isl_basic_map_copy(map2->p[j]));
3778 if (isl_basic_map_is_empty(part) < 0)
3779 part = isl_basic_map_free(part);
3780 result = isl_map_add_basic_map(result, part);
3781 if (!result)
3782 goto error;
3784 isl_map_free(map1);
3785 isl_map_free(map2);
3786 return result;
3787 error:
3788 isl_map_free(map1);
3789 isl_map_free(map2);
3790 return NULL;
3793 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3794 __isl_take isl_map *map2)
3796 if (!map1 || !map2)
3797 goto error;
3798 if (!isl_space_is_equal(map1->dim, map2->dim))
3799 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
3800 "spaces don't match", goto error);
3801 return map_intersect_internal(map1, map2);
3802 error:
3803 isl_map_free(map1);
3804 isl_map_free(map2);
3805 return NULL;
3808 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3809 __isl_take isl_map *map2)
3811 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
3814 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
3816 return set_from_map(isl_map_intersect(set_to_map(set1),
3817 set_to_map(set2)));
3820 /* map_intersect_internal accepts intersections
3821 * with parameter domains, so we can just call that function.
3823 static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
3824 __isl_take isl_set *params)
3826 return map_intersect_internal(map, params);
3829 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
3830 __isl_take isl_map *map2)
3832 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
3835 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3836 __isl_take isl_set *params)
3838 return isl_map_intersect_params(set, params);
3841 __isl_give isl_basic_map *isl_basic_map_reverse(__isl_take isl_basic_map *bmap)
3843 isl_space *space;
3844 unsigned pos, n1, n2;
3846 if (!bmap)
3847 return NULL;
3848 bmap = isl_basic_map_cow(bmap);
3849 if (!bmap)
3850 return NULL;
3851 space = isl_space_reverse(isl_space_copy(bmap->dim));
3852 pos = isl_basic_map_offset(bmap, isl_dim_in);
3853 n1 = isl_basic_map_dim(bmap, isl_dim_in);
3854 n2 = isl_basic_map_dim(bmap, isl_dim_out);
3855 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
3856 return isl_basic_map_reset_space(bmap, space);
3859 static __isl_give isl_basic_map *basic_map_space_reset(
3860 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
3862 isl_space *space;
3864 if (!bmap)
3865 return NULL;
3866 if (!isl_space_is_named_or_nested(bmap->dim, type))
3867 return bmap;
3869 space = isl_basic_map_get_space(bmap);
3870 space = isl_space_reset(space, type);
3871 bmap = isl_basic_map_reset_space(bmap, space);
3872 return bmap;
3875 __isl_give isl_basic_map *isl_basic_map_insert_dims(
3876 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3877 unsigned pos, unsigned n)
3879 isl_bool rational;
3880 isl_space *res_dim;
3881 struct isl_basic_map *res;
3882 struct isl_dim_map *dim_map;
3883 unsigned total, off;
3884 enum isl_dim_type t;
3886 if (n == 0)
3887 return basic_map_space_reset(bmap, type);
3889 if (!bmap)
3890 return NULL;
3892 res_dim = isl_space_insert_dims(isl_basic_map_get_space(bmap), type, pos, n);
3894 total = isl_basic_map_total_dim(bmap) + n;
3895 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3896 off = 0;
3897 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3898 if (t != type) {
3899 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3900 } else {
3901 unsigned size = isl_basic_map_dim(bmap, t);
3902 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3903 0, pos, off);
3904 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3905 pos, size - pos, off + pos + n);
3907 off += isl_space_dim(res_dim, t);
3909 isl_dim_map_div(dim_map, bmap, off);
3911 res = isl_basic_map_alloc_space(res_dim,
3912 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3913 rational = isl_basic_map_is_rational(bmap);
3914 if (rational < 0)
3915 res = isl_basic_map_free(res);
3916 if (rational)
3917 res = isl_basic_map_set_rational(res);
3918 if (isl_basic_map_plain_is_empty(bmap)) {
3919 isl_basic_map_free(bmap);
3920 free(dim_map);
3921 return isl_basic_map_set_to_empty(res);
3923 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3924 return isl_basic_map_finalize(res);
3927 __isl_give isl_basic_set *isl_basic_set_insert_dims(
3928 __isl_take isl_basic_set *bset,
3929 enum isl_dim_type type, unsigned pos, unsigned n)
3931 return isl_basic_map_insert_dims(bset, type, pos, n);
3934 __isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
3935 enum isl_dim_type type, unsigned n)
3937 if (!bmap)
3938 return NULL;
3939 return isl_basic_map_insert_dims(bmap, type,
3940 isl_basic_map_dim(bmap, type), n);
3943 __isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
3944 enum isl_dim_type type, unsigned n)
3946 if (!bset)
3947 return NULL;
3948 isl_assert(bset->ctx, type != isl_dim_in, goto error);
3949 return isl_basic_map_add_dims(bset, type, n);
3950 error:
3951 isl_basic_set_free(bset);
3952 return NULL;
3955 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
3956 enum isl_dim_type type)
3958 isl_space *space;
3960 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3961 return map;
3963 space = isl_map_get_space(map);
3964 space = isl_space_reset(space, type);
3965 map = isl_map_reset_space(map, space);
3966 return map;
3969 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3970 enum isl_dim_type type, unsigned pos, unsigned n)
3972 int i;
3974 if (n == 0)
3975 return map_space_reset(map, type);
3977 map = isl_map_cow(map);
3978 if (!map)
3979 return NULL;
3981 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3982 if (!map->dim)
3983 goto error;
3985 for (i = 0; i < map->n; ++i) {
3986 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3987 if (!map->p[i])
3988 goto error;
3991 return map;
3992 error:
3993 isl_map_free(map);
3994 return NULL;
3997 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
3998 enum isl_dim_type type, unsigned pos, unsigned n)
4000 return isl_map_insert_dims(set, type, pos, n);
4003 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
4004 enum isl_dim_type type, unsigned n)
4006 if (!map)
4007 return NULL;
4008 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
4011 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
4012 enum isl_dim_type type, unsigned n)
4014 if (!set)
4015 return NULL;
4016 isl_assert(set->ctx, type != isl_dim_in, goto error);
4017 return set_from_map(isl_map_add_dims(set_to_map(set), type, n));
4018 error:
4019 isl_set_free(set);
4020 return NULL;
4023 __isl_give isl_basic_map *isl_basic_map_move_dims(
4024 __isl_take isl_basic_map *bmap,
4025 enum isl_dim_type dst_type, unsigned dst_pos,
4026 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4028 struct isl_dim_map *dim_map;
4029 struct isl_basic_map *res;
4030 enum isl_dim_type t;
4031 unsigned total, off;
4033 if (!bmap)
4034 return NULL;
4035 if (n == 0) {
4036 bmap = isl_basic_map_reset(bmap, src_type);
4037 bmap = isl_basic_map_reset(bmap, dst_type);
4038 return bmap;
4041 if (isl_basic_map_check_range(bmap, src_type, src_pos, n) < 0)
4042 return isl_basic_map_free(bmap);
4044 if (dst_type == src_type && dst_pos == src_pos)
4045 return bmap;
4047 isl_assert(bmap->ctx, dst_type != src_type, goto error);
4049 if (pos(bmap->dim, dst_type) + dst_pos ==
4050 pos(bmap->dim, src_type) + src_pos +
4051 ((src_type < dst_type) ? n : 0)) {
4052 bmap = isl_basic_map_cow(bmap);
4053 if (!bmap)
4054 return NULL;
4056 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4057 src_type, src_pos, n);
4058 if (!bmap->dim)
4059 goto error;
4061 bmap = isl_basic_map_finalize(bmap);
4063 return bmap;
4066 total = isl_basic_map_total_dim(bmap);
4067 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4069 off = 0;
4070 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4071 unsigned size = isl_space_dim(bmap->dim, t);
4072 if (t == dst_type) {
4073 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4074 0, dst_pos, off);
4075 off += dst_pos;
4076 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
4077 src_pos, n, off);
4078 off += n;
4079 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4080 dst_pos, size - dst_pos, off);
4081 off += size - dst_pos;
4082 } else if (t == src_type) {
4083 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4084 0, src_pos, off);
4085 off += src_pos;
4086 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4087 src_pos + n, size - src_pos - n, off);
4088 off += size - src_pos - n;
4089 } else {
4090 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4091 off += size;
4094 isl_dim_map_div(dim_map, bmap, off);
4096 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4097 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4098 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4099 if (!bmap)
4100 goto error;
4102 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
4103 src_type, src_pos, n);
4104 if (!bmap->dim)
4105 goto error;
4107 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
4108 bmap = isl_basic_map_gauss(bmap, NULL);
4109 bmap = isl_basic_map_finalize(bmap);
4111 return bmap;
4112 error:
4113 isl_basic_map_free(bmap);
4114 return NULL;
4117 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
4118 enum isl_dim_type dst_type, unsigned dst_pos,
4119 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4121 isl_basic_map *bmap = bset_to_bmap(bset);
4122 bmap = isl_basic_map_move_dims(bmap, dst_type, dst_pos,
4123 src_type, src_pos, n);
4124 return bset_from_bmap(bmap);
4127 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
4128 enum isl_dim_type dst_type, unsigned dst_pos,
4129 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4131 if (!set)
4132 return NULL;
4133 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
4134 return set_from_map(isl_map_move_dims(set_to_map(set),
4135 dst_type, dst_pos, src_type, src_pos, n));
4136 error:
4137 isl_set_free(set);
4138 return NULL;
4141 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
4142 enum isl_dim_type dst_type, unsigned dst_pos,
4143 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4145 int i;
4147 if (n == 0) {
4148 map = isl_map_reset(map, src_type);
4149 map = isl_map_reset(map, dst_type);
4150 return map;
4153 if (isl_map_check_range(map, src_type, src_pos, n))
4154 return isl_map_free(map);
4156 if (dst_type == src_type && dst_pos == src_pos)
4157 return map;
4159 isl_assert(map->ctx, dst_type != src_type, goto error);
4161 map = isl_map_cow(map);
4162 if (!map)
4163 return NULL;
4165 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
4166 if (!map->dim)
4167 goto error;
4169 for (i = 0; i < map->n; ++i) {
4170 map->p[i] = isl_basic_map_move_dims(map->p[i],
4171 dst_type, dst_pos,
4172 src_type, src_pos, n);
4173 if (!map->p[i])
4174 goto error;
4177 return map;
4178 error:
4179 isl_map_free(map);
4180 return NULL;
4183 /* Move the specified dimensions to the last columns right before
4184 * the divs. Don't change the dimension specification of bmap.
4185 * That's the responsibility of the caller.
4187 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
4188 enum isl_dim_type type, unsigned first, unsigned n)
4190 struct isl_dim_map *dim_map;
4191 struct isl_basic_map *res;
4192 enum isl_dim_type t;
4193 unsigned total, off;
4195 if (!bmap)
4196 return NULL;
4197 if (pos(bmap->dim, type) + first + n ==
4198 1 + isl_space_dim(bmap->dim, isl_dim_all))
4199 return bmap;
4201 total = isl_basic_map_total_dim(bmap);
4202 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4204 off = 0;
4205 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4206 unsigned size = isl_space_dim(bmap->dim, t);
4207 if (t == type) {
4208 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4209 0, first, off);
4210 off += first;
4211 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4212 first, n, total - bmap->n_div - n);
4213 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4214 first + n, size - (first + n), off);
4215 off += size - (first + n);
4216 } else {
4217 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4218 off += size;
4221 isl_dim_map_div(dim_map, bmap, off + n);
4223 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4224 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4225 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4226 return res;
4229 /* Insert "n" rows in the divs of "bmap".
4231 * The number of columns is not changed, which means that the last
4232 * dimensions of "bmap" are being reintepreted as the new divs.
4233 * The space of "bmap" is not adjusted, however, which means
4234 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
4235 * from the space of "bmap" is the responsibility of the caller.
4237 static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
4238 int n)
4240 int i;
4241 size_t row_size;
4242 isl_int **new_div;
4243 isl_int *old;
4245 bmap = isl_basic_map_cow(bmap);
4246 if (!bmap)
4247 return NULL;
4249 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
4250 old = bmap->block2.data;
4251 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
4252 (bmap->extra + n) * (1 + row_size));
4253 if (!bmap->block2.data)
4254 return isl_basic_map_free(bmap);
4255 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
4256 if (!new_div)
4257 return isl_basic_map_free(bmap);
4258 for (i = 0; i < n; ++i) {
4259 new_div[i] = bmap->block2.data +
4260 (bmap->extra + i) * (1 + row_size);
4261 isl_seq_clr(new_div[i], 1 + row_size);
4263 for (i = 0; i < bmap->extra; ++i)
4264 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
4265 free(bmap->div);
4266 bmap->div = new_div;
4267 bmap->n_div += n;
4268 bmap->extra += n;
4270 return bmap;
4273 /* Drop constraints from "bmap" that only involve the variables
4274 * of "type" in the range [first, first + n] that are not related
4275 * to any of the variables outside that interval.
4276 * These constraints cannot influence the values for the variables
4277 * outside the interval, except in case they cause "bmap" to be empty.
4278 * Only drop the constraints if "bmap" is known to be non-empty.
4280 static __isl_give isl_basic_map *drop_irrelevant_constraints(
4281 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
4282 unsigned first, unsigned n)
4284 int i;
4285 int *groups;
4286 unsigned dim, n_div;
4287 isl_bool non_empty;
4289 non_empty = isl_basic_map_plain_is_non_empty(bmap);
4290 if (non_empty < 0)
4291 return isl_basic_map_free(bmap);
4292 if (!non_empty)
4293 return bmap;
4295 dim = isl_basic_map_dim(bmap, isl_dim_all);
4296 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4297 groups = isl_calloc_array(isl_basic_map_get_ctx(bmap), int, dim);
4298 if (!groups)
4299 return isl_basic_map_free(bmap);
4300 first += isl_basic_map_offset(bmap, type) - 1;
4301 for (i = 0; i < first; ++i)
4302 groups[i] = -1;
4303 for (i = first + n; i < dim - n_div; ++i)
4304 groups[i] = -1;
4306 bmap = isl_basic_map_drop_unrelated_constraints(bmap, groups);
4308 return bmap;
4311 /* Turn the n dimensions of type type, starting at first
4312 * into existentially quantified variables.
4314 * If a subset of the projected out variables are unrelated
4315 * to any of the variables that remain, then the constraints
4316 * involving this subset are simply dropped first.
4318 __isl_give isl_basic_map *isl_basic_map_project_out(
4319 __isl_take isl_basic_map *bmap,
4320 enum isl_dim_type type, unsigned first, unsigned n)
4322 isl_bool empty;
4324 if (n == 0)
4325 return basic_map_space_reset(bmap, type);
4326 if (type == isl_dim_div)
4327 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
4328 "cannot project out existentially quantified variables",
4329 return isl_basic_map_free(bmap));
4331 empty = isl_basic_map_plain_is_empty(bmap);
4332 if (empty < 0)
4333 return isl_basic_map_free(bmap);
4334 if (empty)
4335 bmap = isl_basic_map_set_to_empty(bmap);
4337 bmap = drop_irrelevant_constraints(bmap, type, first, n);
4338 if (!bmap)
4339 return NULL;
4341 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
4342 return isl_basic_map_remove_dims(bmap, type, first, n);
4344 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
4345 return isl_basic_map_free(bmap);
4347 bmap = move_last(bmap, type, first, n);
4348 bmap = isl_basic_map_cow(bmap);
4349 bmap = insert_div_rows(bmap, n);
4350 if (!bmap)
4351 return NULL;
4353 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
4354 if (!bmap->dim)
4355 goto error;
4356 bmap = isl_basic_map_simplify(bmap);
4357 bmap = isl_basic_map_drop_redundant_divs(bmap);
4358 return isl_basic_map_finalize(bmap);
4359 error:
4360 isl_basic_map_free(bmap);
4361 return NULL;
4364 /* Turn the n dimensions of type type, starting at first
4365 * into existentially quantified variables.
4367 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
4368 enum isl_dim_type type, unsigned first, unsigned n)
4370 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset),
4371 type, first, n));
4374 /* Turn the n dimensions of type type, starting at first
4375 * into existentially quantified variables.
4377 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
4378 enum isl_dim_type type, unsigned first, unsigned n)
4380 int i;
4382 if (n == 0)
4383 return map_space_reset(map, type);
4385 if (isl_map_check_range(map, type, first, n) < 0)
4386 return isl_map_free(map);
4388 map = isl_map_cow(map);
4389 if (!map)
4390 return NULL;
4392 map->dim = isl_space_drop_dims(map->dim, type, first, n);
4393 if (!map->dim)
4394 goto error;
4396 for (i = 0; i < map->n; ++i) {
4397 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
4398 if (!map->p[i])
4399 goto error;
4402 return map;
4403 error:
4404 isl_map_free(map);
4405 return NULL;
4408 /* Turn all the dimensions of type "type", except the "n" starting at "first"
4409 * into existentially quantified variables.
4411 __isl_give isl_map *isl_map_project_onto(__isl_take isl_map *map,
4412 enum isl_dim_type type, unsigned first, unsigned n)
4414 unsigned dim;
4416 if (isl_map_check_range(map, type, first, n) < 0)
4417 return isl_map_free(map);
4418 dim = isl_map_dim(map, type);
4419 map = isl_map_project_out(map, type, first + n, dim - (first + n));
4420 map = isl_map_project_out(map, type, 0, first);
4421 return map;
4424 /* Turn the n dimensions of type type, starting at first
4425 * into existentially quantified variables.
4427 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
4428 enum isl_dim_type type, unsigned first, unsigned n)
4430 return set_from_map(isl_map_project_out(set_to_map(set),
4431 type, first, n));
4434 /* Return a map that projects the elements in "set" onto their
4435 * "n" set dimensions starting at "first".
4436 * "type" should be equal to isl_dim_set.
4438 __isl_give isl_map *isl_set_project_onto_map(__isl_take isl_set *set,
4439 enum isl_dim_type type, unsigned first, unsigned n)
4441 int i;
4442 int dim;
4443 isl_map *map;
4445 if (!set)
4446 return NULL;
4447 if (type != isl_dim_set)
4448 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4449 "only set dimensions can be projected out", goto error);
4450 dim = isl_set_dim(set, isl_dim_set);
4451 if (first + n > dim || first + n < first)
4452 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4453 "index out of bounds", goto error);
4455 map = isl_map_from_domain(set);
4456 map = isl_map_add_dims(map, isl_dim_out, n);
4457 for (i = 0; i < n; ++i)
4458 map = isl_map_equate(map, isl_dim_in, first + i,
4459 isl_dim_out, i);
4460 return map;
4461 error:
4462 isl_set_free(set);
4463 return NULL;
4466 static struct isl_basic_map *add_divs(struct isl_basic_map *bmap, unsigned n)
4468 int i, j;
4470 for (i = 0; i < n; ++i) {
4471 j = isl_basic_map_alloc_div(bmap);
4472 if (j < 0)
4473 goto error;
4474 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
4476 return bmap;
4477 error:
4478 isl_basic_map_free(bmap);
4479 return NULL;
4482 struct isl_basic_map *isl_basic_map_apply_range(
4483 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4485 isl_space *dim_result = NULL;
4486 struct isl_basic_map *bmap;
4487 unsigned n_in, n_out, n, nparam, total, pos;
4488 struct isl_dim_map *dim_map1, *dim_map2;
4490 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4491 goto error;
4492 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_out,
4493 bmap2->dim, isl_dim_in))
4494 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4495 "spaces don't match", goto error);
4497 dim_result = isl_space_join(isl_space_copy(bmap1->dim),
4498 isl_space_copy(bmap2->dim));
4500 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4501 n_out = isl_basic_map_dim(bmap2, isl_dim_out);
4502 n = isl_basic_map_dim(bmap1, isl_dim_out);
4503 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4505 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
4506 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4507 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
4508 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4509 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
4510 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4511 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
4512 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
4513 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4514 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4515 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4517 bmap = isl_basic_map_alloc_space(dim_result,
4518 bmap1->n_div + bmap2->n_div + n,
4519 bmap1->n_eq + bmap2->n_eq,
4520 bmap1->n_ineq + bmap2->n_ineq);
4521 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4522 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4523 bmap = add_divs(bmap, n);
4524 bmap = isl_basic_map_simplify(bmap);
4525 bmap = isl_basic_map_drop_redundant_divs(bmap);
4526 return isl_basic_map_finalize(bmap);
4527 error:
4528 isl_basic_map_free(bmap1);
4529 isl_basic_map_free(bmap2);
4530 return NULL;
4533 struct isl_basic_set *isl_basic_set_apply(
4534 struct isl_basic_set *bset, struct isl_basic_map *bmap)
4536 if (!bset || !bmap)
4537 goto error;
4539 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
4540 goto error);
4542 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset),
4543 bmap));
4544 error:
4545 isl_basic_set_free(bset);
4546 isl_basic_map_free(bmap);
4547 return NULL;
4550 struct isl_basic_map *isl_basic_map_apply_domain(
4551 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4553 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4554 goto error;
4555 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_in,
4556 bmap2->dim, isl_dim_in))
4557 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4558 "spaces don't match", goto error);
4560 bmap1 = isl_basic_map_reverse(bmap1);
4561 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
4562 return isl_basic_map_reverse(bmap1);
4563 error:
4564 isl_basic_map_free(bmap1);
4565 isl_basic_map_free(bmap2);
4566 return NULL;
4569 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4570 * A \cap B -> f(A) + f(B)
4572 __isl_give isl_basic_map *isl_basic_map_sum(__isl_take isl_basic_map *bmap1,
4573 __isl_take isl_basic_map *bmap2)
4575 unsigned n_in, n_out, nparam, total, pos;
4576 struct isl_basic_map *bmap = NULL;
4577 struct isl_dim_map *dim_map1, *dim_map2;
4578 int i;
4580 if (!bmap1 || !bmap2)
4581 goto error;
4583 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
4584 goto error);
4586 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4587 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4588 n_out = isl_basic_map_dim(bmap1, isl_dim_out);
4590 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
4591 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4592 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
4593 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4594 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
4595 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4596 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4597 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
4598 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4599 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4600 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
4602 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
4603 bmap1->n_div + bmap2->n_div + 2 * n_out,
4604 bmap1->n_eq + bmap2->n_eq + n_out,
4605 bmap1->n_ineq + bmap2->n_ineq);
4606 for (i = 0; i < n_out; ++i) {
4607 int j = isl_basic_map_alloc_equality(bmap);
4608 if (j < 0)
4609 goto error;
4610 isl_seq_clr(bmap->eq[j], 1+total);
4611 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
4612 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
4613 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
4615 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4616 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4617 bmap = add_divs(bmap, 2 * n_out);
4619 bmap = isl_basic_map_simplify(bmap);
4620 return isl_basic_map_finalize(bmap);
4621 error:
4622 isl_basic_map_free(bmap);
4623 isl_basic_map_free(bmap1);
4624 isl_basic_map_free(bmap2);
4625 return NULL;
4628 /* Given two maps A -> f(A) and B -> g(B), construct a map
4629 * A \cap B -> f(A) + f(B)
4631 __isl_give isl_map *isl_map_sum(__isl_take isl_map *map1,
4632 __isl_take isl_map *map2)
4634 struct isl_map *result;
4635 int i, j;
4637 if (!map1 || !map2)
4638 goto error;
4640 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
4642 result = isl_map_alloc_space(isl_space_copy(map1->dim),
4643 map1->n * map2->n, 0);
4644 if (!result)
4645 goto error;
4646 for (i = 0; i < map1->n; ++i)
4647 for (j = 0; j < map2->n; ++j) {
4648 struct isl_basic_map *part;
4649 part = isl_basic_map_sum(
4650 isl_basic_map_copy(map1->p[i]),
4651 isl_basic_map_copy(map2->p[j]));
4652 if (isl_basic_map_is_empty(part))
4653 isl_basic_map_free(part);
4654 else
4655 result = isl_map_add_basic_map(result, part);
4656 if (!result)
4657 goto error;
4659 isl_map_free(map1);
4660 isl_map_free(map2);
4661 return result;
4662 error:
4663 isl_map_free(map1);
4664 isl_map_free(map2);
4665 return NULL;
4668 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
4669 __isl_take isl_set *set2)
4671 return set_from_map(isl_map_sum(set_to_map(set1), set_to_map(set2)));
4674 /* Given a basic map A -> f(A), construct A -> -f(A).
4676 __isl_give isl_basic_map *isl_basic_map_neg(__isl_take isl_basic_map *bmap)
4678 int i, j;
4679 unsigned off, n;
4681 bmap = isl_basic_map_cow(bmap);
4682 if (!bmap)
4683 return NULL;
4685 n = isl_basic_map_dim(bmap, isl_dim_out);
4686 off = isl_basic_map_offset(bmap, isl_dim_out);
4687 for (i = 0; i < bmap->n_eq; ++i)
4688 for (j = 0; j < n; ++j)
4689 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
4690 for (i = 0; i < bmap->n_ineq; ++i)
4691 for (j = 0; j < n; ++j)
4692 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
4693 for (i = 0; i < bmap->n_div; ++i)
4694 for (j = 0; j < n; ++j)
4695 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
4696 bmap = isl_basic_map_gauss(bmap, NULL);
4697 return isl_basic_map_finalize(bmap);
4700 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
4702 return isl_basic_map_neg(bset);
4705 /* Given a map A -> f(A), construct A -> -f(A).
4707 __isl_give isl_map *isl_map_neg(__isl_take isl_map *map)
4709 int i;
4711 map = isl_map_cow(map);
4712 if (!map)
4713 return NULL;
4715 for (i = 0; i < map->n; ++i) {
4716 map->p[i] = isl_basic_map_neg(map->p[i]);
4717 if (!map->p[i])
4718 goto error;
4721 return map;
4722 error:
4723 isl_map_free(map);
4724 return NULL;
4727 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
4729 return set_from_map(isl_map_neg(set_to_map(set)));
4732 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4733 * A -> floor(f(A)/d).
4735 __isl_give isl_basic_map *isl_basic_map_floordiv(__isl_take isl_basic_map *bmap,
4736 isl_int d)
4738 unsigned n_in, n_out, nparam, total, pos;
4739 struct isl_basic_map *result = NULL;
4740 struct isl_dim_map *dim_map;
4741 int i;
4743 if (!bmap)
4744 return NULL;
4746 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4747 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4748 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4750 total = nparam + n_in + n_out + bmap->n_div + n_out;
4751 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4752 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
4753 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
4754 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
4755 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
4757 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
4758 bmap->n_div + n_out,
4759 bmap->n_eq, bmap->n_ineq + 2 * n_out);
4760 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
4761 result = add_divs(result, n_out);
4762 for (i = 0; i < n_out; ++i) {
4763 int j;
4764 j = isl_basic_map_alloc_inequality(result);
4765 if (j < 0)
4766 goto error;
4767 isl_seq_clr(result->ineq[j], 1+total);
4768 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
4769 isl_int_set_si(result->ineq[j][1+pos+i], 1);
4770 j = isl_basic_map_alloc_inequality(result);
4771 if (j < 0)
4772 goto error;
4773 isl_seq_clr(result->ineq[j], 1+total);
4774 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
4775 isl_int_set_si(result->ineq[j][1+pos+i], -1);
4776 isl_int_sub_ui(result->ineq[j][0], d, 1);
4779 result = isl_basic_map_simplify(result);
4780 return isl_basic_map_finalize(result);
4781 error:
4782 isl_basic_map_free(result);
4783 return NULL;
4786 /* Given a map A -> f(A) and an integer d, construct a map
4787 * A -> floor(f(A)/d).
4789 __isl_give isl_map *isl_map_floordiv(__isl_take isl_map *map, isl_int d)
4791 int i;
4793 map = isl_map_cow(map);
4794 if (!map)
4795 return NULL;
4797 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4798 for (i = 0; i < map->n; ++i) {
4799 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
4800 if (!map->p[i])
4801 goto error;
4803 map = isl_map_unmark_normalized(map);
4805 return map;
4806 error:
4807 isl_map_free(map);
4808 return NULL;
4811 /* Given a map A -> f(A) and an integer d, construct a map
4812 * A -> floor(f(A)/d).
4814 __isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
4815 __isl_take isl_val *d)
4817 if (!map || !d)
4818 goto error;
4819 if (!isl_val_is_int(d))
4820 isl_die(isl_val_get_ctx(d), isl_error_invalid,
4821 "expecting integer denominator", goto error);
4822 map = isl_map_floordiv(map, d->n);
4823 isl_val_free(d);
4824 return map;
4825 error:
4826 isl_map_free(map);
4827 isl_val_free(d);
4828 return NULL;
4831 static __isl_give isl_basic_map *var_equal(__isl_take isl_basic_map *bmap,
4832 unsigned pos)
4834 int i;
4835 unsigned nparam;
4836 unsigned n_in;
4838 i = isl_basic_map_alloc_equality(bmap);
4839 if (i < 0)
4840 goto error;
4841 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4842 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4843 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
4844 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
4845 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
4846 return isl_basic_map_finalize(bmap);
4847 error:
4848 isl_basic_map_free(bmap);
4849 return NULL;
4852 /* Add a constraint to "bmap" expressing i_pos < o_pos
4854 static __isl_give isl_basic_map *var_less(__isl_take isl_basic_map *bmap,
4855 unsigned pos)
4857 int i;
4858 unsigned nparam;
4859 unsigned n_in;
4861 i = isl_basic_map_alloc_inequality(bmap);
4862 if (i < 0)
4863 goto error;
4864 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4865 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4866 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4867 isl_int_set_si(bmap->ineq[i][0], -1);
4868 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4869 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4870 return isl_basic_map_finalize(bmap);
4871 error:
4872 isl_basic_map_free(bmap);
4873 return NULL;
4876 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4878 static __isl_give isl_basic_map *var_less_or_equal(
4879 __isl_take isl_basic_map *bmap, unsigned pos)
4881 int i;
4882 unsigned nparam;
4883 unsigned n_in;
4885 i = isl_basic_map_alloc_inequality(bmap);
4886 if (i < 0)
4887 goto error;
4888 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4889 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4890 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4891 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4892 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4893 return isl_basic_map_finalize(bmap);
4894 error:
4895 isl_basic_map_free(bmap);
4896 return NULL;
4899 /* Add a constraint to "bmap" expressing i_pos > o_pos
4901 static __isl_give isl_basic_map *var_more(__isl_take isl_basic_map *bmap,
4902 unsigned pos)
4904 int i;
4905 unsigned nparam;
4906 unsigned n_in;
4908 i = isl_basic_map_alloc_inequality(bmap);
4909 if (i < 0)
4910 goto error;
4911 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4912 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4913 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4914 isl_int_set_si(bmap->ineq[i][0], -1);
4915 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4916 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4917 return isl_basic_map_finalize(bmap);
4918 error:
4919 isl_basic_map_free(bmap);
4920 return NULL;
4923 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4925 static __isl_give isl_basic_map *var_more_or_equal(
4926 __isl_take isl_basic_map *bmap, unsigned pos)
4928 int i;
4929 unsigned nparam;
4930 unsigned n_in;
4932 i = isl_basic_map_alloc_inequality(bmap);
4933 if (i < 0)
4934 goto error;
4935 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4936 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4937 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4938 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4939 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4940 return isl_basic_map_finalize(bmap);
4941 error:
4942 isl_basic_map_free(bmap);
4943 return NULL;
4946 __isl_give isl_basic_map *isl_basic_map_equal(
4947 __isl_take isl_space *dim, unsigned n_equal)
4949 int i;
4950 struct isl_basic_map *bmap;
4951 bmap = isl_basic_map_alloc_space(dim, 0, n_equal, 0);
4952 if (!bmap)
4953 return NULL;
4954 for (i = 0; i < n_equal && bmap; ++i)
4955 bmap = var_equal(bmap, i);
4956 return isl_basic_map_finalize(bmap);
4959 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4961 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *dim,
4962 unsigned pos)
4964 int i;
4965 struct isl_basic_map *bmap;
4966 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4967 if (!bmap)
4968 return NULL;
4969 for (i = 0; i < pos && bmap; ++i)
4970 bmap = var_equal(bmap, i);
4971 if (bmap)
4972 bmap = var_less(bmap, pos);
4973 return isl_basic_map_finalize(bmap);
4976 /* Return a relation on "dim" expressing i_[0..pos] <<= o_[0..pos]
4978 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
4979 __isl_take isl_space *dim, unsigned pos)
4981 int i;
4982 isl_basic_map *bmap;
4984 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4985 for (i = 0; i < pos; ++i)
4986 bmap = var_equal(bmap, i);
4987 bmap = var_less_or_equal(bmap, pos);
4988 return isl_basic_map_finalize(bmap);
4991 /* Return a relation on "dim" expressing i_pos > o_pos
4993 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *dim,
4994 unsigned pos)
4996 int i;
4997 struct isl_basic_map *bmap;
4998 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4999 if (!bmap)
5000 return NULL;
5001 for (i = 0; i < pos && bmap; ++i)
5002 bmap = var_equal(bmap, i);
5003 if (bmap)
5004 bmap = var_more(bmap, pos);
5005 return isl_basic_map_finalize(bmap);
5008 /* Return a relation on "dim" expressing i_[0..pos] >>= o_[0..pos]
5010 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
5011 __isl_take isl_space *dim, unsigned pos)
5013 int i;
5014 isl_basic_map *bmap;
5016 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
5017 for (i = 0; i < pos; ++i)
5018 bmap = var_equal(bmap, i);
5019 bmap = var_more_or_equal(bmap, pos);
5020 return isl_basic_map_finalize(bmap);
5023 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *dims,
5024 unsigned n, int equal)
5026 struct isl_map *map;
5027 int i;
5029 if (n == 0 && equal)
5030 return isl_map_universe(dims);
5032 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
5034 for (i = 0; i + 1 < n; ++i)
5035 map = isl_map_add_basic_map(map,
5036 isl_basic_map_less_at(isl_space_copy(dims), i));
5037 if (n > 0) {
5038 if (equal)
5039 map = isl_map_add_basic_map(map,
5040 isl_basic_map_less_or_equal_at(dims, n - 1));
5041 else
5042 map = isl_map_add_basic_map(map,
5043 isl_basic_map_less_at(dims, n - 1));
5044 } else
5045 isl_space_free(dims);
5047 return map;
5050 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *dims, int equal)
5052 if (!dims)
5053 return NULL;
5054 return map_lex_lte_first(dims, dims->n_out, equal);
5057 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
5059 return map_lex_lte_first(dim, n, 0);
5062 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
5064 return map_lex_lte_first(dim, n, 1);
5067 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
5069 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
5072 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
5074 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
5077 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *dims,
5078 unsigned n, int equal)
5080 struct isl_map *map;
5081 int i;
5083 if (n == 0 && equal)
5084 return isl_map_universe(dims);
5086 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
5088 for (i = 0; i + 1 < n; ++i)
5089 map = isl_map_add_basic_map(map,
5090 isl_basic_map_more_at(isl_space_copy(dims), i));
5091 if (n > 0) {
5092 if (equal)
5093 map = isl_map_add_basic_map(map,
5094 isl_basic_map_more_or_equal_at(dims, n - 1));
5095 else
5096 map = isl_map_add_basic_map(map,
5097 isl_basic_map_more_at(dims, n - 1));
5098 } else
5099 isl_space_free(dims);
5101 return map;
5104 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *dims, int equal)
5106 if (!dims)
5107 return NULL;
5108 return map_lex_gte_first(dims, dims->n_out, equal);
5111 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
5113 return map_lex_gte_first(dim, n, 0);
5116 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
5118 return map_lex_gte_first(dim, n, 1);
5121 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
5123 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
5126 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
5128 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
5131 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
5132 __isl_take isl_set *set2)
5134 isl_map *map;
5135 map = isl_map_lex_le(isl_set_get_space(set1));
5136 map = isl_map_intersect_domain(map, set1);
5137 map = isl_map_intersect_range(map, set2);
5138 return map;
5141 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
5142 __isl_take isl_set *set2)
5144 isl_map *map;
5145 map = isl_map_lex_lt(isl_set_get_space(set1));
5146 map = isl_map_intersect_domain(map, set1);
5147 map = isl_map_intersect_range(map, set2);
5148 return map;
5151 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
5152 __isl_take isl_set *set2)
5154 isl_map *map;
5155 map = isl_map_lex_ge(isl_set_get_space(set1));
5156 map = isl_map_intersect_domain(map, set1);
5157 map = isl_map_intersect_range(map, set2);
5158 return map;
5161 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
5162 __isl_take isl_set *set2)
5164 isl_map *map;
5165 map = isl_map_lex_gt(isl_set_get_space(set1));
5166 map = isl_map_intersect_domain(map, set1);
5167 map = isl_map_intersect_range(map, set2);
5168 return map;
5171 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
5172 __isl_take isl_map *map2)
5174 isl_map *map;
5175 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
5176 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5177 map = isl_map_apply_range(map, isl_map_reverse(map2));
5178 return map;
5181 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
5182 __isl_take isl_map *map2)
5184 isl_map *map;
5185 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
5186 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5187 map = isl_map_apply_range(map, isl_map_reverse(map2));
5188 return map;
5191 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
5192 __isl_take isl_map *map2)
5194 isl_map *map;
5195 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
5196 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5197 map = isl_map_apply_range(map, isl_map_reverse(map2));
5198 return map;
5201 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
5202 __isl_take isl_map *map2)
5204 isl_map *map;
5205 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
5206 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5207 map = isl_map_apply_range(map, isl_map_reverse(map2));
5208 return map;
5211 /* For a div d = floor(f/m), add the constraint
5213 * f - m d >= 0
5215 static isl_stat add_upper_div_constraint(__isl_keep isl_basic_map *bmap,
5216 unsigned pos, isl_int *div)
5218 int i;
5219 unsigned total = isl_basic_map_total_dim(bmap);
5221 i = isl_basic_map_alloc_inequality(bmap);
5222 if (i < 0)
5223 return isl_stat_error;
5224 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
5225 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
5227 return isl_stat_ok;
5230 /* For a div d = floor(f/m), add the constraint
5232 * -(f-(m-1)) + m d >= 0
5234 static isl_stat add_lower_div_constraint(__isl_keep isl_basic_map *bmap,
5235 unsigned pos, isl_int *div)
5237 int i;
5238 unsigned total = isl_basic_map_total_dim(bmap);
5240 i = isl_basic_map_alloc_inequality(bmap);
5241 if (i < 0)
5242 return isl_stat_error;
5243 isl_seq_neg(bmap->ineq[i], div + 1, 1 + total);
5244 isl_int_set(bmap->ineq[i][1 + pos], div[0]);
5245 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
5246 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
5248 return isl_stat_ok;
5251 /* For a div d = floor(f/m), add the constraints
5253 * f - m d >= 0
5254 * -(f-(m-1)) + m d >= 0
5256 * Note that the second constraint is the negation of
5258 * f - m d >= m
5260 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
5261 unsigned pos, isl_int *div)
5263 if (add_upper_div_constraint(bmap, pos, div) < 0)
5264 return -1;
5265 if (add_lower_div_constraint(bmap, pos, div) < 0)
5266 return -1;
5267 return 0;
5270 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
5271 unsigned pos, isl_int *div)
5273 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset),
5274 pos, div);
5277 int isl_basic_map_add_div_constraints(struct isl_basic_map *bmap, unsigned div)
5279 unsigned total = isl_basic_map_total_dim(bmap);
5280 unsigned div_pos = total - bmap->n_div + div;
5282 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
5283 bmap->div[div]);
5286 /* For each known div d = floor(f/m), add the constraints
5288 * f - m d >= 0
5289 * -(f-(m-1)) + m d >= 0
5291 * Remove duplicate constraints in case of some these div constraints
5292 * already appear in "bmap".
5294 __isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
5295 __isl_take isl_basic_map *bmap)
5297 unsigned n_div;
5299 if (!bmap)
5300 return NULL;
5301 n_div = isl_basic_map_dim(bmap, isl_dim_div);
5302 if (n_div == 0)
5303 return bmap;
5305 bmap = add_known_div_constraints(bmap);
5306 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
5307 bmap = isl_basic_map_finalize(bmap);
5308 return bmap;
5311 /* Add the div constraint of sign "sign" for div "div" of "bmap".
5313 * In particular, if this div is of the form d = floor(f/m),
5314 * then add the constraint
5316 * f - m d >= 0
5318 * if sign < 0 or the constraint
5320 * -(f-(m-1)) + m d >= 0
5322 * if sign > 0.
5324 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map *bmap,
5325 unsigned div, int sign)
5327 unsigned total;
5328 unsigned div_pos;
5330 if (!bmap)
5331 return -1;
5333 total = isl_basic_map_total_dim(bmap);
5334 div_pos = total - bmap->n_div + div;
5336 if (sign < 0)
5337 return add_upper_div_constraint(bmap, div_pos, bmap->div[div]);
5338 else
5339 return add_lower_div_constraint(bmap, div_pos, bmap->div[div]);
5342 __isl_give isl_basic_set *isl_basic_map_underlying_set(
5343 __isl_take isl_basic_map *bmap)
5345 if (!bmap)
5346 goto error;
5347 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
5348 bmap->n_div == 0 &&
5349 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
5350 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
5351 return bset_from_bmap(bmap);
5352 bmap = isl_basic_map_cow(bmap);
5353 if (!bmap)
5354 goto error;
5355 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
5356 if (!bmap->dim)
5357 goto error;
5358 bmap->extra -= bmap->n_div;
5359 bmap->n_div = 0;
5360 bmap = isl_basic_map_finalize(bmap);
5361 return bset_from_bmap(bmap);
5362 error:
5363 isl_basic_map_free(bmap);
5364 return NULL;
5367 __isl_give isl_basic_set *isl_basic_set_underlying_set(
5368 __isl_take isl_basic_set *bset)
5370 return isl_basic_map_underlying_set(bset_to_bmap(bset));
5373 /* Replace each element in "list" by the result of applying
5374 * isl_basic_map_underlying_set to the element.
5376 __isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
5377 __isl_take isl_basic_map_list *list)
5379 int i, n;
5381 if (!list)
5382 return NULL;
5384 n = isl_basic_map_list_n_basic_map(list);
5385 for (i = 0; i < n; ++i) {
5386 isl_basic_map *bmap;
5387 isl_basic_set *bset;
5389 bmap = isl_basic_map_list_get_basic_map(list, i);
5390 bset = isl_basic_set_underlying_set(bmap);
5391 list = isl_basic_set_list_set_basic_set(list, i, bset);
5394 return list;
5397 __isl_give isl_basic_map *isl_basic_map_overlying_set(
5398 __isl_take isl_basic_set *bset, __isl_take isl_basic_map *like)
5400 struct isl_basic_map *bmap;
5401 struct isl_ctx *ctx;
5402 unsigned total;
5403 int i;
5405 if (!bset || !like)
5406 goto error;
5407 ctx = bset->ctx;
5408 isl_assert(ctx, bset->n_div == 0, goto error);
5409 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
5410 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
5411 goto error);
5412 if (like->n_div == 0) {
5413 isl_space *space = isl_basic_map_get_space(like);
5414 isl_basic_map_free(like);
5415 return isl_basic_map_reset_space(bset, space);
5417 bset = isl_basic_set_cow(bset);
5418 if (!bset)
5419 goto error;
5420 total = bset->dim->n_out + bset->extra;
5421 bmap = bset_to_bmap(bset);
5422 isl_space_free(bmap->dim);
5423 bmap->dim = isl_space_copy(like->dim);
5424 if (!bmap->dim)
5425 goto error;
5426 bmap->n_div = like->n_div;
5427 bmap->extra += like->n_div;
5428 if (bmap->extra) {
5429 unsigned ltotal;
5430 isl_int **div;
5431 ltotal = total - bmap->extra + like->extra;
5432 if (ltotal > total)
5433 ltotal = total;
5434 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
5435 bmap->extra * (1 + 1 + total));
5436 if (isl_blk_is_error(bmap->block2))
5437 goto error;
5438 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
5439 if (!div)
5440 goto error;
5441 bmap->div = div;
5442 for (i = 0; i < bmap->extra; ++i)
5443 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
5444 for (i = 0; i < like->n_div; ++i) {
5445 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
5446 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
5448 bmap = isl_basic_map_add_known_div_constraints(bmap);
5450 isl_basic_map_free(like);
5451 bmap = isl_basic_map_simplify(bmap);
5452 bmap = isl_basic_map_finalize(bmap);
5453 return bmap;
5454 error:
5455 isl_basic_map_free(like);
5456 isl_basic_set_free(bset);
5457 return NULL;
5460 struct isl_basic_set *isl_basic_set_from_underlying_set(
5461 struct isl_basic_set *bset, struct isl_basic_set *like)
5463 return bset_from_bmap(isl_basic_map_overlying_set(bset,
5464 bset_to_bmap(like)));
5467 __isl_give isl_set *isl_map_underlying_set(__isl_take isl_map *map)
5469 int i;
5471 map = isl_map_cow(map);
5472 if (!map)
5473 return NULL;
5474 map->dim = isl_space_cow(map->dim);
5475 if (!map->dim)
5476 goto error;
5478 for (i = 1; i < map->n; ++i)
5479 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
5480 goto error);
5481 for (i = 0; i < map->n; ++i) {
5482 map->p[i] = bset_to_bmap(
5483 isl_basic_map_underlying_set(map->p[i]));
5484 if (!map->p[i])
5485 goto error;
5487 if (map->n == 0)
5488 map->dim = isl_space_underlying(map->dim, 0);
5489 else {
5490 isl_space_free(map->dim);
5491 map->dim = isl_space_copy(map->p[0]->dim);
5493 if (!map->dim)
5494 goto error;
5495 return set_from_map(map);
5496 error:
5497 isl_map_free(map);
5498 return NULL;
5501 /* Replace the space of "bmap" by "space".
5503 * If the space of "bmap" is identical to "space" (including the identifiers
5504 * of the input and output dimensions), then simply return the original input.
5506 __isl_give isl_basic_map *isl_basic_map_reset_space(
5507 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
5509 isl_bool equal;
5510 isl_space *bmap_space;
5512 bmap_space = isl_basic_map_peek_space(bmap);
5513 equal = isl_space_is_equal(bmap_space, space);
5514 if (equal >= 0 && equal)
5515 equal = isl_space_has_equal_ids(bmap_space, space);
5516 if (equal < 0)
5517 goto error;
5518 if (equal) {
5519 isl_space_free(space);
5520 return bmap;
5522 bmap = isl_basic_map_cow(bmap);
5523 if (!bmap || !space)
5524 goto error;
5526 isl_space_free(bmap->dim);
5527 bmap->dim = space;
5529 bmap = isl_basic_map_finalize(bmap);
5531 return bmap;
5532 error:
5533 isl_basic_map_free(bmap);
5534 isl_space_free(space);
5535 return NULL;
5538 __isl_give isl_basic_set *isl_basic_set_reset_space(
5539 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
5541 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset),
5542 dim));
5545 /* Check that the total dimensions of "map" and "space" are the same.
5547 static isl_stat check_map_space_equal_total_dim(__isl_keep isl_map *map,
5548 __isl_keep isl_space *space)
5550 unsigned dim1, dim2;
5552 if (!map || !space)
5553 return isl_stat_error;
5554 dim1 = isl_map_dim(map, isl_dim_all);
5555 dim2 = isl_space_dim(space, isl_dim_all);
5556 if (dim1 == dim2)
5557 return isl_stat_ok;
5558 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5559 "total dimensions do not match", return isl_stat_error);
5562 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
5563 __isl_take isl_space *dim)
5565 int i;
5567 map = isl_map_cow(map);
5568 if (!map || !dim)
5569 goto error;
5571 for (i = 0; i < map->n; ++i) {
5572 map->p[i] = isl_basic_map_reset_space(map->p[i],
5573 isl_space_copy(dim));
5574 if (!map->p[i])
5575 goto error;
5577 isl_space_free(map->dim);
5578 map->dim = dim;
5580 return map;
5581 error:
5582 isl_map_free(map);
5583 isl_space_free(dim);
5584 return NULL;
5587 /* Replace the space of "map" by "space", without modifying
5588 * the dimension of "map".
5590 * If the space of "map" is identical to "space" (including the identifiers
5591 * of the input and output dimensions), then simply return the original input.
5593 __isl_give isl_map *isl_map_reset_equal_dim_space(__isl_take isl_map *map,
5594 __isl_take isl_space *space)
5596 isl_bool equal;
5597 isl_space *map_space;
5599 map_space = isl_map_peek_space(map);
5600 equal = isl_space_is_equal(map_space, space);
5601 if (equal >= 0 && equal)
5602 equal = isl_space_has_equal_ids(map_space, space);
5603 if (equal < 0)
5604 goto error;
5605 if (equal) {
5606 isl_space_free(space);
5607 return map;
5609 if (check_map_space_equal_total_dim(map, space) < 0)
5610 goto error;
5611 return isl_map_reset_space(map, space);
5612 error:
5613 isl_map_free(map);
5614 isl_space_free(space);
5615 return NULL;
5618 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
5619 __isl_take isl_space *dim)
5621 return set_from_map(isl_map_reset_space(set_to_map(set), dim));
5624 /* Compute the parameter domain of the given basic set.
5626 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
5628 isl_bool is_params;
5629 isl_space *space;
5630 unsigned n;
5632 is_params = isl_basic_set_is_params(bset);
5633 if (is_params < 0)
5634 return isl_basic_set_free(bset);
5635 if (is_params)
5636 return bset;
5638 n = isl_basic_set_dim(bset, isl_dim_set);
5639 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
5640 space = isl_basic_set_get_space(bset);
5641 space = isl_space_params(space);
5642 bset = isl_basic_set_reset_space(bset, space);
5643 return bset;
5646 /* Construct a zero-dimensional basic set with the given parameter domain.
5648 __isl_give isl_basic_set *isl_basic_set_from_params(
5649 __isl_take isl_basic_set *bset)
5651 isl_space *space;
5652 space = isl_basic_set_get_space(bset);
5653 space = isl_space_set_from_params(space);
5654 bset = isl_basic_set_reset_space(bset, space);
5655 return bset;
5658 /* Compute the parameter domain of the given set.
5660 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
5662 isl_space *space;
5663 unsigned n;
5665 if (isl_set_is_params(set))
5666 return set;
5668 n = isl_set_dim(set, isl_dim_set);
5669 set = isl_set_project_out(set, isl_dim_set, 0, n);
5670 space = isl_set_get_space(set);
5671 space = isl_space_params(space);
5672 set = isl_set_reset_space(set, space);
5673 return set;
5676 /* Construct a zero-dimensional set with the given parameter domain.
5678 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
5680 isl_space *space;
5681 space = isl_set_get_space(set);
5682 space = isl_space_set_from_params(space);
5683 set = isl_set_reset_space(set, space);
5684 return set;
5687 /* Compute the parameter domain of the given map.
5689 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
5691 isl_space *space;
5692 unsigned n;
5694 n = isl_map_dim(map, isl_dim_in);
5695 map = isl_map_project_out(map, isl_dim_in, 0, n);
5696 n = isl_map_dim(map, isl_dim_out);
5697 map = isl_map_project_out(map, isl_dim_out, 0, n);
5698 space = isl_map_get_space(map);
5699 space = isl_space_params(space);
5700 map = isl_map_reset_space(map, space);
5701 return map;
5704 struct isl_basic_set *isl_basic_map_domain(struct isl_basic_map *bmap)
5706 isl_space *space;
5707 unsigned n_out;
5709 if (!bmap)
5710 return NULL;
5711 space = isl_space_domain(isl_basic_map_get_space(bmap));
5713 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5714 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
5716 return isl_basic_map_reset_space(bmap, space);
5719 isl_bool isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
5721 if (!bmap)
5722 return isl_bool_error;
5723 return isl_space_may_be_set(bmap->dim);
5726 /* Is this basic map actually a set?
5727 * Users should never call this function. Outside of isl,
5728 * the type should indicate whether something is a set or a map.
5730 isl_bool isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
5732 if (!bmap)
5733 return isl_bool_error;
5734 return isl_space_is_set(bmap->dim);
5737 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
5739 isl_bool is_set;
5741 is_set = isl_basic_map_is_set(bmap);
5742 if (is_set < 0)
5743 goto error;
5744 if (is_set)
5745 return bmap;
5746 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
5747 error:
5748 isl_basic_map_free(bmap);
5749 return NULL;
5752 __isl_give isl_basic_map *isl_basic_map_domain_map(
5753 __isl_take isl_basic_map *bmap)
5755 int i;
5756 isl_space *dim;
5757 isl_basic_map *domain;
5758 int nparam, n_in, n_out;
5760 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5761 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5762 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5764 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
5765 domain = isl_basic_map_universe(dim);
5767 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5768 bmap = isl_basic_map_apply_range(bmap, domain);
5769 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
5771 for (i = 0; i < n_in; ++i)
5772 bmap = isl_basic_map_equate(bmap, isl_dim_in, i,
5773 isl_dim_out, i);
5775 bmap = isl_basic_map_gauss(bmap, NULL);
5776 return isl_basic_map_finalize(bmap);
5779 __isl_give isl_basic_map *isl_basic_map_range_map(
5780 __isl_take isl_basic_map *bmap)
5782 int i;
5783 isl_space *dim;
5784 isl_basic_map *range;
5785 int nparam, n_in, n_out;
5787 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5788 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5789 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5791 dim = isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap)));
5792 range = isl_basic_map_universe(dim);
5794 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5795 bmap = isl_basic_map_apply_range(bmap, range);
5796 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
5798 for (i = 0; i < n_out; ++i)
5799 bmap = isl_basic_map_equate(bmap, isl_dim_in, n_in + i,
5800 isl_dim_out, i);
5802 bmap = isl_basic_map_gauss(bmap, NULL);
5803 return isl_basic_map_finalize(bmap);
5806 int isl_map_may_be_set(__isl_keep isl_map *map)
5808 if (!map)
5809 return -1;
5810 return isl_space_may_be_set(map->dim);
5813 /* Is this map actually a set?
5814 * Users should never call this function. Outside of isl,
5815 * the type should indicate whether something is a set or a map.
5817 isl_bool isl_map_is_set(__isl_keep isl_map *map)
5819 if (!map)
5820 return isl_bool_error;
5821 return isl_space_is_set(map->dim);
5824 __isl_give isl_set *isl_map_range(__isl_take isl_map *map)
5826 int i;
5827 isl_bool is_set;
5828 struct isl_set *set;
5830 is_set = isl_map_is_set(map);
5831 if (is_set < 0)
5832 goto error;
5833 if (is_set)
5834 return set_from_map(map);
5836 map = isl_map_cow(map);
5837 if (!map)
5838 goto error;
5840 set = set_from_map(map);
5841 set->dim = isl_space_range(set->dim);
5842 if (!set->dim)
5843 goto error;
5844 for (i = 0; i < map->n; ++i) {
5845 set->p[i] = isl_basic_map_range(map->p[i]);
5846 if (!set->p[i])
5847 goto error;
5849 ISL_F_CLR(set, ISL_MAP_DISJOINT);
5850 ISL_F_CLR(set, ISL_SET_NORMALIZED);
5851 return set;
5852 error:
5853 isl_map_free(map);
5854 return NULL;
5857 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
5859 int i;
5861 map = isl_map_cow(map);
5862 if (!map)
5863 return NULL;
5865 map->dim = isl_space_domain_map(map->dim);
5866 if (!map->dim)
5867 goto error;
5868 for (i = 0; i < map->n; ++i) {
5869 map->p[i] = isl_basic_map_domain_map(map->p[i]);
5870 if (!map->p[i])
5871 goto error;
5873 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5874 map = isl_map_unmark_normalized(map);
5875 return map;
5876 error:
5877 isl_map_free(map);
5878 return NULL;
5881 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
5883 int i;
5884 isl_space *range_dim;
5886 map = isl_map_cow(map);
5887 if (!map)
5888 return NULL;
5890 range_dim = isl_space_range(isl_map_get_space(map));
5891 range_dim = isl_space_from_range(range_dim);
5892 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
5893 map->dim = isl_space_join(map->dim, range_dim);
5894 if (!map->dim)
5895 goto error;
5896 for (i = 0; i < map->n; ++i) {
5897 map->p[i] = isl_basic_map_range_map(map->p[i]);
5898 if (!map->p[i])
5899 goto error;
5901 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5902 map = isl_map_unmark_normalized(map);
5903 return map;
5904 error:
5905 isl_map_free(map);
5906 return NULL;
5909 /* Given a wrapped map of the form A[B -> C],
5910 * return the map A[B -> C] -> B.
5912 __isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
5914 isl_id *id;
5915 isl_map *map;
5917 if (!set)
5918 return NULL;
5919 if (!isl_set_has_tuple_id(set))
5920 return isl_map_domain_map(isl_set_unwrap(set));
5922 id = isl_set_get_tuple_id(set);
5923 map = isl_map_domain_map(isl_set_unwrap(set));
5924 map = isl_map_set_tuple_id(map, isl_dim_in, id);
5926 return map;
5929 __isl_give isl_basic_map *isl_basic_map_from_domain(
5930 __isl_take isl_basic_set *bset)
5932 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
5935 __isl_give isl_basic_map *isl_basic_map_from_range(
5936 __isl_take isl_basic_set *bset)
5938 isl_space *space;
5939 space = isl_basic_set_get_space(bset);
5940 space = isl_space_from_range(space);
5941 bset = isl_basic_set_reset_space(bset, space);
5942 return bset_to_bmap(bset);
5945 /* Create a relation with the given set as range.
5946 * The domain of the created relation is a zero-dimensional
5947 * flat anonymous space.
5949 __isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
5951 isl_space *space;
5952 space = isl_set_get_space(set);
5953 space = isl_space_from_range(space);
5954 set = isl_set_reset_space(set, space);
5955 return set_to_map(set);
5958 /* Create a relation with the given set as domain.
5959 * The range of the created relation is a zero-dimensional
5960 * flat anonymous space.
5962 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
5964 return isl_map_reverse(isl_map_from_range(set));
5967 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
5968 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
5970 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
5973 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
5974 __isl_take isl_set *range)
5976 return isl_map_apply_range(isl_map_reverse(domain), range);
5979 /* Return a newly allocated isl_map with given space and flags and
5980 * room for "n" basic maps.
5981 * Make sure that all cached information is cleared.
5983 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *space, int n,
5984 unsigned flags)
5986 struct isl_map *map;
5988 if (!space)
5989 return NULL;
5990 if (n < 0)
5991 isl_die(space->ctx, isl_error_internal,
5992 "negative number of basic maps", goto error);
5993 map = isl_calloc(space->ctx, struct isl_map,
5994 sizeof(struct isl_map) +
5995 (n - 1) * sizeof(struct isl_basic_map *));
5996 if (!map)
5997 goto error;
5999 map->ctx = space->ctx;
6000 isl_ctx_ref(map->ctx);
6001 map->ref = 1;
6002 map->size = n;
6003 map->n = 0;
6004 map->dim = space;
6005 map->flags = flags;
6006 return map;
6007 error:
6008 isl_space_free(space);
6009 return NULL;
6012 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *space)
6014 struct isl_basic_map *bmap;
6015 bmap = isl_basic_map_alloc_space(space, 0, 1, 0);
6016 bmap = isl_basic_map_set_to_empty(bmap);
6017 return bmap;
6020 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *space)
6022 struct isl_basic_set *bset;
6023 bset = isl_basic_set_alloc_space(space, 0, 1, 0);
6024 bset = isl_basic_set_set_to_empty(bset);
6025 return bset;
6028 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *space)
6030 struct isl_basic_map *bmap;
6031 bmap = isl_basic_map_alloc_space(space, 0, 0, 0);
6032 bmap = isl_basic_map_finalize(bmap);
6033 return bmap;
6036 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *space)
6038 struct isl_basic_set *bset;
6039 bset = isl_basic_set_alloc_space(space, 0, 0, 0);
6040 bset = isl_basic_set_finalize(bset);
6041 return bset;
6044 __isl_give isl_basic_map *isl_basic_map_nat_universe(__isl_take isl_space *dim)
6046 int i;
6047 unsigned total = isl_space_dim(dim, isl_dim_all);
6048 isl_basic_map *bmap;
6050 bmap= isl_basic_map_alloc_space(dim, 0, 0, total);
6051 for (i = 0; i < total; ++i) {
6052 int k = isl_basic_map_alloc_inequality(bmap);
6053 if (k < 0)
6054 goto error;
6055 isl_seq_clr(bmap->ineq[k], 1 + total);
6056 isl_int_set_si(bmap->ineq[k][1 + i], 1);
6058 return bmap;
6059 error:
6060 isl_basic_map_free(bmap);
6061 return NULL;
6064 __isl_give isl_basic_set *isl_basic_set_nat_universe(__isl_take isl_space *dim)
6066 return isl_basic_map_nat_universe(dim);
6069 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
6071 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
6074 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
6076 return isl_map_nat_universe(dim);
6079 __isl_give isl_map *isl_map_empty(__isl_take isl_space *space)
6081 return isl_map_alloc_space(space, 0, ISL_MAP_DISJOINT);
6084 __isl_give isl_set *isl_set_empty(__isl_take isl_space *space)
6086 return isl_set_alloc_space(space, 0, ISL_MAP_DISJOINT);
6089 __isl_give isl_map *isl_map_universe(__isl_take isl_space *space)
6091 struct isl_map *map;
6092 if (!space)
6093 return NULL;
6094 map = isl_map_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6095 map = isl_map_add_basic_map(map, isl_basic_map_universe(space));
6096 return map;
6099 __isl_give isl_set *isl_set_universe(__isl_take isl_space *space)
6101 struct isl_set *set;
6102 if (!space)
6103 return NULL;
6104 set = isl_set_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6105 set = isl_set_add_basic_set(set, isl_basic_set_universe(space));
6106 return set;
6109 struct isl_map *isl_map_dup(struct isl_map *map)
6111 int i;
6112 struct isl_map *dup;
6114 if (!map)
6115 return NULL;
6116 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
6117 for (i = 0; i < map->n; ++i)
6118 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
6119 return dup;
6122 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
6123 __isl_take isl_basic_map *bmap)
6125 if (!bmap || !map)
6126 goto error;
6127 if (isl_basic_map_plain_is_empty(bmap)) {
6128 isl_basic_map_free(bmap);
6129 return map;
6131 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
6132 isl_assert(map->ctx, map->n < map->size, goto error);
6133 map->p[map->n] = bmap;
6134 map->n++;
6135 map = isl_map_unmark_normalized(map);
6136 return map;
6137 error:
6138 if (map)
6139 isl_map_free(map);
6140 if (bmap)
6141 isl_basic_map_free(bmap);
6142 return NULL;
6145 __isl_null isl_map *isl_map_free(__isl_take isl_map *map)
6147 int i;
6149 if (!map)
6150 return NULL;
6152 if (--map->ref > 0)
6153 return NULL;
6155 clear_caches(map);
6156 isl_ctx_deref(map->ctx);
6157 for (i = 0; i < map->n; ++i)
6158 isl_basic_map_free(map->p[i]);
6159 isl_space_free(map->dim);
6160 free(map);
6162 return NULL;
6165 static struct isl_basic_map *isl_basic_map_fix_pos_si(
6166 struct isl_basic_map *bmap, unsigned pos, int value)
6168 int j;
6170 bmap = isl_basic_map_cow(bmap);
6171 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6172 j = isl_basic_map_alloc_equality(bmap);
6173 if (j < 0)
6174 goto error;
6175 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6176 isl_int_set_si(bmap->eq[j][pos], -1);
6177 isl_int_set_si(bmap->eq[j][0], value);
6178 bmap = isl_basic_map_simplify(bmap);
6179 return isl_basic_map_finalize(bmap);
6180 error:
6181 isl_basic_map_free(bmap);
6182 return NULL;
6185 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
6186 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
6188 int j;
6190 bmap = isl_basic_map_cow(bmap);
6191 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6192 j = isl_basic_map_alloc_equality(bmap);
6193 if (j < 0)
6194 goto error;
6195 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
6196 isl_int_set_si(bmap->eq[j][pos], -1);
6197 isl_int_set(bmap->eq[j][0], value);
6198 bmap = isl_basic_map_simplify(bmap);
6199 return isl_basic_map_finalize(bmap);
6200 error:
6201 isl_basic_map_free(bmap);
6202 return NULL;
6205 __isl_give isl_basic_map *isl_basic_map_fix_si(__isl_take isl_basic_map *bmap,
6206 enum isl_dim_type type, unsigned pos, int value)
6208 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6209 return isl_basic_map_free(bmap);
6210 return isl_basic_map_fix_pos_si(bmap,
6211 isl_basic_map_offset(bmap, type) + pos, value);
6214 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
6215 enum isl_dim_type type, unsigned pos, isl_int value)
6217 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6218 return isl_basic_map_free(bmap);
6219 return isl_basic_map_fix_pos(bmap,
6220 isl_basic_map_offset(bmap, type) + pos, value);
6223 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
6224 * to be equal to "v".
6226 __isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
6227 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6229 if (!bmap || !v)
6230 goto error;
6231 if (!isl_val_is_int(v))
6232 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
6233 "expecting integer value", goto error);
6234 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6235 goto error;
6236 pos += isl_basic_map_offset(bmap, type);
6237 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
6238 isl_val_free(v);
6239 return bmap;
6240 error:
6241 isl_basic_map_free(bmap);
6242 isl_val_free(v);
6243 return NULL;
6246 /* Fix the value of the variable at position "pos" of type "type" of "bset"
6247 * to be equal to "v".
6249 __isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
6250 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6252 return isl_basic_map_fix_val(bset, type, pos, v);
6255 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
6256 enum isl_dim_type type, unsigned pos, int value)
6258 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6259 type, pos, value));
6262 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
6263 enum isl_dim_type type, unsigned pos, isl_int value)
6265 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset),
6266 type, pos, value));
6269 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
6270 unsigned input, int value)
6272 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
6275 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
6276 unsigned dim, int value)
6278 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6279 isl_dim_set, dim, value));
6282 /* Remove the basic map at position "i" from "map" if this basic map
6283 * is (obviously) empty.
6285 static __isl_give isl_map *remove_if_empty(__isl_take isl_map *map, int i)
6287 isl_bool empty;
6289 if (!map)
6290 return NULL;
6292 empty = isl_basic_map_plain_is_empty(map->p[i]);
6293 if (empty < 0)
6294 return isl_map_free(map);
6295 if (!empty)
6296 return map;
6298 isl_basic_map_free(map->p[i]);
6299 map->n--;
6300 if (i != map->n) {
6301 map->p[i] = map->p[map->n];
6302 map = isl_map_unmark_normalized(map);
6306 return map;
6309 /* Perform "fn" on each basic map of "map", where we may not be holding
6310 * the only reference to "map".
6311 * In particular, "fn" should be a semantics preserving operation
6312 * that we want to apply to all copies of "map". We therefore need
6313 * to be careful not to modify "map" in a way that breaks "map"
6314 * in case anything goes wrong.
6316 __isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
6317 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
6319 struct isl_basic_map *bmap;
6320 int i;
6322 if (!map)
6323 return NULL;
6325 for (i = map->n - 1; i >= 0; --i) {
6326 bmap = isl_basic_map_copy(map->p[i]);
6327 bmap = fn(bmap);
6328 if (!bmap)
6329 goto error;
6330 isl_basic_map_free(map->p[i]);
6331 map->p[i] = bmap;
6332 map = remove_if_empty(map, i);
6333 if (!map)
6334 return NULL;
6337 return map;
6338 error:
6339 isl_map_free(map);
6340 return NULL;
6343 __isl_give isl_map *isl_map_fix_si(__isl_take isl_map *map,
6344 enum isl_dim_type type, unsigned pos, int value)
6346 int i;
6348 map = isl_map_cow(map);
6349 if (!map)
6350 return NULL;
6352 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6353 for (i = map->n - 1; i >= 0; --i) {
6354 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
6355 map = remove_if_empty(map, i);
6356 if (!map)
6357 return NULL;
6359 map = isl_map_unmark_normalized(map);
6360 return map;
6361 error:
6362 isl_map_free(map);
6363 return NULL;
6366 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
6367 enum isl_dim_type type, unsigned pos, int value)
6369 return set_from_map(isl_map_fix_si(set_to_map(set), type, pos, value));
6372 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
6373 enum isl_dim_type type, unsigned pos, isl_int value)
6375 int i;
6377 map = isl_map_cow(map);
6378 if (!map)
6379 return NULL;
6381 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6382 for (i = 0; i < map->n; ++i) {
6383 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
6384 if (!map->p[i])
6385 goto error;
6387 map = isl_map_unmark_normalized(map);
6388 return map;
6389 error:
6390 isl_map_free(map);
6391 return NULL;
6394 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
6395 enum isl_dim_type type, unsigned pos, isl_int value)
6397 return set_from_map(isl_map_fix(set_to_map(set), type, pos, value));
6400 /* Fix the value of the variable at position "pos" of type "type" of "map"
6401 * to be equal to "v".
6403 __isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
6404 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6406 int i;
6408 map = isl_map_cow(map);
6409 if (!map || !v)
6410 goto error;
6412 if (!isl_val_is_int(v))
6413 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6414 "expecting integer value", goto error);
6415 if (pos >= isl_map_dim(map, type))
6416 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6417 "index out of bounds", goto error);
6418 for (i = map->n - 1; i >= 0; --i) {
6419 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
6420 isl_val_copy(v));
6421 map = remove_if_empty(map, i);
6422 if (!map)
6423 goto error;
6425 map = isl_map_unmark_normalized(map);
6426 isl_val_free(v);
6427 return map;
6428 error:
6429 isl_map_free(map);
6430 isl_val_free(v);
6431 return NULL;
6434 /* Fix the value of the variable at position "pos" of type "type" of "set"
6435 * to be equal to "v".
6437 __isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
6438 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6440 return isl_map_fix_val(set, type, pos, v);
6443 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
6444 unsigned input, int value)
6446 return isl_map_fix_si(map, isl_dim_in, input, value);
6449 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
6451 return set_from_map(isl_map_fix_si(set_to_map(set),
6452 isl_dim_set, dim, value));
6455 static __isl_give isl_basic_map *basic_map_bound_si(
6456 __isl_take isl_basic_map *bmap,
6457 enum isl_dim_type type, unsigned pos, int value, int upper)
6459 int j;
6461 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6462 return isl_basic_map_free(bmap);
6463 pos += isl_basic_map_offset(bmap, type);
6464 bmap = isl_basic_map_cow(bmap);
6465 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6466 j = isl_basic_map_alloc_inequality(bmap);
6467 if (j < 0)
6468 goto error;
6469 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6470 if (upper) {
6471 isl_int_set_si(bmap->ineq[j][pos], -1);
6472 isl_int_set_si(bmap->ineq[j][0], value);
6473 } else {
6474 isl_int_set_si(bmap->ineq[j][pos], 1);
6475 isl_int_set_si(bmap->ineq[j][0], -value);
6477 bmap = isl_basic_map_simplify(bmap);
6478 return isl_basic_map_finalize(bmap);
6479 error:
6480 isl_basic_map_free(bmap);
6481 return NULL;
6484 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
6485 __isl_take isl_basic_map *bmap,
6486 enum isl_dim_type type, unsigned pos, int value)
6488 return basic_map_bound_si(bmap, type, pos, value, 0);
6491 /* Constrain the values of the given dimension to be no greater than "value".
6493 __isl_give isl_basic_map *isl_basic_map_upper_bound_si(
6494 __isl_take isl_basic_map *bmap,
6495 enum isl_dim_type type, unsigned pos, int value)
6497 return basic_map_bound_si(bmap, type, pos, value, 1);
6500 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
6501 enum isl_dim_type type, unsigned pos, int value, int upper)
6503 int i;
6505 map = isl_map_cow(map);
6506 if (!map)
6507 return NULL;
6509 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6510 for (i = 0; i < map->n; ++i) {
6511 map->p[i] = basic_map_bound_si(map->p[i],
6512 type, pos, value, upper);
6513 if (!map->p[i])
6514 goto error;
6516 map = isl_map_unmark_normalized(map);
6517 return map;
6518 error:
6519 isl_map_free(map);
6520 return NULL;
6523 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
6524 enum isl_dim_type type, unsigned pos, int value)
6526 return map_bound_si(map, type, pos, value, 0);
6529 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
6530 enum isl_dim_type type, unsigned pos, int value)
6532 return map_bound_si(map, type, pos, value, 1);
6535 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
6536 enum isl_dim_type type, unsigned pos, int value)
6538 return set_from_map(isl_map_lower_bound_si(set_to_map(set),
6539 type, pos, value));
6542 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
6543 enum isl_dim_type type, unsigned pos, int value)
6545 return isl_map_upper_bound_si(set, type, pos, value);
6548 /* Bound the given variable of "bmap" from below (or above is "upper"
6549 * is set) to "value".
6551 static __isl_give isl_basic_map *basic_map_bound(
6552 __isl_take isl_basic_map *bmap,
6553 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6555 int j;
6557 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6558 return isl_basic_map_free(bmap);
6559 pos += isl_basic_map_offset(bmap, type);
6560 bmap = isl_basic_map_cow(bmap);
6561 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6562 j = isl_basic_map_alloc_inequality(bmap);
6563 if (j < 0)
6564 goto error;
6565 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6566 if (upper) {
6567 isl_int_set_si(bmap->ineq[j][pos], -1);
6568 isl_int_set(bmap->ineq[j][0], value);
6569 } else {
6570 isl_int_set_si(bmap->ineq[j][pos], 1);
6571 isl_int_neg(bmap->ineq[j][0], value);
6573 bmap = isl_basic_map_simplify(bmap);
6574 return isl_basic_map_finalize(bmap);
6575 error:
6576 isl_basic_map_free(bmap);
6577 return NULL;
6580 /* Bound the given variable of "map" from below (or above is "upper"
6581 * is set) to "value".
6583 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
6584 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6586 int i;
6588 map = isl_map_cow(map);
6589 if (!map)
6590 return NULL;
6592 if (pos >= isl_map_dim(map, type))
6593 isl_die(map->ctx, isl_error_invalid,
6594 "index out of bounds", goto error);
6595 for (i = map->n - 1; i >= 0; --i) {
6596 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
6597 map = remove_if_empty(map, i);
6598 if (!map)
6599 return NULL;
6601 map = isl_map_unmark_normalized(map);
6602 return map;
6603 error:
6604 isl_map_free(map);
6605 return NULL;
6608 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
6609 enum isl_dim_type type, unsigned pos, isl_int value)
6611 return map_bound(map, type, pos, value, 0);
6614 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
6615 enum isl_dim_type type, unsigned pos, isl_int value)
6617 return map_bound(map, type, pos, value, 1);
6620 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
6621 enum isl_dim_type type, unsigned pos, isl_int value)
6623 return isl_map_lower_bound(set, type, pos, value);
6626 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
6627 enum isl_dim_type type, unsigned pos, isl_int value)
6629 return isl_map_upper_bound(set, type, pos, value);
6632 /* Force the values of the variable at position "pos" of type "type" of "set"
6633 * to be no smaller than "value".
6635 __isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
6636 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6638 if (!value)
6639 goto error;
6640 if (!isl_val_is_int(value))
6641 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6642 "expecting integer value", goto error);
6643 set = isl_set_lower_bound(set, type, pos, value->n);
6644 isl_val_free(value);
6645 return set;
6646 error:
6647 isl_val_free(value);
6648 isl_set_free(set);
6649 return NULL;
6652 /* Force the values of the variable at position "pos" of type "type" of "set"
6653 * to be no greater than "value".
6655 __isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
6656 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6658 if (!value)
6659 goto error;
6660 if (!isl_val_is_int(value))
6661 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6662 "expecting integer value", goto error);
6663 set = isl_set_upper_bound(set, type, pos, value->n);
6664 isl_val_free(value);
6665 return set;
6666 error:
6667 isl_val_free(value);
6668 isl_set_free(set);
6669 return NULL;
6672 /* Bound the given variable of "bset" from below (or above is "upper"
6673 * is set) to "value".
6675 static __isl_give isl_basic_set *isl_basic_set_bound(
6676 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6677 isl_int value, int upper)
6679 return bset_from_bmap(basic_map_bound(bset_to_bmap(bset),
6680 type, pos, value, upper));
6683 /* Bound the given variable of "bset" from below (or above is "upper"
6684 * is set) to "value".
6686 static __isl_give isl_basic_set *isl_basic_set_bound_val(
6687 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6688 __isl_take isl_val *value, int upper)
6690 if (!value)
6691 goto error;
6692 if (!isl_val_is_int(value))
6693 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
6694 "expecting integer value", goto error);
6695 bset = isl_basic_set_bound(bset, type, pos, value->n, upper);
6696 isl_val_free(value);
6697 return bset;
6698 error:
6699 isl_val_free(value);
6700 isl_basic_set_free(bset);
6701 return NULL;
6704 /* Bound the given variable of "bset" from below to "value".
6706 __isl_give isl_basic_set *isl_basic_set_lower_bound_val(
6707 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6708 __isl_take isl_val *value)
6710 return isl_basic_set_bound_val(bset, type, pos, value, 0);
6713 /* Bound the given variable of "bset" from above to "value".
6715 __isl_give isl_basic_set *isl_basic_set_upper_bound_val(
6716 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
6717 __isl_take isl_val *value)
6719 return isl_basic_set_bound_val(bset, type, pos, value, 1);
6722 __isl_give isl_map *isl_map_reverse(__isl_take isl_map *map)
6724 int i;
6726 map = isl_map_cow(map);
6727 if (!map)
6728 return NULL;
6730 map->dim = isl_space_reverse(map->dim);
6731 if (!map->dim)
6732 goto error;
6733 for (i = 0; i < map->n; ++i) {
6734 map->p[i] = isl_basic_map_reverse(map->p[i]);
6735 if (!map->p[i])
6736 goto error;
6738 map = isl_map_unmark_normalized(map);
6739 return map;
6740 error:
6741 isl_map_free(map);
6742 return NULL;
6745 #undef TYPE
6746 #define TYPE isl_pw_multi_aff
6747 #undef SUFFIX
6748 #define SUFFIX _pw_multi_aff
6749 #undef EMPTY
6750 #define EMPTY isl_pw_multi_aff_empty
6751 #undef ADD
6752 #define ADD isl_pw_multi_aff_union_add
6753 #include "isl_map_lexopt_templ.c"
6755 /* Given a map "map", compute the lexicographically minimal
6756 * (or maximal) image element for each domain element in dom,
6757 * in the form of an isl_pw_multi_aff.
6758 * If "empty" is not NULL, then set *empty to those elements in dom that
6759 * do not have an image element.
6760 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6761 * should be computed over the domain of "map". "empty" is also NULL
6762 * in this case.
6764 * We first compute the lexicographically minimal or maximal element
6765 * in the first basic map. This results in a partial solution "res"
6766 * and a subset "todo" of dom that still need to be handled.
6767 * We then consider each of the remaining maps in "map" and successively
6768 * update both "res" and "todo".
6769 * If "empty" is NULL, then the todo sets are not needed and therefore
6770 * also not computed.
6772 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
6773 __isl_take isl_map *map, __isl_take isl_set *dom,
6774 __isl_give isl_set **empty, unsigned flags)
6776 int i;
6777 int full;
6778 isl_pw_multi_aff *res;
6779 isl_set *todo;
6781 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6782 if (!map || (!full && !dom))
6783 goto error;
6785 if (isl_map_plain_is_empty(map)) {
6786 if (empty)
6787 *empty = dom;
6788 else
6789 isl_set_free(dom);
6790 return isl_pw_multi_aff_from_map(map);
6793 res = basic_map_partial_lexopt_pw_multi_aff(
6794 isl_basic_map_copy(map->p[0]),
6795 isl_set_copy(dom), empty, flags);
6797 if (empty)
6798 todo = *empty;
6799 for (i = 1; i < map->n; ++i) {
6800 isl_pw_multi_aff *res_i;
6802 res_i = basic_map_partial_lexopt_pw_multi_aff(
6803 isl_basic_map_copy(map->p[i]),
6804 isl_set_copy(dom), empty, flags);
6806 if (ISL_FL_ISSET(flags, ISL_OPT_MAX))
6807 res = isl_pw_multi_aff_union_lexmax(res, res_i);
6808 else
6809 res = isl_pw_multi_aff_union_lexmin(res, res_i);
6811 if (empty)
6812 todo = isl_set_intersect(todo, *empty);
6815 isl_set_free(dom);
6816 isl_map_free(map);
6818 if (empty)
6819 *empty = todo;
6821 return res;
6822 error:
6823 if (empty)
6824 *empty = NULL;
6825 isl_set_free(dom);
6826 isl_map_free(map);
6827 return NULL;
6830 #undef TYPE
6831 #define TYPE isl_map
6832 #undef SUFFIX
6833 #define SUFFIX
6834 #undef EMPTY
6835 #define EMPTY isl_map_empty
6836 #undef ADD
6837 #define ADD isl_map_union_disjoint
6838 #include "isl_map_lexopt_templ.c"
6840 /* Given a map "map", compute the lexicographically minimal
6841 * (or maximal) image element for each domain element in "dom",
6842 * in the form of an isl_map.
6843 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6844 * do not have an image element.
6845 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6846 * should be computed over the domain of "map". "empty" is also NULL
6847 * in this case.
6849 * If the input consists of more than one disjunct, then first
6850 * compute the desired result in the form of an isl_pw_multi_aff and
6851 * then convert that into an isl_map.
6853 * This function used to have an explicit implementation in terms
6854 * of isl_maps, but it would continually intersect the domains of
6855 * partial results with the complement of the domain of the next
6856 * partial solution, potentially leading to an explosion in the number
6857 * of disjuncts if there are several disjuncts in the input.
6858 * An even earlier implementation of this function would look for
6859 * better results in the domain of the partial result and for extra
6860 * results in the complement of this domain, which would lead to
6861 * even more splintering.
6863 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
6864 __isl_take isl_map *map, __isl_take isl_set *dom,
6865 __isl_give isl_set **empty, unsigned flags)
6867 int full;
6868 struct isl_map *res;
6869 isl_pw_multi_aff *pma;
6871 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6872 if (!map || (!full && !dom))
6873 goto error;
6875 if (isl_map_plain_is_empty(map)) {
6876 if (empty)
6877 *empty = dom;
6878 else
6879 isl_set_free(dom);
6880 return map;
6883 if (map->n == 1) {
6884 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
6885 dom, empty, flags);
6886 isl_map_free(map);
6887 return res;
6890 pma = isl_map_partial_lexopt_aligned_pw_multi_aff(map, dom, empty,
6891 flags);
6892 return isl_map_from_pw_multi_aff(pma);
6893 error:
6894 if (empty)
6895 *empty = NULL;
6896 isl_set_free(dom);
6897 isl_map_free(map);
6898 return NULL;
6901 __isl_give isl_map *isl_map_partial_lexmax(
6902 __isl_take isl_map *map, __isl_take isl_set *dom,
6903 __isl_give isl_set **empty)
6905 return isl_map_partial_lexopt(map, dom, empty, ISL_OPT_MAX);
6908 __isl_give isl_map *isl_map_partial_lexmin(
6909 __isl_take isl_map *map, __isl_take isl_set *dom,
6910 __isl_give isl_set **empty)
6912 return isl_map_partial_lexopt(map, dom, empty, 0);
6915 __isl_give isl_set *isl_set_partial_lexmin(
6916 __isl_take isl_set *set, __isl_take isl_set *dom,
6917 __isl_give isl_set **empty)
6919 return set_from_map(isl_map_partial_lexmin(set_to_map(set),
6920 dom, empty));
6923 __isl_give isl_set *isl_set_partial_lexmax(
6924 __isl_take isl_set *set, __isl_take isl_set *dom,
6925 __isl_give isl_set **empty)
6927 return set_from_map(isl_map_partial_lexmax(set_to_map(set),
6928 dom, empty));
6931 /* Compute the lexicographic minimum (or maximum if "flags" includes
6932 * ISL_OPT_MAX) of "bset" over its parametric domain.
6934 __isl_give isl_set *isl_basic_set_lexopt(__isl_take isl_basic_set *bset,
6935 unsigned flags)
6937 return isl_basic_map_lexopt(bset, flags);
6940 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
6942 return isl_basic_map_lexopt(bmap, ISL_OPT_MAX);
6945 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
6947 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset)));
6950 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
6952 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset)));
6955 /* Compute the lexicographic minimum of "bset" over its parametric domain
6956 * for the purpose of quantifier elimination.
6957 * That is, find an explicit representation for all the existentially
6958 * quantified variables in "bset" by computing their lexicographic
6959 * minimum.
6961 static __isl_give isl_set *isl_basic_set_lexmin_compute_divs(
6962 __isl_take isl_basic_set *bset)
6964 return isl_basic_set_lexopt(bset, ISL_OPT_QE);
6967 /* Given a basic map with one output dimension, compute the minimum or
6968 * maximum of that dimension as an isl_pw_aff.
6970 * Compute the optimum as a lexicographic optimum over the single
6971 * output dimension and extract the single isl_pw_aff from the result.
6973 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
6974 int max)
6976 isl_pw_multi_aff *pma;
6977 isl_pw_aff *pwaff;
6979 bmap = isl_basic_map_copy(bmap);
6980 pma = isl_basic_map_lexopt_pw_multi_aff(bmap, max ? ISL_OPT_MAX : 0);
6981 pwaff = isl_pw_multi_aff_get_pw_aff(pma, 0);
6982 isl_pw_multi_aff_free(pma);
6984 return pwaff;
6987 /* Compute the minimum or maximum of the given output dimension
6988 * as a function of the parameters and the input dimensions,
6989 * but independently of the other output dimensions.
6991 * We first project out the other output dimension and then compute
6992 * the "lexicographic" maximum in each basic map, combining the results
6993 * using isl_pw_aff_union_max.
6995 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
6996 int max)
6998 int i;
6999 isl_pw_aff *pwaff;
7000 unsigned n_out;
7002 n_out = isl_map_dim(map, isl_dim_out);
7003 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
7004 map = isl_map_project_out(map, isl_dim_out, 0, pos);
7005 if (!map)
7006 return NULL;
7008 if (map->n == 0) {
7009 isl_space *dim = isl_map_get_space(map);
7010 isl_map_free(map);
7011 return isl_pw_aff_empty(dim);
7014 pwaff = basic_map_dim_opt(map->p[0], max);
7015 for (i = 1; i < map->n; ++i) {
7016 isl_pw_aff *pwaff_i;
7018 pwaff_i = basic_map_dim_opt(map->p[i], max);
7019 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
7022 isl_map_free(map);
7024 return pwaff;
7027 /* Compute the minimum of the given output dimension as a function of the
7028 * parameters and input dimensions, but independently of
7029 * the other output dimensions.
7031 __isl_give isl_pw_aff *isl_map_dim_min(__isl_take isl_map *map, int pos)
7033 return map_dim_opt(map, pos, 0);
7036 /* Compute the maximum of the given output dimension as a function of the
7037 * parameters and input dimensions, but independently of
7038 * the other output dimensions.
7040 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
7042 return map_dim_opt(map, pos, 1);
7045 /* Compute the minimum or maximum of the given set dimension
7046 * as a function of the parameters,
7047 * but independently of the other set dimensions.
7049 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
7050 int max)
7052 return map_dim_opt(set, pos, max);
7055 /* Compute the maximum of the given set dimension as a function of the
7056 * parameters, but independently of the other set dimensions.
7058 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
7060 return set_dim_opt(set, pos, 1);
7063 /* Compute the minimum of the given set dimension as a function of the
7064 * parameters, but independently of the other set dimensions.
7066 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
7068 return set_dim_opt(set, pos, 0);
7071 /* Apply a preimage specified by "mat" on the parameters of "bset".
7072 * bset is assumed to have only parameters and divs.
7074 static __isl_give isl_basic_set *basic_set_parameter_preimage(
7075 __isl_take isl_basic_set *bset, __isl_take isl_mat *mat)
7077 unsigned nparam;
7079 if (!bset || !mat)
7080 goto error;
7082 bset->dim = isl_space_cow(bset->dim);
7083 if (!bset->dim)
7084 goto error;
7086 nparam = isl_basic_set_dim(bset, isl_dim_param);
7088 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
7090 bset->dim->nparam = 0;
7091 bset->dim->n_out = nparam;
7092 bset = isl_basic_set_preimage(bset, mat);
7093 if (bset) {
7094 bset->dim->nparam = bset->dim->n_out;
7095 bset->dim->n_out = 0;
7097 return bset;
7098 error:
7099 isl_mat_free(mat);
7100 isl_basic_set_free(bset);
7101 return NULL;
7104 /* Apply a preimage specified by "mat" on the parameters of "set".
7105 * set is assumed to have only parameters and divs.
7107 static __isl_give isl_set *set_parameter_preimage(__isl_take isl_set *set,
7108 __isl_take isl_mat *mat)
7110 isl_space *space;
7111 unsigned nparam;
7113 if (!set || !mat)
7114 goto error;
7116 nparam = isl_set_dim(set, isl_dim_param);
7118 if (mat->n_row != 1 + nparam)
7119 isl_die(isl_set_get_ctx(set), isl_error_internal,
7120 "unexpected number of rows", goto error);
7122 space = isl_set_get_space(set);
7123 space = isl_space_move_dims(space, isl_dim_set, 0,
7124 isl_dim_param, 0, nparam);
7125 set = isl_set_reset_space(set, space);
7126 set = isl_set_preimage(set, mat);
7127 nparam = isl_set_dim(set, isl_dim_out);
7128 space = isl_set_get_space(set);
7129 space = isl_space_move_dims(space, isl_dim_param, 0,
7130 isl_dim_out, 0, nparam);
7131 set = isl_set_reset_space(set, space);
7132 return set;
7133 error:
7134 isl_mat_free(mat);
7135 isl_set_free(set);
7136 return NULL;
7139 /* Intersect the basic set "bset" with the affine space specified by the
7140 * equalities in "eq".
7142 static __isl_give isl_basic_set *basic_set_append_equalities(
7143 __isl_take isl_basic_set *bset, __isl_take isl_mat *eq)
7145 int i, k;
7146 unsigned len;
7148 if (!bset || !eq)
7149 goto error;
7151 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
7152 eq->n_row, 0);
7153 if (!bset)
7154 goto error;
7156 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
7157 for (i = 0; i < eq->n_row; ++i) {
7158 k = isl_basic_set_alloc_equality(bset);
7159 if (k < 0)
7160 goto error;
7161 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
7162 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
7164 isl_mat_free(eq);
7166 bset = isl_basic_set_gauss(bset, NULL);
7167 bset = isl_basic_set_finalize(bset);
7169 return bset;
7170 error:
7171 isl_mat_free(eq);
7172 isl_basic_set_free(bset);
7173 return NULL;
7176 /* Intersect the set "set" with the affine space specified by the
7177 * equalities in "eq".
7179 static struct isl_set *set_append_equalities(struct isl_set *set,
7180 struct isl_mat *eq)
7182 int i;
7184 if (!set || !eq)
7185 goto error;
7187 for (i = 0; i < set->n; ++i) {
7188 set->p[i] = basic_set_append_equalities(set->p[i],
7189 isl_mat_copy(eq));
7190 if (!set->p[i])
7191 goto error;
7193 isl_mat_free(eq);
7194 return set;
7195 error:
7196 isl_mat_free(eq);
7197 isl_set_free(set);
7198 return NULL;
7201 /* Given a basic set "bset" that only involves parameters and existentially
7202 * quantified variables, return the index of the first equality
7203 * that only involves parameters. If there is no such equality then
7204 * return bset->n_eq.
7206 * This function assumes that isl_basic_set_gauss has been called on "bset".
7208 static int first_parameter_equality(__isl_keep isl_basic_set *bset)
7210 int i, j;
7211 unsigned nparam, n_div;
7213 if (!bset)
7214 return -1;
7216 nparam = isl_basic_set_dim(bset, isl_dim_param);
7217 n_div = isl_basic_set_dim(bset, isl_dim_div);
7219 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
7220 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
7221 ++i;
7224 return i;
7227 /* Compute an explicit representation for the existentially quantified
7228 * variables in "bset" by computing the "minimal value" of the set
7229 * variables. Since there are no set variables, the computation of
7230 * the minimal value essentially computes an explicit representation
7231 * of the non-empty part(s) of "bset".
7233 * The input only involves parameters and existentially quantified variables.
7234 * All equalities among parameters have been removed.
7236 * Since the existentially quantified variables in the result are in general
7237 * going to be different from those in the input, we first replace
7238 * them by the minimal number of variables based on their equalities.
7239 * This should simplify the parametric integer programming.
7241 static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
7243 isl_morph *morph1, *morph2;
7244 isl_set *set;
7245 unsigned n;
7247 if (!bset)
7248 return NULL;
7249 if (bset->n_eq == 0)
7250 return isl_basic_set_lexmin_compute_divs(bset);
7252 morph1 = isl_basic_set_parameter_compression(bset);
7253 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
7254 bset = isl_basic_set_lift(bset);
7255 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
7256 bset = isl_morph_basic_set(morph2, bset);
7257 n = isl_basic_set_dim(bset, isl_dim_set);
7258 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
7260 set = isl_basic_set_lexmin_compute_divs(bset);
7262 set = isl_morph_set(isl_morph_inverse(morph1), set);
7264 return set;
7267 /* Project the given basic set onto its parameter domain, possibly introducing
7268 * new, explicit, existential variables in the constraints.
7269 * The input has parameters and (possibly implicit) existential variables.
7270 * The output has the same parameters, but only
7271 * explicit existentially quantified variables.
7273 * The actual projection is performed by pip, but pip doesn't seem
7274 * to like equalities very much, so we first remove the equalities
7275 * among the parameters by performing a variable compression on
7276 * the parameters. Afterward, an inverse transformation is performed
7277 * and the equalities among the parameters are inserted back in.
7279 * The variable compression on the parameters may uncover additional
7280 * equalities that were only implicit before. We therefore check
7281 * if there are any new parameter equalities in the result and
7282 * if so recurse. The removal of parameter equalities is required
7283 * for the parameter compression performed by base_compute_divs.
7285 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
7287 int i;
7288 struct isl_mat *eq;
7289 struct isl_mat *T, *T2;
7290 struct isl_set *set;
7291 unsigned nparam;
7293 bset = isl_basic_set_cow(bset);
7294 if (!bset)
7295 return NULL;
7297 if (bset->n_eq == 0)
7298 return base_compute_divs(bset);
7300 bset = isl_basic_set_gauss(bset, NULL);
7301 if (!bset)
7302 return NULL;
7303 if (isl_basic_set_plain_is_empty(bset))
7304 return isl_set_from_basic_set(bset);
7306 i = first_parameter_equality(bset);
7307 if (i == bset->n_eq)
7308 return base_compute_divs(bset);
7310 nparam = isl_basic_set_dim(bset, isl_dim_param);
7311 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
7312 0, 1 + nparam);
7313 eq = isl_mat_cow(eq);
7314 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
7315 if (T && T->n_col == 0) {
7316 isl_mat_free(T);
7317 isl_mat_free(T2);
7318 isl_mat_free(eq);
7319 bset = isl_basic_set_set_to_empty(bset);
7320 return isl_set_from_basic_set(bset);
7322 bset = basic_set_parameter_preimage(bset, T);
7324 i = first_parameter_equality(bset);
7325 if (!bset)
7326 set = NULL;
7327 else if (i == bset->n_eq)
7328 set = base_compute_divs(bset);
7329 else
7330 set = parameter_compute_divs(bset);
7331 set = set_parameter_preimage(set, T2);
7332 set = set_append_equalities(set, eq);
7333 return set;
7336 /* Insert the divs from "ls" before those of "bmap".
7338 * The number of columns is not changed, which means that the last
7339 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7340 * The caller is responsible for removing the same number of dimensions
7341 * from the space of "bmap".
7343 static __isl_give isl_basic_map *insert_divs_from_local_space(
7344 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
7346 int i;
7347 int n_div;
7348 int old_n_div;
7350 n_div = isl_local_space_dim(ls, isl_dim_div);
7351 if (n_div == 0)
7352 return bmap;
7354 old_n_div = bmap->n_div;
7355 bmap = insert_div_rows(bmap, n_div);
7356 if (!bmap)
7357 return NULL;
7359 for (i = 0; i < n_div; ++i) {
7360 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
7361 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
7364 return bmap;
7367 /* Replace the space of "bmap" by the space and divs of "ls".
7369 * If "ls" has any divs, then we simplify the result since we may
7370 * have discovered some additional equalities that could simplify
7371 * the div expressions.
7373 static __isl_give isl_basic_map *basic_replace_space_by_local_space(
7374 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
7376 int n_div;
7378 bmap = isl_basic_map_cow(bmap);
7379 if (!bmap || !ls)
7380 goto error;
7382 n_div = isl_local_space_dim(ls, isl_dim_div);
7383 bmap = insert_divs_from_local_space(bmap, ls);
7384 if (!bmap)
7385 goto error;
7387 isl_space_free(bmap->dim);
7388 bmap->dim = isl_local_space_get_space(ls);
7389 if (!bmap->dim)
7390 goto error;
7392 isl_local_space_free(ls);
7393 if (n_div > 0)
7394 bmap = isl_basic_map_simplify(bmap);
7395 bmap = isl_basic_map_finalize(bmap);
7396 return bmap;
7397 error:
7398 isl_basic_map_free(bmap);
7399 isl_local_space_free(ls);
7400 return NULL;
7403 /* Replace the space of "map" by the space and divs of "ls".
7405 static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
7406 __isl_take isl_local_space *ls)
7408 int i;
7410 map = isl_map_cow(map);
7411 if (!map || !ls)
7412 goto error;
7414 for (i = 0; i < map->n; ++i) {
7415 map->p[i] = basic_replace_space_by_local_space(map->p[i],
7416 isl_local_space_copy(ls));
7417 if (!map->p[i])
7418 goto error;
7420 isl_space_free(map->dim);
7421 map->dim = isl_local_space_get_space(ls);
7422 if (!map->dim)
7423 goto error;
7425 isl_local_space_free(ls);
7426 return map;
7427 error:
7428 isl_local_space_free(ls);
7429 isl_map_free(map);
7430 return NULL;
7433 /* Compute an explicit representation for the existentially
7434 * quantified variables for which do not know any explicit representation yet.
7436 * We first sort the existentially quantified variables so that the
7437 * existentially quantified variables for which we already have an explicit
7438 * representation are placed before those for which we do not.
7439 * The input dimensions, the output dimensions and the existentially
7440 * quantified variables for which we already have an explicit
7441 * representation are then turned into parameters.
7442 * compute_divs returns a map with the same parameters and
7443 * no input or output dimensions and the dimension specification
7444 * is reset to that of the input, including the existentially quantified
7445 * variables for which we already had an explicit representation.
7447 static struct isl_map *compute_divs(struct isl_basic_map *bmap)
7449 struct isl_basic_set *bset;
7450 struct isl_set *set;
7451 struct isl_map *map;
7452 isl_space *dim;
7453 isl_local_space *ls;
7454 unsigned nparam;
7455 unsigned n_in;
7456 unsigned n_out;
7457 int n_known;
7458 int i;
7460 bmap = isl_basic_map_sort_divs(bmap);
7461 bmap = isl_basic_map_cow(bmap);
7462 if (!bmap)
7463 return NULL;
7465 n_known = isl_basic_map_first_unknown_div(bmap);
7466 if (n_known < 0)
7467 return isl_map_from_basic_map(isl_basic_map_free(bmap));
7469 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7470 n_in = isl_basic_map_dim(bmap, isl_dim_in);
7471 n_out = isl_basic_map_dim(bmap, isl_dim_out);
7472 dim = isl_space_set_alloc(bmap->ctx,
7473 nparam + n_in + n_out + n_known, 0);
7474 if (!dim)
7475 goto error;
7477 ls = isl_basic_map_get_local_space(bmap);
7478 ls = isl_local_space_drop_dims(ls, isl_dim_div,
7479 n_known, bmap->n_div - n_known);
7480 if (n_known > 0) {
7481 for (i = n_known; i < bmap->n_div; ++i)
7482 swap_div(bmap, i - n_known, i);
7483 bmap->n_div -= n_known;
7484 bmap->extra -= n_known;
7486 bmap = isl_basic_map_reset_space(bmap, dim);
7487 bset = bset_from_bmap(bmap);
7489 set = parameter_compute_divs(bset);
7490 map = set_to_map(set);
7491 map = replace_space_by_local_space(map, ls);
7493 return map;
7494 error:
7495 isl_basic_map_free(bmap);
7496 return NULL;
7499 /* Remove the explicit representation of local variable "div",
7500 * if there is any.
7502 __isl_give isl_basic_map *isl_basic_map_mark_div_unknown(
7503 __isl_take isl_basic_map *bmap, int div)
7505 isl_bool unknown;
7507 unknown = isl_basic_map_div_is_marked_unknown(bmap, div);
7508 if (unknown < 0)
7509 return isl_basic_map_free(bmap);
7510 if (unknown)
7511 return bmap;
7513 bmap = isl_basic_map_cow(bmap);
7514 if (!bmap)
7515 return NULL;
7516 isl_int_set_si(bmap->div[div][0], 0);
7517 return bmap;
7520 /* Is local variable "div" of "bmap" marked as not having an explicit
7521 * representation?
7522 * Note that even if "div" is not marked in this way and therefore
7523 * has an explicit representation, this representation may still
7524 * depend (indirectly) on other local variables that do not
7525 * have an explicit representation.
7527 isl_bool isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map *bmap,
7528 int div)
7530 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
7531 return isl_bool_error;
7532 return isl_int_is_zero(bmap->div[div][0]);
7535 /* Return the position of the first local variable that does not
7536 * have an explicit representation.
7537 * Return the total number of local variables if they all have
7538 * an explicit representation.
7539 * Return -1 on error.
7541 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map *bmap)
7543 int i;
7545 if (!bmap)
7546 return -1;
7548 for (i = 0; i < bmap->n_div; ++i) {
7549 if (!isl_basic_map_div_is_known(bmap, i))
7550 return i;
7552 return bmap->n_div;
7555 /* Return the position of the first local variable that does not
7556 * have an explicit representation.
7557 * Return the total number of local variables if they all have
7558 * an explicit representation.
7559 * Return -1 on error.
7561 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set *bset)
7563 return isl_basic_map_first_unknown_div(bset);
7566 /* Does "bmap" have an explicit representation for all local variables?
7568 isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
7570 int first, n;
7572 n = isl_basic_map_dim(bmap, isl_dim_div);
7573 first = isl_basic_map_first_unknown_div(bmap);
7574 if (first < 0)
7575 return isl_bool_error;
7576 return first == n;
7579 /* Do all basic maps in "map" have an explicit representation
7580 * for all local variables?
7582 isl_bool isl_map_divs_known(__isl_keep isl_map *map)
7584 int i;
7586 if (!map)
7587 return isl_bool_error;
7589 for (i = 0; i < map->n; ++i) {
7590 int known = isl_basic_map_divs_known(map->p[i]);
7591 if (known <= 0)
7592 return known;
7595 return isl_bool_true;
7598 /* If bmap contains any unknown divs, then compute explicit
7599 * expressions for them. However, this computation may be
7600 * quite expensive, so first try to remove divs that aren't
7601 * strictly needed.
7603 __isl_give isl_map *isl_basic_map_compute_divs(__isl_take isl_basic_map *bmap)
7605 int known;
7606 struct isl_map *map;
7608 known = isl_basic_map_divs_known(bmap);
7609 if (known < 0)
7610 goto error;
7611 if (known)
7612 return isl_map_from_basic_map(bmap);
7614 bmap = isl_basic_map_drop_redundant_divs(bmap);
7616 known = isl_basic_map_divs_known(bmap);
7617 if (known < 0)
7618 goto error;
7619 if (known)
7620 return isl_map_from_basic_map(bmap);
7622 map = compute_divs(bmap);
7623 return map;
7624 error:
7625 isl_basic_map_free(bmap);
7626 return NULL;
7629 __isl_give isl_map *isl_map_compute_divs(__isl_take isl_map *map)
7631 int i;
7632 int known;
7633 struct isl_map *res;
7635 if (!map)
7636 return NULL;
7637 if (map->n == 0)
7638 return map;
7640 known = isl_map_divs_known(map);
7641 if (known < 0) {
7642 isl_map_free(map);
7643 return NULL;
7645 if (known)
7646 return map;
7648 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
7649 for (i = 1 ; i < map->n; ++i) {
7650 struct isl_map *r2;
7651 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
7652 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
7653 res = isl_map_union_disjoint(res, r2);
7654 else
7655 res = isl_map_union(res, r2);
7657 isl_map_free(map);
7659 return res;
7662 __isl_give isl_set *isl_basic_set_compute_divs(__isl_take isl_basic_set *bset)
7664 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset)));
7667 struct isl_set *isl_set_compute_divs(struct isl_set *set)
7669 return set_from_map(isl_map_compute_divs(set_to_map(set)));
7672 __isl_give isl_set *isl_map_domain(__isl_take isl_map *map)
7674 int i;
7675 struct isl_set *set;
7677 if (!map)
7678 goto error;
7680 map = isl_map_cow(map);
7681 if (!map)
7682 return NULL;
7684 set = set_from_map(map);
7685 set->dim = isl_space_domain(set->dim);
7686 if (!set->dim)
7687 goto error;
7688 for (i = 0; i < map->n; ++i) {
7689 set->p[i] = isl_basic_map_domain(map->p[i]);
7690 if (!set->p[i])
7691 goto error;
7693 ISL_F_CLR(set, ISL_MAP_DISJOINT);
7694 ISL_F_CLR(set, ISL_SET_NORMALIZED);
7695 return set;
7696 error:
7697 isl_map_free(map);
7698 return NULL;
7701 /* Return the union of "map1" and "map2", where we assume for now that
7702 * "map1" and "map2" are disjoint. Note that the basic maps inside
7703 * "map1" or "map2" may not be disjoint from each other.
7704 * Also note that this function is also called from isl_map_union,
7705 * which takes care of handling the situation where "map1" and "map2"
7706 * may not be disjoint.
7708 * If one of the inputs is empty, we can simply return the other input.
7709 * Similarly, if one of the inputs is universal, then it is equal to the union.
7711 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
7712 __isl_take isl_map *map2)
7714 int i;
7715 unsigned flags = 0;
7716 struct isl_map *map = NULL;
7717 int is_universe;
7719 if (!map1 || !map2)
7720 goto error;
7722 if (!isl_space_is_equal(map1->dim, map2->dim))
7723 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
7724 "spaces don't match", goto error);
7726 if (map1->n == 0) {
7727 isl_map_free(map1);
7728 return map2;
7730 if (map2->n == 0) {
7731 isl_map_free(map2);
7732 return map1;
7735 is_universe = isl_map_plain_is_universe(map1);
7736 if (is_universe < 0)
7737 goto error;
7738 if (is_universe) {
7739 isl_map_free(map2);
7740 return map1;
7743 is_universe = isl_map_plain_is_universe(map2);
7744 if (is_universe < 0)
7745 goto error;
7746 if (is_universe) {
7747 isl_map_free(map1);
7748 return map2;
7751 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
7752 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
7753 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7755 map = isl_map_alloc_space(isl_space_copy(map1->dim),
7756 map1->n + map2->n, flags);
7757 if (!map)
7758 goto error;
7759 for (i = 0; i < map1->n; ++i) {
7760 map = isl_map_add_basic_map(map,
7761 isl_basic_map_copy(map1->p[i]));
7762 if (!map)
7763 goto error;
7765 for (i = 0; i < map2->n; ++i) {
7766 map = isl_map_add_basic_map(map,
7767 isl_basic_map_copy(map2->p[i]));
7768 if (!map)
7769 goto error;
7771 isl_map_free(map1);
7772 isl_map_free(map2);
7773 return map;
7774 error:
7775 isl_map_free(map);
7776 isl_map_free(map1);
7777 isl_map_free(map2);
7778 return NULL;
7781 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7782 * guaranteed to be disjoint by the caller.
7784 * Note that this functions is called from within isl_map_make_disjoint,
7785 * so we have to be careful not to touch the constraints of the inputs
7786 * in any way.
7788 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
7789 __isl_take isl_map *map2)
7791 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
7794 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7795 * not be disjoint. The parameters are assumed to have been aligned.
7797 * We currently simply call map_union_disjoint, the internal operation
7798 * of which does not really depend on the inputs being disjoint.
7799 * If the result contains more than one basic map, then we clear
7800 * the disjoint flag since the result may contain basic maps from
7801 * both inputs and these are not guaranteed to be disjoint.
7803 * As a special case, if "map1" and "map2" are obviously equal,
7804 * then we simply return "map1".
7806 static __isl_give isl_map *map_union_aligned(__isl_take isl_map *map1,
7807 __isl_take isl_map *map2)
7809 int equal;
7811 if (!map1 || !map2)
7812 goto error;
7814 equal = isl_map_plain_is_equal(map1, map2);
7815 if (equal < 0)
7816 goto error;
7817 if (equal) {
7818 isl_map_free(map2);
7819 return map1;
7822 map1 = map_union_disjoint(map1, map2);
7823 if (!map1)
7824 return NULL;
7825 if (map1->n > 1)
7826 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
7827 return map1;
7828 error:
7829 isl_map_free(map1);
7830 isl_map_free(map2);
7831 return NULL;
7834 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7835 * not be disjoint.
7837 __isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
7838 __isl_take isl_map *map2)
7840 return isl_map_align_params_map_map_and(map1, map2, &map_union_aligned);
7843 __isl_give isl_set *isl_set_union_disjoint(
7844 __isl_take isl_set *set1, __isl_take isl_set *set2)
7846 return set_from_map(isl_map_union_disjoint(set_to_map(set1),
7847 set_to_map(set2)));
7850 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
7852 return set_from_map(isl_map_union(set_to_map(set1), set_to_map(set2)));
7855 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7856 * the results.
7858 * "map" and "set" are assumed to be compatible and non-NULL.
7860 static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
7861 __isl_take isl_set *set,
7862 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
7863 __isl_take isl_basic_set *bset))
7865 unsigned flags = 0;
7866 struct isl_map *result;
7867 int i, j;
7869 if (isl_set_plain_is_universe(set)) {
7870 isl_set_free(set);
7871 return map;
7874 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
7875 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
7876 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7878 result = isl_map_alloc_space(isl_space_copy(map->dim),
7879 map->n * set->n, flags);
7880 for (i = 0; result && i < map->n; ++i)
7881 for (j = 0; j < set->n; ++j) {
7882 result = isl_map_add_basic_map(result,
7883 fn(isl_basic_map_copy(map->p[i]),
7884 isl_basic_set_copy(set->p[j])));
7885 if (!result)
7886 break;
7889 isl_map_free(map);
7890 isl_set_free(set);
7891 return result;
7894 static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
7895 __isl_take isl_set *set)
7897 isl_bool ok;
7899 ok = isl_map_compatible_range(map, set);
7900 if (ok < 0)
7901 goto error;
7902 if (!ok)
7903 isl_die(set->ctx, isl_error_invalid,
7904 "incompatible spaces", goto error);
7906 return map_intersect_set(map, set, &isl_basic_map_intersect_range);
7907 error:
7908 isl_map_free(map);
7909 isl_set_free(set);
7910 return NULL;
7913 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
7914 __isl_take isl_set *set)
7916 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
7919 static __isl_give isl_map *map_intersect_domain(__isl_take isl_map *map,
7920 __isl_take isl_set *set)
7922 isl_bool ok;
7924 ok = isl_map_compatible_domain(map, set);
7925 if (ok < 0)
7926 goto error;
7927 if (!ok)
7928 isl_die(set->ctx, isl_error_invalid,
7929 "incompatible spaces", goto error);
7931 return map_intersect_set(map, set, &isl_basic_map_intersect_domain);
7932 error:
7933 isl_map_free(map);
7934 isl_set_free(set);
7935 return NULL;
7938 __isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
7939 __isl_take isl_set *set)
7941 return isl_map_align_params_map_map_and(map, set,
7942 &map_intersect_domain);
7945 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7946 * in the space B -> C, return the intersection.
7947 * The parameters are assumed to have been aligned.
7949 * The map "factor" is first extended to a map living in the space
7950 * [A -> B] -> C and then a regular intersection is computed.
7952 static __isl_give isl_map *map_intersect_domain_factor_range(
7953 __isl_take isl_map *map, __isl_take isl_map *factor)
7955 isl_space *space;
7956 isl_map *ext_factor;
7958 space = isl_space_domain_factor_domain(isl_map_get_space(map));
7959 ext_factor = isl_map_universe(space);
7960 ext_factor = isl_map_domain_product(ext_factor, factor);
7961 return map_intersect(map, ext_factor);
7964 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7965 * in the space B -> C, return the intersection.
7967 __isl_give isl_map *isl_map_intersect_domain_factor_range(
7968 __isl_take isl_map *map, __isl_take isl_map *factor)
7970 return isl_map_align_params_map_map_and(map, factor,
7971 &map_intersect_domain_factor_range);
7974 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
7975 * in the space A -> C, return the intersection.
7977 * The map "factor" is first extended to a map living in the space
7978 * A -> [B -> C] and then a regular intersection is computed.
7980 static __isl_give isl_map *map_intersect_range_factor_range(
7981 __isl_take isl_map *map, __isl_take isl_map *factor)
7983 isl_space *space;
7984 isl_map *ext_factor;
7986 space = isl_space_range_factor_domain(isl_map_get_space(map));
7987 ext_factor = isl_map_universe(space);
7988 ext_factor = isl_map_range_product(ext_factor, factor);
7989 return isl_map_intersect(map, ext_factor);
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 __isl_give isl_map *isl_map_intersect_range_factor_range(
7996 __isl_take isl_map *map, __isl_take isl_map *factor)
7998 return isl_map_align_params_map_map_and(map, factor,
7999 &map_intersect_range_factor_range);
8002 static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
8003 __isl_take isl_map *map2)
8005 if (!map1 || !map2)
8006 goto error;
8007 map1 = isl_map_reverse(map1);
8008 map1 = isl_map_apply_range(map1, map2);
8009 return isl_map_reverse(map1);
8010 error:
8011 isl_map_free(map1);
8012 isl_map_free(map2);
8013 return NULL;
8016 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
8017 __isl_take isl_map *map2)
8019 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
8022 static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
8023 __isl_take isl_map *map2)
8025 isl_space *dim_result;
8026 struct isl_map *result;
8027 int i, j;
8029 if (!map1 || !map2)
8030 goto error;
8032 dim_result = isl_space_join(isl_space_copy(map1->dim),
8033 isl_space_copy(map2->dim));
8035 result = isl_map_alloc_space(dim_result, map1->n * map2->n, 0);
8036 if (!result)
8037 goto error;
8038 for (i = 0; i < map1->n; ++i)
8039 for (j = 0; j < map2->n; ++j) {
8040 result = isl_map_add_basic_map(result,
8041 isl_basic_map_apply_range(
8042 isl_basic_map_copy(map1->p[i]),
8043 isl_basic_map_copy(map2->p[j])));
8044 if (!result)
8045 goto error;
8047 isl_map_free(map1);
8048 isl_map_free(map2);
8049 if (result && result->n <= 1)
8050 ISL_F_SET(result, ISL_MAP_DISJOINT);
8051 return result;
8052 error:
8053 isl_map_free(map1);
8054 isl_map_free(map2);
8055 return NULL;
8058 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
8059 __isl_take isl_map *map2)
8061 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
8065 * returns range - domain
8067 __isl_give isl_basic_set *isl_basic_map_deltas(__isl_take isl_basic_map *bmap)
8069 isl_space *target_space;
8070 struct isl_basic_set *bset;
8071 unsigned dim;
8072 unsigned nparam;
8073 int i;
8075 if (!bmap)
8076 goto error;
8077 isl_assert(bmap->ctx, isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8078 bmap->dim, isl_dim_out),
8079 goto error);
8080 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
8081 dim = isl_basic_map_dim(bmap, isl_dim_in);
8082 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8083 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
8084 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
8085 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
8086 for (i = 0; i < dim; ++i) {
8087 int j = isl_basic_map_alloc_equality(bmap);
8088 if (j < 0) {
8089 bmap = isl_basic_map_free(bmap);
8090 break;
8092 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8093 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8094 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
8095 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
8097 bset = isl_basic_map_domain(bmap);
8098 bset = isl_basic_set_reset_space(bset, target_space);
8099 return bset;
8100 error:
8101 isl_basic_map_free(bmap);
8102 return NULL;
8106 * returns range - domain
8108 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
8110 int i;
8111 isl_space *dim;
8112 struct isl_set *result;
8114 if (!map)
8115 return NULL;
8117 isl_assert(map->ctx, isl_space_tuple_is_equal(map->dim, isl_dim_in,
8118 map->dim, isl_dim_out),
8119 goto error);
8120 dim = isl_map_get_space(map);
8121 dim = isl_space_domain(dim);
8122 result = isl_set_alloc_space(dim, map->n, 0);
8123 if (!result)
8124 goto error;
8125 for (i = 0; i < map->n; ++i)
8126 result = isl_set_add_basic_set(result,
8127 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
8128 isl_map_free(map);
8129 return result;
8130 error:
8131 isl_map_free(map);
8132 return NULL;
8136 * returns [domain -> range] -> range - domain
8138 __isl_give isl_basic_map *isl_basic_map_deltas_map(
8139 __isl_take isl_basic_map *bmap)
8141 int i, k;
8142 isl_space *dim;
8143 isl_basic_map *domain;
8144 int nparam, n;
8145 unsigned total;
8147 if (!isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
8148 bmap->dim, isl_dim_out))
8149 isl_die(bmap->ctx, isl_error_invalid,
8150 "domain and range don't match", goto error);
8152 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8153 n = isl_basic_map_dim(bmap, isl_dim_in);
8155 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
8156 domain = isl_basic_map_universe(dim);
8158 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
8159 bmap = isl_basic_map_apply_range(bmap, domain);
8160 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
8162 total = isl_basic_map_total_dim(bmap);
8164 for (i = 0; i < n; ++i) {
8165 k = isl_basic_map_alloc_equality(bmap);
8166 if (k < 0)
8167 goto error;
8168 isl_seq_clr(bmap->eq[k], 1 + total);
8169 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
8170 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
8171 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
8174 bmap = isl_basic_map_gauss(bmap, NULL);
8175 return isl_basic_map_finalize(bmap);
8176 error:
8177 isl_basic_map_free(bmap);
8178 return NULL;
8182 * returns [domain -> range] -> range - domain
8184 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
8186 int i;
8187 isl_space *domain_dim;
8189 if (!map)
8190 return NULL;
8192 if (!isl_space_tuple_is_equal(map->dim, isl_dim_in,
8193 map->dim, isl_dim_out))
8194 isl_die(map->ctx, isl_error_invalid,
8195 "domain and range don't match", goto error);
8197 map = isl_map_cow(map);
8198 if (!map)
8199 return NULL;
8201 domain_dim = isl_space_from_range(isl_space_domain(isl_map_get_space(map)));
8202 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
8203 map->dim = isl_space_join(map->dim, domain_dim);
8204 if (!map->dim)
8205 goto error;
8206 for (i = 0; i < map->n; ++i) {
8207 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
8208 if (!map->p[i])
8209 goto error;
8211 map = isl_map_unmark_normalized(map);
8212 return map;
8213 error:
8214 isl_map_free(map);
8215 return NULL;
8218 static __isl_give isl_basic_map *basic_map_identity(__isl_take isl_space *dims)
8220 struct isl_basic_map *bmap;
8221 unsigned nparam;
8222 unsigned dim;
8223 int i;
8225 if (!dims)
8226 return NULL;
8228 nparam = dims->nparam;
8229 dim = dims->n_out;
8230 bmap = isl_basic_map_alloc_space(dims, 0, dim, 0);
8231 if (!bmap)
8232 goto error;
8234 for (i = 0; i < dim; ++i) {
8235 int j = isl_basic_map_alloc_equality(bmap);
8236 if (j < 0)
8237 goto error;
8238 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
8239 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8240 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
8242 return isl_basic_map_finalize(bmap);
8243 error:
8244 isl_basic_map_free(bmap);
8245 return NULL;
8248 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *dim)
8250 if (!dim)
8251 return NULL;
8252 if (dim->n_in != dim->n_out)
8253 isl_die(dim->ctx, isl_error_invalid,
8254 "number of input and output dimensions needs to be "
8255 "the same", goto error);
8256 return basic_map_identity(dim);
8257 error:
8258 isl_space_free(dim);
8259 return NULL;
8262 __isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
8264 return isl_map_from_basic_map(isl_basic_map_identity(dim));
8267 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
8269 isl_space *dim = isl_set_get_space(set);
8270 isl_map *id;
8271 id = isl_map_identity(isl_space_map_from_set(dim));
8272 return isl_map_intersect_range(id, set);
8275 /* Construct a basic set with all set dimensions having only non-negative
8276 * values.
8278 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
8279 __isl_take isl_space *space)
8281 int i;
8282 unsigned nparam;
8283 unsigned dim;
8284 struct isl_basic_set *bset;
8286 if (!space)
8287 return NULL;
8288 nparam = space->nparam;
8289 dim = space->n_out;
8290 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
8291 if (!bset)
8292 return NULL;
8293 for (i = 0; i < dim; ++i) {
8294 int k = isl_basic_set_alloc_inequality(bset);
8295 if (k < 0)
8296 goto error;
8297 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
8298 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
8300 return bset;
8301 error:
8302 isl_basic_set_free(bset);
8303 return NULL;
8306 /* Construct the half-space x_pos >= 0.
8308 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *dim,
8309 int pos)
8311 int k;
8312 isl_basic_set *nonneg;
8314 nonneg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8315 k = isl_basic_set_alloc_inequality(nonneg);
8316 if (k < 0)
8317 goto error;
8318 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
8319 isl_int_set_si(nonneg->ineq[k][pos], 1);
8321 return isl_basic_set_finalize(nonneg);
8322 error:
8323 isl_basic_set_free(nonneg);
8324 return NULL;
8327 /* Construct the half-space x_pos <= -1.
8329 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *dim, int pos)
8331 int k;
8332 isl_basic_set *neg;
8334 neg = isl_basic_set_alloc_space(dim, 0, 0, 1);
8335 k = isl_basic_set_alloc_inequality(neg);
8336 if (k < 0)
8337 goto error;
8338 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
8339 isl_int_set_si(neg->ineq[k][0], -1);
8340 isl_int_set_si(neg->ineq[k][pos], -1);
8342 return isl_basic_set_finalize(neg);
8343 error:
8344 isl_basic_set_free(neg);
8345 return NULL;
8348 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
8349 enum isl_dim_type type, unsigned first, unsigned n)
8351 int i;
8352 unsigned offset;
8353 isl_basic_set *nonneg;
8354 isl_basic_set *neg;
8356 if (!set)
8357 return NULL;
8358 if (n == 0)
8359 return set;
8361 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
8363 offset = pos(set->dim, type);
8364 for (i = 0; i < n; ++i) {
8365 nonneg = nonneg_halfspace(isl_set_get_space(set),
8366 offset + first + i);
8367 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
8369 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
8372 return set;
8373 error:
8374 isl_set_free(set);
8375 return NULL;
8378 static isl_stat foreach_orthant(__isl_take isl_set *set, int *signs, int first,
8379 int len,
8380 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8381 void *user)
8383 isl_set *half;
8385 if (!set)
8386 return isl_stat_error;
8387 if (isl_set_plain_is_empty(set)) {
8388 isl_set_free(set);
8389 return isl_stat_ok;
8391 if (first == len)
8392 return fn(set, signs, user);
8394 signs[first] = 1;
8395 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
8396 1 + first));
8397 half = isl_set_intersect(half, isl_set_copy(set));
8398 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
8399 goto error;
8401 signs[first] = -1;
8402 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
8403 1 + first));
8404 half = isl_set_intersect(half, set);
8405 return foreach_orthant(half, signs, first + 1, len, fn, user);
8406 error:
8407 isl_set_free(set);
8408 return isl_stat_error;
8411 /* Call "fn" on the intersections of "set" with each of the orthants
8412 * (except for obviously empty intersections). The orthant is identified
8413 * by the signs array, with each entry having value 1 or -1 according
8414 * to the sign of the corresponding variable.
8416 isl_stat isl_set_foreach_orthant(__isl_keep isl_set *set,
8417 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
8418 void *user)
8420 unsigned nparam;
8421 unsigned nvar;
8422 int *signs;
8423 isl_stat r;
8425 if (!set)
8426 return isl_stat_error;
8427 if (isl_set_plain_is_empty(set))
8428 return isl_stat_ok;
8430 nparam = isl_set_dim(set, isl_dim_param);
8431 nvar = isl_set_dim(set, isl_dim_set);
8433 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
8435 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
8436 fn, user);
8438 free(signs);
8440 return r;
8443 isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8445 return isl_map_is_equal(set_to_map(set1), set_to_map(set2));
8448 isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
8449 __isl_keep isl_basic_map *bmap2)
8451 int is_subset;
8452 struct isl_map *map1;
8453 struct isl_map *map2;
8455 if (!bmap1 || !bmap2)
8456 return isl_bool_error;
8458 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
8459 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
8461 is_subset = isl_map_is_subset(map1, map2);
8463 isl_map_free(map1);
8464 isl_map_free(map2);
8466 return is_subset;
8469 isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
8470 __isl_keep isl_basic_set *bset2)
8472 return isl_basic_map_is_subset(bset1, bset2);
8475 isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
8476 __isl_keep isl_basic_map *bmap2)
8478 isl_bool is_subset;
8480 if (!bmap1 || !bmap2)
8481 return isl_bool_error;
8482 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8483 if (is_subset != isl_bool_true)
8484 return is_subset;
8485 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8486 return is_subset;
8489 isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
8490 __isl_keep isl_basic_set *bset2)
8492 return isl_basic_map_is_equal(
8493 bset_to_bmap(bset1), bset_to_bmap(bset2));
8496 isl_bool isl_map_is_empty(__isl_keep isl_map *map)
8498 int i;
8499 int is_empty;
8501 if (!map)
8502 return isl_bool_error;
8503 for (i = 0; i < map->n; ++i) {
8504 is_empty = isl_basic_map_is_empty(map->p[i]);
8505 if (is_empty < 0)
8506 return isl_bool_error;
8507 if (!is_empty)
8508 return isl_bool_false;
8510 return isl_bool_true;
8513 isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
8515 return map ? map->n == 0 : isl_bool_error;
8518 isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
8520 return set ? set->n == 0 : isl_bool_error;
8523 isl_bool isl_set_is_empty(__isl_keep isl_set *set)
8525 return isl_map_is_empty(set_to_map(set));
8528 isl_bool isl_map_has_equal_space(__isl_keep isl_map *map1,
8529 __isl_keep isl_map *map2)
8531 if (!map1 || !map2)
8532 return isl_bool_error;
8534 return isl_space_is_equal(map1->dim, map2->dim);
8537 isl_bool isl_set_has_equal_space(__isl_keep isl_set *set1,
8538 __isl_keep isl_set *set2)
8540 if (!set1 || !set2)
8541 return isl_bool_error;
8543 return isl_space_is_equal(set1->dim, set2->dim);
8546 static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8548 isl_bool is_subset;
8550 if (!map1 || !map2)
8551 return isl_bool_error;
8552 is_subset = isl_map_is_subset(map1, map2);
8553 if (is_subset != isl_bool_true)
8554 return is_subset;
8555 is_subset = isl_map_is_subset(map2, map1);
8556 return is_subset;
8559 /* Is "map1" equal to "map2"?
8561 * First check if they are obviously equal.
8562 * If not, then perform a more detailed analysis.
8564 isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8566 isl_bool equal;
8568 equal = isl_map_plain_is_equal(map1, map2);
8569 if (equal < 0 || equal)
8570 return equal;
8571 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
8574 isl_bool isl_basic_map_is_strict_subset(
8575 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8577 isl_bool is_subset;
8579 if (!bmap1 || !bmap2)
8580 return isl_bool_error;
8581 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
8582 if (is_subset != isl_bool_true)
8583 return is_subset;
8584 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
8585 if (is_subset == isl_bool_error)
8586 return is_subset;
8587 return !is_subset;
8590 isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
8591 __isl_keep isl_map *map2)
8593 isl_bool is_subset;
8595 if (!map1 || !map2)
8596 return isl_bool_error;
8597 is_subset = isl_map_is_subset(map1, map2);
8598 if (is_subset != isl_bool_true)
8599 return is_subset;
8600 is_subset = isl_map_is_subset(map2, map1);
8601 if (is_subset == isl_bool_error)
8602 return is_subset;
8603 return !is_subset;
8606 isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
8607 __isl_keep isl_set *set2)
8609 return isl_map_is_strict_subset(set_to_map(set1), set_to_map(set2));
8612 /* Is "bmap" obviously equal to the universe with the same space?
8614 * That is, does it not have any constraints?
8616 isl_bool isl_basic_map_plain_is_universe(__isl_keep isl_basic_map *bmap)
8618 if (!bmap)
8619 return isl_bool_error;
8620 return bmap->n_eq == 0 && bmap->n_ineq == 0;
8623 /* Is "bset" obviously equal to the universe with the same space?
8625 isl_bool isl_basic_set_plain_is_universe(__isl_keep isl_basic_set *bset)
8627 return isl_basic_map_plain_is_universe(bset);
8630 /* If "c" does not involve any existentially quantified variables,
8631 * then set *univ to false and abort
8633 static isl_stat involves_divs(__isl_take isl_constraint *c, void *user)
8635 isl_bool *univ = user;
8636 unsigned n;
8638 n = isl_constraint_dim(c, isl_dim_div);
8639 *univ = isl_constraint_involves_dims(c, isl_dim_div, 0, n);
8640 isl_constraint_free(c);
8641 if (*univ < 0 || !*univ)
8642 return isl_stat_error;
8643 return isl_stat_ok;
8646 /* Is "bmap" equal to the universe with the same space?
8648 * First check if it is obviously equal to the universe.
8649 * If not and if there are any constraints not involving
8650 * existentially quantified variables, then it is certainly
8651 * not equal to the universe.
8652 * Otherwise, check if the universe is a subset of "bmap".
8654 isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
8656 isl_bool univ;
8657 isl_basic_map *test;
8659 univ = isl_basic_map_plain_is_universe(bmap);
8660 if (univ < 0 || univ)
8661 return univ;
8662 if (isl_basic_map_dim(bmap, isl_dim_div) == 0)
8663 return isl_bool_false;
8664 univ = isl_bool_true;
8665 if (isl_basic_map_foreach_constraint(bmap, &involves_divs, &univ) < 0 &&
8666 univ)
8667 return isl_bool_error;
8668 if (univ < 0 || !univ)
8669 return univ;
8670 test = isl_basic_map_universe(isl_basic_map_get_space(bmap));
8671 univ = isl_basic_map_is_subset(test, bmap);
8672 isl_basic_map_free(test);
8673 return univ;
8676 /* Is "bset" equal to the universe with the same space?
8678 isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
8680 return isl_basic_map_is_universe(bset);
8683 isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
8685 int i;
8687 if (!map)
8688 return isl_bool_error;
8690 for (i = 0; i < map->n; ++i) {
8691 isl_bool r = isl_basic_map_plain_is_universe(map->p[i]);
8692 if (r < 0 || r)
8693 return r;
8696 return isl_bool_false;
8699 isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
8701 return isl_map_plain_is_universe(set_to_map(set));
8704 isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
8706 struct isl_basic_set *bset = NULL;
8707 struct isl_vec *sample = NULL;
8708 isl_bool empty, non_empty;
8710 if (!bmap)
8711 return isl_bool_error;
8713 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
8714 return isl_bool_true;
8716 if (isl_basic_map_plain_is_universe(bmap))
8717 return isl_bool_false;
8719 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
8720 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
8721 copy = isl_basic_map_remove_redundancies(copy);
8722 empty = isl_basic_map_plain_is_empty(copy);
8723 isl_basic_map_free(copy);
8724 return empty;
8727 non_empty = isl_basic_map_plain_is_non_empty(bmap);
8728 if (non_empty < 0)
8729 return isl_bool_error;
8730 if (non_empty)
8731 return isl_bool_false;
8732 isl_vec_free(bmap->sample);
8733 bmap->sample = NULL;
8734 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
8735 if (!bset)
8736 return isl_bool_error;
8737 sample = isl_basic_set_sample_vec(bset);
8738 if (!sample)
8739 return isl_bool_error;
8740 empty = sample->size == 0;
8741 isl_vec_free(bmap->sample);
8742 bmap->sample = sample;
8743 if (empty)
8744 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
8746 return empty;
8749 isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
8751 if (!bmap)
8752 return isl_bool_error;
8753 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
8756 isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
8758 if (!bset)
8759 return isl_bool_error;
8760 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
8763 /* Is "bmap" known to be non-empty?
8765 * That is, is the cached sample still valid?
8767 isl_bool isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map *bmap)
8769 unsigned total;
8771 if (!bmap)
8772 return isl_bool_error;
8773 if (!bmap->sample)
8774 return isl_bool_false;
8775 total = 1 + isl_basic_map_total_dim(bmap);
8776 if (bmap->sample->size != total)
8777 return isl_bool_false;
8778 return isl_basic_map_contains(bmap, bmap->sample);
8781 isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
8783 return isl_basic_map_is_empty(bset_to_bmap(bset));
8786 __isl_give isl_map *isl_basic_map_union(__isl_take isl_basic_map *bmap1,
8787 __isl_take isl_basic_map *bmap2)
8789 struct isl_map *map;
8790 if (!bmap1 || !bmap2)
8791 goto error;
8793 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
8795 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
8796 if (!map)
8797 goto error;
8798 map = isl_map_add_basic_map(map, bmap1);
8799 map = isl_map_add_basic_map(map, bmap2);
8800 return map;
8801 error:
8802 isl_basic_map_free(bmap1);
8803 isl_basic_map_free(bmap2);
8804 return NULL;
8807 struct isl_set *isl_basic_set_union(
8808 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
8810 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1),
8811 bset_to_bmap(bset2)));
8814 /* Order divs such that any div only depends on previous divs */
8815 __isl_give isl_basic_map *isl_basic_map_order_divs(
8816 __isl_take isl_basic_map *bmap)
8818 int i;
8819 unsigned off;
8821 if (!bmap)
8822 return NULL;
8824 off = isl_space_dim(bmap->dim, isl_dim_all);
8826 for (i = 0; i < bmap->n_div; ++i) {
8827 int pos;
8828 if (isl_int_is_zero(bmap->div[i][0]))
8829 continue;
8830 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
8831 bmap->n_div-i);
8832 if (pos == -1)
8833 continue;
8834 if (pos == 0)
8835 isl_die(isl_basic_map_get_ctx(bmap), isl_error_internal,
8836 "integer division depends on itself",
8837 return isl_basic_map_free(bmap));
8838 isl_basic_map_swap_div(bmap, i, i + pos);
8839 --i;
8841 return bmap;
8844 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
8846 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset)));
8849 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
8851 int i;
8853 if (!map)
8854 return 0;
8856 for (i = 0; i < map->n; ++i) {
8857 map->p[i] = isl_basic_map_order_divs(map->p[i]);
8858 if (!map->p[i])
8859 goto error;
8862 return map;
8863 error:
8864 isl_map_free(map);
8865 return NULL;
8868 /* Sort the local variables of "bset".
8870 __isl_give isl_basic_set *isl_basic_set_sort_divs(
8871 __isl_take isl_basic_set *bset)
8873 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset)));
8876 /* Apply the expansion computed by isl_merge_divs.
8877 * The expansion itself is given by "exp" while the resulting
8878 * list of divs is given by "div".
8880 * Move the integer divisions of "bmap" into the right position
8881 * according to "exp" and then introduce the additional integer
8882 * divisions, adding div constraints.
8883 * The moving should be done first to avoid moving coefficients
8884 * in the definitions of the extra integer divisions.
8886 __isl_give isl_basic_map *isl_basic_map_expand_divs(
8887 __isl_take isl_basic_map *bmap, __isl_take isl_mat *div, int *exp)
8889 int i, j;
8890 int n_div;
8892 bmap = isl_basic_map_cow(bmap);
8893 if (!bmap || !div)
8894 goto error;
8896 if (div->n_row < bmap->n_div)
8897 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
8898 "not an expansion", goto error);
8900 n_div = bmap->n_div;
8901 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
8902 div->n_row - n_div, 0,
8903 2 * (div->n_row - n_div));
8905 for (i = n_div; i < div->n_row; ++i)
8906 if (isl_basic_map_alloc_div(bmap) < 0)
8907 goto error;
8909 for (j = n_div - 1; j >= 0; --j) {
8910 if (exp[j] == j)
8911 break;
8912 isl_basic_map_swap_div(bmap, j, exp[j]);
8914 j = 0;
8915 for (i = 0; i < div->n_row; ++i) {
8916 if (j < n_div && exp[j] == i) {
8917 j++;
8918 } else {
8919 isl_seq_cpy(bmap->div[i], div->row[i], div->n_col);
8920 if (isl_basic_map_div_is_marked_unknown(bmap, i))
8921 continue;
8922 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
8923 goto error;
8927 isl_mat_free(div);
8928 return bmap;
8929 error:
8930 isl_basic_map_free(bmap);
8931 isl_mat_free(div);
8932 return NULL;
8935 /* Apply the expansion computed by isl_merge_divs.
8936 * The expansion itself is given by "exp" while the resulting
8937 * list of divs is given by "div".
8939 __isl_give isl_basic_set *isl_basic_set_expand_divs(
8940 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
8942 return isl_basic_map_expand_divs(bset, div, exp);
8945 /* Look for a div in dst that corresponds to the div "div" in src.
8946 * The divs before "div" in src and dst are assumed to be the same.
8948 * Returns -1 if no corresponding div was found and the position
8949 * of the corresponding div in dst otherwise.
8951 static int find_div(__isl_keep isl_basic_map *dst,
8952 __isl_keep isl_basic_map *src, unsigned div)
8954 int i;
8956 unsigned total = isl_space_dim(src->dim, isl_dim_all);
8958 isl_assert(dst->ctx, div <= dst->n_div, return -1);
8959 for (i = div; i < dst->n_div; ++i)
8960 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
8961 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
8962 dst->n_div - div) == -1)
8963 return i;
8964 return -1;
8967 /* Align the divs of "dst" to those of "src", adding divs from "src"
8968 * if needed. That is, make sure that the first src->n_div divs
8969 * of the result are equal to those of src.
8971 * The result is not finalized as by design it will have redundant
8972 * divs if any divs from "src" were copied.
8974 __isl_give isl_basic_map *isl_basic_map_align_divs(
8975 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
8977 int i;
8978 int known, extended;
8979 unsigned total;
8981 if (!dst || !src)
8982 return isl_basic_map_free(dst);
8984 if (src->n_div == 0)
8985 return dst;
8987 known = isl_basic_map_divs_known(src);
8988 if (known < 0)
8989 return isl_basic_map_free(dst);
8990 if (!known)
8991 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
8992 "some src divs are unknown",
8993 return isl_basic_map_free(dst));
8995 src = isl_basic_map_order_divs(src);
8997 extended = 0;
8998 total = isl_space_dim(src->dim, isl_dim_all);
8999 for (i = 0; i < src->n_div; ++i) {
9000 int j = find_div(dst, src, i);
9001 if (j < 0) {
9002 if (!extended) {
9003 int extra = src->n_div - i;
9004 dst = isl_basic_map_cow(dst);
9005 if (!dst)
9006 return NULL;
9007 dst = isl_basic_map_extend_space(dst,
9008 isl_space_copy(dst->dim),
9009 extra, 0, 2 * extra);
9010 extended = 1;
9012 j = isl_basic_map_alloc_div(dst);
9013 if (j < 0)
9014 return isl_basic_map_free(dst);
9015 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
9016 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
9017 if (isl_basic_map_add_div_constraints(dst, j) < 0)
9018 return isl_basic_map_free(dst);
9020 if (j != i)
9021 isl_basic_map_swap_div(dst, i, j);
9023 return dst;
9026 __isl_give isl_map *isl_map_align_divs_internal(__isl_take isl_map *map)
9028 int i;
9030 if (!map)
9031 return NULL;
9032 if (map->n == 0)
9033 return map;
9034 map = isl_map_compute_divs(map);
9035 map = isl_map_cow(map);
9036 if (!map)
9037 return NULL;
9039 for (i = 1; i < map->n; ++i)
9040 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
9041 for (i = 1; i < map->n; ++i) {
9042 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
9043 if (!map->p[i])
9044 return isl_map_free(map);
9047 map = isl_map_unmark_normalized(map);
9048 return map;
9051 __isl_give isl_map *isl_map_align_divs(__isl_take isl_map *map)
9053 return isl_map_align_divs_internal(map);
9056 struct isl_set *isl_set_align_divs(struct isl_set *set)
9058 return set_from_map(isl_map_align_divs_internal(set_to_map(set)));
9061 /* Align the divs of the basic maps in "map" to those
9062 * of the basic maps in "list", as well as to the other basic maps in "map".
9063 * The elements in "list" are assumed to have known divs.
9065 __isl_give isl_map *isl_map_align_divs_to_basic_map_list(
9066 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
9068 int i, n;
9070 map = isl_map_compute_divs(map);
9071 map = isl_map_cow(map);
9072 if (!map || !list)
9073 return isl_map_free(map);
9074 if (map->n == 0)
9075 return map;
9077 n = isl_basic_map_list_n_basic_map(list);
9078 for (i = 0; i < n; ++i) {
9079 isl_basic_map *bmap;
9081 bmap = isl_basic_map_list_get_basic_map(list, i);
9082 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
9083 isl_basic_map_free(bmap);
9085 if (!map->p[0])
9086 return isl_map_free(map);
9088 return isl_map_align_divs_internal(map);
9091 /* Align the divs of each element of "list" to those of "bmap".
9092 * Both "bmap" and the elements of "list" are assumed to have known divs.
9094 __isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
9095 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
9097 int i, n;
9099 if (!list || !bmap)
9100 return isl_basic_map_list_free(list);
9102 n = isl_basic_map_list_n_basic_map(list);
9103 for (i = 0; i < n; ++i) {
9104 isl_basic_map *bmap_i;
9106 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9107 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
9108 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
9111 return list;
9114 static __isl_give isl_set *set_apply( __isl_take isl_set *set,
9115 __isl_take isl_map *map)
9117 isl_bool ok;
9119 ok = isl_map_compatible_domain(map, set);
9120 if (ok < 0)
9121 goto error;
9122 if (!ok)
9123 isl_die(isl_set_get_ctx(set), isl_error_invalid,
9124 "incompatible spaces", goto error);
9125 map = isl_map_intersect_domain(map, set);
9126 set = isl_map_range(map);
9127 return set;
9128 error:
9129 isl_set_free(set);
9130 isl_map_free(map);
9131 return NULL;
9134 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
9135 __isl_take isl_map *map)
9137 return isl_map_align_params_map_map_and(set, map, &set_apply);
9140 /* There is no need to cow as removing empty parts doesn't change
9141 * the meaning of the set.
9143 __isl_give isl_map *isl_map_remove_empty_parts(__isl_take isl_map *map)
9145 int i;
9147 if (!map)
9148 return NULL;
9150 for (i = map->n - 1; i >= 0; --i)
9151 map = remove_if_empty(map, i);
9153 return map;
9156 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
9158 return set_from_map(isl_map_remove_empty_parts(set_to_map(set)));
9161 /* Create a binary relation that maps the shared initial "pos" dimensions
9162 * of "bset1" and "bset2" to the remaining dimensions of "bset1" and "bset2".
9164 static __isl_give isl_basic_map *join_initial(__isl_keep isl_basic_set *bset1,
9165 __isl_keep isl_basic_set *bset2, int pos)
9167 isl_basic_map *bmap1;
9168 isl_basic_map *bmap2;
9170 bmap1 = isl_basic_map_from_range(isl_basic_set_copy(bset1));
9171 bmap2 = isl_basic_map_from_range(isl_basic_set_copy(bset2));
9172 bmap1 = isl_basic_map_move_dims(bmap1, isl_dim_in, 0,
9173 isl_dim_out, 0, pos);
9174 bmap2 = isl_basic_map_move_dims(bmap2, isl_dim_in, 0,
9175 isl_dim_out, 0, pos);
9176 return isl_basic_map_range_product(bmap1, bmap2);
9179 /* Given two basic sets bset1 and bset2, compute the maximal difference
9180 * between the values of dimension pos in bset1 and those in bset2
9181 * for any common value of the parameters and dimensions preceding pos.
9183 static enum isl_lp_result basic_set_maximal_difference_at(
9184 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
9185 int pos, isl_int *opt)
9187 isl_basic_map *bmap1;
9188 struct isl_ctx *ctx;
9189 struct isl_vec *obj;
9190 unsigned total;
9191 unsigned nparam;
9192 unsigned dim1;
9193 enum isl_lp_result res;
9195 if (!bset1 || !bset2)
9196 return isl_lp_error;
9198 nparam = isl_basic_set_n_param(bset1);
9199 dim1 = isl_basic_set_n_dim(bset1);
9201 bmap1 = join_initial(bset1, bset2, pos);
9202 if (!bmap1)
9203 return isl_lp_error;
9205 total = isl_basic_map_total_dim(bmap1);
9206 ctx = bmap1->ctx;
9207 obj = isl_vec_alloc(ctx, 1 + total);
9208 if (!obj)
9209 goto error;
9210 isl_seq_clr(obj->block.data, 1 + total);
9211 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
9212 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
9213 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
9214 opt, NULL, NULL);
9215 isl_basic_map_free(bmap1);
9216 isl_vec_free(obj);
9217 return res;
9218 error:
9219 isl_basic_map_free(bmap1);
9220 return isl_lp_error;
9223 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
9224 * for any common value of the parameters and dimensions preceding pos
9225 * in both basic sets, the values of dimension pos in bset1 are
9226 * smaller or larger than those in bset2.
9228 * Returns
9229 * 1 if bset1 follows bset2
9230 * -1 if bset1 precedes bset2
9231 * 0 if bset1 and bset2 are incomparable
9232 * -2 if some error occurred.
9234 int isl_basic_set_compare_at(struct isl_basic_set *bset1,
9235 struct isl_basic_set *bset2, int pos)
9237 isl_int opt;
9238 enum isl_lp_result res;
9239 int cmp;
9241 isl_int_init(opt);
9243 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
9245 if (res == isl_lp_empty)
9246 cmp = 0;
9247 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
9248 res == isl_lp_unbounded)
9249 cmp = 1;
9250 else if (res == isl_lp_ok && isl_int_is_neg(opt))
9251 cmp = -1;
9252 else
9253 cmp = -2;
9255 isl_int_clear(opt);
9256 return cmp;
9259 /* Given two basic sets bset1 and bset2, check whether
9260 * for any common value of the parameters and dimensions preceding pos
9261 * there is a value of dimension pos in bset1 that is larger
9262 * than a value of the same dimension in bset2.
9264 * Return
9265 * 1 if there exists such a pair
9266 * 0 if there is no such pair, but there is a pair of equal values
9267 * -1 otherwise
9268 * -2 if some error occurred.
9270 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
9271 __isl_keep isl_basic_set *bset2, int pos)
9273 isl_bool empty;
9274 isl_basic_map *bmap;
9275 unsigned dim1;
9277 dim1 = isl_basic_set_dim(bset1, isl_dim_set);
9278 bmap = join_initial(bset1, bset2, pos);
9279 bmap = isl_basic_map_order_ge(bmap, isl_dim_out, 0,
9280 isl_dim_out, dim1 - pos);
9281 empty = isl_basic_map_is_empty(bmap);
9282 if (empty < 0)
9283 goto error;
9284 if (empty) {
9285 isl_basic_map_free(bmap);
9286 return -1;
9288 bmap = isl_basic_map_order_gt(bmap, isl_dim_out, 0,
9289 isl_dim_out, dim1 - pos);
9290 empty = isl_basic_map_is_empty(bmap);
9291 if (empty < 0)
9292 goto error;
9293 isl_basic_map_free(bmap);
9294 if (empty)
9295 return 0;
9296 return 1;
9297 error:
9298 isl_basic_map_free(bmap);
9299 return -2;
9302 /* Given two sets set1 and set2, check whether
9303 * for any common value of the parameters and dimensions preceding pos
9304 * there is a value of dimension pos in set1 that is larger
9305 * than a value of the same dimension in set2.
9307 * Return
9308 * 1 if there exists such a pair
9309 * 0 if there is no such pair, but there is a pair of equal values
9310 * -1 otherwise
9311 * -2 if some error occurred.
9313 int isl_set_follows_at(__isl_keep isl_set *set1,
9314 __isl_keep isl_set *set2, int pos)
9316 int i, j;
9317 int follows = -1;
9319 if (!set1 || !set2)
9320 return -2;
9322 for (i = 0; i < set1->n; ++i)
9323 for (j = 0; j < set2->n; ++j) {
9324 int f;
9325 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
9326 if (f == 1 || f == -2)
9327 return f;
9328 if (f > follows)
9329 follows = f;
9332 return follows;
9335 static isl_bool isl_basic_map_plain_has_fixed_var(
9336 __isl_keep isl_basic_map *bmap, unsigned pos, isl_int *val)
9338 int i;
9339 int d;
9340 unsigned total;
9342 if (!bmap)
9343 return isl_bool_error;
9344 total = isl_basic_map_total_dim(bmap);
9345 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
9346 for (; d+1 > pos; --d)
9347 if (!isl_int_is_zero(bmap->eq[i][1+d]))
9348 break;
9349 if (d != pos)
9350 continue;
9351 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
9352 return isl_bool_false;
9353 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
9354 return isl_bool_false;
9355 if (!isl_int_is_one(bmap->eq[i][1+d]))
9356 return isl_bool_false;
9357 if (val)
9358 isl_int_neg(*val, bmap->eq[i][0]);
9359 return isl_bool_true;
9361 return isl_bool_false;
9364 static isl_bool isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
9365 unsigned pos, isl_int *val)
9367 int i;
9368 isl_int v;
9369 isl_int tmp;
9370 isl_bool fixed;
9372 if (!map)
9373 return isl_bool_error;
9374 if (map->n == 0)
9375 return isl_bool_false;
9376 if (map->n == 1)
9377 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
9378 isl_int_init(v);
9379 isl_int_init(tmp);
9380 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
9381 for (i = 1; fixed == isl_bool_true && i < map->n; ++i) {
9382 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
9383 if (fixed == isl_bool_true && isl_int_ne(tmp, v))
9384 fixed = isl_bool_false;
9386 if (val)
9387 isl_int_set(*val, v);
9388 isl_int_clear(tmp);
9389 isl_int_clear(v);
9390 return fixed;
9393 static isl_bool isl_basic_set_plain_has_fixed_var(
9394 __isl_keep isl_basic_set *bset, unsigned pos, isl_int *val)
9396 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset),
9397 pos, val);
9400 isl_bool isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
9401 enum isl_dim_type type, unsigned pos, isl_int *val)
9403 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
9404 return isl_bool_error;
9405 return isl_basic_map_plain_has_fixed_var(bmap,
9406 isl_basic_map_offset(bmap, type) - 1 + pos, val);
9409 /* If "bmap" obviously lies on a hyperplane where the given dimension
9410 * has a fixed value, then return that value.
9411 * Otherwise return NaN.
9413 __isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
9414 __isl_keep isl_basic_map *bmap,
9415 enum isl_dim_type type, unsigned pos)
9417 isl_ctx *ctx;
9418 isl_val *v;
9419 isl_bool fixed;
9421 if (!bmap)
9422 return NULL;
9423 ctx = isl_basic_map_get_ctx(bmap);
9424 v = isl_val_alloc(ctx);
9425 if (!v)
9426 return NULL;
9427 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
9428 if (fixed < 0)
9429 return isl_val_free(v);
9430 if (fixed) {
9431 isl_int_set_si(v->d, 1);
9432 return v;
9434 isl_val_free(v);
9435 return isl_val_nan(ctx);
9438 isl_bool isl_map_plain_is_fixed(__isl_keep isl_map *map,
9439 enum isl_dim_type type, unsigned pos, isl_int *val)
9441 if (pos >= isl_map_dim(map, type))
9442 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9443 "position out of bounds", return isl_bool_error);
9444 return isl_map_plain_has_fixed_var(map,
9445 map_offset(map, type) - 1 + pos, val);
9448 /* If "map" obviously lies on a hyperplane where the given dimension
9449 * has a fixed value, then return that value.
9450 * Otherwise return NaN.
9452 __isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
9453 enum isl_dim_type type, unsigned pos)
9455 isl_ctx *ctx;
9456 isl_val *v;
9457 isl_bool fixed;
9459 if (!map)
9460 return NULL;
9461 ctx = isl_map_get_ctx(map);
9462 v = isl_val_alloc(ctx);
9463 if (!v)
9464 return NULL;
9465 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
9466 if (fixed < 0)
9467 return isl_val_free(v);
9468 if (fixed) {
9469 isl_int_set_si(v->d, 1);
9470 return v;
9472 isl_val_free(v);
9473 return isl_val_nan(ctx);
9476 /* If "set" obviously lies on a hyperplane where the given dimension
9477 * has a fixed value, then return that value.
9478 * Otherwise return NaN.
9480 __isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
9481 enum isl_dim_type type, unsigned pos)
9483 return isl_map_plain_get_val_if_fixed(set, type, pos);
9486 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9487 * then return this fixed value in *val.
9489 isl_bool isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
9490 unsigned dim, isl_int *val)
9492 return isl_basic_set_plain_has_fixed_var(bset,
9493 isl_basic_set_n_param(bset) + dim, val);
9496 /* Return -1 if the constraint "c1" should be sorted before "c2"
9497 * and 1 if it should be sorted after "c2".
9498 * Return 0 if the two constraints are the same (up to the constant term).
9500 * In particular, if a constraint involves later variables than another
9501 * then it is sorted after this other constraint.
9502 * uset_gist depends on constraints without existentially quantified
9503 * variables sorting first.
9505 * For constraints that have the same latest variable, those
9506 * with the same coefficient for this latest variable (first in absolute value
9507 * and then in actual value) are grouped together.
9508 * This is useful for detecting pairs of constraints that can
9509 * be chained in their printed representation.
9511 * Finally, within a group, constraints are sorted according to
9512 * their coefficients (excluding the constant term).
9514 static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
9516 isl_int **c1 = (isl_int **) p1;
9517 isl_int **c2 = (isl_int **) p2;
9518 int l1, l2;
9519 unsigned size = *(unsigned *) arg;
9520 int cmp;
9522 l1 = isl_seq_last_non_zero(*c1 + 1, size);
9523 l2 = isl_seq_last_non_zero(*c2 + 1, size);
9525 if (l1 != l2)
9526 return l1 - l2;
9528 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9529 if (cmp != 0)
9530 return cmp;
9531 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
9532 if (cmp != 0)
9533 return -cmp;
9535 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
9538 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9539 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9540 * and 0 if the two constraints are the same (up to the constant term).
9542 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
9543 isl_int *c1, isl_int *c2)
9545 unsigned total;
9547 if (!bmap)
9548 return -2;
9549 total = isl_basic_map_total_dim(bmap);
9550 return sort_constraint_cmp(&c1, &c2, &total);
9553 __isl_give isl_basic_map *isl_basic_map_sort_constraints(
9554 __isl_take isl_basic_map *bmap)
9556 unsigned total;
9558 if (!bmap)
9559 return NULL;
9560 if (bmap->n_ineq == 0)
9561 return bmap;
9562 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9563 return bmap;
9564 total = isl_basic_map_total_dim(bmap);
9565 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
9566 &sort_constraint_cmp, &total) < 0)
9567 return isl_basic_map_free(bmap);
9568 return bmap;
9571 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
9572 __isl_take isl_basic_set *bset)
9574 isl_basic_map *bmap = bset_to_bmap(bset);
9575 return bset_from_bmap(isl_basic_map_sort_constraints(bmap));
9578 __isl_give isl_basic_map *isl_basic_map_normalize(
9579 __isl_take isl_basic_map *bmap)
9581 if (!bmap)
9582 return NULL;
9583 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9584 return bmap;
9585 bmap = isl_basic_map_remove_redundancies(bmap);
9586 bmap = isl_basic_map_sort_constraints(bmap);
9587 if (bmap)
9588 ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED);
9589 return bmap;
9591 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map *bmap1,
9592 __isl_keep isl_basic_map *bmap2)
9594 int i, cmp;
9595 unsigned total;
9596 isl_space *space1, *space2;
9598 if (!bmap1 || !bmap2)
9599 return -1;
9601 if (bmap1 == bmap2)
9602 return 0;
9603 space1 = isl_basic_map_peek_space(bmap1);
9604 space2 = isl_basic_map_peek_space(bmap2);
9605 cmp = isl_space_cmp(space1, space2);
9606 if (cmp)
9607 return cmp;
9608 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
9609 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
9610 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
9611 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
9612 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9613 return 0;
9614 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
9615 return 1;
9616 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9617 return -1;
9618 if (bmap1->n_eq != bmap2->n_eq)
9619 return bmap1->n_eq - bmap2->n_eq;
9620 if (bmap1->n_ineq != bmap2->n_ineq)
9621 return bmap1->n_ineq - bmap2->n_ineq;
9622 if (bmap1->n_div != bmap2->n_div)
9623 return bmap1->n_div - bmap2->n_div;
9624 total = isl_basic_map_total_dim(bmap1);
9625 for (i = 0; i < bmap1->n_eq; ++i) {
9626 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
9627 if (cmp)
9628 return cmp;
9630 for (i = 0; i < bmap1->n_ineq; ++i) {
9631 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
9632 if (cmp)
9633 return cmp;
9635 for (i = 0; i < bmap1->n_div; ++i) {
9636 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
9637 if (cmp)
9638 return cmp;
9640 return 0;
9643 int isl_basic_set_plain_cmp(__isl_keep isl_basic_set *bset1,
9644 __isl_keep isl_basic_set *bset2)
9646 return isl_basic_map_plain_cmp(bset1, bset2);
9649 int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
9651 int i, cmp;
9653 if (set1 == set2)
9654 return 0;
9655 if (set1->n != set2->n)
9656 return set1->n - set2->n;
9658 for (i = 0; i < set1->n; ++i) {
9659 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
9660 if (cmp)
9661 return cmp;
9664 return 0;
9667 isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
9668 __isl_keep isl_basic_map *bmap2)
9670 if (!bmap1 || !bmap2)
9671 return isl_bool_error;
9672 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
9675 isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
9676 __isl_keep isl_basic_set *bset2)
9678 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1),
9679 bset_to_bmap(bset2));
9682 static int qsort_bmap_cmp(const void *p1, const void *p2)
9684 isl_basic_map *bmap1 = *(isl_basic_map **) p1;
9685 isl_basic_map *bmap2 = *(isl_basic_map **) p2;
9687 return isl_basic_map_plain_cmp(bmap1, bmap2);
9690 /* Sort the basic maps of "map" and remove duplicate basic maps.
9692 * While removing basic maps, we make sure that the basic maps remain
9693 * sorted because isl_map_normalize expects the basic maps of the result
9694 * to be sorted.
9696 static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
9698 int i, j;
9700 map = isl_map_remove_empty_parts(map);
9701 if (!map)
9702 return NULL;
9703 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
9704 for (i = map->n - 1; i >= 1; --i) {
9705 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
9706 continue;
9707 isl_basic_map_free(map->p[i-1]);
9708 for (j = i; j < map->n; ++j)
9709 map->p[j - 1] = map->p[j];
9710 map->n--;
9713 return map;
9716 /* Remove obvious duplicates among the basic maps of "map".
9718 * Unlike isl_map_normalize, this function does not remove redundant
9719 * constraints and only removes duplicates that have exactly the same
9720 * constraints in the input. It does sort the constraints and
9721 * the basic maps to ease the detection of duplicates.
9723 * If "map" has already been normalized or if the basic maps are
9724 * disjoint, then there can be no duplicates.
9726 __isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
9728 int i;
9729 isl_basic_map *bmap;
9731 if (!map)
9732 return NULL;
9733 if (map->n <= 1)
9734 return map;
9735 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
9736 return map;
9737 for (i = 0; i < map->n; ++i) {
9738 bmap = isl_basic_map_copy(map->p[i]);
9739 bmap = isl_basic_map_sort_constraints(bmap);
9740 if (!bmap)
9741 return isl_map_free(map);
9742 isl_basic_map_free(map->p[i]);
9743 map->p[i] = bmap;
9746 map = sort_and_remove_duplicates(map);
9747 return map;
9750 /* We normalize in place, but if anything goes wrong we need
9751 * to return NULL, so we need to make sure we don't change the
9752 * meaning of any possible other copies of map.
9754 __isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
9756 int i;
9757 struct isl_basic_map *bmap;
9759 if (!map)
9760 return NULL;
9761 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
9762 return map;
9763 for (i = 0; i < map->n; ++i) {
9764 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
9765 if (!bmap)
9766 goto error;
9767 isl_basic_map_free(map->p[i]);
9768 map->p[i] = bmap;
9771 map = sort_and_remove_duplicates(map);
9772 if (map)
9773 ISL_F_SET(map, ISL_MAP_NORMALIZED);
9774 return map;
9775 error:
9776 isl_map_free(map);
9777 return NULL;
9780 struct isl_set *isl_set_normalize(struct isl_set *set)
9782 return set_from_map(isl_map_normalize(set_to_map(set)));
9785 isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
9786 __isl_keep isl_map *map2)
9788 int i;
9789 isl_bool equal;
9791 if (!map1 || !map2)
9792 return isl_bool_error;
9794 if (map1 == map2)
9795 return isl_bool_true;
9796 if (!isl_space_is_equal(map1->dim, map2->dim))
9797 return isl_bool_false;
9799 map1 = isl_map_copy(map1);
9800 map2 = isl_map_copy(map2);
9801 map1 = isl_map_normalize(map1);
9802 map2 = isl_map_normalize(map2);
9803 if (!map1 || !map2)
9804 goto error;
9805 equal = map1->n == map2->n;
9806 for (i = 0; equal && i < map1->n; ++i) {
9807 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
9808 if (equal < 0)
9809 goto error;
9811 isl_map_free(map1);
9812 isl_map_free(map2);
9813 return equal;
9814 error:
9815 isl_map_free(map1);
9816 isl_map_free(map2);
9817 return isl_bool_error;
9820 isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
9821 __isl_keep isl_set *set2)
9823 return isl_map_plain_is_equal(set_to_map(set1), set_to_map(set2));
9826 /* Return the basic maps in "map" as a list.
9828 __isl_give isl_basic_map_list *isl_map_get_basic_map_list(
9829 __isl_keep isl_map *map)
9831 int i;
9832 isl_ctx *ctx;
9833 isl_basic_map_list *list;
9835 if (!map)
9836 return NULL;
9837 ctx = isl_map_get_ctx(map);
9838 list = isl_basic_map_list_alloc(ctx, map->n);
9840 for (i = 0; i < map->n; ++i) {
9841 isl_basic_map *bmap;
9843 bmap = isl_basic_map_copy(map->p[i]);
9844 list = isl_basic_map_list_add(list, bmap);
9847 return list;
9850 /* Return the intersection of the elements in the non-empty list "list".
9851 * All elements are assumed to live in the same space.
9853 __isl_give isl_basic_map *isl_basic_map_list_intersect(
9854 __isl_take isl_basic_map_list *list)
9856 int i, n;
9857 isl_basic_map *bmap;
9859 if (!list)
9860 return NULL;
9861 n = isl_basic_map_list_n_basic_map(list);
9862 if (n < 1)
9863 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
9864 "expecting non-empty list", goto error);
9866 bmap = isl_basic_map_list_get_basic_map(list, 0);
9867 for (i = 1; i < n; ++i) {
9868 isl_basic_map *bmap_i;
9870 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9871 bmap = isl_basic_map_intersect(bmap, bmap_i);
9874 isl_basic_map_list_free(list);
9875 return bmap;
9876 error:
9877 isl_basic_map_list_free(list);
9878 return NULL;
9881 /* Return the intersection of the elements in the non-empty list "list".
9882 * All elements are assumed to live in the same space.
9884 __isl_give isl_basic_set *isl_basic_set_list_intersect(
9885 __isl_take isl_basic_set_list *list)
9887 return isl_basic_map_list_intersect(list);
9890 /* Return the union of the elements of "list".
9891 * The list is required to have at least one element.
9893 __isl_give isl_set *isl_basic_set_list_union(
9894 __isl_take isl_basic_set_list *list)
9896 int i, n;
9897 isl_space *space;
9898 isl_basic_set *bset;
9899 isl_set *set;
9901 if (!list)
9902 return NULL;
9903 n = isl_basic_set_list_n_basic_set(list);
9904 if (n < 1)
9905 isl_die(isl_basic_set_list_get_ctx(list), isl_error_invalid,
9906 "expecting non-empty list", goto error);
9908 bset = isl_basic_set_list_get_basic_set(list, 0);
9909 space = isl_basic_set_get_space(bset);
9910 isl_basic_set_free(bset);
9912 set = isl_set_alloc_space(space, n, 0);
9913 for (i = 0; i < n; ++i) {
9914 bset = isl_basic_set_list_get_basic_set(list, i);
9915 set = isl_set_add_basic_set(set, bset);
9918 isl_basic_set_list_free(list);
9919 return set;
9920 error:
9921 isl_basic_set_list_free(list);
9922 return NULL;
9925 /* Return the union of the elements in the non-empty list "list".
9926 * All elements are assumed to live in the same space.
9928 __isl_give isl_set *isl_set_list_union(__isl_take isl_set_list *list)
9930 int i, n;
9931 isl_set *set;
9933 if (!list)
9934 return NULL;
9935 n = isl_set_list_n_set(list);
9936 if (n < 1)
9937 isl_die(isl_set_list_get_ctx(list), isl_error_invalid,
9938 "expecting non-empty list", goto error);
9940 set = isl_set_list_get_set(list, 0);
9941 for (i = 1; i < n; ++i) {
9942 isl_set *set_i;
9944 set_i = isl_set_list_get_set(list, i);
9945 set = isl_set_union(set, set_i);
9948 isl_set_list_free(list);
9949 return set;
9950 error:
9951 isl_set_list_free(list);
9952 return NULL;
9955 __isl_give isl_basic_map *isl_basic_map_product(
9956 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9958 isl_space *dim_result = NULL;
9959 struct isl_basic_map *bmap;
9960 unsigned in1, in2, out1, out2, nparam, total, pos;
9961 struct isl_dim_map *dim_map1, *dim_map2;
9963 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
9964 goto error;
9965 dim_result = isl_space_product(isl_space_copy(bmap1->dim),
9966 isl_space_copy(bmap2->dim));
9968 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9969 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9970 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9971 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9972 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9974 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
9975 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9976 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9977 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9978 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9979 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9980 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9981 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9982 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9983 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9984 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9986 bmap = isl_basic_map_alloc_space(dim_result,
9987 bmap1->n_div + bmap2->n_div,
9988 bmap1->n_eq + bmap2->n_eq,
9989 bmap1->n_ineq + bmap2->n_ineq);
9990 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9991 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9992 bmap = isl_basic_map_simplify(bmap);
9993 return isl_basic_map_finalize(bmap);
9994 error:
9995 isl_basic_map_free(bmap1);
9996 isl_basic_map_free(bmap2);
9997 return NULL;
10000 __isl_give isl_basic_map *isl_basic_map_flat_product(
10001 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10003 isl_basic_map *prod;
10005 prod = isl_basic_map_product(bmap1, bmap2);
10006 prod = isl_basic_map_flatten(prod);
10007 return prod;
10010 __isl_give isl_basic_set *isl_basic_set_flat_product(
10011 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
10013 return isl_basic_map_flat_range_product(bset1, bset2);
10016 __isl_give isl_basic_map *isl_basic_map_domain_product(
10017 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10019 isl_space *space_result = NULL;
10020 isl_basic_map *bmap;
10021 unsigned in1, in2, out, nparam, total, pos;
10022 struct isl_dim_map *dim_map1, *dim_map2;
10024 if (!bmap1 || !bmap2)
10025 goto error;
10027 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
10028 isl_space_copy(bmap2->dim));
10030 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
10031 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
10032 out = isl_basic_map_dim(bmap1, isl_dim_out);
10033 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10035 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
10036 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10037 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10038 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10039 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10040 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10041 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
10042 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
10043 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
10044 isl_dim_map_div(dim_map1, bmap1, pos += out);
10045 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10047 bmap = isl_basic_map_alloc_space(space_result,
10048 bmap1->n_div + bmap2->n_div,
10049 bmap1->n_eq + bmap2->n_eq,
10050 bmap1->n_ineq + bmap2->n_ineq);
10051 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10052 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10053 bmap = isl_basic_map_simplify(bmap);
10054 return isl_basic_map_finalize(bmap);
10055 error:
10056 isl_basic_map_free(bmap1);
10057 isl_basic_map_free(bmap2);
10058 return NULL;
10061 __isl_give isl_basic_map *isl_basic_map_range_product(
10062 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10064 isl_bool rational;
10065 isl_space *dim_result = NULL;
10066 isl_basic_map *bmap;
10067 unsigned in, out1, out2, nparam, total, pos;
10068 struct isl_dim_map *dim_map1, *dim_map2;
10070 rational = isl_basic_map_is_rational(bmap1);
10071 if (rational >= 0 && rational)
10072 rational = isl_basic_map_is_rational(bmap2);
10073 if (!bmap1 || !bmap2 || rational < 0)
10074 goto error;
10076 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
10077 goto error;
10079 dim_result = isl_space_range_product(isl_space_copy(bmap1->dim),
10080 isl_space_copy(bmap2->dim));
10082 in = isl_basic_map_dim(bmap1, isl_dim_in);
10083 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
10084 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
10085 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10087 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
10088 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10089 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10090 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10091 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10092 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10093 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
10094 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
10095 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
10096 isl_dim_map_div(dim_map1, bmap1, pos += out2);
10097 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10099 bmap = isl_basic_map_alloc_space(dim_result,
10100 bmap1->n_div + bmap2->n_div,
10101 bmap1->n_eq + bmap2->n_eq,
10102 bmap1->n_ineq + bmap2->n_ineq);
10103 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10104 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10105 if (rational)
10106 bmap = isl_basic_map_set_rational(bmap);
10107 bmap = isl_basic_map_simplify(bmap);
10108 return isl_basic_map_finalize(bmap);
10109 error:
10110 isl_basic_map_free(bmap1);
10111 isl_basic_map_free(bmap2);
10112 return NULL;
10115 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
10116 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10118 isl_basic_map *prod;
10120 prod = isl_basic_map_range_product(bmap1, bmap2);
10121 prod = isl_basic_map_flatten_range(prod);
10122 return prod;
10125 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
10126 * and collect the results.
10127 * The result live in the space obtained by calling "space_product"
10128 * on the spaces of "map1" and "map2".
10129 * If "remove_duplicates" is set then the result may contain duplicates
10130 * (even if the inputs do not) and so we try and remove the obvious
10131 * duplicates.
10133 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
10134 __isl_take isl_map *map2,
10135 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
10136 __isl_take isl_space *right),
10137 __isl_give isl_basic_map *(*basic_map_product)(
10138 __isl_take isl_basic_map *left,
10139 __isl_take isl_basic_map *right),
10140 int remove_duplicates)
10142 unsigned flags = 0;
10143 struct isl_map *result;
10144 int i, j;
10145 isl_bool m;
10147 m = isl_map_has_equal_params(map1, map2);
10148 if (m < 0)
10149 goto error;
10150 if (!m)
10151 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
10152 "parameters don't match", goto error);
10154 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
10155 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
10156 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
10158 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
10159 isl_space_copy(map2->dim)),
10160 map1->n * map2->n, flags);
10161 if (!result)
10162 goto error;
10163 for (i = 0; i < map1->n; ++i)
10164 for (j = 0; j < map2->n; ++j) {
10165 struct isl_basic_map *part;
10166 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
10167 isl_basic_map_copy(map2->p[j]));
10168 if (isl_basic_map_is_empty(part))
10169 isl_basic_map_free(part);
10170 else
10171 result = isl_map_add_basic_map(result, part);
10172 if (!result)
10173 goto error;
10175 if (remove_duplicates)
10176 result = isl_map_remove_obvious_duplicates(result);
10177 isl_map_free(map1);
10178 isl_map_free(map2);
10179 return result;
10180 error:
10181 isl_map_free(map1);
10182 isl_map_free(map2);
10183 return NULL;
10186 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
10188 static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
10189 __isl_take isl_map *map2)
10191 return map_product(map1, map2, &isl_space_product,
10192 &isl_basic_map_product, 0);
10195 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
10196 __isl_take isl_map *map2)
10198 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
10201 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
10203 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
10204 __isl_take isl_map *map2)
10206 isl_map *prod;
10208 prod = isl_map_product(map1, map2);
10209 prod = isl_map_flatten(prod);
10210 return prod;
10213 /* Given two set A and B, construct its Cartesian product A x B.
10215 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
10217 return isl_map_range_product(set1, set2);
10220 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
10221 __isl_take isl_set *set2)
10223 return isl_map_flat_range_product(set1, set2);
10226 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10228 static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
10229 __isl_take isl_map *map2)
10231 return map_product(map1, map2, &isl_space_domain_product,
10232 &isl_basic_map_domain_product, 1);
10235 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10237 static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
10238 __isl_take isl_map *map2)
10240 return map_product(map1, map2, &isl_space_range_product,
10241 &isl_basic_map_range_product, 1);
10244 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
10245 __isl_take isl_map *map2)
10247 return isl_map_align_params_map_map_and(map1, map2,
10248 &map_domain_product_aligned);
10251 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
10252 __isl_take isl_map *map2)
10254 return isl_map_align_params_map_map_and(map1, map2,
10255 &map_range_product_aligned);
10258 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10260 __isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
10262 isl_space *space;
10263 int total1, keep1, total2, keep2;
10265 if (!map)
10266 return NULL;
10267 if (!isl_space_domain_is_wrapping(map->dim) ||
10268 !isl_space_range_is_wrapping(map->dim))
10269 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10270 "not a product", return isl_map_free(map));
10272 space = isl_map_get_space(map);
10273 total1 = isl_space_dim(space, isl_dim_in);
10274 total2 = isl_space_dim(space, isl_dim_out);
10275 space = isl_space_factor_domain(space);
10276 keep1 = isl_space_dim(space, isl_dim_in);
10277 keep2 = isl_space_dim(space, isl_dim_out);
10278 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
10279 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
10280 map = isl_map_reset_space(map, space);
10282 return map;
10285 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10287 __isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
10289 isl_space *space;
10290 int total1, keep1, total2, keep2;
10292 if (!map)
10293 return NULL;
10294 if (!isl_space_domain_is_wrapping(map->dim) ||
10295 !isl_space_range_is_wrapping(map->dim))
10296 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10297 "not a product", return isl_map_free(map));
10299 space = isl_map_get_space(map);
10300 total1 = isl_space_dim(space, isl_dim_in);
10301 total2 = isl_space_dim(space, isl_dim_out);
10302 space = isl_space_factor_range(space);
10303 keep1 = isl_space_dim(space, isl_dim_in);
10304 keep2 = isl_space_dim(space, isl_dim_out);
10305 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
10306 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
10307 map = isl_map_reset_space(map, space);
10309 return map;
10312 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10314 __isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
10316 isl_space *space;
10317 int total, keep;
10319 if (!map)
10320 return NULL;
10321 if (!isl_space_domain_is_wrapping(map->dim))
10322 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10323 "domain is not a product", return isl_map_free(map));
10325 space = isl_map_get_space(map);
10326 total = isl_space_dim(space, isl_dim_in);
10327 space = isl_space_domain_factor_domain(space);
10328 keep = isl_space_dim(space, isl_dim_in);
10329 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
10330 map = isl_map_reset_space(map, space);
10332 return map;
10335 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10337 __isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
10339 isl_space *space;
10340 int total, keep;
10342 if (!map)
10343 return NULL;
10344 if (!isl_space_domain_is_wrapping(map->dim))
10345 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10346 "domain is not a product", return isl_map_free(map));
10348 space = isl_map_get_space(map);
10349 total = isl_space_dim(space, isl_dim_in);
10350 space = isl_space_domain_factor_range(space);
10351 keep = isl_space_dim(space, isl_dim_in);
10352 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
10353 map = isl_map_reset_space(map, space);
10355 return map;
10358 /* Given a map A -> [B -> C], extract the map A -> B.
10360 __isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
10362 isl_space *space;
10363 int total, keep;
10365 if (!map)
10366 return NULL;
10367 if (!isl_space_range_is_wrapping(map->dim))
10368 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10369 "range is not a product", return isl_map_free(map));
10371 space = isl_map_get_space(map);
10372 total = isl_space_dim(space, isl_dim_out);
10373 space = isl_space_range_factor_domain(space);
10374 keep = isl_space_dim(space, isl_dim_out);
10375 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
10376 map = isl_map_reset_space(map, space);
10378 return map;
10381 /* Given a map A -> [B -> C], extract the map A -> C.
10383 __isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
10385 isl_space *space;
10386 int total, keep;
10388 if (!map)
10389 return NULL;
10390 if (!isl_space_range_is_wrapping(map->dim))
10391 isl_die(isl_map_get_ctx(map), isl_error_invalid,
10392 "range is not a product", return isl_map_free(map));
10394 space = isl_map_get_space(map);
10395 total = isl_space_dim(space, isl_dim_out);
10396 space = isl_space_range_factor_range(space);
10397 keep = isl_space_dim(space, isl_dim_out);
10398 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
10399 map = isl_map_reset_space(map, space);
10401 return map;
10404 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10406 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
10407 __isl_take isl_map *map2)
10409 isl_map *prod;
10411 prod = isl_map_domain_product(map1, map2);
10412 prod = isl_map_flatten_domain(prod);
10413 return prod;
10416 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10418 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
10419 __isl_take isl_map *map2)
10421 isl_map *prod;
10423 prod = isl_map_range_product(map1, map2);
10424 prod = isl_map_flatten_range(prod);
10425 return prod;
10428 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
10430 int i;
10431 uint32_t hash = isl_hash_init();
10432 unsigned total;
10434 if (!bmap)
10435 return 0;
10436 bmap = isl_basic_map_copy(bmap);
10437 bmap = isl_basic_map_normalize(bmap);
10438 if (!bmap)
10439 return 0;
10440 total = isl_basic_map_total_dim(bmap);
10441 isl_hash_byte(hash, bmap->n_eq & 0xFF);
10442 for (i = 0; i < bmap->n_eq; ++i) {
10443 uint32_t c_hash;
10444 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
10445 isl_hash_hash(hash, c_hash);
10447 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
10448 for (i = 0; i < bmap->n_ineq; ++i) {
10449 uint32_t c_hash;
10450 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
10451 isl_hash_hash(hash, c_hash);
10453 isl_hash_byte(hash, bmap->n_div & 0xFF);
10454 for (i = 0; i < bmap->n_div; ++i) {
10455 uint32_t c_hash;
10456 if (isl_int_is_zero(bmap->div[i][0]))
10457 continue;
10458 isl_hash_byte(hash, i & 0xFF);
10459 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
10460 isl_hash_hash(hash, c_hash);
10462 isl_basic_map_free(bmap);
10463 return hash;
10466 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
10468 return isl_basic_map_get_hash(bset_to_bmap(bset));
10471 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
10473 int i;
10474 uint32_t hash;
10476 if (!map)
10477 return 0;
10478 map = isl_map_copy(map);
10479 map = isl_map_normalize(map);
10480 if (!map)
10481 return 0;
10483 hash = isl_hash_init();
10484 for (i = 0; i < map->n; ++i) {
10485 uint32_t bmap_hash;
10486 bmap_hash = isl_basic_map_get_hash(map->p[i]);
10487 isl_hash_hash(hash, bmap_hash);
10490 isl_map_free(map);
10492 return hash;
10495 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
10497 return isl_map_get_hash(set_to_map(set));
10500 /* Return the number of basic maps in the (current) representation of "map".
10502 int isl_map_n_basic_map(__isl_keep isl_map *map)
10504 return map ? map->n : 0;
10507 int isl_set_n_basic_set(__isl_keep isl_set *set)
10509 return set ? set->n : 0;
10512 isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
10513 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
10515 int i;
10517 if (!map)
10518 return isl_stat_error;
10520 for (i = 0; i < map->n; ++i)
10521 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
10522 return isl_stat_error;
10524 return isl_stat_ok;
10527 isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
10528 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
10530 int i;
10532 if (!set)
10533 return isl_stat_error;
10535 for (i = 0; i < set->n; ++i)
10536 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
10537 return isl_stat_error;
10539 return isl_stat_ok;
10542 /* Return a list of basic sets, the union of which is equal to "set".
10544 __isl_give isl_basic_set_list *isl_set_get_basic_set_list(
10545 __isl_keep isl_set *set)
10547 int i;
10548 isl_basic_set_list *list;
10550 if (!set)
10551 return NULL;
10553 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
10554 for (i = 0; i < set->n; ++i) {
10555 isl_basic_set *bset;
10557 bset = isl_basic_set_copy(set->p[i]);
10558 list = isl_basic_set_list_add(list, bset);
10561 return list;
10564 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
10566 isl_space *dim;
10568 if (!bset)
10569 return NULL;
10571 bset = isl_basic_set_cow(bset);
10572 if (!bset)
10573 return NULL;
10575 dim = isl_basic_set_get_space(bset);
10576 dim = isl_space_lift(dim, bset->n_div);
10577 if (!dim)
10578 goto error;
10579 isl_space_free(bset->dim);
10580 bset->dim = dim;
10581 bset->extra -= bset->n_div;
10582 bset->n_div = 0;
10584 bset = isl_basic_set_finalize(bset);
10586 return bset;
10587 error:
10588 isl_basic_set_free(bset);
10589 return NULL;
10592 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
10594 int i;
10595 isl_space *dim;
10596 unsigned n_div;
10598 set = set_from_map(isl_map_align_divs_internal(set_to_map(set)));
10600 if (!set)
10601 return NULL;
10603 set = isl_set_cow(set);
10604 if (!set)
10605 return NULL;
10607 n_div = set->p[0]->n_div;
10608 dim = isl_set_get_space(set);
10609 dim = isl_space_lift(dim, n_div);
10610 if (!dim)
10611 goto error;
10612 isl_space_free(set->dim);
10613 set->dim = dim;
10615 for (i = 0; i < set->n; ++i) {
10616 set->p[i] = isl_basic_set_lift(set->p[i]);
10617 if (!set->p[i])
10618 goto error;
10621 return set;
10622 error:
10623 isl_set_free(set);
10624 return NULL;
10627 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
10629 unsigned dim;
10630 int size = 0;
10632 if (!bset)
10633 return -1;
10635 dim = isl_basic_set_total_dim(bset);
10636 size += bset->n_eq * (1 + dim);
10637 size += bset->n_ineq * (1 + dim);
10638 size += bset->n_div * (2 + dim);
10640 return size;
10643 int isl_set_size(__isl_keep isl_set *set)
10645 int i;
10646 int size = 0;
10648 if (!set)
10649 return -1;
10651 for (i = 0; i < set->n; ++i)
10652 size += isl_basic_set_size(set->p[i]);
10654 return size;
10657 /* Check if there is any lower bound (if lower == 0) and/or upper
10658 * bound (if upper == 0) on the specified dim.
10660 static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10661 enum isl_dim_type type, unsigned pos, int lower, int upper)
10663 int i;
10665 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
10666 return isl_bool_error;
10668 pos += isl_basic_map_offset(bmap, type);
10670 for (i = 0; i < bmap->n_div; ++i) {
10671 if (isl_int_is_zero(bmap->div[i][0]))
10672 continue;
10673 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
10674 return isl_bool_true;
10677 for (i = 0; i < bmap->n_eq; ++i)
10678 if (!isl_int_is_zero(bmap->eq[i][pos]))
10679 return isl_bool_true;
10681 for (i = 0; i < bmap->n_ineq; ++i) {
10682 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
10683 if (sgn > 0)
10684 lower = 1;
10685 if (sgn < 0)
10686 upper = 1;
10689 return lower && upper;
10692 isl_bool isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
10693 enum isl_dim_type type, unsigned pos)
10695 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
10698 isl_bool isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
10699 enum isl_dim_type type, unsigned pos)
10701 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
10704 isl_bool isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
10705 enum isl_dim_type type, unsigned pos)
10707 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
10710 isl_bool isl_map_dim_is_bounded(__isl_keep isl_map *map,
10711 enum isl_dim_type type, unsigned pos)
10713 int i;
10715 if (!map)
10716 return isl_bool_error;
10718 for (i = 0; i < map->n; ++i) {
10719 isl_bool bounded;
10720 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
10721 if (bounded < 0 || !bounded)
10722 return bounded;
10725 return isl_bool_true;
10728 /* Return true if the specified dim is involved in both an upper bound
10729 * and a lower bound.
10731 isl_bool isl_set_dim_is_bounded(__isl_keep isl_set *set,
10732 enum isl_dim_type type, unsigned pos)
10734 return isl_map_dim_is_bounded(set_to_map(set), type, pos);
10737 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10739 static isl_bool has_any_bound(__isl_keep isl_map *map,
10740 enum isl_dim_type type, unsigned pos,
10741 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10742 enum isl_dim_type type, unsigned pos))
10744 int i;
10746 if (!map)
10747 return isl_bool_error;
10749 for (i = 0; i < map->n; ++i) {
10750 isl_bool bounded;
10751 bounded = fn(map->p[i], type, pos);
10752 if (bounded < 0 || bounded)
10753 return bounded;
10756 return isl_bool_false;
10759 /* Return 1 if the specified dim is involved in any lower bound.
10761 isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
10762 enum isl_dim_type type, unsigned pos)
10764 return has_any_bound(set, type, pos,
10765 &isl_basic_map_dim_has_lower_bound);
10768 /* Return 1 if the specified dim is involved in any upper bound.
10770 isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
10771 enum isl_dim_type type, unsigned pos)
10773 return has_any_bound(set, type, pos,
10774 &isl_basic_map_dim_has_upper_bound);
10777 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10779 static isl_bool has_bound(__isl_keep isl_map *map,
10780 enum isl_dim_type type, unsigned pos,
10781 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
10782 enum isl_dim_type type, unsigned pos))
10784 int i;
10786 if (!map)
10787 return isl_bool_error;
10789 for (i = 0; i < map->n; ++i) {
10790 isl_bool bounded;
10791 bounded = fn(map->p[i], type, pos);
10792 if (bounded < 0 || !bounded)
10793 return bounded;
10796 return isl_bool_true;
10799 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10801 isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
10802 enum isl_dim_type type, unsigned pos)
10804 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
10807 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10809 isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
10810 enum isl_dim_type type, unsigned pos)
10812 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
10815 /* For each of the "n" variables starting at "first", determine
10816 * the sign of the variable and put the results in the first "n"
10817 * elements of the array "signs".
10818 * Sign
10819 * 1 means that the variable is non-negative
10820 * -1 means that the variable is non-positive
10821 * 0 means the variable attains both positive and negative values.
10823 isl_stat isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
10824 unsigned first, unsigned n, int *signs)
10826 isl_vec *bound = NULL;
10827 struct isl_tab *tab = NULL;
10828 struct isl_tab_undo *snap;
10829 int i;
10831 if (!bset || !signs)
10832 return isl_stat_error;
10834 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
10835 tab = isl_tab_from_basic_set(bset, 0);
10836 if (!bound || !tab)
10837 goto error;
10839 isl_seq_clr(bound->el, bound->size);
10840 isl_int_set_si(bound->el[0], -1);
10842 snap = isl_tab_snap(tab);
10843 for (i = 0; i < n; ++i) {
10844 int empty;
10846 isl_int_set_si(bound->el[1 + first + i], -1);
10847 if (isl_tab_add_ineq(tab, bound->el) < 0)
10848 goto error;
10849 empty = tab->empty;
10850 isl_int_set_si(bound->el[1 + first + i], 0);
10851 if (isl_tab_rollback(tab, snap) < 0)
10852 goto error;
10854 if (empty) {
10855 signs[i] = 1;
10856 continue;
10859 isl_int_set_si(bound->el[1 + first + i], 1);
10860 if (isl_tab_add_ineq(tab, bound->el) < 0)
10861 goto error;
10862 empty = tab->empty;
10863 isl_int_set_si(bound->el[1 + first + i], 0);
10864 if (isl_tab_rollback(tab, snap) < 0)
10865 goto error;
10867 signs[i] = empty ? -1 : 0;
10870 isl_tab_free(tab);
10871 isl_vec_free(bound);
10872 return isl_stat_ok;
10873 error:
10874 isl_tab_free(tab);
10875 isl_vec_free(bound);
10876 return isl_stat_error;
10879 isl_stat isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
10880 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
10882 if (!bset || !signs)
10883 return isl_stat_error;
10884 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
10885 return isl_stat_error);
10887 first += pos(bset->dim, type) - 1;
10888 return isl_basic_set_vars_get_sign(bset, first, n, signs);
10891 /* Is it possible for the integer division "div" to depend (possibly
10892 * indirectly) on any output dimensions?
10894 * If the div is undefined, then we conservatively assume that it
10895 * may depend on them.
10896 * Otherwise, we check if it actually depends on them or on any integer
10897 * divisions that may depend on them.
10899 static isl_bool div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
10901 int i;
10902 unsigned n_out, o_out;
10903 unsigned n_div, o_div;
10905 if (isl_int_is_zero(bmap->div[div][0]))
10906 return isl_bool_true;
10908 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10909 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10911 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
10912 return isl_bool_true;
10914 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10915 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10917 for (i = 0; i < n_div; ++i) {
10918 isl_bool may_involve;
10920 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
10921 continue;
10922 may_involve = div_may_involve_output(bmap, i);
10923 if (may_involve < 0 || may_involve)
10924 return may_involve;
10927 return isl_bool_false;
10930 /* Return the first integer division of "bmap" in the range
10931 * [first, first + n[ that may depend on any output dimensions and
10932 * that has a non-zero coefficient in "c" (where the first coefficient
10933 * in "c" corresponds to integer division "first").
10935 static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
10936 isl_int *c, int first, int n)
10938 int k;
10940 if (!bmap)
10941 return -1;
10943 for (k = first; k < first + n; ++k) {
10944 isl_bool may_involve;
10946 if (isl_int_is_zero(c[k]))
10947 continue;
10948 may_involve = div_may_involve_output(bmap, k);
10949 if (may_involve < 0)
10950 return -1;
10951 if (may_involve)
10952 return k;
10955 return first + n;
10958 /* Look for a pair of inequality constraints in "bmap" of the form
10960 * -l + i >= 0 or i >= l
10961 * and
10962 * n + l - i >= 0 or i <= l + n
10964 * with n < "m" and i the output dimension at position "pos".
10965 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10966 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10967 * and earlier output dimensions, as well as integer divisions that do
10968 * not involve any of the output dimensions.
10970 * Return the index of the first inequality constraint or bmap->n_ineq
10971 * if no such pair can be found.
10973 static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
10974 int pos, isl_int m)
10976 int i, j;
10977 isl_ctx *ctx;
10978 unsigned total;
10979 unsigned n_div, o_div;
10980 unsigned n_out, o_out;
10981 int less;
10983 if (!bmap)
10984 return -1;
10986 ctx = isl_basic_map_get_ctx(bmap);
10987 total = isl_basic_map_total_dim(bmap);
10988 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10989 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10990 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10991 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10992 for (i = 0; i < bmap->n_ineq; ++i) {
10993 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
10994 continue;
10995 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
10996 n_out - (pos + 1)) != -1)
10997 continue;
10998 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
10999 0, n_div) < n_div)
11000 continue;
11001 for (j = i + 1; j < bmap->n_ineq; ++j) {
11002 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
11003 ctx->one))
11004 continue;
11005 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
11006 bmap->ineq[j] + 1, total))
11007 continue;
11008 break;
11010 if (j >= bmap->n_ineq)
11011 continue;
11012 isl_int_add(bmap->ineq[i][0],
11013 bmap->ineq[i][0], bmap->ineq[j][0]);
11014 less = isl_int_abs_lt(bmap->ineq[i][0], m);
11015 isl_int_sub(bmap->ineq[i][0],
11016 bmap->ineq[i][0], bmap->ineq[j][0]);
11017 if (!less)
11018 continue;
11019 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
11020 return i;
11021 else
11022 return j;
11025 return bmap->n_ineq;
11028 /* Return the index of the equality of "bmap" that defines
11029 * the output dimension "pos" in terms of earlier dimensions.
11030 * The equality may also involve integer divisions, as long
11031 * as those integer divisions are defined in terms of
11032 * parameters or input dimensions.
11033 * In this case, *div is set to the number of integer divisions and
11034 * *ineq is set to the number of inequality constraints (provided
11035 * div and ineq are not NULL).
11037 * The equality may also involve a single integer division involving
11038 * the output dimensions (typically only output dimension "pos") as
11039 * long as the coefficient of output dimension "pos" is 1 or -1 and
11040 * there is a pair of constraints i >= l and i <= l + n, with i referring
11041 * to output dimension "pos", l an expression involving only earlier
11042 * dimensions and n smaller than the coefficient of the integer division
11043 * in the equality. In this case, the output dimension can be defined
11044 * in terms of a modulo expression that does not involve the integer division.
11045 * *div is then set to this single integer division and
11046 * *ineq is set to the index of constraint i >= l.
11048 * Return bmap->n_eq if there is no such equality.
11049 * Return -1 on error.
11051 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
11052 int pos, int *div, int *ineq)
11054 int j, k, l;
11055 unsigned n_out, o_out;
11056 unsigned n_div, o_div;
11058 if (!bmap)
11059 return -1;
11061 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11062 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11063 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11064 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11066 if (ineq)
11067 *ineq = bmap->n_ineq;
11068 if (div)
11069 *div = n_div;
11070 for (j = 0; j < bmap->n_eq; ++j) {
11071 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
11072 continue;
11073 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
11074 n_out - (pos + 1)) != -1)
11075 continue;
11076 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11077 0, n_div);
11078 if (k >= n_div)
11079 return j;
11080 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
11081 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
11082 continue;
11083 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11084 k + 1, n_div - (k+1)) < n_div)
11085 continue;
11086 l = find_modulo_constraint_pair(bmap, pos,
11087 bmap->eq[j][o_div + k]);
11088 if (l < 0)
11089 return -1;
11090 if (l >= bmap->n_ineq)
11091 continue;
11092 if (div)
11093 *div = k;
11094 if (ineq)
11095 *ineq = l;
11096 return j;
11099 return bmap->n_eq;
11102 /* Check if the given basic map is obviously single-valued.
11103 * In particular, for each output dimension, check that there is
11104 * an equality that defines the output dimension in terms of
11105 * earlier dimensions.
11107 isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
11109 int i;
11110 unsigned n_out;
11112 if (!bmap)
11113 return isl_bool_error;
11115 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11117 for (i = 0; i < n_out; ++i) {
11118 int eq;
11120 eq = isl_basic_map_output_defining_equality(bmap, i,
11121 NULL, NULL);
11122 if (eq < 0)
11123 return isl_bool_error;
11124 if (eq >= bmap->n_eq)
11125 return isl_bool_false;
11128 return isl_bool_true;
11131 /* Check if the given basic map is single-valued.
11132 * We simply compute
11134 * M \circ M^-1
11136 * and check if the result is a subset of the identity mapping.
11138 isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
11140 isl_space *space;
11141 isl_basic_map *test;
11142 isl_basic_map *id;
11143 isl_bool sv;
11145 sv = isl_basic_map_plain_is_single_valued(bmap);
11146 if (sv < 0 || sv)
11147 return sv;
11149 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
11150 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
11152 space = isl_basic_map_get_space(bmap);
11153 space = isl_space_map_from_set(isl_space_range(space));
11154 id = isl_basic_map_identity(space);
11156 sv = isl_basic_map_is_subset(test, id);
11158 isl_basic_map_free(test);
11159 isl_basic_map_free(id);
11161 return sv;
11164 /* Check if the given map is obviously single-valued.
11166 isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
11168 if (!map)
11169 return isl_bool_error;
11170 if (map->n == 0)
11171 return isl_bool_true;
11172 if (map->n >= 2)
11173 return isl_bool_false;
11175 return isl_basic_map_plain_is_single_valued(map->p[0]);
11178 /* Check if the given map is single-valued.
11179 * We simply compute
11181 * M \circ M^-1
11183 * and check if the result is a subset of the identity mapping.
11185 isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
11187 isl_space *dim;
11188 isl_map *test;
11189 isl_map *id;
11190 isl_bool sv;
11192 sv = isl_map_plain_is_single_valued(map);
11193 if (sv < 0 || sv)
11194 return sv;
11196 test = isl_map_reverse(isl_map_copy(map));
11197 test = isl_map_apply_range(test, isl_map_copy(map));
11199 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
11200 id = isl_map_identity(dim);
11202 sv = isl_map_is_subset(test, id);
11204 isl_map_free(test);
11205 isl_map_free(id);
11207 return sv;
11210 isl_bool isl_map_is_injective(__isl_keep isl_map *map)
11212 isl_bool in;
11214 map = isl_map_copy(map);
11215 map = isl_map_reverse(map);
11216 in = isl_map_is_single_valued(map);
11217 isl_map_free(map);
11219 return in;
11222 /* Check if the given map is obviously injective.
11224 isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
11226 isl_bool in;
11228 map = isl_map_copy(map);
11229 map = isl_map_reverse(map);
11230 in = isl_map_plain_is_single_valued(map);
11231 isl_map_free(map);
11233 return in;
11236 isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
11238 isl_bool sv;
11240 sv = isl_map_is_single_valued(map);
11241 if (sv < 0 || !sv)
11242 return sv;
11244 return isl_map_is_injective(map);
11247 isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
11249 return isl_map_is_single_valued(set_to_map(set));
11252 /* Does "map" only map elements to themselves?
11254 * If the domain and range spaces are different, then "map"
11255 * is considered not to be an identity relation, even if it is empty.
11256 * Otherwise, construct the maximal identity relation and
11257 * check whether "map" is a subset of this relation.
11259 isl_bool isl_map_is_identity(__isl_keep isl_map *map)
11261 isl_space *space;
11262 isl_map *id;
11263 isl_bool equal, is_identity;
11265 space = isl_map_get_space(map);
11266 equal = isl_space_tuple_is_equal(space, isl_dim_in, space, isl_dim_out);
11267 isl_space_free(space);
11268 if (equal < 0 || !equal)
11269 return equal;
11271 id = isl_map_identity(isl_map_get_space(map));
11272 is_identity = isl_map_is_subset(map, id);
11273 isl_map_free(id);
11275 return is_identity;
11278 int isl_map_is_translation(__isl_keep isl_map *map)
11280 int ok;
11281 isl_set *delta;
11283 delta = isl_map_deltas(isl_map_copy(map));
11284 ok = isl_set_is_singleton(delta);
11285 isl_set_free(delta);
11287 return ok;
11290 static int unique(isl_int *p, unsigned pos, unsigned len)
11292 if (isl_seq_first_non_zero(p, pos) != -1)
11293 return 0;
11294 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
11295 return 0;
11296 return 1;
11299 isl_bool isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
11301 int i, j;
11302 unsigned nvar;
11303 unsigned ovar;
11305 if (!bset)
11306 return isl_bool_error;
11308 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
11309 return isl_bool_false;
11311 nvar = isl_basic_set_dim(bset, isl_dim_set);
11312 ovar = isl_space_offset(bset->dim, isl_dim_set);
11313 for (j = 0; j < nvar; ++j) {
11314 int lower = 0, upper = 0;
11315 for (i = 0; i < bset->n_eq; ++i) {
11316 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
11317 continue;
11318 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
11319 return isl_bool_false;
11320 break;
11322 if (i < bset->n_eq)
11323 continue;
11324 for (i = 0; i < bset->n_ineq; ++i) {
11325 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
11326 continue;
11327 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
11328 return isl_bool_false;
11329 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
11330 lower = 1;
11331 else
11332 upper = 1;
11334 if (!lower || !upper)
11335 return isl_bool_false;
11338 return isl_bool_true;
11341 isl_bool isl_set_is_box(__isl_keep isl_set *set)
11343 if (!set)
11344 return isl_bool_error;
11345 if (set->n != 1)
11346 return isl_bool_false;
11348 return isl_basic_set_is_box(set->p[0]);
11351 isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
11353 if (!bset)
11354 return isl_bool_error;
11356 return isl_space_is_wrapping(bset->dim);
11359 isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
11361 if (!set)
11362 return isl_bool_error;
11364 return isl_space_is_wrapping(set->dim);
11367 /* Modify the space of "map" through a call to "change".
11368 * If "can_change" is set (not NULL), then first call it to check
11369 * if the modification is allowed, printing the error message "cannot_change"
11370 * if it is not.
11372 static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
11373 isl_bool (*can_change)(__isl_keep isl_map *map),
11374 const char *cannot_change,
11375 __isl_give isl_space *(*change)(__isl_take isl_space *space))
11377 isl_bool ok;
11378 isl_space *space;
11380 if (!map)
11381 return NULL;
11383 ok = can_change ? can_change(map) : isl_bool_true;
11384 if (ok < 0)
11385 return isl_map_free(map);
11386 if (!ok)
11387 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
11388 return isl_map_free(map));
11390 space = change(isl_map_get_space(map));
11391 map = isl_map_reset_space(map, space);
11393 return map;
11396 /* Is the domain of "map" a wrapped relation?
11398 isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
11400 if (!map)
11401 return isl_bool_error;
11403 return isl_space_domain_is_wrapping(map->dim);
11406 /* Does "map" have a wrapped relation in both domain and range?
11408 isl_bool isl_map_is_product(__isl_keep isl_map *map)
11410 return isl_space_is_product(isl_map_peek_space(map));
11413 /* Is the range of "map" a wrapped relation?
11415 isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
11417 if (!map)
11418 return isl_bool_error;
11420 return isl_space_range_is_wrapping(map->dim);
11423 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
11425 bmap = isl_basic_map_cow(bmap);
11426 if (!bmap)
11427 return NULL;
11429 bmap->dim = isl_space_wrap(bmap->dim);
11430 if (!bmap->dim)
11431 goto error;
11433 bmap = isl_basic_map_finalize(bmap);
11435 return bset_from_bmap(bmap);
11436 error:
11437 isl_basic_map_free(bmap);
11438 return NULL;
11441 /* Given a map A -> B, return the set (A -> B).
11443 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
11445 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
11448 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
11450 bset = isl_basic_set_cow(bset);
11451 if (!bset)
11452 return NULL;
11454 bset->dim = isl_space_unwrap(bset->dim);
11455 if (!bset->dim)
11456 goto error;
11458 bset = isl_basic_set_finalize(bset);
11460 return bset_to_bmap(bset);
11461 error:
11462 isl_basic_set_free(bset);
11463 return NULL;
11466 /* Given a set (A -> B), return the map A -> B.
11467 * Error out if "set" is not of the form (A -> B).
11469 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
11471 return isl_map_change_space(set, &isl_set_is_wrapping,
11472 "not a wrapping set", &isl_space_unwrap);
11475 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
11476 enum isl_dim_type type)
11478 if (!bmap)
11479 return NULL;
11481 if (!isl_space_is_named_or_nested(bmap->dim, type))
11482 return bmap;
11484 bmap = isl_basic_map_cow(bmap);
11485 if (!bmap)
11486 return NULL;
11488 bmap->dim = isl_space_reset(bmap->dim, type);
11489 if (!bmap->dim)
11490 goto error;
11492 bmap = isl_basic_map_finalize(bmap);
11494 return bmap;
11495 error:
11496 isl_basic_map_free(bmap);
11497 return NULL;
11500 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
11501 enum isl_dim_type type)
11503 int i;
11505 if (!map)
11506 return NULL;
11508 if (!isl_space_is_named_or_nested(map->dim, type))
11509 return map;
11511 map = isl_map_cow(map);
11512 if (!map)
11513 return NULL;
11515 for (i = 0; i < map->n; ++i) {
11516 map->p[i] = isl_basic_map_reset(map->p[i], type);
11517 if (!map->p[i])
11518 goto error;
11520 map->dim = isl_space_reset(map->dim, type);
11521 if (!map->dim)
11522 goto error;
11524 return map;
11525 error:
11526 isl_map_free(map);
11527 return NULL;
11530 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
11532 if (!bmap)
11533 return NULL;
11535 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
11536 return bmap;
11538 bmap = isl_basic_map_cow(bmap);
11539 if (!bmap)
11540 return NULL;
11542 bmap->dim = isl_space_flatten(bmap->dim);
11543 if (!bmap->dim)
11544 goto error;
11546 bmap = isl_basic_map_finalize(bmap);
11548 return bmap;
11549 error:
11550 isl_basic_map_free(bmap);
11551 return NULL;
11554 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
11556 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset)));
11559 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
11560 __isl_take isl_basic_map *bmap)
11562 if (!bmap)
11563 return NULL;
11565 if (!bmap->dim->nested[0])
11566 return bmap;
11568 bmap = isl_basic_map_cow(bmap);
11569 if (!bmap)
11570 return NULL;
11572 bmap->dim = isl_space_flatten_domain(bmap->dim);
11573 if (!bmap->dim)
11574 goto error;
11576 bmap = isl_basic_map_finalize(bmap);
11578 return bmap;
11579 error:
11580 isl_basic_map_free(bmap);
11581 return NULL;
11584 __isl_give isl_basic_map *isl_basic_map_flatten_range(
11585 __isl_take isl_basic_map *bmap)
11587 if (!bmap)
11588 return NULL;
11590 if (!bmap->dim->nested[1])
11591 return bmap;
11593 bmap = isl_basic_map_cow(bmap);
11594 if (!bmap)
11595 return NULL;
11597 bmap->dim = isl_space_flatten_range(bmap->dim);
11598 if (!bmap->dim)
11599 goto error;
11601 bmap = isl_basic_map_finalize(bmap);
11603 return bmap;
11604 error:
11605 isl_basic_map_free(bmap);
11606 return NULL;
11609 /* Remove any internal structure from the spaces of domain and range of "map".
11611 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
11613 if (!map)
11614 return NULL;
11616 if (!map->dim->nested[0] && !map->dim->nested[1])
11617 return map;
11619 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
11622 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
11624 return set_from_map(isl_map_flatten(set_to_map(set)));
11627 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
11629 isl_space *dim, *flat_dim;
11630 isl_map *map;
11632 dim = isl_set_get_space(set);
11633 flat_dim = isl_space_flatten(isl_space_copy(dim));
11634 map = isl_map_identity(isl_space_join(isl_space_reverse(dim), flat_dim));
11635 map = isl_map_intersect_domain(map, set);
11637 return map;
11640 /* Remove any internal structure from the space of the domain of "map".
11642 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
11644 if (!map)
11645 return NULL;
11647 if (!map->dim->nested[0])
11648 return map;
11650 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
11653 /* Remove any internal structure from the space of the range of "map".
11655 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
11657 if (!map)
11658 return NULL;
11660 if (!map->dim->nested[1])
11661 return map;
11663 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
11666 /* Reorder the dimensions of "bmap" according to the given dim_map
11667 * and set the dimension specification to "space" and
11668 * perform Gaussian elimination on the result.
11670 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
11671 __isl_take isl_space *space, __isl_take struct isl_dim_map *dim_map)
11673 isl_basic_map *res;
11674 unsigned flags;
11675 unsigned n_div;
11677 if (!bmap || !space || !dim_map)
11678 goto error;
11680 flags = bmap->flags;
11681 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
11682 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED);
11683 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
11684 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11685 res = isl_basic_map_alloc_space(space, n_div, bmap->n_eq, bmap->n_ineq);
11686 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
11687 if (res)
11688 res->flags = flags;
11689 res = isl_basic_map_gauss(res, NULL);
11690 res = isl_basic_map_finalize(res);
11691 return res;
11692 error:
11693 free(dim_map);
11694 isl_basic_map_free(bmap);
11695 isl_space_free(space);
11696 return NULL;
11699 /* Reorder the dimensions of "map" according to given reordering.
11701 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
11702 __isl_take isl_reordering *r)
11704 int i;
11705 struct isl_dim_map *dim_map;
11707 map = isl_map_cow(map);
11708 dim_map = isl_dim_map_from_reordering(r);
11709 if (!map || !r || !dim_map)
11710 goto error;
11712 for (i = 0; i < map->n; ++i) {
11713 struct isl_dim_map *dim_map_i;
11714 isl_space *space;
11716 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
11718 space = isl_reordering_get_space(r);
11719 map->p[i] = isl_basic_map_realign(map->p[i], space, dim_map_i);
11721 if (!map->p[i])
11722 goto error;
11725 map = isl_map_reset_space(map, isl_reordering_get_space(r));
11726 map = isl_map_unmark_normalized(map);
11728 isl_reordering_free(r);
11729 free(dim_map);
11730 return map;
11731 error:
11732 free(dim_map);
11733 isl_map_free(map);
11734 isl_reordering_free(r);
11735 return NULL;
11738 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
11739 __isl_take isl_reordering *r)
11741 return set_from_map(isl_map_realign(set_to_map(set), r));
11744 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
11745 __isl_take isl_space *model)
11747 isl_ctx *ctx;
11748 isl_bool aligned;
11750 if (!map || !model)
11751 goto error;
11753 ctx = isl_space_get_ctx(model);
11754 if (!isl_space_has_named_params(model))
11755 isl_die(ctx, isl_error_invalid,
11756 "model has unnamed parameters", goto error);
11757 if (isl_map_check_named_params(map) < 0)
11758 goto error;
11759 aligned = isl_map_space_has_equal_params(map, model);
11760 if (aligned < 0)
11761 goto error;
11762 if (!aligned) {
11763 isl_reordering *exp;
11765 exp = isl_parameter_alignment_reordering(map->dim, model);
11766 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
11767 map = isl_map_realign(map, exp);
11770 isl_space_free(model);
11771 return map;
11772 error:
11773 isl_space_free(model);
11774 isl_map_free(map);
11775 return NULL;
11778 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
11779 __isl_take isl_space *model)
11781 return isl_map_align_params(set, model);
11784 /* Align the parameters of "bmap" to those of "model", introducing
11785 * additional parameters if needed.
11787 __isl_give isl_basic_map *isl_basic_map_align_params(
11788 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
11790 isl_ctx *ctx;
11791 isl_bool equal_params;
11793 if (!bmap || !model)
11794 goto error;
11796 ctx = isl_space_get_ctx(model);
11797 if (!isl_space_has_named_params(model))
11798 isl_die(ctx, isl_error_invalid,
11799 "model has unnamed parameters", goto error);
11800 if (isl_basic_map_check_named_params(bmap) < 0)
11801 goto error;
11802 equal_params = isl_space_has_equal_params(bmap->dim, model);
11803 if (equal_params < 0)
11804 goto error;
11805 if (!equal_params) {
11806 isl_reordering *exp;
11807 struct isl_dim_map *dim_map;
11809 exp = isl_parameter_alignment_reordering(bmap->dim, model);
11810 exp = isl_reordering_extend_space(exp,
11811 isl_basic_map_get_space(bmap));
11812 dim_map = isl_dim_map_from_reordering(exp);
11813 bmap = isl_basic_map_realign(bmap,
11814 isl_reordering_get_space(exp),
11815 isl_dim_map_extend(dim_map, bmap));
11816 isl_reordering_free(exp);
11817 free(dim_map);
11820 isl_space_free(model);
11821 return bmap;
11822 error:
11823 isl_space_free(model);
11824 isl_basic_map_free(bmap);
11825 return NULL;
11828 /* Do "bset" and "space" have the same parameters?
11830 isl_bool isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set *bset,
11831 __isl_keep isl_space *space)
11833 isl_space *bset_space;
11835 bset_space = isl_basic_set_peek_space(bset);
11836 return isl_space_has_equal_params(bset_space, space);
11839 /* Do "map" and "space" have the same parameters?
11841 isl_bool isl_map_space_has_equal_params(__isl_keep isl_map *map,
11842 __isl_keep isl_space *space)
11844 isl_space *map_space;
11846 map_space = isl_map_peek_space(map);
11847 return isl_space_has_equal_params(map_space, space);
11850 /* Do "set" and "space" have the same parameters?
11852 isl_bool isl_set_space_has_equal_params(__isl_keep isl_set *set,
11853 __isl_keep isl_space *space)
11855 return isl_map_space_has_equal_params(set_to_map(set), space);
11858 /* Align the parameters of "bset" to those of "model", introducing
11859 * additional parameters if needed.
11861 __isl_give isl_basic_set *isl_basic_set_align_params(
11862 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
11864 return isl_basic_map_align_params(bset, model);
11867 /* Drop all parameters not referenced by "map".
11869 __isl_give isl_map *isl_map_drop_unused_params(__isl_take isl_map *map)
11871 int i;
11873 if (isl_map_check_named_params(map) < 0)
11874 return isl_map_free(map);
11876 for (i = isl_map_dim(map, isl_dim_param) - 1; i >= 0; i--) {
11877 isl_bool involves;
11879 involves = isl_map_involves_dims(map, isl_dim_param, i, 1);
11880 if (involves < 0)
11881 return isl_map_free(map);
11882 if (!involves)
11883 map = isl_map_project_out(map, isl_dim_param, i, 1);
11886 return map;
11889 /* Drop all parameters not referenced by "set".
11891 __isl_give isl_set *isl_set_drop_unused_params(
11892 __isl_take isl_set *set)
11894 return set_from_map(isl_map_drop_unused_params(set_to_map(set)));
11897 /* Drop all parameters not referenced by "bmap".
11899 __isl_give isl_basic_map *isl_basic_map_drop_unused_params(
11900 __isl_take isl_basic_map *bmap)
11902 int i;
11904 if (isl_basic_map_check_named_params(bmap) < 0)
11905 return isl_basic_map_free(bmap);
11907 for (i = isl_basic_map_dim(bmap, isl_dim_param) - 1; i >= 0; i--) {
11908 isl_bool involves;
11910 involves = isl_basic_map_involves_dims(bmap,
11911 isl_dim_param, i, 1);
11912 if (involves < 0)
11913 return isl_basic_map_free(bmap);
11914 if (!involves)
11915 bmap = isl_basic_map_drop(bmap, isl_dim_param, i, 1);
11918 return bmap;
11921 /* Drop all parameters not referenced by "bset".
11923 __isl_give isl_basic_set *isl_basic_set_drop_unused_params(
11924 __isl_take isl_basic_set *bset)
11926 return bset_from_bmap(isl_basic_map_drop_unused_params(
11927 bset_to_bmap(bset)));
11930 __isl_give isl_mat *isl_basic_map_equalities_matrix(
11931 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11932 enum isl_dim_type c2, enum isl_dim_type c3,
11933 enum isl_dim_type c4, enum isl_dim_type c5)
11935 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11936 struct isl_mat *mat;
11937 int i, j, k;
11938 int pos;
11940 if (!bmap)
11941 return NULL;
11942 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
11943 isl_basic_map_total_dim(bmap) + 1);
11944 if (!mat)
11945 return NULL;
11946 for (i = 0; i < bmap->n_eq; ++i)
11947 for (j = 0, pos = 0; j < 5; ++j) {
11948 int off = isl_basic_map_offset(bmap, c[j]);
11949 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11950 isl_int_set(mat->row[i][pos],
11951 bmap->eq[i][off + k]);
11952 ++pos;
11956 return mat;
11959 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
11960 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11961 enum isl_dim_type c2, enum isl_dim_type c3,
11962 enum isl_dim_type c4, enum isl_dim_type c5)
11964 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11965 struct isl_mat *mat;
11966 int i, j, k;
11967 int pos;
11969 if (!bmap)
11970 return NULL;
11971 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
11972 isl_basic_map_total_dim(bmap) + 1);
11973 if (!mat)
11974 return NULL;
11975 for (i = 0; i < bmap->n_ineq; ++i)
11976 for (j = 0, pos = 0; j < 5; ++j) {
11977 int off = isl_basic_map_offset(bmap, c[j]);
11978 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11979 isl_int_set(mat->row[i][pos],
11980 bmap->ineq[i][off + k]);
11981 ++pos;
11985 return mat;
11988 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
11989 __isl_take isl_space *dim,
11990 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11991 enum isl_dim_type c2, enum isl_dim_type c3,
11992 enum isl_dim_type c4, enum isl_dim_type c5)
11994 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11995 isl_basic_map *bmap;
11996 unsigned total;
11997 unsigned extra;
11998 int i, j, k, l;
11999 int pos;
12001 if (!dim || !eq || !ineq)
12002 goto error;
12004 if (eq->n_col != ineq->n_col)
12005 isl_die(dim->ctx, isl_error_invalid,
12006 "equalities and inequalities matrices should have "
12007 "same number of columns", goto error);
12009 total = 1 + isl_space_dim(dim, isl_dim_all);
12011 if (eq->n_col < total)
12012 isl_die(dim->ctx, isl_error_invalid,
12013 "number of columns too small", goto error);
12015 extra = eq->n_col - total;
12017 bmap = isl_basic_map_alloc_space(isl_space_copy(dim), extra,
12018 eq->n_row, ineq->n_row);
12019 if (!bmap)
12020 goto error;
12021 for (i = 0; i < extra; ++i) {
12022 k = isl_basic_map_alloc_div(bmap);
12023 if (k < 0)
12024 goto error;
12025 isl_int_set_si(bmap->div[k][0], 0);
12027 for (i = 0; i < eq->n_row; ++i) {
12028 l = isl_basic_map_alloc_equality(bmap);
12029 if (l < 0)
12030 goto error;
12031 for (j = 0, pos = 0; j < 5; ++j) {
12032 int off = isl_basic_map_offset(bmap, c[j]);
12033 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
12034 isl_int_set(bmap->eq[l][off + k],
12035 eq->row[i][pos]);
12036 ++pos;
12040 for (i = 0; i < ineq->n_row; ++i) {
12041 l = isl_basic_map_alloc_inequality(bmap);
12042 if (l < 0)
12043 goto error;
12044 for (j = 0, pos = 0; j < 5; ++j) {
12045 int off = isl_basic_map_offset(bmap, c[j]);
12046 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
12047 isl_int_set(bmap->ineq[l][off + k],
12048 ineq->row[i][pos]);
12049 ++pos;
12054 isl_space_free(dim);
12055 isl_mat_free(eq);
12056 isl_mat_free(ineq);
12058 bmap = isl_basic_map_simplify(bmap);
12059 return isl_basic_map_finalize(bmap);
12060 error:
12061 isl_space_free(dim);
12062 isl_mat_free(eq);
12063 isl_mat_free(ineq);
12064 return NULL;
12067 __isl_give isl_mat *isl_basic_set_equalities_matrix(
12068 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
12069 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12071 return isl_basic_map_equalities_matrix(bset_to_bmap(bset),
12072 c1, c2, c3, c4, isl_dim_in);
12075 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
12076 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
12077 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12079 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset),
12080 c1, c2, c3, c4, isl_dim_in);
12083 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
12084 __isl_take isl_space *dim,
12085 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
12086 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
12088 isl_basic_map *bmap;
12089 bmap = isl_basic_map_from_constraint_matrices(dim, eq, ineq,
12090 c1, c2, c3, c4, isl_dim_in);
12091 return bset_from_bmap(bmap);
12094 isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
12096 if (!bmap)
12097 return isl_bool_error;
12099 return isl_space_can_zip(bmap->dim);
12102 isl_bool isl_map_can_zip(__isl_keep isl_map *map)
12104 if (!map)
12105 return isl_bool_error;
12107 return isl_space_can_zip(map->dim);
12110 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
12111 * (A -> C) -> (B -> D).
12113 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
12115 unsigned pos;
12116 unsigned n1;
12117 unsigned n2;
12119 if (!bmap)
12120 return NULL;
12122 if (!isl_basic_map_can_zip(bmap))
12123 isl_die(bmap->ctx, isl_error_invalid,
12124 "basic map cannot be zipped", goto error);
12125 pos = isl_basic_map_offset(bmap, isl_dim_in) +
12126 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
12127 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
12128 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
12129 bmap = isl_basic_map_cow(bmap);
12130 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
12131 if (!bmap)
12132 return NULL;
12133 bmap->dim = isl_space_zip(bmap->dim);
12134 if (!bmap->dim)
12135 goto error;
12136 bmap = isl_basic_map_mark_final(bmap);
12137 return bmap;
12138 error:
12139 isl_basic_map_free(bmap);
12140 return NULL;
12143 /* Given a map (A -> B) -> (C -> D), return the corresponding map
12144 * (A -> C) -> (B -> D).
12146 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
12148 int i;
12150 if (!map)
12151 return NULL;
12153 if (!isl_map_can_zip(map))
12154 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
12155 goto error);
12157 map = isl_map_cow(map);
12158 if (!map)
12159 return NULL;
12161 for (i = 0; i < map->n; ++i) {
12162 map->p[i] = isl_basic_map_zip(map->p[i]);
12163 if (!map->p[i])
12164 goto error;
12167 map->dim = isl_space_zip(map->dim);
12168 if (!map->dim)
12169 goto error;
12171 return map;
12172 error:
12173 isl_map_free(map);
12174 return NULL;
12177 /* Can we apply isl_basic_map_curry to "bmap"?
12178 * That is, does it have a nested relation in its domain?
12180 isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
12182 if (!bmap)
12183 return isl_bool_error;
12185 return isl_space_can_curry(bmap->dim);
12188 /* Can we apply isl_map_curry to "map"?
12189 * That is, does it have a nested relation in its domain?
12191 isl_bool isl_map_can_curry(__isl_keep isl_map *map)
12193 if (!map)
12194 return isl_bool_error;
12196 return isl_space_can_curry(map->dim);
12199 /* Given a basic map (A -> B) -> C, return the corresponding basic map
12200 * A -> (B -> C).
12202 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
12205 if (!bmap)
12206 return NULL;
12208 if (!isl_basic_map_can_curry(bmap))
12209 isl_die(bmap->ctx, isl_error_invalid,
12210 "basic map cannot be curried", goto error);
12211 bmap = isl_basic_map_cow(bmap);
12212 if (!bmap)
12213 return NULL;
12214 bmap->dim = isl_space_curry(bmap->dim);
12215 if (!bmap->dim)
12216 goto error;
12217 bmap = isl_basic_map_mark_final(bmap);
12218 return bmap;
12219 error:
12220 isl_basic_map_free(bmap);
12221 return NULL;
12224 /* Given a map (A -> B) -> C, return the corresponding map
12225 * A -> (B -> C).
12227 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
12229 return isl_map_change_space(map, &isl_map_can_curry,
12230 "map cannot be curried", &isl_space_curry);
12233 /* Can isl_map_range_curry be applied to "map"?
12234 * That is, does it have a nested relation in its range,
12235 * the domain of which is itself a nested relation?
12237 isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
12239 if (!map)
12240 return isl_bool_error;
12242 return isl_space_can_range_curry(map->dim);
12245 /* Given a map A -> ((B -> C) -> D), return the corresponding map
12246 * A -> (B -> (C -> D)).
12248 __isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
12250 return isl_map_change_space(map, &isl_map_can_range_curry,
12251 "map range cannot be curried",
12252 &isl_space_range_curry);
12255 /* Can we apply isl_basic_map_uncurry to "bmap"?
12256 * That is, does it have a nested relation in its domain?
12258 isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
12260 if (!bmap)
12261 return isl_bool_error;
12263 return isl_space_can_uncurry(bmap->dim);
12266 /* Can we apply isl_map_uncurry to "map"?
12267 * That is, does it have a nested relation in its domain?
12269 isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
12271 if (!map)
12272 return isl_bool_error;
12274 return isl_space_can_uncurry(map->dim);
12277 /* Given a basic map A -> (B -> C), return the corresponding basic map
12278 * (A -> B) -> C.
12280 __isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
12283 if (!bmap)
12284 return NULL;
12286 if (!isl_basic_map_can_uncurry(bmap))
12287 isl_die(bmap->ctx, isl_error_invalid,
12288 "basic map cannot be uncurried",
12289 return isl_basic_map_free(bmap));
12290 bmap = isl_basic_map_cow(bmap);
12291 if (!bmap)
12292 return NULL;
12293 bmap->dim = isl_space_uncurry(bmap->dim);
12294 if (!bmap->dim)
12295 return isl_basic_map_free(bmap);
12296 bmap = isl_basic_map_mark_final(bmap);
12297 return bmap;
12300 /* Given a map A -> (B -> C), return the corresponding map
12301 * (A -> B) -> C.
12303 __isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
12305 return isl_map_change_space(map, &isl_map_can_uncurry,
12306 "map cannot be uncurried", &isl_space_uncurry);
12309 /* Construct a basic map mapping the domain of the affine expression
12310 * to a one-dimensional range prescribed by the affine expression.
12311 * If "rational" is set, then construct a rational basic map.
12313 * A NaN affine expression cannot be converted to a basic map.
12315 static __isl_give isl_basic_map *isl_basic_map_from_aff2(
12316 __isl_take isl_aff *aff, int rational)
12318 int k;
12319 int pos;
12320 isl_bool is_nan;
12321 isl_local_space *ls;
12322 isl_basic_map *bmap = NULL;
12324 if (!aff)
12325 return NULL;
12326 is_nan = isl_aff_is_nan(aff);
12327 if (is_nan < 0)
12328 goto error;
12329 if (is_nan)
12330 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
12331 "cannot convert NaN", goto error);
12333 ls = isl_aff_get_local_space(aff);
12334 bmap = isl_basic_map_from_local_space(ls);
12335 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
12336 k = isl_basic_map_alloc_equality(bmap);
12337 if (k < 0)
12338 goto error;
12340 pos = isl_basic_map_offset(bmap, isl_dim_out);
12341 isl_seq_cpy(bmap->eq[k], aff->v->el + 1, pos);
12342 isl_int_neg(bmap->eq[k][pos], aff->v->el[0]);
12343 isl_seq_cpy(bmap->eq[k] + pos + 1, aff->v->el + 1 + pos,
12344 aff->v->size - (pos + 1));
12346 isl_aff_free(aff);
12347 if (rational)
12348 bmap = isl_basic_map_set_rational(bmap);
12349 bmap = isl_basic_map_gauss(bmap, NULL);
12350 bmap = isl_basic_map_finalize(bmap);
12351 return bmap;
12352 error:
12353 isl_aff_free(aff);
12354 isl_basic_map_free(bmap);
12355 return NULL;
12358 /* Construct a basic map mapping the domain of the affine expression
12359 * to a one-dimensional range prescribed by the affine expression.
12361 __isl_give isl_basic_map *isl_basic_map_from_aff(__isl_take isl_aff *aff)
12363 return isl_basic_map_from_aff2(aff, 0);
12366 /* Construct a map mapping the domain of the affine expression
12367 * to a one-dimensional range prescribed by the affine expression.
12369 __isl_give isl_map *isl_map_from_aff(__isl_take isl_aff *aff)
12371 isl_basic_map *bmap;
12373 bmap = isl_basic_map_from_aff(aff);
12374 return isl_map_from_basic_map(bmap);
12377 /* Construct a basic map mapping the domain the multi-affine expression
12378 * to its range, with each dimension in the range equated to the
12379 * corresponding affine expression.
12380 * If "rational" is set, then construct a rational basic map.
12382 __isl_give isl_basic_map *isl_basic_map_from_multi_aff2(
12383 __isl_take isl_multi_aff *maff, int rational)
12385 int i;
12386 isl_space *space;
12387 isl_basic_map *bmap;
12389 if (!maff)
12390 return NULL;
12392 if (isl_space_dim(maff->space, isl_dim_out) != maff->n)
12393 isl_die(isl_multi_aff_get_ctx(maff), isl_error_internal,
12394 "invalid space", goto error);
12396 space = isl_space_domain(isl_multi_aff_get_space(maff));
12397 bmap = isl_basic_map_universe(isl_space_from_domain(space));
12398 if (rational)
12399 bmap = isl_basic_map_set_rational(bmap);
12401 for (i = 0; i < maff->n; ++i) {
12402 isl_aff *aff;
12403 isl_basic_map *bmap_i;
12405 aff = isl_aff_copy(maff->u.p[i]);
12406 bmap_i = isl_basic_map_from_aff2(aff, rational);
12408 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
12411 bmap = isl_basic_map_reset_space(bmap, isl_multi_aff_get_space(maff));
12413 isl_multi_aff_free(maff);
12414 return bmap;
12415 error:
12416 isl_multi_aff_free(maff);
12417 return NULL;
12420 /* Construct a basic map mapping the domain the multi-affine expression
12421 * to its range, with each dimension in the range equated to the
12422 * corresponding affine expression.
12424 __isl_give isl_basic_map *isl_basic_map_from_multi_aff(
12425 __isl_take isl_multi_aff *ma)
12427 return isl_basic_map_from_multi_aff2(ma, 0);
12430 /* Construct a map mapping the domain the multi-affine expression
12431 * to its range, with each dimension in the range equated to the
12432 * corresponding affine expression.
12434 __isl_give isl_map *isl_map_from_multi_aff(__isl_take isl_multi_aff *maff)
12436 isl_basic_map *bmap;
12438 bmap = isl_basic_map_from_multi_aff(maff);
12439 return isl_map_from_basic_map(bmap);
12442 /* Construct a basic map mapping a domain in the given space to
12443 * to an n-dimensional range, with n the number of elements in the list,
12444 * where each coordinate in the range is prescribed by the
12445 * corresponding affine expression.
12446 * The domains of all affine expressions in the list are assumed to match
12447 * domain_space.
12449 __isl_give isl_basic_map *isl_basic_map_from_aff_list(
12450 __isl_take isl_space *domain_space, __isl_take isl_aff_list *list)
12452 int i;
12453 isl_space *space;
12454 isl_basic_map *bmap;
12456 if (!list)
12457 return NULL;
12459 space = isl_space_from_domain(domain_space);
12460 bmap = isl_basic_map_universe(space);
12462 for (i = 0; i < list->n; ++i) {
12463 isl_aff *aff;
12464 isl_basic_map *bmap_i;
12466 aff = isl_aff_copy(list->p[i]);
12467 bmap_i = isl_basic_map_from_aff(aff);
12469 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
12472 isl_aff_list_free(list);
12473 return bmap;
12476 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
12477 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12479 return isl_map_equate(set, type1, pos1, type2, pos2);
12482 /* Construct a basic map where the given dimensions are equal to each other.
12484 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
12485 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12487 isl_basic_map *bmap = NULL;
12488 int i;
12490 if (!space)
12491 return NULL;
12493 if (pos1 >= isl_space_dim(space, type1))
12494 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12495 "index out of bounds", goto error);
12496 if (pos2 >= isl_space_dim(space, type2))
12497 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12498 "index out of bounds", goto error);
12500 if (type1 == type2 && pos1 == pos2)
12501 return isl_basic_map_universe(space);
12503 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
12504 i = isl_basic_map_alloc_equality(bmap);
12505 if (i < 0)
12506 goto error;
12507 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12508 pos1 += isl_basic_map_offset(bmap, type1);
12509 pos2 += isl_basic_map_offset(bmap, type2);
12510 isl_int_set_si(bmap->eq[i][pos1], -1);
12511 isl_int_set_si(bmap->eq[i][pos2], 1);
12512 bmap = isl_basic_map_finalize(bmap);
12513 isl_space_free(space);
12514 return bmap;
12515 error:
12516 isl_space_free(space);
12517 isl_basic_map_free(bmap);
12518 return NULL;
12521 /* Add a constraint imposing that the given two dimensions are equal.
12523 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
12524 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12526 isl_basic_map *eq;
12528 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12530 bmap = isl_basic_map_intersect(bmap, eq);
12532 return bmap;
12535 /* Add a constraint imposing that the given two dimensions are equal.
12537 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
12538 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12540 isl_basic_map *bmap;
12542 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
12544 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12546 return map;
12549 /* Add a constraint imposing that the given two dimensions have opposite values.
12551 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
12552 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12554 isl_basic_map *bmap = NULL;
12555 int i;
12557 if (!map)
12558 return NULL;
12560 if (pos1 >= isl_map_dim(map, type1))
12561 isl_die(map->ctx, isl_error_invalid,
12562 "index out of bounds", goto error);
12563 if (pos2 >= isl_map_dim(map, type2))
12564 isl_die(map->ctx, isl_error_invalid,
12565 "index out of bounds", goto error);
12567 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
12568 i = isl_basic_map_alloc_equality(bmap);
12569 if (i < 0)
12570 goto error;
12571 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
12572 pos1 += isl_basic_map_offset(bmap, type1);
12573 pos2 += isl_basic_map_offset(bmap, type2);
12574 isl_int_set_si(bmap->eq[i][pos1], 1);
12575 isl_int_set_si(bmap->eq[i][pos2], 1);
12576 bmap = isl_basic_map_finalize(bmap);
12578 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12580 return map;
12581 error:
12582 isl_basic_map_free(bmap);
12583 isl_map_free(map);
12584 return NULL;
12587 /* Construct a constraint imposing that the value of the first dimension is
12588 * greater than or equal to that of the second.
12590 static __isl_give isl_constraint *constraint_order_ge(
12591 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
12592 enum isl_dim_type type2, int pos2)
12594 isl_constraint *c;
12596 if (!space)
12597 return NULL;
12599 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
12601 if (pos1 >= isl_constraint_dim(c, type1))
12602 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12603 "index out of bounds", return isl_constraint_free(c));
12604 if (pos2 >= isl_constraint_dim(c, type2))
12605 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
12606 "index out of bounds", return isl_constraint_free(c));
12608 if (type1 == type2 && pos1 == pos2)
12609 return c;
12611 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
12612 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
12614 return c;
12617 /* Add a constraint imposing that the value of the first dimension is
12618 * greater than or equal to that of the second.
12620 __isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
12621 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12623 isl_constraint *c;
12624 isl_space *space;
12626 if (type1 == type2 && pos1 == pos2)
12627 return bmap;
12628 space = isl_basic_map_get_space(bmap);
12629 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12630 bmap = isl_basic_map_add_constraint(bmap, c);
12632 return bmap;
12635 /* Add a constraint imposing that the value of the first dimension is
12636 * greater than or equal to that of the second.
12638 __isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
12639 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12641 isl_constraint *c;
12642 isl_space *space;
12644 if (type1 == type2 && pos1 == pos2)
12645 return map;
12646 space = isl_map_get_space(map);
12647 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12648 map = isl_map_add_constraint(map, c);
12650 return map;
12653 /* Add a constraint imposing that the value of the first dimension is
12654 * less than or equal to that of the second.
12656 __isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
12657 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12659 return isl_map_order_ge(map, type2, pos2, type1, pos1);
12662 /* Construct a basic map where the value of the first dimension is
12663 * greater than that of the second.
12665 static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
12666 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12668 isl_basic_map *bmap = NULL;
12669 int i;
12671 if (!space)
12672 return NULL;
12674 if (pos1 >= isl_space_dim(space, type1))
12675 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12676 "index out of bounds", goto error);
12677 if (pos2 >= isl_space_dim(space, type2))
12678 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12679 "index out of bounds", goto error);
12681 if (type1 == type2 && pos1 == pos2)
12682 return isl_basic_map_empty(space);
12684 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
12685 i = isl_basic_map_alloc_inequality(bmap);
12686 if (i < 0)
12687 return isl_basic_map_free(bmap);
12688 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
12689 pos1 += isl_basic_map_offset(bmap, type1);
12690 pos2 += isl_basic_map_offset(bmap, type2);
12691 isl_int_set_si(bmap->ineq[i][pos1], 1);
12692 isl_int_set_si(bmap->ineq[i][pos2], -1);
12693 isl_int_set_si(bmap->ineq[i][0], -1);
12694 bmap = isl_basic_map_finalize(bmap);
12696 return bmap;
12697 error:
12698 isl_space_free(space);
12699 isl_basic_map_free(bmap);
12700 return NULL;
12703 /* Add a constraint imposing that the value of the first dimension is
12704 * greater than that of the second.
12706 __isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
12707 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12709 isl_basic_map *gt;
12711 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12713 bmap = isl_basic_map_intersect(bmap, gt);
12715 return bmap;
12718 /* Add a constraint imposing that the value of the first dimension is
12719 * greater than that of the second.
12721 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
12722 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12724 isl_basic_map *bmap;
12726 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
12728 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12730 return map;
12733 /* Add a constraint imposing that the value of the first dimension is
12734 * smaller than that of the second.
12736 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
12737 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12739 return isl_map_order_gt(map, type2, pos2, type1, pos1);
12742 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
12743 int pos)
12745 isl_aff *div;
12746 isl_local_space *ls;
12748 if (!bmap)
12749 return NULL;
12751 if (!isl_basic_map_divs_known(bmap))
12752 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12753 "some divs are unknown", return NULL);
12755 ls = isl_basic_map_get_local_space(bmap);
12756 div = isl_local_space_get_div(ls, pos);
12757 isl_local_space_free(ls);
12759 return div;
12762 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
12763 int pos)
12765 return isl_basic_map_get_div(bset, pos);
12768 /* Plug in "subs" for dimension "type", "pos" of "bset".
12770 * Let i be the dimension to replace and let "subs" be of the form
12772 * f/d
12774 * Any integer division with a non-zero coefficient for i,
12776 * floor((a i + g)/m)
12778 * is replaced by
12780 * floor((a f + d g)/(m d))
12782 * Constraints of the form
12784 * a i + g
12786 * are replaced by
12788 * a f + d g
12790 * We currently require that "subs" is an integral expression.
12791 * Handling rational expressions may require us to add stride constraints
12792 * as we do in isl_basic_set_preimage_multi_aff.
12794 __isl_give isl_basic_set *isl_basic_set_substitute(
12795 __isl_take isl_basic_set *bset,
12796 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12798 int i;
12799 isl_int v;
12800 isl_ctx *ctx;
12802 if (bset && isl_basic_set_plain_is_empty(bset))
12803 return bset;
12805 bset = isl_basic_set_cow(bset);
12806 if (!bset || !subs)
12807 goto error;
12809 ctx = isl_basic_set_get_ctx(bset);
12810 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
12811 isl_die(ctx, isl_error_invalid,
12812 "spaces don't match", goto error);
12813 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
12814 isl_die(ctx, isl_error_unsupported,
12815 "cannot handle divs yet", goto error);
12816 if (!isl_int_is_one(subs->v->el[0]))
12817 isl_die(ctx, isl_error_invalid,
12818 "can only substitute integer expressions", goto error);
12820 pos += isl_basic_set_offset(bset, type);
12822 isl_int_init(v);
12824 for (i = 0; i < bset->n_eq; ++i) {
12825 if (isl_int_is_zero(bset->eq[i][pos]))
12826 continue;
12827 isl_int_set(v, bset->eq[i][pos]);
12828 isl_int_set_si(bset->eq[i][pos], 0);
12829 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
12830 v, subs->v->el + 1, subs->v->size - 1);
12833 for (i = 0; i < bset->n_ineq; ++i) {
12834 if (isl_int_is_zero(bset->ineq[i][pos]))
12835 continue;
12836 isl_int_set(v, bset->ineq[i][pos]);
12837 isl_int_set_si(bset->ineq[i][pos], 0);
12838 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
12839 v, subs->v->el + 1, subs->v->size - 1);
12842 for (i = 0; i < bset->n_div; ++i) {
12843 if (isl_int_is_zero(bset->div[i][1 + pos]))
12844 continue;
12845 isl_int_set(v, bset->div[i][1 + pos]);
12846 isl_int_set_si(bset->div[i][1 + pos], 0);
12847 isl_seq_combine(bset->div[i] + 1,
12848 subs->v->el[0], bset->div[i] + 1,
12849 v, subs->v->el + 1, subs->v->size - 1);
12850 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
12853 isl_int_clear(v);
12855 bset = isl_basic_set_simplify(bset);
12856 return isl_basic_set_finalize(bset);
12857 error:
12858 isl_basic_set_free(bset);
12859 return NULL;
12862 /* Plug in "subs" for dimension "type", "pos" of "set".
12864 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
12865 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12867 int i;
12869 if (set && isl_set_plain_is_empty(set))
12870 return set;
12872 set = isl_set_cow(set);
12873 if (!set || !subs)
12874 goto error;
12876 for (i = set->n - 1; i >= 0; --i) {
12877 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
12878 set = set_from_map(remove_if_empty(set_to_map(set), i));
12879 if (!set)
12880 return NULL;
12883 return set;
12884 error:
12885 isl_set_free(set);
12886 return NULL;
12889 /* Check if the range of "ma" is compatible with the domain or range
12890 * (depending on "type") of "bmap".
12892 static isl_stat check_basic_map_compatible_range_multi_aff(
12893 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
12894 __isl_keep isl_multi_aff *ma)
12896 isl_bool m;
12897 isl_space *ma_space;
12899 ma_space = isl_multi_aff_get_space(ma);
12901 m = isl_space_has_equal_params(bmap->dim, ma_space);
12902 if (m < 0)
12903 goto error;
12904 if (!m)
12905 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12906 "parameters don't match", goto error);
12907 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
12908 if (m < 0)
12909 goto error;
12910 if (!m)
12911 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12912 "spaces don't match", goto error);
12914 isl_space_free(ma_space);
12915 return isl_stat_ok;
12916 error:
12917 isl_space_free(ma_space);
12918 return isl_stat_error;
12921 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12922 * coefficients before the transformed range of dimensions,
12923 * the "n_after" coefficients after the transformed range of dimensions
12924 * and the coefficients of the other divs in "bmap".
12926 static int set_ma_divs(__isl_keep isl_basic_map *bmap,
12927 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
12929 int i;
12930 int n_param;
12931 int n_set;
12932 isl_local_space *ls;
12934 if (n_div == 0)
12935 return 0;
12937 ls = isl_aff_get_domain_local_space(ma->u.p[0]);
12938 if (!ls)
12939 return -1;
12941 n_param = isl_local_space_dim(ls, isl_dim_param);
12942 n_set = isl_local_space_dim(ls, isl_dim_set);
12943 for (i = 0; i < n_div; ++i) {
12944 int o_bmap = 0, o_ls = 0;
12946 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
12947 o_bmap += 1 + 1 + n_param;
12948 o_ls += 1 + 1 + n_param;
12949 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
12950 o_bmap += n_before;
12951 isl_seq_cpy(bmap->div[i] + o_bmap,
12952 ls->div->row[i] + o_ls, n_set);
12953 o_bmap += n_set;
12954 o_ls += n_set;
12955 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
12956 o_bmap += n_after;
12957 isl_seq_cpy(bmap->div[i] + o_bmap,
12958 ls->div->row[i] + o_ls, n_div);
12959 o_bmap += n_div;
12960 o_ls += n_div;
12961 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
12962 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
12963 goto error;
12966 isl_local_space_free(ls);
12967 return 0;
12968 error:
12969 isl_local_space_free(ls);
12970 return -1;
12973 /* How many stride constraints does "ma" enforce?
12974 * That is, how many of the affine expressions have a denominator
12975 * different from one?
12977 static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
12979 int i;
12980 int strides = 0;
12982 for (i = 0; i < ma->n; ++i)
12983 if (!isl_int_is_one(ma->u.p[i]->v->el[0]))
12984 strides++;
12986 return strides;
12989 /* For each affine expression in ma of the form
12991 * x_i = (f_i y + h_i)/m_i
12993 * with m_i different from one, add a constraint to "bmap"
12994 * of the form
12996 * f_i y + h_i = m_i alpha_i
12998 * with alpha_i an additional existentially quantified variable.
13000 * The input variables of "ma" correspond to a subset of the variables
13001 * of "bmap". There are "n_before" variables in "bmap" before this
13002 * subset and "n_after" variables after this subset.
13003 * The integer divisions of the affine expressions in "ma" are assumed
13004 * to have been aligned. There are "n_div_ma" of them and
13005 * they appear first in "bmap", straight after the "n_after" variables.
13007 static __isl_give isl_basic_map *add_ma_strides(
13008 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
13009 int n_before, int n_after, int n_div_ma)
13011 int i, k;
13012 int div;
13013 int total;
13014 int n_param;
13015 int n_in;
13017 total = isl_basic_map_total_dim(bmap);
13018 n_param = isl_multi_aff_dim(ma, isl_dim_param);
13019 n_in = isl_multi_aff_dim(ma, isl_dim_in);
13020 for (i = 0; i < ma->n; ++i) {
13021 int o_bmap = 0, o_ma = 1;
13023 if (isl_int_is_one(ma->u.p[i]->v->el[0]))
13024 continue;
13025 div = isl_basic_map_alloc_div(bmap);
13026 k = isl_basic_map_alloc_equality(bmap);
13027 if (div < 0 || k < 0)
13028 goto error;
13029 isl_int_set_si(bmap->div[div][0], 0);
13030 isl_seq_cpy(bmap->eq[k] + o_bmap,
13031 ma->u.p[i]->v->el + o_ma, 1 + n_param);
13032 o_bmap += 1 + n_param;
13033 o_ma += 1 + n_param;
13034 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
13035 o_bmap += n_before;
13036 isl_seq_cpy(bmap->eq[k] + o_bmap,
13037 ma->u.p[i]->v->el + o_ma, n_in);
13038 o_bmap += n_in;
13039 o_ma += n_in;
13040 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
13041 o_bmap += n_after;
13042 isl_seq_cpy(bmap->eq[k] + o_bmap,
13043 ma->u.p[i]->v->el + o_ma, n_div_ma);
13044 o_bmap += n_div_ma;
13045 o_ma += n_div_ma;
13046 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
13047 isl_int_neg(bmap->eq[k][1 + total], ma->u.p[i]->v->el[0]);
13048 total++;
13051 return bmap;
13052 error:
13053 isl_basic_map_free(bmap);
13054 return NULL;
13057 /* Replace the domain or range space (depending on "type) of "space" by "set".
13059 static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
13060 enum isl_dim_type type, __isl_take isl_space *set)
13062 if (type == isl_dim_in) {
13063 space = isl_space_range(space);
13064 space = isl_space_map_from_domain_and_range(set, space);
13065 } else {
13066 space = isl_space_domain(space);
13067 space = isl_space_map_from_domain_and_range(space, set);
13070 return space;
13073 /* Compute the preimage of the domain or range (depending on "type")
13074 * of "bmap" under the function represented by "ma".
13075 * In other words, plug in "ma" in the domain or range of "bmap".
13076 * The result is a basic map that lives in the same space as "bmap"
13077 * except that the domain or range has been replaced by
13078 * the domain space of "ma".
13080 * If bmap is represented by
13082 * A(p) + S u + B x + T v + C(divs) >= 0,
13084 * where u and x are input and output dimensions if type == isl_dim_out
13085 * while x and v are input and output dimensions if type == isl_dim_in,
13086 * and ma is represented by
13088 * x = D(p) + F(y) + G(divs')
13090 * then the result is
13092 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
13094 * The divs in the input set are similarly adjusted.
13095 * In particular
13097 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
13099 * becomes
13101 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
13102 * B_i G(divs') + c_i(divs))/n_i)
13104 * If bmap is not a rational map and if F(y) involves any denominators
13106 * x_i = (f_i y + h_i)/m_i
13108 * then additional constraints are added to ensure that we only
13109 * map back integer points. That is we enforce
13111 * f_i y + h_i = m_i alpha_i
13113 * with alpha_i an additional existentially quantified variable.
13115 * We first copy over the divs from "ma".
13116 * Then we add the modified constraints and divs from "bmap".
13117 * Finally, we add the stride constraints, if needed.
13119 __isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
13120 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
13121 __isl_take isl_multi_aff *ma)
13123 int i, k;
13124 isl_space *space;
13125 isl_basic_map *res = NULL;
13126 int n_before, n_after, n_div_bmap, n_div_ma;
13127 isl_int f, c1, c2, g;
13128 isl_bool rational;
13129 int strides;
13131 isl_int_init(f);
13132 isl_int_init(c1);
13133 isl_int_init(c2);
13134 isl_int_init(g);
13136 ma = isl_multi_aff_align_divs(ma);
13137 if (!bmap || !ma)
13138 goto error;
13139 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
13140 goto error;
13142 if (type == isl_dim_in) {
13143 n_before = 0;
13144 n_after = isl_basic_map_dim(bmap, isl_dim_out);
13145 } else {
13146 n_before = isl_basic_map_dim(bmap, isl_dim_in);
13147 n_after = 0;
13149 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
13150 n_div_ma = ma->n ? isl_aff_dim(ma->u.p[0], isl_dim_div) : 0;
13152 space = isl_multi_aff_get_domain_space(ma);
13153 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
13154 rational = isl_basic_map_is_rational(bmap);
13155 strides = rational ? 0 : multi_aff_strides(ma);
13156 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
13157 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
13158 if (rational)
13159 res = isl_basic_map_set_rational(res);
13161 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
13162 if (isl_basic_map_alloc_div(res) < 0)
13163 goto error;
13165 if (set_ma_divs(res, ma, n_before, n_after, n_div_ma) < 0)
13166 goto error;
13168 for (i = 0; i < bmap->n_eq; ++i) {
13169 k = isl_basic_map_alloc_equality(res);
13170 if (k < 0)
13171 goto error;
13172 isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
13173 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13176 for (i = 0; i < bmap->n_ineq; ++i) {
13177 k = isl_basic_map_alloc_inequality(res);
13178 if (k < 0)
13179 goto error;
13180 isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
13181 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
13184 for (i = 0; i < bmap->n_div; ++i) {
13185 if (isl_int_is_zero(bmap->div[i][0])) {
13186 isl_int_set_si(res->div[n_div_ma + i][0], 0);
13187 continue;
13189 isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
13190 n_before, n_after, n_div_ma, n_div_bmap,
13191 f, c1, c2, g, 1);
13194 if (strides)
13195 res = add_ma_strides(res, ma, n_before, n_after, n_div_ma);
13197 isl_int_clear(f);
13198 isl_int_clear(c1);
13199 isl_int_clear(c2);
13200 isl_int_clear(g);
13201 isl_basic_map_free(bmap);
13202 isl_multi_aff_free(ma);
13203 res = isl_basic_map_simplify(res);
13204 return isl_basic_map_finalize(res);
13205 error:
13206 isl_int_clear(f);
13207 isl_int_clear(c1);
13208 isl_int_clear(c2);
13209 isl_int_clear(g);
13210 isl_basic_map_free(bmap);
13211 isl_multi_aff_free(ma);
13212 isl_basic_map_free(res);
13213 return NULL;
13216 /* Compute the preimage of "bset" under the function represented by "ma".
13217 * In other words, plug in "ma" in "bset". The result is a basic set
13218 * that lives in the domain space of "ma".
13220 __isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
13221 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
13223 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
13226 /* Compute the preimage of the domain of "bmap" under the function
13227 * represented by "ma".
13228 * In other words, plug in "ma" in the domain of "bmap".
13229 * The result is a basic map that lives in the same space as "bmap"
13230 * except that the domain has been replaced by the domain space of "ma".
13232 __isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
13233 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13235 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
13238 /* Compute the preimage of the range of "bmap" under the function
13239 * represented by "ma".
13240 * In other words, plug in "ma" in the range of "bmap".
13241 * The result is a basic map that lives in the same space as "bmap"
13242 * except that the range has been replaced by the domain space of "ma".
13244 __isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
13245 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13247 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
13250 /* Check if the range of "ma" is compatible with the domain or range
13251 * (depending on "type") of "map".
13252 * Return isl_stat_error if anything is wrong.
13254 static isl_stat check_map_compatible_range_multi_aff(
13255 __isl_keep isl_map *map, enum isl_dim_type type,
13256 __isl_keep isl_multi_aff *ma)
13258 isl_bool m;
13259 isl_space *ma_space;
13261 ma_space = isl_multi_aff_get_space(ma);
13262 m = isl_space_tuple_is_equal(map->dim, type, ma_space, isl_dim_out);
13263 isl_space_free(ma_space);
13264 if (m < 0)
13265 return isl_stat_error;
13266 if (!m)
13267 isl_die(isl_map_get_ctx(map), isl_error_invalid,
13268 "spaces don't match", return isl_stat_error);
13269 return isl_stat_ok;
13272 /* Compute the preimage of the domain or range (depending on "type")
13273 * of "map" under the function represented by "ma".
13274 * In other words, plug in "ma" in the domain or range of "map".
13275 * The result is a map that lives in the same space as "map"
13276 * except that the domain or range has been replaced by
13277 * the domain space of "ma".
13279 * The parameters are assumed to have been aligned.
13281 static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
13282 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13284 int i;
13285 isl_space *space;
13287 map = isl_map_cow(map);
13288 ma = isl_multi_aff_align_divs(ma);
13289 if (!map || !ma)
13290 goto error;
13291 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
13292 goto error;
13294 for (i = 0; i < map->n; ++i) {
13295 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
13296 isl_multi_aff_copy(ma));
13297 if (!map->p[i])
13298 goto error;
13301 space = isl_multi_aff_get_domain_space(ma);
13302 space = isl_space_set(isl_map_get_space(map), type, space);
13304 isl_space_free(map->dim);
13305 map->dim = space;
13306 if (!map->dim)
13307 goto error;
13309 isl_multi_aff_free(ma);
13310 if (map->n > 1)
13311 ISL_F_CLR(map, ISL_MAP_DISJOINT);
13312 ISL_F_CLR(map, ISL_SET_NORMALIZED);
13313 return map;
13314 error:
13315 isl_multi_aff_free(ma);
13316 isl_map_free(map);
13317 return NULL;
13320 /* Compute the preimage of the domain or range (depending on "type")
13321 * of "map" under the function represented by "ma".
13322 * In other words, plug in "ma" in the domain or range of "map".
13323 * The result is a map that lives in the same space as "map"
13324 * except that the domain or range has been replaced by
13325 * the domain space of "ma".
13327 __isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
13328 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13330 isl_bool aligned;
13332 if (!map || !ma)
13333 goto error;
13335 aligned = isl_map_space_has_equal_params(map, ma->space);
13336 if (aligned < 0)
13337 goto error;
13338 if (aligned)
13339 return map_preimage_multi_aff(map, type, ma);
13341 if (isl_map_check_named_params(map) < 0)
13342 goto error;
13343 if (!isl_space_has_named_params(ma->space))
13344 isl_die(map->ctx, isl_error_invalid,
13345 "unaligned unnamed parameters", goto error);
13346 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
13347 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
13349 return map_preimage_multi_aff(map, type, ma);
13350 error:
13351 isl_multi_aff_free(ma);
13352 return isl_map_free(map);
13355 /* Compute the preimage of "set" under the function represented by "ma".
13356 * In other words, plug in "ma" in "set". The result is a set
13357 * that lives in the domain space of "ma".
13359 __isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
13360 __isl_take isl_multi_aff *ma)
13362 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
13365 /* Compute the preimage of the domain of "map" under the function
13366 * represented by "ma".
13367 * In other words, plug in "ma" in the domain of "map".
13368 * The result is a map that lives in the same space as "map"
13369 * except that the domain has been replaced by the domain space of "ma".
13371 __isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
13372 __isl_take isl_multi_aff *ma)
13374 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
13377 /* Compute the preimage of the range of "map" under the function
13378 * represented by "ma".
13379 * In other words, plug in "ma" in the range of "map".
13380 * The result is a map that lives in the same space as "map"
13381 * except that the range has been replaced by the domain space of "ma".
13383 __isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
13384 __isl_take isl_multi_aff *ma)
13386 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
13389 /* Compute the preimage of "map" under the function represented by "pma".
13390 * In other words, plug in "pma" in the domain or range of "map".
13391 * The result is a map that lives in the same space as "map",
13392 * except that the space of type "type" has been replaced by
13393 * the domain space of "pma".
13395 * The parameters of "map" and "pma" are assumed to have been aligned.
13397 static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
13398 __isl_take isl_map *map, enum isl_dim_type type,
13399 __isl_take isl_pw_multi_aff *pma)
13401 int i;
13402 isl_map *res;
13404 if (!pma)
13405 goto error;
13407 if (pma->n == 0) {
13408 isl_pw_multi_aff_free(pma);
13409 res = isl_map_empty(isl_map_get_space(map));
13410 isl_map_free(map);
13411 return res;
13414 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13415 isl_multi_aff_copy(pma->p[0].maff));
13416 if (type == isl_dim_in)
13417 res = isl_map_intersect_domain(res,
13418 isl_map_copy(pma->p[0].set));
13419 else
13420 res = isl_map_intersect_range(res,
13421 isl_map_copy(pma->p[0].set));
13423 for (i = 1; i < pma->n; ++i) {
13424 isl_map *res_i;
13426 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
13427 isl_multi_aff_copy(pma->p[i].maff));
13428 if (type == isl_dim_in)
13429 res_i = isl_map_intersect_domain(res_i,
13430 isl_map_copy(pma->p[i].set));
13431 else
13432 res_i = isl_map_intersect_range(res_i,
13433 isl_map_copy(pma->p[i].set));
13434 res = isl_map_union(res, res_i);
13437 isl_pw_multi_aff_free(pma);
13438 isl_map_free(map);
13439 return res;
13440 error:
13441 isl_pw_multi_aff_free(pma);
13442 isl_map_free(map);
13443 return NULL;
13446 /* Compute the preimage of "map" under the function represented by "pma".
13447 * In other words, plug in "pma" in the domain or range of "map".
13448 * The result is a map that lives in the same space as "map",
13449 * except that the space of type "type" has been replaced by
13450 * the domain space of "pma".
13452 __isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
13453 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
13455 isl_bool aligned;
13457 if (!map || !pma)
13458 goto error;
13460 aligned = isl_map_space_has_equal_params(map, pma->dim);
13461 if (aligned < 0)
13462 goto error;
13463 if (aligned)
13464 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13466 if (isl_map_check_named_params(map) < 0)
13467 goto error;
13468 if (isl_pw_multi_aff_check_named_params(pma) < 0)
13469 goto error;
13470 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
13471 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
13473 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
13474 error:
13475 isl_pw_multi_aff_free(pma);
13476 return isl_map_free(map);
13479 /* Compute the preimage of "set" under the function represented by "pma".
13480 * In other words, plug in "pma" in "set". The result is a set
13481 * that lives in the domain space of "pma".
13483 __isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
13484 __isl_take isl_pw_multi_aff *pma)
13486 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
13489 /* Compute the preimage of the domain of "map" under the function
13490 * represented by "pma".
13491 * In other words, plug in "pma" in the domain of "map".
13492 * The result is a map that lives in the same space as "map",
13493 * except that domain space has been replaced by the domain space of "pma".
13495 __isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
13496 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13498 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
13501 /* Compute the preimage of the range of "map" under the function
13502 * represented by "pma".
13503 * In other words, plug in "pma" in the range of "map".
13504 * The result is a map that lives in the same space as "map",
13505 * except that range space has been replaced by the domain space of "pma".
13507 __isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
13508 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
13510 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
13513 /* Compute the preimage of "map" under the function represented by "mpa".
13514 * In other words, plug in "mpa" in the domain or range of "map".
13515 * The result is a map that lives in the same space as "map",
13516 * except that the space of type "type" has been replaced by
13517 * the domain space of "mpa".
13519 * If the map does not involve any constraints that refer to the
13520 * dimensions of the substituted space, then the only possible
13521 * effect of "mpa" on the map is to map the space to a different space.
13522 * We create a separate isl_multi_aff to effectuate this change
13523 * in order to avoid spurious splitting of the map along the pieces
13524 * of "mpa".
13525 * If "mpa" has a non-trivial explicit domain, however,
13526 * then the full substitution should be performed.
13528 __isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
13529 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
13531 int n;
13532 isl_bool full;
13533 isl_pw_multi_aff *pma;
13535 if (!map || !mpa)
13536 goto error;
13538 n = isl_map_dim(map, type);
13539 full = isl_map_involves_dims(map, type, 0, n);
13540 if (full >= 0 && !full)
13541 full = isl_multi_pw_aff_has_non_trivial_domain(mpa);
13542 if (full < 0)
13543 goto error;
13544 if (!full) {
13545 isl_space *space;
13546 isl_multi_aff *ma;
13548 space = isl_multi_pw_aff_get_space(mpa);
13549 isl_multi_pw_aff_free(mpa);
13550 ma = isl_multi_aff_zero(space);
13551 return isl_map_preimage_multi_aff(map, type, ma);
13554 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
13555 return isl_map_preimage_pw_multi_aff(map, type, pma);
13556 error:
13557 isl_map_free(map);
13558 isl_multi_pw_aff_free(mpa);
13559 return NULL;
13562 /* Compute the preimage of "map" under the function represented by "mpa".
13563 * In other words, plug in "mpa" in the domain "map".
13564 * The result is a map that lives in the same space as "map",
13565 * except that domain space has been replaced by the domain space of "mpa".
13567 __isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
13568 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
13570 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
13573 /* Compute the preimage of "set" by the function represented by "mpa".
13574 * In other words, plug in "mpa" in "set".
13576 __isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
13577 __isl_take isl_multi_pw_aff *mpa)
13579 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);
13582 /* Return a copy of the equality constraints of "bset" as a matrix.
13584 __isl_give isl_mat *isl_basic_set_extract_equalities(
13585 __isl_keep isl_basic_set *bset)
13587 isl_ctx *ctx;
13588 unsigned total;
13590 if (!bset)
13591 return NULL;
13593 ctx = isl_basic_set_get_ctx(bset);
13594 total = 1 + isl_basic_set_dim(bset, isl_dim_all);
13595 return isl_mat_sub_alloc6(ctx, bset->eq, 0, bset->n_eq, 0, total);
13598 /* Are the "n" "coefficients" starting at "first" of the integer division
13599 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13600 * to each other?
13601 * The "coefficient" at position 0 is the denominator.
13602 * The "coefficient" at position 1 is the constant term.
13604 isl_bool isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map *bmap1,
13605 int pos1, __isl_keep isl_basic_map *bmap2, int pos2,
13606 unsigned first, unsigned n)
13608 if (isl_basic_map_check_range(bmap1, isl_dim_div, pos1, 1) < 0)
13609 return isl_bool_error;
13610 if (isl_basic_map_check_range(bmap2, isl_dim_div, pos2, 1) < 0)
13611 return isl_bool_error;
13612 return isl_seq_eq(bmap1->div[pos1] + first,
13613 bmap2->div[pos2] + first, n);
13616 /* Are the integer division expressions at position "pos1" in "bmap1" and
13617 * "pos2" in "bmap2" equal to each other, except that the constant terms
13618 * are different?
13620 isl_bool isl_basic_map_equal_div_expr_except_constant(
13621 __isl_keep isl_basic_map *bmap1, int pos1,
13622 __isl_keep isl_basic_map *bmap2, int pos2)
13624 isl_bool equal;
13625 unsigned total;
13627 if (!bmap1 || !bmap2)
13628 return isl_bool_error;
13629 total = isl_basic_map_total_dim(bmap1);
13630 if (total != isl_basic_map_total_dim(bmap2))
13631 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
13632 "incomparable div expressions", return isl_bool_error);
13633 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13634 0, 1);
13635 if (equal < 0 || !equal)
13636 return equal;
13637 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13638 1, 1);
13639 if (equal < 0 || equal)
13640 return isl_bool_not(equal);
13641 return isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13642 2, total);
13645 /* Replace the numerator of the constant term of the integer division
13646 * expression at position "div" in "bmap" by "value".
13647 * The caller guarantees that this does not change the meaning
13648 * of the input.
13650 __isl_give isl_basic_map *isl_basic_map_set_div_expr_constant_num_si_inplace(
13651 __isl_take isl_basic_map *bmap, int div, int value)
13653 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
13654 return isl_basic_map_free(bmap);
13656 isl_int_set_si(bmap->div[div][1], value);
13658 return bmap;
13661 /* Is the point "inner" internal to inequality constraint "ineq"
13662 * of "bset"?
13663 * The point is considered to be internal to the inequality constraint,
13664 * if it strictly lies on the positive side of the inequality constraint,
13665 * or if it lies on the constraint and the constraint is lexico-positive.
13667 static isl_bool is_internal(__isl_keep isl_vec *inner,
13668 __isl_keep isl_basic_set *bset, int ineq)
13670 isl_ctx *ctx;
13671 int pos;
13672 unsigned total;
13674 if (!inner || !bset)
13675 return isl_bool_error;
13677 ctx = isl_basic_set_get_ctx(bset);
13678 isl_seq_inner_product(inner->el, bset->ineq[ineq], inner->size,
13679 &ctx->normalize_gcd);
13680 if (!isl_int_is_zero(ctx->normalize_gcd))
13681 return isl_int_is_nonneg(ctx->normalize_gcd);
13683 total = isl_basic_set_dim(bset, isl_dim_all);
13684 pos = isl_seq_first_non_zero(bset->ineq[ineq] + 1, total);
13685 return isl_int_is_pos(bset->ineq[ineq][1 + pos]);
13688 /* Tighten the inequality constraints of "bset" that are outward with respect
13689 * to the point "vec".
13690 * That is, tighten the constraints that are not satisfied by "vec".
13692 * "vec" is a point internal to some superset S of "bset" that is used
13693 * to make the subsets of S disjoint, by tightening one half of the constraints
13694 * that separate two subsets. In particular, the constraints of S
13695 * are all satisfied by "vec" and should not be tightened.
13696 * Of the internal constraints, those that have "vec" on the outside
13697 * are tightened. The shared facet is included in the adjacent subset
13698 * with the opposite constraint.
13699 * For constraints that saturate "vec", this criterion cannot be used
13700 * to determine which of the two sides should be tightened.
13701 * Instead, the sign of the first non-zero coefficient is used
13702 * to make this choice. Note that this second criterion is never used
13703 * on the constraints of S since "vec" is interior to "S".
13705 __isl_give isl_basic_set *isl_basic_set_tighten_outward(
13706 __isl_take isl_basic_set *bset, __isl_keep isl_vec *vec)
13708 int j;
13710 bset = isl_basic_set_cow(bset);
13711 if (!bset)
13712 return NULL;
13713 for (j = 0; j < bset->n_ineq; ++j) {
13714 isl_bool internal;
13716 internal = is_internal(vec, bset, j);
13717 if (internal < 0)
13718 return isl_basic_set_free(bset);
13719 if (internal)
13720 continue;
13721 isl_int_sub_ui(bset->ineq[j][0], bset->ineq[j][0], 1);
13724 return bset;
13727 /* Replace the variables x of type "type" starting at "first" in "bmap"
13728 * by x' with x = M x' with M the matrix trans.
13729 * That is, replace the corresponding coefficients c by c M.
13731 * The transformation matrix should be a square matrix.
13733 __isl_give isl_basic_map *isl_basic_map_transform_dims(
13734 __isl_take isl_basic_map *bmap, enum isl_dim_type type, unsigned first,
13735 __isl_take isl_mat *trans)
13737 unsigned pos;
13739 bmap = isl_basic_map_cow(bmap);
13740 if (!bmap || !trans)
13741 goto error;
13743 if (trans->n_row != trans->n_col)
13744 isl_die(trans->ctx, isl_error_invalid,
13745 "expecting square transformation matrix", goto error);
13746 if (first + trans->n_row > isl_basic_map_dim(bmap, type))
13747 isl_die(trans->ctx, isl_error_invalid,
13748 "oversized transformation matrix", goto error);
13750 pos = isl_basic_map_offset(bmap, type) + first;
13752 if (isl_mat_sub_transform(bmap->eq, bmap->n_eq, pos,
13753 isl_mat_copy(trans)) < 0)
13754 goto error;
13755 if (isl_mat_sub_transform(bmap->ineq, bmap->n_ineq, pos,
13756 isl_mat_copy(trans)) < 0)
13757 goto error;
13758 if (isl_mat_sub_transform(bmap->div, bmap->n_div, 1 + pos,
13759 isl_mat_copy(trans)) < 0)
13760 goto error;
13762 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
13763 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
13765 isl_mat_free(trans);
13766 return bmap;
13767 error:
13768 isl_mat_free(trans);
13769 isl_basic_map_free(bmap);
13770 return NULL;
13773 /* Replace the variables x of type "type" starting at "first" in "bset"
13774 * by x' with x = M x' with M the matrix trans.
13775 * That is, replace the corresponding coefficients c by c M.
13777 * The transformation matrix should be a square matrix.
13779 __isl_give isl_basic_set *isl_basic_set_transform_dims(
13780 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned first,
13781 __isl_take isl_mat *trans)
13783 return isl_basic_map_transform_dims(bset, type, first, trans);