extract out shared isl_qpolynomial_{take,restore}_poly
[isl.git] / isl_map.c
blob3e56d14da89becae8aa92772886536b642b8cba7
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
8 * Copyright 2018-2019 Cerebras Systems
9 * Copyright 2022 Cerebras Systems
11 * Use of this software is governed by the MIT license
13 * Written by Sven Verdoolaege, K.U.Leuven, Departement
14 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
15 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
16 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
17 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
18 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
19 * B.P. 105 - 78153 Le Chesnay, France
20 * and Centre de Recherche Inria de Paris, 2 rue Simone Iff - Voie DQ12,
21 * CS 42112, 75589 Paris Cedex 12, France
22 * and Cerebras Systems, 175 S San Antonio Rd, Los Altos, CA, USA
25 #include <string.h>
26 #include <isl_ctx_private.h>
27 #include <isl_map_private.h>
28 #include <isl_blk.h>
29 #include <isl_id_private.h>
30 #include <isl/constraint.h>
31 #include "isl_space_private.h"
32 #include "isl_equalities.h"
33 #include <isl_lp_private.h>
34 #include <isl_seq.h>
35 #include <isl/set.h>
36 #include <isl/map.h>
37 #include <isl_reordering.h>
38 #include "isl_sample.h"
39 #include <isl_sort.h>
40 #include "isl_tab.h"
41 #include <isl/vec.h>
42 #include <isl_mat_private.h>
43 #include <isl_vec_private.h>
44 #include <isl_dim_map.h>
45 #include <isl_local_space_private.h>
46 #include <isl_aff_private.h>
47 #include <isl_options_private.h>
48 #include <isl_morph.h>
49 #include <isl_val_private.h>
50 #include <isl_printer_private.h>
52 #include <bset_to_bmap.c>
53 #include <bset_from_bmap.c>
54 #include <set_to_map.c>
55 #include <set_from_map.c>
57 /* Treat "bset" as a basic map.
58 * Internally, isl_basic_set is defined to isl_basic_map, so in practice,
59 * this function performs a redundant cast.
61 static __isl_keep const isl_basic_map *const_bset_to_bmap(
62 __isl_keep const isl_basic_set *bset)
64 return (const isl_basic_map *) bset;
67 #undef TYPE
68 #define TYPE isl_basic_map
69 #include "has_single_reference_templ.c"
71 static unsigned pos(__isl_keep isl_space *space, enum isl_dim_type type)
73 switch (type) {
74 case isl_dim_param: return 1;
75 case isl_dim_in: return 1 + space->nparam;
76 case isl_dim_out: return 1 + space->nparam + space->n_in;
77 default: return 0;
81 isl_size isl_basic_map_dim(__isl_keep isl_basic_map *bmap,
82 enum isl_dim_type type)
84 if (!bmap)
85 return isl_size_error;
86 switch (type) {
87 case isl_dim_cst: return 1;
88 case isl_dim_param:
89 case isl_dim_in:
90 case isl_dim_out: return isl_space_dim(bmap->dim, type);
91 case isl_dim_div: return bmap->n_div;
92 case isl_dim_all: return isl_basic_map_total_dim(bmap);
93 default: return 0;
97 /* Return the space of "map".
99 __isl_keep isl_space *isl_map_peek_space(__isl_keep const isl_map *map)
101 return map ? map->dim : NULL;
104 /* Return the space of "set".
106 __isl_keep isl_space *isl_set_peek_space(__isl_keep isl_set *set)
108 return isl_map_peek_space(set_to_map(set));
111 isl_size isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type)
113 return isl_space_dim(isl_map_peek_space(map), type);
116 /* Return the dimensionality of the domain (tuple) of the map.
118 isl_size isl_map_domain_tuple_dim(__isl_keep isl_map *map)
120 return isl_map_dim(map, isl_dim_in);
123 /* Return the dimensionality of the range (tuple) of the map.
125 isl_size isl_map_range_tuple_dim(__isl_keep isl_map *map)
127 return isl_map_dim(map, isl_dim_out);
130 isl_size isl_set_dim(__isl_keep isl_set *set, enum isl_dim_type type)
132 return isl_map_dim(set_to_map(set), type);
135 /* Return the dimensionality of the (tuple of the) set.
137 isl_size isl_set_tuple_dim(__isl_keep isl_set *set)
139 return isl_set_dim(set, isl_dim_set);
142 /* Return the position of the variables of the given type
143 * within the sequence of variables of "bmap".
145 isl_size isl_basic_map_var_offset(__isl_keep isl_basic_map *bmap,
146 enum isl_dim_type type)
148 isl_space *space;
150 space = isl_basic_map_peek_space(bmap);
152 switch (type) {
153 case isl_dim_param:
154 case isl_dim_in:
155 case isl_dim_out: return isl_space_offset(space, type);
156 case isl_dim_div: return isl_space_dim(space, isl_dim_all);
157 case isl_dim_cst:
158 default:
159 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
160 "invalid dimension type", return isl_size_error);
164 /* Return the position of the variables of the given type
165 * within the sequence of variables of "bset".
167 isl_size isl_basic_set_var_offset(__isl_keep isl_basic_set *bset,
168 enum isl_dim_type type)
170 return isl_basic_map_var_offset(bset_to_bmap(bset), type);
173 /* Return the position of the coefficients of the variables of the given type
174 * within the sequence of coefficients of "bmap".
176 unsigned isl_basic_map_offset(__isl_keep isl_basic_map *bmap,
177 enum isl_dim_type type)
179 switch (type) {
180 case isl_dim_cst: return 0;
181 case isl_dim_param:
182 case isl_dim_in:
183 case isl_dim_out:
184 case isl_dim_div: return 1 + isl_basic_map_var_offset(bmap, type);
185 default: return 0;
189 unsigned isl_basic_set_offset(__isl_keep isl_basic_set *bset,
190 enum isl_dim_type type)
192 return isl_basic_map_offset(bset, type);
195 static unsigned map_offset(__isl_keep isl_map *map, enum isl_dim_type type)
197 return pos(map->dim, type);
200 isl_size isl_basic_set_dim(__isl_keep isl_basic_set *bset,
201 enum isl_dim_type type)
203 return isl_basic_map_dim(bset, type);
206 isl_size isl_basic_set_n_dim(__isl_keep isl_basic_set *bset)
208 return isl_basic_set_dim(bset, isl_dim_set);
211 isl_size isl_basic_set_n_param(__isl_keep isl_basic_set *bset)
213 return isl_basic_set_dim(bset, isl_dim_param);
216 isl_size isl_basic_set_total_dim(__isl_keep const isl_basic_set *bset)
218 return isl_basic_map_total_dim(const_bset_to_bmap(bset));
221 isl_size isl_set_n_dim(__isl_keep isl_set *set)
223 return isl_set_dim(set, isl_dim_set);
226 isl_size isl_set_n_param(__isl_keep isl_set *set)
228 return isl_set_dim(set, isl_dim_param);
231 isl_size isl_basic_map_total_dim(__isl_keep const isl_basic_map *bmap)
233 isl_size dim;
235 if (!bmap)
236 return isl_size_error;
237 dim = isl_space_dim(bmap->dim, isl_dim_all);
238 if (dim < 0)
239 return isl_size_error;
240 return dim + bmap->n_div;
243 /* Return the number of equality constraints in the description of "bmap".
244 * Return isl_size_error on error.
246 isl_size isl_basic_map_n_equality(__isl_keep isl_basic_map *bmap)
248 if (!bmap)
249 return isl_size_error;
250 return bmap->n_eq;
253 /* Return the number of equality constraints in the description of "bset".
254 * Return isl_size_error on error.
256 isl_size isl_basic_set_n_equality(__isl_keep isl_basic_set *bset)
258 return isl_basic_map_n_equality(bset_to_bmap(bset));
261 /* Return the number of inequality constraints in the description of "bmap".
262 * Return isl_size_error on error.
264 isl_size isl_basic_map_n_inequality(__isl_keep isl_basic_map *bmap)
266 if (!bmap)
267 return isl_size_error;
268 return bmap->n_ineq;
271 /* Return the number of inequality constraints in the description of "bset".
272 * Return isl_size_error on error.
274 isl_size isl_basic_set_n_inequality(__isl_keep isl_basic_set *bset)
276 return isl_basic_map_n_inequality(bset_to_bmap(bset));
279 /* Do "bmap1" and "bmap2" have the same parameters?
281 static isl_bool isl_basic_map_has_equal_params(__isl_keep isl_basic_map *bmap1,
282 __isl_keep isl_basic_map *bmap2)
284 isl_space *space1, *space2;
286 space1 = isl_basic_map_peek_space(bmap1);
287 space2 = isl_basic_map_peek_space(bmap2);
288 return isl_space_has_equal_params(space1, space2);
291 /* Do "map1" and "map2" have the same parameters?
293 isl_bool isl_map_has_equal_params(__isl_keep isl_map *map1,
294 __isl_keep isl_map *map2)
296 isl_space *space1, *space2;
298 space1 = isl_map_peek_space(map1);
299 space2 = isl_map_peek_space(map2);
300 return isl_space_has_equal_params(space1, space2);
303 /* Do "map" and "set" have the same parameters?
305 static isl_bool isl_map_set_has_equal_params(__isl_keep isl_map *map,
306 __isl_keep isl_set *set)
308 return isl_map_has_equal_params(map, set_to_map(set));
311 /* Is the tuple of type "type" of "bmap" the same as the single tuple of "bset"?
313 static isl_bool isl_basic_map_set_tuple_is_equal(__isl_keep isl_basic_map *bmap,
314 enum isl_dim_type type, __isl_keep isl_basic_set *bset)
316 isl_space *bmap_space, *bset_space;
318 bmap_space = isl_basic_map_peek_space(bmap);
319 bset_space = isl_basic_set_peek_space(bset);
320 return isl_space_tuple_is_equal(bmap_space, type,
321 bset_space, isl_dim_set);
324 /* Is the tuple of type "type" of "map" the same as the single tuple of "set"?
326 static isl_bool isl_map_set_tuple_is_equal(__isl_keep isl_map *map,
327 enum isl_dim_type type, __isl_keep isl_set *set)
329 return isl_map_tuple_is_equal(map, type, set_to_map(set), isl_dim_set);
332 isl_bool isl_map_compatible_domain(__isl_keep isl_map *map,
333 __isl_keep isl_set *set)
335 isl_bool m;
336 if (!map || !set)
337 return isl_bool_error;
338 m = isl_map_has_equal_params(map, set_to_map(set));
339 if (m < 0 || !m)
340 return m;
341 return isl_map_set_tuple_is_equal(map, isl_dim_in, set);
344 isl_bool isl_basic_map_compatible_domain(__isl_keep isl_basic_map *bmap,
345 __isl_keep isl_basic_set *bset)
347 isl_bool m;
348 if (!bmap || !bset)
349 return isl_bool_error;
350 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
351 if (m < 0 || !m)
352 return m;
353 return isl_basic_map_set_tuple_is_equal(bmap, isl_dim_in, bset);
356 isl_bool isl_map_compatible_range(__isl_keep isl_map *map,
357 __isl_keep isl_set *set)
359 isl_bool m;
360 if (!map || !set)
361 return isl_bool_error;
362 m = isl_map_has_equal_params(map, set_to_map(set));
363 if (m < 0 || !m)
364 return m;
365 return isl_map_set_tuple_is_equal(map, isl_dim_out, set);
368 isl_bool isl_basic_map_compatible_range(__isl_keep isl_basic_map *bmap,
369 __isl_keep isl_basic_set *bset)
371 isl_bool m;
372 if (!bmap || !bset)
373 return isl_bool_error;
374 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
375 if (m < 0 || !m)
376 return m;
377 return isl_basic_map_set_tuple_is_equal(bmap, isl_dim_out, bset);
380 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap)
382 return bmap ? bmap->ctx : NULL;
385 isl_ctx *isl_basic_set_get_ctx(__isl_keep isl_basic_set *bset)
387 return bset ? bset->ctx : NULL;
390 isl_ctx *isl_map_get_ctx(__isl_keep isl_map *map)
392 return map ? map->ctx : NULL;
395 isl_ctx *isl_set_get_ctx(__isl_keep isl_set *set)
397 return set ? set->ctx : NULL;
400 /* Return the space of "bmap".
402 __isl_keep isl_space *isl_basic_map_peek_space(
403 __isl_keep const isl_basic_map *bmap)
405 return bmap ? bmap->dim : NULL;
408 /* Return the space of "bset".
410 __isl_keep isl_space *isl_basic_set_peek_space(__isl_keep isl_basic_set *bset)
412 return isl_basic_map_peek_space(bset_to_bmap(bset));
415 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap)
417 return isl_space_copy(isl_basic_map_peek_space(bmap));
420 __isl_give isl_space *isl_basic_set_get_space(__isl_keep isl_basic_set *bset)
422 return isl_basic_map_get_space(bset_to_bmap(bset));
425 /* Return the space of "bmap".
426 * This may be either a copy or the space itself
427 * if there is only one reference to "bmap".
428 * This allows the space to be modified inplace
429 * if both the basic map and its space have only a single reference.
430 * The caller is not allowed to modify "bmap" between this call and
431 * a subsequent call to isl_basic_map_restore_space.
432 * The only exception is that isl_basic_map_free can be called instead.
434 static __isl_give isl_space *isl_basic_map_take_space(
435 __isl_keep isl_basic_map *bmap)
437 isl_space *space;
439 if (!bmap)
440 return NULL;
441 if (bmap->ref != 1)
442 return isl_basic_map_get_space(bmap);
443 space = bmap->dim;
444 bmap->dim = NULL;
445 return space;
448 /* Set the space of "bmap" to "space", where the space of "bmap" may be missing
449 * due to a preceding call to isl_basic_map_take_space.
450 * However, in this case, "bmap" only has a single reference and
451 * then the call to isl_basic_map_cow has no effect.
453 static __isl_give isl_basic_map *isl_basic_map_restore_space(
454 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
456 if (!bmap || !space)
457 goto error;
459 if (bmap->dim == space) {
460 isl_space_free(space);
461 return bmap;
464 bmap = isl_basic_map_cow(bmap);
465 if (!bmap)
466 goto error;
467 isl_space_free(bmap->dim);
468 bmap->dim = space;
470 return bmap;
471 error:
472 isl_basic_map_free(bmap);
473 isl_space_free(space);
474 return NULL;
477 /* Extract the divs in "bmap" as a matrix.
479 __isl_give isl_mat *isl_basic_map_get_divs(__isl_keep isl_basic_map *bmap)
481 int i;
482 isl_ctx *ctx;
483 isl_mat *div;
484 isl_size v_div;
485 unsigned cols;
487 v_div = isl_basic_map_var_offset(bmap, isl_dim_div);
488 if (v_div < 0)
489 return NULL;
491 ctx = isl_basic_map_get_ctx(bmap);
492 cols = 1 + 1 + v_div + bmap->n_div;
493 div = isl_mat_alloc(ctx, bmap->n_div, cols);
494 if (!div)
495 return NULL;
497 for (i = 0; i < bmap->n_div; ++i)
498 isl_seq_cpy(div->row[i], bmap->div[i], cols);
500 return div;
503 /* Extract the divs in "bset" as a matrix.
505 __isl_give isl_mat *isl_basic_set_get_divs(__isl_keep isl_basic_set *bset)
507 return isl_basic_map_get_divs(bset);
510 __isl_give isl_local_space *isl_basic_map_get_local_space(
511 __isl_keep isl_basic_map *bmap)
513 isl_mat *div;
515 if (!bmap)
516 return NULL;
518 div = isl_basic_map_get_divs(bmap);
519 return isl_local_space_alloc_div(isl_space_copy(bmap->dim), div);
522 __isl_give isl_local_space *isl_basic_set_get_local_space(
523 __isl_keep isl_basic_set *bset)
525 return isl_basic_map_get_local_space(bset);
528 /* For each known div d = floor(f/m), add the constraints
530 * f - m d >= 0
531 * -(f-(m-1)) + m d >= 0
533 * Do not finalize the result.
535 static __isl_give isl_basic_map *add_known_div_constraints(
536 __isl_take isl_basic_map *bmap)
538 int i;
539 isl_size n_div;
541 n_div = isl_basic_map_dim(bmap, isl_dim_div);
542 if (n_div < 0)
543 return isl_basic_map_free(bmap);
544 if (n_div == 0)
545 return bmap;
546 bmap = isl_basic_map_cow(bmap);
547 bmap = isl_basic_map_extend_constraints(bmap, 0, 2 * n_div);
548 if (!bmap)
549 return NULL;
550 for (i = 0; i < n_div; ++i) {
551 if (isl_int_is_zero(bmap->div[i][0]))
552 continue;
553 bmap = isl_basic_map_add_div_constraints(bmap, i);
556 return bmap;
559 __isl_give isl_basic_map *isl_basic_map_from_local_space(
560 __isl_take isl_local_space *ls)
562 int i;
563 isl_size n_div;
564 isl_basic_map *bmap;
566 n_div = isl_local_space_dim(ls, isl_dim_div);
567 if (n_div < 0)
568 ls = isl_local_space_free(ls);
569 if (!ls)
570 return NULL;
572 bmap = isl_basic_map_alloc_space(isl_local_space_get_space(ls),
573 n_div, 0, 2 * n_div);
575 for (i = 0; i < n_div; ++i)
576 if (isl_basic_map_alloc_div(bmap) < 0)
577 goto error;
579 for (i = 0; i < n_div; ++i)
580 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
581 bmap = add_known_div_constraints(bmap);
583 isl_local_space_free(ls);
584 return bmap;
585 error:
586 isl_local_space_free(ls);
587 isl_basic_map_free(bmap);
588 return NULL;
591 __isl_give isl_basic_set *isl_basic_set_from_local_space(
592 __isl_take isl_local_space *ls)
594 return isl_basic_map_from_local_space(ls);
597 __isl_give isl_space *isl_map_get_space(__isl_keep isl_map *map)
599 return isl_space_copy(isl_map_peek_space(map));
602 __isl_give isl_space *isl_set_get_space(__isl_keep isl_set *set)
604 if (!set)
605 return NULL;
606 return isl_space_copy(set->dim);
609 /* Return the space of "map".
610 * This may be either a copy or the space itself
611 * if there is only one reference to "map".
612 * This allows the space to be modified inplace
613 * if both the map and its space have only a single reference.
614 * The caller is not allowed to modify "map" between this call and
615 * a subsequent call to isl_map_restore_space.
616 * The only exception is that isl_map_free can be called instead.
618 static __isl_give isl_space *isl_map_take_space(__isl_keep isl_map *map)
620 isl_space *space;
622 if (!map)
623 return NULL;
624 if (map->ref != 1)
625 return isl_map_get_space(map);
626 space = map->dim;
627 map->dim = NULL;
628 return space;
631 /* Set the space of "map" to "space", where the space of "map" may be missing
632 * due to a preceding call to isl_map_take_space.
633 * However, in this case, "map" only has a single reference and
634 * then the call to isl_map_cow has no effect.
636 static __isl_give isl_map *isl_map_restore_space(__isl_take isl_map *map,
637 __isl_take isl_space *space)
639 if (!map || !space)
640 goto error;
642 if (map->dim == space) {
643 isl_space_free(space);
644 return map;
647 map = isl_map_cow(map);
648 if (!map)
649 goto error;
650 isl_space_free(map->dim);
651 map->dim = space;
653 return map;
654 error:
655 isl_map_free(map);
656 isl_space_free(space);
657 return NULL;
660 __isl_give isl_basic_map *isl_basic_map_set_tuple_name(
661 __isl_take isl_basic_map *bmap, enum isl_dim_type type, const char *s)
663 isl_space *space;
665 space = isl_basic_map_take_space(bmap);
666 space = isl_space_set_tuple_name(space, type, s);
667 bmap = isl_basic_map_restore_space(bmap, space);
668 bmap = isl_basic_map_finalize(bmap);
669 return bmap;
672 __isl_give isl_basic_set *isl_basic_set_set_tuple_name(
673 __isl_take isl_basic_set *bset, const char *s)
675 return isl_basic_map_set_tuple_name(bset, isl_dim_set, s);
678 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map *bmap,
679 enum isl_dim_type type)
681 return bmap ? isl_space_get_tuple_name(bmap->dim, type) : NULL;
684 __isl_give isl_map *isl_map_set_tuple_name(__isl_take isl_map *map,
685 enum isl_dim_type type, const char *s)
687 int i;
688 isl_space *space;
690 map = isl_map_cow(map);
691 if (!map)
692 return NULL;
694 for (i = 0; i < map->n; ++i) {
695 map->p[i] = isl_basic_map_set_tuple_name(map->p[i], type, s);
696 if (!map->p[i])
697 goto error;
700 space = isl_map_take_space(map);
701 space = isl_space_set_tuple_name(space, type, s);
702 map = isl_map_restore_space(map, space);
704 return map;
705 error:
706 isl_map_free(map);
707 return NULL;
710 /* Replace the identifier of the tuple of type "type" by "id".
712 __isl_give isl_basic_map *isl_basic_map_set_tuple_id(
713 __isl_take isl_basic_map *bmap,
714 enum isl_dim_type type, __isl_take isl_id *id)
716 isl_space *space;
718 space = isl_basic_map_take_space(bmap);
719 space = isl_space_set_tuple_id(space, type, id);
720 bmap = isl_basic_map_restore_space(bmap, space);
721 bmap = isl_basic_map_finalize(bmap);
722 return bmap;
725 /* Replace the identifier of the tuple by "id".
727 __isl_give isl_basic_set *isl_basic_set_set_tuple_id(
728 __isl_take isl_basic_set *bset, __isl_take isl_id *id)
730 return isl_basic_map_set_tuple_id(bset, isl_dim_set, id);
733 /* Does the input or output tuple have a name?
735 isl_bool isl_map_has_tuple_name(__isl_keep isl_map *map, enum isl_dim_type type)
737 return map ? isl_space_has_tuple_name(map->dim, type) : isl_bool_error;
740 const char *isl_map_get_tuple_name(__isl_keep isl_map *map,
741 enum isl_dim_type type)
743 return map ? isl_space_get_tuple_name(map->dim, type) : NULL;
746 __isl_give isl_set *isl_set_set_tuple_name(__isl_take isl_set *set,
747 const char *s)
749 return set_from_map(isl_map_set_tuple_name(set_to_map(set),
750 isl_dim_set, s));
753 __isl_give isl_map *isl_map_set_tuple_id(__isl_take isl_map *map,
754 enum isl_dim_type type, __isl_take isl_id *id)
756 isl_space *space;
758 space = isl_map_take_space(map);
759 space = isl_space_set_tuple_id(space, type, id);
760 map = isl_map_restore_space(map, space);
762 return isl_map_reset_space(map, isl_map_get_space(map));
765 /* Replace the identifier of the domain tuple of "map" by "id".
767 __isl_give isl_map *isl_map_set_domain_tuple_id(__isl_take isl_map *map,
768 __isl_take isl_id *id)
770 return isl_map_set_tuple_id(map, isl_dim_in, id);
773 /* Replace the identifier of the range tuple of "map" by "id".
775 __isl_give isl_map *isl_map_set_range_tuple_id(__isl_take isl_map *map,
776 __isl_take isl_id *id)
778 return isl_map_set_tuple_id(map, isl_dim_out, id);
781 __isl_give isl_set *isl_set_set_tuple_id(__isl_take isl_set *set,
782 __isl_take isl_id *id)
784 return isl_map_set_tuple_id(set, isl_dim_set, id);
787 __isl_give isl_map *isl_map_reset_tuple_id(__isl_take isl_map *map,
788 enum isl_dim_type type)
790 isl_space *space;
792 space = isl_map_take_space(map);
793 space = isl_space_reset_tuple_id(space, type);
794 map = isl_map_restore_space(map, space);
796 return isl_map_reset_space(map, isl_map_get_space(map));
799 __isl_give isl_set *isl_set_reset_tuple_id(__isl_take isl_set *set)
801 return isl_map_reset_tuple_id(set, isl_dim_set);
804 isl_bool isl_map_has_tuple_id(__isl_keep isl_map *map, enum isl_dim_type type)
806 return map ? isl_space_has_tuple_id(map->dim, type) : isl_bool_error;
809 /* Does the domain tuple of "map" have an identifier?
811 isl_bool isl_map_has_domain_tuple_id(__isl_keep isl_map *map)
813 return isl_map_has_tuple_id(map, isl_dim_in);
816 /* Does the range tuple of "map" have an identifier?
818 isl_bool isl_map_has_range_tuple_id(__isl_keep isl_map *map)
820 return isl_map_has_tuple_id(map, isl_dim_out);
823 __isl_give isl_id *isl_map_get_tuple_id(__isl_keep isl_map *map,
824 enum isl_dim_type type)
826 return map ? isl_space_get_tuple_id(map->dim, type) : NULL;
829 /* Return the identifier of the domain tuple of "map", assuming it has one.
831 __isl_give isl_id *isl_map_get_domain_tuple_id(__isl_keep isl_map *map)
833 return isl_map_get_tuple_id(map, isl_dim_in);
836 /* Return the identifier of the range tuple of "map", assuming it has one.
838 __isl_give isl_id *isl_map_get_range_tuple_id(__isl_keep isl_map *map)
840 return isl_map_get_tuple_id(map, isl_dim_out);
843 isl_bool isl_set_has_tuple_id(__isl_keep isl_set *set)
845 return isl_map_has_tuple_id(set, isl_dim_set);
848 __isl_give isl_id *isl_set_get_tuple_id(__isl_keep isl_set *set)
850 return isl_map_get_tuple_id(set, isl_dim_set);
853 /* Does the set tuple have a name?
855 isl_bool isl_set_has_tuple_name(__isl_keep isl_set *set)
857 if (!set)
858 return isl_bool_error;
859 return isl_space_has_tuple_name(set->dim, isl_dim_set);
863 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set *bset)
865 return bset ? isl_space_get_tuple_name(bset->dim, isl_dim_set) : NULL;
868 const char *isl_set_get_tuple_name(__isl_keep isl_set *set)
870 return set ? isl_space_get_tuple_name(set->dim, isl_dim_set) : NULL;
873 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map *bmap,
874 enum isl_dim_type type, unsigned pos)
876 return bmap ? isl_space_get_dim_name(bmap->dim, type, pos) : NULL;
879 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set *bset,
880 enum isl_dim_type type, unsigned pos)
882 return bset ? isl_space_get_dim_name(bset->dim, type, pos) : NULL;
885 /* Does the given dimension have a name?
887 isl_bool isl_map_has_dim_name(__isl_keep isl_map *map,
888 enum isl_dim_type type, unsigned pos)
890 if (!map)
891 return isl_bool_error;
892 return isl_space_has_dim_name(map->dim, type, pos);
895 const char *isl_map_get_dim_name(__isl_keep isl_map *map,
896 enum isl_dim_type type, unsigned pos)
898 return map ? isl_space_get_dim_name(map->dim, type, pos) : NULL;
901 const char *isl_set_get_dim_name(__isl_keep isl_set *set,
902 enum isl_dim_type type, unsigned pos)
904 return set ? isl_space_get_dim_name(set->dim, type, pos) : NULL;
907 /* Does the given dimension have a name?
909 isl_bool isl_set_has_dim_name(__isl_keep isl_set *set,
910 enum isl_dim_type type, unsigned pos)
912 if (!set)
913 return isl_bool_error;
914 return isl_space_has_dim_name(set->dim, type, pos);
917 __isl_give isl_basic_map *isl_basic_map_set_dim_name(
918 __isl_take isl_basic_map *bmap,
919 enum isl_dim_type type, unsigned pos, const char *s)
921 isl_space *space;
923 space = isl_basic_map_take_space(bmap);
924 space = isl_space_set_dim_name(space, type, pos, s);
925 bmap = isl_basic_map_restore_space(bmap, space);
926 return isl_basic_map_finalize(bmap);
929 __isl_give isl_map *isl_map_set_dim_name(__isl_take isl_map *map,
930 enum isl_dim_type type, unsigned pos, const char *s)
932 int i;
933 isl_space *space;
935 map = isl_map_cow(map);
936 if (!map)
937 return NULL;
939 for (i = 0; i < map->n; ++i) {
940 map->p[i] = isl_basic_map_set_dim_name(map->p[i], type, pos, s);
941 if (!map->p[i])
942 goto error;
945 space = isl_map_take_space(map);
946 space = isl_space_set_dim_name(space, type, pos, s);
947 map = isl_map_restore_space(map, space);
949 return map;
950 error:
951 isl_map_free(map);
952 return NULL;
955 __isl_give isl_basic_set *isl_basic_set_set_dim_name(
956 __isl_take isl_basic_set *bset,
957 enum isl_dim_type type, unsigned pos, const char *s)
959 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset),
960 type, pos, s));
963 __isl_give isl_set *isl_set_set_dim_name(__isl_take isl_set *set,
964 enum isl_dim_type type, unsigned pos, const char *s)
966 return set_from_map(isl_map_set_dim_name(set_to_map(set),
967 type, pos, s));
970 isl_bool isl_basic_map_has_dim_id(__isl_keep isl_basic_map *bmap,
971 enum isl_dim_type type, unsigned pos)
973 if (!bmap)
974 return isl_bool_error;
975 return isl_space_has_dim_id(bmap->dim, type, pos);
978 __isl_give isl_id *isl_basic_set_get_dim_id(__isl_keep isl_basic_set *bset,
979 enum isl_dim_type type, unsigned pos)
981 return bset ? isl_space_get_dim_id(bset->dim, type, pos) : NULL;
984 isl_bool isl_map_has_dim_id(__isl_keep isl_map *map,
985 enum isl_dim_type type, unsigned pos)
987 return map ? isl_space_has_dim_id(map->dim, type, pos) : isl_bool_error;
990 __isl_give isl_id *isl_map_get_dim_id(__isl_keep isl_map *map,
991 enum isl_dim_type type, unsigned pos)
993 return map ? isl_space_get_dim_id(map->dim, type, pos) : NULL;
996 isl_bool isl_set_has_dim_id(__isl_keep isl_set *set,
997 enum isl_dim_type type, unsigned pos)
999 return isl_map_has_dim_id(set, type, pos);
1002 __isl_give isl_id *isl_set_get_dim_id(__isl_keep isl_set *set,
1003 enum isl_dim_type type, unsigned pos)
1005 return isl_map_get_dim_id(set, type, pos);
1008 __isl_give isl_map *isl_map_set_dim_id(__isl_take isl_map *map,
1009 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
1011 isl_space *space;
1013 space = isl_map_take_space(map);
1014 space = isl_space_set_dim_id(space, type, pos, id);
1015 map = isl_map_restore_space(map, space);
1017 return isl_map_reset_space(map, isl_map_get_space(map));
1020 __isl_give isl_set *isl_set_set_dim_id(__isl_take isl_set *set,
1021 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
1023 return isl_map_set_dim_id(set, type, pos, id);
1026 int isl_map_find_dim_by_id(__isl_keep isl_map *map, enum isl_dim_type type,
1027 __isl_keep isl_id *id)
1029 if (!map)
1030 return -1;
1031 return isl_space_find_dim_by_id(map->dim, type, id);
1034 int isl_set_find_dim_by_id(__isl_keep isl_set *set, enum isl_dim_type type,
1035 __isl_keep isl_id *id)
1037 return isl_map_find_dim_by_id(set, type, id);
1040 /* Return the position of the dimension of the given type and name
1041 * in "bmap".
1042 * Return -1 if no such dimension can be found.
1044 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map *bmap,
1045 enum isl_dim_type type, const char *name)
1047 if (!bmap)
1048 return -1;
1049 return isl_space_find_dim_by_name(bmap->dim, type, name);
1052 int isl_map_find_dim_by_name(__isl_keep isl_map *map, enum isl_dim_type type,
1053 const char *name)
1055 if (!map)
1056 return -1;
1057 return isl_space_find_dim_by_name(map->dim, type, name);
1060 int isl_set_find_dim_by_name(__isl_keep isl_set *set, enum isl_dim_type type,
1061 const char *name)
1063 return isl_map_find_dim_by_name(set, type, name);
1066 /* Check whether equality i of bset is a pure stride constraint
1067 * on a single dimension, i.e., of the form
1069 * v = k e
1071 * with k a constant and e an existentially quantified variable.
1073 isl_bool isl_basic_set_eq_is_stride(__isl_keep isl_basic_set *bset, int i)
1075 isl_size nparam;
1076 isl_size d;
1077 isl_size n_div;
1078 int pos1;
1079 int pos2;
1081 nparam = isl_basic_set_dim(bset, isl_dim_param);
1082 d = isl_basic_set_dim(bset, isl_dim_set);
1083 n_div = isl_basic_set_dim(bset, isl_dim_div);
1084 if (nparam < 0 || d < 0 || n_div < 0)
1085 return isl_bool_error;
1087 if (!isl_int_is_zero(bset->eq[i][0]))
1088 return isl_bool_false;
1090 if (isl_seq_first_non_zero(bset->eq[i] + 1, nparam) != -1)
1091 return isl_bool_false;
1092 pos1 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam, d);
1093 if (pos1 == -1)
1094 return isl_bool_false;
1095 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + pos1 + 1,
1096 d - pos1 - 1) != -1)
1097 return isl_bool_false;
1099 pos2 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d, n_div);
1100 if (pos2 == -1)
1101 return isl_bool_false;
1102 if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d + pos2 + 1,
1103 n_div - pos2 - 1) != -1)
1104 return isl_bool_false;
1105 if (!isl_int_is_one(bset->eq[i][1 + nparam + pos1]) &&
1106 !isl_int_is_negone(bset->eq[i][1 + nparam + pos1]))
1107 return isl_bool_false;
1109 return isl_bool_true;
1112 /* Reset the user pointer on all identifiers of parameters and tuples
1113 * of the space of "map".
1115 __isl_give isl_map *isl_map_reset_user(__isl_take isl_map *map)
1117 isl_space *space;
1119 space = isl_map_get_space(map);
1120 space = isl_space_reset_user(space);
1121 map = isl_map_reset_space(map, space);
1123 return map;
1126 /* Reset the user pointer on all identifiers of parameters and tuples
1127 * of the space of "set".
1129 __isl_give isl_set *isl_set_reset_user(__isl_take isl_set *set)
1131 return isl_map_reset_user(set);
1134 isl_bool isl_basic_map_is_rational(__isl_keep isl_basic_map *bmap)
1136 if (!bmap)
1137 return isl_bool_error;
1138 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
1141 /* Has "map" been marked as a rational map?
1142 * In particular, have all basic maps in "map" been marked this way?
1143 * An empty map is not considered to be rational.
1144 * Maps where only some of the basic maps are marked rational
1145 * are not allowed.
1147 isl_bool isl_map_is_rational(__isl_keep isl_map *map)
1149 int i;
1150 isl_bool rational;
1152 if (!map)
1153 return isl_bool_error;
1154 if (map->n == 0)
1155 return isl_bool_false;
1156 rational = isl_basic_map_is_rational(map->p[0]);
1157 if (rational < 0)
1158 return rational;
1159 for (i = 1; i < map->n; ++i) {
1160 isl_bool rational_i;
1162 rational_i = isl_basic_map_is_rational(map->p[i]);
1163 if (rational_i < 0)
1164 return rational_i;
1165 if (rational != rational_i)
1166 isl_die(isl_map_get_ctx(map), isl_error_unsupported,
1167 "mixed rational and integer basic maps "
1168 "not supported", return isl_bool_error);
1171 return rational;
1174 /* Has "set" been marked as a rational set?
1175 * In particular, have all basic set in "set" been marked this way?
1176 * An empty set is not considered to be rational.
1177 * Sets where only some of the basic sets are marked rational
1178 * are not allowed.
1180 isl_bool isl_set_is_rational(__isl_keep isl_set *set)
1182 return isl_map_is_rational(set);
1185 int isl_basic_set_is_rational(__isl_keep isl_basic_set *bset)
1187 return isl_basic_map_is_rational(bset);
1190 /* Does "bmap" contain any rational points?
1192 * If "bmap" has an equality for each dimension, equating the dimension
1193 * to an integer constant, then it has no rational points, even if it
1194 * is marked as rational.
1196 isl_bool isl_basic_map_has_rational(__isl_keep isl_basic_map *bmap)
1198 isl_bool has_rational = isl_bool_true;
1199 isl_size total;
1201 if (!bmap)
1202 return isl_bool_error;
1203 if (isl_basic_map_plain_is_empty(bmap))
1204 return isl_bool_false;
1205 if (!isl_basic_map_is_rational(bmap))
1206 return isl_bool_false;
1207 bmap = isl_basic_map_copy(bmap);
1208 bmap = isl_basic_map_implicit_equalities(bmap);
1209 total = isl_basic_map_dim(bmap, isl_dim_all);
1210 if (total < 0)
1211 return isl_bool_error;
1212 if (bmap->n_eq == total) {
1213 int i, j;
1214 for (i = 0; i < bmap->n_eq; ++i) {
1215 j = isl_seq_first_non_zero(bmap->eq[i] + 1, total);
1216 if (j < 0)
1217 break;
1218 if (!isl_int_is_one(bmap->eq[i][1 + j]) &&
1219 !isl_int_is_negone(bmap->eq[i][1 + j]))
1220 break;
1221 j = isl_seq_first_non_zero(bmap->eq[i] + 1 + j + 1,
1222 total - j - 1);
1223 if (j >= 0)
1224 break;
1226 if (i == bmap->n_eq)
1227 has_rational = isl_bool_false;
1229 isl_basic_map_free(bmap);
1231 return has_rational;
1234 /* Does "map" contain any rational points?
1236 isl_bool isl_map_has_rational(__isl_keep isl_map *map)
1238 int i;
1239 isl_bool has_rational;
1241 if (!map)
1242 return isl_bool_error;
1243 for (i = 0; i < map->n; ++i) {
1244 has_rational = isl_basic_map_has_rational(map->p[i]);
1245 if (has_rational < 0 || has_rational)
1246 return has_rational;
1248 return isl_bool_false;
1251 /* Does "set" contain any rational points?
1253 isl_bool isl_set_has_rational(__isl_keep isl_set *set)
1255 return isl_map_has_rational(set);
1258 /* Is this basic set a parameter domain?
1260 isl_bool isl_basic_set_is_params(__isl_keep isl_basic_set *bset)
1262 if (!bset)
1263 return isl_bool_error;
1264 return isl_space_is_params(bset->dim);
1267 /* Is this set a parameter domain?
1269 isl_bool isl_set_is_params(__isl_keep isl_set *set)
1271 if (!set)
1272 return isl_bool_error;
1273 return isl_space_is_params(set->dim);
1276 /* Is this map actually a parameter domain?
1277 * Users should never call this function. Outside of isl,
1278 * a map can never be a parameter domain.
1280 isl_bool isl_map_is_params(__isl_keep isl_map *map)
1282 if (!map)
1283 return isl_bool_error;
1284 return isl_space_is_params(map->dim);
1287 static __isl_give isl_basic_map *basic_map_init(isl_ctx *ctx,
1288 __isl_take isl_basic_map *bmap, unsigned extra,
1289 unsigned n_eq, unsigned n_ineq)
1291 int i;
1292 isl_space *space = isl_basic_map_peek_space(bmap);
1293 isl_size n_var = isl_space_dim(space, isl_dim_all);
1294 size_t row_size = 1 + n_var + extra;
1296 bmap->ctx = ctx;
1297 isl_ctx_ref(ctx);
1299 if (n_var < 0)
1300 return isl_basic_map_free(bmap);
1302 bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
1303 if (isl_blk_is_error(bmap->block))
1304 goto error;
1306 bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
1307 if ((n_ineq + n_eq) && !bmap->ineq)
1308 goto error;
1310 if (extra == 0) {
1311 bmap->block2 = isl_blk_empty();
1312 bmap->div = NULL;
1313 } else {
1314 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
1315 if (isl_blk_is_error(bmap->block2))
1316 goto error;
1318 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
1319 if (!bmap->div)
1320 goto error;
1323 for (i = 0; i < n_ineq + n_eq; ++i)
1324 bmap->ineq[i] = bmap->block.data + i * row_size;
1326 for (i = 0; i < extra; ++i)
1327 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
1329 bmap->ref = 1;
1330 bmap->flags = 0;
1331 bmap->c_size = n_eq + n_ineq;
1332 bmap->eq = bmap->ineq + n_ineq;
1333 bmap->extra = extra;
1334 bmap->n_eq = 0;
1335 bmap->n_ineq = 0;
1336 bmap->n_div = 0;
1337 bmap->sample = NULL;
1339 return bmap;
1340 error:
1341 isl_basic_map_free(bmap);
1342 return NULL;
1345 __isl_give isl_basic_set *isl_basic_set_alloc(isl_ctx *ctx,
1346 unsigned nparam, unsigned dim, unsigned extra,
1347 unsigned n_eq, unsigned n_ineq)
1349 struct isl_basic_map *bmap;
1350 isl_space *space;
1352 space = isl_space_set_alloc(ctx, nparam, dim);
1353 if (!space)
1354 return NULL;
1356 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1357 return bset_from_bmap(bmap);
1360 __isl_give isl_basic_set *isl_basic_set_alloc_space(__isl_take isl_space *space,
1361 unsigned extra, unsigned n_eq, unsigned n_ineq)
1363 struct isl_basic_map *bmap;
1364 if (!space)
1365 return NULL;
1366 isl_assert(space->ctx, space->n_in == 0, goto error);
1367 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1368 return bset_from_bmap(bmap);
1369 error:
1370 isl_space_free(space);
1371 return NULL;
1374 __isl_give isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *space,
1375 unsigned extra, unsigned n_eq, unsigned n_ineq)
1377 struct isl_basic_map *bmap;
1379 if (!space)
1380 return NULL;
1381 bmap = isl_calloc_type(space->ctx, struct isl_basic_map);
1382 if (!bmap)
1383 goto error;
1384 bmap->dim = space;
1386 return basic_map_init(space->ctx, bmap, extra, n_eq, n_ineq);
1387 error:
1388 isl_space_free(space);
1389 return NULL;
1392 __isl_give isl_basic_map *isl_basic_map_alloc(isl_ctx *ctx,
1393 unsigned nparam, unsigned in, unsigned out, unsigned extra,
1394 unsigned n_eq, unsigned n_ineq)
1396 struct isl_basic_map *bmap;
1397 isl_space *space;
1399 space = isl_space_alloc(ctx, nparam, in, out);
1400 if (!space)
1401 return NULL;
1403 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
1404 return bmap;
1407 static __isl_give isl_basic_map *dup_constraints(__isl_take isl_basic_map *dst,
1408 __isl_keep isl_basic_map *src)
1410 int i;
1411 isl_size total = isl_basic_map_dim(src, isl_dim_all);
1413 if (!dst || total < 0)
1414 return isl_basic_map_free(dst);
1416 for (i = 0; i < src->n_eq; ++i) {
1417 int j = isl_basic_map_alloc_equality(dst);
1418 if (j < 0)
1419 return isl_basic_map_free(dst);
1420 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
1423 for (i = 0; i < src->n_ineq; ++i) {
1424 int j = isl_basic_map_alloc_inequality(dst);
1425 if (j < 0)
1426 return isl_basic_map_free(dst);
1427 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
1430 for (i = 0; i < src->n_div; ++i) {
1431 int j = isl_basic_map_alloc_div(dst);
1432 if (j < 0)
1433 return isl_basic_map_free(dst);
1434 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
1436 ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
1437 return dst;
1440 __isl_give isl_basic_map *isl_basic_map_dup(__isl_keep isl_basic_map *bmap)
1442 struct isl_basic_map *dup;
1444 if (!bmap)
1445 return NULL;
1446 dup = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
1447 bmap->n_div, bmap->n_eq, bmap->n_ineq);
1448 dup = dup_constraints(dup, bmap);
1449 if (!dup)
1450 return NULL;
1451 dup->flags = bmap->flags;
1452 dup->sample = isl_vec_copy(bmap->sample);
1453 return dup;
1456 __isl_give isl_basic_set *isl_basic_set_dup(__isl_keep isl_basic_set *bset)
1458 struct isl_basic_map *dup;
1460 dup = isl_basic_map_dup(bset_to_bmap(bset));
1461 return bset_from_bmap(dup);
1464 __isl_give isl_basic_set *isl_basic_set_copy(__isl_keep isl_basic_set *bset)
1466 return bset_from_bmap(isl_basic_map_copy(bset_to_bmap(bset)));
1469 __isl_give isl_set *isl_set_copy(__isl_keep isl_set *set)
1471 if (!set)
1472 return NULL;
1474 set->ref++;
1475 return set;
1478 __isl_give isl_basic_map *isl_basic_map_copy(__isl_keep isl_basic_map *bmap)
1480 if (!bmap)
1481 return NULL;
1483 if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
1484 bmap->ref++;
1485 return bmap;
1487 bmap = isl_basic_map_dup(bmap);
1488 if (bmap)
1489 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1490 return bmap;
1493 __isl_give isl_map *isl_map_copy(__isl_keep isl_map *map)
1495 if (!map)
1496 return NULL;
1498 map->ref++;
1499 return map;
1502 __isl_null isl_basic_map *isl_basic_map_free(__isl_take isl_basic_map *bmap)
1504 if (!bmap)
1505 return NULL;
1507 if (--bmap->ref > 0)
1508 return NULL;
1510 isl_ctx_deref(bmap->ctx);
1511 free(bmap->div);
1512 isl_blk_free(bmap->ctx, bmap->block2);
1513 free(bmap->ineq);
1514 isl_blk_free(bmap->ctx, bmap->block);
1515 isl_vec_free(bmap->sample);
1516 isl_space_free(bmap->dim);
1517 free(bmap);
1519 return NULL;
1522 __isl_null isl_basic_set *isl_basic_set_free(__isl_take isl_basic_set *bset)
1524 return isl_basic_map_free(bset_to_bmap(bset));
1527 static int room_for_con(__isl_keep isl_basic_map *bmap, unsigned n)
1529 return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
1532 /* Check that "bset" does not involve any parameters.
1534 isl_stat isl_basic_set_check_no_params(__isl_keep isl_basic_set *bset)
1536 isl_size nparam;
1538 nparam = isl_basic_set_dim(bset, isl_dim_param);
1539 if (nparam < 0)
1540 return isl_stat_error;
1541 if (nparam != 0)
1542 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
1543 "basic set should not have any parameters",
1544 return isl_stat_error);
1545 return isl_stat_ok;
1548 /* Check that "bset" does not involve any local variables.
1550 isl_stat isl_basic_set_check_no_locals(__isl_keep isl_basic_set *bset)
1552 isl_size n_div;
1554 n_div = isl_basic_set_dim(bset, isl_dim_div);
1555 if (n_div < 0)
1556 return isl_stat_error;
1557 if (n_div != 0)
1558 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
1559 "basic set should not have any local variables",
1560 return isl_stat_error);
1561 return isl_stat_ok;
1564 #undef TYPE
1565 #define TYPE isl_map
1567 #include "isl_check_named_params_templ.c"
1569 #undef TYPE
1570 #define TYPE isl_basic_map
1572 static
1573 #include "isl_check_named_params_templ.c"
1575 /* Check that "bmap1" and "bmap2" have the same parameters,
1576 * reporting an error if they do not.
1578 static isl_stat isl_basic_map_check_equal_params(
1579 __isl_keep isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
1581 isl_bool match;
1583 match = isl_basic_map_has_equal_params(bmap1, bmap2);
1584 if (match < 0)
1585 return isl_stat_error;
1586 if (!match)
1587 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
1588 "parameters don't match", return isl_stat_error);
1589 return isl_stat_ok;
1592 #undef TYPE
1593 #define TYPE isl_map
1595 #include "isl_align_params_bin_templ.c"
1597 #undef SUFFIX
1598 #define SUFFIX set
1599 #undef ARG1
1600 #define ARG1 isl_map
1601 #undef ARG2
1602 #define ARG2 isl_set
1604 #include "isl_align_params_templ.c"
1606 isl_bool isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
1607 __isl_keep isl_map *map2,
1608 isl_bool (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
1610 isl_bool r;
1612 if (!map1 || !map2)
1613 return isl_bool_error;
1614 if (isl_map_has_equal_params(map1, map2))
1615 return fn(map1, map2);
1616 if (isl_map_check_named_params(map1) < 0)
1617 return isl_bool_error;
1618 if (isl_map_check_named_params(map2) < 0)
1619 return isl_bool_error;
1620 map1 = isl_map_copy(map1);
1621 map2 = isl_map_copy(map2);
1622 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1623 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1624 r = fn(map1, map2);
1625 isl_map_free(map1);
1626 isl_map_free(map2);
1627 return r;
1630 int isl_basic_map_alloc_equality(__isl_keep isl_basic_map *bmap)
1632 isl_size total;
1633 struct isl_ctx *ctx;
1635 total = isl_basic_map_dim(bmap, isl_dim_all);
1636 if (total < 0)
1637 return -1;
1638 ctx = bmap->ctx;
1639 isl_assert(ctx, room_for_con(bmap, 1), return -1);
1640 isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
1641 return -1);
1642 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1643 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1644 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1645 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1646 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1647 isl_int *t;
1648 int j = isl_basic_map_alloc_inequality(bmap);
1649 if (j < 0)
1650 return -1;
1651 t = bmap->ineq[j];
1652 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1653 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1654 bmap->eq[-1] = t;
1655 bmap->n_eq++;
1656 bmap->n_ineq--;
1657 bmap->eq--;
1658 return 0;
1660 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + total,
1661 bmap->extra - bmap->n_div);
1662 return bmap->n_eq++;
1665 int isl_basic_set_alloc_equality(__isl_keep isl_basic_set *bset)
1667 return isl_basic_map_alloc_equality(bset_to_bmap(bset));
1670 __isl_give isl_basic_map *isl_basic_map_free_equality(
1671 __isl_take isl_basic_map *bmap, unsigned n)
1673 if (!bmap)
1674 return NULL;
1675 if (n > bmap->n_eq)
1676 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1677 "invalid number of equalities",
1678 isl_basic_map_free(bmap));
1679 bmap->n_eq -= n;
1680 return bmap;
1683 __isl_give isl_basic_set *isl_basic_set_free_equality(
1684 __isl_take isl_basic_set *bset, unsigned n)
1686 return bset_from_bmap(isl_basic_map_free_equality(bset_to_bmap(bset),
1687 n));
1690 /* Drop the equality constraint at position "pos",
1691 * preserving the order of the other equality constraints.
1693 int isl_basic_map_drop_equality(__isl_keep isl_basic_map *bmap, unsigned pos)
1695 isl_int *t;
1696 int r;
1698 if (!bmap)
1699 return -1;
1700 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1702 t = bmap->eq[pos];
1703 bmap->n_eq--;
1704 for (r = pos; r < bmap->n_eq; ++r)
1705 bmap->eq[r] = bmap->eq[r + 1];
1706 bmap->eq[bmap->n_eq] = t;
1708 return 0;
1711 /* Turn inequality "pos" of "bmap" into an equality.
1713 * In particular, we move the inequality in front of the equalities
1714 * and move the last inequality in the position of the moved inequality.
1715 * Note that isl_tab_make_equalities_explicit depends on this particular
1716 * change in the ordering of the constraints.
1718 void isl_basic_map_inequality_to_equality(
1719 __isl_keep isl_basic_map *bmap, unsigned pos)
1721 isl_int *t;
1723 t = bmap->ineq[pos];
1724 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1725 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1726 bmap->eq[-1] = t;
1727 bmap->n_eq++;
1728 bmap->n_ineq--;
1729 bmap->eq--;
1730 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1731 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1732 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1733 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1736 static int room_for_ineq(__isl_keep isl_basic_map *bmap, unsigned n)
1738 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1741 int isl_basic_map_alloc_inequality(__isl_keep isl_basic_map *bmap)
1743 isl_size total;
1744 struct isl_ctx *ctx;
1746 total = isl_basic_map_dim(bmap, isl_dim_all);
1747 if (total < 0)
1748 return -1;
1749 ctx = bmap->ctx;
1750 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1751 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1752 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1753 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1754 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1755 isl_seq_clr(bmap->ineq[bmap->n_ineq] + 1 + total,
1756 bmap->extra - bmap->n_div);
1757 return bmap->n_ineq++;
1760 int isl_basic_set_alloc_inequality(__isl_keep isl_basic_set *bset)
1762 return isl_basic_map_alloc_inequality(bset_to_bmap(bset));
1765 __isl_give isl_basic_map *isl_basic_map_free_inequality(
1766 __isl_take isl_basic_map *bmap, unsigned n)
1768 if (!bmap)
1769 return NULL;
1770 if (n > bmap->n_ineq)
1771 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1772 "invalid number of inequalities",
1773 return isl_basic_map_free(bmap));
1774 bmap->n_ineq -= n;
1775 return bmap;
1778 __isl_give isl_basic_set *isl_basic_set_free_inequality(
1779 __isl_take isl_basic_set *bset, unsigned n)
1781 return bset_from_bmap(isl_basic_map_free_inequality(bset_to_bmap(bset),
1782 n));
1785 int isl_basic_map_drop_inequality(__isl_keep isl_basic_map *bmap, unsigned pos)
1787 isl_int *t;
1788 if (!bmap)
1789 return -1;
1790 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1792 if (pos != bmap->n_ineq - 1) {
1793 t = bmap->ineq[pos];
1794 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1795 bmap->ineq[bmap->n_ineq - 1] = t;
1796 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
1798 bmap->n_ineq--;
1799 return 0;
1802 int isl_basic_set_drop_inequality(__isl_keep isl_basic_set *bset, unsigned pos)
1804 return isl_basic_map_drop_inequality(bset_to_bmap(bset), pos);
1807 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1808 isl_int *eq)
1810 isl_bool empty;
1811 isl_size total;
1812 int k;
1814 empty = isl_basic_map_plain_is_empty(bmap);
1815 if (empty < 0)
1816 return isl_basic_map_free(bmap);
1817 if (empty)
1818 return bmap;
1820 bmap = isl_basic_map_cow(bmap);
1821 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1822 total = isl_basic_map_dim(bmap, isl_dim_all);
1823 if (total < 0)
1824 return isl_basic_map_free(bmap);
1825 k = isl_basic_map_alloc_equality(bmap);
1826 if (k < 0)
1827 goto error;
1828 isl_seq_cpy(bmap->eq[k], eq, 1 + total);
1829 return bmap;
1830 error:
1831 isl_basic_map_free(bmap);
1832 return NULL;
1835 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1836 isl_int *eq)
1838 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset), eq));
1841 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1842 isl_int *ineq)
1844 isl_size total;
1845 int k;
1847 bmap = isl_basic_map_cow(bmap);
1848 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1849 total = isl_basic_map_dim(bmap, isl_dim_all);
1850 if (total < 0)
1851 return isl_basic_map_free(bmap);
1852 k = isl_basic_map_alloc_inequality(bmap);
1853 if (k < 0)
1854 goto error;
1855 isl_seq_cpy(bmap->ineq[k], ineq, 1 + total);
1856 return bmap;
1857 error:
1858 isl_basic_map_free(bmap);
1859 return NULL;
1862 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1863 isl_int *ineq)
1865 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset), ineq));
1868 int isl_basic_map_alloc_div(__isl_keep isl_basic_map *bmap)
1870 isl_size total;
1872 total = isl_basic_map_dim(bmap, isl_dim_all);
1873 if (total < 0)
1874 return -1;
1875 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1876 isl_seq_clr(bmap->div[bmap->n_div] + 1 + 1 + total,
1877 bmap->extra - bmap->n_div);
1878 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1879 return bmap->n_div++;
1882 int isl_basic_set_alloc_div(__isl_keep isl_basic_set *bset)
1884 return isl_basic_map_alloc_div(bset_to_bmap(bset));
1887 #undef TYPE
1888 #define TYPE isl_basic_map
1889 #include "check_type_range_templ.c"
1891 /* Check that there are "n" dimensions of type "type" starting at "first"
1892 * in "bset".
1894 isl_stat isl_basic_set_check_range(__isl_keep isl_basic_set *bset,
1895 enum isl_dim_type type, unsigned first, unsigned n)
1897 return isl_basic_map_check_range(bset_to_bmap(bset),
1898 type, first, n);
1901 /* Insert an extra integer division, prescribed by "div", to "bmap"
1902 * at (integer division) position "pos".
1904 * The integer division is first added at the end and then moved
1905 * into the right position.
1907 __isl_give isl_basic_map *isl_basic_map_insert_div(
1908 __isl_take isl_basic_map *bmap, int pos, __isl_keep isl_vec *div)
1910 int i, k;
1911 isl_size total;
1913 bmap = isl_basic_map_cow(bmap);
1914 total = isl_basic_map_dim(bmap, isl_dim_all);
1915 if (total < 0 || !div)
1916 return isl_basic_map_free(bmap);
1918 if (div->size != 1 + 1 + total)
1919 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1920 "unexpected size", return isl_basic_map_free(bmap));
1921 if (isl_basic_map_check_range(bmap, isl_dim_div, pos, 0) < 0)
1922 return isl_basic_map_free(bmap);
1924 bmap = isl_basic_map_extend(bmap, 1, 0, 2);
1925 k = isl_basic_map_alloc_div(bmap);
1926 if (k < 0)
1927 return isl_basic_map_free(bmap);
1928 isl_seq_cpy(bmap->div[k], div->el, div->size);
1929 isl_int_set_si(bmap->div[k][div->size], 0);
1931 for (i = k; i > pos; --i)
1932 bmap = isl_basic_map_swap_div(bmap, i, i - 1);
1934 return bmap;
1937 isl_stat isl_basic_map_free_div(__isl_keep isl_basic_map *bmap, unsigned n)
1939 if (!bmap)
1940 return isl_stat_error;
1941 isl_assert(bmap->ctx, n <= bmap->n_div, return isl_stat_error);
1942 bmap->n_div -= n;
1943 return isl_stat_ok;
1946 static __isl_give isl_basic_map *add_constraints(
1947 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2,
1948 unsigned i_pos, unsigned o_pos)
1950 isl_size total, n_param, n_in, n_out, n_div;
1951 unsigned o_in, o_out;
1952 isl_ctx *ctx;
1953 isl_space *space;
1954 struct isl_dim_map *dim_map;
1956 space = isl_basic_map_peek_space(bmap2);
1957 if (!bmap1 || !space)
1958 goto error;
1960 total = isl_basic_map_dim(bmap1, isl_dim_all);
1961 n_param = isl_basic_map_dim(bmap2, isl_dim_param);
1962 n_in = isl_basic_map_dim(bmap2, isl_dim_in);
1963 o_in = isl_basic_map_offset(bmap1, isl_dim_in) - 1 + i_pos;
1964 n_out = isl_basic_map_dim(bmap2, isl_dim_out);
1965 o_out = isl_basic_map_offset(bmap1, isl_dim_out) - 1 + o_pos;
1966 n_div = isl_basic_map_dim(bmap2, isl_dim_div);
1967 if (total < 0 || n_param < 0 || n_in < 0 || n_out < 0 || n_div < 0)
1968 goto error;
1969 ctx = isl_basic_map_get_ctx(bmap1);
1970 dim_map = isl_dim_map_alloc(ctx, total + n_div);
1971 isl_dim_map_dim_range(dim_map, space, isl_dim_param, 0, n_param, 0);
1972 isl_dim_map_dim_range(dim_map, space, isl_dim_in, 0, n_in, o_in);
1973 isl_dim_map_dim_range(dim_map, space, isl_dim_out, 0, n_out, o_out);
1974 isl_dim_map_div(dim_map, bmap2, total);
1976 return isl_basic_map_add_constraints_dim_map(bmap1, bmap2, dim_map);
1977 error:
1978 isl_basic_map_free(bmap1);
1979 isl_basic_map_free(bmap2);
1980 return NULL;
1983 __isl_give isl_basic_map *isl_basic_map_extend(__isl_take isl_basic_map *base,
1984 unsigned extra, unsigned n_eq, unsigned n_ineq)
1986 isl_space *space;
1987 struct isl_basic_map *ext;
1988 unsigned flags;
1989 int dims_ok;
1991 if (!base)
1992 goto error;
1994 dims_ok = base->extra >= base->n_div + extra;
1996 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1997 room_for_ineq(base, n_ineq))
1998 return base;
2000 extra += base->extra;
2001 n_eq += base->n_eq;
2002 n_ineq += base->n_ineq;
2004 space = isl_basic_map_get_space(base);
2005 ext = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
2006 if (!ext)
2007 goto error;
2009 if (dims_ok)
2010 ext->sample = isl_vec_copy(base->sample);
2011 flags = base->flags;
2012 ext = add_constraints(ext, base, 0, 0);
2013 if (ext) {
2014 ext->flags = flags;
2015 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
2018 return ext;
2020 error:
2021 isl_basic_map_free(base);
2022 return NULL;
2025 __isl_give isl_basic_set *isl_basic_set_extend(__isl_take isl_basic_set *base,
2026 unsigned extra, unsigned n_eq, unsigned n_ineq)
2028 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base),
2029 extra, n_eq, n_ineq));
2032 __isl_give isl_basic_map *isl_basic_map_extend_constraints(
2033 __isl_take isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
2035 return isl_basic_map_extend(base, 0, n_eq, n_ineq);
2038 __isl_give isl_basic_set *isl_basic_set_extend_constraints(
2039 __isl_take isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
2041 isl_basic_map *bmap = bset_to_bmap(base);
2042 bmap = isl_basic_map_extend_constraints(bmap, n_eq, n_ineq);
2043 return bset_from_bmap(bmap);
2046 __isl_give isl_basic_set *isl_basic_set_cow(__isl_take isl_basic_set *bset)
2048 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset)));
2051 __isl_give isl_basic_map *isl_basic_map_cow(__isl_take isl_basic_map *bmap)
2053 if (!bmap)
2054 return NULL;
2056 if (bmap->ref > 1) {
2057 bmap->ref--;
2058 bmap = isl_basic_map_dup(bmap);
2060 if (bmap) {
2061 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
2062 ISL_F_CLR(bmap, ISL_BASIC_MAP_REDUCED_COEFFICIENTS);
2064 return bmap;
2067 /* Clear all cached information in "map", either because it is about
2068 * to be modified or because it is being freed.
2069 * Always return the same pointer that is passed in.
2070 * This is needed for the use in isl_map_free.
2072 static __isl_give isl_map *clear_caches(__isl_take isl_map *map)
2074 isl_basic_map_free(map->cached_simple_hull[0]);
2075 isl_basic_map_free(map->cached_simple_hull[1]);
2076 map->cached_simple_hull[0] = NULL;
2077 map->cached_simple_hull[1] = NULL;
2078 return map;
2081 __isl_give isl_set *isl_set_cow(__isl_take isl_set *set)
2083 return isl_map_cow(set);
2086 /* Return an isl_map that is equal to "map" and that has only
2087 * a single reference.
2089 * If the original input already has only one reference, then
2090 * simply return it, but clear all cached information, since
2091 * it may be rendered invalid by the operations that will be
2092 * performed on the result.
2094 * Otherwise, create a duplicate (without any cached information).
2096 __isl_give isl_map *isl_map_cow(__isl_take isl_map *map)
2098 if (!map)
2099 return NULL;
2101 if (map->ref == 1)
2102 return clear_caches(map);
2103 map->ref--;
2104 return isl_map_dup(map);
2107 static void swap_vars(struct isl_blk blk, isl_int *a,
2108 unsigned a_len, unsigned b_len)
2110 isl_seq_cpy(blk.data, a+a_len, b_len);
2111 isl_seq_cpy(blk.data+b_len, a, a_len);
2112 isl_seq_cpy(a, blk.data, b_len+a_len);
2115 static __isl_give isl_basic_map *isl_basic_map_swap_vars(
2116 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
2118 int i;
2119 struct isl_blk blk;
2121 if (isl_basic_map_check_range(bmap, isl_dim_all, pos - 1, n1 + n2) < 0)
2122 goto error;
2124 if (n1 == 0 || n2 == 0)
2125 return bmap;
2127 bmap = isl_basic_map_cow(bmap);
2128 if (!bmap)
2129 return NULL;
2131 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
2132 if (isl_blk_is_error(blk))
2133 goto error;
2135 for (i = 0; i < bmap->n_eq; ++i)
2136 swap_vars(blk,
2137 bmap->eq[i] + pos, n1, n2);
2139 for (i = 0; i < bmap->n_ineq; ++i)
2140 swap_vars(blk,
2141 bmap->ineq[i] + pos, n1, n2);
2143 for (i = 0; i < bmap->n_div; ++i)
2144 swap_vars(blk,
2145 bmap->div[i]+1 + pos, n1, n2);
2147 isl_blk_free(bmap->ctx, blk);
2149 ISL_F_CLR(bmap, ISL_BASIC_SET_SORTED);
2150 bmap = isl_basic_map_gauss(bmap, NULL);
2151 return isl_basic_map_finalize(bmap);
2152 error:
2153 isl_basic_map_free(bmap);
2154 return NULL;
2157 /* The given basic map has turned out to be empty.
2158 * Explicitly mark it as such and change the representation
2159 * to a canonical representation of the empty basic map.
2160 * Since the basic map has conflicting constraints,
2161 * it must have at least one constraint, except perhaps
2162 * if it was already explicitly marked as being empty.
2163 * Do nothing in the latter case, i.e., if it has been marked empty and
2164 * has no constraints.
2166 __isl_give isl_basic_map *isl_basic_map_set_to_empty(
2167 __isl_take isl_basic_map *bmap)
2169 int i = 0;
2170 isl_bool empty;
2171 isl_size n;
2172 isl_size total;
2174 n = isl_basic_map_n_constraint(bmap);
2175 empty = isl_basic_map_plain_is_empty(bmap);
2176 if (n < 0 || empty < 0)
2177 return isl_basic_map_free(bmap);
2178 if (n == 0 && empty)
2179 return bmap;
2180 total = isl_basic_map_dim(bmap, isl_dim_all);
2181 if (total < 0)
2182 return isl_basic_map_free(bmap);
2183 if (isl_basic_map_free_div(bmap, bmap->n_div) < 0)
2184 return isl_basic_map_free(bmap);
2185 bmap = isl_basic_map_free_inequality(bmap, bmap->n_ineq);
2186 if (!bmap)
2187 return NULL;
2188 if (bmap->n_eq > 0) {
2189 bmap = isl_basic_map_free_equality(bmap, bmap->n_eq - 1);
2190 if (!bmap)
2191 return NULL;
2192 } else {
2193 i = isl_basic_map_alloc_equality(bmap);
2194 if (i < 0)
2195 goto error;
2197 isl_int_set_si(bmap->eq[i][0], 1);
2198 isl_seq_clr(bmap->eq[i]+1, total);
2199 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
2200 isl_vec_free(bmap->sample);
2201 bmap->sample = NULL;
2202 return isl_basic_map_finalize(bmap);
2203 error:
2204 isl_basic_map_free(bmap);
2205 return NULL;
2208 __isl_give isl_basic_set *isl_basic_set_set_to_empty(
2209 __isl_take isl_basic_set *bset)
2211 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset)));
2214 __isl_give isl_basic_map *isl_basic_map_set_rational(
2215 __isl_take isl_basic_map *bmap)
2217 if (!bmap)
2218 return NULL;
2220 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
2221 return bmap;
2223 bmap = isl_basic_map_cow(bmap);
2224 if (!bmap)
2225 return NULL;
2227 ISL_F_SET(bmap, ISL_BASIC_MAP_RATIONAL);
2229 return isl_basic_map_finalize(bmap);
2232 __isl_give isl_basic_set *isl_basic_set_set_rational(
2233 __isl_take isl_basic_set *bset)
2235 return isl_basic_map_set_rational(bset);
2238 __isl_give isl_basic_set *isl_basic_set_set_integral(
2239 __isl_take isl_basic_set *bset)
2241 if (!bset)
2242 return NULL;
2244 if (!ISL_F_ISSET(bset, ISL_BASIC_MAP_RATIONAL))
2245 return bset;
2247 bset = isl_basic_set_cow(bset);
2248 if (!bset)
2249 return NULL;
2251 ISL_F_CLR(bset, ISL_BASIC_MAP_RATIONAL);
2253 return isl_basic_set_finalize(bset);
2256 __isl_give isl_map *isl_map_set_rational(__isl_take isl_map *map)
2258 int i;
2260 map = isl_map_cow(map);
2261 if (!map)
2262 return NULL;
2263 for (i = 0; i < map->n; ++i) {
2264 map->p[i] = isl_basic_map_set_rational(map->p[i]);
2265 if (!map->p[i])
2266 goto error;
2268 return map;
2269 error:
2270 isl_map_free(map);
2271 return NULL;
2274 __isl_give isl_set *isl_set_set_rational(__isl_take isl_set *set)
2276 return isl_map_set_rational(set);
2279 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
2280 * of "bmap").
2282 static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
2284 isl_int *t = bmap->div[a];
2285 bmap->div[a] = bmap->div[b];
2286 bmap->div[b] = t;
2289 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
2290 * div definitions accordingly.
2292 __isl_give isl_basic_map *isl_basic_map_swap_div(__isl_take isl_basic_map *bmap,
2293 int a, int b)
2295 int i;
2296 isl_size off;
2298 off = isl_basic_map_var_offset(bmap, isl_dim_div);
2299 if (off < 0)
2300 return isl_basic_map_free(bmap);
2302 swap_div(bmap, a, b);
2304 for (i = 0; i < bmap->n_eq; ++i)
2305 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
2307 for (i = 0; i < bmap->n_ineq; ++i)
2308 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
2310 for (i = 0; i < bmap->n_div; ++i)
2311 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
2312 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
2314 return bmap;
2317 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
2319 isl_seq_cpy(c, c + n, rem);
2320 isl_seq_clr(c + rem, n);
2323 /* Drop n dimensions starting at first.
2325 * In principle, this frees up some extra variables as the number
2326 * of columns remains constant, but we would have to extend
2327 * the div array too as the number of rows in this array is assumed
2328 * to be equal to extra.
2330 __isl_give isl_basic_set *isl_basic_set_drop_dims(
2331 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2333 return isl_basic_map_drop(bset_to_bmap(bset), isl_dim_set, first, n);
2336 /* Move "n" divs starting at "first" to the end of the list of divs.
2338 static __isl_give isl_basic_map *move_divs_last(__isl_take isl_basic_map *bmap,
2339 unsigned first, unsigned n)
2341 isl_int **div;
2342 int i;
2344 if (first + n == bmap->n_div)
2345 return bmap;
2347 div = isl_alloc_array(bmap->ctx, isl_int *, n);
2348 if (!div)
2349 goto error;
2350 for (i = 0; i < n; ++i)
2351 div[i] = bmap->div[first + i];
2352 for (i = 0; i < bmap->n_div - first - n; ++i)
2353 bmap->div[first + i] = bmap->div[first + n + i];
2354 for (i = 0; i < n; ++i)
2355 bmap->div[bmap->n_div - n + i] = div[i];
2356 free(div);
2357 return bmap;
2358 error:
2359 isl_basic_map_free(bmap);
2360 return NULL;
2363 #undef TYPE
2364 #define TYPE isl_map
2365 static
2366 #include "check_type_range_templ.c"
2368 /* Check that there are "n" dimensions of type "type" starting at "first"
2369 * in "set".
2371 isl_stat isl_set_check_range(__isl_keep isl_set *set,
2372 enum isl_dim_type type, unsigned first, unsigned n)
2374 return isl_map_check_range(set_to_map(set), type, first, n);
2377 /* Drop "n" dimensions of type "type" starting at "first".
2378 * Perform the core computation, without cowing or
2379 * simplifying and finalizing the result.
2381 * In principle, this frees up some extra variables as the number
2382 * of columns remains constant, but we would have to extend
2383 * the div array too as the number of rows in this array is assumed
2384 * to be equal to extra.
2386 __isl_give isl_basic_map *isl_basic_map_drop_core(
2387 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
2388 unsigned first, unsigned n)
2390 int i;
2391 unsigned offset;
2392 unsigned left;
2393 isl_size total;
2395 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2396 return isl_basic_map_free(bmap);
2398 total = isl_basic_map_dim(bmap, isl_dim_all);
2399 if (total < 0)
2400 return isl_basic_map_free(bmap);
2402 offset = isl_basic_map_offset(bmap, type) + first;
2403 left = total - (offset - 1) - n;
2404 for (i = 0; i < bmap->n_eq; ++i)
2405 constraint_drop_vars(bmap->eq[i]+offset, n, left);
2407 for (i = 0; i < bmap->n_ineq; ++i)
2408 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
2410 for (i = 0; i < bmap->n_div; ++i)
2411 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
2413 if (type == isl_dim_div) {
2414 bmap = move_divs_last(bmap, first, n);
2415 if (!bmap)
2416 return NULL;
2417 if (isl_basic_map_free_div(bmap, n) < 0)
2418 return isl_basic_map_free(bmap);
2419 } else
2420 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
2421 if (!bmap->dim)
2422 return isl_basic_map_free(bmap);
2424 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
2425 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
2426 return bmap;
2429 /* Drop "n" dimensions of type "type" starting at "first".
2431 * In principle, this frees up some extra variables as the number
2432 * of columns remains constant, but we would have to extend
2433 * the div array too as the number of rows in this array is assumed
2434 * to be equal to extra.
2436 __isl_give isl_basic_map *isl_basic_map_drop(__isl_take isl_basic_map *bmap,
2437 enum isl_dim_type type, unsigned first, unsigned n)
2439 if (!bmap)
2440 return NULL;
2441 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2442 return bmap;
2444 bmap = isl_basic_map_cow(bmap);
2445 if (!bmap)
2446 return NULL;
2448 bmap = isl_basic_map_drop_core(bmap, type, first, n);
2450 bmap = isl_basic_map_simplify(bmap);
2451 return isl_basic_map_finalize(bmap);
2454 __isl_give isl_basic_set *isl_basic_set_drop(__isl_take isl_basic_set *bset,
2455 enum isl_dim_type type, unsigned first, unsigned n)
2457 return bset_from_bmap(isl_basic_map_drop(bset_to_bmap(bset),
2458 type, first, n));
2461 /* No longer consider "map" to be normalized.
2463 static __isl_give isl_map *isl_map_unmark_normalized(__isl_take isl_map *map)
2465 if (!map)
2466 return NULL;
2467 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2468 return map;
2471 __isl_give isl_map *isl_map_drop(__isl_take isl_map *map,
2472 enum isl_dim_type type, unsigned first, unsigned n)
2474 int i;
2475 isl_space *space;
2477 if (isl_map_check_range(map, type, first, n) < 0)
2478 return isl_map_free(map);
2480 if (n == 0 && !isl_space_is_named_or_nested(map->dim, type))
2481 return map;
2482 map = isl_map_cow(map);
2483 if (!map)
2484 goto error;
2486 for (i = 0; i < map->n; ++i) {
2487 map->p[i] = isl_basic_map_drop(map->p[i], type, first, n);
2488 if (!map->p[i])
2489 goto error;
2491 map = isl_map_unmark_normalized(map);
2493 space = isl_map_take_space(map);
2494 space = isl_space_drop_dims(space, type, first, n);
2495 map = isl_map_restore_space(map, space);
2497 return map;
2498 error:
2499 isl_map_free(map);
2500 return NULL;
2503 __isl_give isl_set *isl_set_drop(__isl_take isl_set *set,
2504 enum isl_dim_type type, unsigned first, unsigned n)
2506 return set_from_map(isl_map_drop(set_to_map(set), type, first, n));
2509 /* Drop the integer division at position "div", which is assumed
2510 * not to appear in any of the constraints or
2511 * in any of the other integer divisions.
2513 * Since the integer division is redundant, there is no need to cow.
2515 __isl_give isl_basic_map *isl_basic_map_drop_div(
2516 __isl_take isl_basic_map *bmap, unsigned div)
2518 return isl_basic_map_drop_core(bmap, isl_dim_div, div, 1);
2521 /* Eliminate the specified n dimensions starting at first from the
2522 * constraints, without removing the dimensions from the space.
2523 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2525 __isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
2526 enum isl_dim_type type, unsigned first, unsigned n)
2528 int i;
2530 if (n == 0)
2531 return map;
2533 if (isl_map_check_range(map, type, first, n) < 0)
2534 return isl_map_free(map);
2536 map = isl_map_cow(map);
2537 if (!map)
2538 return NULL;
2540 for (i = 0; i < map->n; ++i) {
2541 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
2542 if (!map->p[i])
2543 goto error;
2545 return map;
2546 error:
2547 isl_map_free(map);
2548 return NULL;
2551 /* Eliminate the specified n dimensions starting at first from the
2552 * constraints, without removing the dimensions from the space.
2553 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2555 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
2556 enum isl_dim_type type, unsigned first, unsigned n)
2558 return set_from_map(isl_map_eliminate(set_to_map(set), type, first, n));
2561 /* Eliminate the specified n dimensions starting at first from the
2562 * constraints, without removing the dimensions from the space.
2563 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2565 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
2566 unsigned first, unsigned n)
2568 return isl_set_eliminate(set, isl_dim_set, first, n);
2571 __isl_give isl_basic_map *isl_basic_map_remove_divs(
2572 __isl_take isl_basic_map *bmap)
2574 isl_size v_div;
2576 v_div = isl_basic_map_var_offset(bmap, isl_dim_div);
2577 if (v_div < 0)
2578 return isl_basic_map_free(bmap);
2579 bmap = isl_basic_map_eliminate_vars(bmap, v_div, bmap->n_div);
2580 if (!bmap)
2581 return NULL;
2582 bmap->n_div = 0;
2583 return isl_basic_map_finalize(bmap);
2586 __isl_give isl_basic_set *isl_basic_set_remove_divs(
2587 __isl_take isl_basic_set *bset)
2589 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset)));
2592 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
2594 int i;
2596 if (!map)
2597 return NULL;
2598 if (map->n == 0)
2599 return map;
2601 map = isl_map_cow(map);
2602 if (!map)
2603 return NULL;
2605 for (i = 0; i < map->n; ++i) {
2606 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
2607 if (!map->p[i])
2608 goto error;
2610 return map;
2611 error:
2612 isl_map_free(map);
2613 return NULL;
2616 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
2618 return isl_map_remove_divs(set);
2621 __isl_give isl_basic_map *isl_basic_map_remove_dims(
2622 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
2623 unsigned first, unsigned n)
2625 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2626 return isl_basic_map_free(bmap);
2627 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2628 return bmap;
2629 bmap = isl_basic_map_eliminate_vars(bmap,
2630 isl_basic_map_offset(bmap, type) - 1 + first, n);
2631 if (!bmap)
2632 return bmap;
2633 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
2634 return bmap;
2635 bmap = isl_basic_map_drop(bmap, type, first, n);
2636 return bmap;
2639 /* Return true if the definition of the given div (recursively) involves
2640 * any of the given variables.
2642 static isl_bool div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
2643 unsigned first, unsigned n)
2645 int i;
2646 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2648 if (isl_int_is_zero(bmap->div[div][0]))
2649 return isl_bool_false;
2650 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
2651 return isl_bool_true;
2653 for (i = bmap->n_div - 1; i >= 0; --i) {
2654 isl_bool involves;
2656 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2657 continue;
2658 involves = div_involves_vars(bmap, i, first, n);
2659 if (involves < 0 || involves)
2660 return involves;
2663 return isl_bool_false;
2666 /* Try and add a lower and/or upper bound on "div" to "bmap"
2667 * based on inequality "i".
2668 * "total" is the total number of variables (excluding the divs).
2669 * "v" is a temporary object that can be used during the calculations.
2670 * If "lb" is set, then a lower bound should be constructed.
2671 * If "ub" is set, then an upper bound should be constructed.
2673 * The calling function has already checked that the inequality does not
2674 * reference "div", but we still need to check that the inequality is
2675 * of the right form. We'll consider the case where we want to construct
2676 * a lower bound. The construction of upper bounds is similar.
2678 * Let "div" be of the form
2680 * q = floor((a + f(x))/d)
2682 * We essentially check if constraint "i" is of the form
2684 * b + f(x) >= 0
2686 * so that we can use it to derive a lower bound on "div".
2687 * However, we allow a slightly more general form
2689 * b + g(x) >= 0
2691 * with the condition that the coefficients of g(x) - f(x) are all
2692 * divisible by d.
2693 * Rewriting this constraint as
2695 * 0 >= -b - g(x)
2697 * adding a + f(x) to both sides and dividing by d, we obtain
2699 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2701 * Taking the floor on both sides, we obtain
2703 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2705 * or
2707 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2709 * In the case of an upper bound, we construct the constraint
2711 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2714 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2715 __isl_take isl_basic_map *bmap, int div, int i,
2716 unsigned total, isl_int v, int lb, int ub)
2718 int j;
2720 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2721 if (lb) {
2722 isl_int_sub(v, bmap->ineq[i][1 + j],
2723 bmap->div[div][1 + 1 + j]);
2724 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2726 if (ub) {
2727 isl_int_add(v, bmap->ineq[i][1 + j],
2728 bmap->div[div][1 + 1 + j]);
2729 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2732 if (!lb && !ub)
2733 return bmap;
2735 bmap = isl_basic_map_cow(bmap);
2736 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2737 if (lb) {
2738 int k = isl_basic_map_alloc_inequality(bmap);
2739 if (k < 0)
2740 goto error;
2741 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2742 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2743 bmap->div[div][1 + j]);
2744 isl_int_cdiv_q(bmap->ineq[k][j],
2745 bmap->ineq[k][j], bmap->div[div][0]);
2747 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2749 if (ub) {
2750 int k = isl_basic_map_alloc_inequality(bmap);
2751 if (k < 0)
2752 goto error;
2753 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2754 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2755 bmap->div[div][1 + j]);
2756 isl_int_fdiv_q(bmap->ineq[k][j],
2757 bmap->ineq[k][j], bmap->div[div][0]);
2759 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2762 return bmap;
2763 error:
2764 isl_basic_map_free(bmap);
2765 return NULL;
2768 /* This function is called right before "div" is eliminated from "bmap"
2769 * using Fourier-Motzkin.
2770 * Look through the constraints of "bmap" for constraints on the argument
2771 * of the integer division and use them to construct constraints on the
2772 * integer division itself. These constraints can then be combined
2773 * during the Fourier-Motzkin elimination.
2774 * Note that it is only useful to introduce lower bounds on "div"
2775 * if "bmap" already contains upper bounds on "div" as the newly
2776 * introduce lower bounds can then be combined with the pre-existing
2777 * upper bounds. Similarly for upper bounds.
2778 * We therefore first check if "bmap" contains any lower and/or upper bounds
2779 * on "div".
2781 * It is interesting to note that the introduction of these constraints
2782 * can indeed lead to more accurate results, even when compared to
2783 * deriving constraints on the argument of "div" from constraints on "div".
2784 * Consider, for example, the set
2786 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2788 * The second constraint can be rewritten as
2790 * 2 * [(-i-2j+3)/4] + k >= 0
2792 * from which we can derive
2794 * -i - 2j + 3 >= -2k
2796 * or
2798 * i + 2j <= 3 + 2k
2800 * Combined with the first constraint, we obtain
2802 * -3 <= 3 + 2k or k >= -3
2804 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2805 * the first constraint, we obtain
2807 * [(i + 2j)/4] >= [-3/4] = -1
2809 * Combining this constraint with the second constraint, we obtain
2811 * k >= -2
2813 static __isl_give isl_basic_map *insert_bounds_on_div(
2814 __isl_take isl_basic_map *bmap, int div)
2816 int i;
2817 int check_lb, check_ub;
2818 isl_int v;
2819 isl_size v_div;
2821 if (!bmap)
2822 return NULL;
2824 if (isl_int_is_zero(bmap->div[div][0]))
2825 return bmap;
2827 v_div = isl_basic_map_var_offset(bmap, isl_dim_div);
2828 if (v_div < 0)
2829 return isl_basic_map_free(bmap);
2831 check_lb = 0;
2832 check_ub = 0;
2833 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
2834 int s = isl_int_sgn(bmap->ineq[i][1 + v_div + div]);
2835 if (s > 0)
2836 check_ub = 1;
2837 if (s < 0)
2838 check_lb = 1;
2841 if (!check_lb && !check_ub)
2842 return bmap;
2844 isl_int_init(v);
2846 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
2847 if (!isl_int_is_zero(bmap->ineq[i][1 + v_div + div]))
2848 continue;
2850 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, v_div, v,
2851 check_lb, check_ub);
2854 isl_int_clear(v);
2856 return bmap;
2859 /* Remove all divs (recursively) involving any of the given dimensions
2860 * in their definitions.
2862 __isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
2863 __isl_take isl_basic_map *bmap,
2864 enum isl_dim_type type, unsigned first, unsigned n)
2866 int i;
2868 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2869 return isl_basic_map_free(bmap);
2870 first += isl_basic_map_offset(bmap, type);
2872 for (i = bmap->n_div - 1; i >= 0; --i) {
2873 isl_bool involves;
2875 involves = div_involves_vars(bmap, i, first, n);
2876 if (involves < 0)
2877 return isl_basic_map_free(bmap);
2878 if (!involves)
2879 continue;
2880 bmap = insert_bounds_on_div(bmap, i);
2881 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2882 if (!bmap)
2883 return NULL;
2884 i = bmap->n_div;
2887 return bmap;
2890 __isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
2891 __isl_take isl_basic_set *bset,
2892 enum isl_dim_type type, unsigned first, unsigned n)
2894 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
2897 __isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
2898 enum isl_dim_type type, unsigned first, unsigned n)
2900 int i;
2902 if (!map)
2903 return NULL;
2904 if (map->n == 0)
2905 return map;
2907 map = isl_map_cow(map);
2908 if (!map)
2909 return NULL;
2911 for (i = 0; i < map->n; ++i) {
2912 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2913 type, first, n);
2914 if (!map->p[i])
2915 goto error;
2917 return map;
2918 error:
2919 isl_map_free(map);
2920 return NULL;
2923 __isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2924 enum isl_dim_type type, unsigned first, unsigned n)
2926 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set),
2927 type, first, n));
2930 /* Does the description of "bmap" depend on the specified dimensions?
2931 * We also check whether the dimensions appear in any of the div definitions.
2932 * In principle there is no need for this check. If the dimensions appear
2933 * in a div definition, they also appear in the defining constraints of that
2934 * div.
2936 isl_bool isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
2937 enum isl_dim_type type, unsigned first, unsigned n)
2939 int i;
2941 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2942 return isl_bool_error;
2944 first += isl_basic_map_offset(bmap, type);
2945 for (i = 0; i < bmap->n_eq; ++i)
2946 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
2947 return isl_bool_true;
2948 for (i = 0; i < bmap->n_ineq; ++i)
2949 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
2950 return isl_bool_true;
2951 for (i = 0; i < bmap->n_div; ++i) {
2952 if (isl_int_is_zero(bmap->div[i][0]))
2953 continue;
2954 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
2955 return isl_bool_true;
2958 return isl_bool_false;
2961 isl_bool isl_map_involves_dims(__isl_keep isl_map *map,
2962 enum isl_dim_type type, unsigned first, unsigned n)
2964 int i;
2966 if (isl_map_check_range(map, type, first, n) < 0)
2967 return isl_bool_error;
2969 for (i = 0; i < map->n; ++i) {
2970 isl_bool involves = isl_basic_map_involves_dims(map->p[i],
2971 type, first, n);
2972 if (involves < 0 || involves)
2973 return involves;
2976 return isl_bool_false;
2979 isl_bool isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
2980 enum isl_dim_type type, unsigned first, unsigned n)
2982 return isl_basic_map_involves_dims(bset, type, first, n);
2985 isl_bool isl_set_involves_dims(__isl_keep isl_set *set,
2986 enum isl_dim_type type, unsigned first, unsigned n)
2988 return isl_map_involves_dims(set, type, first, n);
2991 /* Does "bset" involve any local variables, i.e., integer divisions?
2993 static isl_bool isl_basic_set_involves_locals(__isl_keep isl_basic_set *bset)
2995 isl_size n;
2997 n = isl_basic_set_dim(bset, isl_dim_div);
2998 if (n < 0)
2999 return isl_bool_error;
3000 return isl_bool_ok(n > 0);
3003 /* isl_set_every_basic_set callback that checks whether "bset"
3004 * is free of local variables.
3006 static isl_bool basic_set_no_locals(__isl_keep isl_basic_set *bset, void *user)
3008 return isl_bool_not(isl_basic_set_involves_locals(bset));
3011 /* Does "set" involve any local variables, i.e., integer divisions?
3013 isl_bool isl_set_involves_locals(__isl_keep isl_set *set)
3015 isl_bool no_locals;
3017 no_locals = isl_set_every_basic_set(set, &basic_set_no_locals, NULL);
3018 return isl_bool_not(no_locals);
3021 /* Drop all constraints in bmap that involve any of the dimensions
3022 * first to first+n-1.
3023 * This function only performs the actual removal of constraints.
3025 * This function should not call finalize since it is used by
3026 * remove_redundant_divs, which in turn is called by isl_basic_map_finalize.
3028 __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving(
3029 __isl_take isl_basic_map *bmap, unsigned first, unsigned n)
3031 int i;
3033 if (n == 0)
3034 return bmap;
3036 bmap = isl_basic_map_cow(bmap);
3038 if (!bmap)
3039 return NULL;
3041 for (i = bmap->n_eq - 1; i >= 0; --i) {
3042 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) == -1)
3043 continue;
3044 if (isl_basic_map_drop_equality(bmap, i) < 0)
3045 return isl_basic_map_free(bmap);
3048 for (i = bmap->n_ineq - 1; i >= 0; --i) {
3049 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) == -1)
3050 continue;
3051 if (isl_basic_map_drop_inequality(bmap, i) < 0)
3052 return isl_basic_map_free(bmap);
3055 return bmap;
3058 /* Drop all constraints in bset that involve any of the dimensions
3059 * first to first+n-1.
3060 * This function only performs the actual removal of constraints.
3062 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving(
3063 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
3065 return isl_basic_map_drop_constraints_involving(bset, first, n);
3068 /* Drop all constraints in bmap that do not involve any of the dimensions
3069 * first to first + n - 1 of the given type.
3071 __isl_give isl_basic_map *isl_basic_map_drop_constraints_not_involving_dims(
3072 __isl_take isl_basic_map *bmap,
3073 enum isl_dim_type type, unsigned first, unsigned n)
3075 int i;
3077 if (n == 0) {
3078 isl_space *space = isl_basic_map_get_space(bmap);
3079 isl_basic_map_free(bmap);
3080 return isl_basic_map_universe(space);
3082 bmap = isl_basic_map_cow(bmap);
3083 if (!bmap)
3084 return NULL;
3086 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
3087 return isl_basic_map_free(bmap);
3089 first += isl_basic_map_offset(bmap, type) - 1;
3091 for (i = bmap->n_eq - 1; i >= 0; --i) {
3092 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) != -1)
3093 continue;
3094 if (isl_basic_map_drop_equality(bmap, i) < 0)
3095 return isl_basic_map_free(bmap);
3098 for (i = bmap->n_ineq - 1; i >= 0; --i) {
3099 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) != -1)
3100 continue;
3101 if (isl_basic_map_drop_inequality(bmap, i) < 0)
3102 return isl_basic_map_free(bmap);
3105 bmap = isl_basic_map_add_known_div_constraints(bmap);
3106 return bmap;
3109 /* Drop all constraints in bset that do not involve any of the dimensions
3110 * first to first + n - 1 of the given type.
3112 __isl_give isl_basic_set *isl_basic_set_drop_constraints_not_involving_dims(
3113 __isl_take isl_basic_set *bset,
3114 enum isl_dim_type type, unsigned first, unsigned n)
3116 return isl_basic_map_drop_constraints_not_involving_dims(bset,
3117 type, first, n);
3120 /* Drop all constraints in bmap that involve any of the dimensions
3121 * first to first + n - 1 of the given type.
3123 __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving_dims(
3124 __isl_take isl_basic_map *bmap,
3125 enum isl_dim_type type, unsigned first, unsigned n)
3127 if (!bmap)
3128 return NULL;
3129 if (n == 0)
3130 return bmap;
3132 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
3133 return isl_basic_map_free(bmap);
3135 bmap = isl_basic_map_remove_divs_involving_dims(bmap, type, first, n);
3136 first += isl_basic_map_offset(bmap, type) - 1;
3137 bmap = isl_basic_map_drop_constraints_involving(bmap, first, n);
3138 bmap = isl_basic_map_add_known_div_constraints(bmap);
3139 return bmap;
3142 /* Drop all constraints in bset that involve any of the dimensions
3143 * first to first + n - 1 of the given type.
3145 __isl_give isl_basic_set *isl_basic_set_drop_constraints_involving_dims(
3146 __isl_take isl_basic_set *bset,
3147 enum isl_dim_type type, unsigned first, unsigned n)
3149 return isl_basic_map_drop_constraints_involving_dims(bset,
3150 type, first, n);
3153 /* Drop constraints from "map" by applying "drop" to each basic map.
3155 static __isl_give isl_map *drop_constraints(__isl_take isl_map *map,
3156 enum isl_dim_type type, unsigned first, unsigned n,
3157 __isl_give isl_basic_map *(*drop)(__isl_take isl_basic_map *bmap,
3158 enum isl_dim_type type, unsigned first, unsigned n))
3160 int i;
3162 if (isl_map_check_range(map, type, first, n) < 0)
3163 return isl_map_free(map);
3165 map = isl_map_cow(map);
3166 if (!map)
3167 return NULL;
3169 for (i = 0; i < map->n; ++i) {
3170 map->p[i] = drop(map->p[i], type, first, n);
3171 if (!map->p[i])
3172 return isl_map_free(map);
3175 if (map->n > 1)
3176 ISL_F_CLR(map, ISL_MAP_DISJOINT);
3178 return map;
3181 /* Drop all constraints in map that involve any of the dimensions
3182 * first to first + n - 1 of the given type.
3184 __isl_give isl_map *isl_map_drop_constraints_involving_dims(
3185 __isl_take isl_map *map,
3186 enum isl_dim_type type, unsigned first, unsigned n)
3188 if (n == 0)
3189 return map;
3190 return drop_constraints(map, type, first, n,
3191 &isl_basic_map_drop_constraints_involving_dims);
3194 /* Drop all constraints in "map" that do not involve any of the dimensions
3195 * first to first + n - 1 of the given type.
3197 __isl_give isl_map *isl_map_drop_constraints_not_involving_dims(
3198 __isl_take isl_map *map,
3199 enum isl_dim_type type, unsigned first, unsigned n)
3201 if (n == 0) {
3202 isl_space *space = isl_map_get_space(map);
3203 isl_map_free(map);
3204 return isl_map_universe(space);
3206 return drop_constraints(map, type, first, n,
3207 &isl_basic_map_drop_constraints_not_involving_dims);
3210 /* Drop all constraints in set that involve any of the dimensions
3211 * first to first + n - 1 of the given type.
3213 __isl_give isl_set *isl_set_drop_constraints_involving_dims(
3214 __isl_take isl_set *set,
3215 enum isl_dim_type type, unsigned first, unsigned n)
3217 return isl_map_drop_constraints_involving_dims(set, type, first, n);
3220 /* Drop all constraints in "set" that do not involve any of the dimensions
3221 * first to first + n - 1 of the given type.
3223 __isl_give isl_set *isl_set_drop_constraints_not_involving_dims(
3224 __isl_take isl_set *set,
3225 enum isl_dim_type type, unsigned first, unsigned n)
3227 return isl_map_drop_constraints_not_involving_dims(set, type, first, n);
3230 /* Does local variable "div" of "bmap" have a complete explicit representation?
3231 * Having a complete explicit representation requires not only
3232 * an explicit representation, but also that all local variables
3233 * that appear in this explicit representation in turn have
3234 * a complete explicit representation.
3236 isl_bool isl_basic_map_div_is_known(__isl_keep isl_basic_map *bmap, int div)
3238 int i;
3239 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
3240 isl_bool marked;
3242 marked = isl_basic_map_div_is_marked_unknown(bmap, div);
3243 if (marked < 0 || marked)
3244 return isl_bool_not(marked);
3246 for (i = bmap->n_div - 1; i >= 0; --i) {
3247 isl_bool known;
3249 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
3250 continue;
3251 known = isl_basic_map_div_is_known(bmap, i);
3252 if (known < 0 || !known)
3253 return known;
3256 return isl_bool_true;
3259 /* Remove all divs that are unknown or defined in terms of unknown divs.
3261 __isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
3262 __isl_take isl_basic_map *bmap)
3264 int i;
3266 if (!bmap)
3267 return NULL;
3269 for (i = bmap->n_div - 1; i >= 0; --i) {
3270 if (isl_basic_map_div_is_known(bmap, i))
3271 continue;
3272 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
3273 if (!bmap)
3274 return NULL;
3275 i = bmap->n_div;
3278 return bmap;
3281 /* Remove all divs that are unknown or defined in terms of unknown divs.
3283 __isl_give isl_basic_set *isl_basic_set_remove_unknown_divs(
3284 __isl_take isl_basic_set *bset)
3286 return isl_basic_map_remove_unknown_divs(bset);
3289 __isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
3291 int i;
3293 if (!map)
3294 return NULL;
3295 if (map->n == 0)
3296 return map;
3298 map = isl_map_cow(map);
3299 if (!map)
3300 return NULL;
3302 for (i = 0; i < map->n; ++i) {
3303 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
3304 if (!map->p[i])
3305 goto error;
3307 return map;
3308 error:
3309 isl_map_free(map);
3310 return NULL;
3313 __isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
3315 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set)));
3318 __isl_give isl_basic_set *isl_basic_set_remove_dims(
3319 __isl_take isl_basic_set *bset,
3320 enum isl_dim_type type, unsigned first, unsigned n)
3322 isl_basic_map *bmap = bset_to_bmap(bset);
3323 bmap = isl_basic_map_remove_dims(bmap, type, first, n);
3324 return bset_from_bmap(bmap);
3327 __isl_give isl_map *isl_map_remove_dims(__isl_take isl_map *map,
3328 enum isl_dim_type type, unsigned first, unsigned n)
3330 int i;
3332 if (n == 0)
3333 return map;
3335 map = isl_map_cow(map);
3336 if (isl_map_check_range(map, type, first, n) < 0)
3337 return isl_map_free(map);
3339 for (i = 0; i < map->n; ++i) {
3340 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
3341 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
3342 if (!map->p[i])
3343 goto error;
3345 map = isl_map_drop(map, type, first, n);
3346 return map;
3347 error:
3348 isl_map_free(map);
3349 return NULL;
3352 __isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
3353 enum isl_dim_type type, unsigned first, unsigned n)
3355 return set_from_map(isl_map_remove_dims(set_to_map(bset),
3356 type, first, n));
3359 /* Project out n inputs starting at first using Fourier-Motzkin */
3360 __isl_give isl_map *isl_map_remove_inputs(__isl_take isl_map *map,
3361 unsigned first, unsigned n)
3363 return isl_map_remove_dims(map, isl_dim_in, first, n);
3366 void isl_basic_set_print_internal(__isl_keep isl_basic_set *bset,
3367 FILE *out, int indent)
3369 isl_printer *p;
3371 if (!bset) {
3372 fprintf(out, "null basic set\n");
3373 return;
3376 fprintf(out, "%*s", indent, "");
3377 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
3378 bset->ref, bset->dim->nparam, bset->dim->n_out,
3379 bset->extra, bset->flags);
3381 p = isl_printer_to_file(isl_basic_set_get_ctx(bset), out);
3382 p = isl_printer_set_dump(p, 1);
3383 p = isl_printer_set_indent(p, indent);
3384 p = isl_printer_start_line(p);
3385 p = isl_printer_print_basic_set(p, bset);
3386 p = isl_printer_end_line(p);
3387 isl_printer_free(p);
3390 void isl_basic_map_print_internal(__isl_keep isl_basic_map *bmap,
3391 FILE *out, int indent)
3393 isl_printer *p;
3395 if (!bmap) {
3396 fprintf(out, "null basic map\n");
3397 return;
3400 fprintf(out, "%*s", indent, "");
3401 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
3402 "flags: %x, n_name: %d\n",
3403 bmap->ref,
3404 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
3405 bmap->extra, bmap->flags, bmap->dim->n_id);
3407 p = isl_printer_to_file(isl_basic_map_get_ctx(bmap), out);
3408 p = isl_printer_set_dump(p, 1);
3409 p = isl_printer_set_indent(p, indent);
3410 p = isl_printer_start_line(p);
3411 p = isl_printer_print_basic_map(p, bmap);
3412 p = isl_printer_end_line(p);
3413 isl_printer_free(p);
3416 __isl_give isl_basic_map *isl_inequality_negate(__isl_take isl_basic_map *bmap,
3417 unsigned pos)
3419 isl_size total;
3421 total = isl_basic_map_dim(bmap, isl_dim_all);
3422 if (total < 0)
3423 return isl_basic_map_free(bmap);
3424 if (pos >= bmap->n_ineq)
3425 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
3426 "invalid position", return isl_basic_map_free(bmap));
3427 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
3428 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
3429 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
3430 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
3431 return bmap;
3434 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *space, int n,
3435 unsigned flags)
3437 if (isl_space_check_is_set(space) < 0)
3438 goto error;
3439 return isl_map_alloc_space(space, n, flags);
3440 error:
3441 isl_space_free(space);
3442 return NULL;
3445 /* Make sure "map" has room for at least "n" more basic maps.
3447 __isl_give isl_map *isl_map_grow(__isl_take isl_map *map, int n)
3449 int i;
3450 struct isl_map *grown = NULL;
3452 if (!map)
3453 return NULL;
3454 isl_assert(map->ctx, n >= 0, goto error);
3455 if (map->n + n <= map->size)
3456 return map;
3457 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
3458 if (!grown)
3459 goto error;
3460 for (i = 0; i < map->n; ++i) {
3461 grown->p[i] = isl_basic_map_copy(map->p[i]);
3462 if (!grown->p[i])
3463 goto error;
3464 grown->n++;
3466 isl_map_free(map);
3467 return grown;
3468 error:
3469 isl_map_free(grown);
3470 isl_map_free(map);
3471 return NULL;
3474 /* Make sure "set" has room for at least "n" more basic sets.
3476 __isl_give isl_set *isl_set_grow(__isl_take isl_set *set, int n)
3478 return set_from_map(isl_map_grow(set_to_map(set), n));
3481 __isl_give isl_set *isl_set_from_basic_set(__isl_take isl_basic_set *bset)
3483 return isl_map_from_basic_map(bset);
3486 /* This function performs the same operation as isl_set_from_basic_set,
3487 * but is considered as a function on an isl_basic_set when exported.
3489 __isl_give isl_set *isl_basic_set_to_set(__isl_take isl_basic_set *bset)
3491 return isl_set_from_basic_set(bset);
3494 __isl_give isl_map *isl_map_from_basic_map(__isl_take isl_basic_map *bmap)
3496 struct isl_map *map;
3498 if (!bmap)
3499 return NULL;
3501 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
3502 return isl_map_add_basic_map(map, bmap);
3505 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
3506 __isl_take isl_basic_set *bset)
3508 return set_from_map(isl_map_add_basic_map(set_to_map(set),
3509 bset_to_bmap(bset)));
3512 __isl_null isl_set *isl_set_free(__isl_take isl_set *set)
3514 return isl_map_free(set);
3517 void isl_set_print_internal(__isl_keep isl_set *set, FILE *out, int indent)
3519 int i;
3521 if (!set) {
3522 fprintf(out, "null set\n");
3523 return;
3526 fprintf(out, "%*s", indent, "");
3527 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3528 set->ref, set->n, set->dim->nparam, set->dim->n_out,
3529 set->flags);
3530 for (i = 0; i < set->n; ++i) {
3531 fprintf(out, "%*s", indent, "");
3532 fprintf(out, "basic set %d:\n", i);
3533 isl_basic_set_print_internal(set->p[i], out, indent+4);
3537 void isl_map_print_internal(__isl_keep isl_map *map, FILE *out, int indent)
3539 int i;
3541 if (!map) {
3542 fprintf(out, "null map\n");
3543 return;
3546 fprintf(out, "%*s", indent, "");
3547 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3548 "flags: %x, n_name: %d\n",
3549 map->ref, map->n, map->dim->nparam, map->dim->n_in,
3550 map->dim->n_out, map->flags, map->dim->n_id);
3551 for (i = 0; i < map->n; ++i) {
3552 fprintf(out, "%*s", indent, "");
3553 fprintf(out, "basic map %d:\n", i);
3554 isl_basic_map_print_internal(map->p[i], out, indent+4);
3558 /* Check that the space of "bset" is the same as that of the domain of "bmap".
3560 static isl_stat isl_basic_map_check_compatible_domain(
3561 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3563 isl_bool ok;
3565 ok = isl_basic_map_compatible_domain(bmap, bset);
3566 if (ok < 0)
3567 return isl_stat_error;
3568 if (!ok)
3569 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3570 "incompatible spaces", return isl_stat_error);
3572 return isl_stat_ok;
3575 __isl_give isl_basic_map *isl_basic_map_intersect_domain(
3576 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3578 struct isl_basic_map *bmap_domain;
3579 isl_size dim;
3581 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3582 goto error;
3584 dim = isl_basic_set_dim(bset, isl_dim_set);
3585 if (dim < 0)
3586 goto error;
3587 if (dim != 0 &&
3588 isl_basic_map_check_compatible_domain(bmap, bset) < 0)
3589 goto error;
3591 bmap = isl_basic_map_cow(bmap);
3592 if (!bmap)
3593 goto error;
3594 bmap = isl_basic_map_extend(bmap,
3595 bset->n_div, bset->n_eq, bset->n_ineq);
3596 bmap_domain = isl_basic_map_from_domain(bset);
3597 bmap = add_constraints(bmap, bmap_domain, 0, 0);
3599 bmap = isl_basic_map_simplify(bmap);
3600 return isl_basic_map_finalize(bmap);
3601 error:
3602 isl_basic_map_free(bmap);
3603 isl_basic_set_free(bset);
3604 return NULL;
3607 /* Check that the space of "bset" is the same as that of the range of "bmap".
3609 static isl_stat isl_basic_map_check_compatible_range(
3610 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3612 isl_bool ok;
3614 ok = isl_basic_map_compatible_range(bmap, bset);
3615 if (ok < 0)
3616 return isl_stat_error;
3617 if (!ok)
3618 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3619 "incompatible spaces", return isl_stat_error);
3621 return isl_stat_ok;
3624 __isl_give isl_basic_map *isl_basic_map_intersect_range(
3625 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *bset)
3627 struct isl_basic_map *bmap_range;
3628 isl_size dim;
3630 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
3631 goto error;
3633 dim = isl_basic_set_dim(bset, isl_dim_set);
3634 if (dim < 0)
3635 goto error;
3636 if (dim != 0 && isl_basic_map_check_compatible_range(bmap, bset) < 0)
3637 goto error;
3639 if (isl_basic_set_plain_is_universe(bset)) {
3640 isl_basic_set_free(bset);
3641 return bmap;
3644 bmap = isl_basic_map_cow(bmap);
3645 if (!bmap)
3646 goto error;
3647 bmap = isl_basic_map_extend(bmap,
3648 bset->n_div, bset->n_eq, bset->n_ineq);
3649 bmap_range = bset_to_bmap(bset);
3650 bmap = add_constraints(bmap, bmap_range, 0, 0);
3652 bmap = isl_basic_map_simplify(bmap);
3653 return isl_basic_map_finalize(bmap);
3654 error:
3655 isl_basic_map_free(bmap);
3656 isl_basic_set_free(bset);
3657 return NULL;
3660 isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
3661 __isl_keep isl_vec *vec)
3663 int i;
3664 isl_size total;
3665 isl_int s;
3667 total = isl_basic_map_dim(bmap, isl_dim_all);
3668 if (total < 0 || !vec)
3669 return isl_bool_error;
3671 if (1 + total != vec->size)
3672 return isl_bool_false;
3674 isl_int_init(s);
3676 for (i = 0; i < bmap->n_eq; ++i) {
3677 isl_seq_inner_product(vec->el, bmap->eq[i], 1 + total, &s);
3678 if (!isl_int_is_zero(s)) {
3679 isl_int_clear(s);
3680 return isl_bool_false;
3684 for (i = 0; i < bmap->n_ineq; ++i) {
3685 isl_seq_inner_product(vec->el, bmap->ineq[i], 1 + total, &s);
3686 if (isl_int_is_neg(s)) {
3687 isl_int_clear(s);
3688 return isl_bool_false;
3692 isl_int_clear(s);
3694 return isl_bool_true;
3697 isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
3698 __isl_keep isl_vec *vec)
3700 return isl_basic_map_contains(bset_to_bmap(bset), vec);
3703 __isl_give isl_basic_map *isl_basic_map_intersect(
3704 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
3706 struct isl_vec *sample = NULL;
3707 isl_space *space1, *space2;
3708 isl_size dim1, dim2, nparam1, nparam2;
3710 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
3711 goto error;
3712 space1 = isl_basic_map_peek_space(bmap1);
3713 space2 = isl_basic_map_peek_space(bmap2);
3714 dim1 = isl_space_dim(space1, isl_dim_all);
3715 dim2 = isl_space_dim(space2, isl_dim_all);
3716 nparam1 = isl_space_dim(space1, isl_dim_param);
3717 nparam2 = isl_space_dim(space2, isl_dim_param);
3718 if (dim1 < 0 || dim2 < 0 || nparam1 < 0 || nparam2 < 0)
3719 goto error;
3720 if (dim1 == nparam1 && dim2 != nparam2)
3721 return isl_basic_map_intersect(bmap2, bmap1);
3723 if (dim2 != nparam2 &&
3724 isl_basic_map_check_equal_space(bmap1, bmap2) < 0)
3725 goto error;
3727 if (isl_basic_map_plain_is_empty(bmap1)) {
3728 isl_basic_map_free(bmap2);
3729 return bmap1;
3731 if (isl_basic_map_plain_is_empty(bmap2)) {
3732 isl_basic_map_free(bmap1);
3733 return bmap2;
3736 if (bmap1->sample &&
3737 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
3738 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
3739 sample = isl_vec_copy(bmap1->sample);
3740 else if (bmap2->sample &&
3741 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
3742 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
3743 sample = isl_vec_copy(bmap2->sample);
3745 bmap1 = isl_basic_map_cow(bmap1);
3746 if (!bmap1)
3747 goto error;
3748 bmap1 = isl_basic_map_extend(bmap1,
3749 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
3750 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
3752 if (!bmap1)
3753 isl_vec_free(sample);
3754 else if (sample) {
3755 isl_vec_free(bmap1->sample);
3756 bmap1->sample = sample;
3759 bmap1 = isl_basic_map_simplify(bmap1);
3760 return isl_basic_map_finalize(bmap1);
3761 error:
3762 if (sample)
3763 isl_vec_free(sample);
3764 isl_basic_map_free(bmap1);
3765 isl_basic_map_free(bmap2);
3766 return NULL;
3769 __isl_give isl_basic_set *isl_basic_set_intersect(
3770 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3772 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1),
3773 bset_to_bmap(bset2)));
3776 __isl_give isl_basic_set *isl_basic_set_intersect_params(
3777 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3779 return isl_basic_set_intersect(bset1, bset2);
3782 /* Does "map" consist of a single disjunct, without any local variables?
3784 static isl_bool is_convex_no_locals(__isl_keep isl_map *map)
3786 isl_size n_div;
3788 if (!map)
3789 return isl_bool_error;
3790 if (map->n != 1)
3791 return isl_bool_false;
3792 n_div = isl_basic_map_dim(map->p[0], isl_dim_div);
3793 if (n_div < 0)
3794 return isl_bool_error;
3795 if (n_div != 0)
3796 return isl_bool_false;
3797 return isl_bool_true;
3800 /* Check that "map" consists of a single disjunct, without any local variables.
3802 static isl_stat check_convex_no_locals(__isl_keep isl_map *map)
3804 isl_bool ok;
3806 ok = is_convex_no_locals(map);
3807 if (ok < 0)
3808 return isl_stat_error;
3809 if (ok)
3810 return isl_stat_ok;
3812 isl_die(isl_map_get_ctx(map), isl_error_internal,
3813 "unexpectedly not convex or involving local variables",
3814 return isl_stat_error);
3817 /* Special case of isl_map_intersect, where both map1 and map2
3818 * are convex, without any divs and such that either map1 or map2
3819 * contains a single constraint. This constraint is then simply
3820 * added to the other map.
3822 static __isl_give isl_map *map_intersect_add_constraint(
3823 __isl_take isl_map *map1, __isl_take isl_map *map2)
3825 if (check_convex_no_locals(map1) < 0 ||
3826 check_convex_no_locals(map2) < 0)
3827 goto error;
3829 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
3830 return isl_map_intersect(map2, map1);
3832 map1 = isl_map_cow(map1);
3833 if (!map1)
3834 goto error;
3835 if (isl_map_plain_is_empty(map1)) {
3836 isl_map_free(map2);
3837 return map1;
3839 if (map2->p[0]->n_eq == 1)
3840 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
3841 else
3842 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
3843 map2->p[0]->ineq[0]);
3845 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
3846 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
3847 if (!map1->p[0])
3848 goto error;
3850 if (isl_basic_map_plain_is_empty(map1->p[0])) {
3851 isl_basic_map_free(map1->p[0]);
3852 map1->n = 0;
3855 isl_map_free(map2);
3857 map1 = isl_map_unmark_normalized(map1);
3858 return map1;
3859 error:
3860 isl_map_free(map1);
3861 isl_map_free(map2);
3862 return NULL;
3865 /* map2 may be either a parameter domain or a map living in the same
3866 * space as map1.
3868 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3869 __isl_take isl_map *map2)
3871 unsigned flags = 0;
3872 isl_bool equal;
3873 isl_map *result;
3874 int i, j;
3875 isl_size dim2, nparam2;
3877 if (!map1 || !map2)
3878 goto error;
3880 if ((isl_map_plain_is_empty(map1) ||
3881 isl_map_plain_is_universe(map2)) &&
3882 isl_space_is_equal(map1->dim, map2->dim)) {
3883 isl_map_free(map2);
3884 return map1;
3886 if ((isl_map_plain_is_empty(map2) ||
3887 isl_map_plain_is_universe(map1)) &&
3888 isl_space_is_equal(map1->dim, map2->dim)) {
3889 isl_map_free(map1);
3890 return map2;
3893 if (is_convex_no_locals(map1) == isl_bool_true &&
3894 is_convex_no_locals(map2) == isl_bool_true &&
3895 isl_space_is_equal(map1->dim, map2->dim) &&
3896 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3897 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3898 return map_intersect_add_constraint(map1, map2);
3900 equal = isl_map_plain_is_equal(map1, map2);
3901 if (equal < 0)
3902 goto error;
3903 if (equal) {
3904 isl_map_free(map2);
3905 return map1;
3908 dim2 = isl_map_dim(map2, isl_dim_all);
3909 nparam2 = isl_map_dim(map2, isl_dim_param);
3910 if (dim2 < 0 || nparam2 < 0)
3911 goto error;
3912 if (dim2 != nparam2)
3913 isl_assert(map1->ctx,
3914 isl_space_is_equal(map1->dim, map2->dim), goto error);
3916 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3917 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3918 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3920 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3921 map1->n * map2->n, flags);
3922 if (!result)
3923 goto error;
3924 for (i = 0; i < map1->n; ++i)
3925 for (j = 0; j < map2->n; ++j) {
3926 struct isl_basic_map *part;
3927 part = isl_basic_map_intersect(
3928 isl_basic_map_copy(map1->p[i]),
3929 isl_basic_map_copy(map2->p[j]));
3930 if (isl_basic_map_is_empty(part) < 0)
3931 part = isl_basic_map_free(part);
3932 result = isl_map_add_basic_map(result, part);
3933 if (!result)
3934 goto error;
3936 isl_map_free(map1);
3937 isl_map_free(map2);
3938 return result;
3939 error:
3940 isl_map_free(map1);
3941 isl_map_free(map2);
3942 return NULL;
3945 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3946 __isl_take isl_map *map2)
3948 if (isl_map_check_equal_space(map1, map2) < 0)
3949 goto error;
3950 return map_intersect_internal(map1, map2);
3951 error:
3952 isl_map_free(map1);
3953 isl_map_free(map2);
3954 return NULL;
3957 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3958 __isl_take isl_map *map2)
3960 isl_map_align_params_bin(&map1, &map2);
3961 return map_intersect(map1, map2);
3964 __isl_give isl_set *isl_set_intersect(__isl_take isl_set *set1,
3965 __isl_take isl_set *set2)
3967 return set_from_map(isl_map_intersect(set_to_map(set1),
3968 set_to_map(set2)));
3971 /* map_intersect_internal accepts intersections
3972 * with parameter domains, so we can just call that function.
3974 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map,
3975 __isl_take isl_set *params)
3977 isl_map_align_params_set(&map, &params);
3978 return map_intersect_internal(map, params);
3981 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3982 __isl_take isl_set *params)
3984 return isl_map_intersect_params(set, params);
3987 __isl_give isl_basic_map *isl_basic_map_reverse(__isl_take isl_basic_map *bmap)
3989 isl_space *space;
3990 unsigned pos;
3991 isl_size n1, n2;
3993 if (!bmap)
3994 return NULL;
3995 bmap = isl_basic_map_cow(bmap);
3996 if (!bmap)
3997 return NULL;
3998 space = isl_space_reverse(isl_space_copy(bmap->dim));
3999 pos = isl_basic_map_offset(bmap, isl_dim_in);
4000 n1 = isl_basic_map_dim(bmap, isl_dim_in);
4001 n2 = isl_basic_map_dim(bmap, isl_dim_out);
4002 if (n1 < 0 || n2 < 0)
4003 bmap = isl_basic_map_free(bmap);
4004 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
4005 return isl_basic_map_reset_space(bmap, space);
4008 /* Given a basic map where the tuple of type "type" is a wrapped map,
4009 * swap domain and range of that wrapped map.
4011 static __isl_give isl_basic_map *isl_basic_map_reverse_wrapped(
4012 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
4014 isl_space *space;
4015 isl_size offset, n1, n2;
4017 space = isl_basic_map_peek_space(bmap);
4018 offset = isl_basic_map_var_offset(bmap, type);
4019 n1 = isl_space_wrapped_dim(space, type, isl_dim_in);
4020 n2 = isl_space_wrapped_dim(space, type, isl_dim_out);
4021 if (offset < 0 || n1 < 0 || n2 < 0)
4022 return isl_basic_map_free(bmap);
4024 bmap = isl_basic_map_swap_vars(bmap, 1 + offset, n1, n2);
4026 space = isl_basic_map_take_space(bmap);
4027 space = isl_space_reverse_wrapped(space, type);
4028 bmap = isl_basic_map_restore_space(bmap, space);
4030 return bmap;
4033 /* Given a basic map (A -> B) -> C, return the corresponding basic map
4034 * (B -> A) -> C.
4036 static __isl_give isl_basic_map *isl_basic_map_domain_reverse(
4037 __isl_take isl_basic_map *bmap)
4039 isl_space *space;
4041 space = isl_basic_map_peek_space(bmap);
4042 if (isl_space_check_domain_is_wrapping(space) < 0)
4043 return isl_basic_map_free(bmap);
4044 bmap = isl_basic_map_reverse_wrapped(bmap, isl_dim_in);
4046 return bmap;
4049 /* Given a basic map A -> (B -> C), return the corresponding basic map
4050 * A -> (C -> B).
4052 static __isl_give isl_basic_map *isl_basic_map_range_reverse(
4053 __isl_take isl_basic_map *bmap)
4055 isl_space *space;
4057 space = isl_basic_map_peek_space(bmap);
4058 if (isl_space_check_range_is_wrapping(space) < 0)
4059 return isl_basic_map_free(bmap);
4060 bmap = isl_basic_map_reverse_wrapped(bmap, isl_dim_out);
4062 return bmap;
4065 /* Given a basic map that is actually a basic set (A -> B),
4066 * return the corresponding basic set (B -> A) as a basic map.
4068 static __isl_give isl_basic_map *isl_basic_map_set_reverse(
4069 __isl_take isl_basic_map *bmap)
4071 isl_space *space;
4073 space = isl_basic_map_peek_space(bmap);
4074 if (isl_space_check_is_wrapping(space) < 0)
4075 return isl_basic_map_free(bmap);
4076 bmap = isl_basic_map_reverse_wrapped(bmap, isl_dim_set);
4078 return bmap;
4081 static __isl_give isl_basic_map *basic_map_space_reset(
4082 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
4084 isl_space *space;
4086 if (!bmap)
4087 return NULL;
4088 if (!isl_space_is_named_or_nested(bmap->dim, type))
4089 return bmap;
4091 space = isl_basic_map_get_space(bmap);
4092 space = isl_space_reset(space, type);
4093 bmap = isl_basic_map_reset_space(bmap, space);
4094 return bmap;
4097 __isl_give isl_basic_map *isl_basic_map_insert_dims(
4098 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
4099 unsigned pos, unsigned n)
4101 isl_bool rational, is_empty;
4102 isl_space *res_space;
4103 struct isl_basic_map *res;
4104 struct isl_dim_map *dim_map;
4105 isl_size total;
4106 unsigned off;
4107 enum isl_dim_type t;
4109 if (n == 0)
4110 return basic_map_space_reset(bmap, type);
4112 is_empty = isl_basic_map_plain_is_empty(bmap);
4113 total = isl_basic_map_dim(bmap, isl_dim_all);
4114 if (is_empty < 0 || total < 0)
4115 return isl_basic_map_free(bmap);
4116 res_space = isl_space_insert_dims(isl_basic_map_get_space(bmap),
4117 type, pos, n);
4118 if (!res_space)
4119 return isl_basic_map_free(bmap);
4120 if (is_empty) {
4121 isl_basic_map_free(bmap);
4122 return isl_basic_map_empty(res_space);
4125 dim_map = isl_dim_map_alloc(bmap->ctx, total + n);
4126 off = 0;
4127 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4128 isl_size dim;
4130 if (t != type) {
4131 isl_dim_map_dim(dim_map, bmap->dim, t, off);
4132 } else {
4133 isl_size size = isl_basic_map_dim(bmap, t);
4134 if (size < 0)
4135 dim_map = isl_dim_map_free(dim_map);
4136 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4137 0, pos, off);
4138 isl_dim_map_dim_range(dim_map, bmap->dim, t,
4139 pos, size - pos, off + pos + n);
4141 dim = isl_space_dim(res_space, t);
4142 if (dim < 0)
4143 dim_map = isl_dim_map_free(dim_map);
4144 off += dim;
4146 isl_dim_map_div(dim_map, bmap, off);
4148 res = isl_basic_map_alloc_space(res_space,
4149 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4150 rational = isl_basic_map_is_rational(bmap);
4151 if (rational < 0)
4152 res = isl_basic_map_free(res);
4153 if (rational)
4154 res = isl_basic_map_set_rational(res);
4155 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4156 return isl_basic_map_finalize(res);
4159 __isl_give isl_basic_set *isl_basic_set_insert_dims(
4160 __isl_take isl_basic_set *bset,
4161 enum isl_dim_type type, unsigned pos, unsigned n)
4163 return isl_basic_map_insert_dims(bset, type, pos, n);
4166 __isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
4167 enum isl_dim_type type, unsigned n)
4169 isl_size dim;
4171 dim = isl_basic_map_dim(bmap, type);
4172 if (dim < 0)
4173 return isl_basic_map_free(bmap);
4174 return isl_basic_map_insert_dims(bmap, type, dim, n);
4177 __isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
4178 enum isl_dim_type type, unsigned n)
4180 if (!bset)
4181 return NULL;
4182 isl_assert(bset->ctx, type != isl_dim_in, goto error);
4183 return isl_basic_map_add_dims(bset, type, n);
4184 error:
4185 isl_basic_set_free(bset);
4186 return NULL;
4189 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
4190 enum isl_dim_type type)
4192 isl_space *space;
4194 if (!map || !isl_space_is_named_or_nested(map->dim, type))
4195 return map;
4197 space = isl_map_get_space(map);
4198 space = isl_space_reset(space, type);
4199 map = isl_map_reset_space(map, space);
4200 return map;
4203 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
4204 enum isl_dim_type type, unsigned pos, unsigned n)
4206 int i;
4207 isl_space *space;
4209 if (n == 0)
4210 return map_space_reset(map, type);
4212 map = isl_map_cow(map);
4213 if (!map)
4214 return NULL;
4216 for (i = 0; i < map->n; ++i) {
4217 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
4218 if (!map->p[i])
4219 goto error;
4222 space = isl_map_take_space(map);
4223 space = isl_space_insert_dims(space, type, pos, n);
4224 map = isl_map_restore_space(map, space);
4226 return map;
4227 error:
4228 isl_map_free(map);
4229 return NULL;
4232 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
4233 enum isl_dim_type type, unsigned pos, unsigned n)
4235 return isl_map_insert_dims(set, type, pos, n);
4238 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
4239 enum isl_dim_type type, unsigned n)
4241 isl_size dim;
4243 dim = isl_map_dim(map, type);
4244 if (dim < 0)
4245 return isl_map_free(map);
4246 return isl_map_insert_dims(map, type, dim, n);
4249 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
4250 enum isl_dim_type type, unsigned n)
4252 if (!set)
4253 return NULL;
4254 isl_assert(set->ctx, type != isl_dim_in, goto error);
4255 return set_from_map(isl_map_add_dims(set_to_map(set), type, n));
4256 error:
4257 isl_set_free(set);
4258 return NULL;
4261 __isl_give isl_basic_map *isl_basic_map_move_dims(
4262 __isl_take isl_basic_map *bmap,
4263 enum isl_dim_type dst_type, unsigned dst_pos,
4264 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4266 isl_space *space;
4267 struct isl_dim_map *dim_map;
4268 struct isl_basic_map *res;
4269 enum isl_dim_type t;
4270 isl_size total;
4271 unsigned off;
4273 if (!bmap)
4274 return NULL;
4275 if (n == 0) {
4276 bmap = isl_basic_map_reset(bmap, src_type);
4277 bmap = isl_basic_map_reset(bmap, dst_type);
4278 return bmap;
4281 if (isl_basic_map_check_range(bmap, src_type, src_pos, n) < 0)
4282 return isl_basic_map_free(bmap);
4284 if (dst_type == src_type && dst_pos == src_pos)
4285 return bmap;
4287 isl_assert(bmap->ctx, dst_type != src_type, goto error);
4289 if (pos(bmap->dim, dst_type) + dst_pos ==
4290 pos(bmap->dim, src_type) + src_pos +
4291 ((src_type < dst_type) ? n : 0)) {
4292 space = isl_basic_map_take_space(bmap);
4293 space = isl_space_move_dims(space, dst_type, dst_pos,
4294 src_type, src_pos, n);
4295 bmap = isl_basic_map_restore_space(bmap, space);
4296 bmap = isl_basic_map_finalize(bmap);
4298 return bmap;
4301 total = isl_basic_map_dim(bmap, isl_dim_all);
4302 if (total < 0)
4303 return isl_basic_map_free(bmap);
4304 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4306 off = 0;
4307 space = isl_basic_map_peek_space(bmap);
4308 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4309 isl_size size = isl_space_dim(space, t);
4310 if (size < 0)
4311 dim_map = isl_dim_map_free(dim_map);
4312 if (t == dst_type) {
4313 isl_dim_map_dim_range(dim_map, space, t,
4314 0, dst_pos, off);
4315 off += dst_pos;
4316 isl_dim_map_dim_range(dim_map, space, src_type,
4317 src_pos, n, off);
4318 off += n;
4319 isl_dim_map_dim_range(dim_map, space, t,
4320 dst_pos, size - dst_pos, off);
4321 off += size - dst_pos;
4322 } else if (t == src_type) {
4323 isl_dim_map_dim_range(dim_map, space, t,
4324 0, src_pos, off);
4325 off += src_pos;
4326 isl_dim_map_dim_range(dim_map, space, t,
4327 src_pos + n, size - src_pos - n, off);
4328 off += size - src_pos - n;
4329 } else {
4330 isl_dim_map_dim(dim_map, space, t, off);
4331 off += size;
4334 isl_dim_map_div(dim_map, bmap, off);
4336 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4337 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4338 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4339 space = isl_basic_map_take_space(bmap);
4340 space = isl_space_move_dims(space, dst_type, dst_pos,
4341 src_type, src_pos, n);
4342 bmap = isl_basic_map_restore_space(bmap, space);
4343 if (!bmap)
4344 goto error;
4346 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
4347 bmap = isl_basic_map_gauss(bmap, NULL);
4348 bmap = isl_basic_map_finalize(bmap);
4350 return bmap;
4351 error:
4352 isl_basic_map_free(bmap);
4353 return NULL;
4356 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
4357 enum isl_dim_type dst_type, unsigned dst_pos,
4358 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4360 isl_basic_map *bmap = bset_to_bmap(bset);
4361 bmap = isl_basic_map_move_dims(bmap, dst_type, dst_pos,
4362 src_type, src_pos, n);
4363 return bset_from_bmap(bmap);
4366 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
4367 enum isl_dim_type dst_type, unsigned dst_pos,
4368 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4370 if (!set)
4371 return NULL;
4372 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
4373 return set_from_map(isl_map_move_dims(set_to_map(set),
4374 dst_type, dst_pos, src_type, src_pos, n));
4375 error:
4376 isl_set_free(set);
4377 return NULL;
4380 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
4381 enum isl_dim_type dst_type, unsigned dst_pos,
4382 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
4384 int i;
4385 isl_space *space;
4387 if (n == 0) {
4388 map = isl_map_reset(map, src_type);
4389 map = isl_map_reset(map, dst_type);
4390 return map;
4393 if (isl_map_check_range(map, src_type, src_pos, n))
4394 return isl_map_free(map);
4396 if (dst_type == src_type && dst_pos == src_pos)
4397 return map;
4399 isl_assert(map->ctx, dst_type != src_type, goto error);
4401 map = isl_map_cow(map);
4402 if (!map)
4403 return NULL;
4405 for (i = 0; i < map->n; ++i) {
4406 map->p[i] = isl_basic_map_move_dims(map->p[i],
4407 dst_type, dst_pos,
4408 src_type, src_pos, n);
4409 if (!map->p[i])
4410 goto error;
4413 space = isl_map_take_space(map);
4414 space = isl_space_move_dims(space, dst_type, dst_pos,
4415 src_type, src_pos, n);
4416 map = isl_map_restore_space(map, space);
4418 return map;
4419 error:
4420 isl_map_free(map);
4421 return NULL;
4424 /* Move the specified dimensions to the last columns right before
4425 * the divs. Don't change the dimension specification of bmap.
4426 * That's the responsibility of the caller.
4428 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
4429 enum isl_dim_type type, unsigned first, unsigned n)
4431 isl_space *space;
4432 struct isl_dim_map *dim_map;
4433 struct isl_basic_map *res;
4434 enum isl_dim_type t;
4435 isl_size total;
4436 unsigned off;
4438 if (!bmap)
4439 return NULL;
4440 if (isl_basic_map_offset(bmap, type) + first + n ==
4441 isl_basic_map_offset(bmap, isl_dim_div))
4442 return bmap;
4444 total = isl_basic_map_dim(bmap, isl_dim_all);
4445 if (total < 0)
4446 return isl_basic_map_free(bmap);
4447 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4449 off = 0;
4450 space = isl_basic_map_peek_space(bmap);
4451 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
4452 isl_size size = isl_space_dim(space, t);
4453 if (size < 0)
4454 dim_map = isl_dim_map_free(dim_map);
4455 if (t == type) {
4456 isl_dim_map_dim_range(dim_map, space, t,
4457 0, first, off);
4458 off += first;
4459 isl_dim_map_dim_range(dim_map, space, t,
4460 first, n, total - bmap->n_div - n);
4461 isl_dim_map_dim_range(dim_map, space, t,
4462 first + n, size - (first + n), off);
4463 off += size - (first + n);
4464 } else {
4465 isl_dim_map_dim(dim_map, space, t, off);
4466 off += size;
4469 isl_dim_map_div(dim_map, bmap, off + n);
4471 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
4472 bmap->n_div, bmap->n_eq, bmap->n_ineq);
4473 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
4474 return res;
4477 /* Insert "n" rows in the divs of "bmap".
4479 * The number of columns is not changed, which means that the last
4480 * dimensions of "bmap" are being reintepreted as the new divs.
4481 * The space of "bmap" is not adjusted, however, which means
4482 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
4483 * from the space of "bmap" is the responsibility of the caller.
4485 static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
4486 int n)
4488 int i;
4489 size_t row_size;
4490 isl_int **new_div;
4491 isl_int *old;
4493 bmap = isl_basic_map_cow(bmap);
4494 if (!bmap)
4495 return NULL;
4497 row_size = isl_basic_map_offset(bmap, isl_dim_div) + bmap->extra;
4498 old = bmap->block2.data;
4499 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
4500 (bmap->extra + n) * (1 + row_size));
4501 if (!bmap->block2.data)
4502 return isl_basic_map_free(bmap);
4503 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
4504 if (!new_div)
4505 return isl_basic_map_free(bmap);
4506 for (i = 0; i < n; ++i) {
4507 new_div[i] = bmap->block2.data +
4508 (bmap->extra + i) * (1 + row_size);
4509 isl_seq_clr(new_div[i], 1 + row_size);
4511 for (i = 0; i < bmap->extra; ++i)
4512 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
4513 free(bmap->div);
4514 bmap->div = new_div;
4515 bmap->n_div += n;
4516 bmap->extra += n;
4518 return bmap;
4521 /* Drop constraints from "bmap" that only involve the variables
4522 * of "type" in the range [first, first + n] that are not related
4523 * to any of the variables outside that interval.
4524 * These constraints cannot influence the values for the variables
4525 * outside the interval, except in case they cause "bmap" to be empty.
4526 * Only drop the constraints if "bmap" is known to be non-empty.
4528 static __isl_give isl_basic_map *drop_irrelevant_constraints(
4529 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
4530 unsigned first, unsigned n)
4532 int i;
4533 int *groups;
4534 isl_size dim, n_div;
4535 isl_bool non_empty;
4537 non_empty = isl_basic_map_plain_is_non_empty(bmap);
4538 if (non_empty < 0)
4539 return isl_basic_map_free(bmap);
4540 if (!non_empty)
4541 return bmap;
4543 dim = isl_basic_map_dim(bmap, isl_dim_all);
4544 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4545 if (dim < 0 || n_div < 0)
4546 return isl_basic_map_free(bmap);
4547 groups = isl_calloc_array(isl_basic_map_get_ctx(bmap), int, dim);
4548 if (!groups)
4549 return isl_basic_map_free(bmap);
4550 first += isl_basic_map_offset(bmap, type) - 1;
4551 for (i = 0; i < first; ++i)
4552 groups[i] = -1;
4553 for (i = first + n; i < dim - n_div; ++i)
4554 groups[i] = -1;
4556 bmap = isl_basic_map_drop_unrelated_constraints(bmap, groups);
4558 return bmap;
4561 /* Turn the n dimensions of type type, starting at first
4562 * into existentially quantified variables.
4564 * If a subset of the projected out variables are unrelated
4565 * to any of the variables that remain, then the constraints
4566 * involving this subset are simply dropped first.
4568 __isl_give isl_basic_map *isl_basic_map_project_out(
4569 __isl_take isl_basic_map *bmap,
4570 enum isl_dim_type type, unsigned first, unsigned n)
4572 isl_bool empty;
4573 isl_space *space;
4575 if (n == 0)
4576 return basic_map_space_reset(bmap, type);
4577 if (type == isl_dim_div)
4578 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
4579 "cannot project out existentially quantified variables",
4580 return isl_basic_map_free(bmap));
4582 empty = isl_basic_map_plain_is_empty(bmap);
4583 if (empty < 0)
4584 return isl_basic_map_free(bmap);
4585 if (empty)
4586 bmap = isl_basic_map_set_to_empty(bmap);
4588 bmap = drop_irrelevant_constraints(bmap, type, first, n);
4589 if (!bmap)
4590 return NULL;
4592 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
4593 return isl_basic_map_remove_dims(bmap, type, first, n);
4595 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
4596 return isl_basic_map_free(bmap);
4598 bmap = move_last(bmap, type, first, n);
4599 bmap = isl_basic_map_cow(bmap);
4600 bmap = insert_div_rows(bmap, n);
4602 space = isl_basic_map_take_space(bmap);
4603 space = isl_space_drop_dims(space, type, first, n);
4604 bmap = isl_basic_map_restore_space(bmap, space);
4605 bmap = isl_basic_map_simplify(bmap);
4606 bmap = isl_basic_map_drop_redundant_divs(bmap);
4607 return isl_basic_map_finalize(bmap);
4610 /* Turn the n dimensions of type type, starting at first
4611 * into existentially quantified variables.
4613 __isl_give isl_basic_set *isl_basic_set_project_out(
4614 __isl_take isl_basic_set *bset, enum isl_dim_type type,
4615 unsigned first, unsigned n)
4617 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset),
4618 type, first, n));
4621 /* Turn the n dimensions of type type, starting at first
4622 * into existentially quantified variables.
4624 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
4625 enum isl_dim_type type, unsigned first, unsigned n)
4627 int i;
4628 isl_space *space;
4630 if (n == 0)
4631 return map_space_reset(map, type);
4633 if (isl_map_check_range(map, type, first, n) < 0)
4634 return isl_map_free(map);
4636 map = isl_map_cow(map);
4637 if (!map)
4638 return NULL;
4640 for (i = 0; i < map->n; ++i) {
4641 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
4642 if (!map->p[i])
4643 goto error;
4646 if (map->n > 1)
4647 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4648 map = isl_map_unmark_normalized(map);
4650 space = isl_map_take_space(map);
4651 space = isl_space_drop_dims(space, type, first, n);
4652 map = isl_map_restore_space(map, space);
4654 return map;
4655 error:
4656 isl_map_free(map);
4657 return NULL;
4660 #undef TYPE
4661 #define TYPE isl_map
4662 #include "isl_project_out_all_params_templ.c"
4663 #include "isl_project_out_param_templ.c"
4665 /* Turn all the dimensions of type "type", except the "n" starting at "first"
4666 * into existentially quantified variables.
4668 __isl_give isl_map *isl_map_project_onto(__isl_take isl_map *map,
4669 enum isl_dim_type type, unsigned first, unsigned n)
4671 isl_size dim;
4673 dim = isl_map_dim(map, type);
4674 if (isl_map_check_range(map, type, first, n) < 0 || dim < 0)
4675 return isl_map_free(map);
4676 map = isl_map_project_out(map, type, first + n, dim - (first + n));
4677 map = isl_map_project_out(map, type, 0, first);
4678 return map;
4681 /* Turn the n dimensions of type type, starting at first
4682 * into existentially quantified variables.
4684 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
4685 enum isl_dim_type type, unsigned first, unsigned n)
4687 return set_from_map(isl_map_project_out(set_to_map(set),
4688 type, first, n));
4691 /* If "set" involves a parameter with identifier "id",
4692 * then turn it into an existentially quantified variable.
4694 __isl_give isl_set *isl_set_project_out_param_id(__isl_take isl_set *set,
4695 __isl_take isl_id *id)
4697 return set_from_map(isl_map_project_out_param_id(set_to_map(set), id));
4700 /* If "set" involves any of the parameters with identifiers in "list",
4701 * then turn them into existentially quantified variables.
4703 __isl_give isl_set *isl_set_project_out_param_id_list(__isl_take isl_set *set,
4704 __isl_take isl_id_list *list)
4706 isl_map *map;
4708 map = set_to_map(set);
4709 map = isl_map_project_out_param_id_list(map, list);
4710 return set_from_map(map);
4713 /* Project out all parameters from "set" by existentially quantifying
4714 * over them.
4716 __isl_give isl_set *isl_set_project_out_all_params(__isl_take isl_set *set)
4718 return set_from_map(isl_map_project_out_all_params(set_to_map(set)));
4721 /* Return a map that projects the elements in "set" onto their
4722 * "n" set dimensions starting at "first".
4723 * "type" should be equal to isl_dim_set.
4725 __isl_give isl_map *isl_set_project_onto_map(__isl_take isl_set *set,
4726 enum isl_dim_type type, unsigned first, unsigned n)
4728 int i;
4729 isl_map *map;
4731 if (type != isl_dim_set)
4732 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4733 "only set dimensions can be projected out", goto error);
4734 if (isl_set_check_range(set, type, first, n) < 0)
4735 return isl_set_free(set);
4737 map = isl_map_from_domain(set);
4738 map = isl_map_add_dims(map, isl_dim_out, n);
4739 for (i = 0; i < n; ++i)
4740 map = isl_map_equate(map, isl_dim_in, first + i,
4741 isl_dim_out, i);
4742 return map;
4743 error:
4744 isl_set_free(set);
4745 return NULL;
4748 static __isl_give isl_basic_map *add_divs(__isl_take isl_basic_map *bmap,
4749 unsigned n)
4751 int i, j;
4752 isl_size total;
4754 total = isl_basic_map_dim(bmap, isl_dim_all);
4755 if (total < 0)
4756 return isl_basic_map_free(bmap);
4757 for (i = 0; i < n; ++i) {
4758 j = isl_basic_map_alloc_div(bmap);
4759 if (j < 0)
4760 goto error;
4761 isl_seq_clr(bmap->div[j], 1 + 1 + total);
4763 return bmap;
4764 error:
4765 isl_basic_map_free(bmap);
4766 return NULL;
4769 /* Does "bmap2" apply to the range of "bmap1" (ignoring parameters)?
4771 isl_bool isl_basic_map_applies_range(__isl_keep isl_basic_map *bmap1,
4772 __isl_keep isl_basic_map *bmap2)
4774 isl_space *space1, *space2;
4776 space1 = isl_basic_map_peek_space(bmap1);
4777 space2 = isl_basic_map_peek_space(bmap2);
4778 return isl_space_tuple_is_equal(space1, isl_dim_out,
4779 space2, isl_dim_in);
4782 /* Check that "bmap2" applies to the range of "bmap1" (ignoring parameters).
4784 static isl_stat isl_basic_map_check_applies_range(
4785 __isl_keep isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
4787 isl_bool equal;
4789 equal = isl_basic_map_applies_range(bmap1, bmap2);
4790 if (equal < 0)
4791 return isl_stat_error;
4792 if (!equal)
4793 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4794 "spaces don't match", return isl_stat_error);
4795 return isl_stat_ok;
4798 __isl_give isl_basic_map *isl_basic_map_apply_range(
4799 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
4801 isl_space *space_result = NULL;
4802 struct isl_basic_map *bmap;
4803 isl_size n_in, n_out, n, nparam;
4804 unsigned total, pos;
4805 struct isl_dim_map *dim_map1, *dim_map2;
4807 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4808 goto error;
4809 if (isl_basic_map_check_applies_range(bmap1, bmap2) < 0)
4810 goto error;
4812 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4813 n_out = isl_basic_map_dim(bmap2, isl_dim_out);
4814 n = isl_basic_map_dim(bmap1, isl_dim_out);
4815 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4816 if (n_in < 0 || n_out < 0 || n < 0 || nparam < 0)
4817 goto error;
4819 space_result = isl_space_join(isl_basic_map_get_space(bmap1),
4820 isl_basic_map_get_space(bmap2));
4822 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
4823 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4824 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
4825 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4826 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
4827 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4828 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
4829 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
4830 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4831 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4832 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4834 bmap = isl_basic_map_alloc_space(space_result,
4835 bmap1->n_div + bmap2->n_div + n,
4836 bmap1->n_eq + bmap2->n_eq,
4837 bmap1->n_ineq + bmap2->n_ineq);
4838 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4839 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4840 bmap = add_divs(bmap, n);
4841 bmap = isl_basic_map_simplify(bmap);
4842 bmap = isl_basic_map_drop_redundant_divs(bmap);
4843 return isl_basic_map_finalize(bmap);
4844 error:
4845 isl_basic_map_free(bmap1);
4846 isl_basic_map_free(bmap2);
4847 return NULL;
4850 __isl_give isl_basic_set *isl_basic_set_apply(__isl_take isl_basic_set *bset,
4851 __isl_take isl_basic_map *bmap)
4853 if (isl_basic_map_check_compatible_domain(bmap, bset) < 0)
4854 goto error;
4856 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset),
4857 bmap));
4858 error:
4859 isl_basic_set_free(bset);
4860 isl_basic_map_free(bmap);
4861 return NULL;
4864 __isl_give isl_basic_map *isl_basic_map_apply_domain(
4865 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
4867 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
4868 goto error;
4869 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_in,
4870 bmap2->dim, isl_dim_in))
4871 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4872 "spaces don't match", goto error);
4874 bmap1 = isl_basic_map_reverse(bmap1);
4875 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
4876 return isl_basic_map_reverse(bmap1);
4877 error:
4878 isl_basic_map_free(bmap1);
4879 isl_basic_map_free(bmap2);
4880 return NULL;
4883 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4884 * A \cap B -> f(A) + f(B)
4886 __isl_give isl_basic_map *isl_basic_map_sum(__isl_take isl_basic_map *bmap1,
4887 __isl_take isl_basic_map *bmap2)
4889 isl_size n_in, n_out, nparam;
4890 unsigned total, pos;
4891 struct isl_basic_map *bmap = NULL;
4892 struct isl_dim_map *dim_map1, *dim_map2;
4893 int i;
4895 if (isl_basic_map_check_equal_space(bmap1, bmap2) < 0)
4896 goto error;
4898 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4899 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4900 n_out = isl_basic_map_dim(bmap1, isl_dim_out);
4901 if (nparam < 0 || n_in < 0 || n_out < 0)
4902 goto error;
4904 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
4905 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4906 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
4907 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4908 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
4909 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4910 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4911 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
4912 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4913 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4914 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
4916 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
4917 bmap1->n_div + bmap2->n_div + 2 * n_out,
4918 bmap1->n_eq + bmap2->n_eq + n_out,
4919 bmap1->n_ineq + bmap2->n_ineq);
4920 for (i = 0; i < n_out; ++i) {
4921 int j = isl_basic_map_alloc_equality(bmap);
4922 if (j < 0)
4923 goto error;
4924 isl_seq_clr(bmap->eq[j], 1+total);
4925 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
4926 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
4927 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
4929 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4930 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4931 bmap = add_divs(bmap, 2 * n_out);
4933 bmap = isl_basic_map_simplify(bmap);
4934 return isl_basic_map_finalize(bmap);
4935 error:
4936 isl_basic_map_free(bmap);
4937 isl_basic_map_free(bmap1);
4938 isl_basic_map_free(bmap2);
4939 return NULL;
4942 /* Given two maps A -> f(A) and B -> g(B), construct a map
4943 * A \cap B -> f(A) + f(B)
4945 __isl_give isl_map *isl_map_sum(__isl_take isl_map *map1,
4946 __isl_take isl_map *map2)
4948 struct isl_map *result;
4949 int i, j;
4951 if (isl_map_check_equal_space(map1, map2) < 0)
4952 goto error;
4954 result = isl_map_alloc_space(isl_space_copy(map1->dim),
4955 map1->n * map2->n, 0);
4956 if (!result)
4957 goto error;
4958 for (i = 0; i < map1->n; ++i)
4959 for (j = 0; j < map2->n; ++j) {
4960 struct isl_basic_map *part;
4961 part = isl_basic_map_sum(
4962 isl_basic_map_copy(map1->p[i]),
4963 isl_basic_map_copy(map2->p[j]));
4964 if (isl_basic_map_is_empty(part))
4965 isl_basic_map_free(part);
4966 else
4967 result = isl_map_add_basic_map(result, part);
4968 if (!result)
4969 goto error;
4971 isl_map_free(map1);
4972 isl_map_free(map2);
4973 return result;
4974 error:
4975 isl_map_free(map1);
4976 isl_map_free(map2);
4977 return NULL;
4980 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
4981 __isl_take isl_set *set2)
4983 return set_from_map(isl_map_sum(set_to_map(set1), set_to_map(set2)));
4986 /* Given a basic map A -> f(A), construct A -> -f(A).
4988 __isl_give isl_basic_map *isl_basic_map_neg(__isl_take isl_basic_map *bmap)
4990 int i, j;
4991 unsigned off;
4992 isl_size n;
4994 bmap = isl_basic_map_cow(bmap);
4995 n = isl_basic_map_dim(bmap, isl_dim_out);
4996 if (n < 0)
4997 return isl_basic_map_free(bmap);
4999 off = isl_basic_map_offset(bmap, isl_dim_out);
5000 for (i = 0; i < bmap->n_eq; ++i)
5001 for (j = 0; j < n; ++j)
5002 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
5003 for (i = 0; i < bmap->n_ineq; ++i)
5004 for (j = 0; j < n; ++j)
5005 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
5006 for (i = 0; i < bmap->n_div; ++i)
5007 for (j = 0; j < n; ++j)
5008 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
5009 bmap = isl_basic_map_gauss(bmap, NULL);
5010 return isl_basic_map_finalize(bmap);
5013 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
5015 return isl_basic_map_neg(bset);
5018 /* Given a map A -> f(A), construct A -> -f(A).
5020 __isl_give isl_map *isl_map_neg(__isl_take isl_map *map)
5022 int i;
5024 map = isl_map_cow(map);
5025 if (!map)
5026 return NULL;
5028 for (i = 0; i < map->n; ++i) {
5029 map->p[i] = isl_basic_map_neg(map->p[i]);
5030 if (!map->p[i])
5031 goto error;
5034 return map;
5035 error:
5036 isl_map_free(map);
5037 return NULL;
5040 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
5042 return set_from_map(isl_map_neg(set_to_map(set)));
5045 /* Given a basic map A -> f(A) and an integer d, construct a basic map
5046 * A -> floor(f(A)/d).
5048 __isl_give isl_basic_map *isl_basic_map_floordiv(__isl_take isl_basic_map *bmap,
5049 isl_int d)
5051 isl_size n_in, n_out, nparam;
5052 unsigned total, pos;
5053 struct isl_basic_map *result = NULL;
5054 struct isl_dim_map *dim_map;
5055 int i;
5057 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5058 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5059 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5060 if (nparam < 0 || n_in < 0 || n_out < 0)
5061 return isl_basic_map_free(bmap);
5063 total = nparam + n_in + n_out + bmap->n_div + n_out;
5064 dim_map = isl_dim_map_alloc(bmap->ctx, total);
5065 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
5066 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
5067 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
5068 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
5070 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
5071 bmap->n_div + n_out,
5072 bmap->n_eq, bmap->n_ineq + 2 * n_out);
5073 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
5074 result = add_divs(result, n_out);
5075 for (i = 0; i < n_out; ++i) {
5076 int j;
5077 j = isl_basic_map_alloc_inequality(result);
5078 if (j < 0)
5079 goto error;
5080 isl_seq_clr(result->ineq[j], 1+total);
5081 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
5082 isl_int_set_si(result->ineq[j][1+pos+i], 1);
5083 j = isl_basic_map_alloc_inequality(result);
5084 if (j < 0)
5085 goto error;
5086 isl_seq_clr(result->ineq[j], 1+total);
5087 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
5088 isl_int_set_si(result->ineq[j][1+pos+i], -1);
5089 isl_int_sub_ui(result->ineq[j][0], d, 1);
5092 result = isl_basic_map_simplify(result);
5093 return isl_basic_map_finalize(result);
5094 error:
5095 isl_basic_map_free(result);
5096 return NULL;
5099 /* Given a map A -> f(A) and an integer d, construct a map
5100 * A -> floor(f(A)/d).
5102 __isl_give isl_map *isl_map_floordiv(__isl_take isl_map *map, isl_int d)
5104 int i;
5106 map = isl_map_cow(map);
5107 if (!map)
5108 return NULL;
5110 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5111 for (i = 0; i < map->n; ++i) {
5112 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
5113 if (!map->p[i])
5114 goto error;
5116 map = isl_map_unmark_normalized(map);
5118 return map;
5119 error:
5120 isl_map_free(map);
5121 return NULL;
5124 /* Given a map A -> f(A) and an integer d, construct a map
5125 * A -> floor(f(A)/d).
5127 __isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
5128 __isl_take isl_val *d)
5130 if (!map || !d)
5131 goto error;
5132 if (!isl_val_is_int(d))
5133 isl_die(isl_val_get_ctx(d), isl_error_invalid,
5134 "expecting integer denominator", goto error);
5135 map = isl_map_floordiv(map, d->n);
5136 isl_val_free(d);
5137 return map;
5138 error:
5139 isl_map_free(map);
5140 isl_val_free(d);
5141 return NULL;
5144 static __isl_give isl_basic_map *var_equal(__isl_take isl_basic_map *bmap,
5145 unsigned pos)
5147 int i;
5148 isl_size nparam;
5149 isl_size n_in;
5150 isl_size total;
5152 total = isl_basic_map_dim(bmap, isl_dim_all);
5153 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5154 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5155 if (total < 0 || nparam < 0 || n_in < 0)
5156 return isl_basic_map_free(bmap);
5157 i = isl_basic_map_alloc_equality(bmap);
5158 if (i < 0)
5159 goto error;
5160 isl_seq_clr(bmap->eq[i], 1 + total);
5161 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
5162 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
5163 return isl_basic_map_finalize(bmap);
5164 error:
5165 isl_basic_map_free(bmap);
5166 return NULL;
5169 /* Add a constraint to "bmap" expressing i_pos < o_pos
5171 static __isl_give isl_basic_map *var_less(__isl_take isl_basic_map *bmap,
5172 unsigned pos)
5174 int i;
5175 isl_size nparam;
5176 isl_size n_in;
5177 isl_size total;
5179 total = isl_basic_map_dim(bmap, isl_dim_all);
5180 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5181 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5182 if (total < 0 || nparam < 0 || n_in < 0)
5183 return isl_basic_map_free(bmap);
5184 i = isl_basic_map_alloc_inequality(bmap);
5185 if (i < 0)
5186 goto error;
5187 isl_seq_clr(bmap->ineq[i], 1 + total);
5188 isl_int_set_si(bmap->ineq[i][0], -1);
5189 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
5190 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
5191 return isl_basic_map_finalize(bmap);
5192 error:
5193 isl_basic_map_free(bmap);
5194 return NULL;
5197 /* Add a constraint to "bmap" expressing i_pos <= o_pos
5199 static __isl_give isl_basic_map *var_less_or_equal(
5200 __isl_take isl_basic_map *bmap, unsigned pos)
5202 int i;
5203 isl_size nparam;
5204 isl_size n_in;
5205 isl_size total;
5207 total = isl_basic_map_dim(bmap, isl_dim_all);
5208 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5209 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5210 if (total < 0 || nparam < 0 || n_in < 0)
5211 return isl_basic_map_free(bmap);
5212 i = isl_basic_map_alloc_inequality(bmap);
5213 if (i < 0)
5214 goto error;
5215 isl_seq_clr(bmap->ineq[i], 1 + total);
5216 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
5217 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
5218 return isl_basic_map_finalize(bmap);
5219 error:
5220 isl_basic_map_free(bmap);
5221 return NULL;
5224 /* Add a constraint to "bmap" expressing i_pos > o_pos
5226 static __isl_give isl_basic_map *var_more(__isl_take isl_basic_map *bmap,
5227 unsigned pos)
5229 int i;
5230 isl_size nparam;
5231 isl_size n_in;
5232 isl_size total;
5234 total = isl_basic_map_dim(bmap, isl_dim_all);
5235 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5236 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5237 if (total < 0 || nparam < 0 || n_in < 0)
5238 return isl_basic_map_free(bmap);
5239 i = isl_basic_map_alloc_inequality(bmap);
5240 if (i < 0)
5241 goto error;
5242 isl_seq_clr(bmap->ineq[i], 1 + total);
5243 isl_int_set_si(bmap->ineq[i][0], -1);
5244 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
5245 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
5246 return isl_basic_map_finalize(bmap);
5247 error:
5248 isl_basic_map_free(bmap);
5249 return NULL;
5252 /* Add a constraint to "bmap" expressing i_pos >= o_pos
5254 static __isl_give isl_basic_map *var_more_or_equal(
5255 __isl_take isl_basic_map *bmap, unsigned pos)
5257 int i;
5258 isl_size nparam;
5259 isl_size n_in;
5260 isl_size total;
5262 total = isl_basic_map_dim(bmap, isl_dim_all);
5263 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5264 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5265 if (total < 0 || nparam < 0 || n_in < 0)
5266 return isl_basic_map_free(bmap);
5267 i = isl_basic_map_alloc_inequality(bmap);
5268 if (i < 0)
5269 goto error;
5270 isl_seq_clr(bmap->ineq[i], 1 + total);
5271 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
5272 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
5273 return isl_basic_map_finalize(bmap);
5274 error:
5275 isl_basic_map_free(bmap);
5276 return NULL;
5279 __isl_give isl_basic_map *isl_basic_map_equal(
5280 __isl_take isl_space *space, unsigned n_equal)
5282 int i;
5283 struct isl_basic_map *bmap;
5284 bmap = isl_basic_map_alloc_space(space, 0, n_equal, 0);
5285 if (!bmap)
5286 return NULL;
5287 for (i = 0; i < n_equal && bmap; ++i)
5288 bmap = var_equal(bmap, i);
5289 return isl_basic_map_finalize(bmap);
5292 /* Return a relation on of dimension "space" expressing i_[0..pos] << o_[0..pos]
5294 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *space,
5295 unsigned pos)
5297 int i;
5298 struct isl_basic_map *bmap;
5299 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
5300 if (!bmap)
5301 return NULL;
5302 for (i = 0; i < pos && bmap; ++i)
5303 bmap = var_equal(bmap, i);
5304 if (bmap)
5305 bmap = var_less(bmap, pos);
5306 return isl_basic_map_finalize(bmap);
5309 /* Return a relation on "space" expressing i_[0..pos] <<= o_[0..pos]
5311 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
5312 __isl_take isl_space *space, unsigned pos)
5314 int i;
5315 isl_basic_map *bmap;
5317 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
5318 for (i = 0; i < pos; ++i)
5319 bmap = var_equal(bmap, i);
5320 bmap = var_less_or_equal(bmap, pos);
5321 return isl_basic_map_finalize(bmap);
5324 /* Return a relation on "space" expressing i_pos > o_pos
5326 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *space,
5327 unsigned pos)
5329 int i;
5330 struct isl_basic_map *bmap;
5331 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
5332 if (!bmap)
5333 return NULL;
5334 for (i = 0; i < pos && bmap; ++i)
5335 bmap = var_equal(bmap, i);
5336 if (bmap)
5337 bmap = var_more(bmap, pos);
5338 return isl_basic_map_finalize(bmap);
5341 /* Return a relation on "space" expressing i_[0..pos] >>= o_[0..pos]
5343 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
5344 __isl_take isl_space *space, unsigned pos)
5346 int i;
5347 isl_basic_map *bmap;
5349 bmap = isl_basic_map_alloc_space(space, 0, pos, 1);
5350 for (i = 0; i < pos; ++i)
5351 bmap = var_equal(bmap, i);
5352 bmap = var_more_or_equal(bmap, pos);
5353 return isl_basic_map_finalize(bmap);
5356 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *space,
5357 unsigned n, int equal)
5359 struct isl_map *map;
5360 int i;
5362 if (n == 0 && equal)
5363 return isl_map_universe(space);
5365 map = isl_map_alloc_space(isl_space_copy(space), n, ISL_MAP_DISJOINT);
5367 for (i = 0; i + 1 < n; ++i)
5368 map = isl_map_add_basic_map(map,
5369 isl_basic_map_less_at(isl_space_copy(space), i));
5370 if (n > 0) {
5371 if (equal)
5372 map = isl_map_add_basic_map(map,
5373 isl_basic_map_less_or_equal_at(space, n - 1));
5374 else
5375 map = isl_map_add_basic_map(map,
5376 isl_basic_map_less_at(space, n - 1));
5377 } else
5378 isl_space_free(space);
5380 return map;
5383 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *space, int equal)
5385 if (!space)
5386 return NULL;
5387 return map_lex_lte_first(space, space->n_out, equal);
5390 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *space,
5391 unsigned n)
5393 return map_lex_lte_first(space, n, 0);
5396 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *space,
5397 unsigned n)
5399 return map_lex_lte_first(space, n, 1);
5402 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_space)
5404 return map_lex_lte(isl_space_map_from_set(set_space), 0);
5407 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_space)
5409 return map_lex_lte(isl_space_map_from_set(set_space), 1);
5412 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *space,
5413 unsigned n, int equal)
5415 struct isl_map *map;
5416 int i;
5418 if (n == 0 && equal)
5419 return isl_map_universe(space);
5421 map = isl_map_alloc_space(isl_space_copy(space), n, ISL_MAP_DISJOINT);
5423 for (i = 0; i + 1 < n; ++i)
5424 map = isl_map_add_basic_map(map,
5425 isl_basic_map_more_at(isl_space_copy(space), i));
5426 if (n > 0) {
5427 if (equal)
5428 map = isl_map_add_basic_map(map,
5429 isl_basic_map_more_or_equal_at(space, n - 1));
5430 else
5431 map = isl_map_add_basic_map(map,
5432 isl_basic_map_more_at(space, n - 1));
5433 } else
5434 isl_space_free(space);
5436 return map;
5439 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *space, int equal)
5441 if (!space)
5442 return NULL;
5443 return map_lex_gte_first(space, space->n_out, equal);
5446 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *space,
5447 unsigned n)
5449 return map_lex_gte_first(space, n, 0);
5452 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *space,
5453 unsigned n)
5455 return map_lex_gte_first(space, n, 1);
5458 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_space)
5460 return map_lex_gte(isl_space_map_from_set(set_space), 0);
5463 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_space)
5465 return map_lex_gte(isl_space_map_from_set(set_space), 1);
5468 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
5469 __isl_take isl_set *set2)
5471 isl_map *map;
5472 map = isl_map_lex_le(isl_set_get_space(set1));
5473 map = isl_map_intersect_domain(map, set1);
5474 map = isl_map_intersect_range(map, set2);
5475 return map;
5478 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
5479 __isl_take isl_set *set2)
5481 isl_map *map;
5482 map = isl_map_lex_lt(isl_set_get_space(set1));
5483 map = isl_map_intersect_domain(map, set1);
5484 map = isl_map_intersect_range(map, set2);
5485 return map;
5488 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
5489 __isl_take isl_set *set2)
5491 isl_map *map;
5492 map = isl_map_lex_ge(isl_set_get_space(set1));
5493 map = isl_map_intersect_domain(map, set1);
5494 map = isl_map_intersect_range(map, set2);
5495 return map;
5498 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
5499 __isl_take isl_set *set2)
5501 isl_map *map;
5502 map = isl_map_lex_gt(isl_set_get_space(set1));
5503 map = isl_map_intersect_domain(map, set1);
5504 map = isl_map_intersect_range(map, set2);
5505 return map;
5508 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
5509 __isl_take isl_map *map2)
5511 isl_map *map;
5512 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
5513 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5514 map = isl_map_apply_range(map, isl_map_reverse(map2));
5515 return map;
5518 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
5519 __isl_take isl_map *map2)
5521 isl_map *map;
5522 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
5523 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5524 map = isl_map_apply_range(map, isl_map_reverse(map2));
5525 return map;
5528 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
5529 __isl_take isl_map *map2)
5531 isl_map *map;
5532 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
5533 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5534 map = isl_map_apply_range(map, isl_map_reverse(map2));
5535 return map;
5538 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
5539 __isl_take isl_map *map2)
5541 isl_map *map;
5542 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
5543 map = isl_map_apply_domain(map, isl_map_reverse(map1));
5544 map = isl_map_apply_range(map, isl_map_reverse(map2));
5545 return map;
5548 /* For the div d = floor(f/m) at position "div", add the constraint
5550 * f - m d >= 0
5552 static __isl_give isl_basic_map *add_upper_div_constraint(
5553 __isl_take isl_basic_map *bmap, unsigned div)
5555 int i;
5556 isl_size v_div = isl_basic_map_var_offset(bmap, isl_dim_div);
5557 isl_size n_div;
5558 unsigned pos;
5560 n_div = isl_basic_map_dim(bmap, isl_dim_div);
5561 if (v_div < 0 || n_div < 0)
5562 return isl_basic_map_free(bmap);
5563 pos = v_div + div;
5564 i = isl_basic_map_alloc_inequality(bmap);
5565 if (i < 0)
5566 return isl_basic_map_free(bmap);
5567 isl_seq_cpy(bmap->ineq[i], bmap->div[div] + 1, 1 + v_div + n_div);
5568 isl_int_neg(bmap->ineq[i][1 + pos], bmap->div[div][0]);
5570 return bmap;
5573 /* For the div d = floor(f/m) at position "div", add the constraint
5575 * -(f-(m-1)) + m d >= 0
5577 static __isl_give isl_basic_map *add_lower_div_constraint(
5578 __isl_take isl_basic_map *bmap, unsigned div)
5580 int i;
5581 isl_size v_div = isl_basic_map_var_offset(bmap, isl_dim_div);
5582 isl_size n_div;
5583 unsigned pos;
5585 n_div = isl_basic_map_dim(bmap, isl_dim_div);
5586 if (v_div < 0 || n_div < 0)
5587 return isl_basic_map_free(bmap);
5588 pos = v_div + div;
5589 i = isl_basic_map_alloc_inequality(bmap);
5590 if (i < 0)
5591 return isl_basic_map_free(bmap);
5592 isl_seq_neg(bmap->ineq[i], bmap->div[div] + 1, 1 + v_div + n_div);
5593 isl_int_set(bmap->ineq[i][1 + pos], bmap->div[div][0]);
5594 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
5595 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
5597 return bmap;
5600 /* For the div d = floor(f/m) at position "pos", add the constraints
5602 * f - m d >= 0
5603 * -(f-(m-1)) + m d >= 0
5605 * Note that the second constraint is the negation of
5607 * f - m d >= m
5609 __isl_give isl_basic_map *isl_basic_map_add_div_constraints(
5610 __isl_take isl_basic_map *bmap, unsigned pos)
5612 bmap = add_upper_div_constraint(bmap, pos);
5613 bmap = add_lower_div_constraint(bmap, pos);
5614 return bmap;
5617 /* For each known div d = floor(f/m), add the constraints
5619 * f - m d >= 0
5620 * -(f-(m-1)) + m d >= 0
5622 * Remove duplicate constraints in case of some these div constraints
5623 * already appear in "bmap".
5625 __isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
5626 __isl_take isl_basic_map *bmap)
5628 isl_size n_div;
5630 n_div = isl_basic_map_dim(bmap, isl_dim_div);
5631 if (n_div < 0)
5632 return isl_basic_map_free(bmap);
5633 if (n_div == 0)
5634 return bmap;
5636 bmap = add_known_div_constraints(bmap);
5637 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
5638 bmap = isl_basic_map_finalize(bmap);
5639 return bmap;
5642 /* Add the div constraint of sign "sign" for div "div" of "bmap".
5644 * In particular, if this div is of the form d = floor(f/m),
5645 * then add the constraint
5647 * f - m d >= 0
5649 * if sign < 0 or the constraint
5651 * -(f-(m-1)) + m d >= 0
5653 * if sign > 0.
5655 __isl_give isl_basic_map *isl_basic_map_add_div_constraint(
5656 __isl_take isl_basic_map *bmap, unsigned div, int sign)
5658 if (sign < 0)
5659 return add_upper_div_constraint(bmap, div);
5660 else
5661 return add_lower_div_constraint(bmap, div);
5664 __isl_give isl_basic_set *isl_basic_map_underlying_set(
5665 __isl_take isl_basic_map *bmap)
5667 isl_space *space;
5669 if (!bmap)
5670 goto error;
5671 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
5672 bmap->n_div == 0 &&
5673 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
5674 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
5675 return bset_from_bmap(bmap);
5676 bmap = isl_basic_map_cow(bmap);
5677 if (!bmap)
5678 return NULL;
5679 space = isl_basic_map_take_space(bmap);
5680 space = isl_space_underlying(space, bmap->n_div);
5681 bmap = isl_basic_map_restore_space(bmap, space);
5682 if (!bmap)
5683 return NULL;
5684 bmap->extra -= bmap->n_div;
5685 bmap->n_div = 0;
5686 bmap = isl_basic_map_finalize(bmap);
5687 return bset_from_bmap(bmap);
5688 error:
5689 isl_basic_map_free(bmap);
5690 return NULL;
5693 __isl_give isl_basic_set *isl_basic_set_underlying_set(
5694 __isl_take isl_basic_set *bset)
5696 return isl_basic_map_underlying_set(bset_to_bmap(bset));
5699 /* Replace each element in "list" by the result of applying
5700 * isl_basic_map_underlying_set to the element.
5702 __isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
5703 __isl_take isl_basic_map_list *list)
5705 int i;
5706 isl_size n;
5708 n = isl_basic_map_list_n_basic_map(list);
5709 if (n < 0)
5710 goto error;
5712 for (i = 0; i < n; ++i) {
5713 isl_basic_map *bmap;
5714 isl_basic_set *bset;
5716 bmap = isl_basic_map_list_get_basic_map(list, i);
5717 bset = isl_basic_set_underlying_set(bmap);
5718 list = isl_basic_set_list_set_basic_set(list, i, bset);
5721 return list;
5722 error:
5723 isl_basic_map_list_free(list);
5724 return NULL;
5727 __isl_give isl_basic_map *isl_basic_map_overlying_set(
5728 __isl_take isl_basic_set *bset, __isl_take isl_basic_map *like)
5730 struct isl_basic_map *bmap;
5731 struct isl_ctx *ctx;
5732 isl_size dim, bmap_total;
5733 unsigned total;
5734 int i;
5736 if (!bset || !like)
5737 goto error;
5738 ctx = bset->ctx;
5739 if (isl_basic_set_check_no_params(bset) < 0 ||
5740 isl_basic_set_check_no_locals(bset) < 0)
5741 goto error;
5742 dim = isl_basic_set_dim(bset, isl_dim_set);
5743 bmap_total = isl_basic_map_dim(like, isl_dim_all);
5744 if (dim < 0 || bmap_total < 0)
5745 goto error;
5746 isl_assert(ctx, dim == bmap_total, goto error);
5747 if (like->n_div == 0) {
5748 isl_space *space = isl_basic_map_get_space(like);
5749 isl_basic_map_free(like);
5750 return isl_basic_map_reset_space(bset, space);
5752 bset = isl_basic_set_cow(bset);
5753 if (!bset)
5754 goto error;
5755 total = dim + bset->extra;
5756 bmap = bset_to_bmap(bset);
5757 isl_space_free(isl_basic_map_take_space(bmap));
5758 bmap = isl_basic_map_restore_space(bmap, isl_basic_map_get_space(like));
5759 if (!bmap)
5760 goto error;
5761 bmap->n_div = like->n_div;
5762 bmap->extra += like->n_div;
5763 if (bmap->extra) {
5764 unsigned ltotal;
5765 isl_int **div;
5766 ltotal = total - bmap->extra + like->extra;
5767 if (ltotal > total)
5768 ltotal = total;
5769 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
5770 bmap->extra * (1 + 1 + total));
5771 if (isl_blk_is_error(bmap->block2))
5772 goto error;
5773 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
5774 if (!div)
5775 goto error;
5776 bmap->div = div;
5777 for (i = 0; i < bmap->extra; ++i)
5778 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
5779 for (i = 0; i < like->n_div; ++i) {
5780 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
5781 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
5783 bmap = isl_basic_map_add_known_div_constraints(bmap);
5785 isl_basic_map_free(like);
5786 bmap = isl_basic_map_simplify(bmap);
5787 bmap = isl_basic_map_finalize(bmap);
5788 return bmap;
5789 error:
5790 isl_basic_map_free(like);
5791 isl_basic_set_free(bset);
5792 return NULL;
5795 __isl_give isl_basic_set *isl_basic_set_from_underlying_set(
5796 __isl_take isl_basic_set *bset, __isl_take isl_basic_set *like)
5798 return bset_from_bmap(isl_basic_map_overlying_set(bset,
5799 bset_to_bmap(like)));
5802 __isl_give isl_set *isl_map_underlying_set(__isl_take isl_map *map)
5804 int i;
5806 map = isl_map_cow(map);
5807 if (!map)
5808 return NULL;
5809 map->dim = isl_space_cow(map->dim);
5810 if (!map->dim)
5811 goto error;
5813 for (i = 1; i < map->n; ++i)
5814 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
5815 goto error);
5816 for (i = 0; i < map->n; ++i) {
5817 map->p[i] = bset_to_bmap(
5818 isl_basic_map_underlying_set(map->p[i]));
5819 if (!map->p[i])
5820 goto error;
5822 if (map->n == 0)
5823 map->dim = isl_space_underlying(map->dim, 0);
5824 else {
5825 isl_space_free(map->dim);
5826 map->dim = isl_space_copy(map->p[0]->dim);
5828 if (!map->dim)
5829 goto error;
5830 return set_from_map(map);
5831 error:
5832 isl_map_free(map);
5833 return NULL;
5836 /* Replace the space of "bmap" by "space".
5838 * If the space of "bmap" is identical to "space" (including the identifiers
5839 * of the input and output dimensions), then simply return the original input.
5841 __isl_give isl_basic_map *isl_basic_map_reset_space(
5842 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
5844 isl_bool equal;
5845 isl_space *bmap_space;
5847 bmap_space = isl_basic_map_peek_space(bmap);
5848 equal = isl_space_is_equal(bmap_space, space);
5849 if (equal >= 0 && equal)
5850 equal = isl_space_has_equal_ids(bmap_space, space);
5851 if (equal < 0)
5852 goto error;
5853 if (equal) {
5854 isl_space_free(space);
5855 return bmap;
5857 isl_space_free(isl_basic_map_take_space(bmap));
5858 bmap = isl_basic_map_restore_space(bmap, space);
5860 bmap = isl_basic_map_finalize(bmap);
5862 return bmap;
5863 error:
5864 isl_basic_map_free(bmap);
5865 isl_space_free(space);
5866 return NULL;
5869 __isl_give isl_basic_set *isl_basic_set_reset_space(
5870 __isl_take isl_basic_set *bset, __isl_take isl_space *space)
5872 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset),
5873 space));
5876 /* Check that the total dimensions of "map" and "space" are the same.
5878 static isl_stat check_map_space_equal_total_dim(__isl_keep isl_map *map,
5879 __isl_keep isl_space *space)
5881 isl_size dim1, dim2;
5883 dim1 = isl_map_dim(map, isl_dim_all);
5884 dim2 = isl_space_dim(space, isl_dim_all);
5885 if (dim1 < 0 || dim2 < 0)
5886 return isl_stat_error;
5887 if (dim1 == dim2)
5888 return isl_stat_ok;
5889 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5890 "total dimensions do not match", return isl_stat_error);
5893 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
5894 __isl_take isl_space *space)
5896 int i;
5898 map = isl_map_cow(map);
5899 if (!map || !space)
5900 goto error;
5902 for (i = 0; i < map->n; ++i) {
5903 map->p[i] = isl_basic_map_reset_space(map->p[i],
5904 isl_space_copy(space));
5905 if (!map->p[i])
5906 goto error;
5908 isl_space_free(isl_map_take_space(map));
5909 map = isl_map_restore_space(map, space);
5911 return map;
5912 error:
5913 isl_map_free(map);
5914 isl_space_free(space);
5915 return NULL;
5918 /* Replace the space of "map" by "space", without modifying
5919 * the dimension of "map".
5921 * If the space of "map" is identical to "space" (including the identifiers
5922 * of the input and output dimensions), then simply return the original input.
5924 __isl_give isl_map *isl_map_reset_equal_dim_space(__isl_take isl_map *map,
5925 __isl_take isl_space *space)
5927 isl_bool equal;
5928 isl_space *map_space;
5930 map_space = isl_map_peek_space(map);
5931 equal = isl_space_is_equal(map_space, space);
5932 if (equal >= 0 && equal)
5933 equal = isl_space_has_equal_ids(map_space, space);
5934 if (equal < 0)
5935 goto error;
5936 if (equal) {
5937 isl_space_free(space);
5938 return map;
5940 if (check_map_space_equal_total_dim(map, space) < 0)
5941 goto error;
5942 return isl_map_reset_space(map, space);
5943 error:
5944 isl_map_free(map);
5945 isl_space_free(space);
5946 return NULL;
5949 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
5950 __isl_take isl_space *space)
5952 return set_from_map(isl_map_reset_space(set_to_map(set), space));
5955 /* Compute the parameter domain of the given basic set.
5957 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
5959 isl_bool is_params;
5960 isl_space *space;
5961 isl_size n;
5963 is_params = isl_basic_set_is_params(bset);
5964 if (is_params < 0)
5965 return isl_basic_set_free(bset);
5966 if (is_params)
5967 return bset;
5969 n = isl_basic_set_dim(bset, isl_dim_set);
5970 if (n < 0)
5971 return isl_basic_set_free(bset);
5972 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
5973 space = isl_basic_set_get_space(bset);
5974 space = isl_space_params(space);
5975 bset = isl_basic_set_reset_space(bset, space);
5976 return bset;
5979 /* Construct a zero-dimensional basic set with the given parameter domain.
5981 __isl_give isl_basic_set *isl_basic_set_from_params(
5982 __isl_take isl_basic_set *bset)
5984 isl_space *space;
5985 space = isl_basic_set_get_space(bset);
5986 space = isl_space_set_from_params(space);
5987 bset = isl_basic_set_reset_space(bset, space);
5988 return bset;
5991 /* Compute the parameter domain of the given set.
5993 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
5995 return isl_map_params(set_to_map(set));
5998 /* Construct a zero-dimensional set with the given parameter domain.
6000 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
6002 isl_space *space;
6003 space = isl_set_get_space(set);
6004 space = isl_space_set_from_params(space);
6005 set = isl_set_reset_space(set, space);
6006 return set;
6009 /* Compute the parameter domain of the given map.
6011 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
6013 isl_space *space;
6014 isl_size n_in, n_out;
6016 n_in = isl_map_dim(map, isl_dim_in);
6017 n_out = isl_map_dim(map, isl_dim_out);
6018 if (n_in < 0 || n_out < 0)
6019 return isl_map_free(map);
6020 map = isl_map_project_out(map, isl_dim_in, 0, n_in);
6021 map = isl_map_project_out(map, isl_dim_out, 0, n_out);
6022 space = isl_map_get_space(map);
6023 space = isl_space_params(space);
6024 map = isl_map_reset_space(map, space);
6025 return map;
6028 __isl_give isl_basic_set *isl_basic_map_domain(__isl_take isl_basic_map *bmap)
6030 isl_space *space;
6031 isl_size n_out;
6033 n_out = isl_basic_map_dim(bmap, isl_dim_out);
6034 if (n_out < 0)
6035 return isl_basic_map_free(bmap);
6036 space = isl_space_domain(isl_basic_map_get_space(bmap));
6038 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
6040 return isl_basic_map_reset_space(bmap, space);
6043 isl_bool isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
6045 if (!bmap)
6046 return isl_bool_error;
6047 return isl_space_may_be_set(bmap->dim);
6050 /* Is this basic map actually a set?
6051 * Users should never call this function. Outside of isl,
6052 * the type should indicate whether something is a set or a map.
6054 isl_bool isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
6056 if (!bmap)
6057 return isl_bool_error;
6058 return isl_space_is_set(bmap->dim);
6061 __isl_give isl_basic_set *isl_basic_map_range(__isl_take isl_basic_map *bmap)
6063 isl_bool is_set;
6065 is_set = isl_basic_map_is_set(bmap);
6066 if (is_set < 0)
6067 goto error;
6068 if (is_set)
6069 return bmap;
6070 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
6071 error:
6072 isl_basic_map_free(bmap);
6073 return NULL;
6076 __isl_give isl_basic_map *isl_basic_map_domain_map(
6077 __isl_take isl_basic_map *bmap)
6079 int i;
6080 isl_space *space;
6081 isl_basic_map *domain;
6082 isl_size nparam, n_in, n_out;
6084 nparam = isl_basic_map_dim(bmap, isl_dim_param);
6085 n_in = isl_basic_map_dim(bmap, isl_dim_in);
6086 n_out = isl_basic_map_dim(bmap, isl_dim_out);
6087 if (nparam < 0 || n_in < 0 || n_out < 0)
6088 return isl_basic_map_free(bmap);
6090 space = isl_basic_map_get_space(bmap);
6091 space = isl_space_from_range(isl_space_domain(space));
6092 domain = isl_basic_map_universe(space);
6094 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
6095 bmap = isl_basic_map_apply_range(bmap, domain);
6096 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
6098 for (i = 0; i < n_in; ++i)
6099 bmap = isl_basic_map_equate(bmap, isl_dim_in, i,
6100 isl_dim_out, i);
6102 bmap = isl_basic_map_gauss(bmap, NULL);
6103 return isl_basic_map_finalize(bmap);
6106 __isl_give isl_basic_map *isl_basic_map_range_map(
6107 __isl_take isl_basic_map *bmap)
6109 int i;
6110 isl_space *space;
6111 isl_basic_map *range;
6112 isl_size nparam, n_in, n_out;
6114 nparam = isl_basic_map_dim(bmap, isl_dim_param);
6115 n_in = isl_basic_map_dim(bmap, isl_dim_in);
6116 n_out = isl_basic_map_dim(bmap, isl_dim_out);
6117 if (nparam < 0 || n_in < 0 || n_out < 0)
6118 return isl_basic_map_free(bmap);
6120 space = isl_basic_map_get_space(bmap);
6121 space = isl_space_from_range(isl_space_range(space));
6122 range = isl_basic_map_universe(space);
6124 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
6125 bmap = isl_basic_map_apply_range(bmap, range);
6126 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
6128 for (i = 0; i < n_out; ++i)
6129 bmap = isl_basic_map_equate(bmap, isl_dim_in, n_in + i,
6130 isl_dim_out, i);
6132 bmap = isl_basic_map_gauss(bmap, NULL);
6133 return isl_basic_map_finalize(bmap);
6136 int isl_map_may_be_set(__isl_keep isl_map *map)
6138 if (!map)
6139 return -1;
6140 return isl_space_may_be_set(map->dim);
6143 /* Is this map actually a set?
6144 * Users should never call this function. Outside of isl,
6145 * the type should indicate whether something is a set or a map.
6147 isl_bool isl_map_is_set(__isl_keep isl_map *map)
6149 if (!map)
6150 return isl_bool_error;
6151 return isl_space_is_set(map->dim);
6154 __isl_give isl_set *isl_map_range(__isl_take isl_map *map)
6156 isl_space *space;
6157 isl_size n_in;
6159 n_in = isl_map_dim(map, isl_dim_in);
6160 if (n_in < 0)
6161 return set_from_map(isl_map_free(map));
6162 space = isl_space_range(isl_map_get_space(map));
6164 map = isl_map_project_out(map, isl_dim_in, 0, n_in);
6166 return set_from_map(isl_map_reset_space(map, space));
6169 /* Transform "map" by applying "fn_space" to its space and "fn_bmap"
6170 * to each of its basic maps.
6172 static __isl_give isl_map *isl_map_transform(__isl_take isl_map *map,
6173 __isl_give isl_space *(*fn_space)(__isl_take isl_space *space),
6174 __isl_give isl_basic_map *(*fn_bmap)(__isl_take isl_basic_map *bmap))
6176 int i;
6177 isl_space *space;
6179 map = isl_map_cow(map);
6180 if (!map)
6181 return NULL;
6183 for (i = 0; i < map->n; ++i) {
6184 map->p[i] = fn_bmap(map->p[i]);
6185 if (!map->p[i])
6186 return isl_map_free(map);
6188 map = isl_map_unmark_normalized(map);
6190 space = isl_map_take_space(map);
6191 space = fn_space(space);
6192 map = isl_map_restore_space(map, space);
6194 return map;
6197 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
6199 return isl_map_transform(map, &isl_space_domain_map,
6200 &isl_basic_map_domain_map);
6203 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
6205 return isl_map_transform(map, &isl_space_range_map,
6206 &isl_basic_map_range_map);
6209 /* Given a wrapped map of the form A[B -> C],
6210 * return the map A[B -> C] -> B.
6212 __isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
6214 isl_id *id;
6215 isl_map *map;
6217 if (!set)
6218 return NULL;
6219 if (!isl_set_has_tuple_id(set))
6220 return isl_map_domain_map(isl_set_unwrap(set));
6222 id = isl_set_get_tuple_id(set);
6223 map = isl_map_domain_map(isl_set_unwrap(set));
6224 map = isl_map_set_tuple_id(map, isl_dim_in, id);
6226 return map;
6229 __isl_give isl_basic_map *isl_basic_map_from_domain(
6230 __isl_take isl_basic_set *bset)
6232 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
6235 __isl_give isl_basic_map *isl_basic_map_from_range(
6236 __isl_take isl_basic_set *bset)
6238 isl_space *space;
6239 space = isl_basic_set_get_space(bset);
6240 space = isl_space_from_range(space);
6241 bset = isl_basic_set_reset_space(bset, space);
6242 return bset_to_bmap(bset);
6245 /* Create a relation with the given set as range.
6246 * The domain of the created relation is a zero-dimensional
6247 * flat anonymous space.
6249 __isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
6251 isl_space *space;
6252 space = isl_set_get_space(set);
6253 space = isl_space_from_range(space);
6254 set = isl_set_reset_space(set, space);
6255 return set_to_map(set);
6258 /* Create a relation with the given set as domain.
6259 * The range of the created relation is a zero-dimensional
6260 * flat anonymous space.
6262 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
6264 return isl_map_reverse(isl_map_from_range(set));
6267 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
6268 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
6270 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
6273 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
6274 __isl_take isl_set *range)
6276 return isl_map_apply_range(isl_map_reverse(domain), range);
6279 /* Return a newly allocated isl_map with given space and flags and
6280 * room for "n" basic maps.
6281 * Make sure that all cached information is cleared.
6283 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *space, int n,
6284 unsigned flags)
6286 struct isl_map *map;
6288 if (!space)
6289 return NULL;
6290 if (n < 0)
6291 isl_die(space->ctx, isl_error_internal,
6292 "negative number of basic maps", goto error);
6293 map = isl_calloc(space->ctx, struct isl_map,
6294 sizeof(struct isl_map) +
6295 (n - 1) * sizeof(struct isl_basic_map *));
6296 if (!map)
6297 goto error;
6299 map->ctx = space->ctx;
6300 isl_ctx_ref(map->ctx);
6301 map->ref = 1;
6302 map->size = n;
6303 map->n = 0;
6304 map->dim = space;
6305 map->flags = flags;
6306 return map;
6307 error:
6308 isl_space_free(space);
6309 return NULL;
6312 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *space)
6314 struct isl_basic_map *bmap;
6315 bmap = isl_basic_map_alloc_space(space, 0, 1, 0);
6316 bmap = isl_basic_map_set_to_empty(bmap);
6317 return bmap;
6320 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *space)
6322 struct isl_basic_set *bset;
6323 bset = isl_basic_set_alloc_space(space, 0, 1, 0);
6324 bset = isl_basic_set_set_to_empty(bset);
6325 return bset;
6328 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *space)
6330 struct isl_basic_map *bmap;
6331 bmap = isl_basic_map_alloc_space(space, 0, 0, 0);
6332 bmap = isl_basic_map_finalize(bmap);
6333 return bmap;
6336 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *space)
6338 struct isl_basic_set *bset;
6339 bset = isl_basic_set_alloc_space(space, 0, 0, 0);
6340 bset = isl_basic_set_finalize(bset);
6341 return bset;
6344 __isl_give isl_basic_map *isl_basic_map_nat_universe(
6345 __isl_take isl_space *space)
6347 int i;
6348 isl_size total = isl_space_dim(space, isl_dim_all);
6349 isl_basic_map *bmap;
6351 if (total < 0)
6352 space = isl_space_free(space);
6353 bmap = isl_basic_map_alloc_space(space, 0, 0, total);
6354 for (i = 0; i < total; ++i) {
6355 int k = isl_basic_map_alloc_inequality(bmap);
6356 if (k < 0)
6357 goto error;
6358 isl_seq_clr(bmap->ineq[k], 1 + total);
6359 isl_int_set_si(bmap->ineq[k][1 + i], 1);
6361 return bmap;
6362 error:
6363 isl_basic_map_free(bmap);
6364 return NULL;
6367 __isl_give isl_basic_set *isl_basic_set_nat_universe(
6368 __isl_take isl_space *space)
6370 return isl_basic_map_nat_universe(space);
6373 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *space)
6375 return isl_map_from_basic_map(isl_basic_map_nat_universe(space));
6378 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *space)
6380 return isl_map_nat_universe(space);
6383 __isl_give isl_map *isl_map_empty(__isl_take isl_space *space)
6385 return isl_map_alloc_space(space, 0, ISL_MAP_DISJOINT);
6388 __isl_give isl_set *isl_set_empty(__isl_take isl_space *space)
6390 return isl_set_alloc_space(space, 0, ISL_MAP_DISJOINT);
6393 __isl_give isl_map *isl_map_universe(__isl_take isl_space *space)
6395 struct isl_map *map;
6396 if (!space)
6397 return NULL;
6398 map = isl_map_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6399 map = isl_map_add_basic_map(map, isl_basic_map_universe(space));
6400 return map;
6403 /* This function performs the same operation as isl_map_universe,
6404 * but is considered as a function on an isl_space when exported.
6406 __isl_give isl_map *isl_space_universe_map(__isl_take isl_space *space)
6408 return isl_map_universe(space);
6411 __isl_give isl_set *isl_set_universe(__isl_take isl_space *space)
6413 struct isl_set *set;
6414 if (!space)
6415 return NULL;
6416 set = isl_set_alloc_space(isl_space_copy(space), 1, ISL_MAP_DISJOINT);
6417 set = isl_set_add_basic_set(set, isl_basic_set_universe(space));
6418 return set;
6421 /* This function performs the same operation as isl_set_universe,
6422 * but is considered as a function on an isl_space when exported.
6424 __isl_give isl_set *isl_space_universe_set(__isl_take isl_space *space)
6426 return isl_set_universe(space);
6429 __isl_give isl_map *isl_map_dup(__isl_keep isl_map *map)
6431 int i;
6432 struct isl_map *dup;
6434 if (!map)
6435 return NULL;
6436 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
6437 for (i = 0; i < map->n; ++i)
6438 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
6439 return dup;
6442 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
6443 __isl_take isl_basic_map *bmap)
6445 if (!bmap || !map)
6446 goto error;
6447 if (isl_basic_map_plain_is_empty(bmap)) {
6448 isl_basic_map_free(bmap);
6449 return map;
6451 if (isl_map_basic_map_check_equal_space(map, bmap) < 0)
6452 goto error;
6453 isl_assert(map->ctx, map->n < map->size, goto error);
6454 map->p[map->n] = bmap;
6455 map->n++;
6456 map = isl_map_unmark_normalized(map);
6457 return map;
6458 error:
6459 if (map)
6460 isl_map_free(map);
6461 if (bmap)
6462 isl_basic_map_free(bmap);
6463 return NULL;
6466 __isl_null isl_map *isl_map_free(__isl_take isl_map *map)
6468 int i;
6470 if (!map)
6471 return NULL;
6473 if (--map->ref > 0)
6474 return NULL;
6476 clear_caches(map);
6477 isl_ctx_deref(map->ctx);
6478 for (i = 0; i < map->n; ++i)
6479 isl_basic_map_free(map->p[i]);
6480 isl_space_free(map->dim);
6481 free(map);
6483 return NULL;
6486 static __isl_give isl_basic_map *isl_basic_map_fix_pos_si(
6487 __isl_take isl_basic_map *bmap, unsigned pos, int value)
6489 int j;
6490 isl_size total;
6492 total = isl_basic_map_dim(bmap, isl_dim_all);
6493 if (total < 0)
6494 return isl_basic_map_free(bmap);
6496 bmap = isl_basic_map_cow(bmap);
6497 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6498 j = isl_basic_map_alloc_equality(bmap);
6499 if (j < 0)
6500 goto error;
6501 isl_seq_clr(bmap->eq[j] + 1, total);
6502 isl_int_set_si(bmap->eq[j][pos], -1);
6503 isl_int_set_si(bmap->eq[j][0], value);
6504 bmap = isl_basic_map_simplify(bmap);
6505 return isl_basic_map_finalize(bmap);
6506 error:
6507 isl_basic_map_free(bmap);
6508 return NULL;
6511 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
6512 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
6514 int j;
6515 isl_size total;
6517 total = isl_basic_map_dim(bmap, isl_dim_all);
6518 if (total < 0)
6519 return isl_basic_map_free(bmap);
6521 bmap = isl_basic_map_cow(bmap);
6522 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
6523 j = isl_basic_map_alloc_equality(bmap);
6524 if (j < 0)
6525 goto error;
6526 isl_seq_clr(bmap->eq[j] + 1, total);
6527 isl_int_set_si(bmap->eq[j][pos], -1);
6528 isl_int_set(bmap->eq[j][0], value);
6529 bmap = isl_basic_map_simplify(bmap);
6530 return isl_basic_map_finalize(bmap);
6531 error:
6532 isl_basic_map_free(bmap);
6533 return NULL;
6536 __isl_give isl_basic_map *isl_basic_map_fix_si(__isl_take isl_basic_map *bmap,
6537 enum isl_dim_type type, unsigned pos, int value)
6539 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6540 return isl_basic_map_free(bmap);
6541 return isl_basic_map_fix_pos_si(bmap,
6542 isl_basic_map_offset(bmap, type) + pos, value);
6545 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
6546 enum isl_dim_type type, unsigned pos, isl_int value)
6548 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6549 return isl_basic_map_free(bmap);
6550 return isl_basic_map_fix_pos(bmap,
6551 isl_basic_map_offset(bmap, type) + pos, value);
6554 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
6555 * to be equal to "v".
6557 __isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
6558 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6560 if (!bmap || !v)
6561 goto error;
6562 if (!isl_val_is_int(v))
6563 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
6564 "expecting integer value", goto error);
6565 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6566 goto error;
6567 pos += isl_basic_map_offset(bmap, type);
6568 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
6569 isl_val_free(v);
6570 return bmap;
6571 error:
6572 isl_basic_map_free(bmap);
6573 isl_val_free(v);
6574 return NULL;
6577 /* Fix the value of the variable at position "pos" of type "type" of "bset"
6578 * to be equal to "v".
6580 __isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
6581 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6583 return isl_basic_map_fix_val(bset, type, pos, v);
6586 __isl_give isl_basic_set *isl_basic_set_fix_si(__isl_take isl_basic_set *bset,
6587 enum isl_dim_type type, unsigned pos, int value)
6589 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
6590 type, pos, value));
6593 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
6594 enum isl_dim_type type, unsigned pos, isl_int value)
6596 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset),
6597 type, pos, value));
6600 /* Remove the basic map at position "i" from "map" if this basic map
6601 * is (obviously) empty.
6603 static __isl_give isl_map *remove_if_empty(__isl_take isl_map *map, int i)
6605 isl_bool empty;
6607 if (!map)
6608 return NULL;
6610 empty = isl_basic_map_plain_is_empty(map->p[i]);
6611 if (empty < 0)
6612 return isl_map_free(map);
6613 if (!empty)
6614 return map;
6616 isl_basic_map_free(map->p[i]);
6617 map->n--;
6618 if (i != map->n) {
6619 map->p[i] = map->p[map->n];
6620 map = isl_map_unmark_normalized(map);
6624 return map;
6627 /* Perform "fn" on each basic map of "map", where we may not be holding
6628 * the only reference to "map".
6629 * In particular, "fn" should be a semantics preserving operation
6630 * that we want to apply to all copies of "map". We therefore need
6631 * to be careful not to modify "map" in a way that breaks "map"
6632 * in case anything goes wrong.
6634 __isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
6635 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
6637 struct isl_basic_map *bmap;
6638 int i;
6640 if (!map)
6641 return NULL;
6643 for (i = map->n - 1; i >= 0; --i) {
6644 bmap = isl_basic_map_copy(map->p[i]);
6645 bmap = fn(bmap);
6646 if (!bmap)
6647 goto error;
6648 isl_basic_map_free(map->p[i]);
6649 map->p[i] = bmap;
6650 map = remove_if_empty(map, i);
6651 if (!map)
6652 return NULL;
6655 return map;
6656 error:
6657 isl_map_free(map);
6658 return NULL;
6661 __isl_give isl_map *isl_map_fix_si(__isl_take isl_map *map,
6662 enum isl_dim_type type, unsigned pos, int value)
6664 int i;
6666 map = isl_map_cow(map);
6667 if (isl_map_check_range(map, type, pos, 1) < 0)
6668 return isl_map_free(map);
6669 for (i = map->n - 1; i >= 0; --i) {
6670 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
6671 map = remove_if_empty(map, i);
6672 if (!map)
6673 return NULL;
6675 map = isl_map_unmark_normalized(map);
6676 return map;
6679 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
6680 enum isl_dim_type type, unsigned pos, int value)
6682 return set_from_map(isl_map_fix_si(set_to_map(set), type, pos, value));
6685 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
6686 enum isl_dim_type type, unsigned pos, isl_int value)
6688 int i;
6690 map = isl_map_cow(map);
6691 if (isl_map_check_range(map, type, pos, 1) < 0)
6692 return isl_map_free(map);
6693 for (i = 0; i < map->n; ++i) {
6694 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
6695 if (!map->p[i])
6696 goto error;
6698 map = isl_map_unmark_normalized(map);
6699 return map;
6700 error:
6701 isl_map_free(map);
6702 return NULL;
6705 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
6706 enum isl_dim_type type, unsigned pos, isl_int value)
6708 return set_from_map(isl_map_fix(set_to_map(set), type, pos, value));
6711 /* Fix the value of the variable at position "pos" of type "type" of "map"
6712 * to be equal to "v".
6714 __isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
6715 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6717 int i;
6719 map = isl_map_cow(map);
6720 if (!map || !v)
6721 goto error;
6723 if (!isl_val_is_int(v))
6724 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6725 "expecting integer value", goto error);
6726 if (isl_map_check_range(map, type, pos, 1) < 0)
6727 goto error;
6728 for (i = map->n - 1; i >= 0; --i) {
6729 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
6730 isl_val_copy(v));
6731 map = remove_if_empty(map, i);
6732 if (!map)
6733 goto error;
6735 map = isl_map_unmark_normalized(map);
6736 isl_val_free(v);
6737 return map;
6738 error:
6739 isl_map_free(map);
6740 isl_val_free(v);
6741 return NULL;
6744 /* Fix the value of the variable at position "pos" of type "type" of "set"
6745 * to be equal to "v".
6747 __isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
6748 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
6750 return isl_map_fix_val(set, type, pos, v);
6753 __isl_give isl_map *isl_map_fix_input_si(__isl_take isl_map *map,
6754 unsigned input, int value)
6756 return isl_map_fix_si(map, isl_dim_in, input, value);
6759 __isl_give isl_set *isl_set_fix_dim_si(__isl_take isl_set *set, unsigned dim,
6760 int value)
6762 return set_from_map(isl_map_fix_si(set_to_map(set),
6763 isl_dim_set, dim, value));
6766 static __isl_give isl_basic_map *basic_map_bound_si(
6767 __isl_take isl_basic_map *bmap,
6768 enum isl_dim_type type, unsigned pos, int value, int upper)
6770 int j;
6771 isl_size total;
6773 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6774 return isl_basic_map_free(bmap);
6775 total = isl_basic_map_dim(bmap, isl_dim_all);
6776 if (total < 0)
6777 return isl_basic_map_free(bmap);
6778 pos += isl_basic_map_offset(bmap, type);
6779 bmap = isl_basic_map_cow(bmap);
6780 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6781 j = isl_basic_map_alloc_inequality(bmap);
6782 if (j < 0)
6783 goto error;
6784 isl_seq_clr(bmap->ineq[j], 1 + total);
6785 if (upper) {
6786 isl_int_set_si(bmap->ineq[j][pos], -1);
6787 isl_int_set_si(bmap->ineq[j][0], value);
6788 } else {
6789 isl_int_set_si(bmap->ineq[j][pos], 1);
6790 isl_int_set_si(bmap->ineq[j][0], -value);
6792 bmap = isl_basic_map_simplify(bmap);
6793 return isl_basic_map_finalize(bmap);
6794 error:
6795 isl_basic_map_free(bmap);
6796 return NULL;
6799 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
6800 __isl_take isl_basic_map *bmap,
6801 enum isl_dim_type type, unsigned pos, int value)
6803 return basic_map_bound_si(bmap, type, pos, value, 0);
6806 /* Constrain the values of the given dimension to be no greater than "value".
6808 __isl_give isl_basic_map *isl_basic_map_upper_bound_si(
6809 __isl_take isl_basic_map *bmap,
6810 enum isl_dim_type type, unsigned pos, int value)
6812 return basic_map_bound_si(bmap, type, pos, value, 1);
6815 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
6816 enum isl_dim_type type, unsigned pos, int value, int upper)
6818 int i;
6820 map = isl_map_cow(map);
6821 if (isl_map_check_range(map, type, pos, 1) < 0)
6822 return isl_map_free(map);
6823 for (i = 0; i < map->n; ++i) {
6824 map->p[i] = basic_map_bound_si(map->p[i],
6825 type, pos, value, upper);
6826 if (!map->p[i])
6827 goto error;
6829 map = isl_map_unmark_normalized(map);
6830 return map;
6831 error:
6832 isl_map_free(map);
6833 return NULL;
6836 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
6837 enum isl_dim_type type, unsigned pos, int value)
6839 return map_bound_si(map, type, pos, value, 0);
6842 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
6843 enum isl_dim_type type, unsigned pos, int value)
6845 return map_bound_si(map, type, pos, value, 1);
6848 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
6849 enum isl_dim_type type, unsigned pos, int value)
6851 return set_from_map(isl_map_lower_bound_si(set_to_map(set),
6852 type, pos, value));
6855 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
6856 enum isl_dim_type type, unsigned pos, int value)
6858 return isl_map_upper_bound_si(set, type, pos, value);
6861 /* Bound the given variable of "bmap" from below (or above is "upper"
6862 * is set) to "value".
6864 static __isl_give isl_basic_map *basic_map_bound(
6865 __isl_take isl_basic_map *bmap,
6866 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6868 int j;
6869 isl_size total;
6871 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6872 return isl_basic_map_free(bmap);
6873 total = isl_basic_map_dim(bmap, isl_dim_all);
6874 if (total < 0)
6875 return isl_basic_map_free(bmap);
6876 pos += isl_basic_map_offset(bmap, type);
6877 bmap = isl_basic_map_cow(bmap);
6878 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6879 j = isl_basic_map_alloc_inequality(bmap);
6880 if (j < 0)
6881 goto error;
6882 isl_seq_clr(bmap->ineq[j], 1 + total);
6883 if (upper) {
6884 isl_int_set_si(bmap->ineq[j][pos], -1);
6885 isl_int_set(bmap->ineq[j][0], value);
6886 } else {
6887 isl_int_set_si(bmap->ineq[j][pos], 1);
6888 isl_int_neg(bmap->ineq[j][0], value);
6890 bmap = isl_basic_map_simplify(bmap);
6891 return isl_basic_map_finalize(bmap);
6892 error:
6893 isl_basic_map_free(bmap);
6894 return NULL;
6897 /* Bound the given variable of "map" from below (or above is "upper"
6898 * is set) to "value".
6900 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
6901 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6903 int i;
6905 map = isl_map_cow(map);
6906 if (isl_map_check_range(map, type, pos, 1) < 0)
6907 return isl_map_free(map);
6908 for (i = map->n - 1; i >= 0; --i) {
6909 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
6910 map = remove_if_empty(map, i);
6911 if (!map)
6912 return NULL;
6914 map = isl_map_unmark_normalized(map);
6915 return map;
6918 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
6919 enum isl_dim_type type, unsigned pos, isl_int value)
6921 return map_bound(map, type, pos, value, 0);
6924 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
6925 enum isl_dim_type type, unsigned pos, isl_int value)
6927 return map_bound(map, type, pos, value, 1);
6930 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
6931 enum isl_dim_type type, unsigned pos, isl_int value)
6933 return isl_map_lower_bound(set, type, pos, value);
6936 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
6937 enum isl_dim_type type, unsigned pos, isl_int value)
6939 return isl_map_upper_bound(set, type, pos, value);
6942 /* Force the values of the variable at position "pos" of type "type" of "map"
6943 * to be no smaller than "value".
6945 __isl_give isl_map *isl_map_lower_bound_val(__isl_take isl_map *map,
6946 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6948 if (!value)
6949 goto error;
6950 if (!isl_val_is_int(value))
6951 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6952 "expecting integer value", goto error);
6953 map = isl_map_lower_bound(map, type, pos, value->n);
6954 isl_val_free(value);
6955 return map;
6956 error:
6957 isl_val_free(value);
6958 isl_map_free(map);
6959 return NULL;
6962 /* Force the values of the variable at position "pos" of type "type" of "set"
6963 * to be no smaller than "value".
6965 __isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
6966 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6968 isl_map *map;
6970 map = set_to_map(set);
6971 return set_from_map(isl_map_lower_bound_val(map, type, pos, value));
6974 /* Force the values of the variable at position "pos" of type "type" of "map"
6975 * to be no greater than "value".
6977 __isl_give isl_map *isl_map_upper_bound_val(__isl_take isl_map *map,
6978 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6980 if (!value)
6981 goto error;
6982 if (!isl_val_is_int(value))
6983 isl_die(isl_map_get_ctx(map), isl_error_invalid,
6984 "expecting integer value", goto error);
6985 map = isl_map_upper_bound(map, type, pos, value->n);
6986 isl_val_free(value);
6987 return map;
6988 error:
6989 isl_val_free(value);
6990 isl_map_free(map);
6991 return NULL;
6994 /* Force the values of the variable at position "pos" of type "type" of "set"
6995 * to be no greater than "value".
6997 __isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
6998 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
7000 isl_map *map;
7002 map = set_to_map(set);
7003 return set_from_map(isl_map_upper_bound_val(map, type, pos, value));
7006 /* If "mv" has an explicit domain, then intersect the domain of "map"
7007 * with this explicit domain.
7009 * An isl_multi_val object never has an explicit domain,
7010 * so simply return "map".
7012 static __isl_give isl_map *isl_map_intersect_multi_val_explicit_domain(
7013 __isl_take isl_map *map, __isl_keep isl_multi_val *mv)
7015 return map;
7018 #undef BASE
7019 #define BASE val
7020 #include "isl_map_bound_templ.c"
7022 /* Apply "map_bound" to "set" with the corresponding value in "bound"
7023 * for each set dimension, by treating the set as a map.
7025 static __isl_give isl_set *set_bound_multi_val(__isl_take isl_set *set,
7026 __isl_take isl_multi_val *bound,
7027 __isl_give isl_map *map_bound(__isl_take isl_map *map,
7028 unsigned pos, __isl_take isl_val *value))
7030 isl_map *map;
7032 map = set_to_map(set);
7033 return set_from_map(map_bound_multi_val(map, bound, map_bound));
7036 #undef BASE
7037 #define BASE pw_aff
7038 #include "isl_map_bound_templ.c"
7040 /* Apply "map_bound" to "set" with the corresponding value in "bound"
7041 * for each set dimension, by converting the set and the bound
7042 * to objects living in a map space.
7044 static __isl_give isl_set *set_bound_multi_pw_aff(__isl_take isl_set *set,
7045 __isl_take isl_multi_pw_aff *bound,
7046 __isl_give isl_map *set_bound(__isl_take isl_map *map,
7047 unsigned pos, __isl_take TYPE *value))
7049 isl_map *map;
7051 map = isl_map_from_range(set);
7052 bound = isl_multi_pw_aff_from_range(bound);
7053 map = map_bound_multi_pw_aff(map, bound, set_bound);
7054 return isl_map_range(map);
7057 /* Wrapper around isl_map_lower_bound_val for use in map_bound_multi_val,
7058 * setting a bound on the given output dimension.
7060 static __isl_give isl_map *map_lower_bound_val(__isl_take isl_map *map,
7061 unsigned pos, __isl_take isl_val *v)
7063 return isl_map_lower_bound_val(map, isl_dim_out, pos, v);
7066 /* Force the values of the set dimensions of "set"
7067 * to be no smaller than the corresponding values in "lower".
7069 __isl_give isl_set *isl_set_lower_bound_multi_val(__isl_take isl_set *set,
7070 __isl_take isl_multi_val *lower)
7072 return set_bound_multi_val(set, lower, &map_lower_bound_val);
7075 /* Wrapper around isl_map_upper_bound_val for use in map_bound_multi_val,
7076 * setting a bound on the given output dimension.
7078 static __isl_give isl_map *map_upper_bound_val(__isl_take isl_map *map,
7079 unsigned pos, __isl_take isl_val *v)
7081 return isl_map_upper_bound_val(map, isl_dim_out, pos, v);
7084 /* Force the values of the set dimensions of "set"
7085 * to be no greater than the corresponding values in "upper".
7087 __isl_give isl_set *isl_set_upper_bound_multi_val(__isl_take isl_set *set,
7088 __isl_take isl_multi_val *upper)
7090 return set_bound_multi_val(set, upper, &map_upper_bound_val);
7093 /* Force the symbolic constant expression "bound"
7094 * to satisfy the relation "order" with respect to
7095 * the output variable at position "pos" of "map".
7097 * Create an affine expression representing the output variable
7098 * in terms of the range and
7099 * compare it using "order" to "bound" (defined on the domain).
7100 * The result is a relation between elements in domain and range that
7101 * can be intersected with "map".
7103 static __isl_give isl_map *map_bound_pw_aff(__isl_take isl_map *map,
7104 unsigned pos, __isl_take isl_pw_aff *bound,
7105 __isl_give isl_map *(*order)(__isl_take isl_pw_aff *pa1,
7106 __isl_take isl_pw_aff *pa2))
7108 isl_space *space;
7109 isl_local_space *ls;
7110 isl_pw_aff *var;
7112 space = isl_space_range(isl_map_get_space(map));
7113 ls = isl_local_space_from_space(space);
7114 var = isl_pw_aff_var_on_domain(ls, isl_dim_set, pos);
7115 map = isl_map_intersect(map, order(bound, var));
7116 return map;
7119 /* Force the values of the output variable at position "pos" of "map"
7120 * to be no smaller than the symbolic constant expression "lower".
7122 static __isl_give isl_map *map_lower_bound_pw_aff(__isl_take isl_map *map,
7123 unsigned pos, __isl_take isl_pw_aff *lower)
7125 return map_bound_pw_aff(map, pos, lower, &isl_pw_aff_le_map);
7128 /* Force the values of the output variable at position "pos" of "map"
7129 * to be no greater than the symbolic constant expression "upper".
7131 static __isl_give isl_map *map_upper_bound_pw_aff(__isl_take isl_map *map,
7132 unsigned pos, __isl_take isl_pw_aff *upper)
7134 return map_bound_pw_aff(map, pos, upper, &isl_pw_aff_ge_map);
7137 /* Force the values of the set dimensions of "set"
7138 * to be no smaller than the corresponding constant symbolic expressions
7139 * in "lower".
7141 __isl_give isl_set *isl_set_lower_bound_multi_pw_aff(__isl_take isl_set *set,
7142 __isl_take isl_multi_pw_aff *lower)
7144 return set_bound_multi_pw_aff(set, lower, &map_lower_bound_pw_aff);
7147 /* Force the values of the set dimensions of "set"
7148 * to be no greater than the corresponding constant symbolic expressions
7149 * in "upper".
7151 __isl_give isl_set *isl_set_upper_bound_multi_pw_aff(__isl_take isl_set *set,
7152 __isl_take isl_multi_pw_aff *upper)
7154 return set_bound_multi_pw_aff(set, upper, &map_upper_bound_pw_aff);
7157 /* Force the values of the output dimensions of "map"
7158 * to be no smaller than the corresponding constant symbolic expressions
7159 * in "lower".
7161 __isl_give isl_map *isl_map_lower_bound_multi_pw_aff(__isl_take isl_map *map,
7162 __isl_take isl_multi_pw_aff *lower)
7164 return map_bound_multi_pw_aff(map, lower, &map_lower_bound_pw_aff);
7167 /* Force the values of the output dimensions of "map"
7168 * to be no greater than the corresponding constant symbolic expressions
7169 * in "upper".
7171 __isl_give isl_map *isl_map_upper_bound_multi_pw_aff(__isl_take isl_map *map,
7172 __isl_take isl_multi_pw_aff *upper)
7174 return map_bound_multi_pw_aff(map, upper, &map_upper_bound_pw_aff);
7177 /* Bound the given variable of "bset" from below (or above is "upper"
7178 * is set) to "value".
7180 static __isl_give isl_basic_set *isl_basic_set_bound(
7181 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
7182 isl_int value, int upper)
7184 return bset_from_bmap(basic_map_bound(bset_to_bmap(bset),
7185 type, pos, value, upper));
7188 /* Bound the given variable of "bset" from below (or above is "upper"
7189 * is set) to "value".
7191 static __isl_give isl_basic_set *isl_basic_set_bound_val(
7192 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
7193 __isl_take isl_val *value, int upper)
7195 if (!value)
7196 goto error;
7197 if (!isl_val_is_int(value))
7198 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
7199 "expecting integer value", goto error);
7200 bset = isl_basic_set_bound(bset, type, pos, value->n, upper);
7201 isl_val_free(value);
7202 return bset;
7203 error:
7204 isl_val_free(value);
7205 isl_basic_set_free(bset);
7206 return NULL;
7209 /* Bound the given variable of "bset" from below to "value".
7211 __isl_give isl_basic_set *isl_basic_set_lower_bound_val(
7212 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
7213 __isl_take isl_val *value)
7215 return isl_basic_set_bound_val(bset, type, pos, value, 0);
7218 /* Bound the given variable of "bset" from above to "value".
7220 __isl_give isl_basic_set *isl_basic_set_upper_bound_val(
7221 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned pos,
7222 __isl_take isl_val *value)
7224 return isl_basic_set_bound_val(bset, type, pos, value, 1);
7227 __isl_give isl_map *isl_map_reverse(__isl_take isl_map *map)
7229 return isl_map_transform(map, &isl_space_reverse,
7230 &isl_basic_map_reverse);
7233 /* Given a map (A -> B) -> C, return the corresponding map (B -> A) -> C.
7235 __isl_give isl_map *isl_map_domain_reverse(__isl_take isl_map *map)
7237 return isl_map_transform(map, &isl_space_domain_reverse,
7238 &isl_basic_map_domain_reverse);
7241 /* Given a map A -> (B -> C), return the corresponding map A -> (C -> B).
7243 __isl_give isl_map *isl_map_range_reverse(__isl_take isl_map *map)
7245 return isl_map_transform(map, &isl_space_range_reverse,
7246 &isl_basic_map_range_reverse);
7249 /* Given a set (A -> B), return the corresponding set (B -> A).
7251 __isl_give isl_set *isl_set_wrapped_reverse(__isl_take isl_set *set)
7253 isl_map *map = set_to_map(set);
7255 map = isl_map_transform(map, &isl_space_wrapped_reverse,
7256 &isl_basic_map_set_reverse);
7257 return set_from_map(map);
7260 #undef TYPE
7261 #define TYPE isl_pw_multi_aff
7262 #undef SUFFIX
7263 #define SUFFIX _pw_multi_aff
7264 #undef EMPTY
7265 #define EMPTY isl_pw_multi_aff_empty
7266 #undef ADD
7267 #define ADD isl_pw_multi_aff_union_add
7268 #include "isl_map_lexopt_templ.c"
7270 /* Given a map "map", compute the lexicographically minimal
7271 * (or maximal) image element for each domain element in dom,
7272 * in the form of an isl_pw_multi_aff.
7273 * If "empty" is not NULL, then set *empty to those elements in dom that
7274 * do not have an image element.
7275 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
7276 * should be computed over the domain of "map". "empty" is also NULL
7277 * in this case.
7279 * We first compute the lexicographically minimal or maximal element
7280 * in the first basic map. This results in a partial solution "res"
7281 * and a subset "todo" of dom that still need to be handled.
7282 * We then consider each of the remaining maps in "map" and successively
7283 * update both "res" and "todo".
7284 * If "empty" is NULL, then the todo sets are not needed and therefore
7285 * also not computed.
7287 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
7288 __isl_take isl_map *map, __isl_take isl_set *dom,
7289 __isl_give isl_set **empty, unsigned flags)
7291 int i;
7292 int full;
7293 isl_pw_multi_aff *res;
7294 isl_set *todo;
7296 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
7297 if (!map || (!full && !dom))
7298 goto error;
7300 if (isl_map_plain_is_empty(map)) {
7301 if (empty)
7302 *empty = dom;
7303 else
7304 isl_set_free(dom);
7305 return isl_pw_multi_aff_from_map(map);
7308 res = basic_map_partial_lexopt_pw_multi_aff(
7309 isl_basic_map_copy(map->p[0]),
7310 isl_set_copy(dom), empty, flags);
7312 if (empty)
7313 todo = *empty;
7314 for (i = 1; i < map->n; ++i) {
7315 isl_pw_multi_aff *res_i;
7317 res_i = basic_map_partial_lexopt_pw_multi_aff(
7318 isl_basic_map_copy(map->p[i]),
7319 isl_set_copy(dom), empty, flags);
7321 if (ISL_FL_ISSET(flags, ISL_OPT_MAX))
7322 res = isl_pw_multi_aff_union_lexmax(res, res_i);
7323 else
7324 res = isl_pw_multi_aff_union_lexmin(res, res_i);
7326 if (empty)
7327 todo = isl_set_intersect(todo, *empty);
7330 isl_set_free(dom);
7331 isl_map_free(map);
7333 if (empty)
7334 *empty = todo;
7336 return res;
7337 error:
7338 if (empty)
7339 *empty = NULL;
7340 isl_set_free(dom);
7341 isl_map_free(map);
7342 return NULL;
7345 #undef TYPE
7346 #define TYPE isl_map
7347 #undef SUFFIX
7348 #define SUFFIX
7349 #undef EMPTY
7350 #define EMPTY isl_map_empty
7351 #undef ADD
7352 #define ADD isl_map_union_disjoint
7353 #include "isl_map_lexopt_templ.c"
7355 /* Given a map "map", compute the lexicographically minimal
7356 * (or maximal) image element for each domain element in "dom",
7357 * in the form of an isl_map.
7358 * If "empty" is not NULL, then set *empty to those elements in "dom" that
7359 * do not have an image element.
7360 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
7361 * should be computed over the domain of "map". "empty" is also NULL
7362 * in this case.
7364 * If the input consists of more than one disjunct, then first
7365 * compute the desired result in the form of an isl_pw_multi_aff and
7366 * then convert that into an isl_map.
7368 * This function used to have an explicit implementation in terms
7369 * of isl_maps, but it would continually intersect the domains of
7370 * partial results with the complement of the domain of the next
7371 * partial solution, potentially leading to an explosion in the number
7372 * of disjuncts if there are several disjuncts in the input.
7373 * An even earlier implementation of this function would look for
7374 * better results in the domain of the partial result and for extra
7375 * results in the complement of this domain, which would lead to
7376 * even more splintering.
7378 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
7379 __isl_take isl_map *map, __isl_take isl_set *dom,
7380 __isl_give isl_set **empty, unsigned flags)
7382 int full;
7383 struct isl_map *res;
7384 isl_pw_multi_aff *pma;
7386 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
7387 if (!map || (!full && !dom))
7388 goto error;
7390 if (isl_map_plain_is_empty(map)) {
7391 if (empty)
7392 *empty = dom;
7393 else
7394 isl_set_free(dom);
7395 return map;
7398 if (map->n == 1) {
7399 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
7400 dom, empty, flags);
7401 isl_map_free(map);
7402 return res;
7405 pma = isl_map_partial_lexopt_aligned_pw_multi_aff(map, dom, empty,
7406 flags);
7407 return isl_map_from_pw_multi_aff_internal(pma);
7408 error:
7409 if (empty)
7410 *empty = NULL;
7411 isl_set_free(dom);
7412 isl_map_free(map);
7413 return NULL;
7416 __isl_give isl_map *isl_map_partial_lexmax(
7417 __isl_take isl_map *map, __isl_take isl_set *dom,
7418 __isl_give isl_set **empty)
7420 return isl_map_partial_lexopt(map, dom, empty, ISL_OPT_MAX);
7423 __isl_give isl_map *isl_map_partial_lexmin(
7424 __isl_take isl_map *map, __isl_take isl_set *dom,
7425 __isl_give isl_set **empty)
7427 return isl_map_partial_lexopt(map, dom, empty, 0);
7430 __isl_give isl_set *isl_set_partial_lexmin(
7431 __isl_take isl_set *set, __isl_take isl_set *dom,
7432 __isl_give isl_set **empty)
7434 return set_from_map(isl_map_partial_lexmin(set_to_map(set),
7435 dom, empty));
7438 __isl_give isl_set *isl_set_partial_lexmax(
7439 __isl_take isl_set *set, __isl_take isl_set *dom,
7440 __isl_give isl_set **empty)
7442 return set_from_map(isl_map_partial_lexmax(set_to_map(set),
7443 dom, empty));
7446 /* Compute the lexicographic minimum (or maximum if "flags" includes
7447 * ISL_OPT_MAX) of "bset" over its parametric domain.
7449 __isl_give isl_set *isl_basic_set_lexopt(__isl_take isl_basic_set *bset,
7450 unsigned flags)
7452 return isl_basic_map_lexopt(bset, flags);
7455 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
7457 return isl_basic_map_lexopt(bmap, ISL_OPT_MAX);
7460 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
7462 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset)));
7465 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
7467 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset)));
7470 /* Compute the lexicographic minimum of "bset" over its parametric domain
7471 * for the purpose of quantifier elimination.
7472 * That is, find an explicit representation for all the existentially
7473 * quantified variables in "bset" by computing their lexicographic
7474 * minimum.
7476 static __isl_give isl_set *isl_basic_set_lexmin_compute_divs(
7477 __isl_take isl_basic_set *bset)
7479 return isl_basic_set_lexopt(bset, ISL_OPT_QE);
7482 /* Given a basic map with one output dimension, compute the minimum or
7483 * maximum of that dimension as an isl_pw_aff.
7485 * Compute the optimum as a lexicographic optimum over the single
7486 * output dimension and extract the single isl_pw_aff from the result.
7488 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
7489 int max)
7491 isl_pw_multi_aff *pma;
7492 isl_pw_aff *pwaff;
7494 bmap = isl_basic_map_copy(bmap);
7495 pma = isl_basic_map_lexopt_pw_multi_aff(bmap, max ? ISL_OPT_MAX : 0);
7496 pwaff = isl_pw_multi_aff_get_pw_aff(pma, 0);
7497 isl_pw_multi_aff_free(pma);
7499 return pwaff;
7502 /* Compute the minimum or maximum of the given output dimension
7503 * as a function of the parameters and the input dimensions,
7504 * but independently of the other output dimensions.
7506 * We first project out the other output dimension and then compute
7507 * the "lexicographic" maximum in each basic map, combining the results
7508 * using isl_pw_aff_union_max.
7510 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
7511 int max)
7513 int i;
7514 isl_pw_aff *pwaff;
7515 isl_size n_out;
7517 n_out = isl_map_dim(map, isl_dim_out);
7518 if (n_out < 0)
7519 map = isl_map_free(map);
7520 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
7521 map = isl_map_project_out(map, isl_dim_out, 0, pos);
7522 if (!map)
7523 return NULL;
7525 if (map->n == 0) {
7526 isl_space *space = isl_map_get_space(map);
7527 isl_map_free(map);
7528 return isl_pw_aff_empty(space);
7531 pwaff = basic_map_dim_opt(map->p[0], max);
7532 for (i = 1; i < map->n; ++i) {
7533 isl_pw_aff *pwaff_i;
7535 pwaff_i = basic_map_dim_opt(map->p[i], max);
7536 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
7539 isl_map_free(map);
7541 return pwaff;
7544 /* Compute the minimum of the given output dimension as a function of the
7545 * parameters and input dimensions, but independently of
7546 * the other output dimensions.
7548 __isl_give isl_pw_aff *isl_map_dim_min(__isl_take isl_map *map, int pos)
7550 return map_dim_opt(map, pos, 0);
7553 /* Compute the maximum of the given output dimension as a function of the
7554 * parameters and input dimensions, but independently of
7555 * the other output dimensions.
7557 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
7559 return map_dim_opt(map, pos, 1);
7562 /* Compute the minimum or maximum of the given set dimension
7563 * as a function of the parameters,
7564 * but independently of the other set dimensions.
7566 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
7567 int max)
7569 return map_dim_opt(set, pos, max);
7572 /* Compute the maximum of the given set dimension as a function of the
7573 * parameters, but independently of the other set dimensions.
7575 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
7577 return set_dim_opt(set, pos, 1);
7580 /* Compute the minimum of the given set dimension as a function of the
7581 * parameters, but independently of the other set dimensions.
7583 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
7585 return set_dim_opt(set, pos, 0);
7588 /* Apply a preimage specified by "mat" on the parameters of "bset".
7589 * bset is assumed to have only parameters and divs.
7591 static __isl_give isl_basic_set *basic_set_parameter_preimage(
7592 __isl_take isl_basic_set *bset, __isl_take isl_mat *mat)
7594 isl_size nparam;
7596 nparam = isl_basic_set_dim(bset, isl_dim_param);
7597 if (nparam < 0 || !mat)
7598 goto error;
7600 bset->dim = isl_space_cow(bset->dim);
7601 if (!bset->dim)
7602 goto error;
7604 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
7606 bset->dim->nparam = 0;
7607 bset->dim->n_out = nparam;
7608 bset = isl_basic_set_preimage(bset, mat);
7609 if (bset) {
7610 bset->dim->nparam = bset->dim->n_out;
7611 bset->dim->n_out = 0;
7613 return bset;
7614 error:
7615 isl_mat_free(mat);
7616 isl_basic_set_free(bset);
7617 return NULL;
7620 /* Apply a preimage specified by "mat" on the parameters of "set".
7621 * set is assumed to have only parameters and divs.
7623 static __isl_give isl_set *set_parameter_preimage(__isl_take isl_set *set,
7624 __isl_take isl_mat *mat)
7626 isl_space *space;
7627 isl_size nparam;
7629 nparam = isl_set_dim(set, isl_dim_param);
7630 if (nparam < 0 || !mat)
7631 goto error;
7633 if (mat->n_row != 1 + nparam)
7634 isl_die(isl_set_get_ctx(set), isl_error_internal,
7635 "unexpected number of rows", goto error);
7637 space = isl_set_get_space(set);
7638 space = isl_space_move_dims(space, isl_dim_set, 0,
7639 isl_dim_param, 0, nparam);
7640 set = isl_set_reset_space(set, space);
7641 set = isl_set_preimage(set, mat);
7642 nparam = isl_set_dim(set, isl_dim_out);
7643 if (nparam < 0)
7644 set = isl_set_free(set);
7645 space = isl_set_get_space(set);
7646 space = isl_space_move_dims(space, isl_dim_param, 0,
7647 isl_dim_out, 0, nparam);
7648 set = isl_set_reset_space(set, space);
7649 return set;
7650 error:
7651 isl_mat_free(mat);
7652 isl_set_free(set);
7653 return NULL;
7656 /* Intersect the basic set "bset" with the affine space specified by the
7657 * equalities in "eq".
7659 static __isl_give isl_basic_set *basic_set_append_equalities(
7660 __isl_take isl_basic_set *bset, __isl_take isl_mat *eq)
7662 int i, k;
7663 unsigned len;
7665 if (!bset || !eq)
7666 goto error;
7668 bset = isl_basic_set_extend(bset, 0, eq->n_row, 0);
7669 if (!bset)
7670 goto error;
7672 len = isl_basic_set_offset(bset, isl_dim_div) + bset->extra;
7673 for (i = 0; i < eq->n_row; ++i) {
7674 k = isl_basic_set_alloc_equality(bset);
7675 if (k < 0)
7676 goto error;
7677 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
7678 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
7680 isl_mat_free(eq);
7682 bset = isl_basic_set_gauss(bset, NULL);
7683 bset = isl_basic_set_finalize(bset);
7685 return bset;
7686 error:
7687 isl_mat_free(eq);
7688 isl_basic_set_free(bset);
7689 return NULL;
7692 /* Intersect the set "set" with the affine space specified by the
7693 * equalities in "eq".
7695 static __isl_give isl_set *set_append_equalities(__isl_take isl_set *set,
7696 __isl_take isl_mat *eq)
7698 int i;
7700 if (!set || !eq)
7701 goto error;
7703 for (i = 0; i < set->n; ++i) {
7704 set->p[i] = basic_set_append_equalities(set->p[i],
7705 isl_mat_copy(eq));
7706 if (!set->p[i])
7707 goto error;
7709 isl_mat_free(eq);
7710 return set;
7711 error:
7712 isl_mat_free(eq);
7713 isl_set_free(set);
7714 return NULL;
7717 /* Given a basic set "bset" that only involves parameters and existentially
7718 * quantified variables, return the index of the first equality
7719 * that only involves parameters. If there is no such equality then
7720 * return bset->n_eq.
7722 * This function assumes that isl_basic_set_gauss has been called on "bset".
7724 static int first_parameter_equality(__isl_keep isl_basic_set *bset)
7726 int i, j;
7727 isl_size nparam, n_div;
7729 nparam = isl_basic_set_dim(bset, isl_dim_param);
7730 n_div = isl_basic_set_dim(bset, isl_dim_div);
7731 if (nparam < 0 || n_div < 0)
7732 return -1;
7734 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
7735 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
7736 ++i;
7739 return i;
7742 /* Compute an explicit representation for the existentially quantified
7743 * variables in "bset" by computing the "minimal value" of the set
7744 * variables. Since there are no set variables, the computation of
7745 * the minimal value essentially computes an explicit representation
7746 * of the non-empty part(s) of "bset".
7748 * The input only involves parameters and existentially quantified variables.
7749 * All equalities among parameters have been removed.
7751 * Since the existentially quantified variables in the result are in general
7752 * going to be different from those in the input, we first replace
7753 * them by the minimal number of variables based on their equalities.
7754 * This should simplify the parametric integer programming.
7756 static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
7758 isl_morph *morph1, *morph2;
7759 isl_set *set;
7760 isl_size n;
7762 if (!bset)
7763 return NULL;
7764 if (bset->n_eq == 0)
7765 return isl_basic_set_lexmin_compute_divs(bset);
7767 morph1 = isl_basic_set_parameter_compression(bset);
7768 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
7769 bset = isl_basic_set_lift(bset);
7770 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
7771 bset = isl_morph_basic_set(morph2, bset);
7772 n = isl_basic_set_dim(bset, isl_dim_set);
7773 if (n < 0)
7774 bset = isl_basic_set_free(bset);
7775 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
7777 set = isl_basic_set_lexmin_compute_divs(bset);
7779 set = isl_morph_set(isl_morph_inverse(morph1), set);
7781 return set;
7784 /* Project the given basic set onto its parameter domain, possibly introducing
7785 * new, explicit, existential variables in the constraints.
7786 * The input has parameters and (possibly implicit) existential variables.
7787 * The output has the same parameters, but only
7788 * explicit existentially quantified variables.
7790 * The actual projection is performed by pip, but pip doesn't seem
7791 * to like equalities very much, so we first remove the equalities
7792 * among the parameters by performing a variable compression on
7793 * the parameters. Afterward, an inverse transformation is performed
7794 * and the equalities among the parameters are inserted back in.
7796 * The variable compression on the parameters may uncover additional
7797 * equalities that were only implicit before. We therefore check
7798 * if there are any new parameter equalities in the result and
7799 * if so recurse. The removal of parameter equalities is required
7800 * for the parameter compression performed by base_compute_divs.
7802 static __isl_give isl_set *parameter_compute_divs(
7803 __isl_take isl_basic_set *bset)
7805 int i;
7806 struct isl_mat *eq;
7807 struct isl_mat *T, *T2;
7808 struct isl_set *set;
7809 isl_size nparam;
7811 bset = isl_basic_set_cow(bset);
7812 if (!bset)
7813 return NULL;
7815 if (bset->n_eq == 0)
7816 return base_compute_divs(bset);
7818 bset = isl_basic_set_gauss(bset, NULL);
7819 if (!bset)
7820 return NULL;
7821 if (isl_basic_set_plain_is_empty(bset))
7822 return isl_set_from_basic_set(bset);
7824 i = first_parameter_equality(bset);
7825 if (i == bset->n_eq)
7826 return base_compute_divs(bset);
7828 nparam = isl_basic_set_dim(bset, isl_dim_param);
7829 if (nparam < 0)
7830 return isl_set_from_basic_set(isl_basic_set_free(bset));
7831 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
7832 0, 1 + nparam);
7833 eq = isl_mat_cow(eq);
7834 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
7835 if (T && T->n_col == 0) {
7836 isl_mat_free(T);
7837 isl_mat_free(T2);
7838 isl_mat_free(eq);
7839 bset = isl_basic_set_set_to_empty(bset);
7840 return isl_set_from_basic_set(bset);
7842 bset = basic_set_parameter_preimage(bset, T);
7844 i = first_parameter_equality(bset);
7845 if (!bset)
7846 set = NULL;
7847 else if (i == bset->n_eq)
7848 set = base_compute_divs(bset);
7849 else
7850 set = parameter_compute_divs(bset);
7851 set = set_parameter_preimage(set, T2);
7852 set = set_append_equalities(set, eq);
7853 return set;
7856 /* Insert the divs from "ls" before those of "bmap".
7858 * The number of columns is not changed, which means that the last
7859 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7860 * The caller is responsible for removing the same number of dimensions
7861 * from the space of "bmap".
7863 static __isl_give isl_basic_map *insert_divs_from_local_space(
7864 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
7866 int i;
7867 isl_size n_div;
7868 int old_n_div;
7870 n_div = isl_local_space_dim(ls, isl_dim_div);
7871 if (n_div < 0)
7872 return isl_basic_map_free(bmap);
7873 if (n_div == 0)
7874 return bmap;
7876 old_n_div = bmap->n_div;
7877 bmap = insert_div_rows(bmap, n_div);
7878 if (!bmap)
7879 return NULL;
7881 for (i = 0; i < n_div; ++i) {
7882 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
7883 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
7886 return bmap;
7889 /* Replace the space of "bmap" by the space and divs of "ls".
7891 * If "ls" has any divs, then we simplify the result since we may
7892 * have discovered some additional equalities that could simplify
7893 * the div expressions.
7895 static __isl_give isl_basic_map *basic_replace_space_by_local_space(
7896 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
7898 isl_size n_div;
7900 bmap = isl_basic_map_cow(bmap);
7901 n_div = isl_local_space_dim(ls, isl_dim_div);
7902 if (!bmap || n_div < 0)
7903 goto error;
7905 bmap = insert_divs_from_local_space(bmap, ls);
7906 if (!bmap)
7907 goto error;
7909 isl_space_free(bmap->dim);
7910 bmap->dim = isl_local_space_get_space(ls);
7911 if (!bmap->dim)
7912 goto error;
7914 isl_local_space_free(ls);
7915 if (n_div > 0)
7916 bmap = isl_basic_map_simplify(bmap);
7917 bmap = isl_basic_map_finalize(bmap);
7918 return bmap;
7919 error:
7920 isl_basic_map_free(bmap);
7921 isl_local_space_free(ls);
7922 return NULL;
7925 /* Replace the space of "map" by the space and divs of "ls".
7927 static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
7928 __isl_take isl_local_space *ls)
7930 int i;
7932 map = isl_map_cow(map);
7933 if (!map || !ls)
7934 goto error;
7936 for (i = 0; i < map->n; ++i) {
7937 map->p[i] = basic_replace_space_by_local_space(map->p[i],
7938 isl_local_space_copy(ls));
7939 if (!map->p[i])
7940 goto error;
7942 isl_space_free(isl_map_take_space(map));
7943 map = isl_map_restore_space(map, isl_local_space_get_space(ls));
7945 isl_local_space_free(ls);
7946 return map;
7947 error:
7948 isl_local_space_free(ls);
7949 isl_map_free(map);
7950 return NULL;
7953 /* Compute an explicit representation for the existentially
7954 * quantified variables for which do not know any explicit representation yet.
7956 * We first sort the existentially quantified variables so that the
7957 * existentially quantified variables for which we already have an explicit
7958 * representation are placed before those for which we do not.
7959 * The input dimensions, the output dimensions and the existentially
7960 * quantified variables for which we already have an explicit
7961 * representation are then turned into parameters.
7962 * compute_divs returns a map with the same parameters and
7963 * no input or output dimensions and the dimension specification
7964 * is reset to that of the input, including the existentially quantified
7965 * variables for which we already had an explicit representation.
7967 static __isl_give isl_map *compute_divs(__isl_take isl_basic_map *bmap)
7969 struct isl_basic_set *bset;
7970 struct isl_set *set;
7971 struct isl_map *map;
7972 isl_space *space;
7973 isl_local_space *ls;
7974 isl_size nparam;
7975 isl_size n_in;
7976 isl_size n_out;
7977 int n_known;
7978 int i;
7980 bmap = isl_basic_map_sort_divs(bmap);
7981 bmap = isl_basic_map_cow(bmap);
7982 if (!bmap)
7983 return NULL;
7985 n_known = isl_basic_map_first_unknown_div(bmap);
7986 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7987 n_in = isl_basic_map_dim(bmap, isl_dim_in);
7988 n_out = isl_basic_map_dim(bmap, isl_dim_out);
7989 if (n_known < 0 || nparam < 0 || n_in < 0 || n_out < 0)
7990 return isl_map_from_basic_map(isl_basic_map_free(bmap));
7992 space = isl_space_set_alloc(bmap->ctx,
7993 nparam + n_in + n_out + n_known, 0);
7994 if (!space)
7995 goto error;
7997 ls = isl_basic_map_get_local_space(bmap);
7998 ls = isl_local_space_drop_dims(ls, isl_dim_div,
7999 n_known, bmap->n_div - n_known);
8000 if (n_known > 0) {
8001 for (i = n_known; i < bmap->n_div; ++i)
8002 swap_div(bmap, i - n_known, i);
8003 bmap->n_div -= n_known;
8004 bmap->extra -= n_known;
8006 bmap = isl_basic_map_reset_space(bmap, space);
8007 bset = bset_from_bmap(bmap);
8009 set = parameter_compute_divs(bset);
8010 map = set_to_map(set);
8011 map = replace_space_by_local_space(map, ls);
8013 return map;
8014 error:
8015 isl_basic_map_free(bmap);
8016 return NULL;
8019 /* Remove the explicit representation of local variable "div",
8020 * if there is any.
8022 __isl_give isl_basic_map *isl_basic_map_mark_div_unknown(
8023 __isl_take isl_basic_map *bmap, int div)
8025 isl_bool unknown;
8027 unknown = isl_basic_map_div_is_marked_unknown(bmap, div);
8028 if (unknown < 0)
8029 return isl_basic_map_free(bmap);
8030 if (unknown)
8031 return bmap;
8033 bmap = isl_basic_map_cow(bmap);
8034 if (!bmap)
8035 return NULL;
8036 isl_int_set_si(bmap->div[div][0], 0);
8037 return bmap;
8040 /* Is local variable "div" of "bmap" marked as not having an explicit
8041 * representation?
8042 * Note that even if "div" is not marked in this way and therefore
8043 * has an explicit representation, this representation may still
8044 * depend (indirectly) on other local variables that do not
8045 * have an explicit representation.
8047 isl_bool isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map *bmap,
8048 int div)
8050 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
8051 return isl_bool_error;
8052 return isl_int_is_zero(bmap->div[div][0]);
8055 /* Return the position of the first local variable that does not
8056 * have an explicit representation.
8057 * Return the total number of local variables if they all have
8058 * an explicit representation.
8059 * Return -1 on error.
8061 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map *bmap)
8063 int i;
8065 if (!bmap)
8066 return -1;
8068 for (i = 0; i < bmap->n_div; ++i) {
8069 if (!isl_basic_map_div_is_known(bmap, i))
8070 return i;
8072 return bmap->n_div;
8075 /* Return the position of the first local variable that does not
8076 * have an explicit representation.
8077 * Return the total number of local variables if they all have
8078 * an explicit representation.
8079 * Return -1 on error.
8081 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set *bset)
8083 return isl_basic_map_first_unknown_div(bset);
8086 /* Does "bmap" have an explicit representation for all local variables?
8088 isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
8090 int first;
8091 isl_size n;
8093 n = isl_basic_map_dim(bmap, isl_dim_div);
8094 first = isl_basic_map_first_unknown_div(bmap);
8095 if (n < 0 || first < 0)
8096 return isl_bool_error;
8097 return first == n;
8100 /* Do all basic maps in "map" have an explicit representation
8101 * for all local variables?
8103 isl_bool isl_map_divs_known(__isl_keep isl_map *map)
8105 int i;
8107 if (!map)
8108 return isl_bool_error;
8110 for (i = 0; i < map->n; ++i) {
8111 int known = isl_basic_map_divs_known(map->p[i]);
8112 if (known <= 0)
8113 return known;
8116 return isl_bool_true;
8119 /* If bmap contains any unknown divs, then compute explicit
8120 * expressions for them. However, this computation may be
8121 * quite expensive, so first try to remove divs that aren't
8122 * strictly needed.
8124 __isl_give isl_map *isl_basic_map_compute_divs(__isl_take isl_basic_map *bmap)
8126 int known;
8127 struct isl_map *map;
8129 known = isl_basic_map_divs_known(bmap);
8130 if (known < 0)
8131 goto error;
8132 if (known)
8133 return isl_map_from_basic_map(bmap);
8135 bmap = isl_basic_map_drop_redundant_divs(bmap);
8137 known = isl_basic_map_divs_known(bmap);
8138 if (known < 0)
8139 goto error;
8140 if (known)
8141 return isl_map_from_basic_map(bmap);
8143 map = compute_divs(bmap);
8144 return map;
8145 error:
8146 isl_basic_map_free(bmap);
8147 return NULL;
8150 __isl_give isl_map *isl_map_compute_divs(__isl_take isl_map *map)
8152 int i;
8153 int known;
8154 struct isl_map *res;
8156 if (!map)
8157 return NULL;
8158 if (map->n == 0)
8159 return map;
8161 known = isl_map_divs_known(map);
8162 if (known < 0) {
8163 isl_map_free(map);
8164 return NULL;
8166 if (known)
8167 return map;
8169 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
8170 for (i = 1 ; i < map->n; ++i) {
8171 struct isl_map *r2;
8172 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
8173 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
8174 res = isl_map_union_disjoint(res, r2);
8175 else
8176 res = isl_map_union(res, r2);
8178 isl_map_free(map);
8180 return res;
8183 __isl_give isl_set *isl_basic_set_compute_divs(__isl_take isl_basic_set *bset)
8185 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset)));
8188 __isl_give isl_set *isl_set_compute_divs(__isl_take isl_set *set)
8190 return set_from_map(isl_map_compute_divs(set_to_map(set)));
8193 __isl_give isl_set *isl_map_domain(__isl_take isl_map *map)
8195 isl_space *space;
8196 isl_size n_out;
8198 n_out = isl_map_dim(map, isl_dim_out);
8199 if (n_out < 0)
8200 return set_from_map(isl_map_free(map));
8201 space = isl_space_domain(isl_map_get_space(map));
8203 map = isl_map_project_out(map, isl_dim_out, 0, n_out);
8205 return set_from_map(isl_map_reset_space(map, space));
8208 /* Return the union of "map1" and "map2", where we assume for now that
8209 * "map1" and "map2" are disjoint. Note that the basic maps inside
8210 * "map1" or "map2" may not be disjoint from each other.
8211 * Also note that this function is also called from isl_map_union,
8212 * which takes care of handling the situation where "map1" and "map2"
8213 * may not be disjoint.
8215 * If one of the inputs is empty, we can simply return the other input.
8216 * Similarly, if one of the inputs is universal, then it is equal to the union.
8218 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
8219 __isl_take isl_map *map2)
8221 int i;
8222 unsigned flags = 0;
8223 struct isl_map *map = NULL;
8224 int is_universe;
8226 if (isl_map_check_equal_space(map1, map2) < 0)
8227 goto error;
8229 if (map1->n == 0) {
8230 isl_map_free(map1);
8231 return map2;
8233 if (map2->n == 0) {
8234 isl_map_free(map2);
8235 return map1;
8238 is_universe = isl_map_plain_is_universe(map1);
8239 if (is_universe < 0)
8240 goto error;
8241 if (is_universe) {
8242 isl_map_free(map2);
8243 return map1;
8246 is_universe = isl_map_plain_is_universe(map2);
8247 if (is_universe < 0)
8248 goto error;
8249 if (is_universe) {
8250 isl_map_free(map1);
8251 return map2;
8254 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
8255 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
8256 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
8258 map = isl_map_alloc_space(isl_space_copy(map1->dim),
8259 map1->n + map2->n, flags);
8260 if (!map)
8261 goto error;
8262 for (i = 0; i < map1->n; ++i) {
8263 map = isl_map_add_basic_map(map,
8264 isl_basic_map_copy(map1->p[i]));
8265 if (!map)
8266 goto error;
8268 for (i = 0; i < map2->n; ++i) {
8269 map = isl_map_add_basic_map(map,
8270 isl_basic_map_copy(map2->p[i]));
8271 if (!map)
8272 goto error;
8274 isl_map_free(map1);
8275 isl_map_free(map2);
8276 return map;
8277 error:
8278 isl_map_free(map);
8279 isl_map_free(map1);
8280 isl_map_free(map2);
8281 return NULL;
8284 /* Return the union of "map1" and "map2", where "map1" and "map2" are
8285 * guaranteed to be disjoint by the caller.
8287 * Note that this functions is called from within isl_map_make_disjoint,
8288 * so we have to be careful not to touch the constraints of the inputs
8289 * in any way.
8291 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
8292 __isl_take isl_map *map2)
8294 isl_map_align_params_bin(&map1, &map2);
8295 return map_union_disjoint(map1, map2);
8298 /* Return the union of "map1" and "map2", where "map1" and "map2" may
8299 * not be disjoint.
8301 * We currently simply call map_union_disjoint, the internal operation
8302 * of which does not really depend on the inputs being disjoint.
8303 * If the result contains more than one basic map, then we clear
8304 * the disjoint flag since the result may contain basic maps from
8305 * both inputs and these are not guaranteed to be disjoint.
8307 * As a special case, if "map1" and "map2" are obviously equal,
8308 * then we simply return "map1".
8310 __isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
8311 __isl_take isl_map *map2)
8313 int equal;
8315 if (isl_map_align_params_bin(&map1, &map2) < 0)
8316 goto error;
8318 equal = isl_map_plain_is_equal(map1, map2);
8319 if (equal < 0)
8320 goto error;
8321 if (equal) {
8322 isl_map_free(map2);
8323 return map1;
8326 map1 = map_union_disjoint(map1, map2);
8327 if (!map1)
8328 return NULL;
8329 if (map1->n > 1)
8330 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
8331 return map1;
8332 error:
8333 isl_map_free(map1);
8334 isl_map_free(map2);
8335 return NULL;
8338 __isl_give isl_set *isl_set_union_disjoint(
8339 __isl_take isl_set *set1, __isl_take isl_set *set2)
8341 return set_from_map(isl_map_union_disjoint(set_to_map(set1),
8342 set_to_map(set2)));
8345 __isl_give isl_set *isl_set_union(__isl_take isl_set *set1,
8346 __isl_take isl_set *set2)
8348 return set_from_map(isl_map_union(set_to_map(set1), set_to_map(set2)));
8351 /* Apply "fn" to pairs of elements from "map" and "set" and collect
8352 * the results in a map living in "space".
8354 * "map" and "set" are assumed to be compatible and non-NULL.
8356 static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
8357 __isl_take isl_space *space, __isl_take isl_set *set,
8358 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
8359 __isl_take isl_basic_set *bset))
8361 unsigned flags = 0;
8362 struct isl_map *result;
8363 int i, j;
8365 if (isl_set_plain_is_universe(set)) {
8366 isl_set_free(set);
8367 return isl_map_reset_equal_dim_space(map, space);
8370 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
8371 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
8372 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
8374 result = isl_map_alloc_space(space, map->n * set->n, flags);
8375 for (i = 0; result && i < map->n; ++i)
8376 for (j = 0; j < set->n; ++j) {
8377 result = isl_map_add_basic_map(result,
8378 fn(isl_basic_map_copy(map->p[i]),
8379 isl_basic_set_copy(set->p[j])));
8380 if (!result)
8381 break;
8384 isl_map_free(map);
8385 isl_set_free(set);
8386 return result;
8389 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
8390 __isl_take isl_set *set)
8392 isl_bool ok;
8393 isl_space *space;
8395 isl_map_align_params_set(&map, &set);
8396 ok = isl_map_compatible_range(map, set);
8397 if (ok < 0)
8398 goto error;
8399 if (!ok)
8400 isl_die(set->ctx, isl_error_invalid,
8401 "incompatible spaces", goto error);
8403 space = isl_map_get_space(map);
8404 return map_intersect_set(map, space, set,
8405 &isl_basic_map_intersect_range);
8406 error:
8407 isl_map_free(map);
8408 isl_set_free(set);
8409 return NULL;
8412 /* Intersect the domain of "map" with "set".
8414 * If the domain dimensions of "map" do not have any identifiers,
8415 * then copy them over from "set".
8417 __isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
8418 __isl_take isl_set *set)
8420 isl_bool ok;
8421 isl_space *space;
8423 isl_map_align_params_set(&map, &set);
8424 ok = isl_map_compatible_domain(map, set);
8425 if (ok < 0)
8426 goto error;
8427 if (!ok)
8428 isl_die(set->ctx, isl_error_invalid,
8429 "incompatible spaces", goto error);
8431 space = isl_map_get_space(map);
8432 space = isl_space_copy_ids_if_unset(space, isl_dim_in,
8433 isl_set_peek_space(set), isl_dim_set);
8434 return map_intersect_set(map, space, set,
8435 &isl_basic_map_intersect_domain);
8436 error:
8437 isl_map_free(map);
8438 isl_set_free(set);
8439 return NULL;
8442 #undef TYPE
8443 #define TYPE isl_map
8444 static
8445 #include "isl_copy_tuple_id_templ.c"
8447 /* Data structure that specifies how isl_map_intersect_factor
8448 * should operate.
8450 * "preserve_type" is the tuple where the factor differs from
8451 * the input map and of which the identifiers needs
8452 * to be preserved explicitly.
8453 * "other_factor" is used to extract the space of the other factor
8454 * from the space of the product ("map").
8455 * "product" is used to combine the given factor and a universe map
8456 * in the space returned by "other_factor" to produce a map
8457 * that lives in the same space as the input map.
8459 struct isl_intersect_factor_control {
8460 enum isl_dim_type preserve_type;
8461 __isl_give isl_space *(*other_factor)(__isl_take isl_space *space);
8462 __isl_give isl_map *(*product)(__isl_take isl_map *factor,
8463 __isl_take isl_map *other);
8466 /* Given a map "map" in some product space and a map "factor"
8467 * living in some factor space, return the intersection.
8469 * After aligning the parameters,
8470 * the map "factor" is first extended to a map living in the same space
8471 * as "map" and then a regular intersection is computed.
8473 * Note that the extension is computed as a product, which is anonymous
8474 * by default. If "map" has an identifier on the corresponding tuple,
8475 * then this identifier needs to be set on the product
8476 * before the intersection is computed.
8478 static __isl_give isl_map *isl_map_intersect_factor(
8479 __isl_take isl_map *map, __isl_take isl_map *factor,
8480 struct isl_intersect_factor_control *control)
8482 isl_bool equal;
8483 isl_space *space;
8484 isl_map *other, *product;
8486 equal = isl_map_has_equal_params(map, factor);
8487 if (equal < 0)
8488 goto error;
8489 if (!equal) {
8490 map = isl_map_align_params(map, isl_map_get_space(factor));
8491 factor = isl_map_align_params(factor, isl_map_get_space(map));
8494 space = isl_map_get_space(map);
8495 other = isl_map_universe(control->other_factor(space));
8496 product = control->product(factor, other);
8498 space = isl_map_peek_space(map);
8499 product = isl_map_copy_tuple_id(product, control->preserve_type,
8500 space, control->preserve_type);
8501 return map_intersect(map, product);
8502 error:
8503 isl_map_free(map);
8504 isl_map_free(factor);
8505 return NULL;
8508 /* Return the domain product of "map2" and "map1".
8510 static __isl_give isl_map *isl_map_reverse_domain_product(
8511 __isl_take isl_map *map1, __isl_take isl_map *map2)
8513 return isl_map_domain_product(map2, map1);
8516 /* Return the range product of "map2" and "map1".
8518 static __isl_give isl_map *isl_map_reverse_range_product(
8519 __isl_take isl_map *map1, __isl_take isl_map *map2)
8521 return isl_map_range_product(map2, map1);
8524 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
8525 * in the space A -> C, return the intersection.
8527 __isl_give isl_map *isl_map_intersect_domain_factor_domain(
8528 __isl_take isl_map *map, __isl_take isl_map *factor)
8530 struct isl_intersect_factor_control control = {
8531 .preserve_type = isl_dim_in,
8532 .other_factor = isl_space_domain_factor_range,
8533 .product = isl_map_domain_product,
8536 return isl_map_intersect_factor(map, factor, &control);
8539 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
8540 * in the space B -> C, return the intersection.
8542 __isl_give isl_map *isl_map_intersect_domain_factor_range(
8543 __isl_take isl_map *map, __isl_take isl_map *factor)
8545 struct isl_intersect_factor_control control = {
8546 .preserve_type = isl_dim_in,
8547 .other_factor = isl_space_domain_factor_domain,
8548 .product = isl_map_reverse_domain_product,
8551 return isl_map_intersect_factor(map, factor, &control);
8554 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
8555 * in the space A -> B, return the intersection.
8557 __isl_give isl_map *isl_map_intersect_range_factor_domain(
8558 __isl_take isl_map *map, __isl_take isl_map *factor)
8560 struct isl_intersect_factor_control control = {
8561 .preserve_type = isl_dim_out,
8562 .other_factor = isl_space_range_factor_range,
8563 .product = isl_map_range_product,
8566 return isl_map_intersect_factor(map, factor, &control);
8569 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
8570 * in the space A -> C, return the intersection.
8572 __isl_give isl_map *isl_map_intersect_range_factor_range(
8573 __isl_take isl_map *map, __isl_take isl_map *factor)
8575 struct isl_intersect_factor_control control = {
8576 .preserve_type = isl_dim_out,
8577 .other_factor = isl_space_range_factor_domain,
8578 .product = isl_map_reverse_range_product,
8581 return isl_map_intersect_factor(map, factor, &control);
8584 /* Given a set "set" in a space [A -> B] and a set "domain"
8585 * in the space A, return the intersection.
8587 * The set "domain" is first extended to a set living in the space
8588 * [A -> B] and then a regular intersection is computed.
8590 __isl_give isl_set *isl_set_intersect_factor_domain(__isl_take isl_set *set,
8591 __isl_take isl_set *domain)
8593 struct isl_intersect_factor_control control = {
8594 .preserve_type = isl_dim_set,
8595 .other_factor = isl_space_factor_range,
8596 .product = isl_map_range_product,
8599 return set_from_map(isl_map_intersect_factor(set_to_map(set),
8600 set_to_map(domain), &control));
8603 /* Given a set "set" in a space [A -> B] and a set "range"
8604 * in the space B, return the intersection.
8606 * The set "range" is first extended to a set living in the space
8607 * [A -> B] and then a regular intersection is computed.
8609 __isl_give isl_set *isl_set_intersect_factor_range(__isl_take isl_set *set,
8610 __isl_take isl_set *range)
8612 struct isl_intersect_factor_control control = {
8613 .preserve_type = isl_dim_set,
8614 .other_factor = isl_space_factor_domain,
8615 .product = isl_map_reverse_range_product,
8618 return set_from_map(isl_map_intersect_factor(set_to_map(set),
8619 set_to_map(range), &control));
8622 /* Given a map "map" in a space [A -> B] -> C and a set "domain"
8623 * in the space A, return the intersection.
8625 * The set "domain" is extended to a set living in the space [A -> B] and
8626 * the domain of "map" is intersected with this set.
8628 __isl_give isl_map *isl_map_intersect_domain_wrapped_domain(
8629 __isl_take isl_map *map, __isl_take isl_set *domain)
8631 isl_space *space;
8632 isl_set *factor;
8634 isl_map_align_params_set(&map, &domain);
8635 space = isl_map_get_space(map);
8636 space = isl_space_domain_wrapped_range(space);
8637 factor = isl_set_universe(space);
8638 domain = isl_set_product(domain, factor);
8639 return isl_map_intersect_domain(map, domain);
8642 /* Given a map "map" in a space A -> [B -> C] and a set "domain"
8643 * in the space B, return the intersection.
8645 * The set "domain" is extended to a set living in the space [B -> C] and
8646 * the range of "map" is intersected with this set.
8648 __isl_give isl_map *isl_map_intersect_range_wrapped_domain(
8649 __isl_take isl_map *map, __isl_take isl_set *domain)
8651 isl_space *space;
8652 isl_set *factor;
8654 isl_map_align_params_set(&map, &domain);
8655 space = isl_map_get_space(map);
8656 space = isl_space_range_wrapped_range(space);
8657 factor = isl_set_universe(space);
8658 domain = isl_set_product(domain, factor);
8659 return isl_map_intersect_range(map, domain);
8662 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
8663 __isl_take isl_map *map2)
8665 if (isl_map_align_params_bin(&map1, &map2) < 0)
8666 goto error;
8667 map1 = isl_map_reverse(map1);
8668 map1 = isl_map_apply_range(map1, map2);
8669 return isl_map_reverse(map1);
8670 error:
8671 isl_map_free(map1);
8672 isl_map_free(map2);
8673 return NULL;
8676 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
8677 __isl_take isl_map *map2)
8679 isl_space *space;
8680 struct isl_map *result;
8681 int i, j;
8683 if (isl_map_align_params_bin(&map1, &map2) < 0)
8684 goto error;
8686 space = isl_space_join(isl_space_copy(map1->dim),
8687 isl_space_copy(map2->dim));
8689 result = isl_map_alloc_space(space, map1->n * map2->n, 0);
8690 if (!result)
8691 goto error;
8692 for (i = 0; i < map1->n; ++i)
8693 for (j = 0; j < map2->n; ++j) {
8694 result = isl_map_add_basic_map(result,
8695 isl_basic_map_apply_range(
8696 isl_basic_map_copy(map1->p[i]),
8697 isl_basic_map_copy(map2->p[j])));
8698 if (!result)
8699 goto error;
8701 isl_map_free(map1);
8702 isl_map_free(map2);
8703 if (result && result->n <= 1)
8704 ISL_F_SET(result, ISL_MAP_DISJOINT);
8705 return result;
8706 error:
8707 isl_map_free(map1);
8708 isl_map_free(map2);
8709 return NULL;
8712 /* Is "bmap" a transformation, i.e.,
8713 * does it relate elements from the same space.
8715 isl_bool isl_basic_map_is_transformation(__isl_keep isl_basic_map *bmap)
8717 isl_space *space;
8719 space = isl_basic_map_peek_space(bmap);
8720 return isl_space_tuple_is_equal(space, isl_dim_in, space, isl_dim_out);
8723 /* Check that "bmap" is a transformation, i.e.,
8724 * that it relates elements from the same space.
8726 static isl_stat isl_basic_map_check_transformation(
8727 __isl_keep isl_basic_map *bmap)
8729 isl_bool equal;
8731 equal = isl_basic_map_is_transformation(bmap);
8732 if (equal < 0)
8733 return isl_stat_error;
8734 if (!equal)
8735 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
8736 "domain and range don't match", return isl_stat_error);
8737 return isl_stat_ok;
8741 * returns range - domain
8743 __isl_give isl_basic_set *isl_basic_map_deltas(__isl_take isl_basic_map *bmap)
8745 isl_space *target_space;
8746 struct isl_basic_set *bset;
8747 isl_size dim;
8748 isl_size nparam;
8749 isl_size total;
8750 int i;
8752 if (isl_basic_map_check_transformation(bmap) < 0)
8753 return isl_basic_map_free(bmap);
8754 dim = isl_basic_map_dim(bmap, isl_dim_in);
8755 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8756 if (dim < 0 || nparam < 0)
8757 goto error;
8758 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
8759 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
8760 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
8761 total = isl_basic_map_dim(bmap, isl_dim_all);
8762 if (total < 0)
8763 bmap = isl_basic_map_free(bmap);
8764 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
8765 for (i = 0; i < dim; ++i) {
8766 int j = isl_basic_map_alloc_equality(bmap);
8767 if (j < 0) {
8768 bmap = isl_basic_map_free(bmap);
8769 break;
8771 isl_seq_clr(bmap->eq[j], 1 + total);
8772 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
8773 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
8774 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
8776 bset = isl_basic_map_domain(bmap);
8777 bset = isl_basic_set_reset_space(bset, target_space);
8778 return bset;
8779 error:
8780 isl_basic_map_free(bmap);
8781 return NULL;
8784 /* Is the tuple of type "type1" of "map" the same as
8785 * the tuple of type "type2" of "space"?
8787 isl_bool isl_map_space_tuple_is_equal(__isl_keep isl_map *map,
8788 enum isl_dim_type type1, __isl_keep isl_space *space,
8789 enum isl_dim_type type2)
8791 isl_space *map_space;
8793 map_space = isl_map_peek_space(map);
8794 return isl_space_tuple_is_equal(map_space, type1, space, type2);
8797 /* Is the tuple of type "type1" of "map1" the same as
8798 * the tuple of type "type2" of "map2"?
8800 isl_bool isl_map_tuple_is_equal(__isl_keep isl_map *map1,
8801 enum isl_dim_type type1, __isl_keep isl_map *map2,
8802 enum isl_dim_type type2)
8804 isl_space *space1, *space2;
8806 space1 = isl_map_peek_space(map1);
8807 space2 = isl_map_peek_space(map2);
8808 return isl_space_tuple_is_equal(space1, type1, space2, type2);
8811 /* Is the space of "obj" equal to "space", ignoring parameters?
8813 isl_bool isl_map_has_space_tuples(__isl_keep isl_map *map,
8814 __isl_keep isl_space *space)
8816 isl_space *map_space;
8818 map_space = isl_map_peek_space(map);
8819 return isl_space_has_equal_tuples(map_space, space);
8822 /* Check that "map" is a transformation, i.e.,
8823 * that it relates elements from the same space.
8825 isl_stat isl_map_check_transformation(__isl_keep isl_map *map)
8827 isl_bool equal;
8829 equal = isl_map_tuple_is_equal(map, isl_dim_in, map, isl_dim_out);
8830 if (equal < 0)
8831 return isl_stat_error;
8832 if (!equal)
8833 isl_die(isl_map_get_ctx(map), isl_error_invalid,
8834 "domain and range don't match", return isl_stat_error);
8835 return isl_stat_ok;
8839 * returns range - domain
8841 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
8843 int i;
8844 isl_space *space;
8845 struct isl_set *result;
8847 if (isl_map_check_transformation(map) < 0)
8848 goto error;
8849 space = isl_map_get_space(map);
8850 space = isl_space_domain(space);
8851 result = isl_set_alloc_space(space, map->n, 0);
8852 if (!result)
8853 goto error;
8854 for (i = 0; i < map->n; ++i)
8855 result = isl_set_add_basic_set(result,
8856 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
8857 isl_map_free(map);
8858 return result;
8859 error:
8860 isl_map_free(map);
8861 return NULL;
8865 * returns [domain -> range] -> range - domain
8867 __isl_give isl_basic_map *isl_basic_map_deltas_map(
8868 __isl_take isl_basic_map *bmap)
8870 int i, k;
8871 isl_space *space;
8872 isl_basic_map *domain;
8873 isl_size nparam, n;
8874 isl_size total;
8876 if (isl_basic_map_check_transformation(bmap) < 0)
8877 return isl_basic_map_free(bmap);
8879 nparam = isl_basic_map_dim(bmap, isl_dim_param);
8880 n = isl_basic_map_dim(bmap, isl_dim_in);
8881 if (nparam < 0 || n < 0)
8882 return isl_basic_map_free(bmap);
8884 space = isl_basic_map_get_space(bmap);
8885 space = isl_space_from_range(isl_space_domain(space));
8886 domain = isl_basic_map_universe(space);
8888 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
8889 bmap = isl_basic_map_apply_range(bmap, domain);
8890 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
8892 total = isl_basic_map_dim(bmap, isl_dim_all);
8893 if (total < 0)
8894 return isl_basic_map_free(bmap);
8896 for (i = 0; i < n; ++i) {
8897 k = isl_basic_map_alloc_equality(bmap);
8898 if (k < 0)
8899 goto error;
8900 isl_seq_clr(bmap->eq[k], 1 + total);
8901 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
8902 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
8903 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
8906 bmap = isl_basic_map_gauss(bmap, NULL);
8907 return isl_basic_map_finalize(bmap);
8908 error:
8909 isl_basic_map_free(bmap);
8910 return NULL;
8914 * returns [domain -> range] -> range - domain
8916 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
8918 if (isl_map_check_transformation(map) < 0)
8919 return isl_map_free(map);
8921 return isl_map_transform(map, &isl_space_range_map,
8922 &isl_basic_map_deltas_map);
8925 /* Return pairs of elements { x -> y } such that y - x is in "deltas".
8927 __isl_give isl_map *isl_set_translation(__isl_take isl_set *deltas)
8929 isl_space *space;
8930 isl_map *map;
8932 space = isl_space_map_from_set(isl_set_get_space(deltas));
8933 map = isl_map_deltas_map(isl_map_universe(space));
8934 map = isl_map_intersect_range(map, deltas);
8936 return isl_set_unwrap(isl_map_domain(map));
8939 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *space)
8941 isl_size n_in, n_out;
8943 n_in = isl_space_dim(space, isl_dim_in);
8944 n_out = isl_space_dim(space, isl_dim_out);
8945 if (n_in < 0 || n_out < 0)
8946 goto error;
8947 if (n_in != n_out)
8948 isl_die(space->ctx, isl_error_invalid,
8949 "number of input and output dimensions needs to be "
8950 "the same", goto error);
8951 return isl_basic_map_equal(space, n_in);
8952 error:
8953 isl_space_free(space);
8954 return NULL;
8957 __isl_give isl_map *isl_map_identity(__isl_take isl_space *space)
8959 return isl_map_from_basic_map(isl_basic_map_identity(space));
8962 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
8964 isl_space *space = isl_set_get_space(set);
8965 isl_map *id;
8966 id = isl_map_identity(isl_space_map_from_set(space));
8967 return isl_map_intersect_range(id, set);
8970 /* Construct a basic set with all set dimensions having only non-negative
8971 * values.
8973 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
8974 __isl_take isl_space *space)
8976 int i;
8977 isl_size nparam;
8978 isl_size dim;
8979 isl_size total;
8980 struct isl_basic_set *bset;
8982 nparam = isl_space_dim(space, isl_dim_param);
8983 dim = isl_space_dim(space, isl_dim_set);
8984 total = isl_space_dim(space, isl_dim_all);
8985 if (nparam < 0 || dim < 0 || total < 0)
8986 space = isl_space_free(space);
8987 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
8988 if (!bset)
8989 return NULL;
8990 for (i = 0; i < dim; ++i) {
8991 int k = isl_basic_set_alloc_inequality(bset);
8992 if (k < 0)
8993 goto error;
8994 isl_seq_clr(bset->ineq[k], 1 + total);
8995 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
8997 return bset;
8998 error:
8999 isl_basic_set_free(bset);
9000 return NULL;
9003 /* Construct the half-space x_pos >= 0.
9005 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *space,
9006 int pos)
9008 int k;
9009 isl_size total;
9010 isl_basic_set *nonneg;
9012 total = isl_space_dim(space, isl_dim_all);
9013 if (total < 0)
9014 space = isl_space_free(space);
9015 nonneg = isl_basic_set_alloc_space(space, 0, 0, 1);
9016 k = isl_basic_set_alloc_inequality(nonneg);
9017 if (k < 0)
9018 goto error;
9019 isl_seq_clr(nonneg->ineq[k], 1 + total);
9020 isl_int_set_si(nonneg->ineq[k][pos], 1);
9022 return isl_basic_set_finalize(nonneg);
9023 error:
9024 isl_basic_set_free(nonneg);
9025 return NULL;
9028 /* Construct the half-space x_pos <= -1.
9030 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *space,
9031 int pos)
9033 int k;
9034 isl_size total;
9035 isl_basic_set *neg;
9037 total = isl_space_dim(space, isl_dim_all);
9038 if (total < 0)
9039 space = isl_space_free(space);
9040 neg = isl_basic_set_alloc_space(space, 0, 0, 1);
9041 k = isl_basic_set_alloc_inequality(neg);
9042 if (k < 0)
9043 goto error;
9044 isl_seq_clr(neg->ineq[k], 1 + total);
9045 isl_int_set_si(neg->ineq[k][0], -1);
9046 isl_int_set_si(neg->ineq[k][pos], -1);
9048 return isl_basic_set_finalize(neg);
9049 error:
9050 isl_basic_set_free(neg);
9051 return NULL;
9054 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
9055 enum isl_dim_type type, unsigned first, unsigned n)
9057 int i;
9058 unsigned offset;
9059 isl_basic_set *nonneg;
9060 isl_basic_set *neg;
9062 if (n == 0)
9063 return set;
9065 if (isl_set_check_range(set, type, first, n) < 0)
9066 return isl_set_free(set);
9068 offset = pos(set->dim, type);
9069 for (i = 0; i < n; ++i) {
9070 nonneg = nonneg_halfspace(isl_set_get_space(set),
9071 offset + first + i);
9072 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
9074 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
9077 return set;
9080 static isl_stat foreach_orthant(__isl_take isl_set *set, int *signs, int first,
9081 int len,
9082 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
9083 void *user)
9085 isl_set *half;
9087 if (!set)
9088 return isl_stat_error;
9089 if (isl_set_plain_is_empty(set)) {
9090 isl_set_free(set);
9091 return isl_stat_ok;
9093 if (first == len)
9094 return fn(set, signs, user);
9096 signs[first] = 1;
9097 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
9098 1 + first));
9099 half = isl_set_intersect(half, isl_set_copy(set));
9100 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
9101 goto error;
9103 signs[first] = -1;
9104 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
9105 1 + first));
9106 half = isl_set_intersect(half, set);
9107 return foreach_orthant(half, signs, first + 1, len, fn, user);
9108 error:
9109 isl_set_free(set);
9110 return isl_stat_error;
9113 /* Call "fn" on the intersections of "set" with each of the orthants
9114 * (except for obviously empty intersections). The orthant is identified
9115 * by the signs array, with each entry having value 1 or -1 according
9116 * to the sign of the corresponding variable.
9118 isl_stat isl_set_foreach_orthant(__isl_keep isl_set *set,
9119 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
9120 void *user)
9122 isl_size nparam;
9123 isl_size nvar;
9124 int *signs;
9125 isl_stat r;
9127 if (!set)
9128 return isl_stat_error;
9129 if (isl_set_plain_is_empty(set))
9130 return isl_stat_ok;
9132 nparam = isl_set_dim(set, isl_dim_param);
9133 nvar = isl_set_dim(set, isl_dim_set);
9134 if (nparam < 0 || nvar < 0)
9135 return isl_stat_error;
9137 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
9139 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
9140 fn, user);
9142 free(signs);
9144 return r;
9147 isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
9149 return isl_map_is_equal(set_to_map(set1), set_to_map(set2));
9152 isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
9153 __isl_keep isl_basic_map *bmap2)
9155 isl_bool is_subset;
9156 struct isl_map *map1;
9157 struct isl_map *map2;
9159 if (!bmap1 || !bmap2)
9160 return isl_bool_error;
9162 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
9163 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
9165 is_subset = isl_map_is_subset(map1, map2);
9167 isl_map_free(map1);
9168 isl_map_free(map2);
9170 return is_subset;
9173 isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
9174 __isl_keep isl_basic_set *bset2)
9176 return isl_basic_map_is_subset(bset1, bset2);
9179 isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
9180 __isl_keep isl_basic_map *bmap2)
9182 isl_bool is_subset;
9184 if (!bmap1 || !bmap2)
9185 return isl_bool_error;
9186 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
9187 if (is_subset != isl_bool_true)
9188 return is_subset;
9189 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
9190 return is_subset;
9193 isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
9194 __isl_keep isl_basic_set *bset2)
9196 return isl_basic_map_is_equal(
9197 bset_to_bmap(bset1), bset_to_bmap(bset2));
9200 isl_bool isl_map_is_empty(__isl_keep isl_map *map)
9202 int i;
9203 int is_empty;
9205 if (!map)
9206 return isl_bool_error;
9207 for (i = 0; i < map->n; ++i) {
9208 is_empty = isl_basic_map_is_empty(map->p[i]);
9209 if (is_empty < 0)
9210 return isl_bool_error;
9211 if (!is_empty)
9212 return isl_bool_false;
9214 return isl_bool_true;
9217 isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
9219 return map ? map->n == 0 : isl_bool_error;
9222 isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
9224 return set ? set->n == 0 : isl_bool_error;
9227 isl_bool isl_set_is_empty(__isl_keep isl_set *set)
9229 return isl_map_is_empty(set_to_map(set));
9232 #undef TYPE
9233 #define TYPE isl_basic_map
9235 static
9236 #include "isl_type_has_equal_space_bin_templ.c"
9237 #include "isl_type_check_equal_space_templ.c"
9239 /* Check that "bset1" and "bset2" live in the same space,
9240 * reporting an error if they do not.
9242 isl_stat isl_basic_set_check_equal_space(__isl_keep isl_basic_set *bset1,
9243 __isl_keep isl_basic_set *bset2)
9245 return isl_basic_map_check_equal_space(bset_to_bmap(bset1),
9246 bset_to_bmap(bset1));
9249 #undef TYPE
9250 #define TYPE isl_map
9252 #include "isl_type_has_equal_space_bin_templ.c"
9253 #include "isl_type_check_equal_space_templ.c"
9254 #include "isl_type_has_space_templ.c"
9256 isl_bool isl_set_has_equal_space(__isl_keep isl_set *set1,
9257 __isl_keep isl_set *set2)
9259 return isl_map_has_equal_space(set_to_map(set1), set_to_map(set2));
9262 #undef TYPE1
9263 #define TYPE1 isl_map
9264 #undef TYPE2
9265 #define TYPE2 isl_basic_map
9266 #undef TYPE_PAIR
9267 #define TYPE_PAIR isl_map_basic_map
9269 static
9270 #include "isl_type_has_equal_space_templ.c"
9271 #include "isl_type_check_equal_space_templ.c"
9273 /* Check that "set" and "bset" live in the same space,
9274 * reporting an error if they do not.
9276 isl_stat isl_set_basic_set_check_equal_space(__isl_keep isl_set *set,
9277 __isl_keep isl_basic_set *bset)
9279 return isl_map_basic_map_check_equal_space(set_to_map(set),
9280 bset_to_bmap(bset));
9283 static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
9285 isl_bool is_subset;
9287 if (!map1 || !map2)
9288 return isl_bool_error;
9289 is_subset = isl_map_is_subset(map1, map2);
9290 if (is_subset != isl_bool_true)
9291 return is_subset;
9292 is_subset = isl_map_is_subset(map2, map1);
9293 return is_subset;
9296 /* Is "map1" equal to "map2"?
9298 * First check if they are obviously equal.
9299 * If not, then perform a more detailed analysis.
9301 isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
9303 isl_bool equal;
9305 equal = isl_map_plain_is_equal(map1, map2);
9306 if (equal < 0 || equal)
9307 return equal;
9308 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
9311 isl_bool isl_basic_map_is_strict_subset(__isl_keep isl_basic_map *bmap1,
9312 __isl_keep isl_basic_map *bmap2)
9314 isl_bool is_subset;
9316 if (!bmap1 || !bmap2)
9317 return isl_bool_error;
9318 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
9319 if (is_subset != isl_bool_true)
9320 return is_subset;
9321 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
9322 return isl_bool_not(is_subset);
9325 isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
9326 __isl_keep isl_map *map2)
9328 isl_bool is_subset;
9330 if (!map1 || !map2)
9331 return isl_bool_error;
9332 is_subset = isl_map_is_subset(map1, map2);
9333 if (is_subset != isl_bool_true)
9334 return is_subset;
9335 is_subset = isl_map_is_subset(map2, map1);
9336 return isl_bool_not(is_subset);
9339 isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
9340 __isl_keep isl_set *set2)
9342 return isl_map_is_strict_subset(set_to_map(set1), set_to_map(set2));
9345 /* Is "bmap" obviously equal to the universe with the same space?
9347 * That is, does it not have any constraints?
9349 isl_bool isl_basic_map_plain_is_universe(__isl_keep isl_basic_map *bmap)
9351 if (!bmap)
9352 return isl_bool_error;
9353 return bmap->n_eq == 0 && bmap->n_ineq == 0;
9356 /* Is "bset" obviously equal to the universe with the same space?
9358 isl_bool isl_basic_set_plain_is_universe(__isl_keep isl_basic_set *bset)
9360 return isl_basic_map_plain_is_universe(bset);
9363 /* If "c" does not involve any existentially quantified variables,
9364 * then set *univ to false and abort
9366 static isl_stat involves_divs(__isl_take isl_constraint *c, void *user)
9368 isl_bool *univ = user;
9369 isl_size n;
9371 n = isl_constraint_dim(c, isl_dim_div);
9372 if (n < 0)
9373 c = isl_constraint_free(c);
9374 *univ = isl_constraint_involves_dims(c, isl_dim_div, 0, n);
9375 isl_constraint_free(c);
9376 if (*univ < 0 || !*univ)
9377 return isl_stat_error;
9378 return isl_stat_ok;
9381 /* Is "bmap" equal to the universe with the same space?
9383 * First check if it is obviously equal to the universe.
9384 * If not and if there are any constraints not involving
9385 * existentially quantified variables, then it is certainly
9386 * not equal to the universe.
9387 * Otherwise, check if the universe is a subset of "bmap".
9389 isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
9391 isl_size n_div;
9392 isl_bool univ;
9393 isl_basic_map *test;
9395 univ = isl_basic_map_plain_is_universe(bmap);
9396 if (univ < 0 || univ)
9397 return univ;
9398 n_div = isl_basic_map_dim(bmap, isl_dim_div);
9399 if (n_div < 0)
9400 return isl_bool_error;
9401 if (n_div == 0)
9402 return isl_bool_false;
9403 univ = isl_bool_true;
9404 if (isl_basic_map_foreach_constraint(bmap, &involves_divs, &univ) < 0 &&
9405 univ)
9406 return isl_bool_error;
9407 if (univ < 0 || !univ)
9408 return univ;
9409 test = isl_basic_map_universe(isl_basic_map_get_space(bmap));
9410 univ = isl_basic_map_is_subset(test, bmap);
9411 isl_basic_map_free(test);
9412 return univ;
9415 /* Is "bset" equal to the universe with the same space?
9417 isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
9419 return isl_basic_map_is_universe(bset);
9422 isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
9424 int i;
9426 if (!map)
9427 return isl_bool_error;
9429 for (i = 0; i < map->n; ++i) {
9430 isl_bool r = isl_basic_map_plain_is_universe(map->p[i]);
9431 if (r < 0 || r)
9432 return r;
9435 return isl_bool_false;
9438 isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
9440 return isl_map_plain_is_universe(set_to_map(set));
9443 isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
9445 struct isl_basic_set *bset = NULL;
9446 struct isl_vec *sample = NULL;
9447 isl_bool empty, non_empty;
9449 if (!bmap)
9450 return isl_bool_error;
9452 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
9453 return isl_bool_true;
9455 if (isl_basic_map_plain_is_universe(bmap))
9456 return isl_bool_false;
9458 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
9459 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
9460 copy = isl_basic_map_remove_redundancies(copy);
9461 empty = isl_basic_map_plain_is_empty(copy);
9462 isl_basic_map_free(copy);
9463 return empty;
9466 non_empty = isl_basic_map_plain_is_non_empty(bmap);
9467 if (non_empty < 0)
9468 return isl_bool_error;
9469 if (non_empty)
9470 return isl_bool_false;
9471 isl_vec_free(bmap->sample);
9472 bmap->sample = NULL;
9473 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
9474 if (!bset)
9475 return isl_bool_error;
9476 sample = isl_basic_set_sample_vec(bset);
9477 if (!sample)
9478 return isl_bool_error;
9479 empty = sample->size == 0;
9480 isl_vec_free(bmap->sample);
9481 bmap->sample = sample;
9482 if (empty)
9483 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
9485 return empty;
9488 isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
9490 if (!bmap)
9491 return isl_bool_error;
9492 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
9495 isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
9497 if (!bset)
9498 return isl_bool_error;
9499 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
9502 /* Is "bmap" known to be non-empty?
9504 * That is, is the cached sample still valid?
9506 isl_bool isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map *bmap)
9508 isl_size total;
9510 if (!bmap)
9511 return isl_bool_error;
9512 if (!bmap->sample)
9513 return isl_bool_false;
9514 total = isl_basic_map_dim(bmap, isl_dim_all);
9515 if (total < 0)
9516 return isl_bool_error;
9517 if (bmap->sample->size != 1 + total)
9518 return isl_bool_false;
9519 return isl_basic_map_contains(bmap, bmap->sample);
9522 isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
9524 return isl_basic_map_is_empty(bset_to_bmap(bset));
9527 __isl_give isl_map *isl_basic_map_union(__isl_take isl_basic_map *bmap1,
9528 __isl_take isl_basic_map *bmap2)
9530 struct isl_map *map;
9532 if (isl_basic_map_check_equal_space(bmap1, bmap2) < 0)
9533 goto error;
9535 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
9536 if (!map)
9537 goto error;
9538 map = isl_map_add_basic_map(map, bmap1);
9539 map = isl_map_add_basic_map(map, bmap2);
9540 return map;
9541 error:
9542 isl_basic_map_free(bmap1);
9543 isl_basic_map_free(bmap2);
9544 return NULL;
9547 __isl_give isl_set *isl_basic_set_union(__isl_take isl_basic_set *bset1,
9548 __isl_take isl_basic_set *bset2)
9550 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1),
9551 bset_to_bmap(bset2)));
9554 /* Order divs such that any div only depends on previous divs */
9555 __isl_give isl_basic_map *isl_basic_map_order_divs(
9556 __isl_take isl_basic_map *bmap)
9558 int i;
9559 isl_size off;
9561 off = isl_basic_map_var_offset(bmap, isl_dim_div);
9562 if (off < 0)
9563 return isl_basic_map_free(bmap);
9565 for (i = 0; i < bmap->n_div; ++i) {
9566 int pos;
9567 if (isl_int_is_zero(bmap->div[i][0]))
9568 continue;
9569 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
9570 bmap->n_div-i);
9571 if (pos == -1)
9572 continue;
9573 if (pos == 0)
9574 isl_die(isl_basic_map_get_ctx(bmap), isl_error_internal,
9575 "integer division depends on itself",
9576 return isl_basic_map_free(bmap));
9577 bmap = isl_basic_map_swap_div(bmap, i, i + pos);
9578 if (!bmap)
9579 return NULL;
9580 --i;
9582 return bmap;
9585 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
9587 int i;
9589 if (!map)
9590 return 0;
9592 for (i = 0; i < map->n; ++i) {
9593 map->p[i] = isl_basic_map_order_divs(map->p[i]);
9594 if (!map->p[i])
9595 goto error;
9598 return map;
9599 error:
9600 isl_map_free(map);
9601 return NULL;
9604 /* Sort the local variables of "bset".
9606 __isl_give isl_basic_set *isl_basic_set_sort_divs(
9607 __isl_take isl_basic_set *bset)
9609 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset)));
9612 /* Apply the expansion computed by isl_merge_divs.
9613 * The expansion itself is given by "exp" while the resulting
9614 * list of divs is given by "div".
9616 * Move the integer divisions of "bmap" into the right position
9617 * according to "exp" and then introduce the additional integer
9618 * divisions, adding div constraints.
9619 * The moving should be done first to avoid moving coefficients
9620 * in the definitions of the extra integer divisions.
9622 __isl_give isl_basic_map *isl_basic_map_expand_divs(
9623 __isl_take isl_basic_map *bmap, __isl_take isl_mat *div, int *exp)
9625 int i, j;
9626 int n_div;
9628 bmap = isl_basic_map_cow(bmap);
9629 if (!bmap || !div)
9630 goto error;
9632 if (div->n_row < bmap->n_div)
9633 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
9634 "not an expansion", goto error);
9636 n_div = bmap->n_div;
9637 bmap = isl_basic_map_extend(bmap, div->n_row - n_div, 0,
9638 2 * (div->n_row - n_div));
9640 for (i = n_div; i < div->n_row; ++i)
9641 if (isl_basic_map_alloc_div(bmap) < 0)
9642 goto error;
9644 for (j = n_div - 1; j >= 0; --j) {
9645 if (exp[j] == j)
9646 break;
9647 bmap = isl_basic_map_swap_div(bmap, j, exp[j]);
9648 if (!bmap)
9649 goto error;
9651 j = 0;
9652 for (i = 0; i < div->n_row; ++i) {
9653 if (j < n_div && exp[j] == i) {
9654 j++;
9655 } else {
9656 isl_seq_cpy(bmap->div[i], div->row[i], div->n_col);
9657 if (isl_basic_map_div_is_marked_unknown(bmap, i))
9658 continue;
9659 bmap = isl_basic_map_add_div_constraints(bmap, i);
9660 if (!bmap)
9661 goto error;
9665 isl_mat_free(div);
9666 return bmap;
9667 error:
9668 isl_basic_map_free(bmap);
9669 isl_mat_free(div);
9670 return NULL;
9673 /* Apply the expansion computed by isl_merge_divs.
9674 * The expansion itself is given by "exp" while the resulting
9675 * list of divs is given by "div".
9677 __isl_give isl_basic_set *isl_basic_set_expand_divs(
9678 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
9680 return isl_basic_map_expand_divs(bset, div, exp);
9683 /* Look for a div in dst that corresponds to the div "div" in src.
9684 * The divs before "div" in src and dst are assumed to be the same.
9686 * Return the position of the corresponding div in dst
9687 * if there is one. Otherwise, return a position beyond the integer divisions.
9688 * Return -1 on error.
9690 static int find_div(__isl_keep isl_basic_map *dst,
9691 __isl_keep isl_basic_map *src, unsigned div)
9693 int i;
9694 isl_size n_div;
9695 isl_size v_div;
9697 v_div = isl_basic_map_var_offset(src, isl_dim_div);
9698 n_div = isl_basic_map_dim(dst, isl_dim_div);
9699 if (n_div < 0 || v_div < 0)
9700 return -1;
9701 isl_assert(dst->ctx, div <= n_div, return -1);
9702 for (i = div; i < n_div; ++i)
9703 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+v_div+div) &&
9704 isl_seq_first_non_zero(dst->div[i] + 1 + 1 + v_div + div,
9705 n_div - div) == -1)
9706 return i;
9707 return n_div;
9710 /* Align the divs of "dst" to those of "src", adding divs from "src"
9711 * if needed. That is, make sure that the first src->n_div divs
9712 * of the result are equal to those of src.
9713 * The integer division of "src" are assumed to be ordered.
9715 * The integer divisions are swapped into the right position
9716 * (possibly after adding them first). This may result
9717 * in the remaining integer divisions appearing in the wrong order,
9718 * i.e., with some integer division appearing before
9719 * some other integer division on which it depends.
9720 * The integer divisions therefore need to be ordered.
9721 * This will not affect the integer divisions aligned to those of "src",
9722 * since "src" is assumed to have ordered integer divisions.
9724 * The result is not finalized as by design it will have redundant
9725 * divs if any divs from "src" were copied.
9727 __isl_give isl_basic_map *isl_basic_map_align_divs(
9728 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
9730 int i;
9731 isl_bool known;
9732 int extended;
9733 isl_size v_div;
9734 isl_size dst_n_div;
9736 if (!dst || !src)
9737 return isl_basic_map_free(dst);
9739 if (src->n_div == 0)
9740 return dst;
9742 known = isl_basic_map_divs_known(src);
9743 if (known < 0)
9744 return isl_basic_map_free(dst);
9745 if (!known)
9746 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
9747 "some src divs are unknown",
9748 return isl_basic_map_free(dst));
9750 v_div = isl_basic_map_var_offset(src, isl_dim_div);
9751 if (v_div < 0)
9752 return isl_basic_map_free(dst);
9754 extended = 0;
9755 dst_n_div = isl_basic_map_dim(dst, isl_dim_div);
9756 if (dst_n_div < 0)
9757 dst = isl_basic_map_free(dst);
9758 for (i = 0; i < src->n_div; ++i) {
9759 int j = find_div(dst, src, i);
9760 if (j < 0)
9761 dst = isl_basic_map_free(dst);
9762 if (j == dst_n_div) {
9763 if (!extended) {
9764 int extra = src->n_div - i;
9765 dst = isl_basic_map_cow(dst);
9766 if (!dst)
9767 return isl_basic_map_free(dst);
9768 dst = isl_basic_map_extend(dst,
9769 extra, 0, 2 * extra);
9770 extended = 1;
9772 j = isl_basic_map_alloc_div(dst);
9773 if (j < 0)
9774 return isl_basic_map_free(dst);
9775 isl_seq_cpy(dst->div[j], src->div[i], 1+1+v_div+i);
9776 isl_seq_clr(dst->div[j]+1+1+v_div+i, dst->n_div - i);
9777 dst_n_div++;
9778 dst = isl_basic_map_add_div_constraints(dst, j);
9779 if (!dst)
9780 return isl_basic_map_free(dst);
9782 if (j != i)
9783 dst = isl_basic_map_swap_div(dst, i, j);
9784 if (!dst)
9785 return isl_basic_map_free(dst);
9787 return isl_basic_map_order_divs(dst);
9790 __isl_give isl_map *isl_map_align_divs_internal(__isl_take isl_map *map)
9792 int i;
9794 if (!map)
9795 return NULL;
9796 if (map->n == 0)
9797 return map;
9798 map = isl_map_compute_divs(map);
9799 map = isl_map_order_divs(map);
9800 map = isl_map_cow(map);
9801 if (!map)
9802 return NULL;
9804 for (i = 1; i < map->n; ++i)
9805 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
9806 for (i = 1; i < map->n; ++i) {
9807 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
9808 if (!map->p[i])
9809 return isl_map_free(map);
9812 map = isl_map_unmark_normalized(map);
9813 return map;
9816 __isl_give isl_map *isl_map_align_divs(__isl_take isl_map *map)
9818 return isl_map_align_divs_internal(map);
9821 __isl_give isl_set *isl_set_align_divs(__isl_take isl_set *set)
9823 return set_from_map(isl_map_align_divs_internal(set_to_map(set)));
9826 /* Align the divs of the basic maps in "map" to those
9827 * of the basic maps in "list", as well as to the other basic maps in "map".
9828 * The elements in "list" are assumed to have known divs.
9830 __isl_give isl_map *isl_map_align_divs_to_basic_map_list(
9831 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
9833 int i;
9834 isl_size n;
9836 n = isl_basic_map_list_n_basic_map(list);
9837 map = isl_map_compute_divs(map);
9838 map = isl_map_cow(map);
9839 if (!map || n < 0)
9840 return isl_map_free(map);
9841 if (map->n == 0)
9842 return map;
9844 for (i = 0; i < n; ++i) {
9845 isl_basic_map *bmap;
9847 bmap = isl_basic_map_list_get_basic_map(list, i);
9848 bmap = isl_basic_map_order_divs(bmap);
9849 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
9850 isl_basic_map_free(bmap);
9852 if (!map->p[0])
9853 return isl_map_free(map);
9855 return isl_map_align_divs_internal(map);
9858 /* Align the divs of each element of "list" to those of "bmap".
9859 * Both "bmap" and the elements of "list" are assumed to have known divs.
9861 __isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
9862 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
9864 int i;
9865 isl_size n;
9867 n = isl_basic_map_list_n_basic_map(list);
9868 if (n < 0 || !bmap)
9869 return isl_basic_map_list_free(list);
9871 for (i = 0; i < n; ++i) {
9872 isl_basic_map *bmap_i;
9874 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9875 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
9876 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
9879 return list;
9882 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
9883 __isl_take isl_map *map)
9885 isl_bool ok;
9887 isl_map_align_params_set(&map, &set);
9888 ok = isl_map_compatible_domain(map, set);
9889 if (ok < 0)
9890 goto error;
9891 if (!ok)
9892 isl_die(isl_set_get_ctx(set), isl_error_invalid,
9893 "incompatible spaces", goto error);
9894 map = isl_map_intersect_domain(map, set);
9895 set = isl_map_range(map);
9896 return set;
9897 error:
9898 isl_set_free(set);
9899 isl_map_free(map);
9900 return NULL;
9903 /* There is no need to cow as removing empty parts doesn't change
9904 * the meaning of the set.
9906 __isl_give isl_map *isl_map_remove_empty_parts(__isl_take isl_map *map)
9908 int i;
9910 if (!map)
9911 return NULL;
9913 for (i = map->n - 1; i >= 0; --i)
9914 map = remove_if_empty(map, i);
9916 return map;
9919 __isl_give isl_set *isl_set_remove_empty_parts(__isl_take isl_set *set)
9921 return set_from_map(isl_map_remove_empty_parts(set_to_map(set)));
9924 /* Create a binary relation that maps the shared initial "pos" dimensions
9925 * of "bset1" and "bset2" to the remaining dimensions of "bset1" and "bset2".
9927 static __isl_give isl_basic_map *join_initial(__isl_keep isl_basic_set *bset1,
9928 __isl_keep isl_basic_set *bset2, int pos)
9930 isl_basic_map *bmap1;
9931 isl_basic_map *bmap2;
9933 bmap1 = isl_basic_map_from_range(isl_basic_set_copy(bset1));
9934 bmap2 = isl_basic_map_from_range(isl_basic_set_copy(bset2));
9935 bmap1 = isl_basic_map_move_dims(bmap1, isl_dim_in, 0,
9936 isl_dim_out, 0, pos);
9937 bmap2 = isl_basic_map_move_dims(bmap2, isl_dim_in, 0,
9938 isl_dim_out, 0, pos);
9939 return isl_basic_map_range_product(bmap1, bmap2);
9942 /* Given two basic sets bset1 and bset2, compute the maximal difference
9943 * between the values of dimension pos in bset1 and those in bset2
9944 * for any common value of the parameters and dimensions preceding pos.
9946 static enum isl_lp_result basic_set_maximal_difference_at(
9947 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
9948 int pos, isl_int *opt)
9950 isl_basic_map *bmap1;
9951 struct isl_ctx *ctx;
9952 struct isl_vec *obj;
9953 isl_size total;
9954 isl_size nparam;
9955 isl_size dim1;
9956 enum isl_lp_result res;
9958 nparam = isl_basic_set_dim(bset1, isl_dim_param);
9959 dim1 = isl_basic_set_dim(bset1, isl_dim_set);
9960 if (nparam < 0 || dim1 < 0 || !bset2)
9961 return isl_lp_error;
9963 bmap1 = join_initial(bset1, bset2, pos);
9964 total = isl_basic_map_dim(bmap1, isl_dim_all);
9965 if (total < 0)
9966 return isl_lp_error;
9968 ctx = bmap1->ctx;
9969 obj = isl_vec_alloc(ctx, 1 + total);
9970 if (!obj)
9971 goto error;
9972 isl_seq_clr(obj->block.data, 1 + total);
9973 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
9974 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
9975 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
9976 opt, NULL, NULL);
9977 isl_basic_map_free(bmap1);
9978 isl_vec_free(obj);
9979 return res;
9980 error:
9981 isl_basic_map_free(bmap1);
9982 return isl_lp_error;
9985 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
9986 * for any common value of the parameters and dimensions preceding pos
9987 * in both basic sets, the values of dimension pos in bset1 are
9988 * smaller or larger than those in bset2.
9990 * Returns
9991 * 1 if bset1 follows bset2
9992 * -1 if bset1 precedes bset2
9993 * 0 if bset1 and bset2 are incomparable
9994 * -2 if some error occurred.
9996 int isl_basic_set_compare_at(__isl_keep isl_basic_set *bset1,
9997 __isl_keep isl_basic_set *bset2, int pos)
9999 isl_int opt;
10000 enum isl_lp_result res;
10001 int cmp;
10003 isl_int_init(opt);
10005 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
10007 if (res == isl_lp_empty)
10008 cmp = 0;
10009 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
10010 res == isl_lp_unbounded)
10011 cmp = 1;
10012 else if (res == isl_lp_ok && isl_int_is_neg(opt))
10013 cmp = -1;
10014 else
10015 cmp = -2;
10017 isl_int_clear(opt);
10018 return cmp;
10021 /* Given two basic sets bset1 and bset2, check whether
10022 * for any common value of the parameters and dimensions preceding pos
10023 * there is a value of dimension pos in bset1 that is larger
10024 * than a value of the same dimension in bset2.
10026 * Return
10027 * 1 if there exists such a pair
10028 * 0 if there is no such pair, but there is a pair of equal values
10029 * -1 otherwise
10030 * -2 if some error occurred.
10032 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
10033 __isl_keep isl_basic_set *bset2, int pos)
10035 isl_bool empty;
10036 isl_basic_map *bmap;
10037 isl_size dim1;
10039 dim1 = isl_basic_set_dim(bset1, isl_dim_set);
10040 if (dim1 < 0)
10041 return -2;
10042 bmap = join_initial(bset1, bset2, pos);
10043 bmap = isl_basic_map_order_ge(bmap, isl_dim_out, 0,
10044 isl_dim_out, dim1 - pos);
10045 empty = isl_basic_map_is_empty(bmap);
10046 if (empty < 0)
10047 goto error;
10048 if (empty) {
10049 isl_basic_map_free(bmap);
10050 return -1;
10052 bmap = isl_basic_map_order_gt(bmap, isl_dim_out, 0,
10053 isl_dim_out, dim1 - pos);
10054 empty = isl_basic_map_is_empty(bmap);
10055 if (empty < 0)
10056 goto error;
10057 isl_basic_map_free(bmap);
10058 if (empty)
10059 return 0;
10060 return 1;
10061 error:
10062 isl_basic_map_free(bmap);
10063 return -2;
10066 /* Given two sets set1 and set2, check whether
10067 * for any common value of the parameters and dimensions preceding pos
10068 * there is a value of dimension pos in set1 that is larger
10069 * than a value of the same dimension in set2.
10071 * Return
10072 * 1 if there exists such a pair
10073 * 0 if there is no such pair, but there is a pair of equal values
10074 * -1 otherwise
10075 * -2 if some error occurred.
10077 int isl_set_follows_at(__isl_keep isl_set *set1,
10078 __isl_keep isl_set *set2, int pos)
10080 int i, j;
10081 int follows = -1;
10083 if (!set1 || !set2)
10084 return -2;
10086 for (i = 0; i < set1->n; ++i)
10087 for (j = 0; j < set2->n; ++j) {
10088 int f;
10089 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
10090 if (f == 1 || f == -2)
10091 return f;
10092 if (f > follows)
10093 follows = f;
10096 return follows;
10099 static isl_bool isl_basic_map_plain_has_fixed_var(
10100 __isl_keep isl_basic_map *bmap, unsigned pos, isl_int *val)
10102 int i;
10103 int d;
10104 isl_size total;
10106 total = isl_basic_map_dim(bmap, isl_dim_all);
10107 if (total < 0)
10108 return isl_bool_error;
10109 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
10110 for (; d+1 > pos; --d)
10111 if (!isl_int_is_zero(bmap->eq[i][1+d]))
10112 break;
10113 if (d != pos)
10114 continue;
10115 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
10116 return isl_bool_false;
10117 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
10118 return isl_bool_false;
10119 if (!isl_int_is_one(bmap->eq[i][1+d]))
10120 return isl_bool_false;
10121 if (val)
10122 isl_int_neg(*val, bmap->eq[i][0]);
10123 return isl_bool_true;
10125 return isl_bool_false;
10128 static isl_bool isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
10129 unsigned pos, isl_int *val)
10131 int i;
10132 isl_int v;
10133 isl_int tmp;
10134 isl_bool fixed;
10136 if (!map)
10137 return isl_bool_error;
10138 if (map->n == 0)
10139 return isl_bool_false;
10140 if (map->n == 1)
10141 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
10142 isl_int_init(v);
10143 isl_int_init(tmp);
10144 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
10145 for (i = 1; fixed == isl_bool_true && i < map->n; ++i) {
10146 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
10147 if (fixed == isl_bool_true && isl_int_ne(tmp, v))
10148 fixed = isl_bool_false;
10150 if (val)
10151 isl_int_set(*val, v);
10152 isl_int_clear(tmp);
10153 isl_int_clear(v);
10154 return fixed;
10157 static isl_bool isl_basic_set_plain_has_fixed_var(
10158 __isl_keep isl_basic_set *bset, unsigned pos, isl_int *val)
10160 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset),
10161 pos, val);
10164 isl_bool isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
10165 enum isl_dim_type type, unsigned pos, isl_int *val)
10167 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
10168 return isl_bool_error;
10169 return isl_basic_map_plain_has_fixed_var(bmap,
10170 isl_basic_map_offset(bmap, type) - 1 + pos, val);
10173 /* If "bmap" obviously lies on a hyperplane where the given dimension
10174 * has a fixed value, then return that value.
10175 * Otherwise return NaN.
10177 __isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
10178 __isl_keep isl_basic_map *bmap,
10179 enum isl_dim_type type, unsigned pos)
10181 isl_ctx *ctx;
10182 isl_val *v;
10183 isl_bool fixed;
10185 if (!bmap)
10186 return NULL;
10187 ctx = isl_basic_map_get_ctx(bmap);
10188 v = isl_val_alloc(ctx);
10189 if (!v)
10190 return NULL;
10191 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
10192 if (fixed < 0)
10193 return isl_val_free(v);
10194 if (fixed) {
10195 isl_int_set_si(v->d, 1);
10196 return v;
10198 isl_val_free(v);
10199 return isl_val_nan(ctx);
10202 isl_bool isl_map_plain_is_fixed(__isl_keep isl_map *map,
10203 enum isl_dim_type type, unsigned pos, isl_int *val)
10205 if (isl_map_check_range(map, type, pos, 1) < 0)
10206 return isl_bool_error;
10207 return isl_map_plain_has_fixed_var(map,
10208 map_offset(map, type) - 1 + pos, val);
10211 /* If "map" obviously lies on a hyperplane where the given dimension
10212 * has a fixed value, then return that value.
10213 * Otherwise return NaN.
10215 __isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
10216 enum isl_dim_type type, unsigned pos)
10218 isl_ctx *ctx;
10219 isl_val *v;
10220 isl_bool fixed;
10222 if (!map)
10223 return NULL;
10224 ctx = isl_map_get_ctx(map);
10225 v = isl_val_alloc(ctx);
10226 if (!v)
10227 return NULL;
10228 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
10229 if (fixed < 0)
10230 return isl_val_free(v);
10231 if (fixed) {
10232 isl_int_set_si(v->d, 1);
10233 return v;
10235 isl_val_free(v);
10236 return isl_val_nan(ctx);
10239 /* If "set" obviously lies on a hyperplane where the given dimension
10240 * has a fixed value, then return that value.
10241 * Otherwise return NaN.
10243 __isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
10244 enum isl_dim_type type, unsigned pos)
10246 return isl_map_plain_get_val_if_fixed(set, type, pos);
10249 /* Return a sequence of values in the same space as "set"
10250 * that are equal to the corresponding set dimensions of "set"
10251 * for those set dimensions that obviously lie on a hyperplane
10252 * where the dimension has a fixed value.
10253 * The other elements are set to NaN.
10255 __isl_give isl_multi_val *isl_set_get_plain_multi_val_if_fixed(
10256 __isl_keep isl_set *set)
10258 int i;
10259 isl_size n;
10260 isl_space *space;
10261 isl_multi_val *mv;
10263 space = isl_space_drop_all_params(isl_set_get_space(set));
10264 mv = isl_multi_val_alloc(space);
10265 n = isl_multi_val_size(mv);
10266 if (n < 0)
10267 return isl_multi_val_free(mv);
10269 for (i = 0; i < n; ++i) {
10270 isl_val *v;
10272 v = isl_set_plain_get_val_if_fixed(set, isl_dim_set, i);
10273 mv = isl_multi_val_set_val(mv, i, v);
10276 return mv;
10279 /* Check if dimension dim has fixed value and if so and if val is not NULL,
10280 * then return this fixed value in *val.
10282 isl_bool isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
10283 unsigned dim, isl_int *val)
10285 isl_size nparam;
10287 nparam = isl_basic_set_dim(bset, isl_dim_param);
10288 if (nparam < 0)
10289 return isl_bool_error;
10290 return isl_basic_set_plain_has_fixed_var(bset, nparam + dim, val);
10293 /* Return -1 if the constraint "c1" should be sorted before "c2"
10294 * and 1 if it should be sorted after "c2".
10295 * Return 0 if the two constraints are the same (up to the constant term).
10297 * In particular, if a constraint involves later variables than another
10298 * then it is sorted after this other constraint.
10299 * uset_gist depends on constraints without existentially quantified
10300 * variables sorting first.
10302 * For constraints that have the same latest variable, those
10303 * with the same coefficient for this latest variable (first in absolute value
10304 * and then in actual value) are grouped together.
10305 * This is useful for detecting pairs of constraints that can
10306 * be chained in their printed representation.
10308 * Finally, within a group, constraints are sorted according to
10309 * their coefficients (excluding the constant term).
10311 static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
10313 isl_int **c1 = (isl_int **) p1;
10314 isl_int **c2 = (isl_int **) p2;
10315 int l1, l2;
10316 unsigned size = *(unsigned *) arg;
10317 int cmp;
10319 l1 = isl_seq_last_non_zero(*c1 + 1, size);
10320 l2 = isl_seq_last_non_zero(*c2 + 1, size);
10322 if (l1 != l2)
10323 return l1 - l2;
10325 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
10326 if (cmp != 0)
10327 return cmp;
10328 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
10329 if (cmp != 0)
10330 return -cmp;
10332 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
10335 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
10336 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
10337 * and 0 if the two constraints are the same (up to the constant term).
10339 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
10340 isl_int *c1, isl_int *c2)
10342 isl_size total;
10343 unsigned size;
10345 total = isl_basic_map_dim(bmap, isl_dim_all);
10346 if (total < 0)
10347 return -2;
10348 size = total;
10349 return sort_constraint_cmp(&c1, &c2, &size);
10352 __isl_give isl_basic_map *isl_basic_map_sort_constraints(
10353 __isl_take isl_basic_map *bmap)
10355 isl_size total;
10356 unsigned size;
10358 if (!bmap)
10359 return NULL;
10360 if (bmap->n_ineq == 0)
10361 return bmap;
10362 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_SORTED))
10363 return bmap;
10364 total = isl_basic_map_dim(bmap, isl_dim_all);
10365 if (total < 0)
10366 return isl_basic_map_free(bmap);
10367 size = total;
10368 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
10369 &sort_constraint_cmp, &size) < 0)
10370 return isl_basic_map_free(bmap);
10371 ISL_F_SET(bmap, ISL_BASIC_MAP_SORTED);
10372 return bmap;
10375 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
10376 __isl_take isl_basic_set *bset)
10378 isl_basic_map *bmap = bset_to_bmap(bset);
10379 return bset_from_bmap(isl_basic_map_sort_constraints(bmap));
10382 __isl_give isl_basic_map *isl_basic_map_normalize(
10383 __isl_take isl_basic_map *bmap)
10385 bmap = isl_basic_map_remove_redundancies(bmap);
10386 bmap = isl_basic_map_sort_constraints(bmap);
10387 return bmap;
10389 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map *bmap1,
10390 __isl_keep isl_basic_map *bmap2)
10392 int i, cmp;
10393 isl_size total;
10394 isl_space *space1, *space2;
10396 if (!bmap1 || !bmap2)
10397 return -1;
10399 if (bmap1 == bmap2)
10400 return 0;
10401 space1 = isl_basic_map_peek_space(bmap1);
10402 space2 = isl_basic_map_peek_space(bmap2);
10403 cmp = isl_space_cmp(space1, space2);
10404 if (cmp)
10405 return cmp;
10406 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
10407 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
10408 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
10409 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
10410 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
10411 return 0;
10412 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
10413 return 1;
10414 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
10415 return -1;
10416 if (bmap1->n_eq != bmap2->n_eq)
10417 return bmap1->n_eq - bmap2->n_eq;
10418 if (bmap1->n_ineq != bmap2->n_ineq)
10419 return bmap1->n_ineq - bmap2->n_ineq;
10420 if (bmap1->n_div != bmap2->n_div)
10421 return bmap1->n_div - bmap2->n_div;
10422 total = isl_basic_map_dim(bmap1, isl_dim_all);
10423 if (total < 0)
10424 return -1;
10425 for (i = 0; i < bmap1->n_eq; ++i) {
10426 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
10427 if (cmp)
10428 return cmp;
10430 for (i = 0; i < bmap1->n_ineq; ++i) {
10431 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
10432 if (cmp)
10433 return cmp;
10435 for (i = 0; i < bmap1->n_div; ++i) {
10436 isl_bool unknown1, unknown2;
10438 unknown1 = isl_basic_map_div_is_marked_unknown(bmap1, i);
10439 unknown2 = isl_basic_map_div_is_marked_unknown(bmap2, i);
10440 if (unknown1 < 0 || unknown2 < 0)
10441 return -1;
10442 if (unknown1 && unknown2)
10443 continue;
10444 if (unknown1)
10445 return 1;
10446 if (unknown2)
10447 return -1;
10448 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
10449 if (cmp)
10450 return cmp;
10452 return 0;
10455 int isl_basic_set_plain_cmp(__isl_keep isl_basic_set *bset1,
10456 __isl_keep isl_basic_set *bset2)
10458 return isl_basic_map_plain_cmp(bset1, bset2);
10461 int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
10463 int i, cmp;
10465 if (set1 == set2)
10466 return 0;
10467 if (set1->n != set2->n)
10468 return set1->n - set2->n;
10470 for (i = 0; i < set1->n; ++i) {
10471 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
10472 if (cmp)
10473 return cmp;
10476 return 0;
10479 isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
10480 __isl_keep isl_basic_map *bmap2)
10482 if (!bmap1 || !bmap2)
10483 return isl_bool_error;
10484 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
10487 isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
10488 __isl_keep isl_basic_set *bset2)
10490 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1),
10491 bset_to_bmap(bset2));
10494 static int qsort_bmap_cmp(const void *p1, const void *p2)
10496 isl_basic_map *bmap1 = *(isl_basic_map **) p1;
10497 isl_basic_map *bmap2 = *(isl_basic_map **) p2;
10499 return isl_basic_map_plain_cmp(bmap1, bmap2);
10502 /* Sort the basic maps of "map" and remove duplicate basic maps.
10504 * While removing basic maps, we make sure that the basic maps remain
10505 * sorted because isl_map_normalize expects the basic maps of the result
10506 * to be sorted.
10508 static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
10510 int i, j;
10512 map = isl_map_remove_empty_parts(map);
10513 if (!map)
10514 return NULL;
10515 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
10516 for (i = map->n - 1; i >= 1; --i) {
10517 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
10518 continue;
10519 isl_basic_map_free(map->p[i-1]);
10520 for (j = i; j < map->n; ++j)
10521 map->p[j - 1] = map->p[j];
10522 map->n--;
10525 return map;
10528 /* Remove obvious duplicates among the basic maps of "map".
10530 * Unlike isl_map_normalize, this function does not remove redundant
10531 * constraints and only removes duplicates that have exactly the same
10532 * constraints in the input. It does sort the constraints and
10533 * the basic maps to ease the detection of duplicates.
10535 * If "map" has already been normalized or if the basic maps are
10536 * disjoint, then there can be no duplicates.
10538 __isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
10540 int i;
10541 isl_basic_map *bmap;
10543 if (!map)
10544 return NULL;
10545 if (map->n <= 1)
10546 return map;
10547 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
10548 return map;
10549 for (i = 0; i < map->n; ++i) {
10550 bmap = isl_basic_map_copy(map->p[i]);
10551 bmap = isl_basic_map_sort_constraints(bmap);
10552 if (!bmap)
10553 return isl_map_free(map);
10554 isl_basic_map_free(map->p[i]);
10555 map->p[i] = bmap;
10558 map = sort_and_remove_duplicates(map);
10559 return map;
10562 /* We normalize in place, but if anything goes wrong we need
10563 * to return NULL, so we need to make sure we don't change the
10564 * meaning of any possible other copies of map.
10566 __isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
10568 int i;
10569 struct isl_basic_map *bmap;
10571 if (!map)
10572 return NULL;
10573 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
10574 return map;
10575 for (i = 0; i < map->n; ++i) {
10576 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
10577 if (!bmap)
10578 goto error;
10579 isl_basic_map_free(map->p[i]);
10580 map->p[i] = bmap;
10583 map = sort_and_remove_duplicates(map);
10584 if (map)
10585 ISL_F_SET(map, ISL_MAP_NORMALIZED);
10586 return map;
10587 error:
10588 isl_map_free(map);
10589 return NULL;
10592 __isl_give isl_set *isl_set_normalize(__isl_take isl_set *set)
10594 return set_from_map(isl_map_normalize(set_to_map(set)));
10597 isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
10598 __isl_keep isl_map *map2)
10600 int i;
10601 isl_bool equal;
10603 if (!map1 || !map2)
10604 return isl_bool_error;
10606 if (map1 == map2)
10607 return isl_bool_true;
10608 equal = isl_map_has_equal_space(map1, map2);
10609 if (equal < 0 || !equal)
10610 return equal;
10612 map1 = isl_map_copy(map1);
10613 map2 = isl_map_copy(map2);
10614 map1 = isl_map_normalize(map1);
10615 map2 = isl_map_normalize(map2);
10616 if (!map1 || !map2)
10617 goto error;
10618 equal = map1->n == map2->n;
10619 for (i = 0; equal && i < map1->n; ++i) {
10620 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
10621 if (equal < 0)
10622 goto error;
10624 isl_map_free(map1);
10625 isl_map_free(map2);
10626 return equal;
10627 error:
10628 isl_map_free(map1);
10629 isl_map_free(map2);
10630 return isl_bool_error;
10633 isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
10634 __isl_keep isl_set *set2)
10636 return isl_map_plain_is_equal(set_to_map(set1), set_to_map(set2));
10639 /* Return the basic maps in "map" as a list.
10641 __isl_give isl_basic_map_list *isl_map_get_basic_map_list(
10642 __isl_keep isl_map *map)
10644 int i;
10645 isl_ctx *ctx;
10646 isl_basic_map_list *list;
10648 if (!map)
10649 return NULL;
10650 ctx = isl_map_get_ctx(map);
10651 list = isl_basic_map_list_alloc(ctx, map->n);
10653 for (i = 0; i < map->n; ++i) {
10654 isl_basic_map *bmap;
10656 bmap = isl_basic_map_copy(map->p[i]);
10657 list = isl_basic_map_list_add(list, bmap);
10660 return list;
10663 /* Return the intersection of the elements in the non-empty list "list".
10664 * All elements are assumed to live in the same space.
10666 __isl_give isl_basic_map *isl_basic_map_list_intersect(
10667 __isl_take isl_basic_map_list *list)
10669 int i;
10670 isl_size n;
10671 isl_basic_map *bmap;
10673 n = isl_basic_map_list_n_basic_map(list);
10674 if (n < 0)
10675 goto error;
10676 if (n < 1)
10677 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
10678 "expecting non-empty list", goto error);
10680 bmap = isl_basic_map_list_get_basic_map(list, 0);
10681 for (i = 1; i < n; ++i) {
10682 isl_basic_map *bmap_i;
10684 bmap_i = isl_basic_map_list_get_basic_map(list, i);
10685 bmap = isl_basic_map_intersect(bmap, bmap_i);
10688 isl_basic_map_list_free(list);
10689 return bmap;
10690 error:
10691 isl_basic_map_list_free(list);
10692 return NULL;
10695 /* Return the intersection of the elements in the non-empty list "list".
10696 * All elements are assumed to live in the same space.
10698 __isl_give isl_basic_set *isl_basic_set_list_intersect(
10699 __isl_take isl_basic_set_list *list)
10701 return isl_basic_map_list_intersect(list);
10704 /* Return the union of the elements of "list".
10705 * The list is required to have at least one element.
10707 __isl_give isl_set *isl_basic_set_list_union(
10708 __isl_take isl_basic_set_list *list)
10710 int i;
10711 isl_size n;
10712 isl_space *space;
10713 isl_basic_set *bset;
10714 isl_set *set;
10716 n = isl_basic_set_list_n_basic_set(list);
10717 if (n < 0)
10718 goto error;
10719 if (n < 1)
10720 isl_die(isl_basic_set_list_get_ctx(list), isl_error_invalid,
10721 "expecting non-empty list", goto error);
10723 bset = isl_basic_set_list_get_basic_set(list, 0);
10724 space = isl_basic_set_get_space(bset);
10725 isl_basic_set_free(bset);
10727 set = isl_set_alloc_space(space, n, 0);
10728 for (i = 0; i < n; ++i) {
10729 bset = isl_basic_set_list_get_basic_set(list, i);
10730 set = isl_set_add_basic_set(set, bset);
10733 isl_basic_set_list_free(list);
10734 return set;
10735 error:
10736 isl_basic_set_list_free(list);
10737 return NULL;
10740 /* Return the union of the elements in the non-empty list "list".
10741 * All elements are assumed to live in the same space.
10743 __isl_give isl_set *isl_set_list_union(__isl_take isl_set_list *list)
10745 int i;
10746 isl_size n;
10747 isl_set *set;
10749 n = isl_set_list_n_set(list);
10750 if (n < 0)
10751 goto error;
10752 if (n < 1)
10753 isl_die(isl_set_list_get_ctx(list), isl_error_invalid,
10754 "expecting non-empty list", goto error);
10756 set = isl_set_list_get_set(list, 0);
10757 for (i = 1; i < n; ++i) {
10758 isl_set *set_i;
10760 set_i = isl_set_list_get_set(list, i);
10761 set = isl_set_union(set, set_i);
10764 isl_set_list_free(list);
10765 return set;
10766 error:
10767 isl_set_list_free(list);
10768 return NULL;
10771 __isl_give isl_basic_map *isl_basic_map_product(
10772 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10774 isl_space *space_result = NULL;
10775 struct isl_basic_map *bmap;
10776 unsigned in1, in2, out1, out2, nparam, total, pos;
10777 struct isl_dim_map *dim_map1, *dim_map2;
10779 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
10780 goto error;
10781 space_result = isl_space_product(isl_space_copy(bmap1->dim),
10782 isl_space_copy(bmap2->dim));
10784 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
10785 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
10786 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
10787 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
10788 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10790 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
10791 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10792 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10793 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10794 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10795 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10796 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
10797 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
10798 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
10799 isl_dim_map_div(dim_map1, bmap1, pos += out2);
10800 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10802 bmap = isl_basic_map_alloc_space(space_result,
10803 bmap1->n_div + bmap2->n_div,
10804 bmap1->n_eq + bmap2->n_eq,
10805 bmap1->n_ineq + bmap2->n_ineq);
10806 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10807 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10808 bmap = isl_basic_map_simplify(bmap);
10809 return isl_basic_map_finalize(bmap);
10810 error:
10811 isl_basic_map_free(bmap1);
10812 isl_basic_map_free(bmap2);
10813 return NULL;
10816 __isl_give isl_basic_map *isl_basic_map_flat_product(
10817 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10819 isl_basic_map *prod;
10821 prod = isl_basic_map_product(bmap1, bmap2);
10822 prod = isl_basic_map_flatten(prod);
10823 return prod;
10826 __isl_give isl_basic_set *isl_basic_set_flat_product(
10827 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
10829 return isl_basic_map_flat_range_product(bset1, bset2);
10832 __isl_give isl_basic_map *isl_basic_map_domain_product(
10833 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10835 isl_space *space1, *space2;
10836 isl_space *space_result = NULL;
10837 isl_basic_map *bmap;
10838 isl_size in1, in2, out, nparam;
10839 unsigned total, pos;
10840 struct isl_dim_map *dim_map1, *dim_map2;
10842 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
10843 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
10844 out = isl_basic_map_dim(bmap1, isl_dim_out);
10845 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10846 if (in1 < 0 || in2 < 0 || out < 0 || nparam < 0)
10847 goto error;
10849 space1 = isl_basic_map_get_space(bmap1);
10850 space2 = isl_basic_map_get_space(bmap2);
10851 space_result = isl_space_domain_product(space1, space2);
10853 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
10854 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10855 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10856 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10857 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10858 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10859 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
10860 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
10861 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
10862 isl_dim_map_div(dim_map1, bmap1, pos += out);
10863 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10865 bmap = isl_basic_map_alloc_space(space_result,
10866 bmap1->n_div + bmap2->n_div,
10867 bmap1->n_eq + bmap2->n_eq,
10868 bmap1->n_ineq + bmap2->n_ineq);
10869 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10870 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10871 bmap = isl_basic_map_simplify(bmap);
10872 return isl_basic_map_finalize(bmap);
10873 error:
10874 isl_basic_map_free(bmap1);
10875 isl_basic_map_free(bmap2);
10876 return NULL;
10879 __isl_give isl_basic_map *isl_basic_map_range_product(
10880 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10882 isl_bool rational;
10883 isl_space *space_result = NULL;
10884 isl_basic_map *bmap;
10885 isl_size in, out1, out2, nparam;
10886 unsigned total, pos;
10887 struct isl_dim_map *dim_map1, *dim_map2;
10889 rational = isl_basic_map_is_rational(bmap1);
10890 if (rational >= 0 && rational)
10891 rational = isl_basic_map_is_rational(bmap2);
10892 in = isl_basic_map_dim(bmap1, isl_dim_in);
10893 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
10894 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
10895 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
10896 if (in < 0 || out1 < 0 || out2 < 0 || nparam < 0 || rational < 0)
10897 goto error;
10899 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
10900 goto error;
10902 space_result = isl_space_range_product(isl_space_copy(bmap1->dim),
10903 isl_space_copy(bmap2->dim));
10905 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
10906 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
10907 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
10908 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
10909 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
10910 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
10911 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
10912 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
10913 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
10914 isl_dim_map_div(dim_map1, bmap1, pos += out2);
10915 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
10917 bmap = isl_basic_map_alloc_space(space_result,
10918 bmap1->n_div + bmap2->n_div,
10919 bmap1->n_eq + bmap2->n_eq,
10920 bmap1->n_ineq + bmap2->n_ineq);
10921 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
10922 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
10923 if (rational)
10924 bmap = isl_basic_map_set_rational(bmap);
10925 bmap = isl_basic_map_simplify(bmap);
10926 return isl_basic_map_finalize(bmap);
10927 error:
10928 isl_basic_map_free(bmap1);
10929 isl_basic_map_free(bmap2);
10930 return NULL;
10933 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
10934 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
10936 isl_basic_map *prod;
10938 prod = isl_basic_map_range_product(bmap1, bmap2);
10939 prod = isl_basic_map_flatten_range(prod);
10940 return prod;
10943 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
10944 * and collect the results.
10945 * The result live in the space obtained by calling "space_product"
10946 * on the spaces of "map1" and "map2".
10947 * If "remove_duplicates" is set then the result may contain duplicates
10948 * (even if the inputs do not) and so we try and remove the obvious
10949 * duplicates.
10951 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
10952 __isl_take isl_map *map2,
10953 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
10954 __isl_take isl_space *right),
10955 __isl_give isl_basic_map *(*basic_map_product)(
10956 __isl_take isl_basic_map *left,
10957 __isl_take isl_basic_map *right),
10958 int remove_duplicates)
10960 unsigned flags = 0;
10961 struct isl_map *result;
10962 int i, j;
10963 isl_bool m;
10965 m = isl_map_has_equal_params(map1, map2);
10966 if (m < 0)
10967 goto error;
10968 if (!m)
10969 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
10970 "parameters don't match", goto error);
10972 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
10973 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
10974 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
10976 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
10977 isl_space_copy(map2->dim)),
10978 map1->n * map2->n, flags);
10979 if (!result)
10980 goto error;
10981 for (i = 0; i < map1->n; ++i)
10982 for (j = 0; j < map2->n; ++j) {
10983 struct isl_basic_map *part;
10984 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
10985 isl_basic_map_copy(map2->p[j]));
10986 if (isl_basic_map_is_empty(part))
10987 isl_basic_map_free(part);
10988 else
10989 result = isl_map_add_basic_map(result, part);
10990 if (!result)
10991 goto error;
10993 if (remove_duplicates)
10994 result = isl_map_remove_obvious_duplicates(result);
10995 isl_map_free(map1);
10996 isl_map_free(map2);
10997 return result;
10998 error:
10999 isl_map_free(map1);
11000 isl_map_free(map2);
11001 return NULL;
11004 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
11006 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
11007 __isl_take isl_map *map2)
11009 isl_map_align_params_bin(&map1, &map2);
11010 return map_product(map1, map2, &isl_space_product,
11011 &isl_basic_map_product, 0);
11014 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
11016 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
11017 __isl_take isl_map *map2)
11019 isl_map *prod;
11021 prod = isl_map_product(map1, map2);
11022 prod = isl_map_flatten(prod);
11023 return prod;
11026 /* Given two set A and B, construct its Cartesian product A x B.
11028 __isl_give isl_set *isl_set_product(__isl_take isl_set *set1,
11029 __isl_take isl_set *set2)
11031 return isl_map_range_product(set1, set2);
11034 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
11035 __isl_take isl_set *set2)
11037 return isl_map_flat_range_product(set1, set2);
11040 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
11042 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
11043 __isl_take isl_map *map2)
11045 isl_map_align_params_bin(&map1, &map2);
11046 return map_product(map1, map2, &isl_space_domain_product,
11047 &isl_basic_map_domain_product, 1);
11050 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
11052 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
11053 __isl_take isl_map *map2)
11055 isl_map_align_params_bin(&map1, &map2);
11056 return map_product(map1, map2, &isl_space_range_product,
11057 &isl_basic_map_range_product, 1);
11060 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
11062 __isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
11064 isl_space *space;
11065 isl_size total1, keep1, total2, keep2;
11067 total1 = isl_map_dim(map, isl_dim_in);
11068 total2 = isl_map_dim(map, isl_dim_out);
11069 if (total1 < 0 || total2 < 0)
11070 return isl_map_free(map);
11071 if (!isl_space_domain_is_wrapping(map->dim) ||
11072 !isl_space_range_is_wrapping(map->dim))
11073 isl_die(isl_map_get_ctx(map), isl_error_invalid,
11074 "not a product", return isl_map_free(map));
11076 space = isl_map_get_space(map);
11077 space = isl_space_factor_domain(space);
11078 keep1 = isl_space_dim(space, isl_dim_in);
11079 keep2 = isl_space_dim(space, isl_dim_out);
11080 if (keep1 < 0 || keep2 < 0)
11081 map = isl_map_free(map);
11082 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
11083 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
11084 map = isl_map_reset_space(map, space);
11086 return map;
11089 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
11091 __isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
11093 isl_space *space;
11094 isl_size total1, keep1, total2, keep2;
11096 total1 = isl_map_dim(map, isl_dim_in);
11097 total2 = isl_map_dim(map, isl_dim_out);
11098 if (total1 < 0 || total2 < 0)
11099 return isl_map_free(map);
11100 if (!isl_space_domain_is_wrapping(map->dim) ||
11101 !isl_space_range_is_wrapping(map->dim))
11102 isl_die(isl_map_get_ctx(map), isl_error_invalid,
11103 "not a product", return isl_map_free(map));
11105 space = isl_map_get_space(map);
11106 space = isl_space_factor_range(space);
11107 keep1 = isl_space_dim(space, isl_dim_in);
11108 keep2 = isl_space_dim(space, isl_dim_out);
11109 if (keep1 < 0 || keep2 < 0)
11110 map = isl_map_free(map);
11111 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
11112 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
11113 map = isl_map_reset_space(map, space);
11115 return map;
11118 /* Given a map of the form [A -> B] -> C, return the map A -> C.
11120 __isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
11122 isl_space *space;
11123 isl_size total, keep;
11125 total = isl_map_dim(map, isl_dim_in);
11126 if (total < 0)
11127 return isl_map_free(map);
11128 if (!isl_space_domain_is_wrapping(map->dim))
11129 isl_die(isl_map_get_ctx(map), isl_error_invalid,
11130 "domain is not a product", return isl_map_free(map));
11132 space = isl_map_get_space(map);
11133 space = isl_space_domain_factor_domain(space);
11134 keep = isl_space_dim(space, isl_dim_in);
11135 if (keep < 0)
11136 map = isl_map_free(map);
11137 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
11138 map = isl_map_reset_space(map, space);
11140 return map;
11143 /* Given a map of the form [A -> B] -> C, return the map B -> C.
11145 __isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
11147 isl_space *space;
11148 isl_size total, keep;
11150 total = isl_map_dim(map, isl_dim_in);
11151 if (total < 0)
11152 return isl_map_free(map);
11153 if (!isl_space_domain_is_wrapping(map->dim))
11154 isl_die(isl_map_get_ctx(map), isl_error_invalid,
11155 "domain is not a product", return isl_map_free(map));
11157 space = isl_map_get_space(map);
11158 space = isl_space_domain_factor_range(space);
11159 keep = isl_space_dim(space, isl_dim_in);
11160 if (keep < 0)
11161 map = isl_map_free(map);
11162 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
11163 map = isl_map_reset_space(map, space);
11165 return map;
11168 /* Given a map A -> [B -> C], extract the map A -> B.
11170 __isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
11172 isl_space *space;
11173 isl_size total, keep;
11175 total = isl_map_dim(map, isl_dim_out);
11176 if (total < 0)
11177 return isl_map_free(map);
11178 if (!isl_space_range_is_wrapping(map->dim))
11179 isl_die(isl_map_get_ctx(map), isl_error_invalid,
11180 "range is not a product", return isl_map_free(map));
11182 space = isl_map_get_space(map);
11183 space = isl_space_range_factor_domain(space);
11184 keep = isl_space_dim(space, isl_dim_out);
11185 if (keep < 0)
11186 map = isl_map_free(map);
11187 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
11188 map = isl_map_reset_space(map, space);
11190 return map;
11193 /* Given a map A -> [B -> C], extract the map A -> C.
11195 __isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
11197 isl_space *space;
11198 isl_size total, keep;
11200 total = isl_map_dim(map, isl_dim_out);
11201 if (total < 0)
11202 return isl_map_free(map);
11203 if (!isl_space_range_is_wrapping(map->dim))
11204 isl_die(isl_map_get_ctx(map), isl_error_invalid,
11205 "range is not a product", return isl_map_free(map));
11207 space = isl_map_get_space(map);
11208 space = isl_space_range_factor_range(space);
11209 keep = isl_space_dim(space, isl_dim_out);
11210 if (keep < 0)
11211 map = isl_map_free(map);
11212 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
11213 map = isl_map_reset_space(map, space);
11215 return map;
11218 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
11220 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
11221 __isl_take isl_map *map2)
11223 isl_map *prod;
11225 prod = isl_map_domain_product(map1, map2);
11226 prod = isl_map_flatten_domain(prod);
11227 return prod;
11230 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
11232 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
11233 __isl_take isl_map *map2)
11235 isl_map *prod;
11237 prod = isl_map_range_product(map1, map2);
11238 prod = isl_map_flatten_range(prod);
11239 return prod;
11242 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
11244 int i;
11245 uint32_t hash = isl_hash_init();
11246 isl_size total;
11248 if (!bmap)
11249 return 0;
11250 bmap = isl_basic_map_copy(bmap);
11251 bmap = isl_basic_map_normalize(bmap);
11252 total = isl_basic_map_dim(bmap, isl_dim_all);
11253 if (total < 0)
11254 return 0;
11255 isl_hash_byte(hash, bmap->n_eq & 0xFF);
11256 for (i = 0; i < bmap->n_eq; ++i) {
11257 uint32_t c_hash;
11258 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
11259 isl_hash_hash(hash, c_hash);
11261 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
11262 for (i = 0; i < bmap->n_ineq; ++i) {
11263 uint32_t c_hash;
11264 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
11265 isl_hash_hash(hash, c_hash);
11267 isl_hash_byte(hash, bmap->n_div & 0xFF);
11268 for (i = 0; i < bmap->n_div; ++i) {
11269 uint32_t c_hash;
11270 if (isl_int_is_zero(bmap->div[i][0]))
11271 continue;
11272 isl_hash_byte(hash, i & 0xFF);
11273 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
11274 isl_hash_hash(hash, c_hash);
11276 isl_basic_map_free(bmap);
11277 return hash;
11280 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
11282 return isl_basic_map_get_hash(bset_to_bmap(bset));
11285 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
11287 int i;
11288 uint32_t hash;
11290 if (!map)
11291 return 0;
11292 map = isl_map_copy(map);
11293 map = isl_map_normalize(map);
11294 if (!map)
11295 return 0;
11297 hash = isl_hash_init();
11298 for (i = 0; i < map->n; ++i) {
11299 uint32_t bmap_hash;
11300 bmap_hash = isl_basic_map_get_hash(map->p[i]);
11301 isl_hash_hash(hash, bmap_hash);
11304 isl_map_free(map);
11306 return hash;
11309 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
11311 return isl_map_get_hash(set_to_map(set));
11314 /* Return the number of basic maps in the (current) representation of "map".
11316 isl_size isl_map_n_basic_map(__isl_keep isl_map *map)
11318 return map ? map->n : isl_size_error;
11321 isl_size isl_set_n_basic_set(__isl_keep isl_set *set)
11323 return set ? set->n : isl_size_error;
11326 isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
11327 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
11329 int i;
11331 if (!map)
11332 return isl_stat_error;
11334 for (i = 0; i < map->n; ++i)
11335 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
11336 return isl_stat_error;
11338 return isl_stat_ok;
11341 isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
11342 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
11344 int i;
11346 if (!set)
11347 return isl_stat_error;
11349 for (i = 0; i < set->n; ++i)
11350 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
11351 return isl_stat_error;
11353 return isl_stat_ok;
11356 /* Does "test" succeed on every basic set in "set"?
11358 isl_bool isl_set_every_basic_set(__isl_keep isl_set *set,
11359 isl_bool (*test)(__isl_keep isl_basic_set *bset, void *user),
11360 void *user)
11362 int i;
11364 if (!set)
11365 return isl_bool_error;
11367 for (i = 0; i < set->n; ++i) {
11368 isl_bool r;
11370 r = test(set->p[i], user);
11371 if (r < 0 || !r)
11372 return r;
11375 return isl_bool_true;
11378 /* Return a list of basic sets, the union of which is equal to "set".
11380 __isl_give isl_basic_set_list *isl_set_get_basic_set_list(
11381 __isl_keep isl_set *set)
11383 int i;
11384 isl_basic_set_list *list;
11386 if (!set)
11387 return NULL;
11389 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
11390 for (i = 0; i < set->n; ++i) {
11391 isl_basic_set *bset;
11393 bset = isl_basic_set_copy(set->p[i]);
11394 list = isl_basic_set_list_add(list, bset);
11397 return list;
11400 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
11402 isl_space *space;
11404 if (!bset)
11405 return NULL;
11407 bset = isl_basic_set_cow(bset);
11408 if (!bset)
11409 return NULL;
11411 space = isl_basic_set_get_space(bset);
11412 space = isl_space_lift(space, bset->n_div);
11413 if (!space)
11414 goto error;
11415 isl_space_free(bset->dim);
11416 bset->dim = space;
11417 bset->extra -= bset->n_div;
11418 bset->n_div = 0;
11420 bset = isl_basic_set_finalize(bset);
11422 return bset;
11423 error:
11424 isl_basic_set_free(bset);
11425 return NULL;
11428 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
11430 int i;
11431 isl_space *space;
11432 unsigned n_div;
11434 set = set_from_map(isl_map_align_divs_internal(set_to_map(set)));
11436 if (!set)
11437 return NULL;
11439 set = isl_set_cow(set);
11440 if (!set)
11441 return NULL;
11443 n_div = set->p[0]->n_div;
11444 space = isl_set_get_space(set);
11445 space = isl_space_lift(space, n_div);
11446 if (!space)
11447 goto error;
11448 isl_space_free(set->dim);
11449 set->dim = space;
11451 for (i = 0; i < set->n; ++i) {
11452 set->p[i] = isl_basic_set_lift(set->p[i]);
11453 if (!set->p[i])
11454 goto error;
11457 return set;
11458 error:
11459 isl_set_free(set);
11460 return NULL;
11463 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
11465 isl_size dim;
11466 int size = 0;
11468 dim = isl_basic_set_dim(bset, isl_dim_all);
11469 if (dim < 0)
11470 return -1;
11471 size += bset->n_eq * (1 + dim);
11472 size += bset->n_ineq * (1 + dim);
11473 size += bset->n_div * (2 + dim);
11475 return size;
11478 int isl_set_size(__isl_keep isl_set *set)
11480 int i;
11481 int size = 0;
11483 if (!set)
11484 return -1;
11486 for (i = 0; i < set->n; ++i)
11487 size += isl_basic_set_size(set->p[i]);
11489 return size;
11492 /* Check if there is any lower bound (if lower == 0) and/or upper
11493 * bound (if upper == 0) on the specified dim.
11495 static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
11496 enum isl_dim_type type, unsigned pos, int lower, int upper)
11498 int i;
11500 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
11501 return isl_bool_error;
11503 pos += isl_basic_map_offset(bmap, type);
11505 for (i = 0; i < bmap->n_div; ++i) {
11506 if (isl_int_is_zero(bmap->div[i][0]))
11507 continue;
11508 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
11509 return isl_bool_true;
11512 for (i = 0; i < bmap->n_eq; ++i)
11513 if (!isl_int_is_zero(bmap->eq[i][pos]))
11514 return isl_bool_true;
11516 for (i = 0; i < bmap->n_ineq; ++i) {
11517 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
11518 if (sgn > 0)
11519 lower = 1;
11520 if (sgn < 0)
11521 upper = 1;
11524 return lower && upper;
11527 isl_bool isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
11528 enum isl_dim_type type, unsigned pos)
11530 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
11533 isl_bool isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
11534 enum isl_dim_type type, unsigned pos)
11536 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
11539 isl_bool isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
11540 enum isl_dim_type type, unsigned pos)
11542 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
11545 isl_bool isl_map_dim_is_bounded(__isl_keep isl_map *map,
11546 enum isl_dim_type type, unsigned pos)
11548 int i;
11550 if (!map)
11551 return isl_bool_error;
11553 for (i = 0; i < map->n; ++i) {
11554 isl_bool bounded;
11555 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
11556 if (bounded < 0 || !bounded)
11557 return bounded;
11560 return isl_bool_true;
11563 /* Return true if the specified dim is involved in both an upper bound
11564 * and a lower bound.
11566 isl_bool isl_set_dim_is_bounded(__isl_keep isl_set *set,
11567 enum isl_dim_type type, unsigned pos)
11569 return isl_map_dim_is_bounded(set_to_map(set), type, pos);
11572 /* Does "map" have a bound (according to "fn") for any of its basic maps?
11574 static isl_bool has_any_bound(__isl_keep isl_map *map,
11575 enum isl_dim_type type, unsigned pos,
11576 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
11577 enum isl_dim_type type, unsigned pos))
11579 int i;
11581 if (!map)
11582 return isl_bool_error;
11584 for (i = 0; i < map->n; ++i) {
11585 isl_bool bounded;
11586 bounded = fn(map->p[i], type, pos);
11587 if (bounded < 0 || bounded)
11588 return bounded;
11591 return isl_bool_false;
11594 /* Return 1 if the specified dim is involved in any lower bound.
11596 isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
11597 enum isl_dim_type type, unsigned pos)
11599 return has_any_bound(set, type, pos,
11600 &isl_basic_map_dim_has_lower_bound);
11603 /* Return 1 if the specified dim is involved in any upper bound.
11605 isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
11606 enum isl_dim_type type, unsigned pos)
11608 return has_any_bound(set, type, pos,
11609 &isl_basic_map_dim_has_upper_bound);
11612 /* Does "map" have a bound (according to "fn") for all of its basic maps?
11614 static isl_bool has_bound(__isl_keep isl_map *map,
11615 enum isl_dim_type type, unsigned pos,
11616 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
11617 enum isl_dim_type type, unsigned pos))
11619 int i;
11621 if (!map)
11622 return isl_bool_error;
11624 for (i = 0; i < map->n; ++i) {
11625 isl_bool bounded;
11626 bounded = fn(map->p[i], type, pos);
11627 if (bounded < 0 || !bounded)
11628 return bounded;
11631 return isl_bool_true;
11634 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
11636 isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
11637 enum isl_dim_type type, unsigned pos)
11639 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
11642 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
11644 isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
11645 enum isl_dim_type type, unsigned pos)
11647 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
11650 /* For each of the "n" variables starting at "first", determine
11651 * the sign of the variable and put the results in the first "n"
11652 * elements of the array "signs".
11653 * Sign
11654 * 1 means that the variable is non-negative
11655 * -1 means that the variable is non-positive
11656 * 0 means the variable attains both positive and negative values.
11658 isl_stat isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
11659 unsigned first, unsigned n, int *signs)
11661 isl_vec *bound = NULL;
11662 struct isl_tab *tab = NULL;
11663 struct isl_tab_undo *snap;
11664 int i;
11665 isl_size total;
11667 total = isl_basic_set_dim(bset, isl_dim_all);
11668 if (total < 0 || !signs)
11669 return isl_stat_error;
11671 bound = isl_vec_alloc(bset->ctx, 1 + total);
11672 tab = isl_tab_from_basic_set(bset, 0);
11673 if (!bound || !tab)
11674 goto error;
11676 isl_seq_clr(bound->el, bound->size);
11677 isl_int_set_si(bound->el[0], -1);
11679 snap = isl_tab_snap(tab);
11680 for (i = 0; i < n; ++i) {
11681 int empty;
11683 isl_int_set_si(bound->el[1 + first + i], -1);
11684 if (isl_tab_add_ineq(tab, bound->el) < 0)
11685 goto error;
11686 empty = tab->empty;
11687 isl_int_set_si(bound->el[1 + first + i], 0);
11688 if (isl_tab_rollback(tab, snap) < 0)
11689 goto error;
11691 if (empty) {
11692 signs[i] = 1;
11693 continue;
11696 isl_int_set_si(bound->el[1 + first + i], 1);
11697 if (isl_tab_add_ineq(tab, bound->el) < 0)
11698 goto error;
11699 empty = tab->empty;
11700 isl_int_set_si(bound->el[1 + first + i], 0);
11701 if (isl_tab_rollback(tab, snap) < 0)
11702 goto error;
11704 signs[i] = empty ? -1 : 0;
11707 isl_tab_free(tab);
11708 isl_vec_free(bound);
11709 return isl_stat_ok;
11710 error:
11711 isl_tab_free(tab);
11712 isl_vec_free(bound);
11713 return isl_stat_error;
11716 isl_stat isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
11717 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
11719 if (!bset || !signs)
11720 return isl_stat_error;
11721 if (isl_basic_set_check_range(bset, type, first, n) < 0)
11722 return isl_stat_error;
11724 first += pos(bset->dim, type) - 1;
11725 return isl_basic_set_vars_get_sign(bset, first, n, signs);
11728 /* Is it possible for the integer division "div" to depend (possibly
11729 * indirectly) on any output dimensions?
11731 * If the div is undefined, then we conservatively assume that it
11732 * may depend on them.
11733 * Otherwise, we check if it actually depends on them or on any integer
11734 * divisions that may depend on them.
11736 static isl_bool div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
11738 int i;
11739 isl_size n_out, n_div;
11740 unsigned o_out, o_div;
11742 if (isl_int_is_zero(bmap->div[div][0]))
11743 return isl_bool_true;
11745 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11746 if (n_out < 0)
11747 return isl_bool_error;
11748 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11750 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
11751 return isl_bool_true;
11753 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11754 if (n_div < 0)
11755 return isl_bool_error;
11756 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11758 for (i = 0; i < n_div; ++i) {
11759 isl_bool may_involve;
11761 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
11762 continue;
11763 may_involve = div_may_involve_output(bmap, i);
11764 if (may_involve < 0 || may_involve)
11765 return may_involve;
11768 return isl_bool_false;
11771 /* Return the first integer division of "bmap" in the range
11772 * [first, first + n[ that may depend on any output dimensions and
11773 * that has a non-zero coefficient in "c" (where the first coefficient
11774 * in "c" corresponds to integer division "first").
11776 static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
11777 isl_int *c, int first, int n)
11779 int k;
11781 if (!bmap)
11782 return -1;
11784 for (k = first; k < first + n; ++k) {
11785 isl_bool may_involve;
11787 if (isl_int_is_zero(c[k]))
11788 continue;
11789 may_involve = div_may_involve_output(bmap, k);
11790 if (may_involve < 0)
11791 return -1;
11792 if (may_involve)
11793 return k;
11796 return first + n;
11799 /* Look for a pair of inequality constraints in "bmap" of the form
11801 * -l + i >= 0 or i >= l
11802 * and
11803 * n + l - i >= 0 or i <= l + n
11805 * with n < "m" and i the output dimension at position "pos".
11806 * (Note that n >= 0 as otherwise the two constraints would conflict.)
11807 * Furthermore, "l" is only allowed to involve parameters, input dimensions
11808 * and earlier output dimensions, as well as integer divisions that do
11809 * not involve any of the output dimensions.
11811 * Return the index of the first inequality constraint or bmap->n_ineq
11812 * if no such pair can be found.
11814 static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
11815 int pos, isl_int m)
11817 int i, j;
11818 isl_ctx *ctx;
11819 isl_size total;
11820 isl_size n_div, n_out;
11821 unsigned o_div, o_out;
11822 int less;
11824 total = isl_basic_map_dim(bmap, isl_dim_all);
11825 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11826 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11827 if (total < 0 || n_out < 0 || n_div < 0)
11828 return -1;
11830 ctx = isl_basic_map_get_ctx(bmap);
11831 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11832 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11833 for (i = 0; i < bmap->n_ineq; ++i) {
11834 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
11835 continue;
11836 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
11837 n_out - (pos + 1)) != -1)
11838 continue;
11839 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
11840 0, n_div) < n_div)
11841 continue;
11842 for (j = i + 1; j < bmap->n_ineq; ++j) {
11843 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
11844 ctx->one))
11845 continue;
11846 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
11847 bmap->ineq[j] + 1, total))
11848 continue;
11849 break;
11851 if (j >= bmap->n_ineq)
11852 continue;
11853 isl_int_add(bmap->ineq[i][0],
11854 bmap->ineq[i][0], bmap->ineq[j][0]);
11855 less = isl_int_abs_lt(bmap->ineq[i][0], m);
11856 isl_int_sub(bmap->ineq[i][0],
11857 bmap->ineq[i][0], bmap->ineq[j][0]);
11858 if (!less)
11859 continue;
11860 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
11861 return i;
11862 else
11863 return j;
11866 return bmap->n_ineq;
11869 /* Return the index of the equality of "bmap" that defines
11870 * the output dimension "pos" in terms of earlier dimensions.
11871 * The equality may also involve integer divisions, as long
11872 * as those integer divisions are defined in terms of
11873 * parameters or input dimensions.
11874 * In this case, *div is set to the number of integer divisions and
11875 * *ineq is set to the number of inequality constraints (provided
11876 * div and ineq are not NULL).
11878 * The equality may also involve a single integer division involving
11879 * the output dimensions (typically only output dimension "pos") as
11880 * long as the coefficient of output dimension "pos" is 1 or -1 and
11881 * there is a pair of constraints i >= l and i <= l + n, with i referring
11882 * to output dimension "pos", l an expression involving only earlier
11883 * dimensions and n smaller than the coefficient of the integer division
11884 * in the equality. In this case, the output dimension can be defined
11885 * in terms of a modulo expression that does not involve the integer division.
11886 * *div is then set to this single integer division and
11887 * *ineq is set to the index of constraint i >= l.
11889 * Return bmap->n_eq if there is no such equality.
11890 * Return -1 on error.
11892 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
11893 int pos, int *div, int *ineq)
11895 int j, k, l;
11896 isl_size n_div, n_out;
11897 unsigned o_div, o_out;
11899 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11900 n_div = isl_basic_map_dim(bmap, isl_dim_div);
11901 if (n_out < 0 || n_div < 0)
11902 return -1;
11904 o_out = isl_basic_map_offset(bmap, isl_dim_out);
11905 o_div = isl_basic_map_offset(bmap, isl_dim_div);
11907 if (ineq)
11908 *ineq = bmap->n_ineq;
11909 if (div)
11910 *div = n_div;
11911 for (j = 0; j < bmap->n_eq; ++j) {
11912 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
11913 continue;
11914 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
11915 n_out - (pos + 1)) != -1)
11916 continue;
11917 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11918 0, n_div);
11919 if (k >= n_div)
11920 return j;
11921 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
11922 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
11923 continue;
11924 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
11925 k + 1, n_div - (k+1)) < n_div)
11926 continue;
11927 l = find_modulo_constraint_pair(bmap, pos,
11928 bmap->eq[j][o_div + k]);
11929 if (l < 0)
11930 return -1;
11931 if (l >= bmap->n_ineq)
11932 continue;
11933 if (div)
11934 *div = k;
11935 if (ineq)
11936 *ineq = l;
11937 return j;
11940 return bmap->n_eq;
11943 /* Check if the given basic map is obviously single-valued.
11944 * In particular, for each output dimension, check that there is
11945 * an equality that defines the output dimension in terms of
11946 * earlier dimensions.
11948 isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
11950 int i;
11951 isl_size n_out;
11953 n_out = isl_basic_map_dim(bmap, isl_dim_out);
11954 if (n_out < 0)
11955 return isl_bool_error;
11957 for (i = 0; i < n_out; ++i) {
11958 int eq;
11960 eq = isl_basic_map_output_defining_equality(bmap, i,
11961 NULL, NULL);
11962 if (eq < 0)
11963 return isl_bool_error;
11964 if (eq >= bmap->n_eq)
11965 return isl_bool_false;
11968 return isl_bool_true;
11971 /* Check if the given basic map is single-valued.
11972 * We simply compute
11974 * M \circ M^-1
11976 * and check if the result is a subset of the identity mapping.
11978 isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
11980 isl_space *space;
11981 isl_basic_map *test;
11982 isl_basic_map *id;
11983 isl_bool sv;
11985 sv = isl_basic_map_plain_is_single_valued(bmap);
11986 if (sv < 0 || sv)
11987 return sv;
11989 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
11990 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
11992 space = isl_basic_map_get_space(bmap);
11993 space = isl_space_map_from_set(isl_space_range(space));
11994 id = isl_basic_map_identity(space);
11996 sv = isl_basic_map_is_subset(test, id);
11998 isl_basic_map_free(test);
11999 isl_basic_map_free(id);
12001 return sv;
12004 /* Check if the given map is obviously single-valued.
12006 isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
12008 if (!map)
12009 return isl_bool_error;
12010 if (map->n == 0)
12011 return isl_bool_true;
12012 if (map->n >= 2)
12013 return isl_bool_false;
12015 return isl_basic_map_plain_is_single_valued(map->p[0]);
12018 /* Check if the given map is single-valued.
12019 * We simply compute
12021 * M \circ M^-1
12023 * and check if the result is a subset of the identity mapping.
12025 isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
12027 isl_space *space;
12028 isl_map *test;
12029 isl_map *id;
12030 isl_bool sv;
12032 sv = isl_map_plain_is_single_valued(map);
12033 if (sv < 0 || sv)
12034 return sv;
12036 test = isl_map_reverse(isl_map_copy(map));
12037 test = isl_map_apply_range(test, isl_map_copy(map));
12039 space = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
12040 id = isl_map_identity(space);
12042 sv = isl_map_is_subset(test, id);
12044 isl_map_free(test);
12045 isl_map_free(id);
12047 return sv;
12050 isl_bool isl_map_is_injective(__isl_keep isl_map *map)
12052 isl_bool in;
12054 map = isl_map_copy(map);
12055 map = isl_map_reverse(map);
12056 in = isl_map_is_single_valued(map);
12057 isl_map_free(map);
12059 return in;
12062 /* Check if the given map is obviously injective.
12064 isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
12066 isl_bool in;
12068 map = isl_map_copy(map);
12069 map = isl_map_reverse(map);
12070 in = isl_map_plain_is_single_valued(map);
12071 isl_map_free(map);
12073 return in;
12076 isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
12078 isl_bool sv;
12080 sv = isl_map_is_single_valued(map);
12081 if (sv < 0 || !sv)
12082 return sv;
12084 return isl_map_is_injective(map);
12087 isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
12089 return isl_map_is_single_valued(set_to_map(set));
12092 /* Does "map" only map elements to themselves?
12094 * If the domain and range spaces are different, then "map"
12095 * is considered not to be an identity relation, even if it is empty.
12096 * Otherwise, construct the maximal identity relation and
12097 * check whether "map" is a subset of this relation.
12099 isl_bool isl_map_is_identity(__isl_keep isl_map *map)
12101 isl_map *id;
12102 isl_bool equal, is_identity;
12104 equal = isl_map_tuple_is_equal(map, isl_dim_in, map, isl_dim_out);
12105 if (equal < 0 || !equal)
12106 return equal;
12108 id = isl_map_identity(isl_map_get_space(map));
12109 is_identity = isl_map_is_subset(map, id);
12110 isl_map_free(id);
12112 return is_identity;
12115 int isl_map_is_translation(__isl_keep isl_map *map)
12117 int ok;
12118 isl_set *delta;
12120 delta = isl_map_deltas(isl_map_copy(map));
12121 ok = isl_set_is_singleton(delta);
12122 isl_set_free(delta);
12124 return ok;
12127 static int unique(isl_int *p, unsigned pos, unsigned len)
12129 if (isl_seq_first_non_zero(p, pos) != -1)
12130 return 0;
12131 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
12132 return 0;
12133 return 1;
12136 isl_bool isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
12138 int i, j;
12139 isl_size nvar, ovar, n_div;
12141 n_div = isl_basic_set_dim(bset, isl_dim_div);
12142 if (n_div < 0)
12143 return isl_bool_error;
12144 if (n_div != 0)
12145 return isl_bool_false;
12147 nvar = isl_basic_set_dim(bset, isl_dim_set);
12148 ovar = isl_space_offset(bset->dim, isl_dim_set);
12149 if (nvar < 0 || ovar < 0)
12150 return isl_bool_error;
12151 for (j = 0; j < nvar; ++j) {
12152 int lower = 0, upper = 0;
12153 for (i = 0; i < bset->n_eq; ++i) {
12154 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
12155 continue;
12156 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
12157 return isl_bool_false;
12158 break;
12160 if (i < bset->n_eq)
12161 continue;
12162 for (i = 0; i < bset->n_ineq; ++i) {
12163 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
12164 continue;
12165 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
12166 return isl_bool_false;
12167 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
12168 lower = 1;
12169 else
12170 upper = 1;
12172 if (!lower || !upper)
12173 return isl_bool_false;
12176 return isl_bool_true;
12179 isl_bool isl_set_is_box(__isl_keep isl_set *set)
12181 if (!set)
12182 return isl_bool_error;
12183 if (set->n != 1)
12184 return isl_bool_false;
12186 return isl_basic_set_is_box(set->p[0]);
12189 isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
12191 if (!bset)
12192 return isl_bool_error;
12194 return isl_space_is_wrapping(bset->dim);
12197 isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
12199 if (!set)
12200 return isl_bool_error;
12202 return isl_space_is_wrapping(set->dim);
12205 /* Modify the space of "map" through a call to "change".
12206 * If "can_change" is set (not NULL), then first call it to check
12207 * if the modification is allowed, printing the error message "cannot_change"
12208 * if it is not.
12210 static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
12211 isl_bool (*can_change)(__isl_keep isl_map *map),
12212 const char *cannot_change,
12213 __isl_give isl_space *(*change)(__isl_take isl_space *space))
12215 isl_bool ok;
12216 isl_space *space;
12218 if (!map)
12219 return NULL;
12221 ok = can_change ? can_change(map) : isl_bool_true;
12222 if (ok < 0)
12223 return isl_map_free(map);
12224 if (!ok)
12225 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
12226 return isl_map_free(map));
12228 space = change(isl_map_get_space(map));
12229 map = isl_map_reset_space(map, space);
12231 return map;
12234 /* Is the domain of "map" a wrapped relation?
12236 isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
12238 if (!map)
12239 return isl_bool_error;
12241 return isl_space_domain_is_wrapping(map->dim);
12244 /* Does "map" have a wrapped relation in both domain and range?
12246 isl_bool isl_map_is_product(__isl_keep isl_map *map)
12248 return isl_space_is_product(isl_map_peek_space(map));
12251 /* Is the range of "map" a wrapped relation?
12253 isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
12255 if (!map)
12256 return isl_bool_error;
12258 return isl_space_range_is_wrapping(map->dim);
12261 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
12263 isl_space *space;
12265 space = isl_basic_map_take_space(bmap);
12266 space = isl_space_wrap(space);
12267 bmap = isl_basic_map_restore_space(bmap, space);
12269 bmap = isl_basic_map_finalize(bmap);
12271 return bset_from_bmap(bmap);
12274 /* Given a map A -> B, return the set (A -> B).
12276 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
12278 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
12281 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
12283 bset = isl_basic_set_cow(bset);
12284 if (!bset)
12285 return NULL;
12287 bset->dim = isl_space_unwrap(bset->dim);
12288 if (!bset->dim)
12289 goto error;
12291 bset = isl_basic_set_finalize(bset);
12293 return bset_to_bmap(bset);
12294 error:
12295 isl_basic_set_free(bset);
12296 return NULL;
12299 /* Given a set (A -> B), return the map A -> B.
12300 * Error out if "set" is not of the form (A -> B).
12302 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
12304 return isl_map_change_space(set, &isl_set_is_wrapping,
12305 "not a wrapping set", &isl_space_unwrap);
12308 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
12309 enum isl_dim_type type)
12311 isl_space *space;
12313 space = isl_basic_map_take_space(bmap);
12314 space = isl_space_reset(space, type);
12315 bmap = isl_basic_map_restore_space(bmap, space);
12317 bmap = isl_basic_map_mark_final(bmap);
12319 return bmap;
12322 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
12323 enum isl_dim_type type)
12325 int i;
12326 isl_space *space;
12328 if (!map)
12329 return NULL;
12331 if (!isl_space_is_named_or_nested(map->dim, type))
12332 return map;
12334 map = isl_map_cow(map);
12335 if (!map)
12336 return NULL;
12338 for (i = 0; i < map->n; ++i) {
12339 map->p[i] = isl_basic_map_reset(map->p[i], type);
12340 if (!map->p[i])
12341 goto error;
12344 space = isl_map_take_space(map);
12345 space = isl_space_reset(space, type);
12346 map = isl_map_restore_space(map, space);
12348 return map;
12349 error:
12350 isl_map_free(map);
12351 return NULL;
12354 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
12356 isl_space *space;
12358 space = isl_basic_map_take_space(bmap);
12359 space = isl_space_flatten(space);
12360 bmap = isl_basic_map_restore_space(bmap, space);
12362 bmap = isl_basic_map_mark_final(bmap);
12364 return bmap;
12367 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
12369 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset)));
12372 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
12373 __isl_take isl_basic_map *bmap)
12375 isl_space *space;
12377 space = isl_basic_map_take_space(bmap);
12378 space = isl_space_flatten_domain(space);
12379 bmap = isl_basic_map_restore_space(bmap, space);
12381 bmap = isl_basic_map_mark_final(bmap);
12383 return bmap;
12386 __isl_give isl_basic_map *isl_basic_map_flatten_range(
12387 __isl_take isl_basic_map *bmap)
12389 isl_space *space;
12391 space = isl_basic_map_take_space(bmap);
12392 space = isl_space_flatten_range(space);
12393 bmap = isl_basic_map_restore_space(bmap, space);
12395 bmap = isl_basic_map_mark_final(bmap);
12397 return bmap;
12400 /* Remove any internal structure from the spaces of domain and range of "map".
12402 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
12404 if (!map)
12405 return NULL;
12407 if (!map->dim->nested[0] && !map->dim->nested[1])
12408 return map;
12410 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
12413 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
12415 return set_from_map(isl_map_flatten(set_to_map(set)));
12418 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
12420 isl_space *space, *flat_space;
12421 isl_map *map;
12423 space = isl_set_get_space(set);
12424 flat_space = isl_space_flatten(isl_space_copy(space));
12425 map = isl_map_identity(isl_space_join(isl_space_reverse(space),
12426 flat_space));
12427 map = isl_map_intersect_domain(map, set);
12429 return map;
12432 /* Remove any internal structure from the space of the domain of "map".
12434 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
12436 if (!map)
12437 return NULL;
12439 if (!map->dim->nested[0])
12440 return map;
12442 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
12445 /* Remove any internal structure from the space of the range of "map".
12447 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
12449 if (!map)
12450 return NULL;
12452 if (!map->dim->nested[1])
12453 return map;
12455 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
12458 /* Reorder the dimensions of "bmap" according to the given dim_map
12459 * and set the dimension specification to "space" and
12460 * perform Gaussian elimination on the result.
12462 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
12463 __isl_take isl_space *space, __isl_take struct isl_dim_map *dim_map)
12465 isl_basic_map *res;
12466 unsigned flags;
12467 isl_size n_div;
12469 n_div = isl_basic_map_dim(bmap, isl_dim_div);
12470 if (n_div < 0 || !space || !dim_map)
12471 goto error;
12473 flags = bmap->flags;
12474 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
12475 ISL_FL_CLR(flags, ISL_BASIC_MAP_SORTED);
12476 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
12477 res = isl_basic_map_alloc_space(space, n_div, bmap->n_eq, bmap->n_ineq);
12478 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
12479 if (res)
12480 res->flags = flags;
12481 res = isl_basic_map_gauss(res, NULL);
12482 res = isl_basic_map_finalize(res);
12483 return res;
12484 error:
12485 isl_dim_map_free(dim_map);
12486 isl_basic_map_free(bmap);
12487 isl_space_free(space);
12488 return NULL;
12491 /* Reorder the dimensions of "map" according to given reordering.
12493 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
12494 __isl_take isl_reordering *r)
12496 int i;
12497 struct isl_dim_map *dim_map;
12499 map = isl_map_cow(map);
12500 dim_map = isl_dim_map_from_reordering(r);
12501 if (!map || !r || !dim_map)
12502 goto error;
12504 for (i = 0; i < map->n; ++i) {
12505 struct isl_dim_map *dim_map_i;
12506 isl_space *space;
12508 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
12510 space = isl_reordering_get_space(r);
12511 map->p[i] = isl_basic_map_realign(map->p[i], space, dim_map_i);
12513 if (!map->p[i])
12514 goto error;
12517 map = isl_map_reset_space(map, isl_reordering_get_space(r));
12518 map = isl_map_unmark_normalized(map);
12520 isl_reordering_free(r);
12521 isl_dim_map_free(dim_map);
12522 return map;
12523 error:
12524 isl_dim_map_free(dim_map);
12525 isl_map_free(map);
12526 isl_reordering_free(r);
12527 return NULL;
12530 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
12531 __isl_take isl_reordering *r)
12533 return set_from_map(isl_map_realign(set_to_map(set), r));
12536 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
12537 __isl_take isl_space *model)
12539 isl_ctx *ctx;
12540 isl_bool aligned;
12542 if (!map || !model)
12543 goto error;
12545 ctx = isl_space_get_ctx(model);
12546 if (!isl_space_has_named_params(model))
12547 isl_die(ctx, isl_error_invalid,
12548 "model has unnamed parameters", goto error);
12549 if (isl_map_check_named_params(map) < 0)
12550 goto error;
12551 aligned = isl_map_space_has_equal_params(map, model);
12552 if (aligned < 0)
12553 goto error;
12554 if (!aligned) {
12555 isl_space *space;
12556 isl_reordering *exp;
12558 space = isl_map_peek_space(map);
12559 exp = isl_parameter_alignment_reordering(space, model);
12560 map = isl_map_realign(map, exp);
12563 isl_space_free(model);
12564 return map;
12565 error:
12566 isl_space_free(model);
12567 isl_map_free(map);
12568 return NULL;
12571 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
12572 __isl_take isl_space *model)
12574 return isl_map_align_params(set, model);
12577 /* Align the parameters of "bmap" to those of "model", introducing
12578 * additional parameters if needed.
12580 __isl_give isl_basic_map *isl_basic_map_align_params(
12581 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
12583 isl_ctx *ctx;
12584 isl_bool equal_params;
12585 isl_space *bmap_space;
12587 if (!bmap || !model)
12588 goto error;
12590 ctx = isl_space_get_ctx(model);
12591 if (!isl_space_has_named_params(model))
12592 isl_die(ctx, isl_error_invalid,
12593 "model has unnamed parameters", goto error);
12594 if (isl_basic_map_check_named_params(bmap) < 0)
12595 goto error;
12596 bmap_space = isl_basic_map_peek_space(bmap);
12597 equal_params = isl_space_has_equal_params(bmap_space, model);
12598 if (equal_params < 0)
12599 goto error;
12600 if (!equal_params) {
12601 isl_reordering *exp;
12602 struct isl_dim_map *dim_map;
12604 exp = isl_parameter_alignment_reordering(bmap_space, model);
12605 dim_map = isl_dim_map_from_reordering(exp);
12606 bmap = isl_basic_map_realign(bmap,
12607 isl_reordering_get_space(exp),
12608 isl_dim_map_extend(dim_map, bmap));
12609 isl_reordering_free(exp);
12610 isl_dim_map_free(dim_map);
12613 isl_space_free(model);
12614 return bmap;
12615 error:
12616 isl_space_free(model);
12617 isl_basic_map_free(bmap);
12618 return NULL;
12621 /* Do "bset" and "space" have the same parameters?
12623 isl_bool isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set *bset,
12624 __isl_keep isl_space *space)
12626 isl_space *bset_space;
12628 bset_space = isl_basic_set_peek_space(bset);
12629 return isl_space_has_equal_params(bset_space, space);
12632 /* Do "map" and "space" have the same parameters?
12634 isl_bool isl_map_space_has_equal_params(__isl_keep isl_map *map,
12635 __isl_keep isl_space *space)
12637 isl_space *map_space;
12639 map_space = isl_map_peek_space(map);
12640 return isl_space_has_equal_params(map_space, space);
12643 /* Do "set" and "space" have the same parameters?
12645 isl_bool isl_set_space_has_equal_params(__isl_keep isl_set *set,
12646 __isl_keep isl_space *space)
12648 return isl_map_space_has_equal_params(set_to_map(set), space);
12651 /* Align the parameters of "bset" to those of "model", introducing
12652 * additional parameters if needed.
12654 __isl_give isl_basic_set *isl_basic_set_align_params(
12655 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
12657 return isl_basic_map_align_params(bset, model);
12660 #undef TYPE
12661 #define TYPE isl_map
12662 #define isl_map_drop_dims isl_map_drop
12663 #include "isl_drop_unused_params_templ.c"
12665 /* Drop all parameters not referenced by "set".
12667 __isl_give isl_set *isl_set_drop_unused_params(
12668 __isl_take isl_set *set)
12670 return set_from_map(isl_map_drop_unused_params(set_to_map(set)));
12673 #undef TYPE
12674 #define TYPE isl_basic_map
12675 #define isl_basic_map_drop_dims isl_basic_map_drop
12676 #include "isl_drop_unused_params_templ.c"
12678 /* Drop all parameters not referenced by "bset".
12680 __isl_give isl_basic_set *isl_basic_set_drop_unused_params(
12681 __isl_take isl_basic_set *bset)
12683 return bset_from_bmap(isl_basic_map_drop_unused_params(
12684 bset_to_bmap(bset)));
12687 /* Given a tuple of identifiers "tuple" in a space that corresponds
12688 * to that of "set", if any of those identifiers appear as parameters
12689 * in "set", then equate those parameters with the corresponding
12690 * set dimensions and project out the parameters.
12691 * The result therefore has no such parameters.
12693 static __isl_give isl_set *equate_params(__isl_take isl_set *set,
12694 __isl_keep isl_multi_id *tuple)
12696 int i;
12697 isl_size n;
12698 isl_space *set_space, *tuple_space;
12700 set_space = isl_set_peek_space(set);
12701 tuple_space = isl_multi_id_peek_space(tuple);
12702 if (isl_space_check_equal_tuples(tuple_space, set_space) < 0)
12703 return isl_set_free(set);
12704 n = isl_multi_id_size(tuple);
12705 if (n < 0)
12706 return isl_set_free(set);
12707 for (i = 0; i < n; ++i) {
12708 isl_id *id;
12709 int pos;
12711 id = isl_multi_id_get_at(tuple, i);
12712 if (!id)
12713 return isl_set_free(set);
12714 pos = isl_set_find_dim_by_id(set, isl_dim_param, id);
12715 isl_id_free(id);
12716 if (pos < 0)
12717 continue;
12718 set = isl_set_equate(set, isl_dim_param, pos, isl_dim_set, i);
12719 set = isl_set_project_out(set, isl_dim_param, pos, 1);
12721 return set;
12724 /* Bind the set dimensions of "set" to parameters with identifiers
12725 * specified by "tuple", living in the same space as "set".
12727 * If no parameters with these identifiers appear in "set" already,
12728 * then the set dimensions are simply reinterpreted as parameters.
12729 * Otherwise, the parameters are first equated to the corresponding
12730 * set dimensions.
12732 __isl_give isl_set *isl_set_bind(__isl_take isl_set *set,
12733 __isl_take isl_multi_id *tuple)
12735 isl_space *space;
12737 set = equate_params(set, tuple);
12738 space = isl_set_get_space(set);
12739 space = isl_space_bind_set(space, tuple);
12740 isl_multi_id_free(tuple);
12741 set = isl_set_reset_space(set, space);
12743 return set;
12746 /* Given a tuple of identifiers "tuple" in a space that corresponds
12747 * to the domain of "map", if any of those identifiers appear as parameters
12748 * in "map", then equate those parameters with the corresponding
12749 * input dimensions and project out the parameters.
12750 * The result therefore has no such parameters.
12752 static __isl_give isl_map *map_equate_params(__isl_take isl_map *map,
12753 __isl_keep isl_multi_id *tuple)
12755 int i;
12756 isl_size n;
12757 isl_space *map_space, *tuple_space;
12759 map_space = isl_map_peek_space(map);
12760 tuple_space = isl_multi_id_peek_space(tuple);
12761 if (isl_space_check_domain_tuples(tuple_space, map_space) < 0)
12762 return isl_map_free(map);
12763 n = isl_multi_id_size(tuple);
12764 if (n < 0)
12765 return isl_map_free(map);
12766 for (i = 0; i < n; ++i) {
12767 isl_id *id;
12768 int pos;
12770 id = isl_multi_id_get_at(tuple, i);
12771 if (!id)
12772 return isl_map_free(map);
12773 pos = isl_map_find_dim_by_id(map, isl_dim_param, id);
12774 isl_id_free(id);
12775 if (pos < 0)
12776 continue;
12777 map = isl_map_equate(map, isl_dim_param, pos, isl_dim_in, i);
12778 map = isl_map_project_out(map, isl_dim_param, pos, 1);
12780 return map;
12783 /* Bind the input dimensions of "map" to parameters with identifiers
12784 * specified by "tuple", living in the domain space of "map".
12786 * If no parameters with these identifiers appear in "map" already,
12787 * then the input dimensions are simply reinterpreted as parameters.
12788 * Otherwise, the parameters are first equated to the corresponding
12789 * input dimensions.
12791 __isl_give isl_set *isl_map_bind_domain(__isl_take isl_map *map,
12792 __isl_take isl_multi_id *tuple)
12794 isl_space *space;
12795 isl_set *set;
12797 map = map_equate_params(map, tuple);
12798 space = isl_map_get_space(map);
12799 space = isl_space_bind_map_domain(space, tuple);
12800 isl_multi_id_free(tuple);
12801 set = set_from_map(isl_map_reset_space(map, space));
12803 return set;
12806 /* Bind the output dimensions of "map" to parameters with identifiers
12807 * specified by "tuple", living in the range space of "map".
12809 * Since binding is more easily implemented on the domain,
12810 * bind the input dimensions of the inverse of "map".
12812 __isl_give isl_set *isl_map_bind_range(__isl_take isl_map *map,
12813 __isl_take isl_multi_id *tuple)
12815 return isl_map_bind_domain(isl_map_reverse(map), tuple);
12818 /* Insert a domain corresponding to "tuple"
12819 * into the nullary or unary relation "set".
12820 * The result has an extra initial tuple and is therefore
12821 * either a unary or binary relation.
12822 * Any parameters with identifiers in "tuple" are reinterpreted
12823 * as the corresponding domain dimensions.
12825 static __isl_give isl_map *unbind_params_insert_domain(
12826 __isl_take isl_set *set, __isl_take isl_multi_id *tuple)
12828 isl_space *space;
12829 isl_reordering *r;
12831 space = isl_set_peek_space(set);
12832 r = isl_reordering_unbind_params_insert_domain(space, tuple);
12833 isl_multi_id_free(tuple);
12835 return isl_map_realign(set_to_map(set), r);
12838 /* Construct a set with "tuple" as domain from the parameter domain "set".
12839 * Any parameters with identifiers in "tuple" are reinterpreted
12840 * as the corresponding set dimensions.
12842 __isl_give isl_set *isl_set_unbind_params(__isl_take isl_set *set,
12843 __isl_take isl_multi_id *tuple)
12845 isl_bool is_params;
12847 is_params = isl_set_is_params(set);
12848 if (is_params < 0)
12849 set = isl_set_free(set);
12850 else if (!is_params)
12851 isl_die(isl_set_get_ctx(set), isl_error_invalid,
12852 "expecting parameter domain", set = isl_set_free(set));
12853 return set_from_map(unbind_params_insert_domain(set, tuple));
12856 /* Check that "set" is a proper set, i.e., that it is not a parameter domain.
12858 static isl_stat isl_set_check_is_set(__isl_keep isl_set *set)
12860 isl_bool is_params;
12862 is_params = isl_set_is_params(set);
12863 if (is_params < 0)
12864 return isl_stat_error;
12865 else if (is_params)
12866 isl_die(isl_set_get_ctx(set), isl_error_invalid,
12867 "expecting proper set", return isl_stat_error);
12869 return isl_stat_ok;
12872 /* Construct a map with "domain" as domain and "set" as range.
12873 * Any parameters with identifiers in "domain" are reinterpreted
12874 * as the corresponding domain dimensions.
12876 __isl_give isl_map *isl_set_unbind_params_insert_domain(
12877 __isl_take isl_set *set, __isl_take isl_multi_id *domain)
12879 if (isl_set_check_is_set(set) < 0)
12880 set = isl_set_free(set);
12881 return unbind_params_insert_domain(set, domain);
12884 /* Construct a map with "domain" as domain and "set" as range.
12886 __isl_give isl_map *isl_set_insert_domain(__isl_take isl_set *set,
12887 __isl_take isl_space *domain)
12889 isl_size dim;
12890 isl_space *space;
12891 isl_map *map;
12893 if (isl_set_check_is_set(set) < 0 || isl_space_check_is_set(domain) < 0)
12894 domain = isl_space_free(domain);
12895 dim = isl_space_dim(domain, isl_dim_set);
12896 if (dim < 0)
12897 domain = isl_space_free(domain);
12898 space = isl_set_get_space(set);
12899 domain = isl_space_replace_params(domain, space);
12900 space = isl_space_map_from_domain_and_range(domain, space);
12902 map = isl_map_from_range(set);
12903 map = isl_map_add_dims(map, isl_dim_in, dim);
12904 map = isl_map_reset_space(map, space);
12906 return map;
12909 __isl_give isl_mat *isl_basic_map_equalities_matrix(
12910 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
12911 enum isl_dim_type c2, enum isl_dim_type c3,
12912 enum isl_dim_type c4, enum isl_dim_type c5)
12914 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
12915 struct isl_mat *mat;
12916 int i, j, k;
12917 int pos;
12918 isl_size total;
12920 total = isl_basic_map_dim(bmap, isl_dim_all);
12921 if (total < 0)
12922 return NULL;
12923 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq, total + 1);
12924 if (!mat)
12925 return NULL;
12926 for (i = 0; i < bmap->n_eq; ++i)
12927 for (j = 0, pos = 0; j < 5; ++j) {
12928 int off = isl_basic_map_offset(bmap, c[j]);
12929 isl_size dim = isl_basic_map_dim(bmap, c[j]);
12930 if (dim < 0)
12931 return isl_mat_free(mat);
12932 for (k = 0; k < dim; ++k) {
12933 isl_int_set(mat->row[i][pos],
12934 bmap->eq[i][off + k]);
12935 ++pos;
12939 return mat;
12942 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
12943 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
12944 enum isl_dim_type c2, enum isl_dim_type c3,
12945 enum isl_dim_type c4, enum isl_dim_type c5)
12947 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
12948 struct isl_mat *mat;
12949 int i, j, k;
12950 int pos;
12951 isl_size total;
12953 total = isl_basic_map_dim(bmap, isl_dim_all);
12954 if (total < 0)
12955 return NULL;
12956 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq, total + 1);
12957 if (!mat)
12958 return NULL;
12959 for (i = 0; i < bmap->n_ineq; ++i)
12960 for (j = 0, pos = 0; j < 5; ++j) {
12961 int off = isl_basic_map_offset(bmap, c[j]);
12962 isl_size dim = isl_basic_map_dim(bmap, c[j]);
12963 if (dim < 0)
12964 return isl_mat_free(mat);
12965 for (k = 0; k < dim; ++k) {
12966 isl_int_set(mat->row[i][pos],
12967 bmap->ineq[i][off + k]);
12968 ++pos;
12972 return mat;
12975 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
12976 __isl_take isl_space *space,
12977 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
12978 enum isl_dim_type c2, enum isl_dim_type c3,
12979 enum isl_dim_type c4, enum isl_dim_type c5)
12981 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
12982 isl_basic_map *bmap = NULL;
12983 isl_size dim;
12984 unsigned total;
12985 unsigned extra;
12986 int i, j, k, l;
12987 int pos;
12989 dim = isl_space_dim(space, isl_dim_all);
12990 if (dim < 0 || !eq || !ineq)
12991 goto error;
12993 if (eq->n_col != ineq->n_col)
12994 isl_die(space->ctx, isl_error_invalid,
12995 "equalities and inequalities matrices should have "
12996 "same number of columns", goto error);
12998 total = 1 + dim;
13000 if (eq->n_col < total)
13001 isl_die(space->ctx, isl_error_invalid,
13002 "number of columns too small", goto error);
13004 extra = eq->n_col - total;
13006 bmap = isl_basic_map_alloc_space(isl_space_copy(space), extra,
13007 eq->n_row, ineq->n_row);
13008 if (!bmap)
13009 goto error;
13010 for (i = 0; i < extra; ++i) {
13011 k = isl_basic_map_alloc_div(bmap);
13012 if (k < 0)
13013 goto error;
13014 isl_int_set_si(bmap->div[k][0], 0);
13016 for (i = 0; i < eq->n_row; ++i) {
13017 l = isl_basic_map_alloc_equality(bmap);
13018 if (l < 0)
13019 goto error;
13020 for (j = 0, pos = 0; j < 5; ++j) {
13021 int off = isl_basic_map_offset(bmap, c[j]);
13022 isl_size dim = isl_basic_map_dim(bmap, c[j]);
13023 if (dim < 0)
13024 goto error;
13025 for (k = 0; k < dim; ++k) {
13026 isl_int_set(bmap->eq[l][off + k],
13027 eq->row[i][pos]);
13028 ++pos;
13032 for (i = 0; i < ineq->n_row; ++i) {
13033 l = isl_basic_map_alloc_inequality(bmap);
13034 if (l < 0)
13035 goto error;
13036 for (j = 0, pos = 0; j < 5; ++j) {
13037 int off = isl_basic_map_offset(bmap, c[j]);
13038 isl_size dim = isl_basic_map_dim(bmap, c[j]);
13039 if (dim < 0)
13040 goto error;
13041 for (k = 0; k < dim; ++k) {
13042 isl_int_set(bmap->ineq[l][off + k],
13043 ineq->row[i][pos]);
13044 ++pos;
13049 isl_space_free(space);
13050 isl_mat_free(eq);
13051 isl_mat_free(ineq);
13053 bmap = isl_basic_map_simplify(bmap);
13054 return isl_basic_map_finalize(bmap);
13055 error:
13056 isl_space_free(space);
13057 isl_mat_free(eq);
13058 isl_mat_free(ineq);
13059 isl_basic_map_free(bmap);
13060 return NULL;
13063 __isl_give isl_mat *isl_basic_set_equalities_matrix(
13064 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
13065 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
13067 return isl_basic_map_equalities_matrix(bset_to_bmap(bset),
13068 c1, c2, c3, c4, isl_dim_in);
13071 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
13072 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
13073 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
13075 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset),
13076 c1, c2, c3, c4, isl_dim_in);
13079 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
13080 __isl_take isl_space *space,
13081 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
13082 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
13084 isl_basic_map *bmap;
13085 bmap = isl_basic_map_from_constraint_matrices(space, eq, ineq,
13086 c1, c2, c3, c4, isl_dim_in);
13087 return bset_from_bmap(bmap);
13090 isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
13092 if (!bmap)
13093 return isl_bool_error;
13095 return isl_space_can_zip(bmap->dim);
13098 isl_bool isl_map_can_zip(__isl_keep isl_map *map)
13100 if (!map)
13101 return isl_bool_error;
13103 return isl_space_can_zip(map->dim);
13106 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
13107 * (A -> C) -> (B -> D).
13109 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
13111 unsigned pos;
13112 isl_size n_in;
13113 isl_size n1;
13114 isl_size n2;
13116 if (!bmap)
13117 return NULL;
13119 if (!isl_basic_map_can_zip(bmap))
13120 isl_die(bmap->ctx, isl_error_invalid,
13121 "basic map cannot be zipped", goto error);
13122 n_in = isl_space_dim(bmap->dim->nested[0], isl_dim_in);
13123 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
13124 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
13125 if (n_in < 0 || n1 < 0 || n2 < 0)
13126 return isl_basic_map_free(bmap);
13127 pos = isl_basic_map_offset(bmap, isl_dim_in) + n_in;
13128 bmap = isl_basic_map_cow(bmap);
13129 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
13130 if (!bmap)
13131 return NULL;
13132 bmap->dim = isl_space_zip(bmap->dim);
13133 if (!bmap->dim)
13134 goto error;
13135 bmap = isl_basic_map_mark_final(bmap);
13136 return bmap;
13137 error:
13138 isl_basic_map_free(bmap);
13139 return NULL;
13142 /* Given a map (A -> B) -> (C -> D), return the corresponding map
13143 * (A -> C) -> (B -> D).
13145 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
13147 if (!map)
13148 return NULL;
13150 if (!isl_map_can_zip(map))
13151 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
13152 goto error);
13154 return isl_map_transform(map, &isl_space_zip, &isl_basic_map_zip);
13155 error:
13156 isl_map_free(map);
13157 return NULL;
13160 /* Can we apply isl_basic_map_curry to "bmap"?
13161 * That is, does it have a nested relation in its domain?
13163 isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
13165 if (!bmap)
13166 return isl_bool_error;
13168 return isl_space_can_curry(bmap->dim);
13171 /* Can we apply isl_map_curry to "map"?
13172 * That is, does it have a nested relation in its domain?
13174 isl_bool isl_map_can_curry(__isl_keep isl_map *map)
13176 if (!map)
13177 return isl_bool_error;
13179 return isl_space_can_curry(map->dim);
13182 /* Given a basic map (A -> B) -> C, return the corresponding basic map
13183 * A -> (B -> C).
13185 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
13188 if (!bmap)
13189 return NULL;
13191 if (!isl_basic_map_can_curry(bmap))
13192 isl_die(bmap->ctx, isl_error_invalid,
13193 "basic map cannot be curried", goto error);
13194 bmap = isl_basic_map_cow(bmap);
13195 if (!bmap)
13196 return NULL;
13197 bmap->dim = isl_space_curry(bmap->dim);
13198 if (!bmap->dim)
13199 goto error;
13200 bmap = isl_basic_map_mark_final(bmap);
13201 return bmap;
13202 error:
13203 isl_basic_map_free(bmap);
13204 return NULL;
13207 /* Given a map (A -> B) -> C, return the corresponding map
13208 * A -> (B -> C).
13210 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
13212 return isl_map_change_space(map, &isl_map_can_curry,
13213 "map cannot be curried", &isl_space_curry);
13216 /* Can isl_map_range_curry be applied to "map"?
13217 * That is, does it have a nested relation in its range,
13218 * the domain of which is itself a nested relation?
13220 isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
13222 if (!map)
13223 return isl_bool_error;
13225 return isl_space_can_range_curry(map->dim);
13228 /* Given a map A -> ((B -> C) -> D), return the corresponding map
13229 * A -> (B -> (C -> D)).
13231 __isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
13233 return isl_map_change_space(map, &isl_map_can_range_curry,
13234 "map range cannot be curried",
13235 &isl_space_range_curry);
13238 /* Can we apply isl_basic_map_uncurry to "bmap"?
13239 * That is, does it have a nested relation in its domain?
13241 isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
13243 if (!bmap)
13244 return isl_bool_error;
13246 return isl_space_can_uncurry(bmap->dim);
13249 /* Can we apply isl_map_uncurry to "map"?
13250 * That is, does it have a nested relation in its domain?
13252 isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
13254 if (!map)
13255 return isl_bool_error;
13257 return isl_space_can_uncurry(map->dim);
13260 /* Given a basic map A -> (B -> C), return the corresponding basic map
13261 * (A -> B) -> C.
13263 __isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
13266 if (!bmap)
13267 return NULL;
13269 if (!isl_basic_map_can_uncurry(bmap))
13270 isl_die(bmap->ctx, isl_error_invalid,
13271 "basic map cannot be uncurried",
13272 return isl_basic_map_free(bmap));
13273 bmap = isl_basic_map_cow(bmap);
13274 if (!bmap)
13275 return NULL;
13276 bmap->dim = isl_space_uncurry(bmap->dim);
13277 if (!bmap->dim)
13278 return isl_basic_map_free(bmap);
13279 bmap = isl_basic_map_mark_final(bmap);
13280 return bmap;
13283 /* Given a map A -> (B -> C), return the corresponding map
13284 * (A -> B) -> C.
13286 __isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
13288 return isl_map_change_space(map, &isl_map_can_uncurry,
13289 "map cannot be uncurried", &isl_space_uncurry);
13292 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
13293 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13295 return isl_map_equate(set, type1, pos1, type2, pos2);
13298 /* Construct a basic map where the given dimensions are equal to each other.
13300 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
13301 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13303 isl_basic_map *bmap = NULL;
13304 int i;
13305 isl_size total;
13307 total = isl_space_dim(space, isl_dim_all);
13308 if (total < 0 ||
13309 isl_space_check_range(space, type1, pos1, 1) < 0 ||
13310 isl_space_check_range(space, type2, pos2, 1) < 0)
13311 goto error;
13313 if (type1 == type2 && pos1 == pos2)
13314 return isl_basic_map_universe(space);
13316 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
13317 i = isl_basic_map_alloc_equality(bmap);
13318 if (i < 0)
13319 goto error;
13320 isl_seq_clr(bmap->eq[i], 1 + total);
13321 pos1 += isl_basic_map_offset(bmap, type1);
13322 pos2 += isl_basic_map_offset(bmap, type2);
13323 isl_int_set_si(bmap->eq[i][pos1], -1);
13324 isl_int_set_si(bmap->eq[i][pos2], 1);
13325 bmap = isl_basic_map_finalize(bmap);
13326 isl_space_free(space);
13327 return bmap;
13328 error:
13329 isl_space_free(space);
13330 isl_basic_map_free(bmap);
13331 return NULL;
13334 /* Add a constraint imposing that the given two dimensions are equal.
13336 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
13337 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13339 isl_basic_map *eq;
13341 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
13343 bmap = isl_basic_map_intersect(bmap, eq);
13345 return bmap;
13348 /* Add a constraint imposing that the given two dimensions are equal.
13350 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
13351 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13353 isl_basic_map *bmap;
13355 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
13357 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
13359 return map;
13362 /* Add a constraint imposing that the given two dimensions have opposite values.
13364 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
13365 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13367 isl_basic_map *bmap = NULL;
13368 int i;
13369 isl_size total;
13371 if (isl_map_check_range(map, type1, pos1, 1) < 0)
13372 return isl_map_free(map);
13373 if (isl_map_check_range(map, type2, pos2, 1) < 0)
13374 return isl_map_free(map);
13376 total = isl_map_dim(map, isl_dim_all);
13377 if (total < 0)
13378 return isl_map_free(map);
13379 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
13380 i = isl_basic_map_alloc_equality(bmap);
13381 if (i < 0)
13382 goto error;
13383 isl_seq_clr(bmap->eq[i], 1 + total);
13384 pos1 += isl_basic_map_offset(bmap, type1);
13385 pos2 += isl_basic_map_offset(bmap, type2);
13386 isl_int_set_si(bmap->eq[i][pos1], 1);
13387 isl_int_set_si(bmap->eq[i][pos2], 1);
13388 bmap = isl_basic_map_finalize(bmap);
13390 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
13392 return map;
13393 error:
13394 isl_basic_map_free(bmap);
13395 isl_map_free(map);
13396 return NULL;
13399 /* Construct a constraint imposing that the value of the first dimension is
13400 * greater than or equal to that of the second.
13402 static __isl_give isl_constraint *constraint_order_ge(
13403 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
13404 enum isl_dim_type type2, int pos2)
13406 isl_constraint *c;
13408 if (isl_space_check_range(space, type1, pos1, 1) < 0 ||
13409 isl_space_check_range(space, type2, pos2, 1) < 0)
13410 space = isl_space_free(space);
13411 if (!space)
13412 return NULL;
13414 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
13416 if (type1 == type2 && pos1 == pos2)
13417 return c;
13419 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
13420 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
13422 return c;
13425 /* Add a constraint imposing that the value of the first dimension is
13426 * greater than or equal to that of the second.
13428 __isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
13429 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13431 isl_constraint *c;
13432 isl_space *space;
13434 if (type1 == type2 && pos1 == pos2)
13435 return bmap;
13436 space = isl_basic_map_get_space(bmap);
13437 c = constraint_order_ge(space, type1, pos1, type2, pos2);
13438 bmap = isl_basic_map_add_constraint(bmap, c);
13440 return bmap;
13443 /* Add a constraint imposing that the value of the first dimension is
13444 * greater than or equal to that of the second.
13446 __isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
13447 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13449 isl_constraint *c;
13450 isl_space *space;
13452 if (type1 == type2 && pos1 == pos2)
13453 return map;
13454 space = isl_map_get_space(map);
13455 c = constraint_order_ge(space, type1, pos1, type2, pos2);
13456 map = isl_map_add_constraint(map, c);
13458 return map;
13461 /* Add a constraint imposing that the value of the first dimension is
13462 * less than or equal to that of the second.
13464 __isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
13465 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13467 return isl_map_order_ge(map, type2, pos2, type1, pos1);
13470 /* Construct a basic map where the value of the first dimension is
13471 * greater than that of the second.
13473 static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
13474 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13476 isl_basic_map *bmap = NULL;
13477 int i;
13478 isl_size total;
13480 if (isl_space_check_range(space, type1, pos1, 1) < 0 ||
13481 isl_space_check_range(space, type2, pos2, 1) < 0)
13482 goto error;
13484 if (type1 == type2 && pos1 == pos2)
13485 return isl_basic_map_empty(space);
13487 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
13488 total = isl_basic_map_dim(bmap, isl_dim_all);
13489 i = isl_basic_map_alloc_inequality(bmap);
13490 if (total < 0 || i < 0)
13491 return isl_basic_map_free(bmap);
13492 isl_seq_clr(bmap->ineq[i], 1 + total);
13493 pos1 += isl_basic_map_offset(bmap, type1);
13494 pos2 += isl_basic_map_offset(bmap, type2);
13495 isl_int_set_si(bmap->ineq[i][pos1], 1);
13496 isl_int_set_si(bmap->ineq[i][pos2], -1);
13497 isl_int_set_si(bmap->ineq[i][0], -1);
13498 bmap = isl_basic_map_finalize(bmap);
13500 return bmap;
13501 error:
13502 isl_space_free(space);
13503 isl_basic_map_free(bmap);
13504 return NULL;
13507 /* Add a constraint imposing that the value of the first dimension is
13508 * greater than that of the second.
13510 __isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
13511 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13513 isl_basic_map *gt;
13515 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
13517 bmap = isl_basic_map_intersect(bmap, gt);
13519 return bmap;
13522 /* Add a constraint imposing that the value of the first dimension is
13523 * greater than that of the second.
13525 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
13526 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13528 isl_basic_map *bmap;
13530 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
13532 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
13534 return map;
13537 /* Add a constraint imposing that the value of the first dimension is
13538 * smaller than that of the second.
13540 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
13541 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
13543 return isl_map_order_gt(map, type2, pos2, type1, pos1);
13546 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
13547 int pos)
13549 isl_aff *div;
13550 isl_local_space *ls;
13552 if (!bmap)
13553 return NULL;
13555 if (!isl_basic_map_divs_known(bmap))
13556 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
13557 "some divs are unknown", return NULL);
13559 ls = isl_basic_map_get_local_space(bmap);
13560 div = isl_local_space_get_div(ls, pos);
13561 isl_local_space_free(ls);
13563 return div;
13566 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
13567 int pos)
13569 return isl_basic_map_get_div(bset, pos);
13572 /* Plug in "subs" for set dimension "pos" of "set".
13574 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
13575 unsigned pos, __isl_keep isl_aff *subs)
13577 isl_multi_aff *ma;
13579 if (set && isl_set_plain_is_empty(set))
13580 return set;
13582 ma = isl_multi_aff_identity_on_domain_space(isl_set_get_space(set));
13583 ma = isl_multi_aff_set_aff(ma, pos, isl_aff_copy(subs));
13584 return isl_set_preimage_multi_aff(set, ma);
13587 /* Check if the range of "ma" is compatible with the domain or range
13588 * (depending on "type") of "bmap".
13590 static isl_stat check_basic_map_compatible_range_multi_aff(
13591 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
13592 __isl_keep isl_multi_aff *ma)
13594 isl_bool m;
13595 isl_space *ma_space;
13597 ma_space = isl_multi_aff_get_space(ma);
13599 m = isl_space_has_equal_params(bmap->dim, ma_space);
13600 if (m < 0)
13601 goto error;
13602 if (!m)
13603 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
13604 "parameters don't match", goto error);
13605 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
13606 if (m < 0)
13607 goto error;
13608 if (!m)
13609 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
13610 "spaces don't match", goto error);
13612 isl_space_free(ma_space);
13613 return isl_stat_ok;
13614 error:
13615 isl_space_free(ma_space);
13616 return isl_stat_error;
13619 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
13620 * coefficients before the transformed range of dimensions,
13621 * the "n_after" coefficients after the transformed range of dimensions
13622 * and the coefficients of the other divs in "bmap".
13624 static __isl_give isl_basic_map *set_ma_divs(__isl_take isl_basic_map *bmap,
13625 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
13627 int i;
13628 isl_size n_param;
13629 isl_size n_set;
13630 isl_local_space *ls;
13632 if (n_div == 0)
13633 return bmap;
13635 ls = isl_aff_get_domain_local_space(ma->u.p[0]);
13636 n_param = isl_local_space_dim(ls, isl_dim_param);
13637 n_set = isl_local_space_dim(ls, isl_dim_set);
13638 if (n_param < 0 || n_set < 0)
13639 return isl_basic_map_free(bmap);
13641 for (i = 0; i < n_div; ++i) {
13642 int o_bmap = 0, o_ls = 0;
13644 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
13645 o_bmap += 1 + 1 + n_param;
13646 o_ls += 1 + 1 + n_param;
13647 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
13648 o_bmap += n_before;
13649 isl_seq_cpy(bmap->div[i] + o_bmap,
13650 ls->div->row[i] + o_ls, n_set);
13651 o_bmap += n_set;
13652 o_ls += n_set;
13653 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
13654 o_bmap += n_after;
13655 isl_seq_cpy(bmap->div[i] + o_bmap,
13656 ls->div->row[i] + o_ls, n_div);
13657 o_bmap += n_div;
13658 o_ls += n_div;
13659 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
13660 bmap = isl_basic_map_add_div_constraints(bmap, i);
13661 if (!bmap)
13662 goto error;
13665 isl_local_space_free(ls);
13666 return bmap;
13667 error:
13668 isl_local_space_free(ls);
13669 return isl_basic_map_free(bmap);
13672 /* How many stride constraints does "ma" enforce?
13673 * That is, how many of the affine expressions have a denominator
13674 * different from one?
13676 static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
13678 int i;
13679 int strides = 0;
13681 for (i = 0; i < ma->n; ++i)
13682 if (!isl_int_is_one(ma->u.p[i]->v->el[0]))
13683 strides++;
13685 return strides;
13688 /* For each affine expression in ma of the form
13690 * x_i = (f_i y + h_i)/m_i
13692 * with m_i different from one, add a constraint to "bmap"
13693 * of the form
13695 * f_i y + h_i = m_i alpha_i
13697 * with alpha_i an additional existentially quantified variable.
13699 * The input variables of "ma" correspond to a subset of the variables
13700 * of "bmap". There are "n_before" variables in "bmap" before this
13701 * subset and "n_after" variables after this subset.
13702 * The integer divisions of the affine expressions in "ma" are assumed
13703 * to have been aligned. There are "n_div_ma" of them and
13704 * they appear first in "bmap", straight after the "n_after" variables.
13706 static __isl_give isl_basic_map *add_ma_strides(
13707 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
13708 int n_before, int n_after, int n_div_ma)
13710 int i, k;
13711 int div;
13712 isl_size total;
13713 isl_size n_param;
13714 isl_size n_in;
13716 total = isl_basic_map_dim(bmap, isl_dim_all);
13717 n_param = isl_multi_aff_dim(ma, isl_dim_param);
13718 n_in = isl_multi_aff_dim(ma, isl_dim_in);
13719 if (total < 0 || n_param < 0 || n_in < 0)
13720 return isl_basic_map_free(bmap);
13721 for (i = 0; i < ma->n; ++i) {
13722 int o_bmap = 0, o_ma = 1;
13724 if (isl_int_is_one(ma->u.p[i]->v->el[0]))
13725 continue;
13726 div = isl_basic_map_alloc_div(bmap);
13727 k = isl_basic_map_alloc_equality(bmap);
13728 if (div < 0 || k < 0)
13729 goto error;
13730 isl_int_set_si(bmap->div[div][0], 0);
13731 isl_seq_cpy(bmap->eq[k] + o_bmap,
13732 ma->u.p[i]->v->el + o_ma, 1 + n_param);
13733 o_bmap += 1 + n_param;
13734 o_ma += 1 + n_param;
13735 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
13736 o_bmap += n_before;
13737 isl_seq_cpy(bmap->eq[k] + o_bmap,
13738 ma->u.p[i]->v->el + o_ma, n_in);
13739 o_bmap += n_in;
13740 o_ma += n_in;
13741 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
13742 o_bmap += n_after;
13743 isl_seq_cpy(bmap->eq[k] + o_bmap,
13744 ma->u.p[i]->v->el + o_ma, n_div_ma);
13745 o_bmap += n_div_ma;
13746 o_ma += n_div_ma;
13747 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
13748 isl_int_neg(bmap->eq[k][1 + total], ma->u.p[i]->v->el[0]);
13749 total++;
13752 return bmap;
13753 error:
13754 isl_basic_map_free(bmap);
13755 return NULL;
13758 /* Replace the domain or range space (depending on "type) of "space" by "set".
13760 static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
13761 enum isl_dim_type type, __isl_take isl_space *set)
13763 if (type == isl_dim_in) {
13764 space = isl_space_range(space);
13765 space = isl_space_map_from_domain_and_range(set, space);
13766 } else {
13767 space = isl_space_domain(space);
13768 space = isl_space_map_from_domain_and_range(space, set);
13771 return space;
13774 /* Compute the preimage of the domain or range (depending on "type")
13775 * of "bmap" under the function represented by "ma".
13776 * In other words, plug in "ma" in the domain or range of "bmap".
13777 * The result is a basic map that lives in the same space as "bmap"
13778 * except that the domain or range has been replaced by
13779 * the domain space of "ma".
13781 * If bmap is represented by
13783 * A(p) + S u + B x + T v + C(divs) >= 0,
13785 * where u and x are input and output dimensions if type == isl_dim_out
13786 * while x and v are input and output dimensions if type == isl_dim_in,
13787 * and ma is represented by
13789 * x = D(p) + F(y) + G(divs')
13791 * then the result is
13793 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
13795 * The divs in the input set are similarly adjusted.
13796 * In particular
13798 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
13800 * becomes
13802 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
13803 * B_i G(divs') + c_i(divs))/n_i)
13805 * If bmap is not a rational map and if F(y) involves any denominators
13807 * x_i = (f_i y + h_i)/m_i
13809 * then additional constraints are added to ensure that we only
13810 * map back integer points. That is we enforce
13812 * f_i y + h_i = m_i alpha_i
13814 * with alpha_i an additional existentially quantified variable.
13816 * We first copy over the divs from "ma".
13817 * Then we add the modified constraints and divs from "bmap".
13818 * Finally, we add the stride constraints, if needed.
13820 __isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
13821 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
13822 __isl_take isl_multi_aff *ma)
13824 int i, k;
13825 isl_space *space;
13826 isl_basic_map *res = NULL;
13827 isl_size n_before, n_after, n_div_bmap, n_div_ma;
13828 isl_int f, c1, c2, g;
13829 isl_bool rational;
13830 int strides;
13832 isl_int_init(f);
13833 isl_int_init(c1);
13834 isl_int_init(c2);
13835 isl_int_init(g);
13837 ma = isl_multi_aff_align_divs(ma);
13838 if (!bmap || !ma)
13839 goto error;
13840 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
13841 goto error;
13843 if (type == isl_dim_in) {
13844 n_before = 0;
13845 n_after = isl_basic_map_dim(bmap, isl_dim_out);
13846 } else {
13847 n_before = isl_basic_map_dim(bmap, isl_dim_in);
13848 n_after = 0;
13850 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
13851 n_div_ma = ma->n ? isl_aff_dim(ma->u.p[0], isl_dim_div) : 0;
13852 if (n_before < 0 || n_after < 0 || n_div_bmap < 0 || n_div_ma < 0)
13853 goto error;
13855 space = isl_multi_aff_get_domain_space(ma);
13856 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
13857 rational = isl_basic_map_is_rational(bmap);
13858 strides = rational ? 0 : multi_aff_strides(ma);
13859 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
13860 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
13861 if (rational)
13862 res = isl_basic_map_set_rational(res);
13864 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
13865 if (isl_basic_map_alloc_div(res) < 0)
13866 goto error;
13868 res = set_ma_divs(res, ma, n_before, n_after, n_div_ma);
13869 if (!res)
13870 goto error;
13872 for (i = 0; i < bmap->n_eq; ++i) {
13873 k = isl_basic_map_alloc_equality(res);
13874 if (k < 0)
13875 goto error;
13876 if (isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
13877 n_after, n_div_ma, n_div_bmap,
13878 f, c1, c2, g, 0) < 0)
13879 goto error;
13882 for (i = 0; i < bmap->n_ineq; ++i) {
13883 k = isl_basic_map_alloc_inequality(res);
13884 if (k < 0)
13885 goto error;
13886 if (isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
13887 n_after, n_div_ma, n_div_bmap,
13888 f, c1, c2, g, 0) < 0)
13889 goto error;
13892 for (i = 0; i < bmap->n_div; ++i) {
13893 if (isl_int_is_zero(bmap->div[i][0])) {
13894 isl_int_set_si(res->div[n_div_ma + i][0], 0);
13895 continue;
13897 if (isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
13898 n_before, n_after, n_div_ma, n_div_bmap,
13899 f, c1, c2, g, 1) < 0)
13900 goto error;
13903 if (strides)
13904 res = add_ma_strides(res, ma, n_before, n_after, n_div_ma);
13906 isl_int_clear(f);
13907 isl_int_clear(c1);
13908 isl_int_clear(c2);
13909 isl_int_clear(g);
13910 isl_basic_map_free(bmap);
13911 isl_multi_aff_free(ma);
13912 res = isl_basic_map_simplify(res);
13913 return isl_basic_map_finalize(res);
13914 error:
13915 isl_int_clear(f);
13916 isl_int_clear(c1);
13917 isl_int_clear(c2);
13918 isl_int_clear(g);
13919 isl_basic_map_free(bmap);
13920 isl_multi_aff_free(ma);
13921 isl_basic_map_free(res);
13922 return NULL;
13925 /* Compute the preimage of "bset" under the function represented by "ma".
13926 * In other words, plug in "ma" in "bset". The result is a basic set
13927 * that lives in the domain space of "ma".
13929 __isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
13930 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
13932 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
13935 /* Compute the preimage of the domain of "bmap" under the function
13936 * represented by "ma".
13937 * In other words, plug in "ma" in the domain of "bmap".
13938 * The result is a basic map that lives in the same space as "bmap"
13939 * except that the domain has been replaced by the domain space of "ma".
13941 __isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
13942 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13944 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
13947 /* Compute the preimage of the range of "bmap" under the function
13948 * represented by "ma".
13949 * In other words, plug in "ma" in the range of "bmap".
13950 * The result is a basic map that lives in the same space as "bmap"
13951 * except that the range has been replaced by the domain space of "ma".
13953 __isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
13954 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
13956 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
13959 /* Check if the range of "ma" is compatible with the domain or range
13960 * (depending on "type") of "map".
13961 * Return isl_stat_error if anything is wrong.
13963 static isl_stat check_map_compatible_range_multi_aff(
13964 __isl_keep isl_map *map, enum isl_dim_type type,
13965 __isl_keep isl_multi_aff *ma)
13967 isl_bool m;
13968 isl_space *ma_space;
13970 ma_space = isl_multi_aff_get_space(ma);
13971 m = isl_map_space_tuple_is_equal(map, type, ma_space, isl_dim_out);
13972 isl_space_free(ma_space);
13973 if (m < 0)
13974 return isl_stat_error;
13975 if (!m)
13976 isl_die(isl_map_get_ctx(map), isl_error_invalid,
13977 "spaces don't match", return isl_stat_error);
13978 return isl_stat_ok;
13981 /* Compute the preimage of the domain or range (depending on "type")
13982 * of "map" under the function represented by "ma".
13983 * In other words, plug in "ma" in the domain or range of "map".
13984 * The result is a map that lives in the same space as "map"
13985 * except that the domain or range has been replaced by
13986 * the domain space of "ma".
13988 * The parameters are assumed to have been aligned.
13990 static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
13991 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
13993 int i;
13994 isl_space *space;
13996 map = isl_map_cow(map);
13997 ma = isl_multi_aff_align_divs(ma);
13998 if (!map || !ma)
13999 goto error;
14000 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
14001 goto error;
14003 for (i = 0; i < map->n; ++i) {
14004 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
14005 isl_multi_aff_copy(ma));
14006 if (!map->p[i])
14007 goto error;
14010 space = isl_multi_aff_get_domain_space(ma);
14011 space = isl_space_set(isl_map_get_space(map), type, space);
14013 isl_space_free(isl_map_take_space(map));
14014 map = isl_map_restore_space(map, space);
14015 if (!map)
14016 goto error;
14018 isl_multi_aff_free(ma);
14019 if (map->n > 1)
14020 ISL_F_CLR(map, ISL_MAP_DISJOINT);
14021 ISL_F_CLR(map, ISL_SET_NORMALIZED);
14022 return map;
14023 error:
14024 isl_multi_aff_free(ma);
14025 isl_map_free(map);
14026 return NULL;
14029 /* Compute the preimage of the domain or range (depending on "type")
14030 * of "map" under the function represented by "ma".
14031 * In other words, plug in "ma" in the domain or range of "map".
14032 * The result is a map that lives in the same space as "map"
14033 * except that the domain or range has been replaced by
14034 * the domain space of "ma".
14036 __isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
14037 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
14039 isl_bool aligned;
14041 if (!map || !ma)
14042 goto error;
14044 aligned = isl_map_space_has_equal_params(map, ma->space);
14045 if (aligned < 0)
14046 goto error;
14047 if (aligned)
14048 return map_preimage_multi_aff(map, type, ma);
14050 if (isl_map_check_named_params(map) < 0)
14051 goto error;
14052 if (!isl_space_has_named_params(ma->space))
14053 isl_die(map->ctx, isl_error_invalid,
14054 "unaligned unnamed parameters", goto error);
14055 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
14056 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
14058 return map_preimage_multi_aff(map, type, ma);
14059 error:
14060 isl_multi_aff_free(ma);
14061 return isl_map_free(map);
14064 /* Compute the preimage of "set" under the function represented by "ma".
14065 * In other words, plug in "ma" in "set". The result is a set
14066 * that lives in the domain space of "ma".
14068 __isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
14069 __isl_take isl_multi_aff *ma)
14071 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
14074 /* Compute the preimage of the domain of "map" under the function
14075 * represented by "ma".
14076 * In other words, plug in "ma" in the domain of "map".
14077 * The result is a map that lives in the same space as "map"
14078 * except that the domain has been replaced by the domain space of "ma".
14080 __isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
14081 __isl_take isl_multi_aff *ma)
14083 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
14086 /* Compute the preimage of the range of "map" under the function
14087 * represented by "ma".
14088 * In other words, plug in "ma" in the range of "map".
14089 * The result is a map that lives in the same space as "map"
14090 * except that the range has been replaced by the domain space of "ma".
14092 __isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
14093 __isl_take isl_multi_aff *ma)
14095 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
14098 /* Compute the preimage of "map" under the function represented by "pma".
14099 * In other words, plug in "pma" in the domain or range of "map".
14100 * The result is a map that lives in the same space as "map",
14101 * except that the space of type "type" has been replaced by
14102 * the domain space of "pma".
14104 * The parameters of "map" and "pma" are assumed to have been aligned.
14106 static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
14107 __isl_take isl_map *map, enum isl_dim_type type,
14108 __isl_take isl_pw_multi_aff *pma)
14110 int i;
14111 isl_map *res;
14113 if (!pma)
14114 goto error;
14116 if (pma->n == 0) {
14117 isl_pw_multi_aff_free(pma);
14118 res = isl_map_empty(isl_map_get_space(map));
14119 isl_map_free(map);
14120 return res;
14123 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
14124 isl_multi_aff_copy(pma->p[0].maff));
14125 if (type == isl_dim_in)
14126 res = isl_map_intersect_domain(res,
14127 isl_map_copy(pma->p[0].set));
14128 else
14129 res = isl_map_intersect_range(res,
14130 isl_map_copy(pma->p[0].set));
14132 for (i = 1; i < pma->n; ++i) {
14133 isl_map *res_i;
14135 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
14136 isl_multi_aff_copy(pma->p[i].maff));
14137 if (type == isl_dim_in)
14138 res_i = isl_map_intersect_domain(res_i,
14139 isl_map_copy(pma->p[i].set));
14140 else
14141 res_i = isl_map_intersect_range(res_i,
14142 isl_map_copy(pma->p[i].set));
14143 res = isl_map_union(res, res_i);
14146 isl_pw_multi_aff_free(pma);
14147 isl_map_free(map);
14148 return res;
14149 error:
14150 isl_pw_multi_aff_free(pma);
14151 isl_map_free(map);
14152 return NULL;
14155 /* Compute the preimage of "map" under the function represented by "pma".
14156 * In other words, plug in "pma" in the domain or range of "map".
14157 * The result is a map that lives in the same space as "map",
14158 * except that the space of type "type" has been replaced by
14159 * the domain space of "pma".
14161 __isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
14162 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
14164 isl_bool aligned;
14166 if (!map || !pma)
14167 goto error;
14169 aligned = isl_map_space_has_equal_params(map, pma->dim);
14170 if (aligned < 0)
14171 goto error;
14172 if (aligned)
14173 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
14175 if (isl_map_check_named_params(map) < 0)
14176 goto error;
14177 if (isl_pw_multi_aff_check_named_params(pma) < 0)
14178 goto error;
14179 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
14180 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
14182 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
14183 error:
14184 isl_pw_multi_aff_free(pma);
14185 return isl_map_free(map);
14188 /* Compute the preimage of "set" under the function represented by "pma".
14189 * In other words, plug in "pma" in "set". The result is a set
14190 * that lives in the domain space of "pma".
14192 __isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
14193 __isl_take isl_pw_multi_aff *pma)
14195 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
14198 /* Compute the preimage of the domain of "map" under the function
14199 * represented by "pma".
14200 * In other words, plug in "pma" in the domain of "map".
14201 * The result is a map that lives in the same space as "map",
14202 * except that domain space has been replaced by the domain space of "pma".
14204 __isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
14205 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
14207 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
14210 /* Compute the preimage of the range of "map" under the function
14211 * represented by "pma".
14212 * In other words, plug in "pma" in the range of "map".
14213 * The result is a map that lives in the same space as "map",
14214 * except that range space has been replaced by the domain space of "pma".
14216 __isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
14217 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
14219 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
14222 /* Compute the preimage of "map" under the function represented by "mpa".
14223 * In other words, plug in "mpa" in the domain or range of "map".
14224 * The result is a map that lives in the same space as "map",
14225 * except that the space of type "type" has been replaced by
14226 * the domain space of "mpa".
14228 * If the map does not involve any constraints that refer to the
14229 * dimensions of the substituted space, then the only possible
14230 * effect of "mpa" on the map is to map the space to a different space.
14231 * We create a separate isl_multi_aff to effectuate this change
14232 * in order to avoid spurious splitting of the map along the pieces
14233 * of "mpa".
14234 * If "mpa" has a non-trivial explicit domain, however,
14235 * then the full substitution should be performed.
14237 __isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
14238 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
14240 isl_size n;
14241 isl_bool full;
14242 isl_pw_multi_aff *pma;
14244 n = isl_map_dim(map, type);
14245 if (n < 0 || !mpa)
14246 goto error;
14248 full = isl_map_involves_dims(map, type, 0, n);
14249 if (full >= 0 && !full)
14250 full = isl_multi_pw_aff_has_non_trivial_domain(mpa);
14251 if (full < 0)
14252 goto error;
14253 if (!full) {
14254 isl_space *space;
14255 isl_multi_aff *ma;
14257 space = isl_multi_pw_aff_get_space(mpa);
14258 isl_multi_pw_aff_free(mpa);
14259 ma = isl_multi_aff_zero(space);
14260 return isl_map_preimage_multi_aff(map, type, ma);
14263 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
14264 return isl_map_preimage_pw_multi_aff(map, type, pma);
14265 error:
14266 isl_map_free(map);
14267 isl_multi_pw_aff_free(mpa);
14268 return NULL;
14271 /* Compute the preimage of "map" under the function represented by "mpa".
14272 * In other words, plug in "mpa" in the domain "map".
14273 * The result is a map that lives in the same space as "map",
14274 * except that domain space has been replaced by the domain space of "mpa".
14276 __isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
14277 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
14279 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
14282 /* Compute the preimage of "set" by the function represented by "mpa".
14283 * In other words, plug in "mpa" in "set".
14285 __isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
14286 __isl_take isl_multi_pw_aff *mpa)
14288 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);
14291 /* Return a copy of the equality constraints of "bset" as a matrix.
14293 __isl_give isl_mat *isl_basic_set_extract_equalities(
14294 __isl_keep isl_basic_set *bset)
14296 isl_ctx *ctx;
14297 isl_size total;
14299 total = isl_basic_set_dim(bset, isl_dim_all);
14300 if (total < 0)
14301 return NULL;
14303 ctx = isl_basic_set_get_ctx(bset);
14304 return isl_mat_sub_alloc6(ctx, bset->eq, 0, bset->n_eq, 0, 1 + total);
14307 /* Are the "n" "coefficients" starting at "first" of the integer division
14308 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
14309 * to each other?
14310 * The "coefficient" at position 0 is the denominator.
14311 * The "coefficient" at position 1 is the constant term.
14313 isl_bool isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map *bmap1,
14314 int pos1, __isl_keep isl_basic_map *bmap2, int pos2,
14315 unsigned first, unsigned n)
14317 if (isl_basic_map_check_range(bmap1, isl_dim_div, pos1, 1) < 0)
14318 return isl_bool_error;
14319 if (isl_basic_map_check_range(bmap2, isl_dim_div, pos2, 1) < 0)
14320 return isl_bool_error;
14321 return isl_seq_eq(bmap1->div[pos1] + first,
14322 bmap2->div[pos2] + first, n);
14325 /* Are the integer division expressions at position "pos1" in "bmap1" and
14326 * "pos2" in "bmap2" equal to each other, except that the constant terms
14327 * are different?
14329 isl_bool isl_basic_map_equal_div_expr_except_constant(
14330 __isl_keep isl_basic_map *bmap1, int pos1,
14331 __isl_keep isl_basic_map *bmap2, int pos2)
14333 isl_bool equal;
14334 isl_size total, total2;
14336 total = isl_basic_map_dim(bmap1, isl_dim_all);
14337 total2 = isl_basic_map_dim(bmap2, isl_dim_all);
14338 if (total < 0 || total2 < 0)
14339 return isl_bool_error;
14340 if (total != total2)
14341 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
14342 "incomparable div expressions", return isl_bool_error);
14343 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
14344 0, 1);
14345 if (equal < 0 || !equal)
14346 return equal;
14347 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
14348 1, 1);
14349 if (equal < 0 || equal)
14350 return isl_bool_not(equal);
14351 return isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
14352 2, total);
14355 /* Replace the numerator of the constant term of the integer division
14356 * expression at position "div" in "bmap" by "value".
14357 * The caller guarantees that this does not change the meaning
14358 * of the input.
14360 __isl_give isl_basic_map *isl_basic_map_set_div_expr_constant_num_si_inplace(
14361 __isl_take isl_basic_map *bmap, int div, int value)
14363 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
14364 return isl_basic_map_free(bmap);
14366 isl_int_set_si(bmap->div[div][1], value);
14368 return bmap;
14371 /* Is the point "inner" internal to inequality constraint "ineq"
14372 * of "bset"?
14373 * The point is considered to be internal to the inequality constraint,
14374 * if it strictly lies on the positive side of the inequality constraint,
14375 * or if it lies on the constraint and the constraint is lexico-positive.
14377 static isl_bool is_internal(__isl_keep isl_vec *inner,
14378 __isl_keep isl_basic_set *bset, int ineq)
14380 isl_ctx *ctx;
14381 int pos;
14382 isl_size total;
14384 if (!inner || !bset)
14385 return isl_bool_error;
14387 ctx = isl_basic_set_get_ctx(bset);
14388 isl_seq_inner_product(inner->el, bset->ineq[ineq], inner->size,
14389 &ctx->normalize_gcd);
14390 if (!isl_int_is_zero(ctx->normalize_gcd))
14391 return isl_int_is_nonneg(ctx->normalize_gcd);
14393 total = isl_basic_set_dim(bset, isl_dim_all);
14394 if (total < 0)
14395 return isl_bool_error;
14396 pos = isl_seq_first_non_zero(bset->ineq[ineq] + 1, total);
14397 return isl_int_is_pos(bset->ineq[ineq][1 + pos]);
14400 /* Tighten the inequality constraints of "bset" that are outward with respect
14401 * to the point "vec".
14402 * That is, tighten the constraints that are not satisfied by "vec".
14404 * "vec" is a point internal to some superset S of "bset" that is used
14405 * to make the subsets of S disjoint, by tightening one half of the constraints
14406 * that separate two subsets. In particular, the constraints of S
14407 * are all satisfied by "vec" and should not be tightened.
14408 * Of the internal constraints, those that have "vec" on the outside
14409 * are tightened. The shared facet is included in the adjacent subset
14410 * with the opposite constraint.
14411 * For constraints that saturate "vec", this criterion cannot be used
14412 * to determine which of the two sides should be tightened.
14413 * Instead, the sign of the first non-zero coefficient is used
14414 * to make this choice. Note that this second criterion is never used
14415 * on the constraints of S since "vec" is interior to "S".
14417 __isl_give isl_basic_set *isl_basic_set_tighten_outward(
14418 __isl_take isl_basic_set *bset, __isl_keep isl_vec *vec)
14420 int j;
14422 bset = isl_basic_set_cow(bset);
14423 if (!bset)
14424 return NULL;
14425 for (j = 0; j < bset->n_ineq; ++j) {
14426 isl_bool internal;
14428 internal = is_internal(vec, bset, j);
14429 if (internal < 0)
14430 return isl_basic_set_free(bset);
14431 if (internal)
14432 continue;
14433 isl_int_sub_ui(bset->ineq[j][0], bset->ineq[j][0], 1);
14436 return bset;
14439 /* Replace the variables x of type "type" starting at "first" in "bmap"
14440 * by x' with x = M x' with M the matrix trans.
14441 * That is, replace the corresponding coefficients c by c M.
14443 * The transformation matrix should be a square matrix.
14445 __isl_give isl_basic_map *isl_basic_map_transform_dims(
14446 __isl_take isl_basic_map *bmap, enum isl_dim_type type, unsigned first,
14447 __isl_take isl_mat *trans)
14449 unsigned pos;
14451 bmap = isl_basic_map_cow(bmap);
14452 if (!bmap || !trans)
14453 goto error;
14455 if (trans->n_row != trans->n_col)
14456 isl_die(trans->ctx, isl_error_invalid,
14457 "expecting square transformation matrix", goto error);
14458 if (isl_basic_map_check_range(bmap, type, first, trans->n_row) < 0)
14459 goto error;
14461 pos = isl_basic_map_offset(bmap, type) + first;
14463 if (isl_mat_sub_transform(bmap->eq, bmap->n_eq, pos,
14464 isl_mat_copy(trans)) < 0)
14465 goto error;
14466 if (isl_mat_sub_transform(bmap->ineq, bmap->n_ineq, pos,
14467 isl_mat_copy(trans)) < 0)
14468 goto error;
14469 if (isl_mat_sub_transform(bmap->div, bmap->n_div, 1 + pos,
14470 isl_mat_copy(trans)) < 0)
14471 goto error;
14473 ISL_F_CLR(bmap, ISL_BASIC_MAP_SORTED);
14474 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
14476 isl_mat_free(trans);
14477 return bmap;
14478 error:
14479 isl_mat_free(trans);
14480 isl_basic_map_free(bmap);
14481 return NULL;
14484 /* Replace the variables x of type "type" starting at "first" in "bset"
14485 * by x' with x = M x' with M the matrix trans.
14486 * That is, replace the corresponding coefficients c by c M.
14488 * The transformation matrix should be a square matrix.
14490 __isl_give isl_basic_set *isl_basic_set_transform_dims(
14491 __isl_take isl_basic_set *bset, enum isl_dim_type type, unsigned first,
14492 __isl_take isl_mat *trans)
14494 return isl_basic_map_transform_dims(bset, type, first, trans);