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
26 #include <isl_ctx_private.h>
27 #include <isl_map_private.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>
37 #include <isl_reordering.h>
38 #include "isl_sample.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
;
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
)
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
;
81 isl_size
isl_basic_map_dim(__isl_keep isl_basic_map
*bmap
,
82 enum isl_dim_type type
)
85 return isl_size_error
;
87 case isl_dim_cst
: return 1;
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
);
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
)
150 space
= isl_basic_map_peek_space(bmap
);
155 case isl_dim_out
: return isl_space_offset(space
, type
);
156 case isl_dim_div
: return isl_space_dim(space
, isl_dim_all
);
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
)
180 case isl_dim_cst
: return 0;
184 case isl_dim_div
: return 1 + isl_basic_map_var_offset(bmap
, type
);
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
)
236 return isl_size_error
;
237 dim
= isl_space_dim(bmap
->dim
, isl_dim_all
);
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
)
249 return isl_size_error
;
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
)
267 return isl_size_error
;
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
)
337 return isl_bool_error
;
338 m
= isl_map_has_equal_params(map
, set_to_map(set
));
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
)
349 return isl_bool_error
;
350 m
= isl_basic_map_has_equal_params(bmap
, bset_to_bmap(bset
));
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
)
361 return isl_bool_error
;
362 m
= isl_map_has_equal_params(map
, set_to_map(set
));
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
)
373 return isl_bool_error
;
374 m
= isl_basic_map_has_equal_params(bmap
, bset_to_bmap(bset
));
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
)
442 return isl_basic_map_get_space(bmap
);
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
)
459 if (bmap
->dim
== space
) {
460 isl_space_free(space
);
464 bmap
= isl_basic_map_cow(bmap
);
467 isl_space_free(bmap
->dim
);
472 isl_basic_map_free(bmap
);
473 isl_space_free(space
);
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
)
487 v_div
= isl_basic_map_var_offset(bmap
, isl_dim_div
);
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
);
497 for (i
= 0; i
< bmap
->n_div
; ++i
)
498 isl_seq_cpy(div
->row
[i
], bmap
->div
[i
], cols
);
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
)
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
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
)
541 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
543 return isl_basic_map_free(bmap
);
546 bmap
= isl_basic_map_cow(bmap
);
547 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 2 * n_div
);
550 for (i
= 0; i
< n_div
; ++i
) {
551 if (isl_int_is_zero(bmap
->div
[i
][0]))
553 bmap
= isl_basic_map_add_div_constraints(bmap
, i
);
559 __isl_give isl_basic_map
*isl_basic_map_from_local_space(
560 __isl_take isl_local_space
*ls
)
566 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
568 ls
= isl_local_space_free(ls
);
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)
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
);
586 isl_local_space_free(ls
);
587 isl_basic_map_free(bmap
);
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
)
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
)
625 return isl_map_get_space(map
);
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
)
642 if (map
->dim
== space
) {
643 isl_space_free(space
);
647 map
= isl_map_cow(map
);
650 isl_space_free(map
->dim
);
656 isl_space_free(space
);
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
)
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
);
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
)
690 map
= isl_map_cow(map
);
694 for (i
= 0; i
< map
->n
; ++i
) {
695 map
->p
[i
] = isl_basic_map_set_tuple_name(map
->p
[i
], type
, s
);
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
);
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
)
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
);
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
,
749 return set_from_map(isl_map_set_tuple_name(set_to_map(set
),
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
)
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
)
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
)
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
)
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
)
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
)
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
)
935 map
= isl_map_cow(map
);
939 for (i
= 0; i
< map
->n
; ++i
) {
940 map
->p
[i
] = isl_basic_map_set_dim_name(map
->p
[i
], type
, pos
, s
);
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
);
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
),
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
),
970 isl_bool
isl_basic_map_has_dim_id(__isl_keep isl_basic_map
*bmap
,
971 enum isl_dim_type type
, unsigned pos
)
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
)
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
)
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
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
)
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
,
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
,
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
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
)
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
);
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
);
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
)
1119 space
= isl_map_get_space(map
);
1120 space
= isl_space_reset_user(space
);
1121 map
= isl_map_reset_space(map
, space
);
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
)
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
1147 isl_bool
isl_map_is_rational(__isl_keep isl_map
*map
)
1153 return isl_bool_error
;
1155 return isl_bool_false
;
1156 rational
= isl_basic_map_is_rational(map
->p
[0]);
1159 for (i
= 1; i
< map
->n
; ++i
) {
1160 isl_bool rational_i
;
1162 rational_i
= isl_basic_map_is_rational(map
->p
[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
);
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
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
;
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
);
1211 return isl_bool_error
;
1212 if (bmap
->n_eq
== total
) {
1214 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
1215 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1, total
);
1218 if (!isl_int_is_one(bmap
->eq
[i
][1 + j
]) &&
1219 !isl_int_is_negone(bmap
->eq
[i
][1 + j
]))
1221 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + j
+ 1,
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
)
1239 isl_bool has_rational
;
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
)
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
)
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
)
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
)
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
;
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
))
1306 bmap
->ineq
= isl_alloc_array(ctx
, isl_int
*, n_ineq
+ n_eq
);
1307 if ((n_ineq
+ n_eq
) && !bmap
->ineq
)
1311 bmap
->block2
= isl_blk_empty();
1314 bmap
->block2
= isl_blk_alloc(ctx
, extra
* (1 + row_size
));
1315 if (isl_blk_is_error(bmap
->block2
))
1318 bmap
->div
= isl_alloc_array(ctx
, isl_int
*, extra
);
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
);
1331 bmap
->c_size
= n_eq
+ n_ineq
;
1332 bmap
->eq
= bmap
->ineq
+ n_ineq
;
1333 bmap
->extra
= extra
;
1337 bmap
->sample
= NULL
;
1341 isl_basic_map_free(bmap
);
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
;
1352 space
= isl_space_set_alloc(ctx
, nparam
, dim
);
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
;
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
);
1370 isl_space_free(space
);
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
;
1381 bmap
= isl_calloc_type(space
->ctx
, struct isl_basic_map
);
1386 return basic_map_init(space
->ctx
, bmap
, extra
, n_eq
, n_ineq
);
1388 isl_space_free(space
);
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
;
1399 space
= isl_space_alloc(ctx
, nparam
, in
, out
);
1403 bmap
= isl_basic_map_alloc_space(space
, extra
, n_eq
, n_ineq
);
1407 static __isl_give isl_basic_map
*dup_constraints(__isl_take isl_basic_map
*dst
,
1408 __isl_keep isl_basic_map
*src
)
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
);
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
);
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
);
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
);
1440 __isl_give isl_basic_map
*isl_basic_map_dup(__isl_keep isl_basic_map
*bmap
)
1442 struct isl_basic_map
*dup
;
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
);
1451 dup
->flags
= bmap
->flags
;
1452 dup
->sample
= isl_vec_copy(bmap
->sample
);
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
)
1478 __isl_give isl_basic_map
*isl_basic_map_copy(__isl_keep isl_basic_map
*bmap
)
1483 if (ISL_F_ISSET(bmap
, ISL_BASIC_SET_FINAL
)) {
1487 bmap
= isl_basic_map_dup(bmap
);
1489 ISL_F_SET(bmap
, ISL_BASIC_SET_FINAL
);
1493 __isl_give isl_map
*isl_map_copy(__isl_keep isl_map
*map
)
1502 __isl_null isl_basic_map
*isl_basic_map_free(__isl_take isl_basic_map
*bmap
)
1507 if (--bmap
->ref
> 0)
1510 isl_ctx_deref(bmap
->ctx
);
1512 isl_blk_free(bmap
->ctx
, bmap
->block2
);
1514 isl_blk_free(bmap
->ctx
, bmap
->block
);
1515 isl_vec_free(bmap
->sample
);
1516 isl_space_free(bmap
->dim
);
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
)
1538 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
1540 return isl_stat_error
;
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
);
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
)
1554 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
1556 return isl_stat_error
;
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
);
1565 #define TYPE isl_map
1567 #include "isl_check_named_params_templ.c"
1570 #define TYPE isl_basic_map
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
)
1583 match
= isl_basic_map_has_equal_params(bmap1
, bmap2
);
1585 return isl_stat_error
;
1587 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
1588 "parameters don't match", return isl_stat_error
);
1593 #define TYPE isl_map
1595 #include "isl_align_params_bin_templ.c"
1600 #define ARG1 isl_map
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
))
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
));
1630 int isl_basic_map_alloc_equality(__isl_keep isl_basic_map
*bmap
)
1633 struct isl_ctx
*ctx
;
1635 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
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
,
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
) {
1648 int j
= isl_basic_map_alloc_inequality(bmap
);
1652 bmap
->ineq
[j
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1653 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
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
)
1676 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
1677 "invalid number of equalities",
1678 isl_basic_map_free(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
),
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
)
1700 isl_assert(bmap
->ctx
, pos
< bmap
->n_eq
, return -1);
1704 for (r
= pos
; r
< bmap
->n_eq
; ++r
)
1705 bmap
->eq
[r
] = bmap
->eq
[r
+ 1];
1706 bmap
->eq
[bmap
->n_eq
] = t
;
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
)
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];
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
)
1744 struct isl_ctx
*ctx
;
1746 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
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
)
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
));
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
),
1785 int isl_basic_map_drop_inequality(__isl_keep isl_basic_map
*bmap
, unsigned pos
)
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
);
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
,
1814 empty
= isl_basic_map_plain_is_empty(bmap
);
1816 return isl_basic_map_free(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
);
1824 return isl_basic_map_free(bmap
);
1825 k
= isl_basic_map_alloc_equality(bmap
);
1828 isl_seq_cpy(bmap
->eq
[k
], eq
, 1 + total
);
1831 isl_basic_map_free(bmap
);
1835 __isl_give isl_basic_set
*isl_basic_set_add_eq(__isl_take isl_basic_set
*bset
,
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
,
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
);
1851 return isl_basic_map_free(bmap
);
1852 k
= isl_basic_map_alloc_inequality(bmap
);
1855 isl_seq_cpy(bmap
->ineq
[k
], ineq
, 1 + total
);
1858 isl_basic_map_free(bmap
);
1862 __isl_give isl_basic_set
*isl_basic_set_add_ineq(__isl_take isl_basic_set
*bset
,
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
)
1872 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
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
));
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"
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
),
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
)
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
);
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);
1937 isl_stat
isl_basic_map_free_div(__isl_keep isl_basic_map
*bmap
, unsigned n
)
1940 return isl_stat_error
;
1941 isl_assert(bmap
->ctx
, n
<= bmap
->n_div
, return isl_stat_error
);
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
;
1954 struct isl_dim_map
*dim_map
;
1956 space
= isl_basic_map_peek_space(bmap2
);
1957 if (!bmap1
|| !space
)
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)
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
);
1978 isl_basic_map_free(bmap1
);
1979 isl_basic_map_free(bmap2
);
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
)
1987 struct isl_basic_map
*ext
;
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
))
2000 extra
+= base
->extra
;
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
);
2010 ext
->sample
= isl_vec_copy(base
->sample
);
2011 flags
= base
->flags
;
2012 ext
= add_constraints(ext
, base
, 0, 0);
2015 ISL_F_CLR(ext
, ISL_BASIC_SET_FINAL
);
2021 isl_basic_map_free(base
);
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
)
2056 if (bmap
->ref
> 1) {
2058 bmap
= isl_basic_map_dup(bmap
);
2061 ISL_F_CLR(bmap
, ISL_BASIC_SET_FINAL
);
2062 ISL_F_CLR(bmap
, ISL_BASIC_MAP_REDUCED_COEFFICIENTS
);
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
;
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
)
2102 return clear_caches(map
);
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
)
2121 if (isl_basic_map_check_range(bmap
, isl_dim_all
, pos
- 1, n1
+ n2
) < 0)
2124 if (n1
== 0 || n2
== 0)
2127 bmap
= isl_basic_map_cow(bmap
);
2131 blk
= isl_blk_alloc(bmap
->ctx
, n1
+ n2
);
2132 if (isl_blk_is_error(blk
))
2135 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2137 bmap
->eq
[i
] + pos
, n1
, n2
);
2139 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2141 bmap
->ineq
[i
] + pos
, n1
, n2
);
2143 for (i
= 0; i
< bmap
->n_div
; ++i
)
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
);
2153 isl_basic_map_free(bmap
);
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
)
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
)
2180 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
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
);
2188 if (bmap
->n_eq
> 0) {
2189 bmap
= isl_basic_map_free_equality(bmap
, bmap
->n_eq
- 1);
2193 i
= isl_basic_map_alloc_equality(bmap
);
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
);
2204 isl_basic_map_free(bmap
);
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
)
2220 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
2223 bmap
= isl_basic_map_cow(bmap
);
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
)
2244 if (!ISL_F_ISSET(bset
, ISL_BASIC_MAP_RATIONAL
))
2247 bset
= isl_basic_set_cow(bset
);
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
)
2260 map
= isl_map_cow(map
);
2263 for (i
= 0; i
< map
->n
; ++i
) {
2264 map
->p
[i
] = isl_basic_map_set_rational(map
->p
[i
]);
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
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
];
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
,
2298 off
= isl_basic_map_var_offset(bmap
, isl_dim_div
);
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
);
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
)
2344 if (first
+ n
== bmap
->n_div
)
2347 div
= isl_alloc_array(bmap
->ctx
, isl_int
*, n
);
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
];
2359 isl_basic_map_free(bmap
);
2364 #define TYPE isl_map
2366 #include "check_type_range_templ.c"
2368 /* Check that there are "n" dimensions of type "type" starting at "first"
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
)
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
);
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
);
2417 if (isl_basic_map_free_div(bmap
, n
) < 0)
2418 return isl_basic_map_free(bmap
);
2420 bmap
->dim
= isl_space_drop_dims(bmap
->dim
, type
, first
, n
);
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
);
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
)
2441 if (n
== 0 && !isl_space_is_named_or_nested(bmap
->dim
, type
))
2444 bmap
= isl_basic_map_cow(bmap
);
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
),
2461 /* No longer consider "map" to be normalized.
2463 static __isl_give isl_map
*isl_map_unmark_normalized(__isl_take isl_map
*map
)
2467 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
2471 __isl_give isl_map
*isl_map_drop(__isl_take isl_map
*map
,
2472 enum isl_dim_type type
, unsigned first
, unsigned n
)
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
))
2482 map
= isl_map_cow(map
);
2486 for (i
= 0; i
< map
->n
; ++i
) {
2487 map
->p
[i
] = isl_basic_map_drop(map
->p
[i
], type
, first
, n
);
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
);
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
)
2533 if (isl_map_check_range(map
, type
, first
, n
) < 0)
2534 return isl_map_free(map
);
2536 map
= isl_map_cow(map
);
2540 for (i
= 0; i
< map
->n
; ++i
) {
2541 map
->p
[i
] = isl_basic_map_eliminate(map
->p
[i
], type
, first
, n
);
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
)
2576 v_div
= isl_basic_map_var_offset(bmap
, isl_dim_div
);
2578 return isl_basic_map_free(bmap
);
2579 bmap
= isl_basic_map_eliminate_vars(bmap
, v_div
, bmap
->n_div
);
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
)
2601 map
= isl_map_cow(map
);
2605 for (i
= 0; i
< map
->n
; ++i
) {
2606 map
->p
[i
] = isl_basic_map_remove_divs(map
->p
[i
]);
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
))
2629 bmap
= isl_basic_map_eliminate_vars(bmap
,
2630 isl_basic_map_offset(bmap
, type
) - 1 + first
, n
);
2633 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
) && type
== isl_dim_div
)
2635 bmap
= isl_basic_map_drop(bmap
, type
, first
, n
);
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
)
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
) {
2656 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
2658 involves
= div_involves_vars(bmap
, i
, first
, n
);
2659 if (involves
< 0 || 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
2686 * so that we can use it to derive a lower bound on "div".
2687 * However, we allow a slightly more general form
2691 * with the condition that the coefficients of g(x) - f(x) are all
2693 * Rewriting this constraint as
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
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
)
2720 for (j
= 0; (lb
|| ub
) && j
< total
+ bmap
->n_div
; ++j
) {
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]);
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]);
2735 bmap
= isl_basic_map_cow(bmap
);
2736 bmap
= isl_basic_map_extend_constraints(bmap
, 0, lb
+ ub
);
2738 int k
= isl_basic_map_alloc_inequality(bmap
);
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);
2750 int k
= isl_basic_map_alloc_inequality(bmap
);
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);
2764 isl_basic_map_free(bmap
);
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
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
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
2813 static __isl_give isl_basic_map
*insert_bounds_on_div(
2814 __isl_take isl_basic_map
*bmap
, int div
)
2817 int check_lb
, check_ub
;
2824 if (isl_int_is_zero(bmap
->div
[div
][0]))
2827 v_div
= isl_basic_map_var_offset(bmap
, isl_dim_div
);
2829 return isl_basic_map_free(bmap
);
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
]);
2841 if (!check_lb
&& !check_ub
)
2846 for (i
= 0; bmap
&& i
< bmap
->n_ineq
; ++i
) {
2847 if (!isl_int_is_zero(bmap
->ineq
[i
][1 + v_div
+ div
]))
2850 bmap
= insert_bounds_on_div_from_ineq(bmap
, div
, i
, v_div
, v
,
2851 check_lb
, check_ub
);
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
)
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
) {
2875 involves
= div_involves_vars(bmap
, i
, first
, n
);
2877 return isl_basic_map_free(bmap
);
2880 bmap
= insert_bounds_on_div(bmap
, i
);
2881 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
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
)
2907 map
= isl_map_cow(map
);
2911 for (i
= 0; i
< map
->n
; ++i
) {
2912 map
->p
[i
] = isl_basic_map_remove_divs_involving_dims(map
->p
[i
],
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
),
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
2936 isl_bool
isl_basic_map_involves_dims(__isl_keep isl_basic_map
*bmap
,
2937 enum isl_dim_type type
, unsigned first
, unsigned n
)
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]))
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
)
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
],
2972 if (involves
< 0 || 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
)
2997 n
= isl_basic_set_dim(bset
, isl_dim_div
);
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
)
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
)
3036 bmap
= isl_basic_map_cow(bmap
);
3041 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
3042 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + first
, n
) == -1)
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)
3051 if (isl_basic_map_drop_inequality(bmap
, i
) < 0)
3052 return isl_basic_map_free(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
)
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
);
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)
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)
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
);
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
,
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
)
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
);
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
,
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
))
3162 if (isl_map_check_range(map
, type
, first
, n
) < 0)
3163 return isl_map_free(map
);
3165 map
= isl_map_cow(map
);
3169 for (i
= 0; i
< map
->n
; ++i
) {
3170 map
->p
[i
] = drop(map
->p
[i
], type
, first
, n
);
3172 return isl_map_free(map
);
3176 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
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
)
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
)
3202 isl_space
*space
= isl_map_get_space(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
)
3239 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
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
) {
3249 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
3251 known
= isl_basic_map_div_is_known(bmap
, i
);
3252 if (known
< 0 || !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
)
3269 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
3270 if (isl_basic_map_div_is_known(bmap
, i
))
3272 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
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
)
3298 map
= isl_map_cow(map
);
3302 for (i
= 0; i
< map
->n
; ++i
) {
3303 map
->p
[i
] = isl_basic_map_remove_unknown_divs(map
->p
[i
]);
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
)
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
);
3345 map
= isl_map_drop(map
, type
, first
, n
);
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
),
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
)
3372 fprintf(out
, "null basic set\n");
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
)
3396 fprintf(out
, "null basic map\n");
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",
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
,
3421 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
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
);
3434 __isl_give isl_set
*isl_set_alloc_space(__isl_take isl_space
*space
, int n
,
3437 if (isl_space_check_is_set(space
) < 0)
3439 return isl_map_alloc_space(space
, n
, flags
);
3441 isl_space_free(space
);
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
)
3450 struct isl_map
*grown
= NULL
;
3454 isl_assert(map
->ctx
, n
>= 0, goto error
);
3455 if (map
->n
+ n
<= map
->size
)
3457 grown
= isl_map_alloc_space(isl_map_get_space(map
), map
->n
+ n
, map
->flags
);
3460 for (i
= 0; i
< map
->n
; ++i
) {
3461 grown
->p
[i
] = isl_basic_map_copy(map
->p
[i
]);
3469 isl_map_free(grown
);
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
;
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
)
3522 fprintf(out
, "null set\n");
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
,
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
)
3542 fprintf(out
, "null map\n");
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
)
3565 ok
= isl_basic_map_compatible_domain(bmap
, bset
);
3567 return isl_stat_error
;
3569 isl_die(isl_basic_set_get_ctx(bset
), isl_error_invalid
,
3570 "incompatible spaces", return isl_stat_error
);
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
;
3581 if (isl_basic_map_check_equal_params(bmap
, bset_to_bmap(bset
)) < 0)
3584 dim
= isl_basic_set_dim(bset
, isl_dim_set
);
3588 isl_basic_map_check_compatible_domain(bmap
, bset
) < 0)
3591 bmap
= isl_basic_map_cow(bmap
);
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
);
3602 isl_basic_map_free(bmap
);
3603 isl_basic_set_free(bset
);
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
)
3614 ok
= isl_basic_map_compatible_range(bmap
, bset
);
3616 return isl_stat_error
;
3618 isl_die(isl_basic_set_get_ctx(bset
), isl_error_invalid
,
3619 "incompatible spaces", return isl_stat_error
);
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
;
3630 if (isl_basic_map_check_equal_params(bmap
, bset_to_bmap(bset
)) < 0)
3633 dim
= isl_basic_set_dim(bset
, isl_dim_set
);
3636 if (dim
!= 0 && isl_basic_map_check_compatible_range(bmap
, bset
) < 0)
3639 if (isl_basic_set_plain_is_universe(bset
)) {
3640 isl_basic_set_free(bset
);
3644 bmap
= isl_basic_map_cow(bmap
);
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
);
3655 isl_basic_map_free(bmap
);
3656 isl_basic_set_free(bset
);
3660 isl_bool
isl_basic_map_contains(__isl_keep isl_basic_map
*bmap
,
3661 __isl_keep isl_vec
*vec
)
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
;
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
)) {
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
)) {
3688 return isl_bool_false
;
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)
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)
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)
3727 if (isl_basic_map_plain_is_empty(bmap1
)) {
3728 isl_basic_map_free(bmap2
);
3731 if (isl_basic_map_plain_is_empty(bmap2
)) {
3732 isl_basic_map_free(bmap1
);
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
);
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);
3753 isl_vec_free(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
);
3763 isl_vec_free(sample
);
3764 isl_basic_map_free(bmap1
);
3765 isl_basic_map_free(bmap2
);
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
)
3789 return isl_bool_error
;
3791 return isl_bool_false
;
3792 n_div
= isl_basic_map_dim(map
->p
[0], isl_dim_div
);
3794 return isl_bool_error
;
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
)
3806 ok
= is_convex_no_locals(map
);
3808 return isl_stat_error
;
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)
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
);
3835 if (isl_map_plain_is_empty(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]);
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]);
3850 if (isl_basic_map_plain_is_empty(map1
->p
[0])) {
3851 isl_basic_map_free(map1
->p
[0]);
3857 map1
= isl_map_unmark_normalized(map1
);
3865 /* map2 may be either a parameter domain or a map living in the same
3868 static __isl_give isl_map
*map_intersect_internal(__isl_take isl_map
*map1
,
3869 __isl_take isl_map
*map2
)
3875 isl_size dim2
, nparam2
;
3880 if ((isl_map_plain_is_empty(map1
) ||
3881 isl_map_plain_is_universe(map2
)) &&
3882 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
3886 if ((isl_map_plain_is_empty(map2
) ||
3887 isl_map_plain_is_universe(map1
)) &&
3888 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
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
);
3908 dim2
= isl_map_dim(map2
, isl_dim_all
);
3909 nparam2
= isl_map_dim(map2
, isl_dim_param
);
3910 if (dim2
< 0 || nparam2
< 0)
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
);
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
);
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)
3950 return map_intersect_internal(map1
, map2
);
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
),
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
, ¶ms
);
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
)
3995 bmap
= isl_basic_map_cow(bmap
);
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
)
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
);
4033 /* Given a basic map (A -> B) -> C, return the corresponding basic map
4036 static __isl_give isl_basic_map
*isl_basic_map_domain_reverse(
4037 __isl_take isl_basic_map
*bmap
)
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
);
4049 /* Given a basic map A -> (B -> C), return the corresponding basic map
4052 static __isl_give isl_basic_map
*isl_basic_map_range_reverse(
4053 __isl_take isl_basic_map
*bmap
)
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
);
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
)
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
);
4081 static __isl_give isl_basic_map
*basic_map_space_reset(
4082 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
)
4088 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
4091 space
= isl_basic_map_get_space(bmap
);
4092 space
= isl_space_reset(space
, type
);
4093 bmap
= isl_basic_map_reset_space(bmap
, space
);
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
;
4107 enum isl_dim_type t
;
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
),
4119 return isl_basic_map_free(bmap
);
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
);
4127 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
4131 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
4133 isl_size size
= isl_basic_map_dim(bmap
, t
);
4135 dim_map
= isl_dim_map_free(dim_map
);
4136 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
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
);
4143 dim_map
= isl_dim_map_free(dim_map
);
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
);
4152 res
= isl_basic_map_free(res
);
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
)
4171 dim
= isl_basic_map_dim(bmap
, type
);
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
)
4182 isl_assert(bset
->ctx
, type
!= isl_dim_in
, goto error
);
4183 return isl_basic_map_add_dims(bset
, type
, n
);
4185 isl_basic_set_free(bset
);
4189 static __isl_give isl_map
*map_space_reset(__isl_take isl_map
*map
,
4190 enum isl_dim_type type
)
4194 if (!map
|| !isl_space_is_named_or_nested(map
->dim
, type
))
4197 space
= isl_map_get_space(map
);
4198 space
= isl_space_reset(space
, type
);
4199 map
= isl_map_reset_space(map
, space
);
4203 __isl_give isl_map
*isl_map_insert_dims(__isl_take isl_map
*map
,
4204 enum isl_dim_type type
, unsigned pos
, unsigned n
)
4210 return map_space_reset(map
, type
);
4212 map
= isl_map_cow(map
);
4216 for (i
= 0; i
< map
->n
; ++i
) {
4217 map
->p
[i
] = isl_basic_map_insert_dims(map
->p
[i
], type
, pos
, n
);
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
);
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
)
4243 dim
= isl_map_dim(map
, type
);
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
)
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
));
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
)
4267 struct isl_dim_map
*dim_map
;
4268 struct isl_basic_map
*res
;
4269 enum isl_dim_type t
;
4276 bmap
= isl_basic_map_reset(bmap
, src_type
);
4277 bmap
= isl_basic_map_reset(bmap
, dst_type
);
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
)
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
);
4301 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
4303 return isl_basic_map_free(bmap
);
4304 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
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
);
4311 dim_map
= isl_dim_map_free(dim_map
);
4312 if (t
== dst_type
) {
4313 isl_dim_map_dim_range(dim_map
, space
, t
,
4316 isl_dim_map_dim_range(dim_map
, space
, src_type
,
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
,
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
;
4330 isl_dim_map_dim(dim_map
, space
, t
, off
);
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
);
4346 ISL_F_CLR(bmap
, ISL_BASIC_MAP_SORTED
);
4347 bmap
= isl_basic_map_gauss(bmap
, NULL
);
4348 bmap
= isl_basic_map_finalize(bmap
);
4352 isl_basic_map_free(bmap
);
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
)
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
));
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
)
4388 map
= isl_map_reset(map
, src_type
);
4389 map
= isl_map_reset(map
, dst_type
);
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
)
4399 isl_assert(map
->ctx
, dst_type
!= src_type
, goto error
);
4401 map
= isl_map_cow(map
);
4405 for (i
= 0; i
< map
->n
; ++i
) {
4406 map
->p
[i
] = isl_basic_map_move_dims(map
->p
[i
],
4408 src_type
, src_pos
, n
);
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
);
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
)
4432 struct isl_dim_map
*dim_map
;
4433 struct isl_basic_map
*res
;
4434 enum isl_dim_type t
;
4440 if (isl_basic_map_offset(bmap
, type
) + first
+ n
==
4441 isl_basic_map_offset(bmap
, isl_dim_div
))
4444 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
4446 return isl_basic_map_free(bmap
);
4447 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
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
);
4454 dim_map
= isl_dim_map_free(dim_map
);
4456 isl_dim_map_dim_range(dim_map
, space
, t
,
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
);
4465 isl_dim_map_dim(dim_map
, space
, t
, off
);
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
);
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
,
4493 bmap
= isl_basic_map_cow(bmap
);
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
);
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
);
4514 bmap
->div
= new_div
;
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
)
4534 isl_size dim
, n_div
;
4537 non_empty
= isl_basic_map_plain_is_non_empty(bmap
);
4539 return isl_basic_map_free(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
);
4549 return isl_basic_map_free(bmap
);
4550 first
+= isl_basic_map_offset(bmap
, type
) - 1;
4551 for (i
= 0; i
< first
; ++i
)
4553 for (i
= first
+ n
; i
< dim
- n_div
; ++i
)
4556 bmap
= isl_basic_map_drop_unrelated_constraints(bmap
, groups
);
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
)
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
);
4584 return isl_basic_map_free(bmap
);
4586 bmap
= isl_basic_map_set_to_empty(bmap
);
4588 bmap
= drop_irrelevant_constraints(bmap
, type
, first
, n
);
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
),
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
)
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
);
4640 for (i
= 0; i
< map
->n
; ++i
) {
4641 map
->p
[i
] = isl_basic_map_project_out(map
->p
[i
], type
, first
, n
);
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
);
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
)
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
);
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
),
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
)
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
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
)
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
,
4748 static __isl_give isl_basic_map
*add_divs(__isl_take isl_basic_map
*bmap
,
4754 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
4756 return isl_basic_map_free(bmap
);
4757 for (i
= 0; i
< n
; ++i
) {
4758 j
= isl_basic_map_alloc_div(bmap
);
4761 isl_seq_clr(bmap
->div
[j
], 1 + 1 + total
);
4765 isl_basic_map_free(bmap
);
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
)
4789 equal
= isl_basic_map_applies_range(bmap1
, bmap2
);
4791 return isl_stat_error
;
4793 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
4794 "spaces don't match", return isl_stat_error
);
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)
4809 if (isl_basic_map_check_applies_range(bmap1
, bmap2
) < 0)
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)
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
);
4845 isl_basic_map_free(bmap1
);
4846 isl_basic_map_free(bmap2
);
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)
4856 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset
),
4859 isl_basic_set_free(bset
);
4860 isl_basic_map_free(bmap
);
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)
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
);
4878 isl_basic_map_free(bmap1
);
4879 isl_basic_map_free(bmap2
);
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
;
4895 if (isl_basic_map_check_equal_space(bmap1
, bmap2
) < 0)
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)
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
);
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
);
4936 isl_basic_map_free(bmap
);
4937 isl_basic_map_free(bmap1
);
4938 isl_basic_map_free(bmap2
);
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
;
4951 if (isl_map_check_equal_space(map1
, map2
) < 0)
4954 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
4955 map1
->n
* map2
->n
, 0);
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
);
4967 result
= isl_map_add_basic_map(result
, part
);
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
)
4994 bmap
= isl_basic_map_cow(bmap
);
4995 n
= isl_basic_map_dim(bmap
, isl_dim_out
);
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
)
5024 map
= isl_map_cow(map
);
5028 for (i
= 0; i
< map
->n
; ++i
) {
5029 map
->p
[i
] = isl_basic_map_neg(map
->p
[i
]);
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
,
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
;
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
) {
5077 j
= isl_basic_map_alloc_inequality(result
);
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
);
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
);
5095 isl_basic_map_free(result
);
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
)
5106 map
= isl_map_cow(map
);
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
);
5116 map
= isl_map_unmark_normalized(map
);
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
)
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
);
5144 static __isl_give isl_basic_map
*var_equal(__isl_take isl_basic_map
*bmap
,
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
);
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
);
5165 isl_basic_map_free(bmap
);
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
,
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
);
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
);
5193 isl_basic_map_free(bmap
);
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
)
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
);
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
);
5220 isl_basic_map_free(bmap
);
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
,
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
);
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
);
5248 isl_basic_map_free(bmap
);
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
)
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
);
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
);
5275 isl_basic_map_free(bmap
);
5279 __isl_give isl_basic_map
*isl_basic_map_equal(
5280 __isl_take isl_space
*space
, unsigned n_equal
)
5283 struct isl_basic_map
*bmap
;
5284 bmap
= isl_basic_map_alloc_space(space
, 0, n_equal
, 0);
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
,
5298 struct isl_basic_map
*bmap
;
5299 bmap
= isl_basic_map_alloc_space(space
, 0, pos
, 1);
5302 for (i
= 0; i
< pos
&& bmap
; ++i
)
5303 bmap
= var_equal(bmap
, i
);
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
)
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
,
5330 struct isl_basic_map
*bmap
;
5331 bmap
= isl_basic_map_alloc_space(space
, 0, pos
, 1);
5334 for (i
= 0; i
< pos
&& bmap
; ++i
)
5335 bmap
= var_equal(bmap
, i
);
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
)
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
;
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
));
5372 map
= isl_map_add_basic_map(map
,
5373 isl_basic_map_less_or_equal_at(space
, n
- 1));
5375 map
= isl_map_add_basic_map(map
,
5376 isl_basic_map_less_at(space
, n
- 1));
5378 isl_space_free(space
);
5383 static __isl_give isl_map
*map_lex_lte(__isl_take isl_space
*space
, int equal
)
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
,
5393 return map_lex_lte_first(space
, n
, 0);
5396 __isl_give isl_map
*isl_map_lex_le_first(__isl_take isl_space
*space
,
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
;
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
));
5428 map
= isl_map_add_basic_map(map
,
5429 isl_basic_map_more_or_equal_at(space
, n
- 1));
5431 map
= isl_map_add_basic_map(map
,
5432 isl_basic_map_more_at(space
, n
- 1));
5434 isl_space_free(space
);
5439 static __isl_give isl_map
*map_lex_gte(__isl_take isl_space
*space
, int equal
)
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
,
5449 return map_lex_gte_first(space
, n
, 0);
5452 __isl_give isl_map
*isl_map_lex_ge_first(__isl_take isl_space
*space
,
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
)
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
);
5478 __isl_give isl_map
*isl_set_lex_lt_set(__isl_take isl_set
*set1
,
5479 __isl_take isl_set
*set2
)
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
);
5488 __isl_give isl_map
*isl_set_lex_ge_set(__isl_take isl_set
*set1
,
5489 __isl_take isl_set
*set2
)
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
);
5498 __isl_give isl_map
*isl_set_lex_gt_set(__isl_take isl_set
*set1
,
5499 __isl_take isl_set
*set2
)
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
);
5508 __isl_give isl_map
*isl_map_lex_le_map(__isl_take isl_map
*map1
,
5509 __isl_take isl_map
*map2
)
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
));
5518 __isl_give isl_map
*isl_map_lex_lt_map(__isl_take isl_map
*map1
,
5519 __isl_take isl_map
*map2
)
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
));
5528 __isl_give isl_map
*isl_map_lex_ge_map(__isl_take isl_map
*map1
,
5529 __isl_take isl_map
*map2
)
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
));
5538 __isl_give isl_map
*isl_map_lex_gt_map(__isl_take isl_map
*map1
,
5539 __isl_take isl_map
*map2
)
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
));
5548 /* For the div d = floor(f/m) at position "div", add the constraint
5552 static __isl_give isl_basic_map
*add_upper_div_constraint(
5553 __isl_take isl_basic_map
*bmap
, unsigned div
)
5556 isl_size v_div
= isl_basic_map_var_offset(bmap
, isl_dim_div
);
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
);
5564 i
= isl_basic_map_alloc_inequality(bmap
);
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]);
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
)
5581 isl_size v_div
= isl_basic_map_var_offset(bmap
, isl_dim_div
);
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
);
5589 i
= isl_basic_map_alloc_inequality(bmap
);
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);
5600 /* For the div d = floor(f/m) at position "pos", add the constraints
5603 * -(f-(m-1)) + m d >= 0
5605 * Note that the second constraint is the negation of
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
);
5617 /* For each known div d = floor(f/m), add the constraints
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
)
5630 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
5632 return isl_basic_map_free(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
);
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
5649 * if sign < 0 or the constraint
5651 * -(f-(m-1)) + m d >= 0
5655 __isl_give isl_basic_map
*isl_basic_map_add_div_constraint(
5656 __isl_take isl_basic_map
*bmap
, unsigned div
, int sign
)
5659 return add_upper_div_constraint(bmap
, div
);
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
)
5671 if (bmap
->dim
->nparam
== 0 && bmap
->dim
->n_in
== 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
);
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
);
5684 bmap
->extra
-= bmap
->n_div
;
5686 bmap
= isl_basic_map_finalize(bmap
);
5687 return bset_from_bmap(bmap
);
5689 isl_basic_map_free(bmap
);
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
)
5708 n
= isl_basic_map_list_n_basic_map(list
);
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
);
5723 isl_basic_map_list_free(list
);
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
;
5739 if (isl_basic_set_check_no_params(bset
) < 0 ||
5740 isl_basic_set_check_no_locals(bset
) < 0)
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)
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
);
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
));
5761 bmap
->n_div
= like
->n_div
;
5762 bmap
->extra
+= like
->n_div
;
5766 ltotal
= total
- bmap
->extra
+ like
->extra
;
5769 bmap
->block2
= isl_blk_extend(ctx
, bmap
->block2
,
5770 bmap
->extra
* (1 + 1 + total
));
5771 if (isl_blk_is_error(bmap
->block2
))
5773 div
= isl_realloc_array(ctx
, bmap
->div
, isl_int
*, bmap
->extra
);
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
);
5790 isl_basic_map_free(like
);
5791 isl_basic_set_free(bset
);
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
)
5806 map
= isl_map_cow(map
);
5809 map
->dim
= isl_space_cow(map
->dim
);
5813 for (i
= 1; i
< map
->n
; ++i
)
5814 isl_assert(map
->ctx
, map
->p
[0]->n_div
== map
->p
[i
]->n_div
,
5816 for (i
= 0; i
< map
->n
; ++i
) {
5817 map
->p
[i
] = bset_to_bmap(
5818 isl_basic_map_underlying_set(map
->p
[i
]));
5823 map
->dim
= isl_space_underlying(map
->dim
, 0);
5825 isl_space_free(map
->dim
);
5826 map
->dim
= isl_space_copy(map
->p
[0]->dim
);
5830 return set_from_map(map
);
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
)
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
);
5854 isl_space_free(space
);
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
);
5864 isl_basic_map_free(bmap
);
5865 isl_space_free(space
);
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
),
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
;
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
)
5898 map
= isl_map_cow(map
);
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
));
5908 isl_space_free(isl_map_take_space(map
));
5909 map
= isl_map_restore_space(map
, space
);
5914 isl_space_free(space
);
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
)
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
);
5937 isl_space_free(space
);
5940 if (check_map_space_equal_total_dim(map
, space
) < 0)
5942 return isl_map_reset_space(map
, space
);
5945 isl_space_free(space
);
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
)
5963 is_params
= isl_basic_set_is_params(bset
);
5965 return isl_basic_set_free(bset
);
5969 n
= isl_basic_set_dim(bset
, isl_dim_set
);
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
);
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
)
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
);
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
)
6003 space
= isl_set_get_space(set
);
6004 space
= isl_space_set_from_params(space
);
6005 set
= isl_set_reset_space(set
, space
);
6009 /* Compute the parameter domain of the given map.
6011 __isl_give isl_set
*isl_map_params(__isl_take isl_map
*map
)
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
);
6028 __isl_give isl_basic_set
*isl_basic_map_domain(__isl_take isl_basic_map
*bmap
)
6033 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
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
)
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
)
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
)
6065 is_set
= isl_basic_map_is_set(bmap
);
6070 return isl_basic_map_domain(isl_basic_map_reverse(bmap
));
6072 isl_basic_map_free(bmap
);
6076 __isl_give isl_basic_map
*isl_basic_map_domain_map(
6077 __isl_take isl_basic_map
*bmap
)
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
,
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
)
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
,
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
)
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
)
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
)
6159 n_in
= isl_map_dim(map
, isl_dim_in
);
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
))
6179 map
= isl_map_cow(map
);
6183 for (i
= 0; i
< map
->n
; ++i
) {
6184 map
->p
[i
] = fn_bmap(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
);
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
)
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
);
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
)
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
)
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
,
6286 struct isl_map
*map
;
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
*));
6299 map
->ctx
= space
->ctx
;
6300 isl_ctx_ref(map
->ctx
);
6308 isl_space_free(space
);
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
);
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
);
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
);
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
);
6344 __isl_give isl_basic_map
*isl_basic_map_nat_universe(
6345 __isl_take isl_space
*space
)
6348 isl_size total
= isl_space_dim(space
, isl_dim_all
);
6349 isl_basic_map
*bmap
;
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
);
6358 isl_seq_clr(bmap
->ineq
[k
], 1 + total
);
6359 isl_int_set_si(bmap
->ineq
[k
][1 + i
], 1);
6363 isl_basic_map_free(bmap
);
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
;
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
));
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
;
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
));
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
)
6432 struct isl_map
*dup
;
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
]));
6442 __isl_give isl_map
*isl_map_add_basic_map(__isl_take isl_map
*map
,
6443 __isl_take isl_basic_map
*bmap
)
6447 if (isl_basic_map_plain_is_empty(bmap
)) {
6448 isl_basic_map_free(bmap
);
6451 if (isl_map_basic_map_check_equal_space(map
, bmap
) < 0)
6453 isl_assert(map
->ctx
, map
->n
< map
->size
, goto error
);
6454 map
->p
[map
->n
] = bmap
;
6456 map
= isl_map_unmark_normalized(map
);
6462 isl_basic_map_free(bmap
);
6466 __isl_null isl_map
*isl_map_free(__isl_take isl_map
*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
);
6486 static __isl_give isl_basic_map
*isl_basic_map_fix_pos_si(
6487 __isl_take isl_basic_map
*bmap
, unsigned pos
, int value
)
6492 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
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
);
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
);
6507 isl_basic_map_free(bmap
);
6511 static __isl_give isl_basic_map
*isl_basic_map_fix_pos(
6512 __isl_take isl_basic_map
*bmap
, unsigned pos
, isl_int value
)
6517 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
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
);
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
);
6532 isl_basic_map_free(bmap
);
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
)
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)
6567 pos
+= isl_basic_map_offset(bmap
, type
);
6568 bmap
= isl_basic_map_fix_pos(bmap
, pos
, v
->n
);
6572 isl_basic_map_free(bmap
);
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
),
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
),
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
)
6610 empty
= isl_basic_map_plain_is_empty(map
->p
[i
]);
6612 return isl_map_free(map
);
6616 isl_basic_map_free(map
->p
[i
]);
6619 map
->p
[i
] = map
->p
[map
->n
];
6620 map
= isl_map_unmark_normalized(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
;
6643 for (i
= map
->n
- 1; i
>= 0; --i
) {
6644 bmap
= isl_basic_map_copy(map
->p
[i
]);
6648 isl_basic_map_free(map
->p
[i
]);
6650 map
= remove_if_empty(map
, i
);
6661 __isl_give isl_map
*isl_map_fix_si(__isl_take isl_map
*map
,
6662 enum isl_dim_type type
, unsigned pos
, int value
)
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
);
6675 map
= isl_map_unmark_normalized(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
)
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
);
6698 map
= isl_map_unmark_normalized(map
);
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
)
6719 map
= isl_map_cow(map
);
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)
6728 for (i
= map
->n
- 1; i
>= 0; --i
) {
6729 map
->p
[i
] = isl_basic_map_fix_val(map
->p
[i
], type
, pos
,
6731 map
= remove_if_empty(map
, i
);
6735 map
= isl_map_unmark_normalized(map
);
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
,
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
)
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
);
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
);
6784 isl_seq_clr(bmap
->ineq
[j
], 1 + total
);
6786 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
6787 isl_int_set_si(bmap
->ineq
[j
][0], value
);
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
);
6795 isl_basic_map_free(bmap
);
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
)
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
);
6829 map
= isl_map_unmark_normalized(map
);
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
),
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
)
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
);
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
);
6882 isl_seq_clr(bmap
->ineq
[j
], 1 + total
);
6884 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
6885 isl_int_set(bmap
->ineq
[j
][0], value
);
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
);
6893 isl_basic_map_free(bmap
);
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
)
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
);
6914 map
= isl_map_unmark_normalized(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
)
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
);
6957 isl_val_free(value
);
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
)
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
)
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
);
6989 isl_val_free(value
);
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
)
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
)
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
))
7032 map
= set_to_map(set
);
7033 return set_from_map(map_bound_multi_val(map
, bound
, map_bound
));
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
))
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
))
7109 isl_local_space
*ls
;
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
));
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
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
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
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
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
)
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
);
7204 isl_val_free(value
);
7205 isl_basic_set_free(bset
);
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
);
7261 #define TYPE isl_pw_multi_aff
7263 #define SUFFIX _pw_multi_aff
7265 #define EMPTY isl_pw_multi_aff_empty
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
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
)
7293 isl_pw_multi_aff
*res
;
7296 full
= ISL_FL_ISSET(flags
, ISL_OPT_FULL
);
7297 if (!map
|| (!full
&& !dom
))
7300 if (isl_map_plain_is_empty(map
)) {
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
);
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
);
7324 res
= isl_pw_multi_aff_union_lexmin(res
, res_i
);
7327 todo
= isl_set_intersect(todo
, *empty
);
7346 #define TYPE isl_map
7350 #define EMPTY isl_map_empty
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
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
)
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
))
7390 if (isl_map_plain_is_empty(map
)) {
7399 res
= basic_map_partial_lexopt(isl_basic_map_copy(map
->p
[0]),
7405 pma
= isl_map_partial_lexopt_aligned_pw_multi_aff(map
, dom
, empty
,
7407 return isl_map_from_pw_multi_aff_internal(pma
);
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
),
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
),
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
,
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
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
,
7491 isl_pw_multi_aff
*pma
;
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
);
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
,
7517 n_out
= isl_map_dim(map
, isl_dim_out
);
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
);
7526 isl_space
*space
= isl_map_get_space(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
);
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
,
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
)
7596 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
7597 if (nparam
< 0 || !mat
)
7600 bset
->dim
= isl_space_cow(bset
->dim
);
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
);
7610 bset
->dim
->nparam
= bset
->dim
->n_out
;
7611 bset
->dim
->n_out
= 0;
7616 isl_basic_set_free(bset
);
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
)
7629 nparam
= isl_set_dim(set
, isl_dim_param
);
7630 if (nparam
< 0 || !mat
)
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
);
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
);
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
)
7668 bset
= isl_basic_set_extend(bset
, 0, eq
->n_row
, 0);
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
);
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
);
7682 bset
= isl_basic_set_gauss(bset
, NULL
);
7683 bset
= isl_basic_set_finalize(bset
);
7688 isl_basic_set_free(bset
);
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
)
7703 for (i
= 0; i
< set
->n
; ++i
) {
7704 set
->p
[i
] = basic_set_append_equalities(set
->p
[i
],
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
)
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)
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
]))
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
;
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
);
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
);
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
)
7807 struct isl_mat
*T
, *T2
;
7808 struct isl_set
*set
;
7811 bset
= isl_basic_set_cow(bset
);
7815 if (bset
->n_eq
== 0)
7816 return base_compute_divs(bset
);
7818 bset
= isl_basic_set_gauss(bset
, 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
);
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
,
7833 eq
= isl_mat_cow(eq
);
7834 T
= isl_mat_variable_compression(isl_mat_copy(eq
), &T2
);
7835 if (T
&& T
->n_col
== 0) {
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
);
7847 else if (i
== bset
->n_eq
)
7848 set
= base_compute_divs(bset
);
7850 set
= parameter_compute_divs(bset
);
7851 set
= set_parameter_preimage(set
, T2
);
7852 set
= set_append_equalities(set
, eq
);
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
)
7870 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
7872 return isl_basic_map_free(bmap
);
7876 old_n_div
= bmap
->n_div
;
7877 bmap
= insert_div_rows(bmap
, n_div
);
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
);
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
)
7900 bmap
= isl_basic_map_cow(bmap
);
7901 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
7902 if (!bmap
|| n_div
< 0)
7905 bmap
= insert_divs_from_local_space(bmap
, ls
);
7909 isl_space_free(bmap
->dim
);
7910 bmap
->dim
= isl_local_space_get_space(ls
);
7914 isl_local_space_free(ls
);
7916 bmap
= isl_basic_map_simplify(bmap
);
7917 bmap
= isl_basic_map_finalize(bmap
);
7920 isl_basic_map_free(bmap
);
7921 isl_local_space_free(ls
);
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
)
7932 map
= isl_map_cow(map
);
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
));
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
);
7948 isl_local_space_free(ls
);
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
;
7973 isl_local_space
*ls
;
7980 bmap
= isl_basic_map_sort_divs(bmap
);
7981 bmap
= isl_basic_map_cow(bmap
);
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);
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
);
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
);
8015 isl_basic_map_free(bmap
);
8019 /* Remove the explicit representation of local variable "div",
8022 __isl_give isl_basic_map
*isl_basic_map_mark_div_unknown(
8023 __isl_take isl_basic_map
*bmap
, int div
)
8027 unknown
= isl_basic_map_div_is_marked_unknown(bmap
, div
);
8029 return isl_basic_map_free(bmap
);
8033 bmap
= isl_basic_map_cow(bmap
);
8036 isl_int_set_si(bmap
->div
[div
][0], 0);
8040 /* Is local variable "div" of "bmap" marked as not having an explicit
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
,
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
)
8068 for (i
= 0; i
< bmap
->n_div
; ++i
) {
8069 if (!isl_basic_map_div_is_known(bmap
, i
))
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
)
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
;
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
)
8108 return isl_bool_error
;
8110 for (i
= 0; i
< map
->n
; ++i
) {
8111 int known
= isl_basic_map_divs_known(map
->p
[i
]);
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
8124 __isl_give isl_map
*isl_basic_map_compute_divs(__isl_take isl_basic_map
*bmap
)
8127 struct isl_map
*map
;
8129 known
= isl_basic_map_divs_known(bmap
);
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
);
8141 return isl_map_from_basic_map(bmap
);
8143 map
= compute_divs(bmap
);
8146 isl_basic_map_free(bmap
);
8150 __isl_give isl_map
*isl_map_compute_divs(__isl_take isl_map
*map
)
8154 struct isl_map
*res
;
8161 known
= isl_map_divs_known(map
);
8169 res
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[0]));
8170 for (i
= 1 ; i
< map
->n
; ++i
) {
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
);
8176 res
= isl_map_union(res
, r2
);
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
)
8198 n_out
= isl_map_dim(map
, isl_dim_out
);
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
)
8223 struct isl_map
*map
= NULL
;
8226 if (isl_map_check_equal_space(map1
, map2
) < 0)
8238 is_universe
= isl_map_plain_is_universe(map1
);
8239 if (is_universe
< 0)
8246 is_universe
= isl_map_plain_is_universe(map2
);
8247 if (is_universe
< 0)
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
);
8262 for (i
= 0; i
< map1
->n
; ++i
) {
8263 map
= isl_map_add_basic_map(map
,
8264 isl_basic_map_copy(map1
->p
[i
]));
8268 for (i
= 0; i
< map2
->n
; ++i
) {
8269 map
= isl_map_add_basic_map(map
,
8270 isl_basic_map_copy(map2
->p
[i
]));
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
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
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
)
8315 if (isl_map_align_params_bin(&map1
, &map2
) < 0)
8318 equal
= isl_map_plain_is_equal(map1
, map2
);
8326 map1
= map_union_disjoint(map1
, map2
);
8330 ISL_F_CLR(map1
, ISL_MAP_DISJOINT
);
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
),
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
))
8362 struct isl_map
*result
;
8365 if (isl_set_plain_is_universe(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
])));
8389 __isl_give isl_map
*isl_map_intersect_range(__isl_take isl_map
*map
,
8390 __isl_take isl_set
*set
)
8395 isl_map_align_params_set(&map
, &set
);
8396 ok
= isl_map_compatible_range(map
, set
);
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
);
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
)
8423 isl_map_align_params_set(&map
, &set
);
8424 ok
= isl_map_compatible_domain(map
, set
);
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
);
8443 #define TYPE isl_map
8445 #include "isl_copy_tuple_id_templ.c"
8447 /* Data structure that specifies how isl_map_intersect_factor
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
)
8484 isl_map
*other
, *product
;
8486 equal
= isl_map_has_equal_params(map
, factor
);
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
);
8504 isl_map_free(factor
);
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
)
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
)
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)
8667 map1
= isl_map_reverse(map1
);
8668 map1
= isl_map_apply_range(map1
, map2
);
8669 return isl_map_reverse(map1
);
8676 __isl_give isl_map
*isl_map_apply_range(__isl_take isl_map
*map1
,
8677 __isl_take isl_map
*map2
)
8680 struct isl_map
*result
;
8683 if (isl_map_align_params_bin(&map1
, &map2
) < 0)
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);
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
])));
8703 if (result
&& result
->n
<= 1)
8704 ISL_F_SET(result
, ISL_MAP_DISJOINT
);
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
)
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
)
8731 equal
= isl_basic_map_is_transformation(bmap
);
8733 return isl_stat_error
;
8735 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
8736 "domain and range don't match", return isl_stat_error
);
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
;
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)
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
);
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
);
8768 bmap
= isl_basic_map_free(bmap
);
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
);
8780 isl_basic_map_free(bmap
);
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
)
8829 equal
= isl_map_tuple_is_equal(map
, isl_dim_in
, map
, isl_dim_out
);
8831 return isl_stat_error
;
8833 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
8834 "domain and range don't match", return isl_stat_error
);
8839 * returns range - domain
8841 __isl_give isl_set
*isl_map_deltas(__isl_take isl_map
*map
)
8845 struct isl_set
*result
;
8847 if (isl_map_check_transformation(map
) < 0)
8849 space
= isl_map_get_space(map
);
8850 space
= isl_space_domain(space
);
8851 result
= isl_set_alloc_space(space
, map
->n
, 0);
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
])));
8865 * returns [domain -> range] -> range - domain
8867 __isl_give isl_basic_map
*isl_basic_map_deltas_map(
8868 __isl_take isl_basic_map
*bmap
)
8872 isl_basic_map
*domain
;
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
);
8894 return isl_basic_map_free(bmap
);
8896 for (i
= 0; i
< n
; ++i
) {
8897 k
= isl_basic_map_alloc_equality(bmap
);
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
);
8909 isl_basic_map_free(bmap
);
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
)
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)
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
);
8953 isl_space_free(space
);
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
);
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
8973 __isl_give isl_basic_set
*isl_basic_set_positive_orthant(
8974 __isl_take isl_space
*space
)
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
);
8990 for (i
= 0; i
< dim
; ++i
) {
8991 int k
= isl_basic_set_alloc_inequality(bset
);
8994 isl_seq_clr(bset
->ineq
[k
], 1 + total
);
8995 isl_int_set_si(bset
->ineq
[k
][1 + nparam
+ i
], 1);
8999 isl_basic_set_free(bset
);
9003 /* Construct the half-space x_pos >= 0.
9005 static __isl_give isl_basic_set
*nonneg_halfspace(__isl_take isl_space
*space
,
9010 isl_basic_set
*nonneg
;
9012 total
= isl_space_dim(space
, isl_dim_all
);
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
);
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
);
9024 isl_basic_set_free(nonneg
);
9028 /* Construct the half-space x_pos <= -1.
9030 static __isl_give isl_basic_set
*neg_halfspace(__isl_take isl_space
*space
,
9037 total
= isl_space_dim(space
, isl_dim_all
);
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
);
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
);
9050 isl_basic_set_free(neg
);
9054 __isl_give isl_set
*isl_set_split_dims(__isl_take isl_set
*set
,
9055 enum isl_dim_type type
, unsigned first
, unsigned n
)
9059 isl_basic_set
*nonneg
;
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
));
9080 static isl_stat
foreach_orthant(__isl_take isl_set
*set
, int *signs
, int first
,
9082 isl_stat (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
9088 return isl_stat_error
;
9089 if (isl_set_plain_is_empty(set
)) {
9094 return fn(set
, signs
, user
);
9097 half
= isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set
),
9099 half
= isl_set_intersect(half
, isl_set_copy(set
));
9100 if (foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
) < 0)
9104 half
= isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set
),
9106 half
= isl_set_intersect(half
, set
);
9107 return foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
);
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
),
9128 return isl_stat_error
;
9129 if (isl_set_plain_is_empty(set
))
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
,
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
)
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
);
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
)
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
)
9189 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
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
)
9206 return isl_bool_error
;
9207 for (i
= 0; i
< map
->n
; ++i
) {
9208 is_empty
= isl_basic_map_is_empty(map
->p
[i
]);
9210 return isl_bool_error
;
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
));
9233 #define TYPE isl_basic_map
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
));
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
));
9263 #define TYPE1 isl_map
9265 #define TYPE2 isl_basic_map
9267 #define TYPE_PAIR isl_map_basic_map
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
)
9288 return isl_bool_error
;
9289 is_subset
= isl_map_is_subset(map1
, map2
);
9290 if (is_subset
!= isl_bool_true
)
9292 is_subset
= isl_map_is_subset(map2
, map1
);
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
)
9305 equal
= isl_map_plain_is_equal(map1
, map2
);
9306 if (equal
< 0 || 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
)
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
)
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
)
9331 return isl_bool_error
;
9332 is_subset
= isl_map_is_subset(map1
, map2
);
9333 if (is_subset
!= isl_bool_true
)
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
)
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
;
9371 n
= isl_constraint_dim(c
, isl_dim_div
);
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
;
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
)
9393 isl_basic_map
*test
;
9395 univ
= isl_basic_map_plain_is_universe(bmap
);
9396 if (univ
< 0 || univ
)
9398 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
9400 return isl_bool_error
;
9402 return isl_bool_false
;
9403 univ
= isl_bool_true
;
9404 if (isl_basic_map_foreach_constraint(bmap
, &involves_divs
, &univ
) < 0 &&
9406 return isl_bool_error
;
9407 if (univ
< 0 || !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
);
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
)
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
]);
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
;
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
);
9466 non_empty
= isl_basic_map_plain_is_non_empty(bmap
);
9468 return isl_bool_error
;
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
));
9475 return isl_bool_error
;
9476 sample
= isl_basic_set_sample_vec(bset
);
9478 return isl_bool_error
;
9479 empty
= sample
->size
== 0;
9480 isl_vec_free(bmap
->sample
);
9481 bmap
->sample
= sample
;
9483 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
9488 isl_bool
isl_basic_map_plain_is_empty(__isl_keep isl_basic_map
*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
)
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
)
9511 return isl_bool_error
;
9513 return isl_bool_false
;
9514 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
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)
9535 map
= isl_map_alloc_space(isl_space_copy(bmap1
->dim
), 2, 0);
9538 map
= isl_map_add_basic_map(map
, bmap1
);
9539 map
= isl_map_add_basic_map(map
, bmap2
);
9542 isl_basic_map_free(bmap1
);
9543 isl_basic_map_free(bmap2
);
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
)
9561 off
= isl_basic_map_var_offset(bmap
, isl_dim_div
);
9563 return isl_basic_map_free(bmap
);
9565 for (i
= 0; i
< bmap
->n_div
; ++i
) {
9567 if (isl_int_is_zero(bmap
->div
[i
][0]))
9569 pos
= isl_seq_first_non_zero(bmap
->div
[i
]+1+1+off
+i
,
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
);
9585 __isl_give isl_map
*isl_map_order_divs(__isl_take isl_map
*map
)
9592 for (i
= 0; i
< map
->n
; ++i
) {
9593 map
->p
[i
] = isl_basic_map_order_divs(map
->p
[i
]);
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
)
9628 bmap
= isl_basic_map_cow(bmap
);
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)
9644 for (j
= n_div
- 1; j
>= 0; --j
) {
9647 bmap
= isl_basic_map_swap_div(bmap
, j
, exp
[j
]);
9652 for (i
= 0; i
< div
->n_row
; ++i
) {
9653 if (j
< n_div
&& exp
[j
] == i
) {
9656 isl_seq_cpy(bmap
->div
[i
], div
->row
[i
], div
->n_col
);
9657 if (isl_basic_map_div_is_marked_unknown(bmap
, i
))
9659 bmap
= isl_basic_map_add_div_constraints(bmap
, i
);
9668 isl_basic_map_free(bmap
);
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
)
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)
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
,
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
)
9737 return isl_basic_map_free(dst
);
9739 if (src
->n_div
== 0)
9742 known
= isl_basic_map_divs_known(src
);
9744 return isl_basic_map_free(dst
);
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
);
9752 return isl_basic_map_free(dst
);
9755 dst_n_div
= isl_basic_map_dim(dst
, isl_dim_div
);
9757 dst
= isl_basic_map_free(dst
);
9758 for (i
= 0; i
< src
->n_div
; ++i
) {
9759 int j
= find_div(dst
, src
, i
);
9761 dst
= isl_basic_map_free(dst
);
9762 if (j
== dst_n_div
) {
9764 int extra
= src
->n_div
- i
;
9765 dst
= isl_basic_map_cow(dst
);
9767 return isl_basic_map_free(dst
);
9768 dst
= isl_basic_map_extend(dst
,
9769 extra
, 0, 2 * extra
);
9772 j
= isl_basic_map_alloc_div(dst
);
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
);
9778 dst
= isl_basic_map_add_div_constraints(dst
, j
);
9780 return isl_basic_map_free(dst
);
9783 dst
= isl_basic_map_swap_div(dst
, i
, j
);
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
)
9798 map
= isl_map_compute_divs(map
);
9799 map
= isl_map_order_divs(map
);
9800 map
= isl_map_cow(map
);
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]);
9809 return isl_map_free(map
);
9812 map
= isl_map_unmark_normalized(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
)
9836 n
= isl_basic_map_list_n_basic_map(list
);
9837 map
= isl_map_compute_divs(map
);
9838 map
= isl_map_cow(map
);
9840 return isl_map_free(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
);
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
)
9867 n
= isl_basic_map_list_n_basic_map(list
);
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
);
9882 __isl_give isl_set
*isl_set_apply( __isl_take isl_set
*set
,
9883 __isl_take isl_map
*map
)
9887 isl_map_align_params_set(&map
, &set
);
9888 ok
= isl_map_compatible_domain(map
, set
);
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
);
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
)
9913 for (i
= map
->n
- 1; i
>= 0; --i
)
9914 map
= remove_if_empty(map
, i
);
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
;
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
);
9966 return isl_lp_error
;
9969 obj
= isl_vec_alloc(ctx
, 1 + total
);
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
,
9977 isl_basic_map_free(bmap1
);
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.
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
)
10000 enum isl_lp_result res
;
10005 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
10007 if (res
== isl_lp_empty
)
10009 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
10010 res
== isl_lp_unbounded
)
10012 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
10017 isl_int_clear(opt
);
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.
10027 * 1 if there exists such a pair
10028 * 0 if there is no such pair, but there is a pair of equal values
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
)
10036 isl_basic_map
*bmap
;
10039 dim1
= isl_basic_set_dim(bset1
, isl_dim_set
);
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
);
10049 isl_basic_map_free(bmap
);
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
);
10057 isl_basic_map_free(bmap
);
10062 isl_basic_map_free(bmap
);
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.
10072 * 1 if there exists such a pair
10073 * 0 if there is no such pair, but there is a pair of equal values
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
)
10083 if (!set1
|| !set2
)
10086 for (i
= 0; i
< set1
->n
; ++i
)
10087 for (j
= 0; j
< set2
->n
; ++j
) {
10089 f
= isl_basic_set_follows_at(set1
->p
[i
], set2
->p
[j
], pos
);
10090 if (f
== 1 || f
== -2)
10099 static isl_bool
isl_basic_map_plain_has_fixed_var(
10100 __isl_keep isl_basic_map
*bmap
, unsigned pos
, isl_int
*val
)
10106 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
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
]))
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
;
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
)
10137 return isl_bool_error
;
10139 return isl_bool_false
;
10141 return isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, val
);
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
;
10151 isl_int_set(*val
, v
);
10152 isl_int_clear(tmp
);
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
),
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
)
10187 ctx
= isl_basic_map_get_ctx(bmap
);
10188 v
= isl_val_alloc(ctx
);
10191 fixed
= isl_basic_map_plain_is_fixed(bmap
, type
, pos
, &v
->n
);
10193 return isl_val_free(v
);
10195 isl_int_set_si(v
->d
, 1);
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
)
10224 ctx
= isl_map_get_ctx(map
);
10225 v
= isl_val_alloc(ctx
);
10228 fixed
= isl_map_plain_is_fixed(map
, type
, pos
, &v
->n
);
10230 return isl_val_free(v
);
10232 isl_int_set_si(v
->d
, 1);
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
)
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
);
10267 return isl_multi_val_free(mv
);
10269 for (i
= 0; i
< n
; ++i
) {
10272 v
= isl_set_plain_get_val_if_fixed(set
, isl_dim_set
, i
);
10273 mv
= isl_multi_val_set_val(mv
, i
, v
);
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
)
10287 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
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
;
10316 unsigned size
= *(unsigned *) arg
;
10319 l1
= isl_seq_last_non_zero(*c1
+ 1, size
);
10320 l2
= isl_seq_last_non_zero(*c2
+ 1, size
);
10325 cmp
= isl_int_abs_cmp((*c1
)[1 + l1
], (*c2
)[1 + l1
]);
10328 cmp
= isl_int_cmp((*c1
)[1 + l1
], (*c2
)[1 + l1
]);
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
)
10345 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
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
)
10360 if (bmap
->n_ineq
== 0)
10362 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_SORTED
))
10364 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
10366 return isl_basic_map_free(bmap
);
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
);
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
);
10389 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map
*bmap1
,
10390 __isl_keep isl_basic_map
*bmap2
)
10394 isl_space
*space1
, *space2
;
10396 if (!bmap1
|| !bmap2
)
10399 if (bmap1
== bmap2
)
10401 space1
= isl_basic_map_peek_space(bmap1
);
10402 space2
= isl_basic_map_peek_space(bmap2
);
10403 cmp
= isl_space_cmp(space1
, space2
);
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
))
10412 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
))
10414 if (ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
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
);
10425 for (i
= 0; i
< bmap1
->n_eq
; ++i
) {
10426 cmp
= isl_seq_cmp(bmap1
->eq
[i
], bmap2
->eq
[i
], 1+total
);
10430 for (i
= 0; i
< bmap1
->n_ineq
; ++i
) {
10431 cmp
= isl_seq_cmp(bmap1
->ineq
[i
], bmap2
->ineq
[i
], 1+total
);
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)
10442 if (unknown1
&& unknown2
)
10448 cmp
= isl_seq_cmp(bmap1
->div
[i
], bmap2
->div
[i
], 1+1+total
);
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
)
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
]);
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
10508 static __isl_give isl_map
*sort_and_remove_duplicates(__isl_take isl_map
*map
)
10512 map
= isl_map_remove_empty_parts(map
);
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
]))
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
];
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
)
10541 isl_basic_map
*bmap
;
10547 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
| ISL_MAP_DISJOINT
))
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
);
10553 return isl_map_free(map
);
10554 isl_basic_map_free(map
->p
[i
]);
10558 map
= sort_and_remove_duplicates(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
)
10569 struct isl_basic_map
*bmap
;
10573 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
))
10575 for (i
= 0; i
< map
->n
; ++i
) {
10576 bmap
= isl_basic_map_normalize(isl_basic_map_copy(map
->p
[i
]));
10579 isl_basic_map_free(map
->p
[i
]);
10583 map
= sort_and_remove_duplicates(map
);
10585 ISL_F_SET(map
, ISL_MAP_NORMALIZED
);
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
)
10603 if (!map1
|| !map2
)
10604 return isl_bool_error
;
10607 return isl_bool_true
;
10608 equal
= isl_map_has_equal_space(map1
, map2
);
10609 if (equal
< 0 || !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
)
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
]);
10624 isl_map_free(map1
);
10625 isl_map_free(map2
);
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
)
10646 isl_basic_map_list
*list
;
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
);
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
)
10671 isl_basic_map
*bmap
;
10673 n
= isl_basic_map_list_n_basic_map(list
);
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
);
10691 isl_basic_map_list_free(list
);
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
)
10713 isl_basic_set
*bset
;
10716 n
= isl_basic_set_list_n_basic_set(list
);
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
);
10736 isl_basic_set_list_free(list
);
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
)
10749 n
= isl_set_list_n_set(list
);
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
) {
10760 set_i
= isl_set_list_get_set(list
, i
);
10761 set
= isl_set_union(set
, set_i
);
10764 isl_set_list_free(list
);
10767 isl_set_list_free(list
);
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)
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
);
10811 isl_basic_map_free(bmap1
);
10812 isl_basic_map_free(bmap2
);
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
);
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)
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
);
10874 isl_basic_map_free(bmap1
);
10875 isl_basic_map_free(bmap2
);
10879 __isl_give isl_basic_map
*isl_basic_map_range_product(
10880 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
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)
10899 if (isl_basic_map_check_equal_params(bmap1
, bmap2
) < 0)
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
);
10924 bmap
= isl_basic_map_set_rational(bmap
);
10925 bmap
= isl_basic_map_simplify(bmap
);
10926 return isl_basic_map_finalize(bmap
);
10928 isl_basic_map_free(bmap1
);
10929 isl_basic_map_free(bmap2
);
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
);
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
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
;
10965 m
= isl_map_has_equal_params(map1
, map2
);
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
);
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
);
10989 result
= isl_map_add_basic_map(result
, part
);
10993 if (remove_duplicates
)
10994 result
= isl_map_remove_obvious_duplicates(result
);
10995 isl_map_free(map1
);
10996 isl_map_free(map2
);
10999 isl_map_free(map1
);
11000 isl_map_free(map2
);
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
)
11021 prod
= isl_map_product(map1
, map2
);
11022 prod
= isl_map_flatten(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
)
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
);
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
)
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
);
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
)
11123 isl_size total
, keep
;
11125 total
= isl_map_dim(map
, isl_dim_in
);
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
);
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
);
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
)
11148 isl_size total
, keep
;
11150 total
= isl_map_dim(map
, isl_dim_in
);
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
);
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
);
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
)
11173 isl_size total
, keep
;
11175 total
= isl_map_dim(map
, isl_dim_out
);
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
);
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
);
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
)
11198 isl_size total
, keep
;
11200 total
= isl_map_dim(map
, isl_dim_out
);
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
);
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
);
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
)
11225 prod
= isl_map_domain_product(map1
, map2
);
11226 prod
= isl_map_flatten_domain(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
)
11237 prod
= isl_map_range_product(map1
, map2
);
11238 prod
= isl_map_flatten_range(prod
);
11242 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map
*bmap
)
11245 uint32_t hash
= isl_hash_init();
11250 bmap
= isl_basic_map_copy(bmap
);
11251 bmap
= isl_basic_map_normalize(bmap
);
11252 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
11255 isl_hash_byte(hash
, bmap
->n_eq
& 0xFF);
11256 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
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
) {
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
) {
11270 if (isl_int_is_zero(bmap
->div
[i
][0]))
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
);
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
)
11292 map
= isl_map_copy(map
);
11293 map
= isl_map_normalize(map
);
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
);
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
)
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
)
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
),
11365 return isl_bool_error
;
11367 for (i
= 0; i
< set
->n
; ++i
) {
11370 r
= test(set
->p
[i
], user
);
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
)
11384 isl_basic_set_list
*list
;
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
);
11400 __isl_give isl_basic_set
*isl_basic_set_lift(__isl_take isl_basic_set
*bset
)
11407 bset
= isl_basic_set_cow(bset
);
11411 space
= isl_basic_set_get_space(bset
);
11412 space
= isl_space_lift(space
, bset
->n_div
);
11415 isl_space_free(bset
->dim
);
11417 bset
->extra
-= bset
->n_div
;
11420 bset
= isl_basic_set_finalize(bset
);
11424 isl_basic_set_free(bset
);
11428 __isl_give isl_set
*isl_set_lift(__isl_take isl_set
*set
)
11434 set
= set_from_map(isl_map_align_divs_internal(set_to_map(set
)));
11439 set
= isl_set_cow(set
);
11443 n_div
= set
->p
[0]->n_div
;
11444 space
= isl_set_get_space(set
);
11445 space
= isl_space_lift(space
, n_div
);
11448 isl_space_free(set
->dim
);
11451 for (i
= 0; i
< set
->n
; ++i
) {
11452 set
->p
[i
] = isl_basic_set_lift(set
->p
[i
]);
11463 int isl_basic_set_size(__isl_keep isl_basic_set
*bset
)
11468 dim
= isl_basic_set_dim(bset
, isl_dim_all
);
11471 size
+= bset
->n_eq
* (1 + dim
);
11472 size
+= bset
->n_ineq
* (1 + dim
);
11473 size
+= bset
->n_div
* (2 + dim
);
11478 int isl_set_size(__isl_keep isl_set
*set
)
11486 for (i
= 0; i
< set
->n
; ++i
)
11487 size
+= isl_basic_set_size(set
->p
[i
]);
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
)
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]))
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
]);
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
)
11551 return isl_bool_error
;
11553 for (i
= 0; i
< map
->n
; ++i
) {
11555 bounded
= isl_basic_map_dim_is_bounded(map
->p
[i
], type
, pos
);
11556 if (bounded
< 0 || !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
))
11582 return isl_bool_error
;
11584 for (i
= 0; i
< map
->n
; ++i
) {
11586 bounded
= fn(map
->p
[i
], type
, pos
);
11587 if (bounded
< 0 || 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
))
11622 return isl_bool_error
;
11624 for (i
= 0; i
< map
->n
; ++i
) {
11626 bounded
= fn(map
->p
[i
], type
, pos
);
11627 if (bounded
< 0 || !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".
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
;
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
)
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
) {
11683 isl_int_set_si(bound
->el
[1 + first
+ i
], -1);
11684 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
11686 empty
= tab
->empty
;
11687 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
11688 if (isl_tab_rollback(tab
, snap
) < 0)
11696 isl_int_set_si(bound
->el
[1 + first
+ i
], 1);
11697 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
11699 empty
= tab
->empty
;
11700 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
11701 if (isl_tab_rollback(tab
, snap
) < 0)
11704 signs
[i
] = empty
? -1 : 0;
11708 isl_vec_free(bound
);
11709 return isl_stat_ok
;
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
)
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
);
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
);
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
]))
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
)
11784 for (k
= first
; k
< first
+ n
; ++k
) {
11785 isl_bool may_involve
;
11787 if (isl_int_is_zero(c
[k
]))
11789 may_involve
= div_may_involve_output(bmap
, k
);
11790 if (may_involve
< 0)
11799 /* Look for a pair of inequality constraints in "bmap" of the form
11801 * -l + i >= 0 or i >= l
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
)
11820 isl_size n_div
, n_out
;
11821 unsigned o_div
, o_out
;
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)
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
))
11836 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + o_out
+ pos
+ 1,
11837 n_out
- (pos
+ 1)) != -1)
11839 if (first_div_may_involve_output(bmap
, bmap
->ineq
[i
] + o_div
,
11842 for (j
= i
+ 1; j
< bmap
->n_ineq
; ++j
) {
11843 if (!isl_int_abs_eq(bmap
->ineq
[j
][o_out
+ pos
],
11846 if (!isl_seq_is_neg(bmap
->ineq
[i
] + 1,
11847 bmap
->ineq
[j
] + 1, total
))
11851 if (j
>= bmap
->n_ineq
)
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]);
11860 if (isl_int_is_one(bmap
->ineq
[i
][o_out
+ pos
]))
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
)
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)
11904 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
11905 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
11908 *ineq
= bmap
->n_ineq
;
11911 for (j
= 0; j
< bmap
->n_eq
; ++j
) {
11912 if (isl_int_is_zero(bmap
->eq
[j
][o_out
+ pos
]))
11914 if (isl_seq_first_non_zero(bmap
->eq
[j
] + o_out
+ pos
+ 1,
11915 n_out
- (pos
+ 1)) != -1)
11917 k
= first_div_may_involve_output(bmap
, bmap
->eq
[j
] + o_div
,
11921 if (!isl_int_is_one(bmap
->eq
[j
][o_out
+ pos
]) &&
11922 !isl_int_is_negone(bmap
->eq
[j
][o_out
+ pos
]))
11924 if (first_div_may_involve_output(bmap
, bmap
->eq
[j
] + o_div
,
11925 k
+ 1, n_div
- (k
+1)) < n_div
)
11927 l
= find_modulo_constraint_pair(bmap
, pos
,
11928 bmap
->eq
[j
][o_div
+ k
]);
11931 if (l
>= bmap
->n_ineq
)
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
)
11953 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
11955 return isl_bool_error
;
11957 for (i
= 0; i
< n_out
; ++i
) {
11960 eq
= isl_basic_map_output_defining_equality(bmap
, i
,
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
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
)
11981 isl_basic_map
*test
;
11985 sv
= isl_basic_map_plain_is_single_valued(bmap
);
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
);
12004 /* Check if the given map is obviously single-valued.
12006 isl_bool
isl_map_plain_is_single_valued(__isl_keep isl_map
*map
)
12009 return isl_bool_error
;
12011 return isl_bool_true
;
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
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
)
12032 sv
= isl_map_plain_is_single_valued(map
);
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
);
12050 isl_bool
isl_map_is_injective(__isl_keep isl_map
*map
)
12054 map
= isl_map_copy(map
);
12055 map
= isl_map_reverse(map
);
12056 in
= isl_map_is_single_valued(map
);
12062 /* Check if the given map is obviously injective.
12064 isl_bool
isl_map_plain_is_injective(__isl_keep isl_map
*map
)
12068 map
= isl_map_copy(map
);
12069 map
= isl_map_reverse(map
);
12070 in
= isl_map_plain_is_single_valued(map
);
12076 isl_bool
isl_map_is_bijective(__isl_keep isl_map
*map
)
12080 sv
= isl_map_is_single_valued(map
);
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
)
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
)
12108 id
= isl_map_identity(isl_map_get_space(map
));
12109 is_identity
= isl_map_is_subset(map
, id
);
12112 return is_identity
;
12115 int isl_map_is_translation(__isl_keep isl_map
*map
)
12120 delta
= isl_map_deltas(isl_map_copy(map
));
12121 ok
= isl_set_is_singleton(delta
);
12122 isl_set_free(delta
);
12127 static int unique(isl_int
*p
, unsigned pos
, unsigned len
)
12129 if (isl_seq_first_non_zero(p
, pos
) != -1)
12131 if (isl_seq_first_non_zero(p
+ pos
+ 1, len
- pos
- 1) != -1)
12136 isl_bool
isl_basic_set_is_box(__isl_keep isl_basic_set
*bset
)
12139 isl_size nvar
, ovar
, n_div
;
12141 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
12143 return isl_bool_error
;
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
]))
12156 if (!unique(bset
->eq
[i
] + 1 + ovar
, j
, nvar
))
12157 return isl_bool_false
;
12160 if (i
< bset
->n_eq
)
12162 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
12163 if (isl_int_is_zero(bset
->ineq
[i
][1 + ovar
+ j
]))
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
]))
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
)
12182 return isl_bool_error
;
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
)
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
)
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"
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
))
12221 ok
= can_change
? can_change(map
) : isl_bool_true
;
12223 return isl_map_free(map
);
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
);
12234 /* Is the domain of "map" a wrapped relation?
12236 isl_bool
isl_map_domain_is_wrapping(__isl_keep isl_map
*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
)
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
)
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
);
12287 bset
->dim
= isl_space_unwrap(bset
->dim
);
12291 bset
= isl_basic_set_finalize(bset
);
12293 return bset_to_bmap(bset
);
12295 isl_basic_set_free(bset
);
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
)
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
);
12322 __isl_give isl_map
*isl_map_reset(__isl_take isl_map
*map
,
12323 enum isl_dim_type type
)
12331 if (!isl_space_is_named_or_nested(map
->dim
, type
))
12334 map
= isl_map_cow(map
);
12338 for (i
= 0; i
< map
->n
; ++i
) {
12339 map
->p
[i
] = isl_basic_map_reset(map
->p
[i
], type
);
12344 space
= isl_map_take_space(map
);
12345 space
= isl_space_reset(space
, type
);
12346 map
= isl_map_restore_space(map
, space
);
12354 __isl_give isl_basic_map
*isl_basic_map_flatten(__isl_take isl_basic_map
*bmap
)
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
);
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
)
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
);
12386 __isl_give isl_basic_map
*isl_basic_map_flatten_range(
12387 __isl_take isl_basic_map
*bmap
)
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
);
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
)
12407 if (!map
->dim
->nested
[0] && !map
->dim
->nested
[1])
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
;
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
),
12427 map
= isl_map_intersect_domain(map
, set
);
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
)
12439 if (!map
->dim
->nested
[0])
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
)
12452 if (!map
->dim
->nested
[1])
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
;
12469 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
12470 if (n_div
< 0 || !space
|| !dim_map
)
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
);
12480 res
->flags
= flags
;
12481 res
= isl_basic_map_gauss(res
, NULL
);
12482 res
= isl_basic_map_finalize(res
);
12485 isl_dim_map_free(dim_map
);
12486 isl_basic_map_free(bmap
);
12487 isl_space_free(space
);
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
)
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
)
12504 for (i
= 0; i
< map
->n
; ++i
) {
12505 struct isl_dim_map
*dim_map_i
;
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
);
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
);
12524 isl_dim_map_free(dim_map
);
12526 isl_reordering_free(r
);
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
)
12542 if (!map
|| !model
)
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)
12551 aligned
= isl_map_space_has_equal_params(map
, model
);
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
);
12566 isl_space_free(model
);
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
)
12584 isl_bool equal_params
;
12585 isl_space
*bmap_space
;
12587 if (!bmap
|| !model
)
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)
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)
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
);
12616 isl_space_free(model
);
12617 isl_basic_map_free(bmap
);
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
);
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
)));
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
)
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
);
12706 return isl_set_free(set
);
12707 for (i
= 0; i
< n
; ++i
) {
12711 id
= isl_multi_id_get_at(tuple
, i
);
12713 return isl_set_free(set
);
12714 pos
= isl_set_find_dim_by_id(set
, isl_dim_param
, id
);
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);
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
12732 __isl_give isl_set
*isl_set_bind(__isl_take isl_set
*set
,
12733 __isl_take isl_multi_id
*tuple
)
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
);
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
)
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
);
12765 return isl_map_free(map
);
12766 for (i
= 0; i
< n
; ++i
) {
12770 id
= isl_multi_id_get_at(tuple
, i
);
12772 return isl_map_free(map
);
12773 pos
= isl_map_find_dim_by_id(map
, isl_dim_param
, id
);
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);
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
)
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
));
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
)
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
);
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
);
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
)
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
);
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
);
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
;
12920 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
12923 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_eq
, total
+ 1);
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
]);
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
]);
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
;
12953 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
12956 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_ineq
, total
+ 1);
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
]);
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
]);
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
;
12989 dim
= isl_space_dim(space
, isl_dim_all
);
12990 if (dim
< 0 || !eq
|| !ineq
)
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
);
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
);
13010 for (i
= 0; i
< extra
; ++i
) {
13011 k
= isl_basic_map_alloc_div(bmap
);
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
);
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
]);
13025 for (k
= 0; k
< dim
; ++k
) {
13026 isl_int_set(bmap
->eq
[l
][off
+ k
],
13032 for (i
= 0; i
< ineq
->n_row
; ++i
) {
13033 l
= isl_basic_map_alloc_inequality(bmap
);
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
]);
13041 for (k
= 0; k
< dim
; ++k
) {
13042 isl_int_set(bmap
->ineq
[l
][off
+ k
],
13043 ineq
->row
[i
][pos
]);
13049 isl_space_free(space
);
13051 isl_mat_free(ineq
);
13053 bmap
= isl_basic_map_simplify(bmap
);
13054 return isl_basic_map_finalize(bmap
);
13056 isl_space_free(space
);
13058 isl_mat_free(ineq
);
13059 isl_basic_map_free(bmap
);
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
)
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
)
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
)
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
);
13132 bmap
->dim
= isl_space_zip(bmap
->dim
);
13135 bmap
= isl_basic_map_mark_final(bmap
);
13138 isl_basic_map_free(bmap
);
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
)
13150 if (!isl_map_can_zip(map
))
13151 isl_die(map
->ctx
, isl_error_invalid
, "map cannot be zipped",
13154 return isl_map_transform(map
, &isl_space_zip
, &isl_basic_map_zip
);
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
)
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
)
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
13185 __isl_give isl_basic_map
*isl_basic_map_curry(__isl_take isl_basic_map
*bmap
)
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
);
13197 bmap
->dim
= isl_space_curry(bmap
->dim
);
13200 bmap
= isl_basic_map_mark_final(bmap
);
13203 isl_basic_map_free(bmap
);
13207 /* Given a map (A -> B) -> C, return the corresponding map
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
)
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
)
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
)
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
13263 __isl_give isl_basic_map
*isl_basic_map_uncurry(__isl_take isl_basic_map
*bmap
)
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
);
13276 bmap
->dim
= isl_space_uncurry(bmap
->dim
);
13278 return isl_basic_map_free(bmap
);
13279 bmap
= isl_basic_map_mark_final(bmap
);
13283 /* Given a map A -> (B -> C), return the corresponding map
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
;
13307 total
= isl_space_dim(space
, isl_dim_all
);
13309 isl_space_check_range(space
, type1
, pos1
, 1) < 0 ||
13310 isl_space_check_range(space
, type2
, pos2
, 1) < 0)
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
);
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
);
13329 isl_space_free(space
);
13330 isl_basic_map_free(bmap
);
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
)
13341 eq
= equator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
13343 bmap
= isl_basic_map_intersect(bmap
, eq
);
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
));
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
;
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
);
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
);
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
));
13394 isl_basic_map_free(bmap
);
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
)
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
);
13414 c
= isl_constraint_alloc_inequality(isl_local_space_from_space(space
));
13416 if (type1
== type2
&& pos1
== pos2
)
13419 c
= isl_constraint_set_coefficient_si(c
, type1
, pos1
, 1);
13420 c
= isl_constraint_set_coefficient_si(c
, type2
, pos2
, -1);
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
)
13434 if (type1
== type2
&& pos1
== pos2
)
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
);
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
)
13452 if (type1
== type2
&& pos1
== pos2
)
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
);
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
;
13480 if (isl_space_check_range(space
, type1
, pos1
, 1) < 0 ||
13481 isl_space_check_range(space
, type2
, pos2
, 1) < 0)
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
);
13502 isl_space_free(space
);
13503 isl_basic_map_free(bmap
);
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
)
13515 gt
= greator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
13517 bmap
= isl_basic_map_intersect(bmap
, gt
);
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
));
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
,
13550 isl_local_space
*ls
;
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
);
13566 __isl_give isl_aff
*isl_basic_set_get_div(__isl_keep isl_basic_set
*bset
,
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
)
13579 if (set
&& isl_set_plain_is_empty(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
)
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
);
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
);
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
;
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
)
13630 isl_local_space
*ls
;
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
);
13653 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_after
);
13655 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
13656 ls
->div
->row
[i
] + 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
);
13665 isl_local_space_free(ls
);
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
)
13681 for (i
= 0; i
< ma
->n
; ++i
)
13682 if (!isl_int_is_one(ma
->u
.p
[i
]->v
->el
[0]))
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"
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
)
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]))
13726 div
= isl_basic_map_alloc_div(bmap
);
13727 k
= isl_basic_map_alloc_equality(bmap
);
13728 if (div
< 0 || k
< 0)
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
);
13741 isl_seq_clr(bmap
->eq
[k
] + 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
;
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]);
13754 isl_basic_map_free(bmap
);
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
);
13767 space
= isl_space_domain(space
);
13768 space
= isl_space_map_from_domain_and_range(space
, set
);
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.
13798 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
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
)
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
;
13837 ma
= isl_multi_aff_align_divs(ma
);
13840 if (check_basic_map_compatible_range_multi_aff(bmap
, type
, ma
) < 0)
13843 if (type
== isl_dim_in
) {
13845 n_after
= isl_basic_map_dim(bmap
, isl_dim_out
);
13847 n_before
= isl_basic_map_dim(bmap
, isl_dim_in
);
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)
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
);
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)
13868 res
= set_ma_divs(res
, ma
, n_before
, n_after
, n_div_ma
);
13872 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
13873 k
= isl_basic_map_alloc_equality(res
);
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)
13882 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
13883 k
= isl_basic_map_alloc_inequality(res
);
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)
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);
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)
13904 res
= add_ma_strides(res
, ma
, n_before
, n_after
, n_div_ma
);
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
);
13919 isl_basic_map_free(bmap
);
13920 isl_multi_aff_free(ma
);
13921 isl_basic_map_free(res
);
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
)
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
);
13974 return isl_stat_error
;
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
)
13996 map
= isl_map_cow(map
);
13997 ma
= isl_multi_aff_align_divs(ma
);
14000 if (check_map_compatible_range_multi_aff(map
, type
, ma
) < 0)
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
));
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
);
14018 isl_multi_aff_free(ma
);
14020 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
14021 ISL_F_CLR(map
, ISL_SET_NORMALIZED
);
14024 isl_multi_aff_free(ma
);
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
)
14044 aligned
= isl_map_space_has_equal_params(map
, ma
->space
);
14048 return map_preimage_multi_aff(map
, type
, ma
);
14050 if (isl_map_check_named_params(map
) < 0)
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
);
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
)
14117 isl_pw_multi_aff_free(pma
);
14118 res
= isl_map_empty(isl_map_get_space(map
));
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
));
14129 res
= isl_map_intersect_range(res
,
14130 isl_map_copy(pma
->p
[0].set
));
14132 for (i
= 1; i
< pma
->n
; ++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
));
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
);
14150 isl_pw_multi_aff_free(pma
);
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
)
14169 aligned
= isl_map_space_has_equal_params(map
, pma
->dim
);
14173 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
14175 if (isl_map_check_named_params(map
) < 0)
14177 if (isl_pw_multi_aff_check_named_params(pma
) < 0)
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
);
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
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
)
14242 isl_pw_multi_aff
*pma
;
14244 n
= isl_map_dim(map
, type
);
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
);
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
);
14267 isl_multi_pw_aff_free(mpa
);
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
)
14299 total
= isl_basic_set_dim(bset
, isl_dim_all
);
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
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
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
)
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
,
14345 if (equal
< 0 || !equal
)
14347 equal
= isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
14349 if (equal
< 0 || equal
)
14350 return isl_bool_not(equal
);
14351 return isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
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
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
);
14371 /* Is the point "inner" internal to inequality constraint "ineq"
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
)
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
);
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
)
14422 bset
= isl_basic_set_cow(bset
);
14425 for (j
= 0; j
< bset
->n_ineq
; ++j
) {
14428 internal
= is_internal(vec
, bset
, j
);
14430 return isl_basic_set_free(bset
);
14433 isl_int_sub_ui(bset
->ineq
[j
][0], bset
->ineq
[j
][0], 1);
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
)
14451 bmap
= isl_basic_map_cow(bmap
);
14452 if (!bmap
|| !trans
)
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)
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)
14466 if (isl_mat_sub_transform(bmap
->ineq
, bmap
->n_ineq
, pos
,
14467 isl_mat_copy(trans
)) < 0)
14469 if (isl_mat_sub_transform(bmap
->div
, bmap
->n_div
, 1 + pos
,
14470 isl_mat_copy(trans
)) < 0)
14473 ISL_F_CLR(bmap
, ISL_BASIC_MAP_SORTED
);
14474 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
14476 isl_mat_free(trans
);
14479 isl_mat_free(trans
);
14480 isl_basic_map_free(bmap
);
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
);