2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2014 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
6 * Copyright 2016 INRIA Paris
7 * Copyright 2016 Sven Verdoolaege
9 * Use of this software is governed by the MIT license
11 * Written by Sven Verdoolaege, K.U.Leuven, Departement
12 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
13 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
14 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
15 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
16 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
17 * B.P. 105 - 78153 Le Chesnay, France
18 * and Centre de Recherche Inria de Paris, 2 rue Simone Iff - Voie DQ12,
19 * CS 42112, 75589 Paris Cedex 12, France
23 #include <isl_ctx_private.h>
24 #include <isl_map_private.h>
26 #include <isl/constraint.h>
27 #include "isl_space_private.h"
28 #include "isl_equalities.h"
29 #include <isl_lp_private.h>
33 #include <isl_reordering.h>
34 #include "isl_sample.h"
38 #include <isl_mat_private.h>
39 #include <isl_vec_private.h>
40 #include <isl_dim_map.h>
41 #include <isl_local_space_private.h>
42 #include <isl_aff_private.h>
43 #include <isl_options_private.h>
44 #include <isl_morph.h>
45 #include <isl_val_private.h>
46 #include <isl/deprecated/map_int.h>
47 #include <isl/deprecated/set_int.h>
49 #include <bset_to_bmap.c>
50 #include <bset_from_bmap.c>
51 #include <set_to_map.c>
52 #include <set_from_map.c>
54 static unsigned n(__isl_keep isl_space
*dim
, enum isl_dim_type type
)
57 case isl_dim_param
: return dim
->nparam
;
58 case isl_dim_in
: return dim
->n_in
;
59 case isl_dim_out
: return dim
->n_out
;
60 case isl_dim_all
: return dim
->nparam
+ dim
->n_in
+ dim
->n_out
;
65 static unsigned pos(__isl_keep isl_space
*dim
, enum isl_dim_type type
)
68 case isl_dim_param
: return 1;
69 case isl_dim_in
: return 1 + dim
->nparam
;
70 case isl_dim_out
: return 1 + dim
->nparam
+ dim
->n_in
;
75 unsigned isl_basic_map_dim(__isl_keep isl_basic_map
*bmap
,
76 enum isl_dim_type type
)
81 case isl_dim_cst
: return 1;
84 case isl_dim_out
: return isl_space_dim(bmap
->dim
, type
);
85 case isl_dim_div
: return bmap
->n_div
;
86 case isl_dim_all
: return isl_basic_map_total_dim(bmap
);
91 unsigned isl_map_dim(__isl_keep isl_map
*map
, enum isl_dim_type type
)
93 return map
? n(map
->dim
, type
) : 0;
96 unsigned isl_set_dim(__isl_keep isl_set
*set
, enum isl_dim_type type
)
98 return set
? n(set
->dim
, type
) : 0;
101 unsigned isl_basic_map_offset(struct isl_basic_map
*bmap
,
102 enum isl_dim_type type
)
111 case isl_dim_cst
: return 0;
112 case isl_dim_param
: return 1;
113 case isl_dim_in
: return 1 + space
->nparam
;
114 case isl_dim_out
: return 1 + space
->nparam
+ space
->n_in
;
115 case isl_dim_div
: return 1 + space
->nparam
+ space
->n_in
+
121 unsigned isl_basic_set_offset(struct isl_basic_set
*bset
,
122 enum isl_dim_type type
)
124 return isl_basic_map_offset(bset
, type
);
127 static unsigned map_offset(struct isl_map
*map
, enum isl_dim_type type
)
129 return pos(map
->dim
, type
);
132 unsigned isl_basic_set_dim(__isl_keep isl_basic_set
*bset
,
133 enum isl_dim_type type
)
135 return isl_basic_map_dim(bset
, type
);
138 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set
*bset
)
140 return isl_basic_set_dim(bset
, isl_dim_set
);
143 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set
*bset
)
145 return isl_basic_set_dim(bset
, isl_dim_param
);
148 unsigned isl_basic_set_total_dim(const struct isl_basic_set
*bset
)
152 return isl_space_dim(bset
->dim
, isl_dim_all
) + bset
->n_div
;
155 unsigned isl_set_n_dim(__isl_keep isl_set
*set
)
157 return isl_set_dim(set
, isl_dim_set
);
160 unsigned isl_set_n_param(__isl_keep isl_set
*set
)
162 return isl_set_dim(set
, isl_dim_param
);
165 unsigned isl_basic_map_n_in(const struct isl_basic_map
*bmap
)
167 return bmap
? bmap
->dim
->n_in
: 0;
170 unsigned isl_basic_map_n_out(const struct isl_basic_map
*bmap
)
172 return bmap
? bmap
->dim
->n_out
: 0;
175 unsigned isl_basic_map_n_param(const struct isl_basic_map
*bmap
)
177 return bmap
? bmap
->dim
->nparam
: 0;
180 unsigned isl_basic_map_n_div(const struct isl_basic_map
*bmap
)
182 return bmap
? bmap
->n_div
: 0;
185 unsigned isl_basic_map_total_dim(const struct isl_basic_map
*bmap
)
187 return bmap
? isl_space_dim(bmap
->dim
, isl_dim_all
) + bmap
->n_div
: 0;
190 unsigned isl_map_n_in(const struct isl_map
*map
)
192 return map
? map
->dim
->n_in
: 0;
195 unsigned isl_map_n_out(const struct isl_map
*map
)
197 return map
? map
->dim
->n_out
: 0;
200 unsigned isl_map_n_param(const struct isl_map
*map
)
202 return map
? map
->dim
->nparam
: 0;
205 isl_bool
isl_map_compatible_domain(__isl_keep isl_map
*map
,
206 __isl_keep isl_set
*set
)
210 return isl_bool_error
;
211 m
= isl_space_match(map
->dim
, isl_dim_param
, set
->dim
, isl_dim_param
);
214 return isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
215 set
->dim
, isl_dim_set
);
218 isl_bool
isl_basic_map_compatible_domain(__isl_keep isl_basic_map
*bmap
,
219 __isl_keep isl_basic_set
*bset
)
223 return isl_bool_error
;
224 m
= isl_space_match(bmap
->dim
, isl_dim_param
, bset
->dim
, isl_dim_param
);
227 return isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
228 bset
->dim
, isl_dim_set
);
231 isl_bool
isl_map_compatible_range(__isl_keep isl_map
*map
,
232 __isl_keep isl_set
*set
)
236 return isl_bool_error
;
237 m
= isl_space_match(map
->dim
, isl_dim_param
, set
->dim
, isl_dim_param
);
240 return isl_space_tuple_is_equal(map
->dim
, isl_dim_out
,
241 set
->dim
, isl_dim_set
);
244 isl_bool
isl_basic_map_compatible_range(__isl_keep isl_basic_map
*bmap
,
245 __isl_keep isl_basic_set
*bset
)
249 return isl_bool_error
;
250 m
= isl_space_match(bmap
->dim
, isl_dim_param
, bset
->dim
, isl_dim_param
);
253 return isl_space_tuple_is_equal(bmap
->dim
, isl_dim_out
,
254 bset
->dim
, isl_dim_set
);
257 isl_ctx
*isl_basic_map_get_ctx(__isl_keep isl_basic_map
*bmap
)
259 return bmap
? bmap
->ctx
: NULL
;
262 isl_ctx
*isl_basic_set_get_ctx(__isl_keep isl_basic_set
*bset
)
264 return bset
? bset
->ctx
: NULL
;
267 isl_ctx
*isl_map_get_ctx(__isl_keep isl_map
*map
)
269 return map
? map
->ctx
: NULL
;
272 isl_ctx
*isl_set_get_ctx(__isl_keep isl_set
*set
)
274 return set
? set
->ctx
: NULL
;
277 __isl_give isl_space
*isl_basic_map_get_space(__isl_keep isl_basic_map
*bmap
)
281 return isl_space_copy(bmap
->dim
);
284 __isl_give isl_space
*isl_basic_set_get_space(__isl_keep isl_basic_set
*bset
)
288 return isl_space_copy(bset
->dim
);
291 /* Extract the divs in "bmap" as a matrix.
293 __isl_give isl_mat
*isl_basic_map_get_divs(__isl_keep isl_basic_map
*bmap
)
304 ctx
= isl_basic_map_get_ctx(bmap
);
305 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
306 cols
= 1 + 1 + total
+ bmap
->n_div
;
307 div
= isl_mat_alloc(ctx
, bmap
->n_div
, cols
);
311 for (i
= 0; i
< bmap
->n_div
; ++i
)
312 isl_seq_cpy(div
->row
[i
], bmap
->div
[i
], cols
);
317 /* Extract the divs in "bset" as a matrix.
319 __isl_give isl_mat
*isl_basic_set_get_divs(__isl_keep isl_basic_set
*bset
)
321 return isl_basic_map_get_divs(bset
);
324 __isl_give isl_local_space
*isl_basic_map_get_local_space(
325 __isl_keep isl_basic_map
*bmap
)
332 div
= isl_basic_map_get_divs(bmap
);
333 return isl_local_space_alloc_div(isl_space_copy(bmap
->dim
), div
);
336 __isl_give isl_local_space
*isl_basic_set_get_local_space(
337 __isl_keep isl_basic_set
*bset
)
339 return isl_basic_map_get_local_space(bset
);
342 /* For each known div d = floor(f/m), add the constraints
345 * -(f-(m-1)) + m d >= 0
347 * Do not finalize the result.
349 static __isl_give isl_basic_map
*add_known_div_constraints(
350 __isl_take isl_basic_map
*bmap
)
357 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
360 bmap
= isl_basic_map_cow(bmap
);
361 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 2 * n_div
);
364 for (i
= 0; i
< n_div
; ++i
) {
365 if (isl_int_is_zero(bmap
->div
[i
][0]))
367 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
368 return isl_basic_map_free(bmap
);
374 __isl_give isl_basic_map
*isl_basic_map_from_local_space(
375 __isl_take isl_local_space
*ls
)
384 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
385 bmap
= isl_basic_map_alloc_space(isl_local_space_get_space(ls
),
386 n_div
, 0, 2 * n_div
);
388 for (i
= 0; i
< n_div
; ++i
)
389 if (isl_basic_map_alloc_div(bmap
) < 0)
392 for (i
= 0; i
< n_div
; ++i
)
393 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], ls
->div
->n_col
);
394 bmap
= add_known_div_constraints(bmap
);
396 isl_local_space_free(ls
);
399 isl_local_space_free(ls
);
400 isl_basic_map_free(bmap
);
404 __isl_give isl_basic_set
*isl_basic_set_from_local_space(
405 __isl_take isl_local_space
*ls
)
407 return isl_basic_map_from_local_space(ls
);
410 __isl_give isl_space
*isl_map_get_space(__isl_keep isl_map
*map
)
414 return isl_space_copy(map
->dim
);
417 __isl_give isl_space
*isl_set_get_space(__isl_keep isl_set
*set
)
421 return isl_space_copy(set
->dim
);
424 __isl_give isl_basic_map
*isl_basic_map_set_tuple_name(
425 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
, const char *s
)
427 bmap
= isl_basic_map_cow(bmap
);
430 bmap
->dim
= isl_space_set_tuple_name(bmap
->dim
, type
, s
);
433 bmap
= isl_basic_map_finalize(bmap
);
436 isl_basic_map_free(bmap
);
440 __isl_give isl_basic_set
*isl_basic_set_set_tuple_name(
441 __isl_take isl_basic_set
*bset
, const char *s
)
443 return isl_basic_map_set_tuple_name(bset
, isl_dim_set
, s
);
446 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map
*bmap
,
447 enum isl_dim_type type
)
449 return bmap
? isl_space_get_tuple_name(bmap
->dim
, type
) : NULL
;
452 __isl_give isl_map
*isl_map_set_tuple_name(__isl_take isl_map
*map
,
453 enum isl_dim_type type
, const char *s
)
457 map
= isl_map_cow(map
);
461 map
->dim
= isl_space_set_tuple_name(map
->dim
, type
, s
);
465 for (i
= 0; i
< map
->n
; ++i
) {
466 map
->p
[i
] = isl_basic_map_set_tuple_name(map
->p
[i
], type
, s
);
477 /* Replace the identifier of the tuple of type "type" by "id".
479 __isl_give isl_basic_map
*isl_basic_map_set_tuple_id(
480 __isl_take isl_basic_map
*bmap
,
481 enum isl_dim_type type
, __isl_take isl_id
*id
)
483 bmap
= isl_basic_map_cow(bmap
);
486 bmap
->dim
= isl_space_set_tuple_id(bmap
->dim
, type
, id
);
488 return isl_basic_map_free(bmap
);
489 bmap
= isl_basic_map_finalize(bmap
);
496 /* Replace the identifier of the tuple by "id".
498 __isl_give isl_basic_set
*isl_basic_set_set_tuple_id(
499 __isl_take isl_basic_set
*bset
, __isl_take isl_id
*id
)
501 return isl_basic_map_set_tuple_id(bset
, isl_dim_set
, id
);
504 /* Does the input or output tuple have a name?
506 isl_bool
isl_map_has_tuple_name(__isl_keep isl_map
*map
, enum isl_dim_type type
)
508 return map
? isl_space_has_tuple_name(map
->dim
, type
) : isl_bool_error
;
511 const char *isl_map_get_tuple_name(__isl_keep isl_map
*map
,
512 enum isl_dim_type type
)
514 return map
? isl_space_get_tuple_name(map
->dim
, type
) : NULL
;
517 __isl_give isl_set
*isl_set_set_tuple_name(__isl_take isl_set
*set
,
520 return set_from_map(isl_map_set_tuple_name(set_to_map(set
),
524 __isl_give isl_map
*isl_map_set_tuple_id(__isl_take isl_map
*map
,
525 enum isl_dim_type type
, __isl_take isl_id
*id
)
527 map
= isl_map_cow(map
);
531 map
->dim
= isl_space_set_tuple_id(map
->dim
, type
, id
);
533 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
539 __isl_give isl_set
*isl_set_set_tuple_id(__isl_take isl_set
*set
,
540 __isl_take isl_id
*id
)
542 return isl_map_set_tuple_id(set
, isl_dim_set
, id
);
545 __isl_give isl_map
*isl_map_reset_tuple_id(__isl_take isl_map
*map
,
546 enum isl_dim_type type
)
548 map
= isl_map_cow(map
);
552 map
->dim
= isl_space_reset_tuple_id(map
->dim
, type
);
554 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
557 __isl_give isl_set
*isl_set_reset_tuple_id(__isl_take isl_set
*set
)
559 return isl_map_reset_tuple_id(set
, isl_dim_set
);
562 isl_bool
isl_map_has_tuple_id(__isl_keep isl_map
*map
, enum isl_dim_type type
)
564 return map
? isl_space_has_tuple_id(map
->dim
, type
) : isl_bool_error
;
567 __isl_give isl_id
*isl_map_get_tuple_id(__isl_keep isl_map
*map
,
568 enum isl_dim_type type
)
570 return map
? isl_space_get_tuple_id(map
->dim
, type
) : NULL
;
573 isl_bool
isl_set_has_tuple_id(__isl_keep isl_set
*set
)
575 return isl_map_has_tuple_id(set
, isl_dim_set
);
578 __isl_give isl_id
*isl_set_get_tuple_id(__isl_keep isl_set
*set
)
580 return isl_map_get_tuple_id(set
, isl_dim_set
);
583 /* Does the set tuple have a name?
585 isl_bool
isl_set_has_tuple_name(__isl_keep isl_set
*set
)
588 return isl_bool_error
;
589 return isl_space_has_tuple_name(set
->dim
, isl_dim_set
);
593 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set
*bset
)
595 return bset
? isl_space_get_tuple_name(bset
->dim
, isl_dim_set
) : NULL
;
598 const char *isl_set_get_tuple_name(__isl_keep isl_set
*set
)
600 return set
? isl_space_get_tuple_name(set
->dim
, isl_dim_set
) : NULL
;
603 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map
*bmap
,
604 enum isl_dim_type type
, unsigned pos
)
606 return bmap
? isl_space_get_dim_name(bmap
->dim
, type
, pos
) : NULL
;
609 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set
*bset
,
610 enum isl_dim_type type
, unsigned pos
)
612 return bset
? isl_space_get_dim_name(bset
->dim
, type
, pos
) : NULL
;
615 /* Does the given dimension have a name?
617 isl_bool
isl_map_has_dim_name(__isl_keep isl_map
*map
,
618 enum isl_dim_type type
, unsigned pos
)
621 return isl_bool_error
;
622 return isl_space_has_dim_name(map
->dim
, type
, pos
);
625 const char *isl_map_get_dim_name(__isl_keep isl_map
*map
,
626 enum isl_dim_type type
, unsigned pos
)
628 return map
? isl_space_get_dim_name(map
->dim
, type
, pos
) : NULL
;
631 const char *isl_set_get_dim_name(__isl_keep isl_set
*set
,
632 enum isl_dim_type type
, unsigned pos
)
634 return set
? isl_space_get_dim_name(set
->dim
, type
, pos
) : NULL
;
637 /* Does the given dimension have a name?
639 isl_bool
isl_set_has_dim_name(__isl_keep isl_set
*set
,
640 enum isl_dim_type type
, unsigned pos
)
643 return isl_bool_error
;
644 return isl_space_has_dim_name(set
->dim
, type
, pos
);
647 __isl_give isl_basic_map
*isl_basic_map_set_dim_name(
648 __isl_take isl_basic_map
*bmap
,
649 enum isl_dim_type type
, unsigned pos
, const char *s
)
651 bmap
= isl_basic_map_cow(bmap
);
654 bmap
->dim
= isl_space_set_dim_name(bmap
->dim
, type
, pos
, s
);
657 return isl_basic_map_finalize(bmap
);
659 isl_basic_map_free(bmap
);
663 __isl_give isl_map
*isl_map_set_dim_name(__isl_take isl_map
*map
,
664 enum isl_dim_type type
, unsigned pos
, const char *s
)
668 map
= isl_map_cow(map
);
672 map
->dim
= isl_space_set_dim_name(map
->dim
, type
, pos
, s
);
676 for (i
= 0; i
< map
->n
; ++i
) {
677 map
->p
[i
] = isl_basic_map_set_dim_name(map
->p
[i
], type
, pos
, s
);
688 __isl_give isl_basic_set
*isl_basic_set_set_dim_name(
689 __isl_take isl_basic_set
*bset
,
690 enum isl_dim_type type
, unsigned pos
, const char *s
)
692 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset
),
696 __isl_give isl_set
*isl_set_set_dim_name(__isl_take isl_set
*set
,
697 enum isl_dim_type type
, unsigned pos
, const char *s
)
699 return set_from_map(isl_map_set_dim_name(set_to_map(set
),
703 isl_bool
isl_basic_map_has_dim_id(__isl_keep isl_basic_map
*bmap
,
704 enum isl_dim_type type
, unsigned pos
)
707 return isl_bool_error
;
708 return isl_space_has_dim_id(bmap
->dim
, type
, pos
);
711 __isl_give isl_id
*isl_basic_set_get_dim_id(__isl_keep isl_basic_set
*bset
,
712 enum isl_dim_type type
, unsigned pos
)
714 return bset
? isl_space_get_dim_id(bset
->dim
, type
, pos
) : NULL
;
717 isl_bool
isl_map_has_dim_id(__isl_keep isl_map
*map
,
718 enum isl_dim_type type
, unsigned pos
)
720 return map
? isl_space_has_dim_id(map
->dim
, type
, pos
) : isl_bool_error
;
723 __isl_give isl_id
*isl_map_get_dim_id(__isl_keep isl_map
*map
,
724 enum isl_dim_type type
, unsigned pos
)
726 return map
? isl_space_get_dim_id(map
->dim
, type
, pos
) : NULL
;
729 isl_bool
isl_set_has_dim_id(__isl_keep isl_set
*set
,
730 enum isl_dim_type type
, unsigned pos
)
732 return isl_map_has_dim_id(set
, type
, pos
);
735 __isl_give isl_id
*isl_set_get_dim_id(__isl_keep isl_set
*set
,
736 enum isl_dim_type type
, unsigned pos
)
738 return isl_map_get_dim_id(set
, type
, pos
);
741 __isl_give isl_map
*isl_map_set_dim_id(__isl_take isl_map
*map
,
742 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
744 map
= isl_map_cow(map
);
748 map
->dim
= isl_space_set_dim_id(map
->dim
, type
, pos
, id
);
750 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
756 __isl_give isl_set
*isl_set_set_dim_id(__isl_take isl_set
*set
,
757 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
759 return isl_map_set_dim_id(set
, type
, pos
, id
);
762 int isl_map_find_dim_by_id(__isl_keep isl_map
*map
, enum isl_dim_type type
,
763 __isl_keep isl_id
*id
)
767 return isl_space_find_dim_by_id(map
->dim
, type
, id
);
770 int isl_set_find_dim_by_id(__isl_keep isl_set
*set
, enum isl_dim_type type
,
771 __isl_keep isl_id
*id
)
773 return isl_map_find_dim_by_id(set
, type
, id
);
776 /* Return the position of the dimension of the given type and name
778 * Return -1 if no such dimension can be found.
780 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map
*bmap
,
781 enum isl_dim_type type
, const char *name
)
785 return isl_space_find_dim_by_name(bmap
->dim
, type
, name
);
788 int isl_map_find_dim_by_name(__isl_keep isl_map
*map
, enum isl_dim_type type
,
793 return isl_space_find_dim_by_name(map
->dim
, type
, name
);
796 int isl_set_find_dim_by_name(__isl_keep isl_set
*set
, enum isl_dim_type type
,
799 return isl_map_find_dim_by_name(set
, type
, name
);
802 /* Reset the user pointer on all identifiers of parameters and tuples
803 * of the space of "map".
805 __isl_give isl_map
*isl_map_reset_user(__isl_take isl_map
*map
)
809 space
= isl_map_get_space(map
);
810 space
= isl_space_reset_user(space
);
811 map
= isl_map_reset_space(map
, space
);
816 /* Reset the user pointer on all identifiers of parameters and tuples
817 * of the space of "set".
819 __isl_give isl_set
*isl_set_reset_user(__isl_take isl_set
*set
)
821 return isl_map_reset_user(set
);
824 isl_bool
isl_basic_map_is_rational(__isl_keep isl_basic_map
*bmap
)
827 return isl_bool_error
;
828 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
831 /* Has "map" been marked as a rational map?
832 * In particular, have all basic maps in "map" been marked this way?
833 * An empty map is not considered to be rational.
834 * Maps where only some of the basic maps are marked rational
837 isl_bool
isl_map_is_rational(__isl_keep isl_map
*map
)
843 return isl_bool_error
;
845 return isl_bool_false
;
846 rational
= isl_basic_map_is_rational(map
->p
[0]);
849 for (i
= 1; i
< map
->n
; ++i
) {
852 rational_i
= isl_basic_map_is_rational(map
->p
[i
]);
855 if (rational
!= rational_i
)
856 isl_die(isl_map_get_ctx(map
), isl_error_unsupported
,
857 "mixed rational and integer basic maps "
858 "not supported", return isl_bool_error
);
864 /* Has "set" been marked as a rational set?
865 * In particular, have all basic set in "set" been marked this way?
866 * An empty set is not considered to be rational.
867 * Sets where only some of the basic sets are marked rational
870 isl_bool
isl_set_is_rational(__isl_keep isl_set
*set
)
872 return isl_map_is_rational(set
);
875 int isl_basic_set_is_rational(__isl_keep isl_basic_set
*bset
)
877 return isl_basic_map_is_rational(bset
);
880 /* Does "bmap" contain any rational points?
882 * If "bmap" has an equality for each dimension, equating the dimension
883 * to an integer constant, then it has no rational points, even if it
884 * is marked as rational.
886 isl_bool
isl_basic_map_has_rational(__isl_keep isl_basic_map
*bmap
)
888 isl_bool has_rational
= isl_bool_true
;
892 return isl_bool_error
;
893 if (isl_basic_map_plain_is_empty(bmap
))
894 return isl_bool_false
;
895 if (!isl_basic_map_is_rational(bmap
))
896 return isl_bool_false
;
897 bmap
= isl_basic_map_copy(bmap
);
898 bmap
= isl_basic_map_implicit_equalities(bmap
);
900 return isl_bool_error
;
901 total
= isl_basic_map_total_dim(bmap
);
902 if (bmap
->n_eq
== total
) {
904 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
905 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1, total
);
908 if (!isl_int_is_one(bmap
->eq
[i
][1 + j
]) &&
909 !isl_int_is_negone(bmap
->eq
[i
][1 + j
]))
911 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + j
+ 1,
917 has_rational
= isl_bool_false
;
919 isl_basic_map_free(bmap
);
924 /* Does "map" contain any rational points?
926 isl_bool
isl_map_has_rational(__isl_keep isl_map
*map
)
929 isl_bool has_rational
;
932 return isl_bool_error
;
933 for (i
= 0; i
< map
->n
; ++i
) {
934 has_rational
= isl_basic_map_has_rational(map
->p
[i
]);
935 if (has_rational
< 0 || has_rational
)
938 return isl_bool_false
;
941 /* Does "set" contain any rational points?
943 isl_bool
isl_set_has_rational(__isl_keep isl_set
*set
)
945 return isl_map_has_rational(set
);
948 /* Is this basic set a parameter domain?
950 isl_bool
isl_basic_set_is_params(__isl_keep isl_basic_set
*bset
)
953 return isl_bool_error
;
954 return isl_space_is_params(bset
->dim
);
957 /* Is this set a parameter domain?
959 isl_bool
isl_set_is_params(__isl_keep isl_set
*set
)
962 return isl_bool_error
;
963 return isl_space_is_params(set
->dim
);
966 /* Is this map actually a parameter domain?
967 * Users should never call this function. Outside of isl,
968 * a map can never be a parameter domain.
970 isl_bool
isl_map_is_params(__isl_keep isl_map
*map
)
973 return isl_bool_error
;
974 return isl_space_is_params(map
->dim
);
977 static struct isl_basic_map
*basic_map_init(struct isl_ctx
*ctx
,
978 struct isl_basic_map
*bmap
, unsigned extra
,
979 unsigned n_eq
, unsigned n_ineq
)
982 size_t row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + extra
;
987 bmap
->block
= isl_blk_alloc(ctx
, (n_ineq
+ n_eq
) * row_size
);
988 if (isl_blk_is_error(bmap
->block
))
991 bmap
->ineq
= isl_alloc_array(ctx
, isl_int
*, n_ineq
+ n_eq
);
992 if ((n_ineq
+ n_eq
) && !bmap
->ineq
)
996 bmap
->block2
= isl_blk_empty();
999 bmap
->block2
= isl_blk_alloc(ctx
, extra
* (1 + row_size
));
1000 if (isl_blk_is_error(bmap
->block2
))
1003 bmap
->div
= isl_alloc_array(ctx
, isl_int
*, extra
);
1008 for (i
= 0; i
< n_ineq
+ n_eq
; ++i
)
1009 bmap
->ineq
[i
] = bmap
->block
.data
+ i
* row_size
;
1011 for (i
= 0; i
< extra
; ++i
)
1012 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + row_size
);
1016 bmap
->c_size
= n_eq
+ n_ineq
;
1017 bmap
->eq
= bmap
->ineq
+ n_ineq
;
1018 bmap
->extra
= extra
;
1022 bmap
->sample
= NULL
;
1026 isl_basic_map_free(bmap
);
1030 struct isl_basic_set
*isl_basic_set_alloc(struct isl_ctx
*ctx
,
1031 unsigned nparam
, unsigned dim
, unsigned extra
,
1032 unsigned n_eq
, unsigned n_ineq
)
1034 struct isl_basic_map
*bmap
;
1037 space
= isl_space_set_alloc(ctx
, nparam
, dim
);
1041 bmap
= isl_basic_map_alloc_space(space
, extra
, n_eq
, n_ineq
);
1042 return bset_from_bmap(bmap
);
1045 struct isl_basic_set
*isl_basic_set_alloc_space(__isl_take isl_space
*dim
,
1046 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
1048 struct isl_basic_map
*bmap
;
1051 isl_assert(dim
->ctx
, dim
->n_in
== 0, goto error
);
1052 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1053 return bset_from_bmap(bmap
);
1055 isl_space_free(dim
);
1059 struct isl_basic_map
*isl_basic_map_alloc_space(__isl_take isl_space
*dim
,
1060 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
1062 struct isl_basic_map
*bmap
;
1066 bmap
= isl_calloc_type(dim
->ctx
, struct isl_basic_map
);
1071 return basic_map_init(dim
->ctx
, bmap
, extra
, n_eq
, n_ineq
);
1073 isl_space_free(dim
);
1077 struct isl_basic_map
*isl_basic_map_alloc(struct isl_ctx
*ctx
,
1078 unsigned nparam
, unsigned in
, unsigned out
, unsigned extra
,
1079 unsigned n_eq
, unsigned n_ineq
)
1081 struct isl_basic_map
*bmap
;
1084 dim
= isl_space_alloc(ctx
, nparam
, in
, out
);
1088 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1092 static void dup_constraints(
1093 struct isl_basic_map
*dst
, struct isl_basic_map
*src
)
1096 unsigned total
= isl_basic_map_total_dim(src
);
1098 for (i
= 0; i
< src
->n_eq
; ++i
) {
1099 int j
= isl_basic_map_alloc_equality(dst
);
1100 isl_seq_cpy(dst
->eq
[j
], src
->eq
[i
], 1+total
);
1103 for (i
= 0; i
< src
->n_ineq
; ++i
) {
1104 int j
= isl_basic_map_alloc_inequality(dst
);
1105 isl_seq_cpy(dst
->ineq
[j
], src
->ineq
[i
], 1+total
);
1108 for (i
= 0; i
< src
->n_div
; ++i
) {
1109 int j
= isl_basic_map_alloc_div(dst
);
1110 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
);
1112 ISL_F_SET(dst
, ISL_BASIC_SET_FINAL
);
1115 struct isl_basic_map
*isl_basic_map_dup(struct isl_basic_map
*bmap
)
1117 struct isl_basic_map
*dup
;
1121 dup
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
1122 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
1125 dup_constraints(dup
, bmap
);
1126 dup
->flags
= bmap
->flags
;
1127 dup
->sample
= isl_vec_copy(bmap
->sample
);
1131 struct isl_basic_set
*isl_basic_set_dup(struct isl_basic_set
*bset
)
1133 struct isl_basic_map
*dup
;
1135 dup
= isl_basic_map_dup(bset_to_bmap(bset
));
1136 return bset_from_bmap(dup
);
1139 struct isl_basic_set
*isl_basic_set_copy(struct isl_basic_set
*bset
)
1144 if (ISL_F_ISSET(bset
, ISL_BASIC_SET_FINAL
)) {
1148 return isl_basic_set_dup(bset
);
1151 struct isl_set
*isl_set_copy(struct isl_set
*set
)
1160 struct isl_basic_map
*isl_basic_map_copy(struct isl_basic_map
*bmap
)
1165 if (ISL_F_ISSET(bmap
, ISL_BASIC_SET_FINAL
)) {
1169 bmap
= isl_basic_map_dup(bmap
);
1171 ISL_F_SET(bmap
, ISL_BASIC_SET_FINAL
);
1175 struct isl_map
*isl_map_copy(struct isl_map
*map
)
1184 __isl_null isl_basic_map
*isl_basic_map_free(__isl_take isl_basic_map
*bmap
)
1189 if (--bmap
->ref
> 0)
1192 isl_ctx_deref(bmap
->ctx
);
1194 isl_blk_free(bmap
->ctx
, bmap
->block2
);
1196 isl_blk_free(bmap
->ctx
, bmap
->block
);
1197 isl_vec_free(bmap
->sample
);
1198 isl_space_free(bmap
->dim
);
1204 __isl_null isl_basic_set
*isl_basic_set_free(__isl_take isl_basic_set
*bset
)
1206 return isl_basic_map_free(bset_to_bmap(bset
));
1209 static int room_for_con(struct isl_basic_map
*bmap
, unsigned n
)
1211 return bmap
->n_eq
+ bmap
->n_ineq
+ n
<= bmap
->c_size
;
1214 __isl_give isl_map
*isl_map_align_params_map_map_and(
1215 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
,
1216 __isl_give isl_map
*(*fn
)(__isl_take isl_map
*map1
,
1217 __isl_take isl_map
*map2
))
1221 if (isl_space_match(map1
->dim
, isl_dim_param
, map2
->dim
, isl_dim_param
))
1222 return fn(map1
, map2
);
1223 if (!isl_space_has_named_params(map1
->dim
) ||
1224 !isl_space_has_named_params(map2
->dim
))
1225 isl_die(map1
->ctx
, isl_error_invalid
,
1226 "unaligned unnamed parameters", goto error
);
1227 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1228 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1229 return fn(map1
, map2
);
1236 isl_bool
isl_map_align_params_map_map_and_test(__isl_keep isl_map
*map1
,
1237 __isl_keep isl_map
*map2
,
1238 isl_bool (*fn
)(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
))
1243 return isl_bool_error
;
1244 if (isl_space_match(map1
->dim
, isl_dim_param
, map2
->dim
, isl_dim_param
))
1245 return fn(map1
, map2
);
1246 if (!isl_space_has_named_params(map1
->dim
) ||
1247 !isl_space_has_named_params(map2
->dim
))
1248 isl_die(map1
->ctx
, isl_error_invalid
,
1249 "unaligned unnamed parameters", return isl_bool_error
);
1250 map1
= isl_map_copy(map1
);
1251 map2
= isl_map_copy(map2
);
1252 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1253 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1260 int isl_basic_map_alloc_equality(struct isl_basic_map
*bmap
)
1262 struct isl_ctx
*ctx
;
1266 isl_assert(ctx
, room_for_con(bmap
, 1), return -1);
1267 isl_assert(ctx
, (bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
<= bmap
->c_size
,
1269 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1270 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1271 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1272 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1273 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1274 if ((bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
== bmap
->c_size
) {
1276 int j
= isl_basic_map_alloc_inequality(bmap
);
1280 bmap
->ineq
[j
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1281 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1288 isl_seq_clr(bmap
->eq
[bmap
->n_eq
] + 1 + isl_basic_map_total_dim(bmap
),
1289 bmap
->extra
- bmap
->n_div
);
1290 return bmap
->n_eq
++;
1293 int isl_basic_set_alloc_equality(struct isl_basic_set
*bset
)
1295 return isl_basic_map_alloc_equality(bset_to_bmap(bset
));
1298 int isl_basic_map_free_equality(struct isl_basic_map
*bmap
, unsigned n
)
1302 isl_assert(bmap
->ctx
, n
<= bmap
->n_eq
, return -1);
1307 int isl_basic_set_free_equality(struct isl_basic_set
*bset
, unsigned n
)
1309 return isl_basic_map_free_equality(bset_to_bmap(bset
), n
);
1312 int isl_basic_map_drop_equality(struct isl_basic_map
*bmap
, unsigned pos
)
1317 isl_assert(bmap
->ctx
, pos
< bmap
->n_eq
, return -1);
1319 if (pos
!= bmap
->n_eq
- 1) {
1321 bmap
->eq
[pos
] = bmap
->eq
[bmap
->n_eq
- 1];
1322 bmap
->eq
[bmap
->n_eq
- 1] = t
;
1328 int isl_basic_set_drop_equality(struct isl_basic_set
*bset
, unsigned pos
)
1330 return isl_basic_map_drop_equality(bset_to_bmap(bset
), pos
);
1333 /* Turn inequality "pos" of "bmap" into an equality.
1335 * In particular, we move the inequality in front of the equalities
1336 * and move the last inequality in the position of the moved inequality.
1337 * Note that isl_tab_make_equalities_explicit depends on this particular
1338 * change in the ordering of the constraints.
1340 void isl_basic_map_inequality_to_equality(
1341 struct isl_basic_map
*bmap
, unsigned pos
)
1345 t
= bmap
->ineq
[pos
];
1346 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1347 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1352 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1353 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1354 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1355 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1358 static int room_for_ineq(struct isl_basic_map
*bmap
, unsigned n
)
1360 return bmap
->n_ineq
+ n
<= bmap
->eq
- bmap
->ineq
;
1363 int isl_basic_map_alloc_inequality(struct isl_basic_map
*bmap
)
1365 struct isl_ctx
*ctx
;
1369 isl_assert(ctx
, room_for_ineq(bmap
, 1), return -1);
1370 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1371 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1372 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1373 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1374 isl_seq_clr(bmap
->ineq
[bmap
->n_ineq
] +
1375 1 + isl_basic_map_total_dim(bmap
),
1376 bmap
->extra
- bmap
->n_div
);
1377 return bmap
->n_ineq
++;
1380 int isl_basic_set_alloc_inequality(struct isl_basic_set
*bset
)
1382 return isl_basic_map_alloc_inequality(bset_to_bmap(bset
));
1385 int isl_basic_map_free_inequality(struct isl_basic_map
*bmap
, unsigned n
)
1389 isl_assert(bmap
->ctx
, n
<= bmap
->n_ineq
, return -1);
1394 int isl_basic_set_free_inequality(struct isl_basic_set
*bset
, unsigned n
)
1396 return isl_basic_map_free_inequality(bset_to_bmap(bset
), n
);
1399 int isl_basic_map_drop_inequality(struct isl_basic_map
*bmap
, unsigned pos
)
1404 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
1406 if (pos
!= bmap
->n_ineq
- 1) {
1407 t
= bmap
->ineq
[pos
];
1408 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1409 bmap
->ineq
[bmap
->n_ineq
- 1] = t
;
1410 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1416 int isl_basic_set_drop_inequality(struct isl_basic_set
*bset
, unsigned pos
)
1418 return isl_basic_map_drop_inequality(bset_to_bmap(bset
), pos
);
1421 __isl_give isl_basic_map
*isl_basic_map_add_eq(__isl_take isl_basic_map
*bmap
,
1426 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
1429 k
= isl_basic_map_alloc_equality(bmap
);
1432 isl_seq_cpy(bmap
->eq
[k
], eq
, 1 + isl_basic_map_total_dim(bmap
));
1435 isl_basic_map_free(bmap
);
1439 __isl_give isl_basic_set
*isl_basic_set_add_eq(__isl_take isl_basic_set
*bset
,
1442 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset
), eq
));
1445 __isl_give isl_basic_map
*isl_basic_map_add_ineq(__isl_take isl_basic_map
*bmap
,
1450 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
1453 k
= isl_basic_map_alloc_inequality(bmap
);
1456 isl_seq_cpy(bmap
->ineq
[k
], ineq
, 1 + isl_basic_map_total_dim(bmap
));
1459 isl_basic_map_free(bmap
);
1463 __isl_give isl_basic_set
*isl_basic_set_add_ineq(__isl_take isl_basic_set
*bset
,
1466 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset
), ineq
));
1469 int isl_basic_map_alloc_div(struct isl_basic_map
*bmap
)
1473 isl_assert(bmap
->ctx
, bmap
->n_div
< bmap
->extra
, return -1);
1474 isl_seq_clr(bmap
->div
[bmap
->n_div
] +
1475 1 + 1 + isl_basic_map_total_dim(bmap
),
1476 bmap
->extra
- bmap
->n_div
);
1477 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1478 return bmap
->n_div
++;
1481 int isl_basic_set_alloc_div(struct isl_basic_set
*bset
)
1483 return isl_basic_map_alloc_div(bset_to_bmap(bset
));
1486 /* Check that there are "n" dimensions of type "type" starting at "first"
1489 static isl_stat
isl_basic_map_check_range(__isl_keep isl_basic_map
*bmap
,
1490 enum isl_dim_type type
, unsigned first
, unsigned n
)
1495 return isl_stat_error
;
1496 dim
= isl_basic_map_dim(bmap
, type
);
1497 if (first
+ n
> dim
|| first
+ n
< first
)
1498 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
1499 "position or range out of bounds",
1500 return isl_stat_error
);
1504 /* Insert an extra integer division, prescribed by "div", to "bmap"
1505 * at (integer division) position "pos".
1507 * The integer division is first added at the end and then moved
1508 * into the right position.
1510 __isl_give isl_basic_map
*isl_basic_map_insert_div(
1511 __isl_take isl_basic_map
*bmap
, int pos
, __isl_keep isl_vec
*div
)
1515 bmap
= isl_basic_map_cow(bmap
);
1517 return isl_basic_map_free(bmap
);
1519 if (div
->size
!= 1 + 1 + isl_basic_map_dim(bmap
, isl_dim_all
))
1520 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
1521 "unexpected size", return isl_basic_map_free(bmap
));
1522 if (isl_basic_map_check_range(bmap
, isl_dim_div
, pos
, 0) < 0)
1523 return isl_basic_map_free(bmap
);
1525 bmap
= isl_basic_map_extend_space(bmap
,
1526 isl_basic_map_get_space(bmap
), 1, 0, 2);
1527 k
= isl_basic_map_alloc_div(bmap
);
1529 return isl_basic_map_free(bmap
);
1530 isl_seq_cpy(bmap
->div
[k
], div
->el
, div
->size
);
1531 isl_int_set_si(bmap
->div
[k
][div
->size
], 0);
1533 for (i
= k
; i
> pos
; --i
)
1534 isl_basic_map_swap_div(bmap
, i
, i
- 1);
1539 isl_stat
isl_basic_map_free_div(struct isl_basic_map
*bmap
, unsigned n
)
1542 return isl_stat_error
;
1543 isl_assert(bmap
->ctx
, n
<= bmap
->n_div
, return isl_stat_error
);
1548 isl_stat
isl_basic_set_free_div(struct isl_basic_set
*bset
, unsigned n
)
1550 return isl_basic_map_free_div(bset_to_bmap(bset
), n
);
1553 /* Copy constraint from src to dst, putting the vars of src at offset
1554 * dim_off in dst and the divs of src at offset div_off in dst.
1555 * If both sets are actually map, then dim_off applies to the input
1558 static void copy_constraint(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1559 struct isl_basic_map
*src_map
, isl_int
*src
,
1560 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1562 unsigned src_nparam
= isl_basic_map_n_param(src_map
);
1563 unsigned dst_nparam
= isl_basic_map_n_param(dst_map
);
1564 unsigned src_in
= isl_basic_map_n_in(src_map
);
1565 unsigned dst_in
= isl_basic_map_n_in(dst_map
);
1566 unsigned src_out
= isl_basic_map_n_out(src_map
);
1567 unsigned dst_out
= isl_basic_map_n_out(dst_map
);
1568 isl_int_set(dst
[0], src
[0]);
1569 isl_seq_cpy(dst
+1, src
+1, isl_min(dst_nparam
, src_nparam
));
1570 if (dst_nparam
> src_nparam
)
1571 isl_seq_clr(dst
+1+src_nparam
,
1572 dst_nparam
- src_nparam
);
1573 isl_seq_clr(dst
+1+dst_nparam
, in_off
);
1574 isl_seq_cpy(dst
+1+dst_nparam
+in_off
,
1576 isl_min(dst_in
-in_off
, src_in
));
1577 if (dst_in
-in_off
> src_in
)
1578 isl_seq_clr(dst
+1+dst_nparam
+in_off
+src_in
,
1579 dst_in
- in_off
- src_in
);
1580 isl_seq_clr(dst
+1+dst_nparam
+dst_in
, out_off
);
1581 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+out_off
,
1582 src
+1+src_nparam
+src_in
,
1583 isl_min(dst_out
-out_off
, src_out
));
1584 if (dst_out
-out_off
> src_out
)
1585 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+out_off
+src_out
,
1586 dst_out
- out_off
- src_out
);
1587 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
, div_off
);
1588 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+dst_out
+div_off
,
1589 src
+1+src_nparam
+src_in
+src_out
,
1590 isl_min(dst_map
->extra
-div_off
, src_map
->n_div
));
1591 if (dst_map
->n_div
-div_off
> src_map
->n_div
)
1592 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
+
1593 div_off
+src_map
->n_div
,
1594 dst_map
->n_div
- div_off
- src_map
->n_div
);
1597 static void copy_div(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1598 struct isl_basic_map
*src_map
, isl_int
*src
,
1599 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1601 isl_int_set(dst
[0], src
[0]);
1602 copy_constraint(dst_map
, dst
+1, src_map
, src
+1, in_off
, out_off
, div_off
);
1605 static struct isl_basic_map
*add_constraints(struct isl_basic_map
*bmap1
,
1606 struct isl_basic_map
*bmap2
, unsigned i_pos
, unsigned o_pos
)
1611 if (!bmap1
|| !bmap2
)
1614 div_off
= bmap1
->n_div
;
1616 for (i
= 0; i
< bmap2
->n_eq
; ++i
) {
1617 int i1
= isl_basic_map_alloc_equality(bmap1
);
1620 copy_constraint(bmap1
, bmap1
->eq
[i1
], bmap2
, bmap2
->eq
[i
],
1621 i_pos
, o_pos
, div_off
);
1624 for (i
= 0; i
< bmap2
->n_ineq
; ++i
) {
1625 int i1
= isl_basic_map_alloc_inequality(bmap1
);
1628 copy_constraint(bmap1
, bmap1
->ineq
[i1
], bmap2
, bmap2
->ineq
[i
],
1629 i_pos
, o_pos
, div_off
);
1632 for (i
= 0; i
< bmap2
->n_div
; ++i
) {
1633 int i1
= isl_basic_map_alloc_div(bmap1
);
1636 copy_div(bmap1
, bmap1
->div
[i1
], bmap2
, bmap2
->div
[i
],
1637 i_pos
, o_pos
, div_off
);
1640 isl_basic_map_free(bmap2
);
1645 isl_basic_map_free(bmap1
);
1646 isl_basic_map_free(bmap2
);
1650 struct isl_basic_set
*isl_basic_set_add_constraints(struct isl_basic_set
*bset1
,
1651 struct isl_basic_set
*bset2
, unsigned pos
)
1653 return bset_from_bmap(add_constraints(bset_to_bmap(bset1
),
1654 bset_to_bmap(bset2
), 0, pos
));
1657 struct isl_basic_map
*isl_basic_map_extend_space(struct isl_basic_map
*base
,
1658 __isl_take isl_space
*dim
, unsigned extra
,
1659 unsigned n_eq
, unsigned n_ineq
)
1661 struct isl_basic_map
*ext
;
1671 dims_ok
= isl_space_is_equal(base
->dim
, dim
) &&
1672 base
->extra
>= base
->n_div
+ extra
;
1674 if (dims_ok
&& room_for_con(base
, n_eq
+ n_ineq
) &&
1675 room_for_ineq(base
, n_ineq
)) {
1676 isl_space_free(dim
);
1680 isl_assert(base
->ctx
, base
->dim
->nparam
<= dim
->nparam
, goto error
);
1681 isl_assert(base
->ctx
, base
->dim
->n_in
<= dim
->n_in
, goto error
);
1682 isl_assert(base
->ctx
, base
->dim
->n_out
<= dim
->n_out
, goto error
);
1683 extra
+= base
->extra
;
1685 n_ineq
+= base
->n_ineq
;
1687 ext
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1693 ext
->sample
= isl_vec_copy(base
->sample
);
1694 flags
= base
->flags
;
1695 ext
= add_constraints(ext
, base
, 0, 0);
1698 ISL_F_CLR(ext
, ISL_BASIC_SET_FINAL
);
1704 isl_space_free(dim
);
1705 isl_basic_map_free(base
);
1709 struct isl_basic_set
*isl_basic_set_extend_space(struct isl_basic_set
*base
,
1710 __isl_take isl_space
*dim
, unsigned extra
,
1711 unsigned n_eq
, unsigned n_ineq
)
1713 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base
),
1714 dim
, extra
, n_eq
, n_ineq
));
1717 struct isl_basic_map
*isl_basic_map_extend_constraints(
1718 struct isl_basic_map
*base
, unsigned n_eq
, unsigned n_ineq
)
1722 return isl_basic_map_extend_space(base
, isl_space_copy(base
->dim
),
1726 struct isl_basic_map
*isl_basic_map_extend(struct isl_basic_map
*base
,
1727 unsigned nparam
, unsigned n_in
, unsigned n_out
, unsigned extra
,
1728 unsigned n_eq
, unsigned n_ineq
)
1730 struct isl_basic_map
*bmap
;
1735 dim
= isl_space_alloc(base
->ctx
, nparam
, n_in
, n_out
);
1739 bmap
= isl_basic_map_extend_space(base
, dim
, extra
, n_eq
, n_ineq
);
1742 isl_basic_map_free(base
);
1746 struct isl_basic_set
*isl_basic_set_extend(struct isl_basic_set
*base
,
1747 unsigned nparam
, unsigned dim
, unsigned extra
,
1748 unsigned n_eq
, unsigned n_ineq
)
1750 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base
),
1751 nparam
, 0, dim
, extra
, n_eq
, n_ineq
));
1754 struct isl_basic_set
*isl_basic_set_extend_constraints(
1755 struct isl_basic_set
*base
, unsigned n_eq
, unsigned n_ineq
)
1757 isl_basic_map
*bmap
= bset_to_bmap(base
);
1758 bmap
= isl_basic_map_extend_constraints(bmap
, n_eq
, n_ineq
);
1759 return bset_from_bmap(bmap
);
1762 struct isl_basic_set
*isl_basic_set_cow(struct isl_basic_set
*bset
)
1764 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset
)));
1767 struct isl_basic_map
*isl_basic_map_cow(struct isl_basic_map
*bmap
)
1772 if (bmap
->ref
> 1) {
1774 bmap
= isl_basic_map_dup(bmap
);
1777 ISL_F_CLR(bmap
, ISL_BASIC_SET_FINAL
);
1778 ISL_F_CLR(bmap
, ISL_BASIC_MAP_REDUCED_COEFFICIENTS
);
1783 /* Clear all cached information in "map", either because it is about
1784 * to be modified or because it is being freed.
1785 * Always return the same pointer that is passed in.
1786 * This is needed for the use in isl_map_free.
1788 static __isl_give isl_map
*clear_caches(__isl_take isl_map
*map
)
1790 isl_basic_map_free(map
->cached_simple_hull
[0]);
1791 isl_basic_map_free(map
->cached_simple_hull
[1]);
1792 map
->cached_simple_hull
[0] = NULL
;
1793 map
->cached_simple_hull
[1] = NULL
;
1797 struct isl_set
*isl_set_cow(struct isl_set
*set
)
1799 return isl_map_cow(set
);
1802 /* Return an isl_map that is equal to "map" and that has only
1803 * a single reference.
1805 * If the original input already has only one reference, then
1806 * simply return it, but clear all cached information, since
1807 * it may be rendered invalid by the operations that will be
1808 * performed on the result.
1810 * Otherwise, create a duplicate (without any cached information).
1812 struct isl_map
*isl_map_cow(struct isl_map
*map
)
1818 return clear_caches(map
);
1820 return isl_map_dup(map
);
1823 static void swap_vars(struct isl_blk blk
, isl_int
*a
,
1824 unsigned a_len
, unsigned b_len
)
1826 isl_seq_cpy(blk
.data
, a
+a_len
, b_len
);
1827 isl_seq_cpy(blk
.data
+b_len
, a
, a_len
);
1828 isl_seq_cpy(a
, blk
.data
, b_len
+a_len
);
1831 static __isl_give isl_basic_map
*isl_basic_map_swap_vars(
1832 __isl_take isl_basic_map
*bmap
, unsigned pos
, unsigned n1
, unsigned n2
)
1840 isl_assert(bmap
->ctx
,
1841 pos
+ n1
+ n2
<= 1 + isl_basic_map_total_dim(bmap
), goto error
);
1843 if (n1
== 0 || n2
== 0)
1846 bmap
= isl_basic_map_cow(bmap
);
1850 blk
= isl_blk_alloc(bmap
->ctx
, n1
+ n2
);
1851 if (isl_blk_is_error(blk
))
1854 for (i
= 0; i
< bmap
->n_eq
; ++i
)
1856 bmap
->eq
[i
] + pos
, n1
, n2
);
1858 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
1860 bmap
->ineq
[i
] + pos
, n1
, n2
);
1862 for (i
= 0; i
< bmap
->n_div
; ++i
)
1864 bmap
->div
[i
]+1 + pos
, n1
, n2
);
1866 isl_blk_free(bmap
->ctx
, blk
);
1868 ISL_F_CLR(bmap
, ISL_BASIC_SET_NORMALIZED
);
1869 bmap
= isl_basic_map_gauss(bmap
, NULL
);
1870 return isl_basic_map_finalize(bmap
);
1872 isl_basic_map_free(bmap
);
1876 struct isl_basic_map
*isl_basic_map_set_to_empty(struct isl_basic_map
*bmap
)
1882 total
= isl_basic_map_total_dim(bmap
);
1883 if (isl_basic_map_free_div(bmap
, bmap
->n_div
) < 0)
1884 return isl_basic_map_free(bmap
);
1885 isl_basic_map_free_inequality(bmap
, bmap
->n_ineq
);
1887 isl_basic_map_free_equality(bmap
, bmap
->n_eq
-1);
1889 i
= isl_basic_map_alloc_equality(bmap
);
1893 isl_int_set_si(bmap
->eq
[i
][0], 1);
1894 isl_seq_clr(bmap
->eq
[i
]+1, total
);
1895 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
1896 isl_vec_free(bmap
->sample
);
1897 bmap
->sample
= NULL
;
1898 return isl_basic_map_finalize(bmap
);
1900 isl_basic_map_free(bmap
);
1904 struct isl_basic_set
*isl_basic_set_set_to_empty(struct isl_basic_set
*bset
)
1906 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset
)));
1909 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
1912 static void swap_div(__isl_keep isl_basic_map
*bmap
, int a
, int b
)
1914 isl_int
*t
= bmap
->div
[a
];
1915 bmap
->div
[a
] = bmap
->div
[b
];
1919 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
1920 * div definitions accordingly.
1922 void isl_basic_map_swap_div(struct isl_basic_map
*bmap
, int a
, int b
)
1925 unsigned off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
1927 swap_div(bmap
, a
, b
);
1929 for (i
= 0; i
< bmap
->n_eq
; ++i
)
1930 isl_int_swap(bmap
->eq
[i
][1+off
+a
], bmap
->eq
[i
][1+off
+b
]);
1932 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
1933 isl_int_swap(bmap
->ineq
[i
][1+off
+a
], bmap
->ineq
[i
][1+off
+b
]);
1935 for (i
= 0; i
< bmap
->n_div
; ++i
)
1936 isl_int_swap(bmap
->div
[i
][1+1+off
+a
], bmap
->div
[i
][1+1+off
+b
]);
1937 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1940 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
1941 * div definitions accordingly.
1943 void isl_basic_set_swap_div(__isl_keep isl_basic_set
*bset
, int a
, int b
)
1945 isl_basic_map_swap_div(bset
, a
, b
);
1948 /* Eliminate the specified n dimensions starting at first from the
1949 * constraints, without removing the dimensions from the space.
1950 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1952 __isl_give isl_map
*isl_map_eliminate(__isl_take isl_map
*map
,
1953 enum isl_dim_type type
, unsigned first
, unsigned n
)
1962 if (first
+ n
> isl_map_dim(map
, type
) || first
+ n
< first
)
1963 isl_die(map
->ctx
, isl_error_invalid
,
1964 "index out of bounds", goto error
);
1966 map
= isl_map_cow(map
);
1970 for (i
= 0; i
< map
->n
; ++i
) {
1971 map
->p
[i
] = isl_basic_map_eliminate(map
->p
[i
], type
, first
, n
);
1981 /* Eliminate the specified n dimensions starting at first from the
1982 * constraints, without removing the dimensions from the space.
1983 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1985 __isl_give isl_set
*isl_set_eliminate(__isl_take isl_set
*set
,
1986 enum isl_dim_type type
, unsigned first
, unsigned n
)
1988 return set_from_map(isl_map_eliminate(set_to_map(set
), type
, first
, n
));
1991 /* Eliminate the specified n dimensions starting at first from the
1992 * constraints, without removing the dimensions from the space.
1993 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1995 __isl_give isl_set
*isl_set_eliminate_dims(__isl_take isl_set
*set
,
1996 unsigned first
, unsigned n
)
1998 return isl_set_eliminate(set
, isl_dim_set
, first
, n
);
2001 __isl_give isl_basic_map
*isl_basic_map_remove_divs(
2002 __isl_take isl_basic_map
*bmap
)
2006 bmap
= isl_basic_map_eliminate_vars(bmap
,
2007 isl_space_dim(bmap
->dim
, isl_dim_all
), bmap
->n_div
);
2011 return isl_basic_map_finalize(bmap
);
2014 __isl_give isl_basic_set
*isl_basic_set_remove_divs(
2015 __isl_take isl_basic_set
*bset
)
2017 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset
)));
2020 __isl_give isl_map
*isl_map_remove_divs(__isl_take isl_map
*map
)
2029 map
= isl_map_cow(map
);
2033 for (i
= 0; i
< map
->n
; ++i
) {
2034 map
->p
[i
] = isl_basic_map_remove_divs(map
->p
[i
]);
2044 __isl_give isl_set
*isl_set_remove_divs(__isl_take isl_set
*set
)
2046 return isl_map_remove_divs(set
);
2049 struct isl_basic_map
*isl_basic_map_remove_dims(struct isl_basic_map
*bmap
,
2050 enum isl_dim_type type
, unsigned first
, unsigned n
)
2052 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2053 return isl_basic_map_free(bmap
);
2054 if (n
== 0 && !isl_space_is_named_or_nested(bmap
->dim
, type
))
2056 bmap
= isl_basic_map_eliminate_vars(bmap
,
2057 isl_basic_map_offset(bmap
, type
) - 1 + first
, n
);
2060 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
) && type
== isl_dim_div
)
2062 bmap
= isl_basic_map_drop(bmap
, type
, first
, n
);
2066 /* Return true if the definition of the given div (recursively) involves
2067 * any of the given variables.
2069 static isl_bool
div_involves_vars(__isl_keep isl_basic_map
*bmap
, int div
,
2070 unsigned first
, unsigned n
)
2073 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
2075 if (isl_int_is_zero(bmap
->div
[div
][0]))
2076 return isl_bool_false
;
2077 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + first
, n
) >= 0)
2078 return isl_bool_true
;
2080 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2083 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
2085 involves
= div_involves_vars(bmap
, i
, first
, n
);
2086 if (involves
< 0 || involves
)
2090 return isl_bool_false
;
2093 /* Try and add a lower and/or upper bound on "div" to "bmap"
2094 * based on inequality "i".
2095 * "total" is the total number of variables (excluding the divs).
2096 * "v" is a temporary object that can be used during the calculations.
2097 * If "lb" is set, then a lower bound should be constructed.
2098 * If "ub" is set, then an upper bound should be constructed.
2100 * The calling function has already checked that the inequality does not
2101 * reference "div", but we still need to check that the inequality is
2102 * of the right form. We'll consider the case where we want to construct
2103 * a lower bound. The construction of upper bounds is similar.
2105 * Let "div" be of the form
2107 * q = floor((a + f(x))/d)
2109 * We essentially check if constraint "i" is of the form
2113 * so that we can use it to derive a lower bound on "div".
2114 * However, we allow a slightly more general form
2118 * with the condition that the coefficients of g(x) - f(x) are all
2120 * Rewriting this constraint as
2124 * adding a + f(x) to both sides and dividing by d, we obtain
2126 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2128 * Taking the floor on both sides, we obtain
2130 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2134 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2136 * In the case of an upper bound, we construct the constraint
2138 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2141 static __isl_give isl_basic_map
*insert_bounds_on_div_from_ineq(
2142 __isl_take isl_basic_map
*bmap
, int div
, int i
,
2143 unsigned total
, isl_int v
, int lb
, int ub
)
2147 for (j
= 0; (lb
|| ub
) && j
< total
+ bmap
->n_div
; ++j
) {
2149 isl_int_sub(v
, bmap
->ineq
[i
][1 + j
],
2150 bmap
->div
[div
][1 + 1 + j
]);
2151 lb
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
2154 isl_int_add(v
, bmap
->ineq
[i
][1 + j
],
2155 bmap
->div
[div
][1 + 1 + j
]);
2156 ub
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
2162 bmap
= isl_basic_map_cow(bmap
);
2163 bmap
= isl_basic_map_extend_constraints(bmap
, 0, lb
+ ub
);
2165 int k
= isl_basic_map_alloc_inequality(bmap
);
2168 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2169 isl_int_sub(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2170 bmap
->div
[div
][1 + j
]);
2171 isl_int_cdiv_q(bmap
->ineq
[k
][j
],
2172 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2174 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], 1);
2177 int k
= isl_basic_map_alloc_inequality(bmap
);
2180 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2181 isl_int_add(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2182 bmap
->div
[div
][1 + j
]);
2183 isl_int_fdiv_q(bmap
->ineq
[k
][j
],
2184 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2186 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], -1);
2189 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2192 isl_basic_map_free(bmap
);
2196 /* This function is called right before "div" is eliminated from "bmap"
2197 * using Fourier-Motzkin.
2198 * Look through the constraints of "bmap" for constraints on the argument
2199 * of the integer division and use them to construct constraints on the
2200 * integer division itself. These constraints can then be combined
2201 * during the Fourier-Motzkin elimination.
2202 * Note that it is only useful to introduce lower bounds on "div"
2203 * if "bmap" already contains upper bounds on "div" as the newly
2204 * introduce lower bounds can then be combined with the pre-existing
2205 * upper bounds. Similarly for upper bounds.
2206 * We therefore first check if "bmap" contains any lower and/or upper bounds
2209 * It is interesting to note that the introduction of these constraints
2210 * can indeed lead to more accurate results, even when compared to
2211 * deriving constraints on the argument of "div" from constraints on "div".
2212 * Consider, for example, the set
2214 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2216 * The second constraint can be rewritten as
2218 * 2 * [(-i-2j+3)/4] + k >= 0
2220 * from which we can derive
2222 * -i - 2j + 3 >= -2k
2228 * Combined with the first constraint, we obtain
2230 * -3 <= 3 + 2k or k >= -3
2232 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2233 * the first constraint, we obtain
2235 * [(i + 2j)/4] >= [-3/4] = -1
2237 * Combining this constraint with the second constraint, we obtain
2241 static __isl_give isl_basic_map
*insert_bounds_on_div(
2242 __isl_take isl_basic_map
*bmap
, int div
)
2245 int check_lb
, check_ub
;
2252 if (isl_int_is_zero(bmap
->div
[div
][0]))
2255 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
2259 for (i
= 0; (!check_lb
|| !check_ub
) && i
< bmap
->n_ineq
; ++i
) {
2260 int s
= isl_int_sgn(bmap
->ineq
[i
][1 + total
+ div
]);
2267 if (!check_lb
&& !check_ub
)
2272 for (i
= 0; bmap
&& i
< bmap
->n_ineq
; ++i
) {
2273 if (!isl_int_is_zero(bmap
->ineq
[i
][1 + total
+ div
]))
2276 bmap
= insert_bounds_on_div_from_ineq(bmap
, div
, i
, total
, v
,
2277 check_lb
, check_ub
);
2285 /* Remove all divs (recursively) involving any of the given dimensions
2286 * in their definitions.
2288 __isl_give isl_basic_map
*isl_basic_map_remove_divs_involving_dims(
2289 __isl_take isl_basic_map
*bmap
,
2290 enum isl_dim_type type
, unsigned first
, unsigned n
)
2294 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2295 return isl_basic_map_free(bmap
);
2296 first
+= isl_basic_map_offset(bmap
, type
);
2298 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2301 involves
= div_involves_vars(bmap
, i
, first
, n
);
2303 return isl_basic_map_free(bmap
);
2306 bmap
= insert_bounds_on_div(bmap
, i
);
2307 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
2316 __isl_give isl_basic_set
*isl_basic_set_remove_divs_involving_dims(
2317 __isl_take isl_basic_set
*bset
,
2318 enum isl_dim_type type
, unsigned first
, unsigned n
)
2320 return isl_basic_map_remove_divs_involving_dims(bset
, type
, first
, n
);
2323 __isl_give isl_map
*isl_map_remove_divs_involving_dims(__isl_take isl_map
*map
,
2324 enum isl_dim_type type
, unsigned first
, unsigned n
)
2333 map
= isl_map_cow(map
);
2337 for (i
= 0; i
< map
->n
; ++i
) {
2338 map
->p
[i
] = isl_basic_map_remove_divs_involving_dims(map
->p
[i
],
2349 __isl_give isl_set
*isl_set_remove_divs_involving_dims(__isl_take isl_set
*set
,
2350 enum isl_dim_type type
, unsigned first
, unsigned n
)
2352 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set
),
2356 /* Does the description of "bmap" depend on the specified dimensions?
2357 * We also check whether the dimensions appear in any of the div definitions.
2358 * In principle there is no need for this check. If the dimensions appear
2359 * in a div definition, they also appear in the defining constraints of that
2362 isl_bool
isl_basic_map_involves_dims(__isl_keep isl_basic_map
*bmap
,
2363 enum isl_dim_type type
, unsigned first
, unsigned n
)
2367 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2368 return isl_bool_error
;
2370 first
+= isl_basic_map_offset(bmap
, type
);
2371 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2372 if (isl_seq_first_non_zero(bmap
->eq
[i
] + first
, n
) >= 0)
2373 return isl_bool_true
;
2374 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2375 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + first
, n
) >= 0)
2376 return isl_bool_true
;
2377 for (i
= 0; i
< bmap
->n_div
; ++i
) {
2378 if (isl_int_is_zero(bmap
->div
[i
][0]))
2380 if (isl_seq_first_non_zero(bmap
->div
[i
] + 1 + first
, n
) >= 0)
2381 return isl_bool_true
;
2384 return isl_bool_false
;
2387 isl_bool
isl_map_involves_dims(__isl_keep isl_map
*map
,
2388 enum isl_dim_type type
, unsigned first
, unsigned n
)
2393 return isl_bool_error
;
2395 if (first
+ n
> isl_map_dim(map
, type
))
2396 isl_die(map
->ctx
, isl_error_invalid
,
2397 "index out of bounds", return isl_bool_error
);
2399 for (i
= 0; i
< map
->n
; ++i
) {
2400 isl_bool involves
= isl_basic_map_involves_dims(map
->p
[i
],
2402 if (involves
< 0 || involves
)
2406 return isl_bool_false
;
2409 isl_bool
isl_basic_set_involves_dims(__isl_keep isl_basic_set
*bset
,
2410 enum isl_dim_type type
, unsigned first
, unsigned n
)
2412 return isl_basic_map_involves_dims(bset
, type
, first
, n
);
2415 isl_bool
isl_set_involves_dims(__isl_keep isl_set
*set
,
2416 enum isl_dim_type type
, unsigned first
, unsigned n
)
2418 return isl_map_involves_dims(set
, type
, first
, n
);
2421 /* Drop all constraints in bmap that involve any of the dimensions
2422 * first to first+n-1.
2424 static __isl_give isl_basic_map
*isl_basic_map_drop_constraints_involving(
2425 __isl_take isl_basic_map
*bmap
, unsigned first
, unsigned n
)
2432 bmap
= isl_basic_map_cow(bmap
);
2437 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
2438 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + first
, n
) == -1)
2440 isl_basic_map_drop_equality(bmap
, i
);
2443 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
2444 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + first
, n
) == -1)
2446 isl_basic_map_drop_inequality(bmap
, i
);
2449 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
2453 /* Drop all constraints in bset that involve any of the dimensions
2454 * first to first+n-1.
2456 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_involving(
2457 __isl_take isl_basic_set
*bset
, unsigned first
, unsigned n
)
2459 return isl_basic_map_drop_constraints_involving(bset
, first
, n
);
2462 /* Drop all constraints in bmap that do not involve any of the dimensions
2463 * first to first + n - 1 of the given type.
2465 __isl_give isl_basic_map
*isl_basic_map_drop_constraints_not_involving_dims(
2466 __isl_take isl_basic_map
*bmap
,
2467 enum isl_dim_type type
, unsigned first
, unsigned n
)
2472 isl_space
*space
= isl_basic_map_get_space(bmap
);
2473 isl_basic_map_free(bmap
);
2474 return isl_basic_map_universe(space
);
2476 bmap
= isl_basic_map_cow(bmap
);
2480 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2481 return isl_basic_map_free(bmap
);
2483 first
+= isl_basic_map_offset(bmap
, type
) - 1;
2485 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
2486 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + first
, n
) != -1)
2488 isl_basic_map_drop_equality(bmap
, i
);
2491 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
2492 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + first
, n
) != -1)
2494 isl_basic_map_drop_inequality(bmap
, i
);
2497 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
2501 /* Drop all constraints in bset that do not involve any of the dimensions
2502 * first to first + n - 1 of the given type.
2504 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_not_involving_dims(
2505 __isl_take isl_basic_set
*bset
,
2506 enum isl_dim_type type
, unsigned first
, unsigned n
)
2508 return isl_basic_map_drop_constraints_not_involving_dims(bset
,
2512 /* Drop all constraints in bmap that involve any of the dimensions
2513 * first to first + n - 1 of the given type.
2515 __isl_give isl_basic_map
*isl_basic_map_drop_constraints_involving_dims(
2516 __isl_take isl_basic_map
*bmap
,
2517 enum isl_dim_type type
, unsigned first
, unsigned n
)
2524 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2525 return isl_basic_map_free(bmap
);
2527 bmap
= isl_basic_map_remove_divs_involving_dims(bmap
, type
, first
, n
);
2528 first
+= isl_basic_map_offset(bmap
, type
) - 1;
2529 return isl_basic_map_drop_constraints_involving(bmap
, first
, n
);
2532 /* Drop all constraints in bset that involve any of the dimensions
2533 * first to first + n - 1 of the given type.
2535 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_involving_dims(
2536 __isl_take isl_basic_set
*bset
,
2537 enum isl_dim_type type
, unsigned first
, unsigned n
)
2539 return isl_basic_map_drop_constraints_involving_dims(bset
,
2543 /* Drop constraints from "map" by applying "drop" to each basic map.
2545 static __isl_give isl_map
*drop_constraints(__isl_take isl_map
*map
,
2546 enum isl_dim_type type
, unsigned first
, unsigned n
,
2547 __isl_give isl_basic_map
*(*drop
)(__isl_take isl_basic_map
*bmap
,
2548 enum isl_dim_type type
, unsigned first
, unsigned n
))
2556 dim
= isl_map_dim(map
, type
);
2557 if (first
+ n
> dim
|| first
+ n
< first
)
2558 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
2559 "index out of bounds", return isl_map_free(map
));
2561 map
= isl_map_cow(map
);
2565 for (i
= 0; i
< map
->n
; ++i
) {
2566 map
->p
[i
] = drop(map
->p
[i
], type
, first
, n
);
2568 return isl_map_free(map
);
2572 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
2577 /* Drop all constraints in map that involve any of the dimensions
2578 * first to first + n - 1 of the given type.
2580 __isl_give isl_map
*isl_map_drop_constraints_involving_dims(
2581 __isl_take isl_map
*map
,
2582 enum isl_dim_type type
, unsigned first
, unsigned n
)
2586 return drop_constraints(map
, type
, first
, n
,
2587 &isl_basic_map_drop_constraints_involving_dims
);
2590 /* Drop all constraints in "map" that do not involve any of the dimensions
2591 * first to first + n - 1 of the given type.
2593 __isl_give isl_map
*isl_map_drop_constraints_not_involving_dims(
2594 __isl_take isl_map
*map
,
2595 enum isl_dim_type type
, unsigned first
, unsigned n
)
2598 isl_space
*space
= isl_map_get_space(map
);
2600 return isl_map_universe(space
);
2602 return drop_constraints(map
, type
, first
, n
,
2603 &isl_basic_map_drop_constraints_not_involving_dims
);
2606 /* Drop all constraints in set that involve any of the dimensions
2607 * first to first + n - 1 of the given type.
2609 __isl_give isl_set
*isl_set_drop_constraints_involving_dims(
2610 __isl_take isl_set
*set
,
2611 enum isl_dim_type type
, unsigned first
, unsigned n
)
2613 return isl_map_drop_constraints_involving_dims(set
, type
, first
, n
);
2616 /* Drop all constraints in "set" that do not involve any of the dimensions
2617 * first to first + n - 1 of the given type.
2619 __isl_give isl_set
*isl_set_drop_constraints_not_involving_dims(
2620 __isl_take isl_set
*set
,
2621 enum isl_dim_type type
, unsigned first
, unsigned n
)
2623 return isl_map_drop_constraints_not_involving_dims(set
, type
, first
, n
);
2626 /* Does local variable "div" of "bmap" have a complete explicit representation?
2627 * Having a complete explicit representation requires not only
2628 * an explicit representation, but also that all local variables
2629 * that appear in this explicit representation in turn have
2630 * a complete explicit representation.
2632 isl_bool
isl_basic_map_div_is_known(__isl_keep isl_basic_map
*bmap
, int div
)
2635 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
2638 marked
= isl_basic_map_div_is_marked_unknown(bmap
, div
);
2639 if (marked
< 0 || marked
)
2640 return isl_bool_not(marked
);
2642 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2645 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
2647 known
= isl_basic_map_div_is_known(bmap
, i
);
2648 if (known
< 0 || !known
)
2652 return isl_bool_true
;
2655 /* Does local variable "div" of "bset" have a complete explicit representation?
2657 isl_bool
isl_basic_set_div_is_known(__isl_keep isl_basic_set
*bset
, int div
)
2659 return isl_basic_map_div_is_known(bset
, div
);
2662 /* Remove all divs that are unknown or defined in terms of unknown divs.
2664 __isl_give isl_basic_map
*isl_basic_map_remove_unknown_divs(
2665 __isl_take isl_basic_map
*bmap
)
2672 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2673 if (isl_basic_map_div_is_known(bmap
, i
))
2675 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
2684 /* Remove all divs that are unknown or defined in terms of unknown divs.
2686 __isl_give isl_basic_set
*isl_basic_set_remove_unknown_divs(
2687 __isl_take isl_basic_set
*bset
)
2689 return isl_basic_map_remove_unknown_divs(bset
);
2692 __isl_give isl_map
*isl_map_remove_unknown_divs(__isl_take isl_map
*map
)
2701 map
= isl_map_cow(map
);
2705 for (i
= 0; i
< map
->n
; ++i
) {
2706 map
->p
[i
] = isl_basic_map_remove_unknown_divs(map
->p
[i
]);
2716 __isl_give isl_set
*isl_set_remove_unknown_divs(__isl_take isl_set
*set
)
2718 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set
)));
2721 __isl_give isl_basic_set
*isl_basic_set_remove_dims(
2722 __isl_take isl_basic_set
*bset
,
2723 enum isl_dim_type type
, unsigned first
, unsigned n
)
2725 isl_basic_map
*bmap
= bset_to_bmap(bset
);
2726 bmap
= isl_basic_map_remove_dims(bmap
, type
, first
, n
);
2727 return bset_from_bmap(bmap
);
2730 struct isl_map
*isl_map_remove_dims(struct isl_map
*map
,
2731 enum isl_dim_type type
, unsigned first
, unsigned n
)
2738 map
= isl_map_cow(map
);
2741 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
2743 for (i
= 0; i
< map
->n
; ++i
) {
2744 map
->p
[i
] = isl_basic_map_eliminate_vars(map
->p
[i
],
2745 isl_basic_map_offset(map
->p
[i
], type
) - 1 + first
, n
);
2749 map
= isl_map_drop(map
, type
, first
, n
);
2756 __isl_give isl_set
*isl_set_remove_dims(__isl_take isl_set
*bset
,
2757 enum isl_dim_type type
, unsigned first
, unsigned n
)
2759 return set_from_map(isl_map_remove_dims(set_to_map(bset
),
2763 /* Project out n inputs starting at first using Fourier-Motzkin */
2764 struct isl_map
*isl_map_remove_inputs(struct isl_map
*map
,
2765 unsigned first
, unsigned n
)
2767 return isl_map_remove_dims(map
, isl_dim_in
, first
, n
);
2770 static void dump_term(struct isl_basic_map
*bmap
,
2771 isl_int c
, int pos
, FILE *out
)
2774 unsigned in
= isl_basic_map_n_in(bmap
);
2775 unsigned dim
= in
+ isl_basic_map_n_out(bmap
);
2776 unsigned nparam
= isl_basic_map_n_param(bmap
);
2778 isl_int_print(out
, c
, 0);
2780 if (!isl_int_is_one(c
))
2781 isl_int_print(out
, c
, 0);
2782 if (pos
< 1 + nparam
) {
2783 name
= isl_space_get_dim_name(bmap
->dim
,
2784 isl_dim_param
, pos
- 1);
2786 fprintf(out
, "%s", name
);
2788 fprintf(out
, "p%d", pos
- 1);
2789 } else if (pos
< 1 + nparam
+ in
)
2790 fprintf(out
, "i%d", pos
- 1 - nparam
);
2791 else if (pos
< 1 + nparam
+ dim
)
2792 fprintf(out
, "o%d", pos
- 1 - nparam
- in
);
2794 fprintf(out
, "e%d", pos
- 1 - nparam
- dim
);
2798 static void dump_constraint_sign(struct isl_basic_map
*bmap
, isl_int
*c
,
2799 int sign
, FILE *out
)
2803 unsigned len
= 1 + isl_basic_map_total_dim(bmap
);
2807 for (i
= 0, first
= 1; i
< len
; ++i
) {
2808 if (isl_int_sgn(c
[i
]) * sign
<= 0)
2811 fprintf(out
, " + ");
2813 isl_int_abs(v
, c
[i
]);
2814 dump_term(bmap
, v
, i
, out
);
2821 static void dump_constraint(struct isl_basic_map
*bmap
, isl_int
*c
,
2822 const char *op
, FILE *out
, int indent
)
2826 fprintf(out
, "%*s", indent
, "");
2828 dump_constraint_sign(bmap
, c
, 1, out
);
2829 fprintf(out
, " %s ", op
);
2830 dump_constraint_sign(bmap
, c
, -1, out
);
2834 for (i
= bmap
->n_div
; i
< bmap
->extra
; ++i
) {
2835 if (isl_int_is_zero(c
[1+isl_space_dim(bmap
->dim
, isl_dim_all
)+i
]))
2837 fprintf(out
, "%*s", indent
, "");
2838 fprintf(out
, "ERROR: unused div coefficient not zero\n");
2843 static void dump_constraints(struct isl_basic_map
*bmap
,
2844 isl_int
**c
, unsigned n
,
2845 const char *op
, FILE *out
, int indent
)
2849 for (i
= 0; i
< n
; ++i
)
2850 dump_constraint(bmap
, c
[i
], op
, out
, indent
);
2853 static void dump_affine(struct isl_basic_map
*bmap
, isl_int
*exp
, FILE *out
)
2857 unsigned total
= isl_basic_map_total_dim(bmap
);
2859 for (j
= 0; j
< 1 + total
; ++j
) {
2860 if (isl_int_is_zero(exp
[j
]))
2862 if (!first
&& isl_int_is_pos(exp
[j
]))
2864 dump_term(bmap
, exp
[j
], j
, out
);
2869 static void dump(struct isl_basic_map
*bmap
, FILE *out
, int indent
)
2873 dump_constraints(bmap
, bmap
->eq
, bmap
->n_eq
, "=", out
, indent
);
2874 dump_constraints(bmap
, bmap
->ineq
, bmap
->n_ineq
, ">=", out
, indent
);
2876 for (i
= 0; i
< bmap
->n_div
; ++i
) {
2877 fprintf(out
, "%*s", indent
, "");
2878 fprintf(out
, "e%d = [(", i
);
2879 dump_affine(bmap
, bmap
->div
[i
]+1, out
);
2881 isl_int_print(out
, bmap
->div
[i
][0], 0);
2882 fprintf(out
, "]\n");
2886 void isl_basic_set_print_internal(struct isl_basic_set
*bset
,
2887 FILE *out
, int indent
)
2890 fprintf(out
, "null basic set\n");
2894 fprintf(out
, "%*s", indent
, "");
2895 fprintf(out
, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
2896 bset
->ref
, bset
->dim
->nparam
, bset
->dim
->n_out
,
2897 bset
->extra
, bset
->flags
);
2898 dump(bset_to_bmap(bset
), out
, indent
);
2901 void isl_basic_map_print_internal(struct isl_basic_map
*bmap
,
2902 FILE *out
, int indent
)
2905 fprintf(out
, "null basic map\n");
2909 fprintf(out
, "%*s", indent
, "");
2910 fprintf(out
, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
2911 "flags: %x, n_name: %d\n",
2913 bmap
->dim
->nparam
, bmap
->dim
->n_in
, bmap
->dim
->n_out
,
2914 bmap
->extra
, bmap
->flags
, bmap
->dim
->n_id
);
2915 dump(bmap
, out
, indent
);
2918 int isl_inequality_negate(struct isl_basic_map
*bmap
, unsigned pos
)
2923 total
= isl_basic_map_total_dim(bmap
);
2924 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
2925 isl_seq_neg(bmap
->ineq
[pos
], bmap
->ineq
[pos
], 1 + total
);
2926 isl_int_sub_ui(bmap
->ineq
[pos
][0], bmap
->ineq
[pos
][0], 1);
2927 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2931 __isl_give isl_set
*isl_set_alloc_space(__isl_take isl_space
*space
, int n
,
2936 if (isl_space_dim(space
, isl_dim_in
) != 0)
2937 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
2938 "set cannot have input dimensions", goto error
);
2939 return isl_map_alloc_space(space
, n
, flags
);
2941 isl_space_free(space
);
2945 struct isl_set
*isl_set_alloc(struct isl_ctx
*ctx
,
2946 unsigned nparam
, unsigned dim
, int n
, unsigned flags
)
2948 struct isl_set
*set
;
2951 dims
= isl_space_alloc(ctx
, nparam
, 0, dim
);
2955 set
= isl_set_alloc_space(dims
, n
, flags
);
2959 /* Make sure "map" has room for at least "n" more basic maps.
2961 struct isl_map
*isl_map_grow(struct isl_map
*map
, int n
)
2964 struct isl_map
*grown
= NULL
;
2968 isl_assert(map
->ctx
, n
>= 0, goto error
);
2969 if (map
->n
+ n
<= map
->size
)
2971 grown
= isl_map_alloc_space(isl_map_get_space(map
), map
->n
+ n
, map
->flags
);
2974 for (i
= 0; i
< map
->n
; ++i
) {
2975 grown
->p
[i
] = isl_basic_map_copy(map
->p
[i
]);
2983 isl_map_free(grown
);
2988 /* Make sure "set" has room for at least "n" more basic sets.
2990 struct isl_set
*isl_set_grow(struct isl_set
*set
, int n
)
2992 return set_from_map(isl_map_grow(set_to_map(set
), n
));
2995 struct isl_set
*isl_set_dup(struct isl_set
*set
)
2998 struct isl_set
*dup
;
3003 dup
= isl_set_alloc_space(isl_space_copy(set
->dim
), set
->n
, set
->flags
);
3006 for (i
= 0; i
< set
->n
; ++i
)
3007 dup
= isl_set_add_basic_set(dup
, isl_basic_set_copy(set
->p
[i
]));
3011 struct isl_set
*isl_set_from_basic_set(struct isl_basic_set
*bset
)
3013 return isl_map_from_basic_map(bset
);
3016 struct isl_map
*isl_map_from_basic_map(struct isl_basic_map
*bmap
)
3018 struct isl_map
*map
;
3023 map
= isl_map_alloc_space(isl_space_copy(bmap
->dim
), 1, ISL_MAP_DISJOINT
);
3024 return isl_map_add_basic_map(map
, bmap
);
3027 __isl_give isl_set
*isl_set_add_basic_set(__isl_take isl_set
*set
,
3028 __isl_take isl_basic_set
*bset
)
3030 return set_from_map(isl_map_add_basic_map(set_to_map(set
),
3031 bset_to_bmap(bset
)));
3034 __isl_null isl_set
*isl_set_free(__isl_take isl_set
*set
)
3036 return isl_map_free(set
);
3039 void isl_set_print_internal(struct isl_set
*set
, FILE *out
, int indent
)
3044 fprintf(out
, "null set\n");
3048 fprintf(out
, "%*s", indent
, "");
3049 fprintf(out
, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3050 set
->ref
, set
->n
, set
->dim
->nparam
, set
->dim
->n_out
,
3052 for (i
= 0; i
< set
->n
; ++i
) {
3053 fprintf(out
, "%*s", indent
, "");
3054 fprintf(out
, "basic set %d:\n", i
);
3055 isl_basic_set_print_internal(set
->p
[i
], out
, indent
+4);
3059 void isl_map_print_internal(struct isl_map
*map
, FILE *out
, int indent
)
3064 fprintf(out
, "null map\n");
3068 fprintf(out
, "%*s", indent
, "");
3069 fprintf(out
, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3070 "flags: %x, n_name: %d\n",
3071 map
->ref
, map
->n
, map
->dim
->nparam
, map
->dim
->n_in
,
3072 map
->dim
->n_out
, map
->flags
, map
->dim
->n_id
);
3073 for (i
= 0; i
< map
->n
; ++i
) {
3074 fprintf(out
, "%*s", indent
, "");
3075 fprintf(out
, "basic map %d:\n", i
);
3076 isl_basic_map_print_internal(map
->p
[i
], out
, indent
+4);
3080 struct isl_basic_map
*isl_basic_map_intersect_domain(
3081 struct isl_basic_map
*bmap
, struct isl_basic_set
*bset
)
3083 struct isl_basic_map
*bmap_domain
;
3088 isl_assert(bset
->ctx
, isl_space_match(bmap
->dim
, isl_dim_param
,
3089 bset
->dim
, isl_dim_param
), goto error
);
3091 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0)
3092 isl_assert(bset
->ctx
,
3093 isl_basic_map_compatible_domain(bmap
, bset
), goto error
);
3095 bmap
= isl_basic_map_cow(bmap
);
3098 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
3099 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
3100 bmap_domain
= isl_basic_map_from_domain(bset
);
3101 bmap
= add_constraints(bmap
, bmap_domain
, 0, 0);
3103 bmap
= isl_basic_map_simplify(bmap
);
3104 return isl_basic_map_finalize(bmap
);
3106 isl_basic_map_free(bmap
);
3107 isl_basic_set_free(bset
);
3111 /* Check that the space of "bset" is the same as that of the range of "bmap".
3113 static isl_stat
isl_basic_map_check_compatible_range(
3114 __isl_keep isl_basic_map
*bmap
, __isl_keep isl_basic_set
*bset
)
3118 ok
= isl_basic_map_compatible_range(bmap
, bset
);
3120 return isl_stat_error
;
3122 isl_die(isl_basic_set_get_ctx(bset
), isl_error_invalid
,
3123 "incompatible spaces", return isl_stat_error
);
3128 struct isl_basic_map
*isl_basic_map_intersect_range(
3129 struct isl_basic_map
*bmap
, struct isl_basic_set
*bset
)
3131 struct isl_basic_map
*bmap_range
;
3136 isl_assert(bset
->ctx
, isl_space_match(bmap
->dim
, isl_dim_param
,
3137 bset
->dim
, isl_dim_param
), goto error
);
3139 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0 &&
3140 isl_basic_map_check_compatible_range(bmap
, bset
) < 0)
3143 if (isl_basic_set_plain_is_universe(bset
)) {
3144 isl_basic_set_free(bset
);
3148 bmap
= isl_basic_map_cow(bmap
);
3151 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
3152 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
3153 bmap_range
= bset_to_bmap(bset
);
3154 bmap
= add_constraints(bmap
, bmap_range
, 0, 0);
3156 bmap
= isl_basic_map_simplify(bmap
);
3157 return isl_basic_map_finalize(bmap
);
3159 isl_basic_map_free(bmap
);
3160 isl_basic_set_free(bset
);
3164 isl_bool
isl_basic_map_contains(__isl_keep isl_basic_map
*bmap
,
3165 __isl_keep isl_vec
*vec
)
3172 return isl_bool_error
;
3174 total
= 1 + isl_basic_map_total_dim(bmap
);
3175 if (total
!= vec
->size
)
3176 return isl_bool_false
;
3180 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
3181 isl_seq_inner_product(vec
->el
, bmap
->eq
[i
], total
, &s
);
3182 if (!isl_int_is_zero(s
)) {
3184 return isl_bool_false
;
3188 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
3189 isl_seq_inner_product(vec
->el
, bmap
->ineq
[i
], total
, &s
);
3190 if (isl_int_is_neg(s
)) {
3192 return isl_bool_false
;
3198 return isl_bool_true
;
3201 isl_bool
isl_basic_set_contains(__isl_keep isl_basic_set
*bset
,
3202 __isl_keep isl_vec
*vec
)
3204 return isl_basic_map_contains(bset_to_bmap(bset
), vec
);
3207 struct isl_basic_map
*isl_basic_map_intersect(
3208 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
3210 struct isl_vec
*sample
= NULL
;
3212 if (!bmap1
|| !bmap2
)
3215 isl_assert(bmap1
->ctx
, isl_space_match(bmap1
->dim
, isl_dim_param
,
3216 bmap2
->dim
, isl_dim_param
), goto error
);
3217 if (isl_space_dim(bmap1
->dim
, isl_dim_all
) ==
3218 isl_space_dim(bmap1
->dim
, isl_dim_param
) &&
3219 isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
3220 isl_space_dim(bmap2
->dim
, isl_dim_param
))
3221 return isl_basic_map_intersect(bmap2
, bmap1
);
3223 if (isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
3224 isl_space_dim(bmap2
->dim
, isl_dim_param
))
3225 isl_assert(bmap1
->ctx
,
3226 isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
3228 if (isl_basic_map_plain_is_empty(bmap1
)) {
3229 isl_basic_map_free(bmap2
);
3232 if (isl_basic_map_plain_is_empty(bmap2
)) {
3233 isl_basic_map_free(bmap1
);
3237 if (bmap1
->sample
&&
3238 isl_basic_map_contains(bmap1
, bmap1
->sample
) > 0 &&
3239 isl_basic_map_contains(bmap2
, bmap1
->sample
) > 0)
3240 sample
= isl_vec_copy(bmap1
->sample
);
3241 else if (bmap2
->sample
&&
3242 isl_basic_map_contains(bmap1
, bmap2
->sample
) > 0 &&
3243 isl_basic_map_contains(bmap2
, bmap2
->sample
) > 0)
3244 sample
= isl_vec_copy(bmap2
->sample
);
3246 bmap1
= isl_basic_map_cow(bmap1
);
3249 bmap1
= isl_basic_map_extend_space(bmap1
, isl_space_copy(bmap1
->dim
),
3250 bmap2
->n_div
, bmap2
->n_eq
, bmap2
->n_ineq
);
3251 bmap1
= add_constraints(bmap1
, bmap2
, 0, 0);
3254 isl_vec_free(sample
);
3256 isl_vec_free(bmap1
->sample
);
3257 bmap1
->sample
= sample
;
3260 bmap1
= isl_basic_map_simplify(bmap1
);
3261 return isl_basic_map_finalize(bmap1
);
3264 isl_vec_free(sample
);
3265 isl_basic_map_free(bmap1
);
3266 isl_basic_map_free(bmap2
);
3270 struct isl_basic_set
*isl_basic_set_intersect(
3271 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
3273 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1
),
3274 bset_to_bmap(bset2
)));
3277 __isl_give isl_basic_set
*isl_basic_set_intersect_params(
3278 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
3280 return isl_basic_set_intersect(bset1
, bset2
);
3283 /* Special case of isl_map_intersect, where both map1 and map2
3284 * are convex, without any divs and such that either map1 or map2
3285 * contains a single constraint. This constraint is then simply
3286 * added to the other map.
3288 static __isl_give isl_map
*map_intersect_add_constraint(
3289 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
)
3291 isl_assert(map1
->ctx
, map1
->n
== 1, goto error
);
3292 isl_assert(map2
->ctx
, map1
->n
== 1, goto error
);
3293 isl_assert(map1
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
3294 isl_assert(map2
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
3296 if (map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
!= 1)
3297 return isl_map_intersect(map2
, map1
);
3299 isl_assert(map2
->ctx
,
3300 map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
== 1, goto error
);
3302 map1
= isl_map_cow(map1
);
3305 if (isl_map_plain_is_empty(map1
)) {
3309 map1
->p
[0] = isl_basic_map_cow(map1
->p
[0]);
3310 if (map2
->p
[0]->n_eq
== 1)
3311 map1
->p
[0] = isl_basic_map_add_eq(map1
->p
[0], map2
->p
[0]->eq
[0]);
3313 map1
->p
[0] = isl_basic_map_add_ineq(map1
->p
[0],
3314 map2
->p
[0]->ineq
[0]);
3316 map1
->p
[0] = isl_basic_map_simplify(map1
->p
[0]);
3317 map1
->p
[0] = isl_basic_map_finalize(map1
->p
[0]);
3321 if (isl_basic_map_plain_is_empty(map1
->p
[0])) {
3322 isl_basic_map_free(map1
->p
[0]);
3335 /* map2 may be either a parameter domain or a map living in the same
3338 static __isl_give isl_map
*map_intersect_internal(__isl_take isl_map
*map1
,
3339 __isl_take isl_map
*map2
)
3348 if ((isl_map_plain_is_empty(map1
) ||
3349 isl_map_plain_is_universe(map2
)) &&
3350 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
3354 if ((isl_map_plain_is_empty(map2
) ||
3355 isl_map_plain_is_universe(map1
)) &&
3356 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
3361 if (map1
->n
== 1 && map2
->n
== 1 &&
3362 map1
->p
[0]->n_div
== 0 && map2
->p
[0]->n_div
== 0 &&
3363 isl_space_is_equal(map1
->dim
, map2
->dim
) &&
3364 (map1
->p
[0]->n_eq
+ map1
->p
[0]->n_ineq
== 1 ||
3365 map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
== 1))
3366 return map_intersect_add_constraint(map1
, map2
);
3368 if (isl_space_dim(map2
->dim
, isl_dim_all
) !=
3369 isl_space_dim(map2
->dim
, isl_dim_param
))
3370 isl_assert(map1
->ctx
,
3371 isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
3373 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
3374 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
3375 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
3377 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
3378 map1
->n
* map2
->n
, flags
);
3381 for (i
= 0; i
< map1
->n
; ++i
)
3382 for (j
= 0; j
< map2
->n
; ++j
) {
3383 struct isl_basic_map
*part
;
3384 part
= isl_basic_map_intersect(
3385 isl_basic_map_copy(map1
->p
[i
]),
3386 isl_basic_map_copy(map2
->p
[j
]));
3387 if (isl_basic_map_is_empty(part
) < 0)
3388 part
= isl_basic_map_free(part
);
3389 result
= isl_map_add_basic_map(result
, part
);
3402 static __isl_give isl_map
*map_intersect(__isl_take isl_map
*map1
,
3403 __isl_take isl_map
*map2
)
3407 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
3408 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
3409 "spaces don't match", goto error
);
3410 return map_intersect_internal(map1
, map2
);
3417 __isl_give isl_map
*isl_map_intersect(__isl_take isl_map
*map1
,
3418 __isl_take isl_map
*map2
)
3420 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect
);
3423 struct isl_set
*isl_set_intersect(struct isl_set
*set1
, struct isl_set
*set2
)
3425 return set_from_map(isl_map_intersect(set_to_map(set1
),
3429 /* map_intersect_internal accepts intersections
3430 * with parameter domains, so we can just call that function.
3432 static __isl_give isl_map
*map_intersect_params(__isl_take isl_map
*map
,
3433 __isl_take isl_set
*params
)
3435 return map_intersect_internal(map
, params
);
3438 __isl_give isl_map
*isl_map_intersect_params(__isl_take isl_map
*map1
,
3439 __isl_take isl_map
*map2
)
3441 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect_params
);
3444 __isl_give isl_set
*isl_set_intersect_params(__isl_take isl_set
*set
,
3445 __isl_take isl_set
*params
)
3447 return isl_map_intersect_params(set
, params
);
3450 struct isl_basic_map
*isl_basic_map_reverse(struct isl_basic_map
*bmap
)
3453 unsigned pos
, n1
, n2
;
3457 bmap
= isl_basic_map_cow(bmap
);
3460 space
= isl_space_reverse(isl_space_copy(bmap
->dim
));
3461 pos
= isl_basic_map_offset(bmap
, isl_dim_in
);
3462 n1
= isl_basic_map_dim(bmap
, isl_dim_in
);
3463 n2
= isl_basic_map_dim(bmap
, isl_dim_out
);
3464 bmap
= isl_basic_map_swap_vars(bmap
, pos
, n1
, n2
);
3465 return isl_basic_map_reset_space(bmap
, space
);
3468 static __isl_give isl_basic_map
*basic_map_space_reset(
3469 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
)
3475 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
3478 space
= isl_basic_map_get_space(bmap
);
3479 space
= isl_space_reset(space
, type
);
3480 bmap
= isl_basic_map_reset_space(bmap
, space
);
3484 __isl_give isl_basic_map
*isl_basic_map_insert_dims(
3485 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
3486 unsigned pos
, unsigned n
)
3490 struct isl_basic_map
*res
;
3491 struct isl_dim_map
*dim_map
;
3492 unsigned total
, off
;
3493 enum isl_dim_type t
;
3496 return basic_map_space_reset(bmap
, type
);
3501 res_dim
= isl_space_insert_dims(isl_basic_map_get_space(bmap
), type
, pos
, n
);
3503 total
= isl_basic_map_total_dim(bmap
) + n
;
3504 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3506 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3508 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3510 unsigned size
= isl_basic_map_dim(bmap
, t
);
3511 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3513 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3514 pos
, size
- pos
, off
+ pos
+ n
);
3516 off
+= isl_space_dim(res_dim
, t
);
3518 isl_dim_map_div(dim_map
, bmap
, off
);
3520 res
= isl_basic_map_alloc_space(res_dim
,
3521 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3522 rational
= isl_basic_map_is_rational(bmap
);
3524 res
= isl_basic_map_free(res
);
3526 res
= isl_basic_map_set_rational(res
);
3527 if (isl_basic_map_plain_is_empty(bmap
)) {
3528 isl_basic_map_free(bmap
);
3530 return isl_basic_map_set_to_empty(res
);
3532 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3533 return isl_basic_map_finalize(res
);
3536 __isl_give isl_basic_set
*isl_basic_set_insert_dims(
3537 __isl_take isl_basic_set
*bset
,
3538 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3540 return isl_basic_map_insert_dims(bset
, type
, pos
, n
);
3543 __isl_give isl_basic_map
*isl_basic_map_add_dims(__isl_take isl_basic_map
*bmap
,
3544 enum isl_dim_type type
, unsigned n
)
3548 return isl_basic_map_insert_dims(bmap
, type
,
3549 isl_basic_map_dim(bmap
, type
), n
);
3552 __isl_give isl_basic_set
*isl_basic_set_add_dims(__isl_take isl_basic_set
*bset
,
3553 enum isl_dim_type type
, unsigned n
)
3557 isl_assert(bset
->ctx
, type
!= isl_dim_in
, goto error
);
3558 return isl_basic_map_add_dims(bset
, type
, n
);
3560 isl_basic_set_free(bset
);
3564 static __isl_give isl_map
*map_space_reset(__isl_take isl_map
*map
,
3565 enum isl_dim_type type
)
3569 if (!map
|| !isl_space_is_named_or_nested(map
->dim
, type
))
3572 space
= isl_map_get_space(map
);
3573 space
= isl_space_reset(space
, type
);
3574 map
= isl_map_reset_space(map
, space
);
3578 __isl_give isl_map
*isl_map_insert_dims(__isl_take isl_map
*map
,
3579 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3584 return map_space_reset(map
, type
);
3586 map
= isl_map_cow(map
);
3590 map
->dim
= isl_space_insert_dims(map
->dim
, type
, pos
, n
);
3594 for (i
= 0; i
< map
->n
; ++i
) {
3595 map
->p
[i
] = isl_basic_map_insert_dims(map
->p
[i
], type
, pos
, n
);
3606 __isl_give isl_set
*isl_set_insert_dims(__isl_take isl_set
*set
,
3607 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3609 return isl_map_insert_dims(set
, type
, pos
, n
);
3612 __isl_give isl_map
*isl_map_add_dims(__isl_take isl_map
*map
,
3613 enum isl_dim_type type
, unsigned n
)
3617 return isl_map_insert_dims(map
, type
, isl_map_dim(map
, type
), n
);
3620 __isl_give isl_set
*isl_set_add_dims(__isl_take isl_set
*set
,
3621 enum isl_dim_type type
, unsigned n
)
3625 isl_assert(set
->ctx
, type
!= isl_dim_in
, goto error
);
3626 return set_from_map(isl_map_add_dims(set_to_map(set
), type
, n
));
3632 __isl_give isl_basic_map
*isl_basic_map_move_dims(
3633 __isl_take isl_basic_map
*bmap
,
3634 enum isl_dim_type dst_type
, unsigned dst_pos
,
3635 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3637 struct isl_dim_map
*dim_map
;
3638 struct isl_basic_map
*res
;
3639 enum isl_dim_type t
;
3640 unsigned total
, off
;
3647 if (isl_basic_map_check_range(bmap
, src_type
, src_pos
, n
) < 0)
3648 return isl_basic_map_free(bmap
);
3650 if (dst_type
== src_type
&& dst_pos
== src_pos
)
3653 isl_assert(bmap
->ctx
, dst_type
!= src_type
, goto error
);
3655 if (pos(bmap
->dim
, dst_type
) + dst_pos
==
3656 pos(bmap
->dim
, src_type
) + src_pos
+
3657 ((src_type
< dst_type
) ? n
: 0)) {
3658 bmap
= isl_basic_map_cow(bmap
);
3662 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
3663 src_type
, src_pos
, n
);
3667 bmap
= isl_basic_map_finalize(bmap
);
3672 total
= isl_basic_map_total_dim(bmap
);
3673 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3676 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3677 unsigned size
= isl_space_dim(bmap
->dim
, t
);
3678 if (t
== dst_type
) {
3679 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3682 isl_dim_map_dim_range(dim_map
, bmap
->dim
, src_type
,
3685 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3686 dst_pos
, size
- dst_pos
, off
);
3687 off
+= size
- dst_pos
;
3688 } else if (t
== src_type
) {
3689 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3692 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3693 src_pos
+ n
, size
- src_pos
- n
, off
);
3694 off
+= size
- src_pos
- n
;
3696 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3700 isl_dim_map_div(dim_map
, bmap
, off
);
3702 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
3703 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3704 bmap
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3708 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
3709 src_type
, src_pos
, n
);
3713 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
3714 bmap
= isl_basic_map_gauss(bmap
, NULL
);
3715 bmap
= isl_basic_map_finalize(bmap
);
3719 isl_basic_map_free(bmap
);
3723 __isl_give isl_basic_set
*isl_basic_set_move_dims(__isl_take isl_basic_set
*bset
,
3724 enum isl_dim_type dst_type
, unsigned dst_pos
,
3725 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3727 isl_basic_map
*bmap
= bset_to_bmap(bset
);
3728 bmap
= isl_basic_map_move_dims(bmap
, dst_type
, dst_pos
,
3729 src_type
, src_pos
, n
);
3730 return bset_from_bmap(bmap
);
3733 __isl_give isl_set
*isl_set_move_dims(__isl_take isl_set
*set
,
3734 enum isl_dim_type dst_type
, unsigned dst_pos
,
3735 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3739 isl_assert(set
->ctx
, dst_type
!= isl_dim_in
, goto error
);
3740 return set_from_map(isl_map_move_dims(set_to_map(set
),
3741 dst_type
, dst_pos
, src_type
, src_pos
, n
));
3747 __isl_give isl_map
*isl_map_move_dims(__isl_take isl_map
*map
,
3748 enum isl_dim_type dst_type
, unsigned dst_pos
,
3749 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3758 isl_assert(map
->ctx
, src_pos
+ n
<= isl_map_dim(map
, src_type
),
3761 if (dst_type
== src_type
&& dst_pos
== src_pos
)
3764 isl_assert(map
->ctx
, dst_type
!= src_type
, goto error
);
3766 map
= isl_map_cow(map
);
3770 map
->dim
= isl_space_move_dims(map
->dim
, dst_type
, dst_pos
, src_type
, src_pos
, n
);
3774 for (i
= 0; i
< map
->n
; ++i
) {
3775 map
->p
[i
] = isl_basic_map_move_dims(map
->p
[i
],
3777 src_type
, src_pos
, n
);
3788 /* Move the specified dimensions to the last columns right before
3789 * the divs. Don't change the dimension specification of bmap.
3790 * That's the responsibility of the caller.
3792 static __isl_give isl_basic_map
*move_last(__isl_take isl_basic_map
*bmap
,
3793 enum isl_dim_type type
, unsigned first
, unsigned n
)
3795 struct isl_dim_map
*dim_map
;
3796 struct isl_basic_map
*res
;
3797 enum isl_dim_type t
;
3798 unsigned total
, off
;
3802 if (pos(bmap
->dim
, type
) + first
+ n
==
3803 1 + isl_space_dim(bmap
->dim
, isl_dim_all
))
3806 total
= isl_basic_map_total_dim(bmap
);
3807 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3810 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3811 unsigned size
= isl_space_dim(bmap
->dim
, t
);
3813 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3816 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3817 first
, n
, total
- bmap
->n_div
- n
);
3818 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3819 first
+ n
, size
- (first
+ n
), off
);
3820 off
+= size
- (first
+ n
);
3822 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3826 isl_dim_map_div(dim_map
, bmap
, off
+ n
);
3828 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
3829 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3830 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3834 /* Insert "n" rows in the divs of "bmap".
3836 * The number of columns is not changed, which means that the last
3837 * dimensions of "bmap" are being reintepreted as the new divs.
3838 * The space of "bmap" is not adjusted, however, which means
3839 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
3840 * from the space of "bmap" is the responsibility of the caller.
3842 static __isl_give isl_basic_map
*insert_div_rows(__isl_take isl_basic_map
*bmap
,
3850 bmap
= isl_basic_map_cow(bmap
);
3854 row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + bmap
->extra
;
3855 old
= bmap
->block2
.data
;
3856 bmap
->block2
= isl_blk_extend(bmap
->ctx
, bmap
->block2
,
3857 (bmap
->extra
+ n
) * (1 + row_size
));
3858 if (!bmap
->block2
.data
)
3859 return isl_basic_map_free(bmap
);
3860 new_div
= isl_alloc_array(bmap
->ctx
, isl_int
*, bmap
->extra
+ n
);
3862 return isl_basic_map_free(bmap
);
3863 for (i
= 0; i
< n
; ++i
) {
3864 new_div
[i
] = bmap
->block2
.data
+
3865 (bmap
->extra
+ i
) * (1 + row_size
);
3866 isl_seq_clr(new_div
[i
], 1 + row_size
);
3868 for (i
= 0; i
< bmap
->extra
; ++i
)
3869 new_div
[n
+ i
] = bmap
->block2
.data
+ (bmap
->div
[i
] - old
);
3871 bmap
->div
= new_div
;
3878 /* Drop constraints from "bmap" that only involve the variables
3879 * of "type" in the range [first, first + n] that are not related
3880 * to any of the variables outside that interval.
3881 * These constraints cannot influence the values for the variables
3882 * outside the interval, except in case they cause "bmap" to be empty.
3883 * Only drop the constraints if "bmap" is known to be non-empty.
3885 static __isl_give isl_basic_map
*drop_irrelevant_constraints(
3886 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
3887 unsigned first
, unsigned n
)
3891 unsigned dim
, n_div
;
3894 non_empty
= isl_basic_map_plain_is_non_empty(bmap
);
3896 return isl_basic_map_free(bmap
);
3900 dim
= isl_basic_map_dim(bmap
, isl_dim_all
);
3901 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
3902 groups
= isl_calloc_array(isl_basic_map_get_ctx(bmap
), int, dim
);
3904 return isl_basic_map_free(bmap
);
3905 first
+= isl_basic_map_offset(bmap
, type
) - 1;
3906 for (i
= 0; i
< first
; ++i
)
3908 for (i
= first
+ n
; i
< dim
- n_div
; ++i
)
3911 bmap
= isl_basic_map_drop_unrelated_constraints(bmap
, groups
);
3916 /* Turn the n dimensions of type type, starting at first
3917 * into existentially quantified variables.
3919 * If a subset of the projected out variables are unrelated
3920 * to any of the variables that remain, then the constraints
3921 * involving this subset are simply dropped first.
3923 __isl_give isl_basic_map
*isl_basic_map_project_out(
3924 __isl_take isl_basic_map
*bmap
,
3925 enum isl_dim_type type
, unsigned first
, unsigned n
)
3928 return basic_map_space_reset(bmap
, type
);
3929 if (type
== isl_dim_div
)
3930 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
3931 "cannot project out existentially quantified variables",
3932 return isl_basic_map_free(bmap
));
3934 bmap
= drop_irrelevant_constraints(bmap
, type
, first
, n
);
3938 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
3939 return isl_basic_map_remove_dims(bmap
, type
, first
, n
);
3941 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
3942 return isl_basic_map_free(bmap
);
3944 bmap
= move_last(bmap
, type
, first
, n
);
3945 bmap
= isl_basic_map_cow(bmap
);
3946 bmap
= insert_div_rows(bmap
, n
);
3950 bmap
->dim
= isl_space_drop_dims(bmap
->dim
, type
, first
, n
);
3953 bmap
= isl_basic_map_simplify(bmap
);
3954 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
3955 return isl_basic_map_finalize(bmap
);
3957 isl_basic_map_free(bmap
);
3961 /* Turn the n dimensions of type type, starting at first
3962 * into existentially quantified variables.
3964 struct isl_basic_set
*isl_basic_set_project_out(struct isl_basic_set
*bset
,
3965 enum isl_dim_type type
, unsigned first
, unsigned n
)
3967 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset
),
3971 /* Turn the n dimensions of type type, starting at first
3972 * into existentially quantified variables.
3974 __isl_give isl_map
*isl_map_project_out(__isl_take isl_map
*map
,
3975 enum isl_dim_type type
, unsigned first
, unsigned n
)
3983 return map_space_reset(map
, type
);
3985 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
3987 map
= isl_map_cow(map
);
3991 map
->dim
= isl_space_drop_dims(map
->dim
, type
, first
, n
);
3995 for (i
= 0; i
< map
->n
; ++i
) {
3996 map
->p
[i
] = isl_basic_map_project_out(map
->p
[i
], type
, first
, n
);
4007 /* Turn the n dimensions of type type, starting at first
4008 * into existentially quantified variables.
4010 __isl_give isl_set
*isl_set_project_out(__isl_take isl_set
*set
,
4011 enum isl_dim_type type
, unsigned first
, unsigned n
)
4013 return set_from_map(isl_map_project_out(set_to_map(set
),
4017 /* Return a map that projects the elements in "set" onto their
4018 * "n" set dimensions starting at "first".
4019 * "type" should be equal to isl_dim_set.
4021 __isl_give isl_map
*isl_set_project_onto_map(__isl_take isl_set
*set
,
4022 enum isl_dim_type type
, unsigned first
, unsigned n
)
4030 if (type
!= isl_dim_set
)
4031 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
4032 "only set dimensions can be projected out", goto error
);
4033 dim
= isl_set_dim(set
, isl_dim_set
);
4034 if (first
+ n
> dim
|| first
+ n
< first
)
4035 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
4036 "index out of bounds", goto error
);
4038 map
= isl_map_from_domain(set
);
4039 map
= isl_map_add_dims(map
, isl_dim_out
, n
);
4040 for (i
= 0; i
< n
; ++i
)
4041 map
= isl_map_equate(map
, isl_dim_in
, first
+ i
,
4049 static struct isl_basic_map
*add_divs(struct isl_basic_map
*bmap
, unsigned n
)
4053 for (i
= 0; i
< n
; ++i
) {
4054 j
= isl_basic_map_alloc_div(bmap
);
4057 isl_seq_clr(bmap
->div
[j
], 1+1+isl_basic_map_total_dim(bmap
));
4061 isl_basic_map_free(bmap
);
4065 struct isl_basic_map
*isl_basic_map_apply_range(
4066 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
4068 isl_space
*dim_result
= NULL
;
4069 struct isl_basic_map
*bmap
;
4070 unsigned n_in
, n_out
, n
, nparam
, total
, pos
;
4071 struct isl_dim_map
*dim_map1
, *dim_map2
;
4073 if (!bmap1
|| !bmap2
)
4075 if (!isl_space_match(bmap1
->dim
, isl_dim_param
,
4076 bmap2
->dim
, isl_dim_param
))
4077 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
4078 "parameters don't match", goto error
);
4079 if (!isl_space_tuple_is_equal(bmap1
->dim
, isl_dim_out
,
4080 bmap2
->dim
, isl_dim_in
))
4081 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
4082 "spaces don't match", goto error
);
4084 dim_result
= isl_space_join(isl_space_copy(bmap1
->dim
),
4085 isl_space_copy(bmap2
->dim
));
4087 n_in
= isl_basic_map_n_in(bmap1
);
4088 n_out
= isl_basic_map_n_out(bmap2
);
4089 n
= isl_basic_map_n_out(bmap1
);
4090 nparam
= isl_basic_map_n_param(bmap1
);
4092 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ n
;
4093 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4094 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4095 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
4096 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
4097 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
4098 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_in
);
4099 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_out
);
4100 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
4101 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
4102 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
4104 bmap
= isl_basic_map_alloc_space(dim_result
,
4105 bmap1
->n_div
+ bmap2
->n_div
+ n
,
4106 bmap1
->n_eq
+ bmap2
->n_eq
,
4107 bmap1
->n_ineq
+ bmap2
->n_ineq
);
4108 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
4109 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
4110 bmap
= add_divs(bmap
, n
);
4111 bmap
= isl_basic_map_simplify(bmap
);
4112 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
4113 return isl_basic_map_finalize(bmap
);
4115 isl_basic_map_free(bmap1
);
4116 isl_basic_map_free(bmap2
);
4120 struct isl_basic_set
*isl_basic_set_apply(
4121 struct isl_basic_set
*bset
, struct isl_basic_map
*bmap
)
4126 isl_assert(bset
->ctx
, isl_basic_map_compatible_domain(bmap
, bset
),
4129 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset
),
4132 isl_basic_set_free(bset
);
4133 isl_basic_map_free(bmap
);
4137 struct isl_basic_map
*isl_basic_map_apply_domain(
4138 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
4140 if (!bmap1
|| !bmap2
)
4143 isl_assert(bmap1
->ctx
,
4144 isl_basic_map_n_in(bmap1
) == isl_basic_map_n_in(bmap2
), goto error
);
4145 isl_assert(bmap1
->ctx
,
4146 isl_basic_map_n_param(bmap1
) == isl_basic_map_n_param(bmap2
),
4149 bmap1
= isl_basic_map_reverse(bmap1
);
4150 bmap1
= isl_basic_map_apply_range(bmap1
, bmap2
);
4151 return isl_basic_map_reverse(bmap1
);
4153 isl_basic_map_free(bmap1
);
4154 isl_basic_map_free(bmap2
);
4158 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4159 * A \cap B -> f(A) + f(B)
4161 struct isl_basic_map
*isl_basic_map_sum(
4162 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
4164 unsigned n_in
, n_out
, nparam
, total
, pos
;
4165 struct isl_basic_map
*bmap
= NULL
;
4166 struct isl_dim_map
*dim_map1
, *dim_map2
;
4169 if (!bmap1
|| !bmap2
)
4172 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
),
4175 nparam
= isl_basic_map_n_param(bmap1
);
4176 n_in
= isl_basic_map_n_in(bmap1
);
4177 n_out
= isl_basic_map_n_out(bmap1
);
4179 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
;
4180 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4181 dim_map2
= isl_dim_map_alloc(bmap2
->ctx
, total
);
4182 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
4183 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
);
4184 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
4185 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
4186 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_in
+ n_out
);
4187 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
4188 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
4189 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_out
);
4191 bmap
= isl_basic_map_alloc_space(isl_space_copy(bmap1
->dim
),
4192 bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
,
4193 bmap1
->n_eq
+ bmap2
->n_eq
+ n_out
,
4194 bmap1
->n_ineq
+ bmap2
->n_ineq
);
4195 for (i
= 0; i
< n_out
; ++i
) {
4196 int j
= isl_basic_map_alloc_equality(bmap
);
4199 isl_seq_clr(bmap
->eq
[j
], 1+total
);
4200 isl_int_set_si(bmap
->eq
[j
][1+nparam
+n_in
+i
], -1);
4201 isl_int_set_si(bmap
->eq
[j
][1+pos
+i
], 1);
4202 isl_int_set_si(bmap
->eq
[j
][1+pos
-n_out
+i
], 1);
4204 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
4205 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
4206 bmap
= add_divs(bmap
, 2 * n_out
);
4208 bmap
= isl_basic_map_simplify(bmap
);
4209 return isl_basic_map_finalize(bmap
);
4211 isl_basic_map_free(bmap
);
4212 isl_basic_map_free(bmap1
);
4213 isl_basic_map_free(bmap2
);
4217 /* Given two maps A -> f(A) and B -> g(B), construct a map
4218 * A \cap B -> f(A) + f(B)
4220 struct isl_map
*isl_map_sum(struct isl_map
*map1
, struct isl_map
*map2
)
4222 struct isl_map
*result
;
4228 isl_assert(map1
->ctx
, isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
4230 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
4231 map1
->n
* map2
->n
, 0);
4234 for (i
= 0; i
< map1
->n
; ++i
)
4235 for (j
= 0; j
< map2
->n
; ++j
) {
4236 struct isl_basic_map
*part
;
4237 part
= isl_basic_map_sum(
4238 isl_basic_map_copy(map1
->p
[i
]),
4239 isl_basic_map_copy(map2
->p
[j
]));
4240 if (isl_basic_map_is_empty(part
))
4241 isl_basic_map_free(part
);
4243 result
= isl_map_add_basic_map(result
, part
);
4256 __isl_give isl_set
*isl_set_sum(__isl_take isl_set
*set1
,
4257 __isl_take isl_set
*set2
)
4259 return set_from_map(isl_map_sum(set_to_map(set1
), set_to_map(set2
)));
4262 /* Given a basic map A -> f(A), construct A -> -f(A).
4264 struct isl_basic_map
*isl_basic_map_neg(struct isl_basic_map
*bmap
)
4269 bmap
= isl_basic_map_cow(bmap
);
4273 n
= isl_basic_map_dim(bmap
, isl_dim_out
);
4274 off
= isl_basic_map_offset(bmap
, isl_dim_out
);
4275 for (i
= 0; i
< bmap
->n_eq
; ++i
)
4276 for (j
= 0; j
< n
; ++j
)
4277 isl_int_neg(bmap
->eq
[i
][off
+j
], bmap
->eq
[i
][off
+j
]);
4278 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
4279 for (j
= 0; j
< n
; ++j
)
4280 isl_int_neg(bmap
->ineq
[i
][off
+j
], bmap
->ineq
[i
][off
+j
]);
4281 for (i
= 0; i
< bmap
->n_div
; ++i
)
4282 for (j
= 0; j
< n
; ++j
)
4283 isl_int_neg(bmap
->div
[i
][1+off
+j
], bmap
->div
[i
][1+off
+j
]);
4284 bmap
= isl_basic_map_gauss(bmap
, NULL
);
4285 return isl_basic_map_finalize(bmap
);
4288 __isl_give isl_basic_set
*isl_basic_set_neg(__isl_take isl_basic_set
*bset
)
4290 return isl_basic_map_neg(bset
);
4293 /* Given a map A -> f(A), construct A -> -f(A).
4295 struct isl_map
*isl_map_neg(struct isl_map
*map
)
4299 map
= isl_map_cow(map
);
4303 for (i
= 0; i
< map
->n
; ++i
) {
4304 map
->p
[i
] = isl_basic_map_neg(map
->p
[i
]);
4315 __isl_give isl_set
*isl_set_neg(__isl_take isl_set
*set
)
4317 return set_from_map(isl_map_neg(set_to_map(set
)));
4320 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4321 * A -> floor(f(A)/d).
4323 struct isl_basic_map
*isl_basic_map_floordiv(struct isl_basic_map
*bmap
,
4326 unsigned n_in
, n_out
, nparam
, total
, pos
;
4327 struct isl_basic_map
*result
= NULL
;
4328 struct isl_dim_map
*dim_map
;
4334 nparam
= isl_basic_map_n_param(bmap
);
4335 n_in
= isl_basic_map_n_in(bmap
);
4336 n_out
= isl_basic_map_n_out(bmap
);
4338 total
= nparam
+ n_in
+ n_out
+ bmap
->n_div
+ n_out
;
4339 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
4340 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_param
, pos
= 0);
4341 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_in
, pos
+= nparam
);
4342 isl_dim_map_div(dim_map
, bmap
, pos
+= n_in
+ n_out
);
4343 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_out
, pos
+= bmap
->n_div
);
4345 result
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
4346 bmap
->n_div
+ n_out
,
4347 bmap
->n_eq
, bmap
->n_ineq
+ 2 * n_out
);
4348 result
= isl_basic_map_add_constraints_dim_map(result
, bmap
, dim_map
);
4349 result
= add_divs(result
, n_out
);
4350 for (i
= 0; i
< n_out
; ++i
) {
4352 j
= isl_basic_map_alloc_inequality(result
);
4355 isl_seq_clr(result
->ineq
[j
], 1+total
);
4356 isl_int_neg(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
4357 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], 1);
4358 j
= isl_basic_map_alloc_inequality(result
);
4361 isl_seq_clr(result
->ineq
[j
], 1+total
);
4362 isl_int_set(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
4363 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], -1);
4364 isl_int_sub_ui(result
->ineq
[j
][0], d
, 1);
4367 result
= isl_basic_map_simplify(result
);
4368 return isl_basic_map_finalize(result
);
4370 isl_basic_map_free(result
);
4374 /* Given a map A -> f(A) and an integer d, construct a map
4375 * A -> floor(f(A)/d).
4377 struct isl_map
*isl_map_floordiv(struct isl_map
*map
, isl_int d
)
4381 map
= isl_map_cow(map
);
4385 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
4386 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
4387 for (i
= 0; i
< map
->n
; ++i
) {
4388 map
->p
[i
] = isl_basic_map_floordiv(map
->p
[i
], d
);
4399 /* Given a map A -> f(A) and an integer d, construct a map
4400 * A -> floor(f(A)/d).
4402 __isl_give isl_map
*isl_map_floordiv_val(__isl_take isl_map
*map
,
4403 __isl_take isl_val
*d
)
4407 if (!isl_val_is_int(d
))
4408 isl_die(isl_val_get_ctx(d
), isl_error_invalid
,
4409 "expecting integer denominator", goto error
);
4410 map
= isl_map_floordiv(map
, d
->n
);
4419 static struct isl_basic_map
*var_equal(struct isl_basic_map
*bmap
, unsigned pos
)
4425 i
= isl_basic_map_alloc_equality(bmap
);
4428 nparam
= isl_basic_map_n_param(bmap
);
4429 n_in
= isl_basic_map_n_in(bmap
);
4430 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4431 isl_int_set_si(bmap
->eq
[i
][1+nparam
+pos
], -1);
4432 isl_int_set_si(bmap
->eq
[i
][1+nparam
+n_in
+pos
], 1);
4433 return isl_basic_map_finalize(bmap
);
4435 isl_basic_map_free(bmap
);
4439 /* Add a constraint to "bmap" expressing i_pos < o_pos
4441 static struct isl_basic_map
*var_less(struct isl_basic_map
*bmap
, unsigned pos
)
4447 i
= isl_basic_map_alloc_inequality(bmap
);
4450 nparam
= isl_basic_map_n_param(bmap
);
4451 n_in
= isl_basic_map_n_in(bmap
);
4452 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4453 isl_int_set_si(bmap
->ineq
[i
][0], -1);
4454 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
4455 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
4456 return isl_basic_map_finalize(bmap
);
4458 isl_basic_map_free(bmap
);
4462 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4464 static __isl_give isl_basic_map
*var_less_or_equal(
4465 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4471 i
= isl_basic_map_alloc_inequality(bmap
);
4474 nparam
= isl_basic_map_n_param(bmap
);
4475 n_in
= isl_basic_map_n_in(bmap
);
4476 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4477 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
4478 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
4479 return isl_basic_map_finalize(bmap
);
4481 isl_basic_map_free(bmap
);
4485 /* Add a constraint to "bmap" expressing i_pos > o_pos
4487 static struct isl_basic_map
*var_more(struct isl_basic_map
*bmap
, unsigned pos
)
4493 i
= isl_basic_map_alloc_inequality(bmap
);
4496 nparam
= isl_basic_map_n_param(bmap
);
4497 n_in
= isl_basic_map_n_in(bmap
);
4498 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4499 isl_int_set_si(bmap
->ineq
[i
][0], -1);
4500 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4501 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4502 return isl_basic_map_finalize(bmap
);
4504 isl_basic_map_free(bmap
);
4508 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4510 static __isl_give isl_basic_map
*var_more_or_equal(
4511 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4517 i
= isl_basic_map_alloc_inequality(bmap
);
4520 nparam
= isl_basic_map_n_param(bmap
);
4521 n_in
= isl_basic_map_n_in(bmap
);
4522 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4523 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4524 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4525 return isl_basic_map_finalize(bmap
);
4527 isl_basic_map_free(bmap
);
4531 __isl_give isl_basic_map
*isl_basic_map_equal(
4532 __isl_take isl_space
*dim
, unsigned n_equal
)
4535 struct isl_basic_map
*bmap
;
4536 bmap
= isl_basic_map_alloc_space(dim
, 0, n_equal
, 0);
4539 for (i
= 0; i
< n_equal
&& bmap
; ++i
)
4540 bmap
= var_equal(bmap
, i
);
4541 return isl_basic_map_finalize(bmap
);
4544 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4546 __isl_give isl_basic_map
*isl_basic_map_less_at(__isl_take isl_space
*dim
,
4550 struct isl_basic_map
*bmap
;
4551 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4554 for (i
= 0; i
< pos
&& bmap
; ++i
)
4555 bmap
= var_equal(bmap
, i
);
4557 bmap
= var_less(bmap
, pos
);
4558 return isl_basic_map_finalize(bmap
);
4561 /* Return a relation on "dim" expressing i_[0..pos] <<= o_[0..pos]
4563 __isl_give isl_basic_map
*isl_basic_map_less_or_equal_at(
4564 __isl_take isl_space
*dim
, unsigned pos
)
4567 isl_basic_map
*bmap
;
4569 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4570 for (i
= 0; i
< pos
; ++i
)
4571 bmap
= var_equal(bmap
, i
);
4572 bmap
= var_less_or_equal(bmap
, pos
);
4573 return isl_basic_map_finalize(bmap
);
4576 /* Return a relation on "dim" expressing i_pos > o_pos
4578 __isl_give isl_basic_map
*isl_basic_map_more_at(__isl_take isl_space
*dim
,
4582 struct isl_basic_map
*bmap
;
4583 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4586 for (i
= 0; i
< pos
&& bmap
; ++i
)
4587 bmap
= var_equal(bmap
, i
);
4589 bmap
= var_more(bmap
, pos
);
4590 return isl_basic_map_finalize(bmap
);
4593 /* Return a relation on "dim" expressing i_[0..pos] >>= o_[0..pos]
4595 __isl_give isl_basic_map
*isl_basic_map_more_or_equal_at(
4596 __isl_take isl_space
*dim
, unsigned pos
)
4599 isl_basic_map
*bmap
;
4601 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4602 for (i
= 0; i
< pos
; ++i
)
4603 bmap
= var_equal(bmap
, i
);
4604 bmap
= var_more_or_equal(bmap
, pos
);
4605 return isl_basic_map_finalize(bmap
);
4608 static __isl_give isl_map
*map_lex_lte_first(__isl_take isl_space
*dims
,
4609 unsigned n
, int equal
)
4611 struct isl_map
*map
;
4614 if (n
== 0 && equal
)
4615 return isl_map_universe(dims
);
4617 map
= isl_map_alloc_space(isl_space_copy(dims
), n
, ISL_MAP_DISJOINT
);
4619 for (i
= 0; i
+ 1 < n
; ++i
)
4620 map
= isl_map_add_basic_map(map
,
4621 isl_basic_map_less_at(isl_space_copy(dims
), i
));
4624 map
= isl_map_add_basic_map(map
,
4625 isl_basic_map_less_or_equal_at(dims
, n
- 1));
4627 map
= isl_map_add_basic_map(map
,
4628 isl_basic_map_less_at(dims
, n
- 1));
4630 isl_space_free(dims
);
4635 static __isl_give isl_map
*map_lex_lte(__isl_take isl_space
*dims
, int equal
)
4639 return map_lex_lte_first(dims
, dims
->n_out
, equal
);
4642 __isl_give isl_map
*isl_map_lex_lt_first(__isl_take isl_space
*dim
, unsigned n
)
4644 return map_lex_lte_first(dim
, n
, 0);
4647 __isl_give isl_map
*isl_map_lex_le_first(__isl_take isl_space
*dim
, unsigned n
)
4649 return map_lex_lte_first(dim
, n
, 1);
4652 __isl_give isl_map
*isl_map_lex_lt(__isl_take isl_space
*set_dim
)
4654 return map_lex_lte(isl_space_map_from_set(set_dim
), 0);
4657 __isl_give isl_map
*isl_map_lex_le(__isl_take isl_space
*set_dim
)
4659 return map_lex_lte(isl_space_map_from_set(set_dim
), 1);
4662 static __isl_give isl_map
*map_lex_gte_first(__isl_take isl_space
*dims
,
4663 unsigned n
, int equal
)
4665 struct isl_map
*map
;
4668 if (n
== 0 && equal
)
4669 return isl_map_universe(dims
);
4671 map
= isl_map_alloc_space(isl_space_copy(dims
), n
, ISL_MAP_DISJOINT
);
4673 for (i
= 0; i
+ 1 < n
; ++i
)
4674 map
= isl_map_add_basic_map(map
,
4675 isl_basic_map_more_at(isl_space_copy(dims
), i
));
4678 map
= isl_map_add_basic_map(map
,
4679 isl_basic_map_more_or_equal_at(dims
, n
- 1));
4681 map
= isl_map_add_basic_map(map
,
4682 isl_basic_map_more_at(dims
, n
- 1));
4684 isl_space_free(dims
);
4689 static __isl_give isl_map
*map_lex_gte(__isl_take isl_space
*dims
, int equal
)
4693 return map_lex_gte_first(dims
, dims
->n_out
, equal
);
4696 __isl_give isl_map
*isl_map_lex_gt_first(__isl_take isl_space
*dim
, unsigned n
)
4698 return map_lex_gte_first(dim
, n
, 0);
4701 __isl_give isl_map
*isl_map_lex_ge_first(__isl_take isl_space
*dim
, unsigned n
)
4703 return map_lex_gte_first(dim
, n
, 1);
4706 __isl_give isl_map
*isl_map_lex_gt(__isl_take isl_space
*set_dim
)
4708 return map_lex_gte(isl_space_map_from_set(set_dim
), 0);
4711 __isl_give isl_map
*isl_map_lex_ge(__isl_take isl_space
*set_dim
)
4713 return map_lex_gte(isl_space_map_from_set(set_dim
), 1);
4716 __isl_give isl_map
*isl_set_lex_le_set(__isl_take isl_set
*set1
,
4717 __isl_take isl_set
*set2
)
4720 map
= isl_map_lex_le(isl_set_get_space(set1
));
4721 map
= isl_map_intersect_domain(map
, set1
);
4722 map
= isl_map_intersect_range(map
, set2
);
4726 __isl_give isl_map
*isl_set_lex_lt_set(__isl_take isl_set
*set1
,
4727 __isl_take isl_set
*set2
)
4730 map
= isl_map_lex_lt(isl_set_get_space(set1
));
4731 map
= isl_map_intersect_domain(map
, set1
);
4732 map
= isl_map_intersect_range(map
, set2
);
4736 __isl_give isl_map
*isl_set_lex_ge_set(__isl_take isl_set
*set1
,
4737 __isl_take isl_set
*set2
)
4740 map
= isl_map_lex_ge(isl_set_get_space(set1
));
4741 map
= isl_map_intersect_domain(map
, set1
);
4742 map
= isl_map_intersect_range(map
, set2
);
4746 __isl_give isl_map
*isl_set_lex_gt_set(__isl_take isl_set
*set1
,
4747 __isl_take isl_set
*set2
)
4750 map
= isl_map_lex_gt(isl_set_get_space(set1
));
4751 map
= isl_map_intersect_domain(map
, set1
);
4752 map
= isl_map_intersect_range(map
, set2
);
4756 __isl_give isl_map
*isl_map_lex_le_map(__isl_take isl_map
*map1
,
4757 __isl_take isl_map
*map2
)
4760 map
= isl_map_lex_le(isl_space_range(isl_map_get_space(map1
)));
4761 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4762 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4766 __isl_give isl_map
*isl_map_lex_lt_map(__isl_take isl_map
*map1
,
4767 __isl_take isl_map
*map2
)
4770 map
= isl_map_lex_lt(isl_space_range(isl_map_get_space(map1
)));
4771 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4772 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4776 __isl_give isl_map
*isl_map_lex_ge_map(__isl_take isl_map
*map1
,
4777 __isl_take isl_map
*map2
)
4780 map
= isl_map_lex_ge(isl_space_range(isl_map_get_space(map1
)));
4781 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4782 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4786 __isl_give isl_map
*isl_map_lex_gt_map(__isl_take isl_map
*map1
,
4787 __isl_take isl_map
*map2
)
4790 map
= isl_map_lex_gt(isl_space_range(isl_map_get_space(map1
)));
4791 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4792 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4796 static __isl_give isl_basic_map
*basic_map_from_basic_set(
4797 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*dim
)
4799 struct isl_basic_map
*bmap
;
4801 bset
= isl_basic_set_cow(bset
);
4805 isl_assert(bset
->ctx
, isl_space_compatible_internal(bset
->dim
, dim
),
4807 isl_space_free(bset
->dim
);
4808 bmap
= bset_to_bmap(bset
);
4810 return isl_basic_map_finalize(bmap
);
4812 isl_basic_set_free(bset
);
4813 isl_space_free(dim
);
4817 __isl_give isl_basic_map
*isl_basic_map_from_basic_set(
4818 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*space
)
4820 return basic_map_from_basic_set(bset
, space
);
4823 /* For a div d = floor(f/m), add the constraint
4827 static isl_stat
add_upper_div_constraint(__isl_keep isl_basic_map
*bmap
,
4828 unsigned pos
, isl_int
*div
)
4831 unsigned total
= isl_basic_map_total_dim(bmap
);
4833 i
= isl_basic_map_alloc_inequality(bmap
);
4835 return isl_stat_error
;
4836 isl_seq_cpy(bmap
->ineq
[i
], div
+ 1, 1 + total
);
4837 isl_int_neg(bmap
->ineq
[i
][1 + pos
], div
[0]);
4842 /* For a div d = floor(f/m), add the constraint
4844 * -(f-(m-1)) + m d >= 0
4846 static isl_stat
add_lower_div_constraint(__isl_keep isl_basic_map
*bmap
,
4847 unsigned pos
, isl_int
*div
)
4850 unsigned total
= isl_basic_map_total_dim(bmap
);
4852 i
= isl_basic_map_alloc_inequality(bmap
);
4854 return isl_stat_error
;
4855 isl_seq_neg(bmap
->ineq
[i
], div
+ 1, 1 + total
);
4856 isl_int_set(bmap
->ineq
[i
][1 + pos
], div
[0]);
4857 isl_int_add(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], bmap
->ineq
[i
][1 + pos
]);
4858 isl_int_sub_ui(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], 1);
4863 /* For a div d = floor(f/m), add the constraints
4866 * -(f-(m-1)) + m d >= 0
4868 * Note that the second constraint is the negation of
4872 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map
*bmap
,
4873 unsigned pos
, isl_int
*div
)
4875 if (add_upper_div_constraint(bmap
, pos
, div
) < 0)
4877 if (add_lower_div_constraint(bmap
, pos
, div
) < 0)
4882 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set
*bset
,
4883 unsigned pos
, isl_int
*div
)
4885 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset
),
4889 int isl_basic_map_add_div_constraints(struct isl_basic_map
*bmap
, unsigned div
)
4891 unsigned total
= isl_basic_map_total_dim(bmap
);
4892 unsigned div_pos
= total
- bmap
->n_div
+ div
;
4894 return isl_basic_map_add_div_constraints_var(bmap
, div_pos
,
4898 /* For each known div d = floor(f/m), add the constraints
4901 * -(f-(m-1)) + m d >= 0
4903 * Remove duplicate constraints in case of some these div constraints
4904 * already appear in "bmap".
4906 __isl_give isl_basic_map
*isl_basic_map_add_known_div_constraints(
4907 __isl_take isl_basic_map
*bmap
)
4913 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
4917 bmap
= add_known_div_constraints(bmap
);
4918 bmap
= isl_basic_map_remove_duplicate_constraints(bmap
, NULL
, 0);
4919 bmap
= isl_basic_map_finalize(bmap
);
4923 /* Add the div constraint of sign "sign" for div "div" of "bmap".
4925 * In particular, if this div is of the form d = floor(f/m),
4926 * then add the constraint
4930 * if sign < 0 or the constraint
4932 * -(f-(m-1)) + m d >= 0
4936 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map
*bmap
,
4937 unsigned div
, int sign
)
4945 total
= isl_basic_map_total_dim(bmap
);
4946 div_pos
= total
- bmap
->n_div
+ div
;
4949 return add_upper_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
4951 return add_lower_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
4954 int isl_basic_set_add_div_constraints(struct isl_basic_set
*bset
, unsigned div
)
4956 return isl_basic_map_add_div_constraints(bset
, div
);
4959 struct isl_basic_set
*isl_basic_map_underlying_set(
4960 struct isl_basic_map
*bmap
)
4964 if (bmap
->dim
->nparam
== 0 && bmap
->dim
->n_in
== 0 &&
4966 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_in
) &&
4967 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_out
))
4968 return bset_from_bmap(bmap
);
4969 bmap
= isl_basic_map_cow(bmap
);
4972 bmap
->dim
= isl_space_underlying(bmap
->dim
, bmap
->n_div
);
4975 bmap
->extra
-= bmap
->n_div
;
4977 bmap
= isl_basic_map_finalize(bmap
);
4978 return bset_from_bmap(bmap
);
4980 isl_basic_map_free(bmap
);
4984 __isl_give isl_basic_set
*isl_basic_set_underlying_set(
4985 __isl_take isl_basic_set
*bset
)
4987 return isl_basic_map_underlying_set(bset_to_bmap(bset
));
4990 /* Replace each element in "list" by the result of applying
4991 * isl_basic_map_underlying_set to the element.
4993 __isl_give isl_basic_set_list
*isl_basic_map_list_underlying_set(
4994 __isl_take isl_basic_map_list
*list
)
5001 n
= isl_basic_map_list_n_basic_map(list
);
5002 for (i
= 0; i
< n
; ++i
) {
5003 isl_basic_map
*bmap
;
5004 isl_basic_set
*bset
;
5006 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
5007 bset
= isl_basic_set_underlying_set(bmap
);
5008 list
= isl_basic_set_list_set_basic_set(list
, i
, bset
);
5014 struct isl_basic_map
*isl_basic_map_overlying_set(
5015 struct isl_basic_set
*bset
, struct isl_basic_map
*like
)
5017 struct isl_basic_map
*bmap
;
5018 struct isl_ctx
*ctx
;
5025 isl_assert(ctx
, bset
->n_div
== 0, goto error
);
5026 isl_assert(ctx
, isl_basic_set_n_param(bset
) == 0, goto error
);
5027 isl_assert(ctx
, bset
->dim
->n_out
== isl_basic_map_total_dim(like
),
5029 if (like
->n_div
== 0) {
5030 isl_space
*space
= isl_basic_map_get_space(like
);
5031 isl_basic_map_free(like
);
5032 return isl_basic_map_reset_space(bset
, space
);
5034 bset
= isl_basic_set_cow(bset
);
5037 total
= bset
->dim
->n_out
+ bset
->extra
;
5038 bmap
= bset_to_bmap(bset
);
5039 isl_space_free(bmap
->dim
);
5040 bmap
->dim
= isl_space_copy(like
->dim
);
5043 bmap
->n_div
= like
->n_div
;
5044 bmap
->extra
+= like
->n_div
;
5048 ltotal
= total
- bmap
->extra
+ like
->extra
;
5051 bmap
->block2
= isl_blk_extend(ctx
, bmap
->block2
,
5052 bmap
->extra
* (1 + 1 + total
));
5053 if (isl_blk_is_error(bmap
->block2
))
5055 div
= isl_realloc_array(ctx
, bmap
->div
, isl_int
*, bmap
->extra
);
5059 for (i
= 0; i
< bmap
->extra
; ++i
)
5060 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + 1 + total
);
5061 for (i
= 0; i
< like
->n_div
; ++i
) {
5062 isl_seq_cpy(bmap
->div
[i
], like
->div
[i
], 1 + 1 + ltotal
);
5063 isl_seq_clr(bmap
->div
[i
]+1+1+ltotal
, total
- ltotal
);
5065 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
5067 isl_basic_map_free(like
);
5068 bmap
= isl_basic_map_simplify(bmap
);
5069 bmap
= isl_basic_map_finalize(bmap
);
5072 isl_basic_map_free(like
);
5073 isl_basic_set_free(bset
);
5077 struct isl_basic_set
*isl_basic_set_from_underlying_set(
5078 struct isl_basic_set
*bset
, struct isl_basic_set
*like
)
5080 return bset_from_bmap(isl_basic_map_overlying_set(bset
,
5081 bset_to_bmap(like
)));
5084 struct isl_set
*isl_set_from_underlying_set(
5085 struct isl_set
*set
, struct isl_basic_set
*like
)
5091 isl_assert(set
->ctx
, set
->dim
->n_out
== isl_basic_set_total_dim(like
),
5093 if (isl_space_is_equal(set
->dim
, like
->dim
) && like
->n_div
== 0) {
5094 isl_basic_set_free(like
);
5097 set
= isl_set_cow(set
);
5100 for (i
= 0; i
< set
->n
; ++i
) {
5101 set
->p
[i
] = isl_basic_set_from_underlying_set(set
->p
[i
],
5102 isl_basic_set_copy(like
));
5106 isl_space_free(set
->dim
);
5107 set
->dim
= isl_space_copy(like
->dim
);
5110 isl_basic_set_free(like
);
5113 isl_basic_set_free(like
);
5118 struct isl_set
*isl_map_underlying_set(struct isl_map
*map
)
5122 map
= isl_map_cow(map
);
5125 map
->dim
= isl_space_cow(map
->dim
);
5129 for (i
= 1; i
< map
->n
; ++i
)
5130 isl_assert(map
->ctx
, map
->p
[0]->n_div
== map
->p
[i
]->n_div
,
5132 for (i
= 0; i
< map
->n
; ++i
) {
5133 map
->p
[i
] = bset_to_bmap(
5134 isl_basic_map_underlying_set(map
->p
[i
]));
5139 map
->dim
= isl_space_underlying(map
->dim
, 0);
5141 isl_space_free(map
->dim
);
5142 map
->dim
= isl_space_copy(map
->p
[0]->dim
);
5146 return set_from_map(map
);
5152 struct isl_set
*isl_set_to_underlying_set(struct isl_set
*set
)
5154 return set_from_map(isl_map_underlying_set(set_to_map(set
)));
5157 /* Replace the space of "bmap" by "space".
5159 * If the space of "bmap" is identical to "space" (including the identifiers
5160 * of the input and output dimensions), then simply return the original input.
5162 __isl_give isl_basic_map
*isl_basic_map_reset_space(
5163 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*space
)
5169 equal
= isl_space_is_equal(bmap
->dim
, space
);
5170 if (equal
>= 0 && equal
)
5171 equal
= isl_space_match(bmap
->dim
, isl_dim_in
,
5173 if (equal
>= 0 && equal
)
5174 equal
= isl_space_match(bmap
->dim
, isl_dim_out
,
5175 space
, isl_dim_out
);
5179 isl_space_free(space
);
5182 bmap
= isl_basic_map_cow(bmap
);
5183 if (!bmap
|| !space
)
5186 isl_space_free(bmap
->dim
);
5189 bmap
= isl_basic_map_finalize(bmap
);
5193 isl_basic_map_free(bmap
);
5194 isl_space_free(space
);
5198 __isl_give isl_basic_set
*isl_basic_set_reset_space(
5199 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*dim
)
5201 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset
),
5205 __isl_give isl_map
*isl_map_reset_space(__isl_take isl_map
*map
,
5206 __isl_take isl_space
*dim
)
5210 map
= isl_map_cow(map
);
5214 for (i
= 0; i
< map
->n
; ++i
) {
5215 map
->p
[i
] = isl_basic_map_reset_space(map
->p
[i
],
5216 isl_space_copy(dim
));
5220 isl_space_free(map
->dim
);
5226 isl_space_free(dim
);
5230 __isl_give isl_set
*isl_set_reset_space(__isl_take isl_set
*set
,
5231 __isl_take isl_space
*dim
)
5233 return set_from_map(isl_map_reset_space(set_to_map(set
), dim
));
5236 /* Compute the parameter domain of the given basic set.
5238 __isl_give isl_basic_set
*isl_basic_set_params(__isl_take isl_basic_set
*bset
)
5244 is_params
= isl_basic_set_is_params(bset
);
5246 return isl_basic_set_free(bset
);
5250 n
= isl_basic_set_dim(bset
, isl_dim_set
);
5251 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
5252 space
= isl_basic_set_get_space(bset
);
5253 space
= isl_space_params(space
);
5254 bset
= isl_basic_set_reset_space(bset
, space
);
5258 /* Construct a zero-dimensional basic set with the given parameter domain.
5260 __isl_give isl_basic_set
*isl_basic_set_from_params(
5261 __isl_take isl_basic_set
*bset
)
5264 space
= isl_basic_set_get_space(bset
);
5265 space
= isl_space_set_from_params(space
);
5266 bset
= isl_basic_set_reset_space(bset
, space
);
5270 /* Compute the parameter domain of the given set.
5272 __isl_give isl_set
*isl_set_params(__isl_take isl_set
*set
)
5277 if (isl_set_is_params(set
))
5280 n
= isl_set_dim(set
, isl_dim_set
);
5281 set
= isl_set_project_out(set
, isl_dim_set
, 0, n
);
5282 space
= isl_set_get_space(set
);
5283 space
= isl_space_params(space
);
5284 set
= isl_set_reset_space(set
, space
);
5288 /* Construct a zero-dimensional set with the given parameter domain.
5290 __isl_give isl_set
*isl_set_from_params(__isl_take isl_set
*set
)
5293 space
= isl_set_get_space(set
);
5294 space
= isl_space_set_from_params(space
);
5295 set
= isl_set_reset_space(set
, space
);
5299 /* Compute the parameter domain of the given map.
5301 __isl_give isl_set
*isl_map_params(__isl_take isl_map
*map
)
5306 n
= isl_map_dim(map
, isl_dim_in
);
5307 map
= isl_map_project_out(map
, isl_dim_in
, 0, n
);
5308 n
= isl_map_dim(map
, isl_dim_out
);
5309 map
= isl_map_project_out(map
, isl_dim_out
, 0, n
);
5310 space
= isl_map_get_space(map
);
5311 space
= isl_space_params(space
);
5312 map
= isl_map_reset_space(map
, space
);
5316 struct isl_basic_set
*isl_basic_map_domain(struct isl_basic_map
*bmap
)
5323 space
= isl_space_domain(isl_basic_map_get_space(bmap
));
5325 n_out
= isl_basic_map_n_out(bmap
);
5326 bmap
= isl_basic_map_project_out(bmap
, isl_dim_out
, 0, n_out
);
5328 return isl_basic_map_reset_space(bmap
, space
);
5331 isl_bool
isl_basic_map_may_be_set(__isl_keep isl_basic_map
*bmap
)
5334 return isl_bool_error
;
5335 return isl_space_may_be_set(bmap
->dim
);
5338 /* Is this basic map actually a set?
5339 * Users should never call this function. Outside of isl,
5340 * the type should indicate whether something is a set or a map.
5342 isl_bool
isl_basic_map_is_set(__isl_keep isl_basic_map
*bmap
)
5345 return isl_bool_error
;
5346 return isl_space_is_set(bmap
->dim
);
5349 struct isl_basic_set
*isl_basic_map_range(struct isl_basic_map
*bmap
)
5353 is_set
= isl_basic_map_is_set(bmap
);
5358 return isl_basic_map_domain(isl_basic_map_reverse(bmap
));
5360 isl_basic_map_free(bmap
);
5364 __isl_give isl_basic_map
*isl_basic_map_domain_map(
5365 __isl_take isl_basic_map
*bmap
)
5369 isl_basic_map
*domain
;
5370 int nparam
, n_in
, n_out
;
5372 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
5373 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
5374 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
5376 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
5377 domain
= isl_basic_map_universe(dim
);
5379 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
5380 bmap
= isl_basic_map_apply_range(bmap
, domain
);
5381 bmap
= isl_basic_map_extend_constraints(bmap
, n_in
, 0);
5383 for (i
= 0; i
< n_in
; ++i
)
5384 bmap
= isl_basic_map_equate(bmap
, isl_dim_in
, i
,
5387 bmap
= isl_basic_map_gauss(bmap
, NULL
);
5388 return isl_basic_map_finalize(bmap
);
5391 __isl_give isl_basic_map
*isl_basic_map_range_map(
5392 __isl_take isl_basic_map
*bmap
)
5396 isl_basic_map
*range
;
5397 int nparam
, n_in
, n_out
;
5399 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
5400 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
5401 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
5403 dim
= isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap
)));
5404 range
= isl_basic_map_universe(dim
);
5406 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
5407 bmap
= isl_basic_map_apply_range(bmap
, range
);
5408 bmap
= isl_basic_map_extend_constraints(bmap
, n_out
, 0);
5410 for (i
= 0; i
< n_out
; ++i
)
5411 bmap
= isl_basic_map_equate(bmap
, isl_dim_in
, n_in
+ i
,
5414 bmap
= isl_basic_map_gauss(bmap
, NULL
);
5415 return isl_basic_map_finalize(bmap
);
5418 int isl_map_may_be_set(__isl_keep isl_map
*map
)
5422 return isl_space_may_be_set(map
->dim
);
5425 /* Is this map actually a set?
5426 * Users should never call this function. Outside of isl,
5427 * the type should indicate whether something is a set or a map.
5429 isl_bool
isl_map_is_set(__isl_keep isl_map
*map
)
5432 return isl_bool_error
;
5433 return isl_space_is_set(map
->dim
);
5436 struct isl_set
*isl_map_range(struct isl_map
*map
)
5440 struct isl_set
*set
;
5442 is_set
= isl_map_is_set(map
);
5446 return set_from_map(map
);
5448 map
= isl_map_cow(map
);
5452 set
= set_from_map(map
);
5453 set
->dim
= isl_space_range(set
->dim
);
5456 for (i
= 0; i
< map
->n
; ++i
) {
5457 set
->p
[i
] = isl_basic_map_range(map
->p
[i
]);
5461 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
5462 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
5469 __isl_give isl_map
*isl_map_domain_map(__isl_take isl_map
*map
)
5473 map
= isl_map_cow(map
);
5477 map
->dim
= isl_space_domain_map(map
->dim
);
5480 for (i
= 0; i
< map
->n
; ++i
) {
5481 map
->p
[i
] = isl_basic_map_domain_map(map
->p
[i
]);
5485 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5486 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5493 __isl_give isl_map
*isl_map_range_map(__isl_take isl_map
*map
)
5496 isl_space
*range_dim
;
5498 map
= isl_map_cow(map
);
5502 range_dim
= isl_space_range(isl_map_get_space(map
));
5503 range_dim
= isl_space_from_range(range_dim
);
5504 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
5505 map
->dim
= isl_space_join(map
->dim
, range_dim
);
5508 for (i
= 0; i
< map
->n
; ++i
) {
5509 map
->p
[i
] = isl_basic_map_range_map(map
->p
[i
]);
5513 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5514 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5521 /* Given a wrapped map of the form A[B -> C],
5522 * return the map A[B -> C] -> B.
5524 __isl_give isl_map
*isl_set_wrapped_domain_map(__isl_take isl_set
*set
)
5531 if (!isl_set_has_tuple_id(set
))
5532 return isl_map_domain_map(isl_set_unwrap(set
));
5534 id
= isl_set_get_tuple_id(set
);
5535 map
= isl_map_domain_map(isl_set_unwrap(set
));
5536 map
= isl_map_set_tuple_id(map
, isl_dim_in
, id
);
5541 __isl_give isl_map
*isl_map_from_set(__isl_take isl_set
*set
,
5542 __isl_take isl_space
*dim
)
5545 struct isl_map
*map
= NULL
;
5547 set
= isl_set_cow(set
);
5550 isl_assert(set
->ctx
, isl_space_compatible_internal(set
->dim
, dim
),
5552 map
= set_to_map(set
);
5553 for (i
= 0; i
< set
->n
; ++i
) {
5554 map
->p
[i
] = basic_map_from_basic_set(
5555 set
->p
[i
], isl_space_copy(dim
));
5559 isl_space_free(map
->dim
);
5563 isl_space_free(dim
);
5568 __isl_give isl_basic_map
*isl_basic_map_from_domain(
5569 __isl_take isl_basic_set
*bset
)
5571 return isl_basic_map_reverse(isl_basic_map_from_range(bset
));
5574 __isl_give isl_basic_map
*isl_basic_map_from_range(
5575 __isl_take isl_basic_set
*bset
)
5578 space
= isl_basic_set_get_space(bset
);
5579 space
= isl_space_from_range(space
);
5580 bset
= isl_basic_set_reset_space(bset
, space
);
5581 return bset_to_bmap(bset
);
5584 /* Create a relation with the given set as range.
5585 * The domain of the created relation is a zero-dimensional
5586 * flat anonymous space.
5588 __isl_give isl_map
*isl_map_from_range(__isl_take isl_set
*set
)
5591 space
= isl_set_get_space(set
);
5592 space
= isl_space_from_range(space
);
5593 set
= isl_set_reset_space(set
, space
);
5594 return set_to_map(set
);
5597 /* Create a relation with the given set as domain.
5598 * The range of the created relation is a zero-dimensional
5599 * flat anonymous space.
5601 __isl_give isl_map
*isl_map_from_domain(__isl_take isl_set
*set
)
5603 return isl_map_reverse(isl_map_from_range(set
));
5606 __isl_give isl_basic_map
*isl_basic_map_from_domain_and_range(
5607 __isl_take isl_basic_set
*domain
, __isl_take isl_basic_set
*range
)
5609 return isl_basic_map_apply_range(isl_basic_map_reverse(domain
), range
);
5612 __isl_give isl_map
*isl_map_from_domain_and_range(__isl_take isl_set
*domain
,
5613 __isl_take isl_set
*range
)
5615 return isl_map_apply_range(isl_map_reverse(domain
), range
);
5618 /* Return a newly allocated isl_map with given space and flags and
5619 * room for "n" basic maps.
5620 * Make sure that all cached information is cleared.
5622 __isl_give isl_map
*isl_map_alloc_space(__isl_take isl_space
*space
, int n
,
5625 struct isl_map
*map
;
5630 isl_die(space
->ctx
, isl_error_internal
,
5631 "negative number of basic maps", goto error
);
5632 map
= isl_calloc(space
->ctx
, struct isl_map
,
5633 sizeof(struct isl_map
) +
5634 (n
- 1) * sizeof(struct isl_basic_map
*));
5638 map
->ctx
= space
->ctx
;
5639 isl_ctx_ref(map
->ctx
);
5647 isl_space_free(space
);
5651 struct isl_map
*isl_map_alloc(struct isl_ctx
*ctx
,
5652 unsigned nparam
, unsigned in
, unsigned out
, int n
,
5655 struct isl_map
*map
;
5658 dims
= isl_space_alloc(ctx
, nparam
, in
, out
);
5662 map
= isl_map_alloc_space(dims
, n
, flags
);
5666 __isl_give isl_basic_map
*isl_basic_map_empty(__isl_take isl_space
*dim
)
5668 struct isl_basic_map
*bmap
;
5669 bmap
= isl_basic_map_alloc_space(dim
, 0, 1, 0);
5670 bmap
= isl_basic_map_set_to_empty(bmap
);
5674 __isl_give isl_basic_set
*isl_basic_set_empty(__isl_take isl_space
*dim
)
5676 struct isl_basic_set
*bset
;
5677 bset
= isl_basic_set_alloc_space(dim
, 0, 1, 0);
5678 bset
= isl_basic_set_set_to_empty(bset
);
5682 __isl_give isl_basic_map
*isl_basic_map_universe(__isl_take isl_space
*dim
)
5684 struct isl_basic_map
*bmap
;
5685 bmap
= isl_basic_map_alloc_space(dim
, 0, 0, 0);
5686 bmap
= isl_basic_map_finalize(bmap
);
5690 __isl_give isl_basic_set
*isl_basic_set_universe(__isl_take isl_space
*dim
)
5692 struct isl_basic_set
*bset
;
5693 bset
= isl_basic_set_alloc_space(dim
, 0, 0, 0);
5694 bset
= isl_basic_set_finalize(bset
);
5698 __isl_give isl_basic_map
*isl_basic_map_nat_universe(__isl_take isl_space
*dim
)
5701 unsigned total
= isl_space_dim(dim
, isl_dim_all
);
5702 isl_basic_map
*bmap
;
5704 bmap
= isl_basic_map_alloc_space(dim
, 0, 0, total
);
5705 for (i
= 0; i
< total
; ++i
) {
5706 int k
= isl_basic_map_alloc_inequality(bmap
);
5709 isl_seq_clr(bmap
->ineq
[k
], 1 + total
);
5710 isl_int_set_si(bmap
->ineq
[k
][1 + i
], 1);
5714 isl_basic_map_free(bmap
);
5718 __isl_give isl_basic_set
*isl_basic_set_nat_universe(__isl_take isl_space
*dim
)
5720 return isl_basic_map_nat_universe(dim
);
5723 __isl_give isl_map
*isl_map_nat_universe(__isl_take isl_space
*dim
)
5725 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim
));
5728 __isl_give isl_set
*isl_set_nat_universe(__isl_take isl_space
*dim
)
5730 return isl_map_nat_universe(dim
);
5733 __isl_give isl_map
*isl_map_empty(__isl_take isl_space
*dim
)
5735 return isl_map_alloc_space(dim
, 0, ISL_MAP_DISJOINT
);
5738 __isl_give isl_set
*isl_set_empty(__isl_take isl_space
*dim
)
5740 return isl_set_alloc_space(dim
, 0, ISL_MAP_DISJOINT
);
5743 __isl_give isl_map
*isl_map_universe(__isl_take isl_space
*dim
)
5745 struct isl_map
*map
;
5748 map
= isl_map_alloc_space(isl_space_copy(dim
), 1, ISL_MAP_DISJOINT
);
5749 map
= isl_map_add_basic_map(map
, isl_basic_map_universe(dim
));
5753 __isl_give isl_set
*isl_set_universe(__isl_take isl_space
*dim
)
5755 struct isl_set
*set
;
5758 set
= isl_set_alloc_space(isl_space_copy(dim
), 1, ISL_MAP_DISJOINT
);
5759 set
= isl_set_add_basic_set(set
, isl_basic_set_universe(dim
));
5763 struct isl_map
*isl_map_dup(struct isl_map
*map
)
5766 struct isl_map
*dup
;
5770 dup
= isl_map_alloc_space(isl_space_copy(map
->dim
), map
->n
, map
->flags
);
5771 for (i
= 0; i
< map
->n
; ++i
)
5772 dup
= isl_map_add_basic_map(dup
, isl_basic_map_copy(map
->p
[i
]));
5776 __isl_give isl_map
*isl_map_add_basic_map(__isl_take isl_map
*map
,
5777 __isl_take isl_basic_map
*bmap
)
5781 if (isl_basic_map_plain_is_empty(bmap
)) {
5782 isl_basic_map_free(bmap
);
5785 isl_assert(map
->ctx
, isl_space_is_equal(map
->dim
, bmap
->dim
), goto error
);
5786 isl_assert(map
->ctx
, map
->n
< map
->size
, goto error
);
5787 map
->p
[map
->n
] = bmap
;
5789 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5795 isl_basic_map_free(bmap
);
5799 __isl_null isl_map
*isl_map_free(__isl_take isl_map
*map
)
5810 isl_ctx_deref(map
->ctx
);
5811 for (i
= 0; i
< map
->n
; ++i
)
5812 isl_basic_map_free(map
->p
[i
]);
5813 isl_space_free(map
->dim
);
5819 static struct isl_basic_map
*isl_basic_map_fix_pos_si(
5820 struct isl_basic_map
*bmap
, unsigned pos
, int value
)
5824 bmap
= isl_basic_map_cow(bmap
);
5825 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
5826 j
= isl_basic_map_alloc_equality(bmap
);
5829 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
5830 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
5831 isl_int_set_si(bmap
->eq
[j
][0], value
);
5832 bmap
= isl_basic_map_simplify(bmap
);
5833 return isl_basic_map_finalize(bmap
);
5835 isl_basic_map_free(bmap
);
5839 static __isl_give isl_basic_map
*isl_basic_map_fix_pos(
5840 __isl_take isl_basic_map
*bmap
, unsigned pos
, isl_int value
)
5844 bmap
= isl_basic_map_cow(bmap
);
5845 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
5846 j
= isl_basic_map_alloc_equality(bmap
);
5849 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
5850 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
5851 isl_int_set(bmap
->eq
[j
][0], value
);
5852 bmap
= isl_basic_map_simplify(bmap
);
5853 return isl_basic_map_finalize(bmap
);
5855 isl_basic_map_free(bmap
);
5859 struct isl_basic_map
*isl_basic_map_fix_si(struct isl_basic_map
*bmap
,
5860 enum isl_dim_type type
, unsigned pos
, int value
)
5862 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
5863 return isl_basic_map_free(bmap
);
5864 return isl_basic_map_fix_pos_si(bmap
,
5865 isl_basic_map_offset(bmap
, type
) + pos
, value
);
5868 __isl_give isl_basic_map
*isl_basic_map_fix(__isl_take isl_basic_map
*bmap
,
5869 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5871 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
5872 return isl_basic_map_free(bmap
);
5873 return isl_basic_map_fix_pos(bmap
,
5874 isl_basic_map_offset(bmap
, type
) + pos
, value
);
5877 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
5878 * to be equal to "v".
5880 __isl_give isl_basic_map
*isl_basic_map_fix_val(__isl_take isl_basic_map
*bmap
,
5881 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5885 if (!isl_val_is_int(v
))
5886 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
5887 "expecting integer value", goto error
);
5888 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
5890 pos
+= isl_basic_map_offset(bmap
, type
);
5891 bmap
= isl_basic_map_fix_pos(bmap
, pos
, v
->n
);
5895 isl_basic_map_free(bmap
);
5900 /* Fix the value of the variable at position "pos" of type "type" of "bset"
5901 * to be equal to "v".
5903 __isl_give isl_basic_set
*isl_basic_set_fix_val(__isl_take isl_basic_set
*bset
,
5904 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5906 return isl_basic_map_fix_val(bset
, type
, pos
, v
);
5909 struct isl_basic_set
*isl_basic_set_fix_si(struct isl_basic_set
*bset
,
5910 enum isl_dim_type type
, unsigned pos
, int value
)
5912 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset
),
5916 __isl_give isl_basic_set
*isl_basic_set_fix(__isl_take isl_basic_set
*bset
,
5917 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5919 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset
),
5923 struct isl_basic_map
*isl_basic_map_fix_input_si(struct isl_basic_map
*bmap
,
5924 unsigned input
, int value
)
5926 return isl_basic_map_fix_si(bmap
, isl_dim_in
, input
, value
);
5929 struct isl_basic_set
*isl_basic_set_fix_dim_si(struct isl_basic_set
*bset
,
5930 unsigned dim
, int value
)
5932 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset
),
5933 isl_dim_set
, dim
, value
));
5936 static int remove_if_empty(__isl_keep isl_map
*map
, int i
)
5938 int empty
= isl_basic_map_plain_is_empty(map
->p
[i
]);
5945 isl_basic_map_free(map
->p
[i
]);
5946 if (i
!= map
->n
- 1) {
5947 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5948 map
->p
[i
] = map
->p
[map
->n
- 1];
5955 /* Perform "fn" on each basic map of "map", where we may not be holding
5956 * the only reference to "map".
5957 * In particular, "fn" should be a semantics preserving operation
5958 * that we want to apply to all copies of "map". We therefore need
5959 * to be careful not to modify "map" in a way that breaks "map"
5960 * in case anything goes wrong.
5962 __isl_give isl_map
*isl_map_inline_foreach_basic_map(__isl_take isl_map
*map
,
5963 __isl_give isl_basic_map
*(*fn
)(__isl_take isl_basic_map
*bmap
))
5965 struct isl_basic_map
*bmap
;
5971 for (i
= map
->n
- 1; i
>= 0; --i
) {
5972 bmap
= isl_basic_map_copy(map
->p
[i
]);
5976 isl_basic_map_free(map
->p
[i
]);
5978 if (remove_if_empty(map
, i
) < 0)
5988 struct isl_map
*isl_map_fix_si(struct isl_map
*map
,
5989 enum isl_dim_type type
, unsigned pos
, int value
)
5993 map
= isl_map_cow(map
);
5997 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
5998 for (i
= map
->n
- 1; i
>= 0; --i
) {
5999 map
->p
[i
] = isl_basic_map_fix_si(map
->p
[i
], type
, pos
, value
);
6000 if (remove_if_empty(map
, i
) < 0)
6003 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6010 __isl_give isl_set
*isl_set_fix_si(__isl_take isl_set
*set
,
6011 enum isl_dim_type type
, unsigned pos
, int value
)
6013 return set_from_map(isl_map_fix_si(set_to_map(set
), type
, pos
, value
));
6016 __isl_give isl_map
*isl_map_fix(__isl_take isl_map
*map
,
6017 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6021 map
= isl_map_cow(map
);
6025 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
6026 for (i
= 0; i
< map
->n
; ++i
) {
6027 map
->p
[i
] = isl_basic_map_fix(map
->p
[i
], type
, pos
, value
);
6031 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6038 __isl_give isl_set
*isl_set_fix(__isl_take isl_set
*set
,
6039 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6041 return set_from_map(isl_map_fix(set_to_map(set
), type
, pos
, value
));
6044 /* Fix the value of the variable at position "pos" of type "type" of "map"
6045 * to be equal to "v".
6047 __isl_give isl_map
*isl_map_fix_val(__isl_take isl_map
*map
,
6048 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6052 map
= isl_map_cow(map
);
6056 if (!isl_val_is_int(v
))
6057 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
6058 "expecting integer value", goto error
);
6059 if (pos
>= isl_map_dim(map
, type
))
6060 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
6061 "index out of bounds", goto error
);
6062 for (i
= map
->n
- 1; i
>= 0; --i
) {
6063 map
->p
[i
] = isl_basic_map_fix_val(map
->p
[i
], type
, pos
,
6065 if (remove_if_empty(map
, i
) < 0)
6068 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6077 /* Fix the value of the variable at position "pos" of type "type" of "set"
6078 * to be equal to "v".
6080 __isl_give isl_set
*isl_set_fix_val(__isl_take isl_set
*set
,
6081 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6083 return isl_map_fix_val(set
, type
, pos
, v
);
6086 struct isl_map
*isl_map_fix_input_si(struct isl_map
*map
,
6087 unsigned input
, int value
)
6089 return isl_map_fix_si(map
, isl_dim_in
, input
, value
);
6092 struct isl_set
*isl_set_fix_dim_si(struct isl_set
*set
, unsigned dim
, int value
)
6094 return set_from_map(isl_map_fix_si(set_to_map(set
),
6095 isl_dim_set
, dim
, value
));
6098 static __isl_give isl_basic_map
*basic_map_bound_si(
6099 __isl_take isl_basic_map
*bmap
,
6100 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
6104 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6105 return isl_basic_map_free(bmap
);
6106 pos
+= isl_basic_map_offset(bmap
, type
);
6107 bmap
= isl_basic_map_cow(bmap
);
6108 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
6109 j
= isl_basic_map_alloc_inequality(bmap
);
6112 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
6114 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
6115 isl_int_set_si(bmap
->ineq
[j
][0], value
);
6117 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
6118 isl_int_set_si(bmap
->ineq
[j
][0], -value
);
6120 bmap
= isl_basic_map_simplify(bmap
);
6121 return isl_basic_map_finalize(bmap
);
6123 isl_basic_map_free(bmap
);
6127 __isl_give isl_basic_map
*isl_basic_map_lower_bound_si(
6128 __isl_take isl_basic_map
*bmap
,
6129 enum isl_dim_type type
, unsigned pos
, int value
)
6131 return basic_map_bound_si(bmap
, type
, pos
, value
, 0);
6134 /* Constrain the values of the given dimension to be no greater than "value".
6136 __isl_give isl_basic_map
*isl_basic_map_upper_bound_si(
6137 __isl_take isl_basic_map
*bmap
,
6138 enum isl_dim_type type
, unsigned pos
, int value
)
6140 return basic_map_bound_si(bmap
, type
, pos
, value
, 1);
6143 struct isl_basic_set
*isl_basic_set_lower_bound_dim(struct isl_basic_set
*bset
,
6144 unsigned dim
, isl_int value
)
6148 bset
= isl_basic_set_cow(bset
);
6149 bset
= isl_basic_set_extend_constraints(bset
, 0, 1);
6150 j
= isl_basic_set_alloc_inequality(bset
);
6153 isl_seq_clr(bset
->ineq
[j
], 1 + isl_basic_set_total_dim(bset
));
6154 isl_int_set_si(bset
->ineq
[j
][1 + isl_basic_set_n_param(bset
) + dim
], 1);
6155 isl_int_neg(bset
->ineq
[j
][0], value
);
6156 bset
= isl_basic_set_simplify(bset
);
6157 return isl_basic_set_finalize(bset
);
6159 isl_basic_set_free(bset
);
6163 static __isl_give isl_map
*map_bound_si(__isl_take isl_map
*map
,
6164 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
6168 map
= isl_map_cow(map
);
6172 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
6173 for (i
= 0; i
< map
->n
; ++i
) {
6174 map
->p
[i
] = basic_map_bound_si(map
->p
[i
],
6175 type
, pos
, value
, upper
);
6179 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6186 __isl_give isl_map
*isl_map_lower_bound_si(__isl_take isl_map
*map
,
6187 enum isl_dim_type type
, unsigned pos
, int value
)
6189 return map_bound_si(map
, type
, pos
, value
, 0);
6192 __isl_give isl_map
*isl_map_upper_bound_si(__isl_take isl_map
*map
,
6193 enum isl_dim_type type
, unsigned pos
, int value
)
6195 return map_bound_si(map
, type
, pos
, value
, 1);
6198 __isl_give isl_set
*isl_set_lower_bound_si(__isl_take isl_set
*set
,
6199 enum isl_dim_type type
, unsigned pos
, int value
)
6201 return set_from_map(isl_map_lower_bound_si(set_to_map(set
),
6205 __isl_give isl_set
*isl_set_upper_bound_si(__isl_take isl_set
*set
,
6206 enum isl_dim_type type
, unsigned pos
, int value
)
6208 return isl_map_upper_bound_si(set
, type
, pos
, value
);
6211 /* Bound the given variable of "bmap" from below (or above is "upper"
6212 * is set) to "value".
6214 static __isl_give isl_basic_map
*basic_map_bound(
6215 __isl_take isl_basic_map
*bmap
,
6216 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
6220 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6221 return isl_basic_map_free(bmap
);
6222 pos
+= isl_basic_map_offset(bmap
, type
);
6223 bmap
= isl_basic_map_cow(bmap
);
6224 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
6225 j
= isl_basic_map_alloc_inequality(bmap
);
6228 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
6230 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
6231 isl_int_set(bmap
->ineq
[j
][0], value
);
6233 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
6234 isl_int_neg(bmap
->ineq
[j
][0], value
);
6236 bmap
= isl_basic_map_simplify(bmap
);
6237 return isl_basic_map_finalize(bmap
);
6239 isl_basic_map_free(bmap
);
6243 /* Bound the given variable of "map" from below (or above is "upper"
6244 * is set) to "value".
6246 static __isl_give isl_map
*map_bound(__isl_take isl_map
*map
,
6247 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
6251 map
= isl_map_cow(map
);
6255 if (pos
>= isl_map_dim(map
, type
))
6256 isl_die(map
->ctx
, isl_error_invalid
,
6257 "index out of bounds", goto error
);
6258 for (i
= map
->n
- 1; i
>= 0; --i
) {
6259 map
->p
[i
] = basic_map_bound(map
->p
[i
], type
, pos
, value
, upper
);
6260 if (remove_if_empty(map
, i
) < 0)
6263 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6270 __isl_give isl_map
*isl_map_lower_bound(__isl_take isl_map
*map
,
6271 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6273 return map_bound(map
, type
, pos
, value
, 0);
6276 __isl_give isl_map
*isl_map_upper_bound(__isl_take isl_map
*map
,
6277 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6279 return map_bound(map
, type
, pos
, value
, 1);
6282 __isl_give isl_set
*isl_set_lower_bound(__isl_take isl_set
*set
,
6283 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6285 return isl_map_lower_bound(set
, type
, pos
, value
);
6288 __isl_give isl_set
*isl_set_upper_bound(__isl_take isl_set
*set
,
6289 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6291 return isl_map_upper_bound(set
, type
, pos
, value
);
6294 /* Force the values of the variable at position "pos" of type "type" of "set"
6295 * to be no smaller than "value".
6297 __isl_give isl_set
*isl_set_lower_bound_val(__isl_take isl_set
*set
,
6298 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
6302 if (!isl_val_is_int(value
))
6303 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
6304 "expecting integer value", goto error
);
6305 set
= isl_set_lower_bound(set
, type
, pos
, value
->n
);
6306 isl_val_free(value
);
6309 isl_val_free(value
);
6314 /* Force the values of the variable at position "pos" of type "type" of "set"
6315 * to be no greater than "value".
6317 __isl_give isl_set
*isl_set_upper_bound_val(__isl_take isl_set
*set
,
6318 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
6322 if (!isl_val_is_int(value
))
6323 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
6324 "expecting integer value", goto error
);
6325 set
= isl_set_upper_bound(set
, type
, pos
, value
->n
);
6326 isl_val_free(value
);
6329 isl_val_free(value
);
6334 struct isl_set
*isl_set_lower_bound_dim(struct isl_set
*set
, unsigned dim
,
6339 set
= isl_set_cow(set
);
6343 isl_assert(set
->ctx
, dim
< isl_set_n_dim(set
), goto error
);
6344 for (i
= 0; i
< set
->n
; ++i
) {
6345 set
->p
[i
] = isl_basic_set_lower_bound_dim(set
->p
[i
], dim
, value
);
6355 struct isl_map
*isl_map_reverse(struct isl_map
*map
)
6359 map
= isl_map_cow(map
);
6363 map
->dim
= isl_space_reverse(map
->dim
);
6366 for (i
= 0; i
< map
->n
; ++i
) {
6367 map
->p
[i
] = isl_basic_map_reverse(map
->p
[i
]);
6371 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6379 #define TYPE isl_pw_multi_aff
6381 #define SUFFIX _pw_multi_aff
6383 #define EMPTY isl_pw_multi_aff_empty
6385 #define ADD isl_pw_multi_aff_union_add
6386 #include "isl_map_lexopt_templ.c"
6388 /* Given a map "map", compute the lexicographically minimal
6389 * (or maximal) image element for each domain element in dom,
6390 * in the form of an isl_pw_multi_aff.
6391 * If "empty" is not NULL, then set *empty to those elements in dom that
6392 * do not have an image element.
6393 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6394 * should be computed over the domain of "map". "empty" is also NULL
6397 * We first compute the lexicographically minimal or maximal element
6398 * in the first basic map. This results in a partial solution "res"
6399 * and a subset "todo" of dom that still need to be handled.
6400 * We then consider each of the remaining maps in "map" and successively
6401 * update both "res" and "todo".
6402 * If "empty" is NULL, then the todo sets are not needed and therefore
6403 * also not computed.
6405 static __isl_give isl_pw_multi_aff
*isl_map_partial_lexopt_aligned_pw_multi_aff(
6406 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6407 __isl_give isl_set
**empty
, unsigned flags
)
6411 isl_pw_multi_aff
*res
;
6414 full
= ISL_FL_ISSET(flags
, ISL_OPT_FULL
);
6415 if (!map
|| (!full
&& !dom
))
6418 if (isl_map_plain_is_empty(map
)) {
6423 return isl_pw_multi_aff_from_map(map
);
6426 res
= basic_map_partial_lexopt_pw_multi_aff(
6427 isl_basic_map_copy(map
->p
[0]),
6428 isl_set_copy(dom
), empty
, flags
);
6432 for (i
= 1; i
< map
->n
; ++i
) {
6433 isl_pw_multi_aff
*res_i
;
6435 res_i
= basic_map_partial_lexopt_pw_multi_aff(
6436 isl_basic_map_copy(map
->p
[i
]),
6437 isl_set_copy(dom
), empty
, flags
);
6439 if (ISL_FL_ISSET(flags
, ISL_OPT_MAX
))
6440 res
= isl_pw_multi_aff_union_lexmax(res
, res_i
);
6442 res
= isl_pw_multi_aff_union_lexmin(res
, res_i
);
6445 todo
= isl_set_intersect(todo
, *empty
);
6464 #define TYPE isl_map
6468 #define EMPTY isl_map_empty
6470 #define ADD isl_map_union_disjoint
6471 #include "isl_map_lexopt_templ.c"
6473 /* Given a map "map", compute the lexicographically minimal
6474 * (or maximal) image element for each domain element in "dom",
6475 * in the form of an isl_map.
6476 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6477 * do not have an image element.
6478 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6479 * should be computed over the domain of "map". "empty" is also NULL
6482 * If the input consists of more than one disjunct, then first
6483 * compute the desired result in the form of an isl_pw_multi_aff and
6484 * then convert that into an isl_map.
6486 * This function used to have an explicit implementation in terms
6487 * of isl_maps, but it would continually intersect the domains of
6488 * partial results with the complement of the domain of the next
6489 * partial solution, potentially leading to an explosion in the number
6490 * of disjuncts if there are several disjuncts in the input.
6491 * An even earlier implementation of this function would look for
6492 * better results in the domain of the partial result and for extra
6493 * results in the complement of this domain, which would lead to
6494 * even more splintering.
6496 static __isl_give isl_map
*isl_map_partial_lexopt_aligned(
6497 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6498 __isl_give isl_set
**empty
, unsigned flags
)
6501 struct isl_map
*res
;
6502 isl_pw_multi_aff
*pma
;
6504 full
= ISL_FL_ISSET(flags
, ISL_OPT_FULL
);
6505 if (!map
|| (!full
&& !dom
))
6508 if (isl_map_plain_is_empty(map
)) {
6517 res
= basic_map_partial_lexopt(isl_basic_map_copy(map
->p
[0]),
6523 pma
= isl_map_partial_lexopt_aligned_pw_multi_aff(map
, dom
, empty
,
6525 return isl_map_from_pw_multi_aff(pma
);
6534 __isl_give isl_map
*isl_map_partial_lexmax(
6535 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6536 __isl_give isl_set
**empty
)
6538 return isl_map_partial_lexopt(map
, dom
, empty
, ISL_OPT_MAX
);
6541 __isl_give isl_map
*isl_map_partial_lexmin(
6542 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6543 __isl_give isl_set
**empty
)
6545 return isl_map_partial_lexopt(map
, dom
, empty
, 0);
6548 __isl_give isl_set
*isl_set_partial_lexmin(
6549 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6550 __isl_give isl_set
**empty
)
6552 return set_from_map(isl_map_partial_lexmin(set_to_map(set
),
6556 __isl_give isl_set
*isl_set_partial_lexmax(
6557 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6558 __isl_give isl_set
**empty
)
6560 return set_from_map(isl_map_partial_lexmax(set_to_map(set
),
6564 /* Compute the lexicographic minimum (or maximum if "flags" includes
6565 * ISL_OPT_MAX) of "bset" over its parametric domain.
6567 __isl_give isl_set
*isl_basic_set_lexopt(__isl_take isl_basic_set
*bset
,
6570 return isl_basic_map_lexopt(bset
, flags
);
6573 __isl_give isl_map
*isl_basic_map_lexmax(__isl_take isl_basic_map
*bmap
)
6575 return isl_basic_map_lexopt(bmap
, ISL_OPT_MAX
);
6578 __isl_give isl_set
*isl_basic_set_lexmin(__isl_take isl_basic_set
*bset
)
6580 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset
)));
6583 __isl_give isl_set
*isl_basic_set_lexmax(__isl_take isl_basic_set
*bset
)
6585 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset
)));
6588 /* Compute the lexicographic minimum of "bset" over its parametric domain
6589 * for the purpose of quantifier elimination.
6590 * That is, find an explicit representation for all the existentially
6591 * quantified variables in "bset" by computing their lexicographic
6594 static __isl_give isl_set
*isl_basic_set_lexmin_compute_divs(
6595 __isl_take isl_basic_set
*bset
)
6597 return isl_basic_set_lexopt(bset
, ISL_OPT_QE
);
6600 /* Extract the first and only affine expression from list
6601 * and then add it to *pwaff with the given dom.
6602 * This domain is known to be disjoint from other domains
6603 * because of the way isl_basic_map_foreach_lexmax works.
6605 static int update_dim_opt(__isl_take isl_basic_set
*dom
,
6606 __isl_take isl_aff_list
*list
, void *user
)
6608 isl_ctx
*ctx
= isl_basic_set_get_ctx(dom
);
6610 isl_pw_aff
**pwaff
= user
;
6611 isl_pw_aff
*pwaff_i
;
6615 if (isl_aff_list_n_aff(list
) != 1)
6616 isl_die(ctx
, isl_error_internal
,
6617 "expecting single element list", goto error
);
6619 aff
= isl_aff_list_get_aff(list
, 0);
6620 pwaff_i
= isl_pw_aff_alloc(isl_set_from_basic_set(dom
), aff
);
6622 *pwaff
= isl_pw_aff_add_disjoint(*pwaff
, pwaff_i
);
6624 isl_aff_list_free(list
);
6628 isl_basic_set_free(dom
);
6629 isl_aff_list_free(list
);
6633 /* Given a basic map with one output dimension, compute the minimum or
6634 * maximum of that dimension as an isl_pw_aff.
6636 * The isl_pw_aff is constructed by having isl_basic_map_foreach_lexopt
6637 * call update_dim_opt on each leaf of the result.
6639 static __isl_give isl_pw_aff
*basic_map_dim_opt(__isl_keep isl_basic_map
*bmap
,
6642 isl_space
*dim
= isl_basic_map_get_space(bmap
);
6646 dim
= isl_space_from_domain(isl_space_domain(dim
));
6647 dim
= isl_space_add_dims(dim
, isl_dim_out
, 1);
6648 pwaff
= isl_pw_aff_empty(dim
);
6650 r
= isl_basic_map_foreach_lexopt(bmap
, max
, &update_dim_opt
, &pwaff
);
6652 return isl_pw_aff_free(pwaff
);
6657 /* Compute the minimum or maximum of the given output dimension
6658 * as a function of the parameters and the input dimensions,
6659 * but independently of the other output dimensions.
6661 * We first project out the other output dimension and then compute
6662 * the "lexicographic" maximum in each basic map, combining the results
6663 * using isl_pw_aff_union_max.
6665 static __isl_give isl_pw_aff
*map_dim_opt(__isl_take isl_map
*map
, int pos
,
6672 n_out
= isl_map_dim(map
, isl_dim_out
);
6673 map
= isl_map_project_out(map
, isl_dim_out
, pos
+ 1, n_out
- (pos
+ 1));
6674 map
= isl_map_project_out(map
, isl_dim_out
, 0, pos
);
6679 isl_space
*dim
= isl_map_get_space(map
);
6681 return isl_pw_aff_empty(dim
);
6684 pwaff
= basic_map_dim_opt(map
->p
[0], max
);
6685 for (i
= 1; i
< map
->n
; ++i
) {
6686 isl_pw_aff
*pwaff_i
;
6688 pwaff_i
= basic_map_dim_opt(map
->p
[i
], max
);
6689 pwaff
= isl_pw_aff_union_opt(pwaff
, pwaff_i
, max
);
6697 /* Compute the minimum of the given output dimension as a function of the
6698 * parameters and input dimensions, but independently of
6699 * the other output dimensions.
6701 __isl_give isl_pw_aff
*isl_map_dim_min(__isl_take isl_map
*map
, int pos
)
6703 return map_dim_opt(map
, pos
, 0);
6706 /* Compute the maximum of the given output dimension as a function of the
6707 * parameters and input dimensions, but independently of
6708 * the other output dimensions.
6710 __isl_give isl_pw_aff
*isl_map_dim_max(__isl_take isl_map
*map
, int pos
)
6712 return map_dim_opt(map
, pos
, 1);
6715 /* Compute the minimum or maximum of the given set dimension
6716 * as a function of the parameters,
6717 * but independently of the other set dimensions.
6719 static __isl_give isl_pw_aff
*set_dim_opt(__isl_take isl_set
*set
, int pos
,
6722 return map_dim_opt(set
, pos
, max
);
6725 /* Compute the maximum of the given set dimension as a function of the
6726 * parameters, but independently of the other set dimensions.
6728 __isl_give isl_pw_aff
*isl_set_dim_max(__isl_take isl_set
*set
, int pos
)
6730 return set_dim_opt(set
, pos
, 1);
6733 /* Compute the minimum of the given set dimension as a function of the
6734 * parameters, but independently of the other set dimensions.
6736 __isl_give isl_pw_aff
*isl_set_dim_min(__isl_take isl_set
*set
, int pos
)
6738 return set_dim_opt(set
, pos
, 0);
6741 /* Apply a preimage specified by "mat" on the parameters of "bset".
6742 * bset is assumed to have only parameters and divs.
6744 static struct isl_basic_set
*basic_set_parameter_preimage(
6745 struct isl_basic_set
*bset
, struct isl_mat
*mat
)
6752 bset
->dim
= isl_space_cow(bset
->dim
);
6756 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6758 isl_assert(bset
->ctx
, mat
->n_row
== 1 + nparam
, goto error
);
6760 bset
->dim
->nparam
= 0;
6761 bset
->dim
->n_out
= nparam
;
6762 bset
= isl_basic_set_preimage(bset
, mat
);
6764 bset
->dim
->nparam
= bset
->dim
->n_out
;
6765 bset
->dim
->n_out
= 0;
6770 isl_basic_set_free(bset
);
6774 /* Apply a preimage specified by "mat" on the parameters of "set".
6775 * set is assumed to have only parameters and divs.
6777 static __isl_give isl_set
*set_parameter_preimage(__isl_take isl_set
*set
,
6778 __isl_take isl_mat
*mat
)
6786 nparam
= isl_set_dim(set
, isl_dim_param
);
6788 if (mat
->n_row
!= 1 + nparam
)
6789 isl_die(isl_set_get_ctx(set
), isl_error_internal
,
6790 "unexpected number of rows", goto error
);
6792 space
= isl_set_get_space(set
);
6793 space
= isl_space_move_dims(space
, isl_dim_set
, 0,
6794 isl_dim_param
, 0, nparam
);
6795 set
= isl_set_reset_space(set
, space
);
6796 set
= isl_set_preimage(set
, mat
);
6797 nparam
= isl_set_dim(set
, isl_dim_out
);
6798 space
= isl_set_get_space(set
);
6799 space
= isl_space_move_dims(space
, isl_dim_param
, 0,
6800 isl_dim_out
, 0, nparam
);
6801 set
= isl_set_reset_space(set
, space
);
6809 /* Intersect the basic set "bset" with the affine space specified by the
6810 * equalities in "eq".
6812 static struct isl_basic_set
*basic_set_append_equalities(
6813 struct isl_basic_set
*bset
, struct isl_mat
*eq
)
6821 bset
= isl_basic_set_extend_space(bset
, isl_space_copy(bset
->dim
), 0,
6826 len
= 1 + isl_space_dim(bset
->dim
, isl_dim_all
) + bset
->extra
;
6827 for (i
= 0; i
< eq
->n_row
; ++i
) {
6828 k
= isl_basic_set_alloc_equality(bset
);
6831 isl_seq_cpy(bset
->eq
[k
], eq
->row
[i
], eq
->n_col
);
6832 isl_seq_clr(bset
->eq
[k
] + eq
->n_col
, len
- eq
->n_col
);
6836 bset
= isl_basic_set_gauss(bset
, NULL
);
6837 bset
= isl_basic_set_finalize(bset
);
6842 isl_basic_set_free(bset
);
6846 /* Intersect the set "set" with the affine space specified by the
6847 * equalities in "eq".
6849 static struct isl_set
*set_append_equalities(struct isl_set
*set
,
6857 for (i
= 0; i
< set
->n
; ++i
) {
6858 set
->p
[i
] = basic_set_append_equalities(set
->p
[i
],
6871 /* Given a basic set "bset" that only involves parameters and existentially
6872 * quantified variables, return the index of the first equality
6873 * that only involves parameters. If there is no such equality then
6874 * return bset->n_eq.
6876 * This function assumes that isl_basic_set_gauss has been called on "bset".
6878 static int first_parameter_equality(__isl_keep isl_basic_set
*bset
)
6881 unsigned nparam
, n_div
;
6886 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6887 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
6889 for (i
= 0, j
= n_div
- 1; i
< bset
->n_eq
&& j
>= 0; --j
) {
6890 if (!isl_int_is_zero(bset
->eq
[i
][1 + nparam
+ j
]))
6897 /* Compute an explicit representation for the existentially quantified
6898 * variables in "bset" by computing the "minimal value" of the set
6899 * variables. Since there are no set variables, the computation of
6900 * the minimal value essentially computes an explicit representation
6901 * of the non-empty part(s) of "bset".
6903 * The input only involves parameters and existentially quantified variables.
6904 * All equalities among parameters have been removed.
6906 * Since the existentially quantified variables in the result are in general
6907 * going to be different from those in the input, we first replace
6908 * them by the minimal number of variables based on their equalities.
6909 * This should simplify the parametric integer programming.
6911 static __isl_give isl_set
*base_compute_divs(__isl_take isl_basic_set
*bset
)
6913 isl_morph
*morph1
, *morph2
;
6919 if (bset
->n_eq
== 0)
6920 return isl_basic_set_lexmin_compute_divs(bset
);
6922 morph1
= isl_basic_set_parameter_compression(bset
);
6923 bset
= isl_morph_basic_set(isl_morph_copy(morph1
), bset
);
6924 bset
= isl_basic_set_lift(bset
);
6925 morph2
= isl_basic_set_variable_compression(bset
, isl_dim_set
);
6926 bset
= isl_morph_basic_set(morph2
, bset
);
6927 n
= isl_basic_set_dim(bset
, isl_dim_set
);
6928 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
6930 set
= isl_basic_set_lexmin_compute_divs(bset
);
6932 set
= isl_morph_set(isl_morph_inverse(morph1
), set
);
6937 /* Project the given basic set onto its parameter domain, possibly introducing
6938 * new, explicit, existential variables in the constraints.
6939 * The input has parameters and (possibly implicit) existential variables.
6940 * The output has the same parameters, but only
6941 * explicit existentially quantified variables.
6943 * The actual projection is performed by pip, but pip doesn't seem
6944 * to like equalities very much, so we first remove the equalities
6945 * among the parameters by performing a variable compression on
6946 * the parameters. Afterward, an inverse transformation is performed
6947 * and the equalities among the parameters are inserted back in.
6949 * The variable compression on the parameters may uncover additional
6950 * equalities that were only implicit before. We therefore check
6951 * if there are any new parameter equalities in the result and
6952 * if so recurse. The removal of parameter equalities is required
6953 * for the parameter compression performed by base_compute_divs.
6955 static struct isl_set
*parameter_compute_divs(struct isl_basic_set
*bset
)
6959 struct isl_mat
*T
, *T2
;
6960 struct isl_set
*set
;
6963 bset
= isl_basic_set_cow(bset
);
6967 if (bset
->n_eq
== 0)
6968 return base_compute_divs(bset
);
6970 bset
= isl_basic_set_gauss(bset
, NULL
);
6973 if (isl_basic_set_plain_is_empty(bset
))
6974 return isl_set_from_basic_set(bset
);
6976 i
= first_parameter_equality(bset
);
6977 if (i
== bset
->n_eq
)
6978 return base_compute_divs(bset
);
6980 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6981 eq
= isl_mat_sub_alloc6(bset
->ctx
, bset
->eq
, i
, bset
->n_eq
- i
,
6983 eq
= isl_mat_cow(eq
);
6984 T
= isl_mat_variable_compression(isl_mat_copy(eq
), &T2
);
6985 if (T
&& T
->n_col
== 0) {
6989 bset
= isl_basic_set_set_to_empty(bset
);
6990 return isl_set_from_basic_set(bset
);
6992 bset
= basic_set_parameter_preimage(bset
, T
);
6994 i
= first_parameter_equality(bset
);
6997 else if (i
== bset
->n_eq
)
6998 set
= base_compute_divs(bset
);
7000 set
= parameter_compute_divs(bset
);
7001 set
= set_parameter_preimage(set
, T2
);
7002 set
= set_append_equalities(set
, eq
);
7006 /* Insert the divs from "ls" before those of "bmap".
7008 * The number of columns is not changed, which means that the last
7009 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7010 * The caller is responsible for removing the same number of dimensions
7011 * from the space of "bmap".
7013 static __isl_give isl_basic_map
*insert_divs_from_local_space(
7014 __isl_take isl_basic_map
*bmap
, __isl_keep isl_local_space
*ls
)
7020 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
7024 old_n_div
= bmap
->n_div
;
7025 bmap
= insert_div_rows(bmap
, n_div
);
7029 for (i
= 0; i
< n_div
; ++i
) {
7030 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], ls
->div
->n_col
);
7031 isl_seq_clr(bmap
->div
[i
] + ls
->div
->n_col
, old_n_div
);
7037 /* Replace the space of "bmap" by the space and divs of "ls".
7039 * If "ls" has any divs, then we simplify the result since we may
7040 * have discovered some additional equalities that could simplify
7041 * the div expressions.
7043 static __isl_give isl_basic_map
*basic_replace_space_by_local_space(
7044 __isl_take isl_basic_map
*bmap
, __isl_take isl_local_space
*ls
)
7048 bmap
= isl_basic_map_cow(bmap
);
7052 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
7053 bmap
= insert_divs_from_local_space(bmap
, ls
);
7057 isl_space_free(bmap
->dim
);
7058 bmap
->dim
= isl_local_space_get_space(ls
);
7062 isl_local_space_free(ls
);
7064 bmap
= isl_basic_map_simplify(bmap
);
7065 bmap
= isl_basic_map_finalize(bmap
);
7068 isl_basic_map_free(bmap
);
7069 isl_local_space_free(ls
);
7073 /* Replace the space of "map" by the space and divs of "ls".
7075 static __isl_give isl_map
*replace_space_by_local_space(__isl_take isl_map
*map
,
7076 __isl_take isl_local_space
*ls
)
7080 map
= isl_map_cow(map
);
7084 for (i
= 0; i
< map
->n
; ++i
) {
7085 map
->p
[i
] = basic_replace_space_by_local_space(map
->p
[i
],
7086 isl_local_space_copy(ls
));
7090 isl_space_free(map
->dim
);
7091 map
->dim
= isl_local_space_get_space(ls
);
7095 isl_local_space_free(ls
);
7098 isl_local_space_free(ls
);
7103 /* Compute an explicit representation for the existentially
7104 * quantified variables for which do not know any explicit representation yet.
7106 * We first sort the existentially quantified variables so that the
7107 * existentially quantified variables for which we already have an explicit
7108 * representation are placed before those for which we do not.
7109 * The input dimensions, the output dimensions and the existentially
7110 * quantified variables for which we already have an explicit
7111 * representation are then turned into parameters.
7112 * compute_divs returns a map with the same parameters and
7113 * no input or output dimensions and the dimension specification
7114 * is reset to that of the input, including the existentially quantified
7115 * variables for which we already had an explicit representation.
7117 static struct isl_map
*compute_divs(struct isl_basic_map
*bmap
)
7119 struct isl_basic_set
*bset
;
7120 struct isl_set
*set
;
7121 struct isl_map
*map
;
7123 isl_local_space
*ls
;
7130 bmap
= isl_basic_map_sort_divs(bmap
);
7131 bmap
= isl_basic_map_cow(bmap
);
7135 n_known
= isl_basic_map_first_unknown_div(bmap
);
7137 return isl_map_from_basic_map(isl_basic_map_free(bmap
));
7139 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
7140 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
7141 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
7142 dim
= isl_space_set_alloc(bmap
->ctx
,
7143 nparam
+ n_in
+ n_out
+ n_known
, 0);
7147 ls
= isl_basic_map_get_local_space(bmap
);
7148 ls
= isl_local_space_drop_dims(ls
, isl_dim_div
,
7149 n_known
, bmap
->n_div
- n_known
);
7151 for (i
= n_known
; i
< bmap
->n_div
; ++i
)
7152 swap_div(bmap
, i
- n_known
, i
);
7153 bmap
->n_div
-= n_known
;
7154 bmap
->extra
-= n_known
;
7156 bmap
= isl_basic_map_reset_space(bmap
, dim
);
7157 bset
= bset_from_bmap(bmap
);
7159 set
= parameter_compute_divs(bset
);
7160 map
= set_to_map(set
);
7161 map
= replace_space_by_local_space(map
, ls
);
7165 isl_basic_map_free(bmap
);
7169 /* Remove the explicit representation of local variable "div",
7172 __isl_give isl_basic_map
*isl_basic_map_mark_div_unknown(
7173 __isl_take isl_basic_map
*bmap
, int div
)
7177 unknown
= isl_basic_map_div_is_marked_unknown(bmap
, div
);
7179 return isl_basic_map_free(bmap
);
7183 bmap
= isl_basic_map_cow(bmap
);
7186 isl_int_set_si(bmap
->div
[div
][0], 0);
7190 /* Is local variable "div" of "bmap" marked as not having an explicit
7192 * Note that even if "div" is not marked in this way and therefore
7193 * has an explicit representation, this representation may still
7194 * depend (indirectly) on other local variables that do not
7195 * have an explicit representation.
7197 isl_bool
isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map
*bmap
,
7200 if (isl_basic_map_check_range(bmap
, isl_dim_div
, div
, 1) < 0)
7201 return isl_bool_error
;
7202 return isl_int_is_zero(bmap
->div
[div
][0]);
7205 /* Return the position of the first local variable that does not
7206 * have an explicit representation.
7207 * Return the total number of local variables if they all have
7208 * an explicit representation.
7209 * Return -1 on error.
7211 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map
*bmap
)
7218 for (i
= 0; i
< bmap
->n_div
; ++i
) {
7219 if (!isl_basic_map_div_is_known(bmap
, i
))
7225 /* Return the position of the first local variable that does not
7226 * have an explicit representation.
7227 * Return the total number of local variables if they all have
7228 * an explicit representation.
7229 * Return -1 on error.
7231 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set
*bset
)
7233 return isl_basic_map_first_unknown_div(bset
);
7236 /* Does "bmap" have an explicit representation for all local variables?
7238 isl_bool
isl_basic_map_divs_known(__isl_keep isl_basic_map
*bmap
)
7242 n
= isl_basic_map_dim(bmap
, isl_dim_div
);
7243 first
= isl_basic_map_first_unknown_div(bmap
);
7245 return isl_bool_error
;
7249 /* Do all basic maps in "map" have an explicit representation
7250 * for all local variables?
7252 isl_bool
isl_map_divs_known(__isl_keep isl_map
*map
)
7257 return isl_bool_error
;
7259 for (i
= 0; i
< map
->n
; ++i
) {
7260 int known
= isl_basic_map_divs_known(map
->p
[i
]);
7265 return isl_bool_true
;
7268 /* If bmap contains any unknown divs, then compute explicit
7269 * expressions for them. However, this computation may be
7270 * quite expensive, so first try to remove divs that aren't
7273 struct isl_map
*isl_basic_map_compute_divs(struct isl_basic_map
*bmap
)
7276 struct isl_map
*map
;
7278 known
= isl_basic_map_divs_known(bmap
);
7282 return isl_map_from_basic_map(bmap
);
7284 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
7286 known
= isl_basic_map_divs_known(bmap
);
7290 return isl_map_from_basic_map(bmap
);
7292 map
= compute_divs(bmap
);
7295 isl_basic_map_free(bmap
);
7299 struct isl_map
*isl_map_compute_divs(struct isl_map
*map
)
7303 struct isl_map
*res
;
7310 known
= isl_map_divs_known(map
);
7318 res
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[0]));
7319 for (i
= 1 ; i
< map
->n
; ++i
) {
7321 r2
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[i
]));
7322 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
))
7323 res
= isl_map_union_disjoint(res
, r2
);
7325 res
= isl_map_union(res
, r2
);
7332 struct isl_set
*isl_basic_set_compute_divs(struct isl_basic_set
*bset
)
7334 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset
)));
7337 struct isl_set
*isl_set_compute_divs(struct isl_set
*set
)
7339 return set_from_map(isl_map_compute_divs(set_to_map(set
)));
7342 struct isl_set
*isl_map_domain(struct isl_map
*map
)
7345 struct isl_set
*set
;
7350 map
= isl_map_cow(map
);
7354 set
= set_from_map(map
);
7355 set
->dim
= isl_space_domain(set
->dim
);
7358 for (i
= 0; i
< map
->n
; ++i
) {
7359 set
->p
[i
] = isl_basic_map_domain(map
->p
[i
]);
7363 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
7364 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
7371 /* Return the union of "map1" and "map2", where we assume for now that
7372 * "map1" and "map2" are disjoint. Note that the basic maps inside
7373 * "map1" or "map2" may not be disjoint from each other.
7374 * Also note that this function is also called from isl_map_union,
7375 * which takes care of handling the situation where "map1" and "map2"
7376 * may not be disjoint.
7378 * If one of the inputs is empty, we can simply return the other input.
7379 * Similarly, if one of the inputs is universal, then it is equal to the union.
7381 static __isl_give isl_map
*map_union_disjoint(__isl_take isl_map
*map1
,
7382 __isl_take isl_map
*map2
)
7386 struct isl_map
*map
= NULL
;
7392 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
7393 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
7394 "spaces don't match", goto error
);
7405 is_universe
= isl_map_plain_is_universe(map1
);
7406 if (is_universe
< 0)
7413 is_universe
= isl_map_plain_is_universe(map2
);
7414 if (is_universe
< 0)
7421 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
7422 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
7423 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7425 map
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
7426 map1
->n
+ map2
->n
, flags
);
7429 for (i
= 0; i
< map1
->n
; ++i
) {
7430 map
= isl_map_add_basic_map(map
,
7431 isl_basic_map_copy(map1
->p
[i
]));
7435 for (i
= 0; i
< map2
->n
; ++i
) {
7436 map
= isl_map_add_basic_map(map
,
7437 isl_basic_map_copy(map2
->p
[i
]));
7451 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7452 * guaranteed to be disjoint by the caller.
7454 * Note that this functions is called from within isl_map_make_disjoint,
7455 * so we have to be careful not to touch the constraints of the inputs
7458 __isl_give isl_map
*isl_map_union_disjoint(__isl_take isl_map
*map1
,
7459 __isl_take isl_map
*map2
)
7461 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_disjoint
);
7464 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7465 * not be disjoint. The parameters are assumed to have been aligned.
7467 * We currently simply call map_union_disjoint, the internal operation
7468 * of which does not really depend on the inputs being disjoint.
7469 * If the result contains more than one basic map, then we clear
7470 * the disjoint flag since the result may contain basic maps from
7471 * both inputs and these are not guaranteed to be disjoint.
7473 * As a special case, if "map1" and "map2" are obviously equal,
7474 * then we simply return "map1".
7476 static __isl_give isl_map
*map_union_aligned(__isl_take isl_map
*map1
,
7477 __isl_take isl_map
*map2
)
7484 equal
= isl_map_plain_is_equal(map1
, map2
);
7492 map1
= map_union_disjoint(map1
, map2
);
7496 ISL_F_CLR(map1
, ISL_MAP_DISJOINT
);
7504 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7507 __isl_give isl_map
*isl_map_union(__isl_take isl_map
*map1
,
7508 __isl_take isl_map
*map2
)
7510 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_aligned
);
7513 struct isl_set
*isl_set_union_disjoint(
7514 struct isl_set
*set1
, struct isl_set
*set2
)
7516 return set_from_map(isl_map_union_disjoint(set_to_map(set1
),
7520 struct isl_set
*isl_set_union(struct isl_set
*set1
, struct isl_set
*set2
)
7522 return set_from_map(isl_map_union(set_to_map(set1
), set_to_map(set2
)));
7525 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7528 * "map" and "set" are assumed to be compatible and non-NULL.
7530 static __isl_give isl_map
*map_intersect_set(__isl_take isl_map
*map
,
7531 __isl_take isl_set
*set
,
7532 __isl_give isl_basic_map
*fn(__isl_take isl_basic_map
*bmap
,
7533 __isl_take isl_basic_set
*bset
))
7536 struct isl_map
*result
;
7539 if (isl_set_plain_is_universe(set
)) {
7544 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
) &&
7545 ISL_F_ISSET(set
, ISL_MAP_DISJOINT
))
7546 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7548 result
= isl_map_alloc_space(isl_space_copy(map
->dim
),
7549 map
->n
* set
->n
, flags
);
7550 for (i
= 0; result
&& i
< map
->n
; ++i
)
7551 for (j
= 0; j
< set
->n
; ++j
) {
7552 result
= isl_map_add_basic_map(result
,
7553 fn(isl_basic_map_copy(map
->p
[i
]),
7554 isl_basic_set_copy(set
->p
[j
])));
7564 static __isl_give isl_map
*map_intersect_range(__isl_take isl_map
*map
,
7565 __isl_take isl_set
*set
)
7569 ok
= isl_map_compatible_range(map
, set
);
7573 isl_die(set
->ctx
, isl_error_invalid
,
7574 "incompatible spaces", goto error
);
7576 return map_intersect_set(map
, set
, &isl_basic_map_intersect_range
);
7583 __isl_give isl_map
*isl_map_intersect_range(__isl_take isl_map
*map
,
7584 __isl_take isl_set
*set
)
7586 return isl_map_align_params_map_map_and(map
, set
, &map_intersect_range
);
7589 static __isl_give isl_map
*map_intersect_domain(__isl_take isl_map
*map
,
7590 __isl_take isl_set
*set
)
7594 ok
= isl_map_compatible_domain(map
, set
);
7598 isl_die(set
->ctx
, isl_error_invalid
,
7599 "incompatible spaces", goto error
);
7601 return map_intersect_set(map
, set
, &isl_basic_map_intersect_domain
);
7608 __isl_give isl_map
*isl_map_intersect_domain(__isl_take isl_map
*map
,
7609 __isl_take isl_set
*set
)
7611 return isl_map_align_params_map_map_and(map
, set
,
7612 &map_intersect_domain
);
7615 static __isl_give isl_map
*map_apply_domain(__isl_take isl_map
*map1
,
7616 __isl_take isl_map
*map2
)
7620 map1
= isl_map_reverse(map1
);
7621 map1
= isl_map_apply_range(map1
, map2
);
7622 return isl_map_reverse(map1
);
7629 __isl_give isl_map
*isl_map_apply_domain(__isl_take isl_map
*map1
,
7630 __isl_take isl_map
*map2
)
7632 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_domain
);
7635 static __isl_give isl_map
*map_apply_range(__isl_take isl_map
*map1
,
7636 __isl_take isl_map
*map2
)
7638 isl_space
*dim_result
;
7639 struct isl_map
*result
;
7645 dim_result
= isl_space_join(isl_space_copy(map1
->dim
),
7646 isl_space_copy(map2
->dim
));
7648 result
= isl_map_alloc_space(dim_result
, map1
->n
* map2
->n
, 0);
7651 for (i
= 0; i
< map1
->n
; ++i
)
7652 for (j
= 0; j
< map2
->n
; ++j
) {
7653 result
= isl_map_add_basic_map(result
,
7654 isl_basic_map_apply_range(
7655 isl_basic_map_copy(map1
->p
[i
]),
7656 isl_basic_map_copy(map2
->p
[j
])));
7662 if (result
&& result
->n
<= 1)
7663 ISL_F_SET(result
, ISL_MAP_DISJOINT
);
7671 __isl_give isl_map
*isl_map_apply_range(__isl_take isl_map
*map1
,
7672 __isl_take isl_map
*map2
)
7674 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_range
);
7678 * returns range - domain
7680 struct isl_basic_set
*isl_basic_map_deltas(struct isl_basic_map
*bmap
)
7682 isl_space
*target_space
;
7683 struct isl_basic_set
*bset
;
7690 isl_assert(bmap
->ctx
, isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
7691 bmap
->dim
, isl_dim_out
),
7693 target_space
= isl_space_domain(isl_basic_map_get_space(bmap
));
7694 dim
= isl_basic_map_n_in(bmap
);
7695 nparam
= isl_basic_map_n_param(bmap
);
7696 bmap
= isl_basic_map_from_range(isl_basic_map_wrap(bmap
));
7697 bmap
= isl_basic_map_add_dims(bmap
, isl_dim_in
, dim
);
7698 bmap
= isl_basic_map_extend_constraints(bmap
, dim
, 0);
7699 for (i
= 0; i
< dim
; ++i
) {
7700 int j
= isl_basic_map_alloc_equality(bmap
);
7702 bmap
= isl_basic_map_free(bmap
);
7705 isl_seq_clr(bmap
->eq
[j
], 1 + isl_basic_map_total_dim(bmap
));
7706 isl_int_set_si(bmap
->eq
[j
][1+nparam
+i
], 1);
7707 isl_int_set_si(bmap
->eq
[j
][1+nparam
+dim
+i
], 1);
7708 isl_int_set_si(bmap
->eq
[j
][1+nparam
+2*dim
+i
], -1);
7710 bset
= isl_basic_map_domain(bmap
);
7711 bset
= isl_basic_set_reset_space(bset
, target_space
);
7714 isl_basic_map_free(bmap
);
7719 * returns range - domain
7721 __isl_give isl_set
*isl_map_deltas(__isl_take isl_map
*map
)
7725 struct isl_set
*result
;
7730 isl_assert(map
->ctx
, isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
7731 map
->dim
, isl_dim_out
),
7733 dim
= isl_map_get_space(map
);
7734 dim
= isl_space_domain(dim
);
7735 result
= isl_set_alloc_space(dim
, map
->n
, 0);
7738 for (i
= 0; i
< map
->n
; ++i
)
7739 result
= isl_set_add_basic_set(result
,
7740 isl_basic_map_deltas(isl_basic_map_copy(map
->p
[i
])));
7749 * returns [domain -> range] -> range - domain
7751 __isl_give isl_basic_map
*isl_basic_map_deltas_map(
7752 __isl_take isl_basic_map
*bmap
)
7756 isl_basic_map
*domain
;
7760 if (!isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
7761 bmap
->dim
, isl_dim_out
))
7762 isl_die(bmap
->ctx
, isl_error_invalid
,
7763 "domain and range don't match", goto error
);
7765 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
7766 n
= isl_basic_map_dim(bmap
, isl_dim_in
);
7768 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
7769 domain
= isl_basic_map_universe(dim
);
7771 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
7772 bmap
= isl_basic_map_apply_range(bmap
, domain
);
7773 bmap
= isl_basic_map_extend_constraints(bmap
, n
, 0);
7775 total
= isl_basic_map_total_dim(bmap
);
7777 for (i
= 0; i
< n
; ++i
) {
7778 k
= isl_basic_map_alloc_equality(bmap
);
7781 isl_seq_clr(bmap
->eq
[k
], 1 + total
);
7782 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ i
], 1);
7783 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ i
], -1);
7784 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ n
+ i
], 1);
7787 bmap
= isl_basic_map_gauss(bmap
, NULL
);
7788 return isl_basic_map_finalize(bmap
);
7790 isl_basic_map_free(bmap
);
7795 * returns [domain -> range] -> range - domain
7797 __isl_give isl_map
*isl_map_deltas_map(__isl_take isl_map
*map
)
7800 isl_space
*domain_dim
;
7805 if (!isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
7806 map
->dim
, isl_dim_out
))
7807 isl_die(map
->ctx
, isl_error_invalid
,
7808 "domain and range don't match", goto error
);
7810 map
= isl_map_cow(map
);
7814 domain_dim
= isl_space_from_range(isl_space_domain(isl_map_get_space(map
)));
7815 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
7816 map
->dim
= isl_space_join(map
->dim
, domain_dim
);
7819 for (i
= 0; i
< map
->n
; ++i
) {
7820 map
->p
[i
] = isl_basic_map_deltas_map(map
->p
[i
]);
7824 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
7831 static __isl_give isl_basic_map
*basic_map_identity(__isl_take isl_space
*dims
)
7833 struct isl_basic_map
*bmap
;
7841 nparam
= dims
->nparam
;
7843 bmap
= isl_basic_map_alloc_space(dims
, 0, dim
, 0);
7847 for (i
= 0; i
< dim
; ++i
) {
7848 int j
= isl_basic_map_alloc_equality(bmap
);
7851 isl_seq_clr(bmap
->eq
[j
], 1 + isl_basic_map_total_dim(bmap
));
7852 isl_int_set_si(bmap
->eq
[j
][1+nparam
+i
], 1);
7853 isl_int_set_si(bmap
->eq
[j
][1+nparam
+dim
+i
], -1);
7855 return isl_basic_map_finalize(bmap
);
7857 isl_basic_map_free(bmap
);
7861 __isl_give isl_basic_map
*isl_basic_map_identity(__isl_take isl_space
*dim
)
7865 if (dim
->n_in
!= dim
->n_out
)
7866 isl_die(dim
->ctx
, isl_error_invalid
,
7867 "number of input and output dimensions needs to be "
7868 "the same", goto error
);
7869 return basic_map_identity(dim
);
7871 isl_space_free(dim
);
7875 __isl_give isl_map
*isl_map_identity(__isl_take isl_space
*dim
)
7877 return isl_map_from_basic_map(isl_basic_map_identity(dim
));
7880 __isl_give isl_map
*isl_set_identity(__isl_take isl_set
*set
)
7882 isl_space
*dim
= isl_set_get_space(set
);
7884 id
= isl_map_identity(isl_space_map_from_set(dim
));
7885 return isl_map_intersect_range(id
, set
);
7888 /* Construct a basic set with all set dimensions having only non-negative
7891 __isl_give isl_basic_set
*isl_basic_set_positive_orthant(
7892 __isl_take isl_space
*space
)
7897 struct isl_basic_set
*bset
;
7901 nparam
= space
->nparam
;
7903 bset
= isl_basic_set_alloc_space(space
, 0, 0, dim
);
7906 for (i
= 0; i
< dim
; ++i
) {
7907 int k
= isl_basic_set_alloc_inequality(bset
);
7910 isl_seq_clr(bset
->ineq
[k
], 1 + isl_basic_set_total_dim(bset
));
7911 isl_int_set_si(bset
->ineq
[k
][1 + nparam
+ i
], 1);
7915 isl_basic_set_free(bset
);
7919 /* Construct the half-space x_pos >= 0.
7921 static __isl_give isl_basic_set
*nonneg_halfspace(__isl_take isl_space
*dim
,
7925 isl_basic_set
*nonneg
;
7927 nonneg
= isl_basic_set_alloc_space(dim
, 0, 0, 1);
7928 k
= isl_basic_set_alloc_inequality(nonneg
);
7931 isl_seq_clr(nonneg
->ineq
[k
], 1 + isl_basic_set_total_dim(nonneg
));
7932 isl_int_set_si(nonneg
->ineq
[k
][pos
], 1);
7934 return isl_basic_set_finalize(nonneg
);
7936 isl_basic_set_free(nonneg
);
7940 /* Construct the half-space x_pos <= -1.
7942 static __isl_give isl_basic_set
*neg_halfspace(__isl_take isl_space
*dim
, int pos
)
7947 neg
= isl_basic_set_alloc_space(dim
, 0, 0, 1);
7948 k
= isl_basic_set_alloc_inequality(neg
);
7951 isl_seq_clr(neg
->ineq
[k
], 1 + isl_basic_set_total_dim(neg
));
7952 isl_int_set_si(neg
->ineq
[k
][0], -1);
7953 isl_int_set_si(neg
->ineq
[k
][pos
], -1);
7955 return isl_basic_set_finalize(neg
);
7957 isl_basic_set_free(neg
);
7961 __isl_give isl_set
*isl_set_split_dims(__isl_take isl_set
*set
,
7962 enum isl_dim_type type
, unsigned first
, unsigned n
)
7966 isl_basic_set
*nonneg
;
7974 isl_assert(set
->ctx
, first
+ n
<= isl_set_dim(set
, type
), goto error
);
7976 offset
= pos(set
->dim
, type
);
7977 for (i
= 0; i
< n
; ++i
) {
7978 nonneg
= nonneg_halfspace(isl_set_get_space(set
),
7979 offset
+ first
+ i
);
7980 neg
= neg_halfspace(isl_set_get_space(set
), offset
+ first
+ i
);
7982 set
= isl_set_intersect(set
, isl_basic_set_union(nonneg
, neg
));
7991 static int foreach_orthant(__isl_take isl_set
*set
, int *signs
, int first
,
7992 int len
, int (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
7999 if (isl_set_plain_is_empty(set
)) {
8004 return fn(set
, signs
, user
);
8007 half
= isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set
),
8009 half
= isl_set_intersect(half
, isl_set_copy(set
));
8010 if (foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
) < 0)
8014 half
= isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set
),
8016 half
= isl_set_intersect(half
, set
);
8017 return foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
);
8023 /* Call "fn" on the intersections of "set" with each of the orthants
8024 * (except for obviously empty intersections). The orthant is identified
8025 * by the signs array, with each entry having value 1 or -1 according
8026 * to the sign of the corresponding variable.
8028 int isl_set_foreach_orthant(__isl_keep isl_set
*set
,
8029 int (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
8039 if (isl_set_plain_is_empty(set
))
8042 nparam
= isl_set_dim(set
, isl_dim_param
);
8043 nvar
= isl_set_dim(set
, isl_dim_set
);
8045 signs
= isl_alloc_array(set
->ctx
, int, nparam
+ nvar
);
8047 r
= foreach_orthant(isl_set_copy(set
), signs
, 0, nparam
+ nvar
,
8055 isl_bool
isl_set_is_equal(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
8057 return isl_map_is_equal(set_to_map(set1
), set_to_map(set2
));
8060 isl_bool
isl_basic_map_is_subset(__isl_keep isl_basic_map
*bmap1
,
8061 __isl_keep isl_basic_map
*bmap2
)
8064 struct isl_map
*map1
;
8065 struct isl_map
*map2
;
8067 if (!bmap1
|| !bmap2
)
8068 return isl_bool_error
;
8070 map1
= isl_map_from_basic_map(isl_basic_map_copy(bmap1
));
8071 map2
= isl_map_from_basic_map(isl_basic_map_copy(bmap2
));
8073 is_subset
= isl_map_is_subset(map1
, map2
);
8081 isl_bool
isl_basic_set_is_subset(__isl_keep isl_basic_set
*bset1
,
8082 __isl_keep isl_basic_set
*bset2
)
8084 return isl_basic_map_is_subset(bset1
, bset2
);
8087 isl_bool
isl_basic_map_is_equal(__isl_keep isl_basic_map
*bmap1
,
8088 __isl_keep isl_basic_map
*bmap2
)
8092 if (!bmap1
|| !bmap2
)
8093 return isl_bool_error
;
8094 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
8095 if (is_subset
!= isl_bool_true
)
8097 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
8101 isl_bool
isl_basic_set_is_equal(__isl_keep isl_basic_set
*bset1
,
8102 __isl_keep isl_basic_set
*bset2
)
8104 return isl_basic_map_is_equal(
8105 bset_to_bmap(bset1
), bset_to_bmap(bset2
));
8108 isl_bool
isl_map_is_empty(__isl_keep isl_map
*map
)
8114 return isl_bool_error
;
8115 for (i
= 0; i
< map
->n
; ++i
) {
8116 is_empty
= isl_basic_map_is_empty(map
->p
[i
]);
8118 return isl_bool_error
;
8120 return isl_bool_false
;
8122 return isl_bool_true
;
8125 isl_bool
isl_map_plain_is_empty(__isl_keep isl_map
*map
)
8127 return map
? map
->n
== 0 : isl_bool_error
;
8130 isl_bool
isl_set_plain_is_empty(__isl_keep isl_set
*set
)
8132 return set
? set
->n
== 0 : isl_bool_error
;
8135 isl_bool
isl_set_is_empty(__isl_keep isl_set
*set
)
8137 return isl_map_is_empty(set_to_map(set
));
8140 isl_bool
isl_map_has_equal_space(__isl_keep isl_map
*map1
,
8141 __isl_keep isl_map
*map2
)
8144 return isl_bool_error
;
8146 return isl_space_is_equal(map1
->dim
, map2
->dim
);
8149 isl_bool
isl_set_has_equal_space(__isl_keep isl_set
*set1
,
8150 __isl_keep isl_set
*set2
)
8153 return isl_bool_error
;
8155 return isl_space_is_equal(set1
->dim
, set2
->dim
);
8158 static isl_bool
map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
8163 return isl_bool_error
;
8164 is_subset
= isl_map_is_subset(map1
, map2
);
8165 if (is_subset
!= isl_bool_true
)
8167 is_subset
= isl_map_is_subset(map2
, map1
);
8171 /* Is "map1" equal to "map2"?
8173 * First check if they are obviously equal.
8174 * If not, then perform a more detailed analysis.
8176 isl_bool
isl_map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
8180 equal
= isl_map_plain_is_equal(map1
, map2
);
8181 if (equal
< 0 || equal
)
8183 return isl_map_align_params_map_map_and_test(map1
, map2
, &map_is_equal
);
8186 isl_bool
isl_basic_map_is_strict_subset(
8187 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
8191 if (!bmap1
|| !bmap2
)
8192 return isl_bool_error
;
8193 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
8194 if (is_subset
!= isl_bool_true
)
8196 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
8197 if (is_subset
== isl_bool_error
)
8202 isl_bool
isl_map_is_strict_subset(__isl_keep isl_map
*map1
,
8203 __isl_keep isl_map
*map2
)
8208 return isl_bool_error
;
8209 is_subset
= isl_map_is_subset(map1
, map2
);
8210 if (is_subset
!= isl_bool_true
)
8212 is_subset
= isl_map_is_subset(map2
, map1
);
8213 if (is_subset
== isl_bool_error
)
8218 isl_bool
isl_set_is_strict_subset(__isl_keep isl_set
*set1
,
8219 __isl_keep isl_set
*set2
)
8221 return isl_map_is_strict_subset(set_to_map(set1
), set_to_map(set2
));
8224 /* Is "bmap" obviously equal to the universe with the same space?
8226 * That is, does it not have any constraints?
8228 isl_bool
isl_basic_map_plain_is_universe(__isl_keep isl_basic_map
*bmap
)
8231 return isl_bool_error
;
8232 return bmap
->n_eq
== 0 && bmap
->n_ineq
== 0;
8235 /* Is "bset" obviously equal to the universe with the same space?
8237 isl_bool
isl_basic_set_plain_is_universe(__isl_keep isl_basic_set
*bset
)
8239 return isl_basic_map_plain_is_universe(bset
);
8242 /* If "c" does not involve any existentially quantified variables,
8243 * then set *univ to false and abort
8245 static isl_stat
involves_divs(__isl_take isl_constraint
*c
, void *user
)
8247 isl_bool
*univ
= user
;
8250 n
= isl_constraint_dim(c
, isl_dim_div
);
8251 *univ
= isl_constraint_involves_dims(c
, isl_dim_div
, 0, n
);
8252 isl_constraint_free(c
);
8253 if (*univ
< 0 || !*univ
)
8254 return isl_stat_error
;
8258 /* Is "bmap" equal to the universe with the same space?
8260 * First check if it is obviously equal to the universe.
8261 * If not and if there are any constraints not involving
8262 * existentially quantified variables, then it is certainly
8263 * not equal to the universe.
8264 * Otherwise, check if the universe is a subset of "bmap".
8266 isl_bool
isl_basic_map_is_universe(__isl_keep isl_basic_map
*bmap
)
8269 isl_basic_map
*test
;
8271 univ
= isl_basic_map_plain_is_universe(bmap
);
8272 if (univ
< 0 || univ
)
8274 if (isl_basic_map_dim(bmap
, isl_dim_div
) == 0)
8275 return isl_bool_false
;
8276 univ
= isl_bool_true
;
8277 if (isl_basic_map_foreach_constraint(bmap
, &involves_divs
, &univ
) < 0 &&
8279 return isl_bool_error
;
8280 if (univ
< 0 || !univ
)
8282 test
= isl_basic_map_universe(isl_basic_map_get_space(bmap
));
8283 univ
= isl_basic_map_is_subset(test
, bmap
);
8284 isl_basic_map_free(test
);
8288 /* Is "bset" equal to the universe with the same space?
8290 isl_bool
isl_basic_set_is_universe(__isl_keep isl_basic_set
*bset
)
8292 return isl_basic_map_is_universe(bset
);
8295 isl_bool
isl_map_plain_is_universe(__isl_keep isl_map
*map
)
8300 return isl_bool_error
;
8302 for (i
= 0; i
< map
->n
; ++i
) {
8303 isl_bool r
= isl_basic_map_plain_is_universe(map
->p
[i
]);
8308 return isl_bool_false
;
8311 isl_bool
isl_set_plain_is_universe(__isl_keep isl_set
*set
)
8313 return isl_map_plain_is_universe(set_to_map(set
));
8316 isl_bool
isl_basic_map_is_empty(__isl_keep isl_basic_map
*bmap
)
8318 struct isl_basic_set
*bset
= NULL
;
8319 struct isl_vec
*sample
= NULL
;
8320 isl_bool empty
, non_empty
;
8323 return isl_bool_error
;
8325 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
8326 return isl_bool_true
;
8328 if (isl_basic_map_plain_is_universe(bmap
))
8329 return isl_bool_false
;
8331 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
)) {
8332 struct isl_basic_map
*copy
= isl_basic_map_copy(bmap
);
8333 copy
= isl_basic_map_remove_redundancies(copy
);
8334 empty
= isl_basic_map_plain_is_empty(copy
);
8335 isl_basic_map_free(copy
);
8339 non_empty
= isl_basic_map_plain_is_non_empty(bmap
);
8341 return isl_bool_error
;
8343 return isl_bool_false
;
8344 isl_vec_free(bmap
->sample
);
8345 bmap
->sample
= NULL
;
8346 bset
= isl_basic_map_underlying_set(isl_basic_map_copy(bmap
));
8348 return isl_bool_error
;
8349 sample
= isl_basic_set_sample_vec(bset
);
8351 return isl_bool_error
;
8352 empty
= sample
->size
== 0;
8353 isl_vec_free(bmap
->sample
);
8354 bmap
->sample
= sample
;
8356 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
8361 isl_bool
isl_basic_map_plain_is_empty(__isl_keep isl_basic_map
*bmap
)
8364 return isl_bool_error
;
8365 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
);
8368 isl_bool
isl_basic_set_plain_is_empty(__isl_keep isl_basic_set
*bset
)
8371 return isl_bool_error
;
8372 return ISL_F_ISSET(bset
, ISL_BASIC_SET_EMPTY
);
8375 /* Is "bmap" known to be non-empty?
8377 * That is, is the cached sample still valid?
8379 isl_bool
isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map
*bmap
)
8384 return isl_bool_error
;
8386 return isl_bool_false
;
8387 total
= 1 + isl_basic_map_total_dim(bmap
);
8388 if (bmap
->sample
->size
!= total
)
8389 return isl_bool_false
;
8390 return isl_basic_map_contains(bmap
, bmap
->sample
);
8393 isl_bool
isl_basic_set_is_empty(__isl_keep isl_basic_set
*bset
)
8395 return isl_basic_map_is_empty(bset_to_bmap(bset
));
8398 struct isl_map
*isl_basic_map_union(
8399 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
8401 struct isl_map
*map
;
8402 if (!bmap1
|| !bmap2
)
8405 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
8407 map
= isl_map_alloc_space(isl_space_copy(bmap1
->dim
), 2, 0);
8410 map
= isl_map_add_basic_map(map
, bmap1
);
8411 map
= isl_map_add_basic_map(map
, bmap2
);
8414 isl_basic_map_free(bmap1
);
8415 isl_basic_map_free(bmap2
);
8419 struct isl_set
*isl_basic_set_union(
8420 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
8422 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1
),
8423 bset_to_bmap(bset2
)));
8426 /* Order divs such that any div only depends on previous divs */
8427 struct isl_basic_map
*isl_basic_map_order_divs(struct isl_basic_map
*bmap
)
8435 off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
8437 for (i
= 0; i
< bmap
->n_div
; ++i
) {
8439 if (isl_int_is_zero(bmap
->div
[i
][0]))
8441 pos
= isl_seq_first_non_zero(bmap
->div
[i
]+1+1+off
+i
,
8446 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_internal
,
8447 "integer division depends on itself",
8448 return isl_basic_map_free(bmap
));
8449 isl_basic_map_swap_div(bmap
, i
, i
+ pos
);
8455 struct isl_basic_set
*isl_basic_set_order_divs(struct isl_basic_set
*bset
)
8457 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset
)));
8460 __isl_give isl_map
*isl_map_order_divs(__isl_take isl_map
*map
)
8467 for (i
= 0; i
< map
->n
; ++i
) {
8468 map
->p
[i
] = isl_basic_map_order_divs(map
->p
[i
]);
8479 /* Sort the local variables of "bset".
8481 __isl_give isl_basic_set
*isl_basic_set_sort_divs(
8482 __isl_take isl_basic_set
*bset
)
8484 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset
)));
8487 /* Apply the expansion computed by isl_merge_divs.
8488 * The expansion itself is given by "exp" while the resulting
8489 * list of divs is given by "div".
8491 * Move the integer divisions of "bmap" into the right position
8492 * according to "exp" and then introduce the additional integer
8493 * divisions, adding div constraints.
8494 * The moving should be done first to avoid moving coefficients
8495 * in the definitions of the extra integer divisions.
8497 __isl_give isl_basic_map
*isl_basic_map_expand_divs(
8498 __isl_take isl_basic_map
*bmap
, __isl_take isl_mat
*div
, int *exp
)
8503 bmap
= isl_basic_map_cow(bmap
);
8507 if (div
->n_row
< bmap
->n_div
)
8508 isl_die(isl_mat_get_ctx(div
), isl_error_invalid
,
8509 "not an expansion", goto error
);
8511 n_div
= bmap
->n_div
;
8512 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
8513 div
->n_row
- n_div
, 0,
8514 2 * (div
->n_row
- n_div
));
8516 for (i
= n_div
; i
< div
->n_row
; ++i
)
8517 if (isl_basic_map_alloc_div(bmap
) < 0)
8520 for (j
= n_div
- 1; j
>= 0; --j
) {
8523 isl_basic_map_swap_div(bmap
, j
, exp
[j
]);
8526 for (i
= 0; i
< div
->n_row
; ++i
) {
8527 if (j
< n_div
&& exp
[j
] == i
) {
8530 isl_seq_cpy(bmap
->div
[i
], div
->row
[i
], div
->n_col
);
8531 if (isl_basic_map_div_is_marked_unknown(bmap
, i
))
8533 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
8541 isl_basic_map_free(bmap
);
8546 /* Apply the expansion computed by isl_merge_divs.
8547 * The expansion itself is given by "exp" while the resulting
8548 * list of divs is given by "div".
8550 __isl_give isl_basic_set
*isl_basic_set_expand_divs(
8551 __isl_take isl_basic_set
*bset
, __isl_take isl_mat
*div
, int *exp
)
8553 return isl_basic_map_expand_divs(bset
, div
, exp
);
8556 /* Look for a div in dst that corresponds to the div "div" in src.
8557 * The divs before "div" in src and dst are assumed to be the same.
8559 * Returns -1 if no corresponding div was found and the position
8560 * of the corresponding div in dst otherwise.
8562 static int find_div(struct isl_basic_map
*dst
,
8563 struct isl_basic_map
*src
, unsigned div
)
8567 unsigned total
= isl_space_dim(src
->dim
, isl_dim_all
);
8569 isl_assert(dst
->ctx
, div
<= dst
->n_div
, return -1);
8570 for (i
= div
; i
< dst
->n_div
; ++i
)
8571 if (isl_seq_eq(dst
->div
[i
], src
->div
[div
], 1+1+total
+div
) &&
8572 isl_seq_first_non_zero(dst
->div
[i
]+1+1+total
+div
,
8573 dst
->n_div
- div
) == -1)
8578 /* Align the divs of "dst" to those of "src", adding divs from "src"
8579 * if needed. That is, make sure that the first src->n_div divs
8580 * of the result are equal to those of src.
8582 * The result is not finalized as by design it will have redundant
8583 * divs if any divs from "src" were copied.
8585 __isl_give isl_basic_map
*isl_basic_map_align_divs(
8586 __isl_take isl_basic_map
*dst
, __isl_keep isl_basic_map
*src
)
8589 int known
, extended
;
8593 return isl_basic_map_free(dst
);
8595 if (src
->n_div
== 0)
8598 known
= isl_basic_map_divs_known(src
);
8600 return isl_basic_map_free(dst
);
8602 isl_die(isl_basic_map_get_ctx(src
), isl_error_invalid
,
8603 "some src divs are unknown",
8604 return isl_basic_map_free(dst
));
8606 src
= isl_basic_map_order_divs(src
);
8609 total
= isl_space_dim(src
->dim
, isl_dim_all
);
8610 for (i
= 0; i
< src
->n_div
; ++i
) {
8611 int j
= find_div(dst
, src
, i
);
8614 int extra
= src
->n_div
- i
;
8615 dst
= isl_basic_map_cow(dst
);
8618 dst
= isl_basic_map_extend_space(dst
,
8619 isl_space_copy(dst
->dim
),
8620 extra
, 0, 2 * extra
);
8623 j
= isl_basic_map_alloc_div(dst
);
8625 return isl_basic_map_free(dst
);
8626 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
+i
);
8627 isl_seq_clr(dst
->div
[j
]+1+1+total
+i
, dst
->n_div
- i
);
8628 if (isl_basic_map_add_div_constraints(dst
, j
) < 0)
8629 return isl_basic_map_free(dst
);
8632 isl_basic_map_swap_div(dst
, i
, j
);
8637 struct isl_basic_set
*isl_basic_set_align_divs(
8638 struct isl_basic_set
*dst
, struct isl_basic_set
*src
)
8640 return bset_from_bmap(isl_basic_map_align_divs(bset_to_bmap(dst
),
8641 bset_to_bmap(src
)));
8644 struct isl_map
*isl_map_align_divs(struct isl_map
*map
)
8652 map
= isl_map_compute_divs(map
);
8653 map
= isl_map_cow(map
);
8657 for (i
= 1; i
< map
->n
; ++i
)
8658 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], map
->p
[i
]);
8659 for (i
= 1; i
< map
->n
; ++i
) {
8660 map
->p
[i
] = isl_basic_map_align_divs(map
->p
[i
], map
->p
[0]);
8662 return isl_map_free(map
);
8665 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
8669 struct isl_set
*isl_set_align_divs(struct isl_set
*set
)
8671 return set_from_map(isl_map_align_divs(set_to_map(set
)));
8674 /* Align the divs of the basic maps in "map" to those
8675 * of the basic maps in "list", as well as to the other basic maps in "map".
8676 * The elements in "list" are assumed to have known divs.
8678 __isl_give isl_map
*isl_map_align_divs_to_basic_map_list(
8679 __isl_take isl_map
*map
, __isl_keep isl_basic_map_list
*list
)
8683 map
= isl_map_compute_divs(map
);
8684 map
= isl_map_cow(map
);
8686 return isl_map_free(map
);
8690 n
= isl_basic_map_list_n_basic_map(list
);
8691 for (i
= 0; i
< n
; ++i
) {
8692 isl_basic_map
*bmap
;
8694 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
8695 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], bmap
);
8696 isl_basic_map_free(bmap
);
8699 return isl_map_free(map
);
8701 return isl_map_align_divs(map
);
8704 /* Align the divs of each element of "list" to those of "bmap".
8705 * Both "bmap" and the elements of "list" are assumed to have known divs.
8707 __isl_give isl_basic_map_list
*isl_basic_map_list_align_divs_to_basic_map(
8708 __isl_take isl_basic_map_list
*list
, __isl_keep isl_basic_map
*bmap
)
8713 return isl_basic_map_list_free(list
);
8715 n
= isl_basic_map_list_n_basic_map(list
);
8716 for (i
= 0; i
< n
; ++i
) {
8717 isl_basic_map
*bmap_i
;
8719 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
8720 bmap_i
= isl_basic_map_align_divs(bmap_i
, bmap
);
8721 list
= isl_basic_map_list_set_basic_map(list
, i
, bmap_i
);
8727 static __isl_give isl_set
*set_apply( __isl_take isl_set
*set
,
8728 __isl_take isl_map
*map
)
8732 ok
= isl_map_compatible_domain(map
, set
);
8736 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
8737 "incompatible spaces", goto error
);
8738 map
= isl_map_intersect_domain(map
, set
);
8739 set
= isl_map_range(map
);
8747 __isl_give isl_set
*isl_set_apply( __isl_take isl_set
*set
,
8748 __isl_take isl_map
*map
)
8750 return isl_map_align_params_map_map_and(set
, map
, &set_apply
);
8753 /* There is no need to cow as removing empty parts doesn't change
8754 * the meaning of the set.
8756 struct isl_map
*isl_map_remove_empty_parts(struct isl_map
*map
)
8763 for (i
= map
->n
- 1; i
>= 0; --i
)
8764 remove_if_empty(map
, i
);
8769 struct isl_set
*isl_set_remove_empty_parts(struct isl_set
*set
)
8771 return set_from_map(isl_map_remove_empty_parts(set_to_map(set
)));
8774 static __isl_give isl_basic_map
*map_copy_basic_map(__isl_keep isl_map
*map
)
8776 struct isl_basic_map
*bmap
;
8777 if (!map
|| map
->n
== 0)
8779 bmap
= map
->p
[map
->n
-1];
8780 isl_assert(map
->ctx
, ISL_F_ISSET(bmap
, ISL_BASIC_SET_FINAL
), return NULL
);
8781 return isl_basic_map_copy(bmap
);
8784 __isl_give isl_basic_map
*isl_map_copy_basic_map(__isl_keep isl_map
*map
)
8786 return map_copy_basic_map(map
);
8789 struct isl_basic_set
*isl_set_copy_basic_set(struct isl_set
*set
)
8791 return bset_from_bmap(map_copy_basic_map(set_to_map(set
)));
8794 static __isl_give isl_map
*map_drop_basic_map(__isl_take isl_map
*map
,
8795 __isl_keep isl_basic_map
*bmap
)
8801 for (i
= map
->n
-1; i
>= 0; --i
) {
8802 if (map
->p
[i
] != bmap
)
8804 map
= isl_map_cow(map
);
8807 isl_basic_map_free(map
->p
[i
]);
8808 if (i
!= map
->n
-1) {
8809 ISL_F_CLR(map
, ISL_SET_NORMALIZED
);
8810 map
->p
[i
] = map
->p
[map
->n
-1];
8821 __isl_give isl_map
*isl_map_drop_basic_map(__isl_take isl_map
*map
,
8822 __isl_keep isl_basic_map
*bmap
)
8824 return map_drop_basic_map(map
, bmap
);
8827 struct isl_set
*isl_set_drop_basic_set(struct isl_set
*set
,
8828 struct isl_basic_set
*bset
)
8830 return set_from_map(map_drop_basic_map(set_to_map(set
),
8831 bset_to_bmap(bset
)));
8834 /* Given two basic sets bset1 and bset2, compute the maximal difference
8835 * between the values of dimension pos in bset1 and those in bset2
8836 * for any common value of the parameters and dimensions preceding pos.
8838 static enum isl_lp_result
basic_set_maximal_difference_at(
8839 __isl_keep isl_basic_set
*bset1
, __isl_keep isl_basic_set
*bset2
,
8840 int pos
, isl_int
*opt
)
8842 isl_basic_map
*bmap1
;
8843 isl_basic_map
*bmap2
;
8844 struct isl_ctx
*ctx
;
8845 struct isl_vec
*obj
;
8849 enum isl_lp_result res
;
8851 if (!bset1
|| !bset2
)
8852 return isl_lp_error
;
8854 nparam
= isl_basic_set_n_param(bset1
);
8855 dim1
= isl_basic_set_n_dim(bset1
);
8857 bmap1
= isl_basic_map_from_range(isl_basic_set_copy(bset1
));
8858 bmap2
= isl_basic_map_from_range(isl_basic_set_copy(bset2
));
8859 bmap1
= isl_basic_map_move_dims(bmap1
, isl_dim_in
, 0,
8860 isl_dim_out
, 0, pos
);
8861 bmap2
= isl_basic_map_move_dims(bmap2
, isl_dim_in
, 0,
8862 isl_dim_out
, 0, pos
);
8863 bmap1
= isl_basic_map_range_product(bmap1
, bmap2
);
8865 return isl_lp_error
;
8867 total
= isl_basic_map_total_dim(bmap1
);
8869 obj
= isl_vec_alloc(ctx
, 1 + total
);
8872 isl_seq_clr(obj
->block
.data
, 1 + total
);
8873 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
], 1);
8874 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
+(dim1
-pos
)], -1);
8875 res
= isl_basic_map_solve_lp(bmap1
, 1, obj
->block
.data
, ctx
->one
,
8877 isl_basic_map_free(bmap1
);
8881 isl_basic_map_free(bmap1
);
8882 return isl_lp_error
;
8885 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
8886 * for any common value of the parameters and dimensions preceding pos
8887 * in both basic sets, the values of dimension pos in bset1 are
8888 * smaller or larger than those in bset2.
8891 * 1 if bset1 follows bset2
8892 * -1 if bset1 precedes bset2
8893 * 0 if bset1 and bset2 are incomparable
8894 * -2 if some error occurred.
8896 int isl_basic_set_compare_at(struct isl_basic_set
*bset1
,
8897 struct isl_basic_set
*bset2
, int pos
)
8900 enum isl_lp_result res
;
8905 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
8907 if (res
== isl_lp_empty
)
8909 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
8910 res
== isl_lp_unbounded
)
8912 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
8921 /* Given two basic sets bset1 and bset2, check whether
8922 * for any common value of the parameters and dimensions preceding pos
8923 * there is a value of dimension pos in bset1 that is larger
8924 * than a value of the same dimension in bset2.
8927 * 1 if there exists such a pair
8928 * 0 if there is no such pair, but there is a pair of equal values
8930 * -2 if some error occurred.
8932 int isl_basic_set_follows_at(__isl_keep isl_basic_set
*bset1
,
8933 __isl_keep isl_basic_set
*bset2
, int pos
)
8936 enum isl_lp_result res
;
8941 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
8943 if (res
== isl_lp_empty
)
8945 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
8946 res
== isl_lp_unbounded
)
8948 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
8950 else if (res
== isl_lp_ok
)
8959 /* Given two sets set1 and set2, check whether
8960 * for any common value of the parameters and dimensions preceding pos
8961 * there is a value of dimension pos in set1 that is larger
8962 * than a value of the same dimension in set2.
8965 * 1 if there exists such a pair
8966 * 0 if there is no such pair, but there is a pair of equal values
8968 * -2 if some error occurred.
8970 int isl_set_follows_at(__isl_keep isl_set
*set1
,
8971 __isl_keep isl_set
*set2
, int pos
)
8979 for (i
= 0; i
< set1
->n
; ++i
)
8980 for (j
= 0; j
< set2
->n
; ++j
) {
8982 f
= isl_basic_set_follows_at(set1
->p
[i
], set2
->p
[j
], pos
);
8983 if (f
== 1 || f
== -2)
8992 static isl_bool
isl_basic_map_plain_has_fixed_var(
8993 __isl_keep isl_basic_map
*bmap
, unsigned pos
, isl_int
*val
)
9000 return isl_bool_error
;
9001 total
= isl_basic_map_total_dim(bmap
);
9002 for (i
= 0, d
= total
-1; i
< bmap
->n_eq
&& d
+1 > pos
; ++i
) {
9003 for (; d
+1 > pos
; --d
)
9004 if (!isl_int_is_zero(bmap
->eq
[i
][1+d
]))
9008 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1, d
) != -1)
9009 return isl_bool_false
;
9010 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1+d
+1, total
-d
-1) != -1)
9011 return isl_bool_false
;
9012 if (!isl_int_is_one(bmap
->eq
[i
][1+d
]))
9013 return isl_bool_false
;
9015 isl_int_neg(*val
, bmap
->eq
[i
][0]);
9016 return isl_bool_true
;
9018 return isl_bool_false
;
9021 static isl_bool
isl_map_plain_has_fixed_var(__isl_keep isl_map
*map
,
9022 unsigned pos
, isl_int
*val
)
9030 return isl_bool_error
;
9032 return isl_bool_false
;
9034 return isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, val
);
9037 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, &v
);
9038 for (i
= 1; fixed
== isl_bool_true
&& i
< map
->n
; ++i
) {
9039 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[i
], pos
, &tmp
);
9040 if (fixed
== isl_bool_true
&& isl_int_ne(tmp
, v
))
9041 fixed
= isl_bool_false
;
9044 isl_int_set(*val
, v
);
9050 static isl_bool
isl_basic_set_plain_has_fixed_var(
9051 __isl_keep isl_basic_set
*bset
, unsigned pos
, isl_int
*val
)
9053 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset
),
9057 static int isl_set_plain_has_fixed_var(__isl_keep isl_set
*set
, unsigned pos
,
9060 return isl_map_plain_has_fixed_var(set_to_map(set
), pos
, val
);
9063 isl_bool
isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map
*bmap
,
9064 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
9066 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
9067 return isl_bool_error
;
9068 return isl_basic_map_plain_has_fixed_var(bmap
,
9069 isl_basic_map_offset(bmap
, type
) - 1 + pos
, val
);
9072 /* If "bmap" obviously lies on a hyperplane where the given dimension
9073 * has a fixed value, then return that value.
9074 * Otherwise return NaN.
9076 __isl_give isl_val
*isl_basic_map_plain_get_val_if_fixed(
9077 __isl_keep isl_basic_map
*bmap
,
9078 enum isl_dim_type type
, unsigned pos
)
9086 ctx
= isl_basic_map_get_ctx(bmap
);
9087 v
= isl_val_alloc(ctx
);
9090 fixed
= isl_basic_map_plain_is_fixed(bmap
, type
, pos
, &v
->n
);
9092 return isl_val_free(v
);
9094 isl_int_set_si(v
->d
, 1);
9098 return isl_val_nan(ctx
);
9101 isl_bool
isl_map_plain_is_fixed(__isl_keep isl_map
*map
,
9102 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
9104 if (pos
>= isl_map_dim(map
, type
))
9105 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9106 "position out of bounds", return isl_bool_error
);
9107 return isl_map_plain_has_fixed_var(map
,
9108 map_offset(map
, type
) - 1 + pos
, val
);
9111 /* If "map" obviously lies on a hyperplane where the given dimension
9112 * has a fixed value, then return that value.
9113 * Otherwise return NaN.
9115 __isl_give isl_val
*isl_map_plain_get_val_if_fixed(__isl_keep isl_map
*map
,
9116 enum isl_dim_type type
, unsigned pos
)
9124 ctx
= isl_map_get_ctx(map
);
9125 v
= isl_val_alloc(ctx
);
9128 fixed
= isl_map_plain_is_fixed(map
, type
, pos
, &v
->n
);
9130 return isl_val_free(v
);
9132 isl_int_set_si(v
->d
, 1);
9136 return isl_val_nan(ctx
);
9139 /* If "set" obviously lies on a hyperplane where the given dimension
9140 * has a fixed value, then return that value.
9141 * Otherwise return NaN.
9143 __isl_give isl_val
*isl_set_plain_get_val_if_fixed(__isl_keep isl_set
*set
,
9144 enum isl_dim_type type
, unsigned pos
)
9146 return isl_map_plain_get_val_if_fixed(set
, type
, pos
);
9149 isl_bool
isl_set_plain_is_fixed(__isl_keep isl_set
*set
,
9150 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
9152 return isl_map_plain_is_fixed(set
, type
, pos
, val
);
9155 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9156 * then return this fixed value in *val.
9158 isl_bool
isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set
*bset
,
9159 unsigned dim
, isl_int
*val
)
9161 return isl_basic_set_plain_has_fixed_var(bset
,
9162 isl_basic_set_n_param(bset
) + dim
, val
);
9165 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9166 * then return this fixed value in *val.
9168 int isl_set_plain_dim_is_fixed(__isl_keep isl_set
*set
,
9169 unsigned dim
, isl_int
*val
)
9171 return isl_set_plain_has_fixed_var(set
, isl_set_n_param(set
) + dim
, val
);
9174 /* Check if input variable in has fixed value and if so and if val is not NULL,
9175 * then return this fixed value in *val.
9177 int isl_map_plain_input_is_fixed(__isl_keep isl_map
*map
,
9178 unsigned in
, isl_int
*val
)
9180 return isl_map_plain_has_fixed_var(map
, isl_map_n_param(map
) + in
, val
);
9183 /* Check if dimension dim has an (obvious) fixed lower bound and if so
9184 * and if val is not NULL, then return this lower bound in *val.
9186 int isl_basic_set_plain_dim_has_fixed_lower_bound(
9187 __isl_keep isl_basic_set
*bset
, unsigned dim
, isl_int
*val
)
9189 int i
, i_eq
= -1, i_ineq
= -1;
9196 total
= isl_basic_set_total_dim(bset
);
9197 nparam
= isl_basic_set_n_param(bset
);
9198 for (i
= 0; i
< bset
->n_eq
; ++i
) {
9199 if (isl_int_is_zero(bset
->eq
[i
][1+nparam
+dim
]))
9205 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
9206 if (!isl_int_is_pos(bset
->ineq
[i
][1+nparam
+dim
]))
9208 if (i_eq
!= -1 || i_ineq
!= -1)
9212 if (i_eq
== -1 && i_ineq
== -1)
9214 c
= i_eq
!= -1 ? bset
->eq
[i_eq
] : bset
->ineq
[i_ineq
];
9215 /* The coefficient should always be one due to normalization. */
9216 if (!isl_int_is_one(c
[1+nparam
+dim
]))
9218 if (isl_seq_first_non_zero(c
+1, nparam
+dim
) != -1)
9220 if (isl_seq_first_non_zero(c
+1+nparam
+dim
+1,
9221 total
- nparam
- dim
- 1) != -1)
9224 isl_int_neg(*val
, c
[0]);
9228 int isl_set_plain_dim_has_fixed_lower_bound(__isl_keep isl_set
*set
,
9229 unsigned dim
, isl_int
*val
)
9241 return isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[0],
9245 fixed
= isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[0],
9247 for (i
= 1; fixed
== 1 && i
< set
->n
; ++i
) {
9248 fixed
= isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[i
],
9250 if (fixed
== 1 && isl_int_ne(tmp
, v
))
9254 isl_int_set(*val
, v
);
9260 /* Return -1 if the constraint "c1" should be sorted before "c2"
9261 * and 1 if it should be sorted after "c2".
9262 * Return 0 if the two constraints are the same (up to the constant term).
9264 * In particular, if a constraint involves later variables than another
9265 * then it is sorted after this other constraint.
9266 * uset_gist depends on constraints without existentially quantified
9267 * variables sorting first.
9269 * For constraints that have the same latest variable, those
9270 * with the same coefficient for this latest variable (first in absolute value
9271 * and then in actual value) are grouped together.
9272 * This is useful for detecting pairs of constraints that can
9273 * be chained in their printed representation.
9275 * Finally, within a group, constraints are sorted according to
9276 * their coefficients (excluding the constant term).
9278 static int sort_constraint_cmp(const void *p1
, const void *p2
, void *arg
)
9280 isl_int
**c1
= (isl_int
**) p1
;
9281 isl_int
**c2
= (isl_int
**) p2
;
9283 unsigned size
= *(unsigned *) arg
;
9286 l1
= isl_seq_last_non_zero(*c1
+ 1, size
);
9287 l2
= isl_seq_last_non_zero(*c2
+ 1, size
);
9292 cmp
= isl_int_abs_cmp((*c1
)[1 + l1
], (*c2
)[1 + l1
]);
9295 cmp
= isl_int_cmp((*c1
)[1 + l1
], (*c2
)[1 + l1
]);
9299 return isl_seq_cmp(*c1
+ 1, *c2
+ 1, size
);
9302 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9303 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9304 * and 0 if the two constraints are the same (up to the constant term).
9306 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map
*bmap
,
9307 isl_int
*c1
, isl_int
*c2
)
9313 total
= isl_basic_map_total_dim(bmap
);
9314 return sort_constraint_cmp(&c1
, &c2
, &total
);
9317 __isl_give isl_basic_map
*isl_basic_map_sort_constraints(
9318 __isl_take isl_basic_map
*bmap
)
9324 if (bmap
->n_ineq
== 0)
9326 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NORMALIZED
))
9328 total
= isl_basic_map_total_dim(bmap
);
9329 if (isl_sort(bmap
->ineq
, bmap
->n_ineq
, sizeof(isl_int
*),
9330 &sort_constraint_cmp
, &total
) < 0)
9331 return isl_basic_map_free(bmap
);
9335 __isl_give isl_basic_set
*isl_basic_set_sort_constraints(
9336 __isl_take isl_basic_set
*bset
)
9338 isl_basic_map
*bmap
= bset_to_bmap(bset
);
9339 return bset_from_bmap(isl_basic_map_sort_constraints(bmap
));
9342 struct isl_basic_map
*isl_basic_map_normalize(struct isl_basic_map
*bmap
)
9346 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NORMALIZED
))
9348 bmap
= isl_basic_map_remove_redundancies(bmap
);
9349 bmap
= isl_basic_map_sort_constraints(bmap
);
9351 ISL_F_SET(bmap
, ISL_BASIC_MAP_NORMALIZED
);
9355 struct isl_basic_set
*isl_basic_set_normalize(struct isl_basic_set
*bset
)
9357 return bset_from_bmap(isl_basic_map_normalize(bset_to_bmap(bset
)));
9360 int isl_basic_map_plain_cmp(const __isl_keep isl_basic_map
*bmap1
,
9361 const __isl_keep isl_basic_map
*bmap2
)
9366 if (!bmap1
|| !bmap2
)
9371 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) !=
9372 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_RATIONAL
))
9373 return ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) ? -1 : 1;
9374 if (isl_basic_map_n_param(bmap1
) != isl_basic_map_n_param(bmap2
))
9375 return isl_basic_map_n_param(bmap1
) - isl_basic_map_n_param(bmap2
);
9376 if (isl_basic_map_n_in(bmap1
) != isl_basic_map_n_in(bmap2
))
9377 return isl_basic_map_n_out(bmap1
) - isl_basic_map_n_out(bmap2
);
9378 if (isl_basic_map_n_out(bmap1
) != isl_basic_map_n_out(bmap2
))
9379 return isl_basic_map_n_out(bmap1
) - isl_basic_map_n_out(bmap2
);
9380 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
) &&
9381 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
9383 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
))
9385 if (ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
9387 if (bmap1
->n_eq
!= bmap2
->n_eq
)
9388 return bmap1
->n_eq
- bmap2
->n_eq
;
9389 if (bmap1
->n_ineq
!= bmap2
->n_ineq
)
9390 return bmap1
->n_ineq
- bmap2
->n_ineq
;
9391 if (bmap1
->n_div
!= bmap2
->n_div
)
9392 return bmap1
->n_div
- bmap2
->n_div
;
9393 total
= isl_basic_map_total_dim(bmap1
);
9394 for (i
= 0; i
< bmap1
->n_eq
; ++i
) {
9395 cmp
= isl_seq_cmp(bmap1
->eq
[i
], bmap2
->eq
[i
], 1+total
);
9399 for (i
= 0; i
< bmap1
->n_ineq
; ++i
) {
9400 cmp
= isl_seq_cmp(bmap1
->ineq
[i
], bmap2
->ineq
[i
], 1+total
);
9404 for (i
= 0; i
< bmap1
->n_div
; ++i
) {
9405 cmp
= isl_seq_cmp(bmap1
->div
[i
], bmap2
->div
[i
], 1+1+total
);
9412 int isl_basic_set_plain_cmp(const __isl_keep isl_basic_set
*bset1
,
9413 const __isl_keep isl_basic_set
*bset2
)
9415 return isl_basic_map_plain_cmp(bset1
, bset2
);
9418 int isl_set_plain_cmp(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
9424 if (set1
->n
!= set2
->n
)
9425 return set1
->n
- set2
->n
;
9427 for (i
= 0; i
< set1
->n
; ++i
) {
9428 cmp
= isl_basic_set_plain_cmp(set1
->p
[i
], set2
->p
[i
]);
9436 isl_bool
isl_basic_map_plain_is_equal(__isl_keep isl_basic_map
*bmap1
,
9437 __isl_keep isl_basic_map
*bmap2
)
9439 if (!bmap1
|| !bmap2
)
9440 return isl_bool_error
;
9441 return isl_basic_map_plain_cmp(bmap1
, bmap2
) == 0;
9444 isl_bool
isl_basic_set_plain_is_equal(__isl_keep isl_basic_set
*bset1
,
9445 __isl_keep isl_basic_set
*bset2
)
9447 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1
),
9448 bset_to_bmap(bset2
));
9451 static int qsort_bmap_cmp(const void *p1
, const void *p2
)
9453 const struct isl_basic_map
*bmap1
= *(const struct isl_basic_map
**)p1
;
9454 const struct isl_basic_map
*bmap2
= *(const struct isl_basic_map
**)p2
;
9456 return isl_basic_map_plain_cmp(bmap1
, bmap2
);
9459 /* Sort the basic maps of "map" and remove duplicate basic maps.
9461 * While removing basic maps, we make sure that the basic maps remain
9462 * sorted because isl_map_normalize expects the basic maps of the result
9465 static __isl_give isl_map
*sort_and_remove_duplicates(__isl_take isl_map
*map
)
9469 map
= isl_map_remove_empty_parts(map
);
9472 qsort(map
->p
, map
->n
, sizeof(struct isl_basic_map
*), qsort_bmap_cmp
);
9473 for (i
= map
->n
- 1; i
>= 1; --i
) {
9474 if (!isl_basic_map_plain_is_equal(map
->p
[i
- 1], map
->p
[i
]))
9476 isl_basic_map_free(map
->p
[i
-1]);
9477 for (j
= i
; j
< map
->n
; ++j
)
9478 map
->p
[j
- 1] = map
->p
[j
];
9485 /* Remove obvious duplicates among the basic maps of "map".
9487 * Unlike isl_map_normalize, this function does not remove redundant
9488 * constraints and only removes duplicates that have exactly the same
9489 * constraints in the input. It does sort the constraints and
9490 * the basic maps to ease the detection of duplicates.
9492 * If "map" has already been normalized or if the basic maps are
9493 * disjoint, then there can be no duplicates.
9495 __isl_give isl_map
*isl_map_remove_obvious_duplicates(__isl_take isl_map
*map
)
9498 isl_basic_map
*bmap
;
9504 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
| ISL_MAP_DISJOINT
))
9506 for (i
= 0; i
< map
->n
; ++i
) {
9507 bmap
= isl_basic_map_copy(map
->p
[i
]);
9508 bmap
= isl_basic_map_sort_constraints(bmap
);
9510 return isl_map_free(map
);
9511 isl_basic_map_free(map
->p
[i
]);
9515 map
= sort_and_remove_duplicates(map
);
9519 /* We normalize in place, but if anything goes wrong we need
9520 * to return NULL, so we need to make sure we don't change the
9521 * meaning of any possible other copies of map.
9523 __isl_give isl_map
*isl_map_normalize(__isl_take isl_map
*map
)
9526 struct isl_basic_map
*bmap
;
9530 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
))
9532 for (i
= 0; i
< map
->n
; ++i
) {
9533 bmap
= isl_basic_map_normalize(isl_basic_map_copy(map
->p
[i
]));
9536 isl_basic_map_free(map
->p
[i
]);
9540 map
= sort_and_remove_duplicates(map
);
9542 ISL_F_SET(map
, ISL_MAP_NORMALIZED
);
9549 struct isl_set
*isl_set_normalize(struct isl_set
*set
)
9551 return set_from_map(isl_map_normalize(set_to_map(set
)));
9554 isl_bool
isl_map_plain_is_equal(__isl_keep isl_map
*map1
,
9555 __isl_keep isl_map
*map2
)
9561 return isl_bool_error
;
9564 return isl_bool_true
;
9565 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
9566 return isl_bool_false
;
9568 map1
= isl_map_copy(map1
);
9569 map2
= isl_map_copy(map2
);
9570 map1
= isl_map_normalize(map1
);
9571 map2
= isl_map_normalize(map2
);
9574 equal
= map1
->n
== map2
->n
;
9575 for (i
= 0; equal
&& i
< map1
->n
; ++i
) {
9576 equal
= isl_basic_map_plain_is_equal(map1
->p
[i
], map2
->p
[i
]);
9586 return isl_bool_error
;
9589 isl_bool
isl_set_plain_is_equal(__isl_keep isl_set
*set1
,
9590 __isl_keep isl_set
*set2
)
9592 return isl_map_plain_is_equal(set_to_map(set1
), set_to_map(set2
));
9595 /* Return an interval that ranges from min to max (inclusive)
9597 struct isl_basic_set
*isl_basic_set_interval(struct isl_ctx
*ctx
,
9598 isl_int min
, isl_int max
)
9601 struct isl_basic_set
*bset
= NULL
;
9603 bset
= isl_basic_set_alloc(ctx
, 0, 1, 0, 0, 2);
9607 k
= isl_basic_set_alloc_inequality(bset
);
9610 isl_int_set_si(bset
->ineq
[k
][1], 1);
9611 isl_int_neg(bset
->ineq
[k
][0], min
);
9613 k
= isl_basic_set_alloc_inequality(bset
);
9616 isl_int_set_si(bset
->ineq
[k
][1], -1);
9617 isl_int_set(bset
->ineq
[k
][0], max
);
9621 isl_basic_set_free(bset
);
9625 /* Return the basic maps in "map" as a list.
9627 __isl_give isl_basic_map_list
*isl_map_get_basic_map_list(
9628 __isl_keep isl_map
*map
)
9632 isl_basic_map_list
*list
;
9636 ctx
= isl_map_get_ctx(map
);
9637 list
= isl_basic_map_list_alloc(ctx
, map
->n
);
9639 for (i
= 0; i
< map
->n
; ++i
) {
9640 isl_basic_map
*bmap
;
9642 bmap
= isl_basic_map_copy(map
->p
[i
]);
9643 list
= isl_basic_map_list_add(list
, bmap
);
9649 /* Return the intersection of the elements in the non-empty list "list".
9650 * All elements are assumed to live in the same space.
9652 __isl_give isl_basic_map
*isl_basic_map_list_intersect(
9653 __isl_take isl_basic_map_list
*list
)
9656 isl_basic_map
*bmap
;
9660 n
= isl_basic_map_list_n_basic_map(list
);
9662 isl_die(isl_basic_map_list_get_ctx(list
), isl_error_invalid
,
9663 "expecting non-empty list", goto error
);
9665 bmap
= isl_basic_map_list_get_basic_map(list
, 0);
9666 for (i
= 1; i
< n
; ++i
) {
9667 isl_basic_map
*bmap_i
;
9669 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
9670 bmap
= isl_basic_map_intersect(bmap
, bmap_i
);
9673 isl_basic_map_list_free(list
);
9676 isl_basic_map_list_free(list
);
9680 /* Return the intersection of the elements in the non-empty list "list".
9681 * All elements are assumed to live in the same space.
9683 __isl_give isl_basic_set
*isl_basic_set_list_intersect(
9684 __isl_take isl_basic_set_list
*list
)
9686 return isl_basic_map_list_intersect(list
);
9689 /* Return the union of the elements of "list".
9690 * The list is required to have at least one element.
9692 __isl_give isl_set
*isl_basic_set_list_union(
9693 __isl_take isl_basic_set_list
*list
)
9697 isl_basic_set
*bset
;
9702 n
= isl_basic_set_list_n_basic_set(list
);
9704 isl_die(isl_basic_set_list_get_ctx(list
), isl_error_invalid
,
9705 "expecting non-empty list", goto error
);
9707 bset
= isl_basic_set_list_get_basic_set(list
, 0);
9708 space
= isl_basic_set_get_space(bset
);
9709 isl_basic_set_free(bset
);
9711 set
= isl_set_alloc_space(space
, n
, 0);
9712 for (i
= 0; i
< n
; ++i
) {
9713 bset
= isl_basic_set_list_get_basic_set(list
, i
);
9714 set
= isl_set_add_basic_set(set
, bset
);
9717 isl_basic_set_list_free(list
);
9720 isl_basic_set_list_free(list
);
9724 /* Return the union of the elements in the non-empty list "list".
9725 * All elements are assumed to live in the same space.
9727 __isl_give isl_set
*isl_set_list_union(__isl_take isl_set_list
*list
)
9734 n
= isl_set_list_n_set(list
);
9736 isl_die(isl_set_list_get_ctx(list
), isl_error_invalid
,
9737 "expecting non-empty list", goto error
);
9739 set
= isl_set_list_get_set(list
, 0);
9740 for (i
= 1; i
< n
; ++i
) {
9743 set_i
= isl_set_list_get_set(list
, i
);
9744 set
= isl_set_union(set
, set_i
);
9747 isl_set_list_free(list
);
9750 isl_set_list_free(list
);
9754 /* Return the Cartesian product of the basic sets in list (in the given order).
9756 __isl_give isl_basic_set
*isl_basic_set_list_product(
9757 __isl_take
struct isl_basic_set_list
*list
)
9765 struct isl_basic_set
*product
= NULL
;
9769 isl_assert(list
->ctx
, list
->n
> 0, goto error
);
9770 isl_assert(list
->ctx
, list
->p
[0], goto error
);
9771 nparam
= isl_basic_set_n_param(list
->p
[0]);
9772 dim
= isl_basic_set_n_dim(list
->p
[0]);
9773 extra
= list
->p
[0]->n_div
;
9774 n_eq
= list
->p
[0]->n_eq
;
9775 n_ineq
= list
->p
[0]->n_ineq
;
9776 for (i
= 1; i
< list
->n
; ++i
) {
9777 isl_assert(list
->ctx
, list
->p
[i
], goto error
);
9778 isl_assert(list
->ctx
,
9779 nparam
== isl_basic_set_n_param(list
->p
[i
]), goto error
);
9780 dim
+= isl_basic_set_n_dim(list
->p
[i
]);
9781 extra
+= list
->p
[i
]->n_div
;
9782 n_eq
+= list
->p
[i
]->n_eq
;
9783 n_ineq
+= list
->p
[i
]->n_ineq
;
9785 product
= isl_basic_set_alloc(list
->ctx
, nparam
, dim
, extra
,
9790 for (i
= 0; i
< list
->n
; ++i
) {
9791 isl_basic_set_add_constraints(product
,
9792 isl_basic_set_copy(list
->p
[i
]), dim
);
9793 dim
+= isl_basic_set_n_dim(list
->p
[i
]);
9795 isl_basic_set_list_free(list
);
9798 isl_basic_set_free(product
);
9799 isl_basic_set_list_free(list
);
9803 struct isl_basic_map
*isl_basic_map_product(
9804 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
9806 isl_space
*dim_result
= NULL
;
9807 struct isl_basic_map
*bmap
;
9808 unsigned in1
, in2
, out1
, out2
, nparam
, total
, pos
;
9809 struct isl_dim_map
*dim_map1
, *dim_map2
;
9811 if (!bmap1
|| !bmap2
)
9814 isl_assert(bmap1
->ctx
, isl_space_match(bmap1
->dim
, isl_dim_param
,
9815 bmap2
->dim
, isl_dim_param
), goto error
);
9816 dim_result
= isl_space_product(isl_space_copy(bmap1
->dim
),
9817 isl_space_copy(bmap2
->dim
));
9819 in1
= isl_basic_map_n_in(bmap1
);
9820 in2
= isl_basic_map_n_in(bmap2
);
9821 out1
= isl_basic_map_n_out(bmap1
);
9822 out2
= isl_basic_map_n_out(bmap2
);
9823 nparam
= isl_basic_map_n_param(bmap1
);
9825 total
= nparam
+ in1
+ in2
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
9826 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9827 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9828 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9829 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9830 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9831 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
9832 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
9833 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
9834 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
9835 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9837 bmap
= isl_basic_map_alloc_space(dim_result
,
9838 bmap1
->n_div
+ bmap2
->n_div
,
9839 bmap1
->n_eq
+ bmap2
->n_eq
,
9840 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9841 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9842 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9843 bmap
= isl_basic_map_simplify(bmap
);
9844 return isl_basic_map_finalize(bmap
);
9846 isl_basic_map_free(bmap1
);
9847 isl_basic_map_free(bmap2
);
9851 __isl_give isl_basic_map
*isl_basic_map_flat_product(
9852 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9854 isl_basic_map
*prod
;
9856 prod
= isl_basic_map_product(bmap1
, bmap2
);
9857 prod
= isl_basic_map_flatten(prod
);
9861 __isl_give isl_basic_set
*isl_basic_set_flat_product(
9862 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
9864 return isl_basic_map_flat_range_product(bset1
, bset2
);
9867 __isl_give isl_basic_map
*isl_basic_map_domain_product(
9868 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9870 isl_space
*space_result
= NULL
;
9871 isl_basic_map
*bmap
;
9872 unsigned in1
, in2
, out
, nparam
, total
, pos
;
9873 struct isl_dim_map
*dim_map1
, *dim_map2
;
9875 if (!bmap1
|| !bmap2
)
9878 space_result
= isl_space_domain_product(isl_space_copy(bmap1
->dim
),
9879 isl_space_copy(bmap2
->dim
));
9881 in1
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9882 in2
= isl_basic_map_dim(bmap2
, isl_dim_in
);
9883 out
= isl_basic_map_dim(bmap1
, isl_dim_out
);
9884 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
9886 total
= nparam
+ in1
+ in2
+ out
+ bmap1
->n_div
+ bmap2
->n_div
;
9887 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9888 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9889 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9890 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9891 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9892 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
9893 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
9894 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
);
9895 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out
);
9896 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9898 bmap
= isl_basic_map_alloc_space(space_result
,
9899 bmap1
->n_div
+ bmap2
->n_div
,
9900 bmap1
->n_eq
+ bmap2
->n_eq
,
9901 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9902 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9903 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9904 bmap
= isl_basic_map_simplify(bmap
);
9905 return isl_basic_map_finalize(bmap
);
9907 isl_basic_map_free(bmap1
);
9908 isl_basic_map_free(bmap2
);
9912 __isl_give isl_basic_map
*isl_basic_map_range_product(
9913 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9916 isl_space
*dim_result
= NULL
;
9917 isl_basic_map
*bmap
;
9918 unsigned in
, out1
, out2
, nparam
, total
, pos
;
9919 struct isl_dim_map
*dim_map1
, *dim_map2
;
9921 rational
= isl_basic_map_is_rational(bmap1
);
9922 if (rational
>= 0 && rational
)
9923 rational
= isl_basic_map_is_rational(bmap2
);
9924 if (!bmap1
|| !bmap2
|| rational
< 0)
9927 if (!isl_space_match(bmap1
->dim
, isl_dim_param
,
9928 bmap2
->dim
, isl_dim_param
))
9929 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
9930 "parameters don't match", goto error
);
9932 dim_result
= isl_space_range_product(isl_space_copy(bmap1
->dim
),
9933 isl_space_copy(bmap2
->dim
));
9935 in
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9936 out1
= isl_basic_map_n_out(bmap1
);
9937 out2
= isl_basic_map_n_out(bmap2
);
9938 nparam
= isl_basic_map_n_param(bmap1
);
9940 total
= nparam
+ in
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
9941 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9942 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9943 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9944 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9945 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9946 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
9947 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in
);
9948 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
9949 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
9950 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9952 bmap
= isl_basic_map_alloc_space(dim_result
,
9953 bmap1
->n_div
+ bmap2
->n_div
,
9954 bmap1
->n_eq
+ bmap2
->n_eq
,
9955 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9956 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9957 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9959 bmap
= isl_basic_map_set_rational(bmap
);
9960 bmap
= isl_basic_map_simplify(bmap
);
9961 return isl_basic_map_finalize(bmap
);
9963 isl_basic_map_free(bmap1
);
9964 isl_basic_map_free(bmap2
);
9968 __isl_give isl_basic_map
*isl_basic_map_flat_range_product(
9969 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9971 isl_basic_map
*prod
;
9973 prod
= isl_basic_map_range_product(bmap1
, bmap2
);
9974 prod
= isl_basic_map_flatten_range(prod
);
9978 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
9979 * and collect the results.
9980 * The result live in the space obtained by calling "space_product"
9981 * on the spaces of "map1" and "map2".
9982 * If "remove_duplicates" is set then the result may contain duplicates
9983 * (even if the inputs do not) and so we try and remove the obvious
9986 static __isl_give isl_map
*map_product(__isl_take isl_map
*map1
,
9987 __isl_take isl_map
*map2
,
9988 __isl_give isl_space
*(*space_product
)(__isl_take isl_space
*left
,
9989 __isl_take isl_space
*right
),
9990 __isl_give isl_basic_map
*(*basic_map_product
)(
9991 __isl_take isl_basic_map
*left
,
9992 __isl_take isl_basic_map
*right
),
9993 int remove_duplicates
)
9996 struct isl_map
*result
;
10002 isl_assert(map1
->ctx
, isl_space_match(map1
->dim
, isl_dim_param
,
10003 map2
->dim
, isl_dim_param
), goto error
);
10005 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
10006 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
10007 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
10009 result
= isl_map_alloc_space(space_product(isl_space_copy(map1
->dim
),
10010 isl_space_copy(map2
->dim
)),
10011 map1
->n
* map2
->n
, flags
);
10014 for (i
= 0; i
< map1
->n
; ++i
)
10015 for (j
= 0; j
< map2
->n
; ++j
) {
10016 struct isl_basic_map
*part
;
10017 part
= basic_map_product(isl_basic_map_copy(map1
->p
[i
]),
10018 isl_basic_map_copy(map2
->p
[j
]));
10019 if (isl_basic_map_is_empty(part
))
10020 isl_basic_map_free(part
);
10022 result
= isl_map_add_basic_map(result
, part
);
10026 if (remove_duplicates
)
10027 result
= isl_map_remove_obvious_duplicates(result
);
10028 isl_map_free(map1
);
10029 isl_map_free(map2
);
10032 isl_map_free(map1
);
10033 isl_map_free(map2
);
10037 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
10039 static __isl_give isl_map
*map_product_aligned(__isl_take isl_map
*map1
,
10040 __isl_take isl_map
*map2
)
10042 return map_product(map1
, map2
, &isl_space_product
,
10043 &isl_basic_map_product
, 0);
10046 __isl_give isl_map
*isl_map_product(__isl_take isl_map
*map1
,
10047 __isl_take isl_map
*map2
)
10049 return isl_map_align_params_map_map_and(map1
, map2
, &map_product_aligned
);
10052 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
10054 __isl_give isl_map
*isl_map_flat_product(__isl_take isl_map
*map1
,
10055 __isl_take isl_map
*map2
)
10059 prod
= isl_map_product(map1
, map2
);
10060 prod
= isl_map_flatten(prod
);
10064 /* Given two set A and B, construct its Cartesian product A x B.
10066 struct isl_set
*isl_set_product(struct isl_set
*set1
, struct isl_set
*set2
)
10068 return isl_map_range_product(set1
, set2
);
10071 __isl_give isl_set
*isl_set_flat_product(__isl_take isl_set
*set1
,
10072 __isl_take isl_set
*set2
)
10074 return isl_map_flat_range_product(set1
, set2
);
10077 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10079 static __isl_give isl_map
*map_domain_product_aligned(__isl_take isl_map
*map1
,
10080 __isl_take isl_map
*map2
)
10082 return map_product(map1
, map2
, &isl_space_domain_product
,
10083 &isl_basic_map_domain_product
, 1);
10086 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10088 static __isl_give isl_map
*map_range_product_aligned(__isl_take isl_map
*map1
,
10089 __isl_take isl_map
*map2
)
10091 return map_product(map1
, map2
, &isl_space_range_product
,
10092 &isl_basic_map_range_product
, 1);
10095 __isl_give isl_map
*isl_map_domain_product(__isl_take isl_map
*map1
,
10096 __isl_take isl_map
*map2
)
10098 return isl_map_align_params_map_map_and(map1
, map2
,
10099 &map_domain_product_aligned
);
10102 __isl_give isl_map
*isl_map_range_product(__isl_take isl_map
*map1
,
10103 __isl_take isl_map
*map2
)
10105 return isl_map_align_params_map_map_and(map1
, map2
,
10106 &map_range_product_aligned
);
10109 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10111 __isl_give isl_map
*isl_map_factor_domain(__isl_take isl_map
*map
)
10114 int total1
, keep1
, total2
, keep2
;
10118 if (!isl_space_domain_is_wrapping(map
->dim
) ||
10119 !isl_space_range_is_wrapping(map
->dim
))
10120 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10121 "not a product", return isl_map_free(map
));
10123 space
= isl_map_get_space(map
);
10124 total1
= isl_space_dim(space
, isl_dim_in
);
10125 total2
= isl_space_dim(space
, isl_dim_out
);
10126 space
= isl_space_factor_domain(space
);
10127 keep1
= isl_space_dim(space
, isl_dim_in
);
10128 keep2
= isl_space_dim(space
, isl_dim_out
);
10129 map
= isl_map_project_out(map
, isl_dim_in
, keep1
, total1
- keep1
);
10130 map
= isl_map_project_out(map
, isl_dim_out
, keep2
, total2
- keep2
);
10131 map
= isl_map_reset_space(map
, space
);
10136 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10138 __isl_give isl_map
*isl_map_factor_range(__isl_take isl_map
*map
)
10141 int total1
, keep1
, total2
, keep2
;
10145 if (!isl_space_domain_is_wrapping(map
->dim
) ||
10146 !isl_space_range_is_wrapping(map
->dim
))
10147 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10148 "not a product", return isl_map_free(map
));
10150 space
= isl_map_get_space(map
);
10151 total1
= isl_space_dim(space
, isl_dim_in
);
10152 total2
= isl_space_dim(space
, isl_dim_out
);
10153 space
= isl_space_factor_range(space
);
10154 keep1
= isl_space_dim(space
, isl_dim_in
);
10155 keep2
= isl_space_dim(space
, isl_dim_out
);
10156 map
= isl_map_project_out(map
, isl_dim_in
, 0, total1
- keep1
);
10157 map
= isl_map_project_out(map
, isl_dim_out
, 0, total2
- keep2
);
10158 map
= isl_map_reset_space(map
, space
);
10163 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10165 __isl_give isl_map
*isl_map_domain_factor_domain(__isl_take isl_map
*map
)
10172 if (!isl_space_domain_is_wrapping(map
->dim
))
10173 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10174 "domain is not a product", return isl_map_free(map
));
10176 space
= isl_map_get_space(map
);
10177 total
= isl_space_dim(space
, isl_dim_in
);
10178 space
= isl_space_domain_factor_domain(space
);
10179 keep
= isl_space_dim(space
, isl_dim_in
);
10180 map
= isl_map_project_out(map
, isl_dim_in
, keep
, total
- keep
);
10181 map
= isl_map_reset_space(map
, space
);
10186 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10188 __isl_give isl_map
*isl_map_domain_factor_range(__isl_take isl_map
*map
)
10195 if (!isl_space_domain_is_wrapping(map
->dim
))
10196 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10197 "domain is not a product", return isl_map_free(map
));
10199 space
= isl_map_get_space(map
);
10200 total
= isl_space_dim(space
, isl_dim_in
);
10201 space
= isl_space_domain_factor_range(space
);
10202 keep
= isl_space_dim(space
, isl_dim_in
);
10203 map
= isl_map_project_out(map
, isl_dim_in
, 0, total
- keep
);
10204 map
= isl_map_reset_space(map
, space
);
10209 /* Given a map A -> [B -> C], extract the map A -> B.
10211 __isl_give isl_map
*isl_map_range_factor_domain(__isl_take isl_map
*map
)
10218 if (!isl_space_range_is_wrapping(map
->dim
))
10219 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10220 "range is not a product", return isl_map_free(map
));
10222 space
= isl_map_get_space(map
);
10223 total
= isl_space_dim(space
, isl_dim_out
);
10224 space
= isl_space_range_factor_domain(space
);
10225 keep
= isl_space_dim(space
, isl_dim_out
);
10226 map
= isl_map_project_out(map
, isl_dim_out
, keep
, total
- keep
);
10227 map
= isl_map_reset_space(map
, space
);
10232 /* Given a map A -> [B -> C], extract the map A -> C.
10234 __isl_give isl_map
*isl_map_range_factor_range(__isl_take isl_map
*map
)
10241 if (!isl_space_range_is_wrapping(map
->dim
))
10242 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10243 "range is not a product", return isl_map_free(map
));
10245 space
= isl_map_get_space(map
);
10246 total
= isl_space_dim(space
, isl_dim_out
);
10247 space
= isl_space_range_factor_range(space
);
10248 keep
= isl_space_dim(space
, isl_dim_out
);
10249 map
= isl_map_project_out(map
, isl_dim_out
, 0, total
- keep
);
10250 map
= isl_map_reset_space(map
, space
);
10255 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10257 __isl_give isl_map
*isl_map_flat_domain_product(__isl_take isl_map
*map1
,
10258 __isl_take isl_map
*map2
)
10262 prod
= isl_map_domain_product(map1
, map2
);
10263 prod
= isl_map_flatten_domain(prod
);
10267 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10269 __isl_give isl_map
*isl_map_flat_range_product(__isl_take isl_map
*map1
,
10270 __isl_take isl_map
*map2
)
10274 prod
= isl_map_range_product(map1
, map2
);
10275 prod
= isl_map_flatten_range(prod
);
10279 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map
*bmap
)
10282 uint32_t hash
= isl_hash_init();
10287 bmap
= isl_basic_map_copy(bmap
);
10288 bmap
= isl_basic_map_normalize(bmap
);
10291 total
= isl_basic_map_total_dim(bmap
);
10292 isl_hash_byte(hash
, bmap
->n_eq
& 0xFF);
10293 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
10295 c_hash
= isl_seq_get_hash(bmap
->eq
[i
], 1 + total
);
10296 isl_hash_hash(hash
, c_hash
);
10298 isl_hash_byte(hash
, bmap
->n_ineq
& 0xFF);
10299 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10301 c_hash
= isl_seq_get_hash(bmap
->ineq
[i
], 1 + total
);
10302 isl_hash_hash(hash
, c_hash
);
10304 isl_hash_byte(hash
, bmap
->n_div
& 0xFF);
10305 for (i
= 0; i
< bmap
->n_div
; ++i
) {
10307 if (isl_int_is_zero(bmap
->div
[i
][0]))
10309 isl_hash_byte(hash
, i
& 0xFF);
10310 c_hash
= isl_seq_get_hash(bmap
->div
[i
], 1 + 1 + total
);
10311 isl_hash_hash(hash
, c_hash
);
10313 isl_basic_map_free(bmap
);
10317 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set
*bset
)
10319 return isl_basic_map_get_hash(bset_to_bmap(bset
));
10322 uint32_t isl_map_get_hash(__isl_keep isl_map
*map
)
10329 map
= isl_map_copy(map
);
10330 map
= isl_map_normalize(map
);
10334 hash
= isl_hash_init();
10335 for (i
= 0; i
< map
->n
; ++i
) {
10336 uint32_t bmap_hash
;
10337 bmap_hash
= isl_basic_map_get_hash(map
->p
[i
]);
10338 isl_hash_hash(hash
, bmap_hash
);
10346 uint32_t isl_set_get_hash(__isl_keep isl_set
*set
)
10348 return isl_map_get_hash(set_to_map(set
));
10351 /* Check if the value for dimension dim is completely determined
10352 * by the values of the other parameters and variables.
10353 * That is, check if dimension dim is involved in an equality.
10355 int isl_basic_set_dim_is_unique(struct isl_basic_set
*bset
, unsigned dim
)
10362 nparam
= isl_basic_set_n_param(bset
);
10363 for (i
= 0; i
< bset
->n_eq
; ++i
)
10364 if (!isl_int_is_zero(bset
->eq
[i
][1 + nparam
+ dim
]))
10369 /* Check if the value for dimension dim is completely determined
10370 * by the values of the other parameters and variables.
10371 * That is, check if dimension dim is involved in an equality
10372 * for each of the subsets.
10374 int isl_set_dim_is_unique(struct isl_set
*set
, unsigned dim
)
10380 for (i
= 0; i
< set
->n
; ++i
) {
10382 unique
= isl_basic_set_dim_is_unique(set
->p
[i
], dim
);
10389 /* Return the number of basic maps in the (current) representation of "map".
10391 int isl_map_n_basic_map(__isl_keep isl_map
*map
)
10393 return map
? map
->n
: 0;
10396 int isl_set_n_basic_set(__isl_keep isl_set
*set
)
10398 return set
? set
->n
: 0;
10401 isl_stat
isl_map_foreach_basic_map(__isl_keep isl_map
*map
,
10402 isl_stat (*fn
)(__isl_take isl_basic_map
*bmap
, void *user
), void *user
)
10407 return isl_stat_error
;
10409 for (i
= 0; i
< map
->n
; ++i
)
10410 if (fn(isl_basic_map_copy(map
->p
[i
]), user
) < 0)
10411 return isl_stat_error
;
10413 return isl_stat_ok
;
10416 isl_stat
isl_set_foreach_basic_set(__isl_keep isl_set
*set
,
10417 isl_stat (*fn
)(__isl_take isl_basic_set
*bset
, void *user
), void *user
)
10422 return isl_stat_error
;
10424 for (i
= 0; i
< set
->n
; ++i
)
10425 if (fn(isl_basic_set_copy(set
->p
[i
]), user
) < 0)
10426 return isl_stat_error
;
10428 return isl_stat_ok
;
10431 /* Return a list of basic sets, the union of which is equal to "set".
10433 __isl_give isl_basic_set_list
*isl_set_get_basic_set_list(
10434 __isl_keep isl_set
*set
)
10437 isl_basic_set_list
*list
;
10442 list
= isl_basic_set_list_alloc(isl_set_get_ctx(set
), set
->n
);
10443 for (i
= 0; i
< set
->n
; ++i
) {
10444 isl_basic_set
*bset
;
10446 bset
= isl_basic_set_copy(set
->p
[i
]);
10447 list
= isl_basic_set_list_add(list
, bset
);
10453 __isl_give isl_basic_set
*isl_basic_set_lift(__isl_take isl_basic_set
*bset
)
10460 bset
= isl_basic_set_cow(bset
);
10464 dim
= isl_basic_set_get_space(bset
);
10465 dim
= isl_space_lift(dim
, bset
->n_div
);
10468 isl_space_free(bset
->dim
);
10470 bset
->extra
-= bset
->n_div
;
10473 bset
= isl_basic_set_finalize(bset
);
10477 isl_basic_set_free(bset
);
10481 __isl_give isl_set
*isl_set_lift(__isl_take isl_set
*set
)
10487 set
= isl_set_align_divs(set
);
10492 set
= isl_set_cow(set
);
10496 n_div
= set
->p
[0]->n_div
;
10497 dim
= isl_set_get_space(set
);
10498 dim
= isl_space_lift(dim
, n_div
);
10501 isl_space_free(set
->dim
);
10504 for (i
= 0; i
< set
->n
; ++i
) {
10505 set
->p
[i
] = isl_basic_set_lift(set
->p
[i
]);
10516 __isl_give isl_map
*isl_set_lifting(__isl_take isl_set
*set
)
10519 struct isl_basic_map
*bmap
;
10526 set
= isl_set_align_divs(set
);
10531 dim
= isl_set_get_space(set
);
10532 if (set
->n
== 0 || set
->p
[0]->n_div
== 0) {
10534 return isl_map_identity(isl_space_map_from_set(dim
));
10537 n_div
= set
->p
[0]->n_div
;
10538 dim
= isl_space_map_from_set(dim
);
10539 n_param
= isl_space_dim(dim
, isl_dim_param
);
10540 n_set
= isl_space_dim(dim
, isl_dim_in
);
10541 dim
= isl_space_extend(dim
, n_param
, n_set
, n_set
+ n_div
);
10542 bmap
= isl_basic_map_alloc_space(dim
, 0, n_set
, 2 * n_div
);
10543 for (i
= 0; i
< n_set
; ++i
)
10544 bmap
= var_equal(bmap
, i
);
10546 total
= n_param
+ n_set
+ n_set
+ n_div
;
10547 for (i
= 0; i
< n_div
; ++i
) {
10548 k
= isl_basic_map_alloc_inequality(bmap
);
10551 isl_seq_cpy(bmap
->ineq
[k
], set
->p
[0]->div
[i
]+1, 1+n_param
);
10552 isl_seq_clr(bmap
->ineq
[k
]+1+n_param
, n_set
);
10553 isl_seq_cpy(bmap
->ineq
[k
]+1+n_param
+n_set
,
10554 set
->p
[0]->div
[i
]+1+1+n_param
, n_set
+ n_div
);
10555 isl_int_neg(bmap
->ineq
[k
][1+n_param
+n_set
+n_set
+i
],
10556 set
->p
[0]->div
[i
][0]);
10558 l
= isl_basic_map_alloc_inequality(bmap
);
10561 isl_seq_neg(bmap
->ineq
[l
], bmap
->ineq
[k
], 1 + total
);
10562 isl_int_add(bmap
->ineq
[l
][0], bmap
->ineq
[l
][0],
10563 set
->p
[0]->div
[i
][0]);
10564 isl_int_sub_ui(bmap
->ineq
[l
][0], bmap
->ineq
[l
][0], 1);
10568 bmap
= isl_basic_map_simplify(bmap
);
10569 bmap
= isl_basic_map_finalize(bmap
);
10570 return isl_map_from_basic_map(bmap
);
10573 isl_basic_map_free(bmap
);
10577 int isl_basic_set_size(__isl_keep isl_basic_set
*bset
)
10585 dim
= isl_basic_set_total_dim(bset
);
10586 size
+= bset
->n_eq
* (1 + dim
);
10587 size
+= bset
->n_ineq
* (1 + dim
);
10588 size
+= bset
->n_div
* (2 + dim
);
10593 int isl_set_size(__isl_keep isl_set
*set
)
10601 for (i
= 0; i
< set
->n
; ++i
)
10602 size
+= isl_basic_set_size(set
->p
[i
]);
10607 /* Check if there is any lower bound (if lower == 0) and/or upper
10608 * bound (if upper == 0) on the specified dim.
10610 static isl_bool
basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10611 enum isl_dim_type type
, unsigned pos
, int lower
, int upper
)
10615 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
10616 return isl_bool_error
;
10618 pos
+= isl_basic_map_offset(bmap
, type
);
10620 for (i
= 0; i
< bmap
->n_div
; ++i
) {
10621 if (isl_int_is_zero(bmap
->div
[i
][0]))
10623 if (!isl_int_is_zero(bmap
->div
[i
][1 + pos
]))
10624 return isl_bool_true
;
10627 for (i
= 0; i
< bmap
->n_eq
; ++i
)
10628 if (!isl_int_is_zero(bmap
->eq
[i
][pos
]))
10629 return isl_bool_true
;
10631 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10632 int sgn
= isl_int_sgn(bmap
->ineq
[i
][pos
]);
10639 return lower
&& upper
;
10642 isl_bool
isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10643 enum isl_dim_type type
, unsigned pos
)
10645 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 0);
10648 isl_bool
isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map
*bmap
,
10649 enum isl_dim_type type
, unsigned pos
)
10651 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 1);
10654 isl_bool
isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map
*bmap
,
10655 enum isl_dim_type type
, unsigned pos
)
10657 return basic_map_dim_is_bounded(bmap
, type
, pos
, 1, 0);
10660 isl_bool
isl_map_dim_is_bounded(__isl_keep isl_map
*map
,
10661 enum isl_dim_type type
, unsigned pos
)
10666 return isl_bool_error
;
10668 for (i
= 0; i
< map
->n
; ++i
) {
10670 bounded
= isl_basic_map_dim_is_bounded(map
->p
[i
], type
, pos
);
10671 if (bounded
< 0 || !bounded
)
10675 return isl_bool_true
;
10678 /* Return true if the specified dim is involved in both an upper bound
10679 * and a lower bound.
10681 isl_bool
isl_set_dim_is_bounded(__isl_keep isl_set
*set
,
10682 enum isl_dim_type type
, unsigned pos
)
10684 return isl_map_dim_is_bounded(set_to_map(set
), type
, pos
);
10687 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10689 static isl_bool
has_any_bound(__isl_keep isl_map
*map
,
10690 enum isl_dim_type type
, unsigned pos
,
10691 isl_bool (*fn
)(__isl_keep isl_basic_map
*bmap
,
10692 enum isl_dim_type type
, unsigned pos
))
10697 return isl_bool_error
;
10699 for (i
= 0; i
< map
->n
; ++i
) {
10701 bounded
= fn(map
->p
[i
], type
, pos
);
10702 if (bounded
< 0 || bounded
)
10706 return isl_bool_false
;
10709 /* Return 1 if the specified dim is involved in any lower bound.
10711 isl_bool
isl_set_dim_has_any_lower_bound(__isl_keep isl_set
*set
,
10712 enum isl_dim_type type
, unsigned pos
)
10714 return has_any_bound(set
, type
, pos
,
10715 &isl_basic_map_dim_has_lower_bound
);
10718 /* Return 1 if the specified dim is involved in any upper bound.
10720 isl_bool
isl_set_dim_has_any_upper_bound(__isl_keep isl_set
*set
,
10721 enum isl_dim_type type
, unsigned pos
)
10723 return has_any_bound(set
, type
, pos
,
10724 &isl_basic_map_dim_has_upper_bound
);
10727 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10729 static isl_bool
has_bound(__isl_keep isl_map
*map
,
10730 enum isl_dim_type type
, unsigned pos
,
10731 isl_bool (*fn
)(__isl_keep isl_basic_map
*bmap
,
10732 enum isl_dim_type type
, unsigned pos
))
10737 return isl_bool_error
;
10739 for (i
= 0; i
< map
->n
; ++i
) {
10741 bounded
= fn(map
->p
[i
], type
, pos
);
10742 if (bounded
< 0 || !bounded
)
10746 return isl_bool_true
;
10749 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10751 isl_bool
isl_set_dim_has_lower_bound(__isl_keep isl_set
*set
,
10752 enum isl_dim_type type
, unsigned pos
)
10754 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_lower_bound
);
10757 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10759 isl_bool
isl_set_dim_has_upper_bound(__isl_keep isl_set
*set
,
10760 enum isl_dim_type type
, unsigned pos
)
10762 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_upper_bound
);
10765 /* For each of the "n" variables starting at "first", determine
10766 * the sign of the variable and put the results in the first "n"
10767 * elements of the array "signs".
10769 * 1 means that the variable is non-negative
10770 * -1 means that the variable is non-positive
10771 * 0 means the variable attains both positive and negative values.
10773 int isl_basic_set_vars_get_sign(__isl_keep isl_basic_set
*bset
,
10774 unsigned first
, unsigned n
, int *signs
)
10776 isl_vec
*bound
= NULL
;
10777 struct isl_tab
*tab
= NULL
;
10778 struct isl_tab_undo
*snap
;
10781 if (!bset
|| !signs
)
10784 bound
= isl_vec_alloc(bset
->ctx
, 1 + isl_basic_set_total_dim(bset
));
10785 tab
= isl_tab_from_basic_set(bset
, 0);
10786 if (!bound
|| !tab
)
10789 isl_seq_clr(bound
->el
, bound
->size
);
10790 isl_int_set_si(bound
->el
[0], -1);
10792 snap
= isl_tab_snap(tab
);
10793 for (i
= 0; i
< n
; ++i
) {
10796 isl_int_set_si(bound
->el
[1 + first
+ i
], -1);
10797 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10799 empty
= tab
->empty
;
10800 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10801 if (isl_tab_rollback(tab
, snap
) < 0)
10809 isl_int_set_si(bound
->el
[1 + first
+ i
], 1);
10810 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10812 empty
= tab
->empty
;
10813 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10814 if (isl_tab_rollback(tab
, snap
) < 0)
10817 signs
[i
] = empty
? -1 : 0;
10821 isl_vec_free(bound
);
10825 isl_vec_free(bound
);
10829 int isl_basic_set_dims_get_sign(__isl_keep isl_basic_set
*bset
,
10830 enum isl_dim_type type
, unsigned first
, unsigned n
, int *signs
)
10832 if (!bset
|| !signs
)
10834 isl_assert(bset
->ctx
, first
+ n
<= isl_basic_set_dim(bset
, type
),
10837 first
+= pos(bset
->dim
, type
) - 1;
10838 return isl_basic_set_vars_get_sign(bset
, first
, n
, signs
);
10841 /* Is it possible for the integer division "div" to depend (possibly
10842 * indirectly) on any output dimensions?
10844 * If the div is undefined, then we conservatively assume that it
10845 * may depend on them.
10846 * Otherwise, we check if it actually depends on them or on any integer
10847 * divisions that may depend on them.
10849 static isl_bool
div_may_involve_output(__isl_keep isl_basic_map
*bmap
, int div
)
10852 unsigned n_out
, o_out
;
10853 unsigned n_div
, o_div
;
10855 if (isl_int_is_zero(bmap
->div
[div
][0]))
10856 return isl_bool_true
;
10858 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10859 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10861 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + o_out
, n_out
) != -1)
10862 return isl_bool_true
;
10864 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10865 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10867 for (i
= 0; i
< n_div
; ++i
) {
10868 isl_bool may_involve
;
10870 if (isl_int_is_zero(bmap
->div
[div
][1 + o_div
+ i
]))
10872 may_involve
= div_may_involve_output(bmap
, i
);
10873 if (may_involve
< 0 || may_involve
)
10874 return may_involve
;
10877 return isl_bool_false
;
10880 /* Return the first integer division of "bmap" in the range
10881 * [first, first + n[ that may depend on any output dimensions and
10882 * that has a non-zero coefficient in "c" (where the first coefficient
10883 * in "c" corresponds to integer division "first").
10885 static int first_div_may_involve_output(__isl_keep isl_basic_map
*bmap
,
10886 isl_int
*c
, int first
, int n
)
10893 for (k
= first
; k
< first
+ n
; ++k
) {
10894 isl_bool may_involve
;
10896 if (isl_int_is_zero(c
[k
]))
10898 may_involve
= div_may_involve_output(bmap
, k
);
10899 if (may_involve
< 0)
10908 /* Look for a pair of inequality constraints in "bmap" of the form
10910 * -l + i >= 0 or i >= l
10912 * n + l - i >= 0 or i <= l + n
10914 * with n < "m" and i the output dimension at position "pos".
10915 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10916 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10917 * and earlier output dimensions, as well as integer divisions that do
10918 * not involve any of the output dimensions.
10920 * Return the index of the first inequality constraint or bmap->n_ineq
10921 * if no such pair can be found.
10923 static int find_modulo_constraint_pair(__isl_keep isl_basic_map
*bmap
,
10924 int pos
, isl_int m
)
10929 unsigned n_div
, o_div
;
10930 unsigned n_out
, o_out
;
10936 ctx
= isl_basic_map_get_ctx(bmap
);
10937 total
= isl_basic_map_total_dim(bmap
);
10938 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10939 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10940 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10941 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10942 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10943 if (!isl_int_abs_eq(bmap
->ineq
[i
][o_out
+ pos
], ctx
->one
))
10945 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + o_out
+ pos
+ 1,
10946 n_out
- (pos
+ 1)) != -1)
10948 if (first_div_may_involve_output(bmap
, bmap
->ineq
[i
] + o_div
,
10951 for (j
= i
+ 1; j
< bmap
->n_ineq
; ++j
) {
10952 if (!isl_int_abs_eq(bmap
->ineq
[j
][o_out
+ pos
],
10955 if (!isl_seq_is_neg(bmap
->ineq
[i
] + 1,
10956 bmap
->ineq
[j
] + 1, total
))
10960 if (j
>= bmap
->n_ineq
)
10962 isl_int_add(bmap
->ineq
[i
][0],
10963 bmap
->ineq
[i
][0], bmap
->ineq
[j
][0]);
10964 less
= isl_int_abs_lt(bmap
->ineq
[i
][0], m
);
10965 isl_int_sub(bmap
->ineq
[i
][0],
10966 bmap
->ineq
[i
][0], bmap
->ineq
[j
][0]);
10969 if (isl_int_is_one(bmap
->ineq
[i
][o_out
+ pos
]))
10975 return bmap
->n_ineq
;
10978 /* Return the index of the equality of "bmap" that defines
10979 * the output dimension "pos" in terms of earlier dimensions.
10980 * The equality may also involve integer divisions, as long
10981 * as those integer divisions are defined in terms of
10982 * parameters or input dimensions.
10983 * In this case, *div is set to the number of integer divisions and
10984 * *ineq is set to the number of inequality constraints (provided
10985 * div and ineq are not NULL).
10987 * The equality may also involve a single integer division involving
10988 * the output dimensions (typically only output dimension "pos") as
10989 * long as the coefficient of output dimension "pos" is 1 or -1 and
10990 * there is a pair of constraints i >= l and i <= l + n, with i referring
10991 * to output dimension "pos", l an expression involving only earlier
10992 * dimensions and n smaller than the coefficient of the integer division
10993 * in the equality. In this case, the output dimension can be defined
10994 * in terms of a modulo expression that does not involve the integer division.
10995 * *div is then set to this single integer division and
10996 * *ineq is set to the index of constraint i >= l.
10998 * Return bmap->n_eq if there is no such equality.
10999 * Return -1 on error.
11001 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map
*bmap
,
11002 int pos
, int *div
, int *ineq
)
11005 unsigned n_out
, o_out
;
11006 unsigned n_div
, o_div
;
11011 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
11012 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
11013 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
11014 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
11017 *ineq
= bmap
->n_ineq
;
11020 for (j
= 0; j
< bmap
->n_eq
; ++j
) {
11021 if (isl_int_is_zero(bmap
->eq
[j
][o_out
+ pos
]))
11023 if (isl_seq_first_non_zero(bmap
->eq
[j
] + o_out
+ pos
+ 1,
11024 n_out
- (pos
+ 1)) != -1)
11026 k
= first_div_may_involve_output(bmap
, bmap
->eq
[j
] + o_div
,
11030 if (!isl_int_is_one(bmap
->eq
[j
][o_out
+ pos
]) &&
11031 !isl_int_is_negone(bmap
->eq
[j
][o_out
+ pos
]))
11033 if (first_div_may_involve_output(bmap
, bmap
->eq
[j
] + o_div
,
11034 k
+ 1, n_div
- (k
+1)) < n_div
)
11036 l
= find_modulo_constraint_pair(bmap
, pos
,
11037 bmap
->eq
[j
][o_div
+ k
]);
11040 if (l
>= bmap
->n_ineq
)
11052 /* Check if the given basic map is obviously single-valued.
11053 * In particular, for each output dimension, check that there is
11054 * an equality that defines the output dimension in terms of
11055 * earlier dimensions.
11057 isl_bool
isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map
*bmap
)
11063 return isl_bool_error
;
11065 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
11067 for (i
= 0; i
< n_out
; ++i
) {
11070 eq
= isl_basic_map_output_defining_equality(bmap
, i
,
11073 return isl_bool_error
;
11074 if (eq
>= bmap
->n_eq
)
11075 return isl_bool_false
;
11078 return isl_bool_true
;
11081 /* Check if the given basic map is single-valued.
11082 * We simply compute
11086 * and check if the result is a subset of the identity mapping.
11088 isl_bool
isl_basic_map_is_single_valued(__isl_keep isl_basic_map
*bmap
)
11091 isl_basic_map
*test
;
11095 sv
= isl_basic_map_plain_is_single_valued(bmap
);
11099 test
= isl_basic_map_reverse(isl_basic_map_copy(bmap
));
11100 test
= isl_basic_map_apply_range(test
, isl_basic_map_copy(bmap
));
11102 space
= isl_basic_map_get_space(bmap
);
11103 space
= isl_space_map_from_set(isl_space_range(space
));
11104 id
= isl_basic_map_identity(space
);
11106 sv
= isl_basic_map_is_subset(test
, id
);
11108 isl_basic_map_free(test
);
11109 isl_basic_map_free(id
);
11114 /* Check if the given map is obviously single-valued.
11116 isl_bool
isl_map_plain_is_single_valued(__isl_keep isl_map
*map
)
11119 return isl_bool_error
;
11121 return isl_bool_true
;
11123 return isl_bool_false
;
11125 return isl_basic_map_plain_is_single_valued(map
->p
[0]);
11128 /* Check if the given map is single-valued.
11129 * We simply compute
11133 * and check if the result is a subset of the identity mapping.
11135 isl_bool
isl_map_is_single_valued(__isl_keep isl_map
*map
)
11142 sv
= isl_map_plain_is_single_valued(map
);
11146 test
= isl_map_reverse(isl_map_copy(map
));
11147 test
= isl_map_apply_range(test
, isl_map_copy(map
));
11149 dim
= isl_space_map_from_set(isl_space_range(isl_map_get_space(map
)));
11150 id
= isl_map_identity(dim
);
11152 sv
= isl_map_is_subset(test
, id
);
11154 isl_map_free(test
);
11160 isl_bool
isl_map_is_injective(__isl_keep isl_map
*map
)
11164 map
= isl_map_copy(map
);
11165 map
= isl_map_reverse(map
);
11166 in
= isl_map_is_single_valued(map
);
11172 /* Check if the given map is obviously injective.
11174 isl_bool
isl_map_plain_is_injective(__isl_keep isl_map
*map
)
11178 map
= isl_map_copy(map
);
11179 map
= isl_map_reverse(map
);
11180 in
= isl_map_plain_is_single_valued(map
);
11186 isl_bool
isl_map_is_bijective(__isl_keep isl_map
*map
)
11190 sv
= isl_map_is_single_valued(map
);
11194 return isl_map_is_injective(map
);
11197 isl_bool
isl_set_is_singleton(__isl_keep isl_set
*set
)
11199 return isl_map_is_single_valued(set_to_map(set
));
11202 /* Does "map" only map elements to themselves?
11204 * If the domain and range spaces are different, then "map"
11205 * is considered not to be an identity relation, even if it is empty.
11206 * Otherwise, construct the maximal identity relation and
11207 * check whether "map" is a subset of this relation.
11209 isl_bool
isl_map_is_identity(__isl_keep isl_map
*map
)
11213 isl_bool equal
, is_identity
;
11215 space
= isl_map_get_space(map
);
11216 equal
= isl_space_tuple_is_equal(space
, isl_dim_in
, space
, isl_dim_out
);
11217 isl_space_free(space
);
11218 if (equal
< 0 || !equal
)
11221 id
= isl_map_identity(isl_map_get_space(map
));
11222 is_identity
= isl_map_is_subset(map
, id
);
11225 return is_identity
;
11228 int isl_map_is_translation(__isl_keep isl_map
*map
)
11233 delta
= isl_map_deltas(isl_map_copy(map
));
11234 ok
= isl_set_is_singleton(delta
);
11235 isl_set_free(delta
);
11240 static int unique(isl_int
*p
, unsigned pos
, unsigned len
)
11242 if (isl_seq_first_non_zero(p
, pos
) != -1)
11244 if (isl_seq_first_non_zero(p
+ pos
+ 1, len
- pos
- 1) != -1)
11249 isl_bool
isl_basic_set_is_box(__isl_keep isl_basic_set
*bset
)
11256 return isl_bool_error
;
11258 if (isl_basic_set_dim(bset
, isl_dim_div
) != 0)
11259 return isl_bool_false
;
11261 nvar
= isl_basic_set_dim(bset
, isl_dim_set
);
11262 ovar
= isl_space_offset(bset
->dim
, isl_dim_set
);
11263 for (j
= 0; j
< nvar
; ++j
) {
11264 int lower
= 0, upper
= 0;
11265 for (i
= 0; i
< bset
->n_eq
; ++i
) {
11266 if (isl_int_is_zero(bset
->eq
[i
][1 + ovar
+ j
]))
11268 if (!unique(bset
->eq
[i
] + 1 + ovar
, j
, nvar
))
11269 return isl_bool_false
;
11272 if (i
< bset
->n_eq
)
11274 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
11275 if (isl_int_is_zero(bset
->ineq
[i
][1 + ovar
+ j
]))
11277 if (!unique(bset
->ineq
[i
] + 1 + ovar
, j
, nvar
))
11278 return isl_bool_false
;
11279 if (isl_int_is_pos(bset
->ineq
[i
][1 + ovar
+ j
]))
11284 if (!lower
|| !upper
)
11285 return isl_bool_false
;
11288 return isl_bool_true
;
11291 isl_bool
isl_set_is_box(__isl_keep isl_set
*set
)
11294 return isl_bool_error
;
11296 return isl_bool_false
;
11298 return isl_basic_set_is_box(set
->p
[0]);
11301 isl_bool
isl_basic_set_is_wrapping(__isl_keep isl_basic_set
*bset
)
11304 return isl_bool_error
;
11306 return isl_space_is_wrapping(bset
->dim
);
11309 isl_bool
isl_set_is_wrapping(__isl_keep isl_set
*set
)
11312 return isl_bool_error
;
11314 return isl_space_is_wrapping(set
->dim
);
11317 /* Modify the space of "map" through a call to "change".
11318 * If "can_change" is set (not NULL), then first call it to check
11319 * if the modification is allowed, printing the error message "cannot_change"
11322 static __isl_give isl_map
*isl_map_change_space(__isl_take isl_map
*map
,
11323 isl_bool (*can_change
)(__isl_keep isl_map
*map
),
11324 const char *cannot_change
,
11325 __isl_give isl_space
*(*change
)(__isl_take isl_space
*space
))
11333 ok
= can_change
? can_change(map
) : isl_bool_true
;
11335 return isl_map_free(map
);
11337 isl_die(isl_map_get_ctx(map
), isl_error_invalid
, cannot_change
,
11338 return isl_map_free(map
));
11340 space
= change(isl_map_get_space(map
));
11341 map
= isl_map_reset_space(map
, space
);
11346 /* Is the domain of "map" a wrapped relation?
11348 isl_bool
isl_map_domain_is_wrapping(__isl_keep isl_map
*map
)
11351 return isl_bool_error
;
11353 return isl_space_domain_is_wrapping(map
->dim
);
11356 /* Is the range of "map" a wrapped relation?
11358 isl_bool
isl_map_range_is_wrapping(__isl_keep isl_map
*map
)
11361 return isl_bool_error
;
11363 return isl_space_range_is_wrapping(map
->dim
);
11366 __isl_give isl_basic_set
*isl_basic_map_wrap(__isl_take isl_basic_map
*bmap
)
11368 bmap
= isl_basic_map_cow(bmap
);
11372 bmap
->dim
= isl_space_wrap(bmap
->dim
);
11376 bmap
= isl_basic_map_finalize(bmap
);
11378 return bset_from_bmap(bmap
);
11380 isl_basic_map_free(bmap
);
11384 /* Given a map A -> B, return the set (A -> B).
11386 __isl_give isl_set
*isl_map_wrap(__isl_take isl_map
*map
)
11388 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_wrap
);
11391 __isl_give isl_basic_map
*isl_basic_set_unwrap(__isl_take isl_basic_set
*bset
)
11393 bset
= isl_basic_set_cow(bset
);
11397 bset
->dim
= isl_space_unwrap(bset
->dim
);
11401 bset
= isl_basic_set_finalize(bset
);
11403 return bset_to_bmap(bset
);
11405 isl_basic_set_free(bset
);
11409 /* Given a set (A -> B), return the map A -> B.
11410 * Error out if "set" is not of the form (A -> B).
11412 __isl_give isl_map
*isl_set_unwrap(__isl_take isl_set
*set
)
11414 return isl_map_change_space(set
, &isl_set_is_wrapping
,
11415 "not a wrapping set", &isl_space_unwrap
);
11418 __isl_give isl_basic_map
*isl_basic_map_reset(__isl_take isl_basic_map
*bmap
,
11419 enum isl_dim_type type
)
11424 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
11427 bmap
= isl_basic_map_cow(bmap
);
11431 bmap
->dim
= isl_space_reset(bmap
->dim
, type
);
11435 bmap
= isl_basic_map_finalize(bmap
);
11439 isl_basic_map_free(bmap
);
11443 __isl_give isl_map
*isl_map_reset(__isl_take isl_map
*map
,
11444 enum isl_dim_type type
)
11451 if (!isl_space_is_named_or_nested(map
->dim
, type
))
11454 map
= isl_map_cow(map
);
11458 for (i
= 0; i
< map
->n
; ++i
) {
11459 map
->p
[i
] = isl_basic_map_reset(map
->p
[i
], type
);
11463 map
->dim
= isl_space_reset(map
->dim
, type
);
11473 __isl_give isl_basic_map
*isl_basic_map_flatten(__isl_take isl_basic_map
*bmap
)
11478 if (!bmap
->dim
->nested
[0] && !bmap
->dim
->nested
[1])
11481 bmap
= isl_basic_map_cow(bmap
);
11485 bmap
->dim
= isl_space_flatten(bmap
->dim
);
11489 bmap
= isl_basic_map_finalize(bmap
);
11493 isl_basic_map_free(bmap
);
11497 __isl_give isl_basic_set
*isl_basic_set_flatten(__isl_take isl_basic_set
*bset
)
11499 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset
)));
11502 __isl_give isl_basic_map
*isl_basic_map_flatten_domain(
11503 __isl_take isl_basic_map
*bmap
)
11508 if (!bmap
->dim
->nested
[0])
11511 bmap
= isl_basic_map_cow(bmap
);
11515 bmap
->dim
= isl_space_flatten_domain(bmap
->dim
);
11519 bmap
= isl_basic_map_finalize(bmap
);
11523 isl_basic_map_free(bmap
);
11527 __isl_give isl_basic_map
*isl_basic_map_flatten_range(
11528 __isl_take isl_basic_map
*bmap
)
11533 if (!bmap
->dim
->nested
[1])
11536 bmap
= isl_basic_map_cow(bmap
);
11540 bmap
->dim
= isl_space_flatten_range(bmap
->dim
);
11544 bmap
= isl_basic_map_finalize(bmap
);
11548 isl_basic_map_free(bmap
);
11552 /* Remove any internal structure from the spaces of domain and range of "map".
11554 __isl_give isl_map
*isl_map_flatten(__isl_take isl_map
*map
)
11559 if (!map
->dim
->nested
[0] && !map
->dim
->nested
[1])
11562 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten
);
11565 __isl_give isl_set
*isl_set_flatten(__isl_take isl_set
*set
)
11567 return set_from_map(isl_map_flatten(set_to_map(set
)));
11570 __isl_give isl_map
*isl_set_flatten_map(__isl_take isl_set
*set
)
11572 isl_space
*dim
, *flat_dim
;
11575 dim
= isl_set_get_space(set
);
11576 flat_dim
= isl_space_flatten(isl_space_copy(dim
));
11577 map
= isl_map_identity(isl_space_join(isl_space_reverse(dim
), flat_dim
));
11578 map
= isl_map_intersect_domain(map
, set
);
11583 /* Remove any internal structure from the space of the domain of "map".
11585 __isl_give isl_map
*isl_map_flatten_domain(__isl_take isl_map
*map
)
11590 if (!map
->dim
->nested
[0])
11593 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten_domain
);
11596 /* Remove any internal structure from the space of the range of "map".
11598 __isl_give isl_map
*isl_map_flatten_range(__isl_take isl_map
*map
)
11603 if (!map
->dim
->nested
[1])
11606 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten_range
);
11609 /* Reorder the dimensions of "bmap" according to the given dim_map
11610 * and set the dimension specification to "dim" and
11611 * perform Gaussian elimination on the result.
11613 __isl_give isl_basic_map
*isl_basic_map_realign(__isl_take isl_basic_map
*bmap
,
11614 __isl_take isl_space
*dim
, __isl_take
struct isl_dim_map
*dim_map
)
11616 isl_basic_map
*res
;
11619 bmap
= isl_basic_map_cow(bmap
);
11620 if (!bmap
|| !dim
|| !dim_map
)
11623 flags
= bmap
->flags
;
11624 ISL_FL_CLR(flags
, ISL_BASIC_MAP_FINAL
);
11625 ISL_FL_CLR(flags
, ISL_BASIC_MAP_NORMALIZED
);
11626 ISL_FL_CLR(flags
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
11627 res
= isl_basic_map_alloc_space(dim
,
11628 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
11629 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
11631 res
->flags
= flags
;
11632 res
= isl_basic_map_gauss(res
, NULL
);
11633 res
= isl_basic_map_finalize(res
);
11637 isl_basic_map_free(bmap
);
11638 isl_space_free(dim
);
11642 /* Reorder the dimensions of "map" according to given reordering.
11644 __isl_give isl_map
*isl_map_realign(__isl_take isl_map
*map
,
11645 __isl_take isl_reordering
*r
)
11648 struct isl_dim_map
*dim_map
;
11650 map
= isl_map_cow(map
);
11651 dim_map
= isl_dim_map_from_reordering(r
);
11652 if (!map
|| !r
|| !dim_map
)
11655 for (i
= 0; i
< map
->n
; ++i
) {
11656 struct isl_dim_map
*dim_map_i
;
11658 dim_map_i
= isl_dim_map_extend(dim_map
, map
->p
[i
]);
11660 map
->p
[i
] = isl_basic_map_realign(map
->p
[i
],
11661 isl_space_copy(r
->dim
), dim_map_i
);
11667 map
= isl_map_reset_space(map
, isl_space_copy(r
->dim
));
11669 isl_reordering_free(r
);
11675 isl_reordering_free(r
);
11679 __isl_give isl_set
*isl_set_realign(__isl_take isl_set
*set
,
11680 __isl_take isl_reordering
*r
)
11682 return set_from_map(isl_map_realign(set_to_map(set
), r
));
11685 __isl_give isl_map
*isl_map_align_params(__isl_take isl_map
*map
,
11686 __isl_take isl_space
*model
)
11690 if (!map
|| !model
)
11693 ctx
= isl_space_get_ctx(model
);
11694 if (!isl_space_has_named_params(model
))
11695 isl_die(ctx
, isl_error_invalid
,
11696 "model has unnamed parameters", goto error
);
11697 if (!isl_space_has_named_params(map
->dim
))
11698 isl_die(ctx
, isl_error_invalid
,
11699 "relation has unnamed parameters", goto error
);
11700 if (!isl_space_match(map
->dim
, isl_dim_param
, model
, isl_dim_param
)) {
11701 isl_reordering
*exp
;
11703 model
= isl_space_drop_dims(model
, isl_dim_in
,
11704 0, isl_space_dim(model
, isl_dim_in
));
11705 model
= isl_space_drop_dims(model
, isl_dim_out
,
11706 0, isl_space_dim(model
, isl_dim_out
));
11707 exp
= isl_parameter_alignment_reordering(map
->dim
, model
);
11708 exp
= isl_reordering_extend_space(exp
, isl_map_get_space(map
));
11709 map
= isl_map_realign(map
, exp
);
11712 isl_space_free(model
);
11715 isl_space_free(model
);
11720 __isl_give isl_set
*isl_set_align_params(__isl_take isl_set
*set
,
11721 __isl_take isl_space
*model
)
11723 return isl_map_align_params(set
, model
);
11726 /* Align the parameters of "bmap" to those of "model", introducing
11727 * additional parameters if needed.
11729 __isl_give isl_basic_map
*isl_basic_map_align_params(
11730 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*model
)
11734 if (!bmap
|| !model
)
11737 ctx
= isl_space_get_ctx(model
);
11738 if (!isl_space_has_named_params(model
))
11739 isl_die(ctx
, isl_error_invalid
,
11740 "model has unnamed parameters", goto error
);
11741 if (!isl_space_has_named_params(bmap
->dim
))
11742 isl_die(ctx
, isl_error_invalid
,
11743 "relation has unnamed parameters", goto error
);
11744 if (!isl_space_match(bmap
->dim
, isl_dim_param
, model
, isl_dim_param
)) {
11745 isl_reordering
*exp
;
11746 struct isl_dim_map
*dim_map
;
11748 model
= isl_space_drop_dims(model
, isl_dim_in
,
11749 0, isl_space_dim(model
, isl_dim_in
));
11750 model
= isl_space_drop_dims(model
, isl_dim_out
,
11751 0, isl_space_dim(model
, isl_dim_out
));
11752 exp
= isl_parameter_alignment_reordering(bmap
->dim
, model
);
11753 exp
= isl_reordering_extend_space(exp
,
11754 isl_basic_map_get_space(bmap
));
11755 dim_map
= isl_dim_map_from_reordering(exp
);
11756 bmap
= isl_basic_map_realign(bmap
,
11757 exp
? isl_space_copy(exp
->dim
) : NULL
,
11758 isl_dim_map_extend(dim_map
, bmap
));
11759 isl_reordering_free(exp
);
11763 isl_space_free(model
);
11766 isl_space_free(model
);
11767 isl_basic_map_free(bmap
);
11771 /* Align the parameters of "bset" to those of "model", introducing
11772 * additional parameters if needed.
11774 __isl_give isl_basic_set
*isl_basic_set_align_params(
11775 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*model
)
11777 return isl_basic_map_align_params(bset
, model
);
11780 __isl_give isl_mat
*isl_basic_map_equalities_matrix(
11781 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11782 enum isl_dim_type c2
, enum isl_dim_type c3
,
11783 enum isl_dim_type c4
, enum isl_dim_type c5
)
11785 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11786 struct isl_mat
*mat
;
11792 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_eq
,
11793 isl_basic_map_total_dim(bmap
) + 1);
11796 for (i
= 0; i
< bmap
->n_eq
; ++i
)
11797 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11798 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11799 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11800 isl_int_set(mat
->row
[i
][pos
],
11801 bmap
->eq
[i
][off
+ k
]);
11809 __isl_give isl_mat
*isl_basic_map_inequalities_matrix(
11810 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11811 enum isl_dim_type c2
, enum isl_dim_type c3
,
11812 enum isl_dim_type c4
, enum isl_dim_type c5
)
11814 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11815 struct isl_mat
*mat
;
11821 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_ineq
,
11822 isl_basic_map_total_dim(bmap
) + 1);
11825 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
11826 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11827 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11828 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11829 isl_int_set(mat
->row
[i
][pos
],
11830 bmap
->ineq
[i
][off
+ k
]);
11838 __isl_give isl_basic_map
*isl_basic_map_from_constraint_matrices(
11839 __isl_take isl_space
*dim
,
11840 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
11841 enum isl_dim_type c2
, enum isl_dim_type c3
,
11842 enum isl_dim_type c4
, enum isl_dim_type c5
)
11844 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11845 isl_basic_map
*bmap
;
11851 if (!dim
|| !eq
|| !ineq
)
11854 if (eq
->n_col
!= ineq
->n_col
)
11855 isl_die(dim
->ctx
, isl_error_invalid
,
11856 "equalities and inequalities matrices should have "
11857 "same number of columns", goto error
);
11859 total
= 1 + isl_space_dim(dim
, isl_dim_all
);
11861 if (eq
->n_col
< total
)
11862 isl_die(dim
->ctx
, isl_error_invalid
,
11863 "number of columns too small", goto error
);
11865 extra
= eq
->n_col
- total
;
11867 bmap
= isl_basic_map_alloc_space(isl_space_copy(dim
), extra
,
11868 eq
->n_row
, ineq
->n_row
);
11871 for (i
= 0; i
< extra
; ++i
) {
11872 k
= isl_basic_map_alloc_div(bmap
);
11875 isl_int_set_si(bmap
->div
[k
][0], 0);
11877 for (i
= 0; i
< eq
->n_row
; ++i
) {
11878 l
= isl_basic_map_alloc_equality(bmap
);
11881 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11882 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11883 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11884 isl_int_set(bmap
->eq
[l
][off
+ k
],
11890 for (i
= 0; i
< ineq
->n_row
; ++i
) {
11891 l
= isl_basic_map_alloc_inequality(bmap
);
11894 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11895 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11896 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11897 isl_int_set(bmap
->ineq
[l
][off
+ k
],
11898 ineq
->row
[i
][pos
]);
11904 isl_space_free(dim
);
11906 isl_mat_free(ineq
);
11908 bmap
= isl_basic_map_simplify(bmap
);
11909 return isl_basic_map_finalize(bmap
);
11911 isl_space_free(dim
);
11913 isl_mat_free(ineq
);
11917 __isl_give isl_mat
*isl_basic_set_equalities_matrix(
11918 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
11919 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11921 return isl_basic_map_equalities_matrix(bset_to_bmap(bset
),
11922 c1
, c2
, c3
, c4
, isl_dim_in
);
11925 __isl_give isl_mat
*isl_basic_set_inequalities_matrix(
11926 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
11927 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11929 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset
),
11930 c1
, c2
, c3
, c4
, isl_dim_in
);
11933 __isl_give isl_basic_set
*isl_basic_set_from_constraint_matrices(
11934 __isl_take isl_space
*dim
,
11935 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
11936 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11938 isl_basic_map
*bmap
;
11939 bmap
= isl_basic_map_from_constraint_matrices(dim
, eq
, ineq
,
11940 c1
, c2
, c3
, c4
, isl_dim_in
);
11941 return bset_from_bmap(bmap
);
11944 isl_bool
isl_basic_map_can_zip(__isl_keep isl_basic_map
*bmap
)
11947 return isl_bool_error
;
11949 return isl_space_can_zip(bmap
->dim
);
11952 isl_bool
isl_map_can_zip(__isl_keep isl_map
*map
)
11955 return isl_bool_error
;
11957 return isl_space_can_zip(map
->dim
);
11960 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
11961 * (A -> C) -> (B -> D).
11963 __isl_give isl_basic_map
*isl_basic_map_zip(__isl_take isl_basic_map
*bmap
)
11972 if (!isl_basic_map_can_zip(bmap
))
11973 isl_die(bmap
->ctx
, isl_error_invalid
,
11974 "basic map cannot be zipped", goto error
);
11975 pos
= isl_basic_map_offset(bmap
, isl_dim_in
) +
11976 isl_space_dim(bmap
->dim
->nested
[0], isl_dim_in
);
11977 n1
= isl_space_dim(bmap
->dim
->nested
[0], isl_dim_out
);
11978 n2
= isl_space_dim(bmap
->dim
->nested
[1], isl_dim_in
);
11979 bmap
= isl_basic_map_cow(bmap
);
11980 bmap
= isl_basic_map_swap_vars(bmap
, pos
, n1
, n2
);
11983 bmap
->dim
= isl_space_zip(bmap
->dim
);
11986 bmap
= isl_basic_map_mark_final(bmap
);
11989 isl_basic_map_free(bmap
);
11993 /* Given a map (A -> B) -> (C -> D), return the corresponding map
11994 * (A -> C) -> (B -> D).
11996 __isl_give isl_map
*isl_map_zip(__isl_take isl_map
*map
)
12003 if (!isl_map_can_zip(map
))
12004 isl_die(map
->ctx
, isl_error_invalid
, "map cannot be zipped",
12007 map
= isl_map_cow(map
);
12011 for (i
= 0; i
< map
->n
; ++i
) {
12012 map
->p
[i
] = isl_basic_map_zip(map
->p
[i
]);
12017 map
->dim
= isl_space_zip(map
->dim
);
12027 /* Can we apply isl_basic_map_curry to "bmap"?
12028 * That is, does it have a nested relation in its domain?
12030 isl_bool
isl_basic_map_can_curry(__isl_keep isl_basic_map
*bmap
)
12033 return isl_bool_error
;
12035 return isl_space_can_curry(bmap
->dim
);
12038 /* Can we apply isl_map_curry to "map"?
12039 * That is, does it have a nested relation in its domain?
12041 isl_bool
isl_map_can_curry(__isl_keep isl_map
*map
)
12044 return isl_bool_error
;
12046 return isl_space_can_curry(map
->dim
);
12049 /* Given a basic map (A -> B) -> C, return the corresponding basic map
12052 __isl_give isl_basic_map
*isl_basic_map_curry(__isl_take isl_basic_map
*bmap
)
12058 if (!isl_basic_map_can_curry(bmap
))
12059 isl_die(bmap
->ctx
, isl_error_invalid
,
12060 "basic map cannot be curried", goto error
);
12061 bmap
= isl_basic_map_cow(bmap
);
12064 bmap
->dim
= isl_space_curry(bmap
->dim
);
12067 bmap
= isl_basic_map_mark_final(bmap
);
12070 isl_basic_map_free(bmap
);
12074 /* Given a map (A -> B) -> C, return the corresponding map
12077 __isl_give isl_map
*isl_map_curry(__isl_take isl_map
*map
)
12079 return isl_map_change_space(map
, &isl_map_can_curry
,
12080 "map cannot be curried", &isl_space_curry
);
12083 /* Can isl_map_range_curry be applied to "map"?
12084 * That is, does it have a nested relation in its range,
12085 * the domain of which is itself a nested relation?
12087 isl_bool
isl_map_can_range_curry(__isl_keep isl_map
*map
)
12090 return isl_bool_error
;
12092 return isl_space_can_range_curry(map
->dim
);
12095 /* Given a map A -> ((B -> C) -> D), return the corresponding map
12096 * A -> (B -> (C -> D)).
12098 __isl_give isl_map
*isl_map_range_curry(__isl_take isl_map
*map
)
12100 return isl_map_change_space(map
, &isl_map_can_range_curry
,
12101 "map range cannot be curried",
12102 &isl_space_range_curry
);
12105 /* Can we apply isl_basic_map_uncurry to "bmap"?
12106 * That is, does it have a nested relation in its domain?
12108 isl_bool
isl_basic_map_can_uncurry(__isl_keep isl_basic_map
*bmap
)
12111 return isl_bool_error
;
12113 return isl_space_can_uncurry(bmap
->dim
);
12116 /* Can we apply isl_map_uncurry to "map"?
12117 * That is, does it have a nested relation in its domain?
12119 isl_bool
isl_map_can_uncurry(__isl_keep isl_map
*map
)
12122 return isl_bool_error
;
12124 return isl_space_can_uncurry(map
->dim
);
12127 /* Given a basic map A -> (B -> C), return the corresponding basic map
12130 __isl_give isl_basic_map
*isl_basic_map_uncurry(__isl_take isl_basic_map
*bmap
)
12136 if (!isl_basic_map_can_uncurry(bmap
))
12137 isl_die(bmap
->ctx
, isl_error_invalid
,
12138 "basic map cannot be uncurried",
12139 return isl_basic_map_free(bmap
));
12140 bmap
= isl_basic_map_cow(bmap
);
12143 bmap
->dim
= isl_space_uncurry(bmap
->dim
);
12145 return isl_basic_map_free(bmap
);
12146 bmap
= isl_basic_map_mark_final(bmap
);
12150 /* Given a map A -> (B -> C), return the corresponding map
12153 __isl_give isl_map
*isl_map_uncurry(__isl_take isl_map
*map
)
12155 return isl_map_change_space(map
, &isl_map_can_uncurry
,
12156 "map cannot be uncurried", &isl_space_uncurry
);
12159 /* Construct a basic map mapping the domain of the affine expression
12160 * to a one-dimensional range prescribed by the affine expression.
12161 * If "rational" is set, then construct a rational basic map.
12163 * A NaN affine expression cannot be converted to a basic map.
12165 static __isl_give isl_basic_map
*isl_basic_map_from_aff2(
12166 __isl_take isl_aff
*aff
, int rational
)
12171 isl_local_space
*ls
;
12172 isl_basic_map
*bmap
= NULL
;
12176 is_nan
= isl_aff_is_nan(aff
);
12180 isl_die(isl_aff_get_ctx(aff
), isl_error_invalid
,
12181 "cannot convert NaN", goto error
);
12183 ls
= isl_aff_get_local_space(aff
);
12184 bmap
= isl_basic_map_from_local_space(ls
);
12185 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
12186 k
= isl_basic_map_alloc_equality(bmap
);
12190 pos
= isl_basic_map_offset(bmap
, isl_dim_out
);
12191 isl_seq_cpy(bmap
->eq
[k
], aff
->v
->el
+ 1, pos
);
12192 isl_int_neg(bmap
->eq
[k
][pos
], aff
->v
->el
[0]);
12193 isl_seq_cpy(bmap
->eq
[k
] + pos
+ 1, aff
->v
->el
+ 1 + pos
,
12194 aff
->v
->size
- (pos
+ 1));
12198 bmap
= isl_basic_map_set_rational(bmap
);
12199 bmap
= isl_basic_map_finalize(bmap
);
12203 isl_basic_map_free(bmap
);
12207 /* Construct a basic map mapping the domain of the affine expression
12208 * to a one-dimensional range prescribed by the affine expression.
12210 __isl_give isl_basic_map
*isl_basic_map_from_aff(__isl_take isl_aff
*aff
)
12212 return isl_basic_map_from_aff2(aff
, 0);
12215 /* Construct a map mapping the domain of the affine expression
12216 * to a one-dimensional range prescribed by the affine expression.
12218 __isl_give isl_map
*isl_map_from_aff(__isl_take isl_aff
*aff
)
12220 isl_basic_map
*bmap
;
12222 bmap
= isl_basic_map_from_aff(aff
);
12223 return isl_map_from_basic_map(bmap
);
12226 /* Construct a basic map mapping the domain the multi-affine expression
12227 * to its range, with each dimension in the range equated to the
12228 * corresponding affine expression.
12229 * If "rational" is set, then construct a rational basic map.
12231 __isl_give isl_basic_map
*isl_basic_map_from_multi_aff2(
12232 __isl_take isl_multi_aff
*maff
, int rational
)
12236 isl_basic_map
*bmap
;
12241 if (isl_space_dim(maff
->space
, isl_dim_out
) != maff
->n
)
12242 isl_die(isl_multi_aff_get_ctx(maff
), isl_error_internal
,
12243 "invalid space", goto error
);
12245 space
= isl_space_domain(isl_multi_aff_get_space(maff
));
12246 bmap
= isl_basic_map_universe(isl_space_from_domain(space
));
12248 bmap
= isl_basic_map_set_rational(bmap
);
12250 for (i
= 0; i
< maff
->n
; ++i
) {
12252 isl_basic_map
*bmap_i
;
12254 aff
= isl_aff_copy(maff
->p
[i
]);
12255 bmap_i
= isl_basic_map_from_aff2(aff
, rational
);
12257 bmap
= isl_basic_map_flat_range_product(bmap
, bmap_i
);
12260 bmap
= isl_basic_map_reset_space(bmap
, isl_multi_aff_get_space(maff
));
12262 isl_multi_aff_free(maff
);
12265 isl_multi_aff_free(maff
);
12269 /* Construct a basic map mapping the domain the multi-affine expression
12270 * to its range, with each dimension in the range equated to the
12271 * corresponding affine expression.
12273 __isl_give isl_basic_map
*isl_basic_map_from_multi_aff(
12274 __isl_take isl_multi_aff
*ma
)
12276 return isl_basic_map_from_multi_aff2(ma
, 0);
12279 /* Construct a map mapping the domain the multi-affine expression
12280 * to its range, with each dimension in the range equated to the
12281 * corresponding affine expression.
12283 __isl_give isl_map
*isl_map_from_multi_aff(__isl_take isl_multi_aff
*maff
)
12285 isl_basic_map
*bmap
;
12287 bmap
= isl_basic_map_from_multi_aff(maff
);
12288 return isl_map_from_basic_map(bmap
);
12291 /* Construct a basic map mapping a domain in the given space to
12292 * to an n-dimensional range, with n the number of elements in the list,
12293 * where each coordinate in the range is prescribed by the
12294 * corresponding affine expression.
12295 * The domains of all affine expressions in the list are assumed to match
12298 __isl_give isl_basic_map
*isl_basic_map_from_aff_list(
12299 __isl_take isl_space
*domain_dim
, __isl_take isl_aff_list
*list
)
12303 isl_basic_map
*bmap
;
12308 dim
= isl_space_from_domain(domain_dim
);
12309 bmap
= isl_basic_map_universe(dim
);
12311 for (i
= 0; i
< list
->n
; ++i
) {
12313 isl_basic_map
*bmap_i
;
12315 aff
= isl_aff_copy(list
->p
[i
]);
12316 bmap_i
= isl_basic_map_from_aff(aff
);
12318 bmap
= isl_basic_map_flat_range_product(bmap
, bmap_i
);
12321 isl_aff_list_free(list
);
12325 __isl_give isl_set
*isl_set_equate(__isl_take isl_set
*set
,
12326 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12328 return isl_map_equate(set
, type1
, pos1
, type2
, pos2
);
12331 /* Construct a basic map where the given dimensions are equal to each other.
12333 static __isl_give isl_basic_map
*equator(__isl_take isl_space
*space
,
12334 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12336 isl_basic_map
*bmap
= NULL
;
12342 if (pos1
>= isl_space_dim(space
, type1
))
12343 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12344 "index out of bounds", goto error
);
12345 if (pos2
>= isl_space_dim(space
, type2
))
12346 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12347 "index out of bounds", goto error
);
12349 if (type1
== type2
&& pos1
== pos2
)
12350 return isl_basic_map_universe(space
);
12352 bmap
= isl_basic_map_alloc_space(isl_space_copy(space
), 0, 1, 0);
12353 i
= isl_basic_map_alloc_equality(bmap
);
12356 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12357 pos1
+= isl_basic_map_offset(bmap
, type1
);
12358 pos2
+= isl_basic_map_offset(bmap
, type2
);
12359 isl_int_set_si(bmap
->eq
[i
][pos1
], -1);
12360 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
12361 bmap
= isl_basic_map_finalize(bmap
);
12362 isl_space_free(space
);
12365 isl_space_free(space
);
12366 isl_basic_map_free(bmap
);
12370 /* Add a constraint imposing that the given two dimensions are equal.
12372 __isl_give isl_basic_map
*isl_basic_map_equate(__isl_take isl_basic_map
*bmap
,
12373 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12377 eq
= equator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
12379 bmap
= isl_basic_map_intersect(bmap
, eq
);
12384 /* Add a constraint imposing that the given two dimensions are equal.
12386 __isl_give isl_map
*isl_map_equate(__isl_take isl_map
*map
,
12387 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12389 isl_basic_map
*bmap
;
12391 bmap
= equator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
12393 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12398 /* Add a constraint imposing that the given two dimensions have opposite values.
12400 __isl_give isl_map
*isl_map_oppose(__isl_take isl_map
*map
,
12401 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12403 isl_basic_map
*bmap
= NULL
;
12409 if (pos1
>= isl_map_dim(map
, type1
))
12410 isl_die(map
->ctx
, isl_error_invalid
,
12411 "index out of bounds", goto error
);
12412 if (pos2
>= isl_map_dim(map
, type2
))
12413 isl_die(map
->ctx
, isl_error_invalid
,
12414 "index out of bounds", goto error
);
12416 bmap
= isl_basic_map_alloc_space(isl_map_get_space(map
), 0, 1, 0);
12417 i
= isl_basic_map_alloc_equality(bmap
);
12420 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12421 pos1
+= isl_basic_map_offset(bmap
, type1
);
12422 pos2
+= isl_basic_map_offset(bmap
, type2
);
12423 isl_int_set_si(bmap
->eq
[i
][pos1
], 1);
12424 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
12425 bmap
= isl_basic_map_finalize(bmap
);
12427 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12431 isl_basic_map_free(bmap
);
12436 /* Construct a constraint imposing that the value of the first dimension is
12437 * greater than or equal to that of the second.
12439 static __isl_give isl_constraint
*constraint_order_ge(
12440 __isl_take isl_space
*space
, enum isl_dim_type type1
, int pos1
,
12441 enum isl_dim_type type2
, int pos2
)
12448 c
= isl_constraint_alloc_inequality(isl_local_space_from_space(space
));
12450 if (pos1
>= isl_constraint_dim(c
, type1
))
12451 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
12452 "index out of bounds", return isl_constraint_free(c
));
12453 if (pos2
>= isl_constraint_dim(c
, type2
))
12454 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
12455 "index out of bounds", return isl_constraint_free(c
));
12457 if (type1
== type2
&& pos1
== pos2
)
12460 c
= isl_constraint_set_coefficient_si(c
, type1
, pos1
, 1);
12461 c
= isl_constraint_set_coefficient_si(c
, type2
, pos2
, -1);
12466 /* Add a constraint imposing that the value of the first dimension is
12467 * greater than or equal to that of the second.
12469 __isl_give isl_basic_map
*isl_basic_map_order_ge(__isl_take isl_basic_map
*bmap
,
12470 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12475 if (type1
== type2
&& pos1
== pos2
)
12477 space
= isl_basic_map_get_space(bmap
);
12478 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
12479 bmap
= isl_basic_map_add_constraint(bmap
, c
);
12484 /* Add a constraint imposing that the value of the first dimension is
12485 * greater than or equal to that of the second.
12487 __isl_give isl_map
*isl_map_order_ge(__isl_take isl_map
*map
,
12488 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12493 if (type1
== type2
&& pos1
== pos2
)
12495 space
= isl_map_get_space(map
);
12496 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
12497 map
= isl_map_add_constraint(map
, c
);
12502 /* Add a constraint imposing that the value of the first dimension is
12503 * less than or equal to that of the second.
12505 __isl_give isl_map
*isl_map_order_le(__isl_take isl_map
*map
,
12506 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12508 return isl_map_order_ge(map
, type2
, pos2
, type1
, pos1
);
12511 /* Construct a basic map where the value of the first dimension is
12512 * greater than that of the second.
12514 static __isl_give isl_basic_map
*greator(__isl_take isl_space
*space
,
12515 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12517 isl_basic_map
*bmap
= NULL
;
12523 if (pos1
>= isl_space_dim(space
, type1
))
12524 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12525 "index out of bounds", goto error
);
12526 if (pos2
>= isl_space_dim(space
, type2
))
12527 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12528 "index out of bounds", goto error
);
12530 if (type1
== type2
&& pos1
== pos2
)
12531 return isl_basic_map_empty(space
);
12533 bmap
= isl_basic_map_alloc_space(space
, 0, 0, 1);
12534 i
= isl_basic_map_alloc_inequality(bmap
);
12536 return isl_basic_map_free(bmap
);
12537 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12538 pos1
+= isl_basic_map_offset(bmap
, type1
);
12539 pos2
+= isl_basic_map_offset(bmap
, type2
);
12540 isl_int_set_si(bmap
->ineq
[i
][pos1
], 1);
12541 isl_int_set_si(bmap
->ineq
[i
][pos2
], -1);
12542 isl_int_set_si(bmap
->ineq
[i
][0], -1);
12543 bmap
= isl_basic_map_finalize(bmap
);
12547 isl_space_free(space
);
12548 isl_basic_map_free(bmap
);
12552 /* Add a constraint imposing that the value of the first dimension is
12553 * greater than that of the second.
12555 __isl_give isl_basic_map
*isl_basic_map_order_gt(__isl_take isl_basic_map
*bmap
,
12556 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12560 gt
= greator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
12562 bmap
= isl_basic_map_intersect(bmap
, gt
);
12567 /* Add a constraint imposing that the value of the first dimension is
12568 * greater than that of the second.
12570 __isl_give isl_map
*isl_map_order_gt(__isl_take isl_map
*map
,
12571 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12573 isl_basic_map
*bmap
;
12575 bmap
= greator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
12577 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12582 /* Add a constraint imposing that the value of the first dimension is
12583 * smaller than that of the second.
12585 __isl_give isl_map
*isl_map_order_lt(__isl_take isl_map
*map
,
12586 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12588 return isl_map_order_gt(map
, type2
, pos2
, type1
, pos1
);
12591 __isl_give isl_aff
*isl_basic_map_get_div(__isl_keep isl_basic_map
*bmap
,
12595 isl_local_space
*ls
;
12600 if (!isl_basic_map_divs_known(bmap
))
12601 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12602 "some divs are unknown", return NULL
);
12604 ls
= isl_basic_map_get_local_space(bmap
);
12605 div
= isl_local_space_get_div(ls
, pos
);
12606 isl_local_space_free(ls
);
12611 __isl_give isl_aff
*isl_basic_set_get_div(__isl_keep isl_basic_set
*bset
,
12614 return isl_basic_map_get_div(bset
, pos
);
12617 /* Plug in "subs" for dimension "type", "pos" of "bset".
12619 * Let i be the dimension to replace and let "subs" be of the form
12623 * Any integer division with a non-zero coefficient for i,
12625 * floor((a i + g)/m)
12629 * floor((a f + d g)/(m d))
12631 * Constraints of the form
12639 * We currently require that "subs" is an integral expression.
12640 * Handling rational expressions may require us to add stride constraints
12641 * as we do in isl_basic_set_preimage_multi_aff.
12643 __isl_give isl_basic_set
*isl_basic_set_substitute(
12644 __isl_take isl_basic_set
*bset
,
12645 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
12651 if (bset
&& isl_basic_set_plain_is_empty(bset
))
12654 bset
= isl_basic_set_cow(bset
);
12655 if (!bset
|| !subs
)
12658 ctx
= isl_basic_set_get_ctx(bset
);
12659 if (!isl_space_is_equal(bset
->dim
, subs
->ls
->dim
))
12660 isl_die(ctx
, isl_error_invalid
,
12661 "spaces don't match", goto error
);
12662 if (isl_local_space_dim(subs
->ls
, isl_dim_div
) != 0)
12663 isl_die(ctx
, isl_error_unsupported
,
12664 "cannot handle divs yet", goto error
);
12665 if (!isl_int_is_one(subs
->v
->el
[0]))
12666 isl_die(ctx
, isl_error_invalid
,
12667 "can only substitute integer expressions", goto error
);
12669 pos
+= isl_basic_set_offset(bset
, type
);
12673 for (i
= 0; i
< bset
->n_eq
; ++i
) {
12674 if (isl_int_is_zero(bset
->eq
[i
][pos
]))
12676 isl_int_set(v
, bset
->eq
[i
][pos
]);
12677 isl_int_set_si(bset
->eq
[i
][pos
], 0);
12678 isl_seq_combine(bset
->eq
[i
], subs
->v
->el
[0], bset
->eq
[i
],
12679 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12682 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
12683 if (isl_int_is_zero(bset
->ineq
[i
][pos
]))
12685 isl_int_set(v
, bset
->ineq
[i
][pos
]);
12686 isl_int_set_si(bset
->ineq
[i
][pos
], 0);
12687 isl_seq_combine(bset
->ineq
[i
], subs
->v
->el
[0], bset
->ineq
[i
],
12688 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12691 for (i
= 0; i
< bset
->n_div
; ++i
) {
12692 if (isl_int_is_zero(bset
->div
[i
][1 + pos
]))
12694 isl_int_set(v
, bset
->div
[i
][1 + pos
]);
12695 isl_int_set_si(bset
->div
[i
][1 + pos
], 0);
12696 isl_seq_combine(bset
->div
[i
] + 1,
12697 subs
->v
->el
[0], bset
->div
[i
] + 1,
12698 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12699 isl_int_mul(bset
->div
[i
][0], bset
->div
[i
][0], subs
->v
->el
[0]);
12704 bset
= isl_basic_set_simplify(bset
);
12705 return isl_basic_set_finalize(bset
);
12707 isl_basic_set_free(bset
);
12711 /* Plug in "subs" for dimension "type", "pos" of "set".
12713 __isl_give isl_set
*isl_set_substitute(__isl_take isl_set
*set
,
12714 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
12718 if (set
&& isl_set_plain_is_empty(set
))
12721 set
= isl_set_cow(set
);
12725 for (i
= set
->n
- 1; i
>= 0; --i
) {
12726 set
->p
[i
] = isl_basic_set_substitute(set
->p
[i
], type
, pos
, subs
);
12727 if (remove_if_empty(set
, i
) < 0)
12737 /* Check if the range of "ma" is compatible with the domain or range
12738 * (depending on "type") of "bmap".
12739 * Return -1 if anything is wrong.
12741 static int check_basic_map_compatible_range_multi_aff(
12742 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type type
,
12743 __isl_keep isl_multi_aff
*ma
)
12746 isl_space
*ma_space
;
12748 ma_space
= isl_multi_aff_get_space(ma
);
12750 m
= isl_space_match(bmap
->dim
, isl_dim_param
, ma_space
, isl_dim_param
);
12754 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12755 "parameters don't match", goto error
);
12756 m
= isl_space_tuple_is_equal(bmap
->dim
, type
, ma_space
, isl_dim_out
);
12760 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12761 "spaces don't match", goto error
);
12763 isl_space_free(ma_space
);
12766 isl_space_free(ma_space
);
12770 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12771 * coefficients before the transformed range of dimensions,
12772 * the "n_after" coefficients after the transformed range of dimensions
12773 * and the coefficients of the other divs in "bmap".
12775 static int set_ma_divs(__isl_keep isl_basic_map
*bmap
,
12776 __isl_keep isl_multi_aff
*ma
, int n_before
, int n_after
, int n_div
)
12781 isl_local_space
*ls
;
12786 ls
= isl_aff_get_domain_local_space(ma
->p
[0]);
12790 n_param
= isl_local_space_dim(ls
, isl_dim_param
);
12791 n_set
= isl_local_space_dim(ls
, isl_dim_set
);
12792 for (i
= 0; i
< n_div
; ++i
) {
12793 int o_bmap
= 0, o_ls
= 0;
12795 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], 1 + 1 + n_param
);
12796 o_bmap
+= 1 + 1 + n_param
;
12797 o_ls
+= 1 + 1 + n_param
;
12798 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_before
);
12799 o_bmap
+= n_before
;
12800 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12801 ls
->div
->row
[i
] + o_ls
, n_set
);
12804 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_after
);
12806 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12807 ls
->div
->row
[i
] + o_ls
, n_div
);
12810 isl_seq_clr(bmap
->div
[i
] + o_bmap
, bmap
->n_div
- n_div
);
12811 if (isl_basic_set_add_div_constraints(bmap
, i
) < 0)
12815 isl_local_space_free(ls
);
12818 isl_local_space_free(ls
);
12822 /* How many stride constraints does "ma" enforce?
12823 * That is, how many of the affine expressions have a denominator
12824 * different from one?
12826 static int multi_aff_strides(__isl_keep isl_multi_aff
*ma
)
12831 for (i
= 0; i
< ma
->n
; ++i
)
12832 if (!isl_int_is_one(ma
->p
[i
]->v
->el
[0]))
12838 /* For each affine expression in ma of the form
12840 * x_i = (f_i y + h_i)/m_i
12842 * with m_i different from one, add a constraint to "bmap"
12845 * f_i y + h_i = m_i alpha_i
12847 * with alpha_i an additional existentially quantified variable.
12849 * The input variables of "ma" correspond to a subset of the variables
12850 * of "bmap". There are "n_before" variables in "bmap" before this
12851 * subset and "n_after" variables after this subset.
12852 * The integer divisions of the affine expressions in "ma" are assumed
12853 * to have been aligned. There are "n_div_ma" of them and
12854 * they appear first in "bmap", straight after the "n_after" variables.
12856 static __isl_give isl_basic_map
*add_ma_strides(
12857 __isl_take isl_basic_map
*bmap
, __isl_keep isl_multi_aff
*ma
,
12858 int n_before
, int n_after
, int n_div_ma
)
12866 total
= isl_basic_map_total_dim(bmap
);
12867 n_param
= isl_multi_aff_dim(ma
, isl_dim_param
);
12868 n_in
= isl_multi_aff_dim(ma
, isl_dim_in
);
12869 for (i
= 0; i
< ma
->n
; ++i
) {
12870 int o_bmap
= 0, o_ma
= 1;
12872 if (isl_int_is_one(ma
->p
[i
]->v
->el
[0]))
12874 div
= isl_basic_map_alloc_div(bmap
);
12875 k
= isl_basic_map_alloc_equality(bmap
);
12876 if (div
< 0 || k
< 0)
12878 isl_int_set_si(bmap
->div
[div
][0], 0);
12879 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12880 ma
->p
[i
]->v
->el
+ o_ma
, 1 + n_param
);
12881 o_bmap
+= 1 + n_param
;
12882 o_ma
+= 1 + n_param
;
12883 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_before
);
12884 o_bmap
+= n_before
;
12885 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12886 ma
->p
[i
]->v
->el
+ o_ma
, n_in
);
12889 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_after
);
12891 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12892 ma
->p
[i
]->v
->el
+ o_ma
, n_div_ma
);
12893 o_bmap
+= n_div_ma
;
12895 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, 1 + total
- o_bmap
);
12896 isl_int_neg(bmap
->eq
[k
][1 + total
], ma
->p
[i
]->v
->el
[0]);
12902 isl_basic_map_free(bmap
);
12906 /* Replace the domain or range space (depending on "type) of "space" by "set".
12908 static __isl_give isl_space
*isl_space_set(__isl_take isl_space
*space
,
12909 enum isl_dim_type type
, __isl_take isl_space
*set
)
12911 if (type
== isl_dim_in
) {
12912 space
= isl_space_range(space
);
12913 space
= isl_space_map_from_domain_and_range(set
, space
);
12915 space
= isl_space_domain(space
);
12916 space
= isl_space_map_from_domain_and_range(space
, set
);
12922 /* Compute the preimage of the domain or range (depending on "type")
12923 * of "bmap" under the function represented by "ma".
12924 * In other words, plug in "ma" in the domain or range of "bmap".
12925 * The result is a basic map that lives in the same space as "bmap"
12926 * except that the domain or range has been replaced by
12927 * the domain space of "ma".
12929 * If bmap is represented by
12931 * A(p) + S u + B x + T v + C(divs) >= 0,
12933 * where u and x are input and output dimensions if type == isl_dim_out
12934 * while x and v are input and output dimensions if type == isl_dim_in,
12935 * and ma is represented by
12937 * x = D(p) + F(y) + G(divs')
12939 * then the result is
12941 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12943 * The divs in the input set are similarly adjusted.
12946 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12950 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12951 * B_i G(divs') + c_i(divs))/n_i)
12953 * If bmap is not a rational map and if F(y) involves any denominators
12955 * x_i = (f_i y + h_i)/m_i
12957 * then additional constraints are added to ensure that we only
12958 * map back integer points. That is we enforce
12960 * f_i y + h_i = m_i alpha_i
12962 * with alpha_i an additional existentially quantified variable.
12964 * We first copy over the divs from "ma".
12965 * Then we add the modified constraints and divs from "bmap".
12966 * Finally, we add the stride constraints, if needed.
12968 __isl_give isl_basic_map
*isl_basic_map_preimage_multi_aff(
12969 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
12970 __isl_take isl_multi_aff
*ma
)
12974 isl_basic_map
*res
= NULL
;
12975 int n_before
, n_after
, n_div_bmap
, n_div_ma
;
12976 isl_int f
, c1
, c2
, g
;
12985 ma
= isl_multi_aff_align_divs(ma
);
12988 if (check_basic_map_compatible_range_multi_aff(bmap
, type
, ma
) < 0)
12991 if (type
== isl_dim_in
) {
12993 n_after
= isl_basic_map_dim(bmap
, isl_dim_out
);
12995 n_before
= isl_basic_map_dim(bmap
, isl_dim_in
);
12998 n_div_bmap
= isl_basic_map_dim(bmap
, isl_dim_div
);
12999 n_div_ma
= ma
->n
? isl_aff_dim(ma
->p
[0], isl_dim_div
) : 0;
13001 space
= isl_multi_aff_get_domain_space(ma
);
13002 space
= isl_space_set(isl_basic_map_get_space(bmap
), type
, space
);
13003 rational
= isl_basic_map_is_rational(bmap
);
13004 strides
= rational
? 0 : multi_aff_strides(ma
);
13005 res
= isl_basic_map_alloc_space(space
, n_div_ma
+ n_div_bmap
+ strides
,
13006 bmap
->n_eq
+ strides
, bmap
->n_ineq
+ 2 * n_div_ma
);
13008 res
= isl_basic_map_set_rational(res
);
13010 for (i
= 0; i
< n_div_ma
+ n_div_bmap
; ++i
)
13011 if (isl_basic_map_alloc_div(res
) < 0)
13014 if (set_ma_divs(res
, ma
, n_before
, n_after
, n_div_ma
) < 0)
13017 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
13018 k
= isl_basic_map_alloc_equality(res
);
13021 isl_seq_preimage(res
->eq
[k
], bmap
->eq
[i
], ma
, n_before
,
13022 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
13025 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
13026 k
= isl_basic_map_alloc_inequality(res
);
13029 isl_seq_preimage(res
->ineq
[k
], bmap
->ineq
[i
], ma
, n_before
,
13030 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
13033 for (i
= 0; i
< bmap
->n_div
; ++i
) {
13034 if (isl_int_is_zero(bmap
->div
[i
][0])) {
13035 isl_int_set_si(res
->div
[n_div_ma
+ i
][0], 0);
13038 isl_seq_preimage(res
->div
[n_div_ma
+ i
], bmap
->div
[i
], ma
,
13039 n_before
, n_after
, n_div_ma
, n_div_bmap
,
13044 res
= add_ma_strides(res
, ma
, n_before
, n_after
, n_div_ma
);
13050 isl_basic_map_free(bmap
);
13051 isl_multi_aff_free(ma
);
13052 res
= isl_basic_set_simplify(res
);
13053 return isl_basic_map_finalize(res
);
13059 isl_basic_map_free(bmap
);
13060 isl_multi_aff_free(ma
);
13061 isl_basic_map_free(res
);
13065 /* Compute the preimage of "bset" under the function represented by "ma".
13066 * In other words, plug in "ma" in "bset". The result is a basic set
13067 * that lives in the domain space of "ma".
13069 __isl_give isl_basic_set
*isl_basic_set_preimage_multi_aff(
13070 __isl_take isl_basic_set
*bset
, __isl_take isl_multi_aff
*ma
)
13072 return isl_basic_map_preimage_multi_aff(bset
, isl_dim_set
, ma
);
13075 /* Compute the preimage of the domain of "bmap" under the function
13076 * represented by "ma".
13077 * In other words, plug in "ma" in the domain of "bmap".
13078 * The result is a basic map that lives in the same space as "bmap"
13079 * except that the domain has been replaced by the domain space of "ma".
13081 __isl_give isl_basic_map
*isl_basic_map_preimage_domain_multi_aff(
13082 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
13084 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_in
, ma
);
13087 /* Compute the preimage of the range of "bmap" under the function
13088 * represented by "ma".
13089 * In other words, plug in "ma" in the range of "bmap".
13090 * The result is a basic map that lives in the same space as "bmap"
13091 * except that the range has been replaced by the domain space of "ma".
13093 __isl_give isl_basic_map
*isl_basic_map_preimage_range_multi_aff(
13094 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
13096 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_out
, ma
);
13099 /* Check if the range of "ma" is compatible with the domain or range
13100 * (depending on "type") of "map".
13101 * Return -1 if anything is wrong.
13103 static int check_map_compatible_range_multi_aff(
13104 __isl_keep isl_map
*map
, enum isl_dim_type type
,
13105 __isl_keep isl_multi_aff
*ma
)
13108 isl_space
*ma_space
;
13110 ma_space
= isl_multi_aff_get_space(ma
);
13111 m
= isl_space_tuple_is_equal(map
->dim
, type
, ma_space
, isl_dim_out
);
13112 isl_space_free(ma_space
);
13114 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
13115 "spaces don't match", return -1);
13119 /* Compute the preimage of the domain or range (depending on "type")
13120 * of "map" under the function represented by "ma".
13121 * In other words, plug in "ma" in the domain or range of "map".
13122 * The result is a map that lives in the same space as "map"
13123 * except that the domain or range has been replaced by
13124 * the domain space of "ma".
13126 * The parameters are assumed to have been aligned.
13128 static __isl_give isl_map
*map_preimage_multi_aff(__isl_take isl_map
*map
,
13129 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
13134 map
= isl_map_cow(map
);
13135 ma
= isl_multi_aff_align_divs(ma
);
13138 if (check_map_compatible_range_multi_aff(map
, type
, ma
) < 0)
13141 for (i
= 0; i
< map
->n
; ++i
) {
13142 map
->p
[i
] = isl_basic_map_preimage_multi_aff(map
->p
[i
], type
,
13143 isl_multi_aff_copy(ma
));
13148 space
= isl_multi_aff_get_domain_space(ma
);
13149 space
= isl_space_set(isl_map_get_space(map
), type
, space
);
13151 isl_space_free(map
->dim
);
13156 isl_multi_aff_free(ma
);
13158 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
13159 ISL_F_CLR(map
, ISL_SET_NORMALIZED
);
13162 isl_multi_aff_free(ma
);
13167 /* Compute the preimage of the domain or range (depending on "type")
13168 * of "map" under the function represented by "ma".
13169 * In other words, plug in "ma" in the domain or range of "map".
13170 * The result is a map that lives in the same space as "map"
13171 * except that the domain or range has been replaced by
13172 * the domain space of "ma".
13174 __isl_give isl_map
*isl_map_preimage_multi_aff(__isl_take isl_map
*map
,
13175 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
13180 if (isl_space_match(map
->dim
, isl_dim_param
, ma
->space
, isl_dim_param
))
13181 return map_preimage_multi_aff(map
, type
, ma
);
13183 if (!isl_space_has_named_params(map
->dim
) ||
13184 !isl_space_has_named_params(ma
->space
))
13185 isl_die(map
->ctx
, isl_error_invalid
,
13186 "unaligned unnamed parameters", goto error
);
13187 map
= isl_map_align_params(map
, isl_multi_aff_get_space(ma
));
13188 ma
= isl_multi_aff_align_params(ma
, isl_map_get_space(map
));
13190 return map_preimage_multi_aff(map
, type
, ma
);
13192 isl_multi_aff_free(ma
);
13193 return isl_map_free(map
);
13196 /* Compute the preimage of "set" under the function represented by "ma".
13197 * In other words, plug in "ma" in "set". The result is a set
13198 * that lives in the domain space of "ma".
13200 __isl_give isl_set
*isl_set_preimage_multi_aff(__isl_take isl_set
*set
,
13201 __isl_take isl_multi_aff
*ma
)
13203 return isl_map_preimage_multi_aff(set
, isl_dim_set
, ma
);
13206 /* Compute the preimage of the domain of "map" under the function
13207 * represented by "ma".
13208 * In other words, plug in "ma" in the domain of "map".
13209 * The result is a map that lives in the same space as "map"
13210 * except that the domain has been replaced by the domain space of "ma".
13212 __isl_give isl_map
*isl_map_preimage_domain_multi_aff(__isl_take isl_map
*map
,
13213 __isl_take isl_multi_aff
*ma
)
13215 return isl_map_preimage_multi_aff(map
, isl_dim_in
, ma
);
13218 /* Compute the preimage of the range of "map" under the function
13219 * represented by "ma".
13220 * In other words, plug in "ma" in the range of "map".
13221 * The result is a map that lives in the same space as "map"
13222 * except that the range has been replaced by the domain space of "ma".
13224 __isl_give isl_map
*isl_map_preimage_range_multi_aff(__isl_take isl_map
*map
,
13225 __isl_take isl_multi_aff
*ma
)
13227 return isl_map_preimage_multi_aff(map
, isl_dim_out
, ma
);
13230 /* Compute the preimage of "map" under the function represented by "pma".
13231 * In other words, plug in "pma" in the domain or range of "map".
13232 * The result is a map that lives in the same space as "map",
13233 * except that the space of type "type" has been replaced by
13234 * the domain space of "pma".
13236 * The parameters of "map" and "pma" are assumed to have been aligned.
13238 static __isl_give isl_map
*isl_map_preimage_pw_multi_aff_aligned(
13239 __isl_take isl_map
*map
, enum isl_dim_type type
,
13240 __isl_take isl_pw_multi_aff
*pma
)
13249 isl_pw_multi_aff_free(pma
);
13250 res
= isl_map_empty(isl_map_get_space(map
));
13255 res
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
13256 isl_multi_aff_copy(pma
->p
[0].maff
));
13257 if (type
== isl_dim_in
)
13258 res
= isl_map_intersect_domain(res
,
13259 isl_map_copy(pma
->p
[0].set
));
13261 res
= isl_map_intersect_range(res
,
13262 isl_map_copy(pma
->p
[0].set
));
13264 for (i
= 1; i
< pma
->n
; ++i
) {
13267 res_i
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
13268 isl_multi_aff_copy(pma
->p
[i
].maff
));
13269 if (type
== isl_dim_in
)
13270 res_i
= isl_map_intersect_domain(res_i
,
13271 isl_map_copy(pma
->p
[i
].set
));
13273 res_i
= isl_map_intersect_range(res_i
,
13274 isl_map_copy(pma
->p
[i
].set
));
13275 res
= isl_map_union(res
, res_i
);
13278 isl_pw_multi_aff_free(pma
);
13282 isl_pw_multi_aff_free(pma
);
13287 /* Compute the preimage of "map" under the function represented by "pma".
13288 * In other words, plug in "pma" in the domain or range of "map".
13289 * The result is a map that lives in the same space as "map",
13290 * except that the space of type "type" has been replaced by
13291 * the domain space of "pma".
13293 __isl_give isl_map
*isl_map_preimage_pw_multi_aff(__isl_take isl_map
*map
,
13294 enum isl_dim_type type
, __isl_take isl_pw_multi_aff
*pma
)
13299 if (isl_space_match(map
->dim
, isl_dim_param
, pma
->dim
, isl_dim_param
))
13300 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
13302 if (!isl_space_has_named_params(map
->dim
) ||
13303 !isl_space_has_named_params(pma
->dim
))
13304 isl_die(map
->ctx
, isl_error_invalid
,
13305 "unaligned unnamed parameters", goto error
);
13306 map
= isl_map_align_params(map
, isl_pw_multi_aff_get_space(pma
));
13307 pma
= isl_pw_multi_aff_align_params(pma
, isl_map_get_space(map
));
13309 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
13311 isl_pw_multi_aff_free(pma
);
13312 return isl_map_free(map
);
13315 /* Compute the preimage of "set" under the function represented by "pma".
13316 * In other words, plug in "pma" in "set". The result is a set
13317 * that lives in the domain space of "pma".
13319 __isl_give isl_set
*isl_set_preimage_pw_multi_aff(__isl_take isl_set
*set
,
13320 __isl_take isl_pw_multi_aff
*pma
)
13322 return isl_map_preimage_pw_multi_aff(set
, isl_dim_set
, pma
);
13325 /* Compute the preimage of the domain of "map" under the function
13326 * represented by "pma".
13327 * In other words, plug in "pma" in the domain of "map".
13328 * The result is a map that lives in the same space as "map",
13329 * except that domain space has been replaced by the domain space of "pma".
13331 __isl_give isl_map
*isl_map_preimage_domain_pw_multi_aff(
13332 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
13334 return isl_map_preimage_pw_multi_aff(map
, isl_dim_in
, pma
);
13337 /* Compute the preimage of the range of "map" under the function
13338 * represented by "pma".
13339 * In other words, plug in "pma" in the range of "map".
13340 * The result is a map that lives in the same space as "map",
13341 * except that range space has been replaced by the domain space of "pma".
13343 __isl_give isl_map
*isl_map_preimage_range_pw_multi_aff(
13344 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
13346 return isl_map_preimage_pw_multi_aff(map
, isl_dim_out
, pma
);
13349 /* Compute the preimage of "map" under the function represented by "mpa".
13350 * In other words, plug in "mpa" in the domain or range of "map".
13351 * The result is a map that lives in the same space as "map",
13352 * except that the space of type "type" has been replaced by
13353 * the domain space of "mpa".
13355 * If the map does not involve any constraints that refer to the
13356 * dimensions of the substituted space, then the only possible
13357 * effect of "mpa" on the map is to map the space to a different space.
13358 * We create a separate isl_multi_aff to effectuate this change
13359 * in order to avoid spurious splitting of the map along the pieces
13362 __isl_give isl_map
*isl_map_preimage_multi_pw_aff(__isl_take isl_map
*map
,
13363 enum isl_dim_type type
, __isl_take isl_multi_pw_aff
*mpa
)
13366 isl_pw_multi_aff
*pma
;
13371 n
= isl_map_dim(map
, type
);
13372 if (!isl_map_involves_dims(map
, type
, 0, n
)) {
13376 space
= isl_multi_pw_aff_get_space(mpa
);
13377 isl_multi_pw_aff_free(mpa
);
13378 ma
= isl_multi_aff_zero(space
);
13379 return isl_map_preimage_multi_aff(map
, type
, ma
);
13382 pma
= isl_pw_multi_aff_from_multi_pw_aff(mpa
);
13383 return isl_map_preimage_pw_multi_aff(map
, type
, pma
);
13386 isl_multi_pw_aff_free(mpa
);
13390 /* Compute the preimage of "map" under the function represented by "mpa".
13391 * In other words, plug in "mpa" in the domain "map".
13392 * The result is a map that lives in the same space as "map",
13393 * except that domain space has been replaced by the domain space of "mpa".
13395 __isl_give isl_map
*isl_map_preimage_domain_multi_pw_aff(
13396 __isl_take isl_map
*map
, __isl_take isl_multi_pw_aff
*mpa
)
13398 return isl_map_preimage_multi_pw_aff(map
, isl_dim_in
, mpa
);
13401 /* Compute the preimage of "set" by the function represented by "mpa".
13402 * In other words, plug in "mpa" in "set".
13404 __isl_give isl_set
*isl_set_preimage_multi_pw_aff(__isl_take isl_set
*set
,
13405 __isl_take isl_multi_pw_aff
*mpa
)
13407 return isl_map_preimage_multi_pw_aff(set
, isl_dim_set
, mpa
);
13410 /* Are the "n" "coefficients" starting at "first" of the integer division
13411 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13413 * The "coefficient" at position 0 is the denominator.
13414 * The "coefficient" at position 1 is the constant term.
13416 isl_bool
isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map
*bmap1
,
13417 int pos1
, __isl_keep isl_basic_map
*bmap2
, int pos2
,
13418 unsigned first
, unsigned n
)
13420 if (isl_basic_map_check_range(bmap1
, isl_dim_div
, pos1
, 1) < 0)
13421 return isl_bool_error
;
13422 if (isl_basic_map_check_range(bmap2
, isl_dim_div
, pos2
, 1) < 0)
13423 return isl_bool_error
;
13424 return isl_seq_eq(bmap1
->div
[pos1
] + first
,
13425 bmap2
->div
[pos2
] + first
, n
);
13428 /* Are the integer division expressions at position "pos1" in "bmap1" and
13429 * "pos2" in "bmap2" equal to each other, except that the constant terms
13432 isl_bool
isl_basic_map_equal_div_expr_except_constant(
13433 __isl_keep isl_basic_map
*bmap1
, int pos1
,
13434 __isl_keep isl_basic_map
*bmap2
, int pos2
)
13439 if (!bmap1
|| !bmap2
)
13440 return isl_bool_error
;
13441 total
= isl_basic_map_total_dim(bmap1
);
13442 if (total
!= isl_basic_map_total_dim(bmap2
))
13443 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
13444 "incomparable div expressions", return isl_bool_error
);
13445 equal
= isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13447 if (equal
< 0 || !equal
)
13449 equal
= isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13451 if (equal
< 0 || equal
)
13452 return isl_bool_not(equal
);
13453 return isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13457 /* Replace the numerator of the constant term of the integer division
13458 * expression at position "div" in "bmap" by "value".
13459 * The caller guarantees that this does not change the meaning
13462 __isl_give isl_basic_map
*isl_basic_map_set_div_expr_constant_num_si_inplace(
13463 __isl_take isl_basic_map
*bmap
, int div
, int value
)
13465 if (isl_basic_map_check_range(bmap
, isl_dim_div
, div
, 1) < 0)
13466 return isl_basic_map_free(bmap
);
13468 isl_int_set_si(bmap
->div
[div
][1], value
);
13473 /* Is the point "inner" internal to inequality constraint "ineq"
13475 * The point is considered to be internal to the inequality constraint,
13476 * if it strictly lies on the positive side of the inequality constraint,
13477 * or if it lies on the constraint and the constraint is lexico-positive.
13479 static isl_bool
is_internal(__isl_keep isl_vec
*inner
,
13480 __isl_keep isl_basic_set
*bset
, int ineq
)
13486 if (!inner
|| !bset
)
13487 return isl_bool_error
;
13489 ctx
= isl_basic_set_get_ctx(bset
);
13490 isl_seq_inner_product(inner
->el
, bset
->ineq
[ineq
], inner
->size
,
13491 &ctx
->normalize_gcd
);
13492 if (!isl_int_is_zero(ctx
->normalize_gcd
))
13493 return isl_int_is_nonneg(ctx
->normalize_gcd
);
13495 total
= isl_basic_set_dim(bset
, isl_dim_all
);
13496 pos
= isl_seq_first_non_zero(bset
->ineq
[ineq
] + 1, total
);
13497 return isl_int_is_pos(bset
->ineq
[ineq
][1 + pos
]);
13500 /* Tighten the inequality constraints of "bset" that are outward with respect
13501 * to the point "vec".
13502 * That is, tighten the constraints that are not satisfied by "vec".
13504 * "vec" is a point internal to some superset S of "bset" that is used
13505 * to make the subsets of S disjoint, by tightening one half of the constraints
13506 * that separate two subsets. In particular, the constraints of S
13507 * are all satisfied by "vec" and should not be tightened.
13508 * Of the internal constraints, those that have "vec" on the outside
13509 * are tightened. The shared facet is included in the adjacent subset
13510 * with the opposite constraint.
13511 * For constraints that saturate "vec", this criterion cannot be used
13512 * to determine which of the two sides should be tightened.
13513 * Instead, the sign of the first non-zero coefficient is used
13514 * to make this choice. Note that this second criterion is never used
13515 * on the constraints of S since "vec" is interior to "S".
13517 __isl_give isl_basic_set
*isl_basic_set_tighten_outward(
13518 __isl_take isl_basic_set
*bset
, __isl_keep isl_vec
*vec
)
13522 bset
= isl_basic_set_cow(bset
);
13525 for (j
= 0; j
< bset
->n_ineq
; ++j
) {
13528 internal
= is_internal(vec
, bset
, j
);
13530 return isl_basic_set_free(bset
);
13533 isl_int_sub_ui(bset
->ineq
[j
][0], bset
->ineq
[j
][0], 1);