2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2014 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
7 * Use of this software is governed by the MIT license
9 * Written by Sven Verdoolaege, K.U.Leuven, Departement
10 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
11 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
12 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
13 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
14 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
15 * B.P. 105 - 78153 Le Chesnay, France
19 #include <isl_ctx_private.h>
20 #include <isl_map_private.h>
22 #include <isl/constraint.h>
23 #include "isl_space_private.h"
24 #include "isl_equalities.h"
25 #include <isl_lp_private.h>
29 #include <isl_reordering.h>
30 #include "isl_sample.h"
34 #include <isl_mat_private.h>
35 #include <isl_vec_private.h>
36 #include <isl_dim_map.h>
37 #include <isl_local_space_private.h>
38 #include <isl_aff_private.h>
39 #include <isl_options_private.h>
40 #include <isl_morph.h>
41 #include <isl_val_private.h>
42 #include <isl/deprecated/map_int.h>
43 #include <isl/deprecated/set_int.h>
45 static unsigned n(__isl_keep isl_space
*dim
, enum isl_dim_type type
)
48 case isl_dim_param
: return dim
->nparam
;
49 case isl_dim_in
: return dim
->n_in
;
50 case isl_dim_out
: return dim
->n_out
;
51 case isl_dim_all
: return dim
->nparam
+ dim
->n_in
+ dim
->n_out
;
56 static unsigned pos(__isl_keep isl_space
*dim
, enum isl_dim_type type
)
59 case isl_dim_param
: return 1;
60 case isl_dim_in
: return 1 + dim
->nparam
;
61 case isl_dim_out
: return 1 + dim
->nparam
+ dim
->n_in
;
66 unsigned isl_basic_map_dim(__isl_keep isl_basic_map
*bmap
,
67 enum isl_dim_type type
)
72 case isl_dim_cst
: return 1;
75 case isl_dim_out
: return isl_space_dim(bmap
->dim
, type
);
76 case isl_dim_div
: return bmap
->n_div
;
77 case isl_dim_all
: return isl_basic_map_total_dim(bmap
);
82 unsigned isl_map_dim(__isl_keep isl_map
*map
, enum isl_dim_type type
)
84 return map
? n(map
->dim
, type
) : 0;
87 unsigned isl_set_dim(__isl_keep isl_set
*set
, enum isl_dim_type type
)
89 return set
? n(set
->dim
, type
) : 0;
92 unsigned isl_basic_map_offset(struct isl_basic_map
*bmap
,
93 enum isl_dim_type type
)
95 isl_space
*dim
= bmap
->dim
;
97 case isl_dim_cst
: return 0;
98 case isl_dim_param
: return 1;
99 case isl_dim_in
: return 1 + dim
->nparam
;
100 case isl_dim_out
: return 1 + dim
->nparam
+ dim
->n_in
;
101 case isl_dim_div
: return 1 + dim
->nparam
+ dim
->n_in
+ dim
->n_out
;
106 unsigned isl_basic_set_offset(struct isl_basic_set
*bset
,
107 enum isl_dim_type type
)
109 return isl_basic_map_offset(bset
, type
);
112 static unsigned map_offset(struct isl_map
*map
, enum isl_dim_type type
)
114 return pos(map
->dim
, type
);
117 unsigned isl_basic_set_dim(__isl_keep isl_basic_set
*bset
,
118 enum isl_dim_type type
)
120 return isl_basic_map_dim(bset
, type
);
123 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set
*bset
)
125 return isl_basic_set_dim(bset
, isl_dim_set
);
128 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set
*bset
)
130 return isl_basic_set_dim(bset
, isl_dim_param
);
133 unsigned isl_basic_set_total_dim(const struct isl_basic_set
*bset
)
137 return isl_space_dim(bset
->dim
, isl_dim_all
) + bset
->n_div
;
140 unsigned isl_set_n_dim(__isl_keep isl_set
*set
)
142 return isl_set_dim(set
, isl_dim_set
);
145 unsigned isl_set_n_param(__isl_keep isl_set
*set
)
147 return isl_set_dim(set
, isl_dim_param
);
150 unsigned isl_basic_map_n_in(const struct isl_basic_map
*bmap
)
152 return bmap
? bmap
->dim
->n_in
: 0;
155 unsigned isl_basic_map_n_out(const struct isl_basic_map
*bmap
)
157 return bmap
? bmap
->dim
->n_out
: 0;
160 unsigned isl_basic_map_n_param(const struct isl_basic_map
*bmap
)
162 return bmap
? bmap
->dim
->nparam
: 0;
165 unsigned isl_basic_map_n_div(const struct isl_basic_map
*bmap
)
167 return bmap
? bmap
->n_div
: 0;
170 unsigned isl_basic_map_total_dim(const struct isl_basic_map
*bmap
)
172 return bmap
? isl_space_dim(bmap
->dim
, isl_dim_all
) + bmap
->n_div
: 0;
175 unsigned isl_map_n_in(const struct isl_map
*map
)
177 return map
? map
->dim
->n_in
: 0;
180 unsigned isl_map_n_out(const struct isl_map
*map
)
182 return map
? map
->dim
->n_out
: 0;
185 unsigned isl_map_n_param(const struct isl_map
*map
)
187 return map
? map
->dim
->nparam
: 0;
190 int isl_map_compatible_domain(struct isl_map
*map
, struct isl_set
*set
)
195 m
= isl_space_match(map
->dim
, isl_dim_param
, set
->dim
, isl_dim_param
);
198 return isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
199 set
->dim
, isl_dim_set
);
202 int isl_basic_map_compatible_domain(struct isl_basic_map
*bmap
,
203 struct isl_basic_set
*bset
)
208 m
= isl_space_match(bmap
->dim
, isl_dim_param
, bset
->dim
, isl_dim_param
);
211 return isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
212 bset
->dim
, isl_dim_set
);
215 int isl_map_compatible_range(__isl_keep isl_map
*map
, __isl_keep isl_set
*set
)
220 m
= isl_space_match(map
->dim
, isl_dim_param
, set
->dim
, isl_dim_param
);
223 return isl_space_tuple_is_equal(map
->dim
, isl_dim_out
,
224 set
->dim
, isl_dim_set
);
227 int isl_basic_map_compatible_range(struct isl_basic_map
*bmap
,
228 struct isl_basic_set
*bset
)
233 m
= isl_space_match(bmap
->dim
, isl_dim_param
, bset
->dim
, isl_dim_param
);
236 return isl_space_tuple_is_equal(bmap
->dim
, isl_dim_out
,
237 bset
->dim
, isl_dim_set
);
240 isl_ctx
*isl_basic_map_get_ctx(__isl_keep isl_basic_map
*bmap
)
242 return bmap
? bmap
->ctx
: NULL
;
245 isl_ctx
*isl_basic_set_get_ctx(__isl_keep isl_basic_set
*bset
)
247 return bset
? bset
->ctx
: NULL
;
250 isl_ctx
*isl_map_get_ctx(__isl_keep isl_map
*map
)
252 return map
? map
->ctx
: NULL
;
255 isl_ctx
*isl_set_get_ctx(__isl_keep isl_set
*set
)
257 return set
? set
->ctx
: NULL
;
260 __isl_give isl_space
*isl_basic_map_get_space(__isl_keep isl_basic_map
*bmap
)
264 return isl_space_copy(bmap
->dim
);
267 __isl_give isl_space
*isl_basic_set_get_space(__isl_keep isl_basic_set
*bset
)
271 return isl_space_copy(bset
->dim
);
274 /* Extract the divs in "bmap" as a matrix.
276 __isl_give isl_mat
*isl_basic_map_get_divs(__isl_keep isl_basic_map
*bmap
)
287 ctx
= isl_basic_map_get_ctx(bmap
);
288 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
289 cols
= 1 + 1 + total
+ bmap
->n_div
;
290 div
= isl_mat_alloc(ctx
, bmap
->n_div
, cols
);
294 for (i
= 0; i
< bmap
->n_div
; ++i
)
295 isl_seq_cpy(div
->row
[i
], bmap
->div
[i
], cols
);
300 /* Extract the divs in "bset" as a matrix.
302 __isl_give isl_mat
*isl_basic_set_get_divs(__isl_keep isl_basic_set
*bset
)
304 return isl_basic_map_get_divs(bset
);
307 __isl_give isl_local_space
*isl_basic_map_get_local_space(
308 __isl_keep isl_basic_map
*bmap
)
315 div
= isl_basic_map_get_divs(bmap
);
316 return isl_local_space_alloc_div(isl_space_copy(bmap
->dim
), div
);
319 __isl_give isl_local_space
*isl_basic_set_get_local_space(
320 __isl_keep isl_basic_set
*bset
)
322 return isl_basic_map_get_local_space(bset
);
325 __isl_give isl_basic_map
*isl_basic_map_from_local_space(
326 __isl_take isl_local_space
*ls
)
335 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
336 bmap
= isl_basic_map_alloc_space(isl_local_space_get_space(ls
),
337 n_div
, 0, 2 * n_div
);
339 for (i
= 0; i
< n_div
; ++i
)
340 if (isl_basic_map_alloc_div(bmap
) < 0)
343 for (i
= 0; i
< n_div
; ++i
) {
344 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], ls
->div
->n_col
);
345 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
349 isl_local_space_free(ls
);
352 isl_local_space_free(ls
);
353 isl_basic_map_free(bmap
);
357 __isl_give isl_basic_set
*isl_basic_set_from_local_space(
358 __isl_take isl_local_space
*ls
)
360 return isl_basic_map_from_local_space(ls
);
363 __isl_give isl_space
*isl_map_get_space(__isl_keep isl_map
*map
)
367 return isl_space_copy(map
->dim
);
370 __isl_give isl_space
*isl_set_get_space(__isl_keep isl_set
*set
)
374 return isl_space_copy(set
->dim
);
377 __isl_give isl_basic_map
*isl_basic_map_set_tuple_name(
378 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
, const char *s
)
380 bmap
= isl_basic_map_cow(bmap
);
383 bmap
->dim
= isl_space_set_tuple_name(bmap
->dim
, type
, s
);
386 bmap
= isl_basic_map_finalize(bmap
);
389 isl_basic_map_free(bmap
);
393 __isl_give isl_basic_set
*isl_basic_set_set_tuple_name(
394 __isl_take isl_basic_set
*bset
, const char *s
)
396 return isl_basic_map_set_tuple_name(bset
, isl_dim_set
, s
);
399 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map
*bmap
,
400 enum isl_dim_type type
)
402 return bmap
? isl_space_get_tuple_name(bmap
->dim
, type
) : NULL
;
405 __isl_give isl_map
*isl_map_set_tuple_name(__isl_take isl_map
*map
,
406 enum isl_dim_type type
, const char *s
)
410 map
= isl_map_cow(map
);
414 map
->dim
= isl_space_set_tuple_name(map
->dim
, type
, s
);
418 for (i
= 0; i
< map
->n
; ++i
) {
419 map
->p
[i
] = isl_basic_map_set_tuple_name(map
->p
[i
], type
, s
);
430 /* Replace the identifier of the tuple of type "type" by "id".
432 __isl_give isl_basic_map
*isl_basic_map_set_tuple_id(
433 __isl_take isl_basic_map
*bmap
,
434 enum isl_dim_type type
, __isl_take isl_id
*id
)
436 bmap
= isl_basic_map_cow(bmap
);
439 bmap
->dim
= isl_space_set_tuple_id(bmap
->dim
, type
, id
);
441 return isl_basic_map_free(bmap
);
442 bmap
= isl_basic_map_finalize(bmap
);
449 /* Replace the identifier of the tuple by "id".
451 __isl_give isl_basic_set
*isl_basic_set_set_tuple_id(
452 __isl_take isl_basic_set
*bset
, __isl_take isl_id
*id
)
454 return isl_basic_map_set_tuple_id(bset
, isl_dim_set
, id
);
457 /* Does the input or output tuple have a name?
459 isl_bool
isl_map_has_tuple_name(__isl_keep isl_map
*map
, enum isl_dim_type type
)
461 return map
? isl_space_has_tuple_name(map
->dim
, type
) : isl_bool_error
;
464 const char *isl_map_get_tuple_name(__isl_keep isl_map
*map
,
465 enum isl_dim_type type
)
467 return map
? isl_space_get_tuple_name(map
->dim
, type
) : NULL
;
470 __isl_give isl_set
*isl_set_set_tuple_name(__isl_take isl_set
*set
,
473 return (isl_set
*)isl_map_set_tuple_name((isl_map
*)set
, isl_dim_set
, s
);
476 __isl_give isl_map
*isl_map_set_tuple_id(__isl_take isl_map
*map
,
477 enum isl_dim_type type
, __isl_take isl_id
*id
)
479 map
= isl_map_cow(map
);
483 map
->dim
= isl_space_set_tuple_id(map
->dim
, type
, id
);
485 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
491 __isl_give isl_set
*isl_set_set_tuple_id(__isl_take isl_set
*set
,
492 __isl_take isl_id
*id
)
494 return isl_map_set_tuple_id(set
, isl_dim_set
, id
);
497 __isl_give isl_map
*isl_map_reset_tuple_id(__isl_take isl_map
*map
,
498 enum isl_dim_type type
)
500 map
= isl_map_cow(map
);
504 map
->dim
= isl_space_reset_tuple_id(map
->dim
, type
);
506 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
509 __isl_give isl_set
*isl_set_reset_tuple_id(__isl_take isl_set
*set
)
511 return isl_map_reset_tuple_id(set
, isl_dim_set
);
514 isl_bool
isl_map_has_tuple_id(__isl_keep isl_map
*map
, enum isl_dim_type type
)
516 return map
? isl_space_has_tuple_id(map
->dim
, type
) : isl_bool_error
;
519 __isl_give isl_id
*isl_map_get_tuple_id(__isl_keep isl_map
*map
,
520 enum isl_dim_type type
)
522 return map
? isl_space_get_tuple_id(map
->dim
, type
) : NULL
;
525 isl_bool
isl_set_has_tuple_id(__isl_keep isl_set
*set
)
527 return isl_map_has_tuple_id(set
, isl_dim_set
);
530 __isl_give isl_id
*isl_set_get_tuple_id(__isl_keep isl_set
*set
)
532 return isl_map_get_tuple_id(set
, isl_dim_set
);
535 /* Does the set tuple have a name?
537 isl_bool
isl_set_has_tuple_name(__isl_keep isl_set
*set
)
540 return isl_bool_error
;
541 return isl_space_has_tuple_name(set
->dim
, isl_dim_set
);
545 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set
*bset
)
547 return bset
? isl_space_get_tuple_name(bset
->dim
, isl_dim_set
) : NULL
;
550 const char *isl_set_get_tuple_name(__isl_keep isl_set
*set
)
552 return set
? isl_space_get_tuple_name(set
->dim
, isl_dim_set
) : NULL
;
555 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map
*bmap
,
556 enum isl_dim_type type
, unsigned pos
)
558 return bmap
? isl_space_get_dim_name(bmap
->dim
, type
, pos
) : NULL
;
561 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set
*bset
,
562 enum isl_dim_type type
, unsigned pos
)
564 return bset
? isl_space_get_dim_name(bset
->dim
, type
, pos
) : NULL
;
567 /* Does the given dimension have a name?
569 isl_bool
isl_map_has_dim_name(__isl_keep isl_map
*map
,
570 enum isl_dim_type type
, unsigned pos
)
573 return isl_bool_error
;
574 return isl_space_has_dim_name(map
->dim
, type
, pos
);
577 const char *isl_map_get_dim_name(__isl_keep isl_map
*map
,
578 enum isl_dim_type type
, unsigned pos
)
580 return map
? isl_space_get_dim_name(map
->dim
, type
, pos
) : NULL
;
583 const char *isl_set_get_dim_name(__isl_keep isl_set
*set
,
584 enum isl_dim_type type
, unsigned pos
)
586 return set
? isl_space_get_dim_name(set
->dim
, type
, pos
) : NULL
;
589 /* Does the given dimension have a name?
591 isl_bool
isl_set_has_dim_name(__isl_keep isl_set
*set
,
592 enum isl_dim_type type
, unsigned pos
)
595 return isl_bool_error
;
596 return isl_space_has_dim_name(set
->dim
, type
, pos
);
599 __isl_give isl_basic_map
*isl_basic_map_set_dim_name(
600 __isl_take isl_basic_map
*bmap
,
601 enum isl_dim_type type
, unsigned pos
, const char *s
)
603 bmap
= isl_basic_map_cow(bmap
);
606 bmap
->dim
= isl_space_set_dim_name(bmap
->dim
, type
, pos
, s
);
609 return isl_basic_map_finalize(bmap
);
611 isl_basic_map_free(bmap
);
615 __isl_give isl_map
*isl_map_set_dim_name(__isl_take isl_map
*map
,
616 enum isl_dim_type type
, unsigned pos
, const char *s
)
620 map
= isl_map_cow(map
);
624 map
->dim
= isl_space_set_dim_name(map
->dim
, type
, pos
, s
);
628 for (i
= 0; i
< map
->n
; ++i
) {
629 map
->p
[i
] = isl_basic_map_set_dim_name(map
->p
[i
], type
, pos
, s
);
640 __isl_give isl_basic_set
*isl_basic_set_set_dim_name(
641 __isl_take isl_basic_set
*bset
,
642 enum isl_dim_type type
, unsigned pos
, const char *s
)
644 return (isl_basic_set
*)isl_basic_map_set_dim_name(
645 (isl_basic_map
*)bset
, type
, pos
, s
);
648 __isl_give isl_set
*isl_set_set_dim_name(__isl_take isl_set
*set
,
649 enum isl_dim_type type
, unsigned pos
, const char *s
)
651 return (isl_set
*)isl_map_set_dim_name((isl_map
*)set
, type
, pos
, s
);
654 isl_bool
isl_basic_map_has_dim_id(__isl_keep isl_basic_map
*bmap
,
655 enum isl_dim_type type
, unsigned pos
)
658 return isl_bool_error
;
659 return isl_space_has_dim_id(bmap
->dim
, type
, pos
);
662 __isl_give isl_id
*isl_basic_set_get_dim_id(__isl_keep isl_basic_set
*bset
,
663 enum isl_dim_type type
, unsigned pos
)
665 return bset
? isl_space_get_dim_id(bset
->dim
, type
, pos
) : NULL
;
668 isl_bool
isl_map_has_dim_id(__isl_keep isl_map
*map
,
669 enum isl_dim_type type
, unsigned pos
)
671 return map
? isl_space_has_dim_id(map
->dim
, type
, pos
) : isl_bool_error
;
674 __isl_give isl_id
*isl_map_get_dim_id(__isl_keep isl_map
*map
,
675 enum isl_dim_type type
, unsigned pos
)
677 return map
? isl_space_get_dim_id(map
->dim
, type
, pos
) : NULL
;
680 isl_bool
isl_set_has_dim_id(__isl_keep isl_set
*set
,
681 enum isl_dim_type type
, unsigned pos
)
683 return isl_map_has_dim_id(set
, type
, pos
);
686 __isl_give isl_id
*isl_set_get_dim_id(__isl_keep isl_set
*set
,
687 enum isl_dim_type type
, unsigned pos
)
689 return isl_map_get_dim_id(set
, type
, pos
);
692 __isl_give isl_map
*isl_map_set_dim_id(__isl_take isl_map
*map
,
693 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
695 map
= isl_map_cow(map
);
699 map
->dim
= isl_space_set_dim_id(map
->dim
, type
, pos
, id
);
701 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
707 __isl_give isl_set
*isl_set_set_dim_id(__isl_take isl_set
*set
,
708 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
710 return isl_map_set_dim_id(set
, type
, pos
, id
);
713 int isl_map_find_dim_by_id(__isl_keep isl_map
*map
, enum isl_dim_type type
,
714 __isl_keep isl_id
*id
)
718 return isl_space_find_dim_by_id(map
->dim
, type
, id
);
721 int isl_set_find_dim_by_id(__isl_keep isl_set
*set
, enum isl_dim_type type
,
722 __isl_keep isl_id
*id
)
724 return isl_map_find_dim_by_id(set
, type
, id
);
727 /* Return the position of the dimension of the given type and name
729 * Return -1 if no such dimension can be found.
731 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map
*bmap
,
732 enum isl_dim_type type
, const char *name
)
736 return isl_space_find_dim_by_name(bmap
->dim
, type
, name
);
739 int isl_map_find_dim_by_name(__isl_keep isl_map
*map
, enum isl_dim_type type
,
744 return isl_space_find_dim_by_name(map
->dim
, type
, name
);
747 int isl_set_find_dim_by_name(__isl_keep isl_set
*set
, enum isl_dim_type type
,
750 return isl_map_find_dim_by_name(set
, type
, name
);
753 /* Reset the user pointer on all identifiers of parameters and tuples
754 * of the space of "map".
756 __isl_give isl_map
*isl_map_reset_user(__isl_take isl_map
*map
)
760 space
= isl_map_get_space(map
);
761 space
= isl_space_reset_user(space
);
762 map
= isl_map_reset_space(map
, space
);
767 /* Reset the user pointer on all identifiers of parameters and tuples
768 * of the space of "set".
770 __isl_give isl_set
*isl_set_reset_user(__isl_take isl_set
*set
)
772 return isl_map_reset_user(set
);
775 int isl_basic_map_is_rational(__isl_keep isl_basic_map
*bmap
)
779 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
782 int isl_basic_set_is_rational(__isl_keep isl_basic_set
*bset
)
784 return isl_basic_map_is_rational(bset
);
787 /* Does "bmap" contain any rational points?
789 * If "bmap" has an equality for each dimension, equating the dimension
790 * to an integer constant, then it has no rational points, even if it
791 * is marked as rational.
793 int isl_basic_map_has_rational(__isl_keep isl_basic_map
*bmap
)
795 int has_rational
= 1;
800 if (isl_basic_map_plain_is_empty(bmap
))
802 if (!isl_basic_map_is_rational(bmap
))
804 bmap
= isl_basic_map_copy(bmap
);
805 bmap
= isl_basic_map_implicit_equalities(bmap
);
808 total
= isl_basic_map_total_dim(bmap
);
809 if (bmap
->n_eq
== total
) {
811 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
812 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1, total
);
815 if (!isl_int_is_one(bmap
->eq
[i
][1 + j
]) &&
816 !isl_int_is_negone(bmap
->eq
[i
][1 + j
]))
818 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + j
+ 1,
826 isl_basic_map_free(bmap
);
831 /* Does "map" contain any rational points?
833 int isl_map_has_rational(__isl_keep isl_map
*map
)
840 for (i
= 0; i
< map
->n
; ++i
) {
841 has_rational
= isl_basic_map_has_rational(map
->p
[i
]);
842 if (has_rational
< 0)
850 /* Does "set" contain any rational points?
852 int isl_set_has_rational(__isl_keep isl_set
*set
)
854 return isl_map_has_rational(set
);
857 /* Is this basic set a parameter domain?
859 int isl_basic_set_is_params(__isl_keep isl_basic_set
*bset
)
863 return isl_space_is_params(bset
->dim
);
866 /* Is this set a parameter domain?
868 isl_bool
isl_set_is_params(__isl_keep isl_set
*set
)
871 return isl_bool_error
;
872 return isl_space_is_params(set
->dim
);
875 /* Is this map actually a parameter domain?
876 * Users should never call this function. Outside of isl,
877 * a map can never be a parameter domain.
879 int isl_map_is_params(__isl_keep isl_map
*map
)
883 return isl_space_is_params(map
->dim
);
886 static struct isl_basic_map
*basic_map_init(struct isl_ctx
*ctx
,
887 struct isl_basic_map
*bmap
, unsigned extra
,
888 unsigned n_eq
, unsigned n_ineq
)
891 size_t row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + extra
;
896 bmap
->block
= isl_blk_alloc(ctx
, (n_ineq
+ n_eq
) * row_size
);
897 if (isl_blk_is_error(bmap
->block
))
900 bmap
->ineq
= isl_alloc_array(ctx
, isl_int
*, n_ineq
+ n_eq
);
901 if ((n_ineq
+ n_eq
) && !bmap
->ineq
)
905 bmap
->block2
= isl_blk_empty();
908 bmap
->block2
= isl_blk_alloc(ctx
, extra
* (1 + row_size
));
909 if (isl_blk_is_error(bmap
->block2
))
912 bmap
->div
= isl_alloc_array(ctx
, isl_int
*, extra
);
917 for (i
= 0; i
< n_ineq
+ n_eq
; ++i
)
918 bmap
->ineq
[i
] = bmap
->block
.data
+ i
* row_size
;
920 for (i
= 0; i
< extra
; ++i
)
921 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + row_size
);
925 bmap
->c_size
= n_eq
+ n_ineq
;
926 bmap
->eq
= bmap
->ineq
+ n_ineq
;
935 isl_basic_map_free(bmap
);
939 struct isl_basic_set
*isl_basic_set_alloc(struct isl_ctx
*ctx
,
940 unsigned nparam
, unsigned dim
, unsigned extra
,
941 unsigned n_eq
, unsigned n_ineq
)
943 struct isl_basic_map
*bmap
;
946 space
= isl_space_set_alloc(ctx
, nparam
, dim
);
950 bmap
= isl_basic_map_alloc_space(space
, extra
, n_eq
, n_ineq
);
951 return (struct isl_basic_set
*)bmap
;
954 struct isl_basic_set
*isl_basic_set_alloc_space(__isl_take isl_space
*dim
,
955 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
957 struct isl_basic_map
*bmap
;
960 isl_assert(dim
->ctx
, dim
->n_in
== 0, goto error
);
961 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
962 return (struct isl_basic_set
*)bmap
;
968 struct isl_basic_map
*isl_basic_map_alloc_space(__isl_take isl_space
*dim
,
969 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
971 struct isl_basic_map
*bmap
;
975 bmap
= isl_calloc_type(dim
->ctx
, struct isl_basic_map
);
980 return basic_map_init(dim
->ctx
, bmap
, extra
, n_eq
, n_ineq
);
986 struct isl_basic_map
*isl_basic_map_alloc(struct isl_ctx
*ctx
,
987 unsigned nparam
, unsigned in
, unsigned out
, unsigned extra
,
988 unsigned n_eq
, unsigned n_ineq
)
990 struct isl_basic_map
*bmap
;
993 dim
= isl_space_alloc(ctx
, nparam
, in
, out
);
997 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1001 static void dup_constraints(
1002 struct isl_basic_map
*dst
, struct isl_basic_map
*src
)
1005 unsigned total
= isl_basic_map_total_dim(src
);
1007 for (i
= 0; i
< src
->n_eq
; ++i
) {
1008 int j
= isl_basic_map_alloc_equality(dst
);
1009 isl_seq_cpy(dst
->eq
[j
], src
->eq
[i
], 1+total
);
1012 for (i
= 0; i
< src
->n_ineq
; ++i
) {
1013 int j
= isl_basic_map_alloc_inequality(dst
);
1014 isl_seq_cpy(dst
->ineq
[j
], src
->ineq
[i
], 1+total
);
1017 for (i
= 0; i
< src
->n_div
; ++i
) {
1018 int j
= isl_basic_map_alloc_div(dst
);
1019 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
);
1021 ISL_F_SET(dst
, ISL_BASIC_SET_FINAL
);
1024 struct isl_basic_map
*isl_basic_map_dup(struct isl_basic_map
*bmap
)
1026 struct isl_basic_map
*dup
;
1030 dup
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
1031 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
1034 dup_constraints(dup
, bmap
);
1035 dup
->flags
= bmap
->flags
;
1036 dup
->sample
= isl_vec_copy(bmap
->sample
);
1040 struct isl_basic_set
*isl_basic_set_dup(struct isl_basic_set
*bset
)
1042 struct isl_basic_map
*dup
;
1044 dup
= isl_basic_map_dup((struct isl_basic_map
*)bset
);
1045 return (struct isl_basic_set
*)dup
;
1048 struct isl_basic_set
*isl_basic_set_copy(struct isl_basic_set
*bset
)
1053 if (ISL_F_ISSET(bset
, ISL_BASIC_SET_FINAL
)) {
1057 return isl_basic_set_dup(bset
);
1060 struct isl_set
*isl_set_copy(struct isl_set
*set
)
1069 struct isl_basic_map
*isl_basic_map_copy(struct isl_basic_map
*bmap
)
1074 if (ISL_F_ISSET(bmap
, ISL_BASIC_SET_FINAL
)) {
1078 bmap
= isl_basic_map_dup(bmap
);
1080 ISL_F_SET(bmap
, ISL_BASIC_SET_FINAL
);
1084 struct isl_map
*isl_map_copy(struct isl_map
*map
)
1093 __isl_null isl_basic_map
*isl_basic_map_free(__isl_take isl_basic_map
*bmap
)
1098 if (--bmap
->ref
> 0)
1101 isl_ctx_deref(bmap
->ctx
);
1103 isl_blk_free(bmap
->ctx
, bmap
->block2
);
1105 isl_blk_free(bmap
->ctx
, bmap
->block
);
1106 isl_vec_free(bmap
->sample
);
1107 isl_space_free(bmap
->dim
);
1113 __isl_null isl_basic_set
*isl_basic_set_free(__isl_take isl_basic_set
*bset
)
1115 return isl_basic_map_free((struct isl_basic_map
*)bset
);
1118 static int room_for_con(struct isl_basic_map
*bmap
, unsigned n
)
1120 return bmap
->n_eq
+ bmap
->n_ineq
+ n
<= bmap
->c_size
;
1123 __isl_give isl_map
*isl_map_align_params_map_map_and(
1124 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
,
1125 __isl_give isl_map
*(*fn
)(__isl_take isl_map
*map1
,
1126 __isl_take isl_map
*map2
))
1130 if (isl_space_match(map1
->dim
, isl_dim_param
, map2
->dim
, isl_dim_param
))
1131 return fn(map1
, map2
);
1132 if (!isl_space_has_named_params(map1
->dim
) ||
1133 !isl_space_has_named_params(map2
->dim
))
1134 isl_die(map1
->ctx
, isl_error_invalid
,
1135 "unaligned unnamed parameters", goto error
);
1136 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1137 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1138 return fn(map1
, map2
);
1145 isl_bool
isl_map_align_params_map_map_and_test(__isl_keep isl_map
*map1
,
1146 __isl_keep isl_map
*map2
,
1147 isl_bool (*fn
)(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
))
1152 return isl_bool_error
;
1153 if (isl_space_match(map1
->dim
, isl_dim_param
, map2
->dim
, isl_dim_param
))
1154 return fn(map1
, map2
);
1155 if (!isl_space_has_named_params(map1
->dim
) ||
1156 !isl_space_has_named_params(map2
->dim
))
1157 isl_die(map1
->ctx
, isl_error_invalid
,
1158 "unaligned unnamed parameters", return isl_bool_error
);
1159 map1
= isl_map_copy(map1
);
1160 map2
= isl_map_copy(map2
);
1161 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1162 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1169 int isl_basic_map_alloc_equality(struct isl_basic_map
*bmap
)
1171 struct isl_ctx
*ctx
;
1175 isl_assert(ctx
, room_for_con(bmap
, 1), return -1);
1176 isl_assert(ctx
, (bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
<= bmap
->c_size
,
1178 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1179 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1180 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1181 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1182 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1183 if ((bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
== bmap
->c_size
) {
1185 int j
= isl_basic_map_alloc_inequality(bmap
);
1189 bmap
->ineq
[j
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1190 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1197 isl_seq_clr(bmap
->eq
[bmap
->n_eq
] + 1 + isl_basic_map_total_dim(bmap
),
1198 bmap
->extra
- bmap
->n_div
);
1199 return bmap
->n_eq
++;
1202 int isl_basic_set_alloc_equality(struct isl_basic_set
*bset
)
1204 return isl_basic_map_alloc_equality((struct isl_basic_map
*)bset
);
1207 int isl_basic_map_free_equality(struct isl_basic_map
*bmap
, unsigned n
)
1211 isl_assert(bmap
->ctx
, n
<= bmap
->n_eq
, return -1);
1216 int isl_basic_set_free_equality(struct isl_basic_set
*bset
, unsigned n
)
1218 return isl_basic_map_free_equality((struct isl_basic_map
*)bset
, n
);
1221 int isl_basic_map_drop_equality(struct isl_basic_map
*bmap
, unsigned pos
)
1226 isl_assert(bmap
->ctx
, pos
< bmap
->n_eq
, return -1);
1228 if (pos
!= bmap
->n_eq
- 1) {
1230 bmap
->eq
[pos
] = bmap
->eq
[bmap
->n_eq
- 1];
1231 bmap
->eq
[bmap
->n_eq
- 1] = t
;
1237 int isl_basic_set_drop_equality(struct isl_basic_set
*bset
, unsigned pos
)
1239 return isl_basic_map_drop_equality((struct isl_basic_map
*)bset
, pos
);
1242 /* Turn inequality "pos" of "bmap" into an equality.
1244 * In particular, we move the inequality in front of the equalities
1245 * and move the last inequality in the position of the moved inequality.
1246 * Note that isl_tab_make_equalities_explicit depends on this particular
1247 * change in the ordering of the constraints.
1249 void isl_basic_map_inequality_to_equality(
1250 struct isl_basic_map
*bmap
, unsigned pos
)
1254 t
= bmap
->ineq
[pos
];
1255 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1256 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1261 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1262 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1263 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1264 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1267 static int room_for_ineq(struct isl_basic_map
*bmap
, unsigned n
)
1269 return bmap
->n_ineq
+ n
<= bmap
->eq
- bmap
->ineq
;
1272 int isl_basic_map_alloc_inequality(struct isl_basic_map
*bmap
)
1274 struct isl_ctx
*ctx
;
1278 isl_assert(ctx
, room_for_ineq(bmap
, 1), return -1);
1279 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1280 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1281 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1282 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1283 isl_seq_clr(bmap
->ineq
[bmap
->n_ineq
] +
1284 1 + isl_basic_map_total_dim(bmap
),
1285 bmap
->extra
- bmap
->n_div
);
1286 return bmap
->n_ineq
++;
1289 int isl_basic_set_alloc_inequality(struct isl_basic_set
*bset
)
1291 return isl_basic_map_alloc_inequality((struct isl_basic_map
*)bset
);
1294 int isl_basic_map_free_inequality(struct isl_basic_map
*bmap
, unsigned n
)
1298 isl_assert(bmap
->ctx
, n
<= bmap
->n_ineq
, return -1);
1303 int isl_basic_set_free_inequality(struct isl_basic_set
*bset
, unsigned n
)
1305 return isl_basic_map_free_inequality((struct isl_basic_map
*)bset
, n
);
1308 int isl_basic_map_drop_inequality(struct isl_basic_map
*bmap
, unsigned pos
)
1313 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
1315 if (pos
!= bmap
->n_ineq
- 1) {
1316 t
= bmap
->ineq
[pos
];
1317 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1318 bmap
->ineq
[bmap
->n_ineq
- 1] = t
;
1319 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1325 int isl_basic_set_drop_inequality(struct isl_basic_set
*bset
, unsigned pos
)
1327 return isl_basic_map_drop_inequality((struct isl_basic_map
*)bset
, pos
);
1330 __isl_give isl_basic_map
*isl_basic_map_add_eq(__isl_take isl_basic_map
*bmap
,
1335 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
1338 k
= isl_basic_map_alloc_equality(bmap
);
1341 isl_seq_cpy(bmap
->eq
[k
], eq
, 1 + isl_basic_map_total_dim(bmap
));
1344 isl_basic_map_free(bmap
);
1348 __isl_give isl_basic_set
*isl_basic_set_add_eq(__isl_take isl_basic_set
*bset
,
1351 return (isl_basic_set
*)
1352 isl_basic_map_add_eq((isl_basic_map
*)bset
, eq
);
1355 __isl_give isl_basic_map
*isl_basic_map_add_ineq(__isl_take isl_basic_map
*bmap
,
1360 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
1363 k
= isl_basic_map_alloc_inequality(bmap
);
1366 isl_seq_cpy(bmap
->ineq
[k
], ineq
, 1 + isl_basic_map_total_dim(bmap
));
1369 isl_basic_map_free(bmap
);
1373 __isl_give isl_basic_set
*isl_basic_set_add_ineq(__isl_take isl_basic_set
*bset
,
1376 return (isl_basic_set
*)
1377 isl_basic_map_add_ineq((isl_basic_map
*)bset
, ineq
);
1380 int isl_basic_map_alloc_div(struct isl_basic_map
*bmap
)
1384 isl_assert(bmap
->ctx
, bmap
->n_div
< bmap
->extra
, return -1);
1385 isl_seq_clr(bmap
->div
[bmap
->n_div
] +
1386 1 + 1 + isl_basic_map_total_dim(bmap
),
1387 bmap
->extra
- bmap
->n_div
);
1388 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1389 return bmap
->n_div
++;
1392 int isl_basic_set_alloc_div(struct isl_basic_set
*bset
)
1394 return isl_basic_map_alloc_div((struct isl_basic_map
*)bset
);
1397 int isl_basic_map_free_div(struct isl_basic_map
*bmap
, unsigned n
)
1401 isl_assert(bmap
->ctx
, n
<= bmap
->n_div
, return -1);
1406 int isl_basic_set_free_div(struct isl_basic_set
*bset
, unsigned n
)
1408 return isl_basic_map_free_div((struct isl_basic_map
*)bset
, n
);
1411 /* Copy constraint from src to dst, putting the vars of src at offset
1412 * dim_off in dst and the divs of src at offset div_off in dst.
1413 * If both sets are actually map, then dim_off applies to the input
1416 static void copy_constraint(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1417 struct isl_basic_map
*src_map
, isl_int
*src
,
1418 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1420 unsigned src_nparam
= isl_basic_map_n_param(src_map
);
1421 unsigned dst_nparam
= isl_basic_map_n_param(dst_map
);
1422 unsigned src_in
= isl_basic_map_n_in(src_map
);
1423 unsigned dst_in
= isl_basic_map_n_in(dst_map
);
1424 unsigned src_out
= isl_basic_map_n_out(src_map
);
1425 unsigned dst_out
= isl_basic_map_n_out(dst_map
);
1426 isl_int_set(dst
[0], src
[0]);
1427 isl_seq_cpy(dst
+1, src
+1, isl_min(dst_nparam
, src_nparam
));
1428 if (dst_nparam
> src_nparam
)
1429 isl_seq_clr(dst
+1+src_nparam
,
1430 dst_nparam
- src_nparam
);
1431 isl_seq_clr(dst
+1+dst_nparam
, in_off
);
1432 isl_seq_cpy(dst
+1+dst_nparam
+in_off
,
1434 isl_min(dst_in
-in_off
, src_in
));
1435 if (dst_in
-in_off
> src_in
)
1436 isl_seq_clr(dst
+1+dst_nparam
+in_off
+src_in
,
1437 dst_in
- in_off
- src_in
);
1438 isl_seq_clr(dst
+1+dst_nparam
+dst_in
, out_off
);
1439 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+out_off
,
1440 src
+1+src_nparam
+src_in
,
1441 isl_min(dst_out
-out_off
, src_out
));
1442 if (dst_out
-out_off
> src_out
)
1443 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+out_off
+src_out
,
1444 dst_out
- out_off
- src_out
);
1445 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
, div_off
);
1446 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+dst_out
+div_off
,
1447 src
+1+src_nparam
+src_in
+src_out
,
1448 isl_min(dst_map
->extra
-div_off
, src_map
->n_div
));
1449 if (dst_map
->n_div
-div_off
> src_map
->n_div
)
1450 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
+
1451 div_off
+src_map
->n_div
,
1452 dst_map
->n_div
- div_off
- src_map
->n_div
);
1455 static void copy_div(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1456 struct isl_basic_map
*src_map
, isl_int
*src
,
1457 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1459 isl_int_set(dst
[0], src
[0]);
1460 copy_constraint(dst_map
, dst
+1, src_map
, src
+1, in_off
, out_off
, div_off
);
1463 static struct isl_basic_map
*add_constraints(struct isl_basic_map
*bmap1
,
1464 struct isl_basic_map
*bmap2
, unsigned i_pos
, unsigned o_pos
)
1469 if (!bmap1
|| !bmap2
)
1472 div_off
= bmap1
->n_div
;
1474 for (i
= 0; i
< bmap2
->n_eq
; ++i
) {
1475 int i1
= isl_basic_map_alloc_equality(bmap1
);
1478 copy_constraint(bmap1
, bmap1
->eq
[i1
], bmap2
, bmap2
->eq
[i
],
1479 i_pos
, o_pos
, div_off
);
1482 for (i
= 0; i
< bmap2
->n_ineq
; ++i
) {
1483 int i1
= isl_basic_map_alloc_inequality(bmap1
);
1486 copy_constraint(bmap1
, bmap1
->ineq
[i1
], bmap2
, bmap2
->ineq
[i
],
1487 i_pos
, o_pos
, div_off
);
1490 for (i
= 0; i
< bmap2
->n_div
; ++i
) {
1491 int i1
= isl_basic_map_alloc_div(bmap1
);
1494 copy_div(bmap1
, bmap1
->div
[i1
], bmap2
, bmap2
->div
[i
],
1495 i_pos
, o_pos
, div_off
);
1498 isl_basic_map_free(bmap2
);
1503 isl_basic_map_free(bmap1
);
1504 isl_basic_map_free(bmap2
);
1508 struct isl_basic_set
*isl_basic_set_add_constraints(struct isl_basic_set
*bset1
,
1509 struct isl_basic_set
*bset2
, unsigned pos
)
1511 return (struct isl_basic_set
*)
1512 add_constraints((struct isl_basic_map
*)bset1
,
1513 (struct isl_basic_map
*)bset2
, 0, pos
);
1516 struct isl_basic_map
*isl_basic_map_extend_space(struct isl_basic_map
*base
,
1517 __isl_take isl_space
*dim
, unsigned extra
,
1518 unsigned n_eq
, unsigned n_ineq
)
1520 struct isl_basic_map
*ext
;
1530 dims_ok
= isl_space_is_equal(base
->dim
, dim
) &&
1531 base
->extra
>= base
->n_div
+ extra
;
1533 if (dims_ok
&& room_for_con(base
, n_eq
+ n_ineq
) &&
1534 room_for_ineq(base
, n_ineq
)) {
1535 isl_space_free(dim
);
1539 isl_assert(base
->ctx
, base
->dim
->nparam
<= dim
->nparam
, goto error
);
1540 isl_assert(base
->ctx
, base
->dim
->n_in
<= dim
->n_in
, goto error
);
1541 isl_assert(base
->ctx
, base
->dim
->n_out
<= dim
->n_out
, goto error
);
1542 extra
+= base
->extra
;
1544 n_ineq
+= base
->n_ineq
;
1546 ext
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1552 ext
->sample
= isl_vec_copy(base
->sample
);
1553 flags
= base
->flags
;
1554 ext
= add_constraints(ext
, base
, 0, 0);
1557 ISL_F_CLR(ext
, ISL_BASIC_SET_FINAL
);
1563 isl_space_free(dim
);
1564 isl_basic_map_free(base
);
1568 struct isl_basic_set
*isl_basic_set_extend_space(struct isl_basic_set
*base
,
1569 __isl_take isl_space
*dim
, unsigned extra
,
1570 unsigned n_eq
, unsigned n_ineq
)
1572 return (struct isl_basic_set
*)
1573 isl_basic_map_extend_space((struct isl_basic_map
*)base
, dim
,
1574 extra
, n_eq
, n_ineq
);
1577 struct isl_basic_map
*isl_basic_map_extend_constraints(
1578 struct isl_basic_map
*base
, unsigned n_eq
, unsigned n_ineq
)
1582 return isl_basic_map_extend_space(base
, isl_space_copy(base
->dim
),
1586 struct isl_basic_map
*isl_basic_map_extend(struct isl_basic_map
*base
,
1587 unsigned nparam
, unsigned n_in
, unsigned n_out
, unsigned extra
,
1588 unsigned n_eq
, unsigned n_ineq
)
1590 struct isl_basic_map
*bmap
;
1595 dim
= isl_space_alloc(base
->ctx
, nparam
, n_in
, n_out
);
1599 bmap
= isl_basic_map_extend_space(base
, dim
, extra
, n_eq
, n_ineq
);
1602 isl_basic_map_free(base
);
1606 struct isl_basic_set
*isl_basic_set_extend(struct isl_basic_set
*base
,
1607 unsigned nparam
, unsigned dim
, unsigned extra
,
1608 unsigned n_eq
, unsigned n_ineq
)
1610 return (struct isl_basic_set
*)
1611 isl_basic_map_extend((struct isl_basic_map
*)base
,
1612 nparam
, 0, dim
, extra
, n_eq
, n_ineq
);
1615 struct isl_basic_set
*isl_basic_set_extend_constraints(
1616 struct isl_basic_set
*base
, unsigned n_eq
, unsigned n_ineq
)
1618 return (struct isl_basic_set
*)
1619 isl_basic_map_extend_constraints((struct isl_basic_map
*)base
,
1623 struct isl_basic_set
*isl_basic_set_cow(struct isl_basic_set
*bset
)
1625 return (struct isl_basic_set
*)
1626 isl_basic_map_cow((struct isl_basic_map
*)bset
);
1629 struct isl_basic_map
*isl_basic_map_cow(struct isl_basic_map
*bmap
)
1634 if (bmap
->ref
> 1) {
1636 bmap
= isl_basic_map_dup(bmap
);
1639 ISL_F_CLR(bmap
, ISL_BASIC_SET_FINAL
);
1640 ISL_F_CLR(bmap
, ISL_BASIC_MAP_REDUCED_COEFFICIENTS
);
1645 struct isl_set
*isl_set_cow(struct isl_set
*set
)
1653 return isl_set_dup(set
);
1656 struct isl_map
*isl_map_cow(struct isl_map
*map
)
1664 return isl_map_dup(map
);
1667 static void swap_vars(struct isl_blk blk
, isl_int
*a
,
1668 unsigned a_len
, unsigned b_len
)
1670 isl_seq_cpy(blk
.data
, a
+a_len
, b_len
);
1671 isl_seq_cpy(blk
.data
+b_len
, a
, a_len
);
1672 isl_seq_cpy(a
, blk
.data
, b_len
+a_len
);
1675 static __isl_give isl_basic_map
*isl_basic_map_swap_vars(
1676 __isl_take isl_basic_map
*bmap
, unsigned pos
, unsigned n1
, unsigned n2
)
1684 isl_assert(bmap
->ctx
,
1685 pos
+ n1
+ n2
<= 1 + isl_basic_map_total_dim(bmap
), goto error
);
1687 if (n1
== 0 || n2
== 0)
1690 bmap
= isl_basic_map_cow(bmap
);
1694 blk
= isl_blk_alloc(bmap
->ctx
, n1
+ n2
);
1695 if (isl_blk_is_error(blk
))
1698 for (i
= 0; i
< bmap
->n_eq
; ++i
)
1700 bmap
->eq
[i
] + pos
, n1
, n2
);
1702 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
1704 bmap
->ineq
[i
] + pos
, n1
, n2
);
1706 for (i
= 0; i
< bmap
->n_div
; ++i
)
1708 bmap
->div
[i
]+1 + pos
, n1
, n2
);
1710 isl_blk_free(bmap
->ctx
, blk
);
1712 ISL_F_CLR(bmap
, ISL_BASIC_SET_NORMALIZED
);
1713 bmap
= isl_basic_map_gauss(bmap
, NULL
);
1714 return isl_basic_map_finalize(bmap
);
1716 isl_basic_map_free(bmap
);
1720 struct isl_basic_map
*isl_basic_map_set_to_empty(struct isl_basic_map
*bmap
)
1726 total
= isl_basic_map_total_dim(bmap
);
1727 isl_basic_map_free_div(bmap
, bmap
->n_div
);
1728 isl_basic_map_free_inequality(bmap
, bmap
->n_ineq
);
1730 isl_basic_map_free_equality(bmap
, bmap
->n_eq
-1);
1732 i
= isl_basic_map_alloc_equality(bmap
);
1736 isl_int_set_si(bmap
->eq
[i
][0], 1);
1737 isl_seq_clr(bmap
->eq
[i
]+1, total
);
1738 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
1739 isl_vec_free(bmap
->sample
);
1740 bmap
->sample
= NULL
;
1741 return isl_basic_map_finalize(bmap
);
1743 isl_basic_map_free(bmap
);
1747 struct isl_basic_set
*isl_basic_set_set_to_empty(struct isl_basic_set
*bset
)
1749 return (struct isl_basic_set
*)
1750 isl_basic_map_set_to_empty((struct isl_basic_map
*)bset
);
1753 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
1756 static void swap_div(__isl_keep isl_basic_map
*bmap
, int a
, int b
)
1758 isl_int
*t
= bmap
->div
[a
];
1759 bmap
->div
[a
] = bmap
->div
[b
];
1763 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
1764 * div definitions accordingly.
1766 void isl_basic_map_swap_div(struct isl_basic_map
*bmap
, int a
, int b
)
1769 unsigned off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
1771 swap_div(bmap
, a
, b
);
1773 for (i
= 0; i
< bmap
->n_eq
; ++i
)
1774 isl_int_swap(bmap
->eq
[i
][1+off
+a
], bmap
->eq
[i
][1+off
+b
]);
1776 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
1777 isl_int_swap(bmap
->ineq
[i
][1+off
+a
], bmap
->ineq
[i
][1+off
+b
]);
1779 for (i
= 0; i
< bmap
->n_div
; ++i
)
1780 isl_int_swap(bmap
->div
[i
][1+1+off
+a
], bmap
->div
[i
][1+1+off
+b
]);
1781 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1784 /* Eliminate the specified n dimensions starting at first from the
1785 * constraints, without removing the dimensions from the space.
1786 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1788 __isl_give isl_map
*isl_map_eliminate(__isl_take isl_map
*map
,
1789 enum isl_dim_type type
, unsigned first
, unsigned n
)
1798 if (first
+ n
> isl_map_dim(map
, type
) || first
+ n
< first
)
1799 isl_die(map
->ctx
, isl_error_invalid
,
1800 "index out of bounds", goto error
);
1802 map
= isl_map_cow(map
);
1806 for (i
= 0; i
< map
->n
; ++i
) {
1807 map
->p
[i
] = isl_basic_map_eliminate(map
->p
[i
], type
, first
, n
);
1817 /* Eliminate the specified n dimensions starting at first from the
1818 * constraints, without removing the dimensions from the space.
1819 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1821 __isl_give isl_set
*isl_set_eliminate(__isl_take isl_set
*set
,
1822 enum isl_dim_type type
, unsigned first
, unsigned n
)
1824 return (isl_set
*)isl_map_eliminate((isl_map
*)set
, type
, first
, n
);
1827 /* Eliminate the specified n dimensions starting at first from the
1828 * constraints, without removing the dimensions from the space.
1829 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1831 __isl_give isl_set
*isl_set_eliminate_dims(__isl_take isl_set
*set
,
1832 unsigned first
, unsigned n
)
1834 return isl_set_eliminate(set
, isl_dim_set
, first
, n
);
1837 __isl_give isl_basic_map
*isl_basic_map_remove_divs(
1838 __isl_take isl_basic_map
*bmap
)
1842 bmap
= isl_basic_map_eliminate_vars(bmap
,
1843 isl_space_dim(bmap
->dim
, isl_dim_all
), bmap
->n_div
);
1847 return isl_basic_map_finalize(bmap
);
1850 __isl_give isl_basic_set
*isl_basic_set_remove_divs(
1851 __isl_take isl_basic_set
*bset
)
1853 return (struct isl_basic_set
*)isl_basic_map_remove_divs(
1854 (struct isl_basic_map
*)bset
);
1857 __isl_give isl_map
*isl_map_remove_divs(__isl_take isl_map
*map
)
1866 map
= isl_map_cow(map
);
1870 for (i
= 0; i
< map
->n
; ++i
) {
1871 map
->p
[i
] = isl_basic_map_remove_divs(map
->p
[i
]);
1881 __isl_give isl_set
*isl_set_remove_divs(__isl_take isl_set
*set
)
1883 return isl_map_remove_divs(set
);
1886 struct isl_basic_map
*isl_basic_map_remove_dims(struct isl_basic_map
*bmap
,
1887 enum isl_dim_type type
, unsigned first
, unsigned n
)
1891 isl_assert(bmap
->ctx
, first
+ n
<= isl_basic_map_dim(bmap
, type
),
1893 if (n
== 0 && !isl_space_is_named_or_nested(bmap
->dim
, type
))
1895 bmap
= isl_basic_map_eliminate_vars(bmap
,
1896 isl_basic_map_offset(bmap
, type
) - 1 + first
, n
);
1899 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
) && type
== isl_dim_div
)
1901 bmap
= isl_basic_map_drop(bmap
, type
, first
, n
);
1904 isl_basic_map_free(bmap
);
1908 /* Return true if the definition of the given div (recursively) involves
1909 * any of the given variables.
1911 static int div_involves_vars(__isl_keep isl_basic_map
*bmap
, int div
,
1912 unsigned first
, unsigned n
)
1915 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
1917 if (isl_int_is_zero(bmap
->div
[div
][0]))
1919 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + first
, n
) >= 0)
1922 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
1923 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
1925 if (div_involves_vars(bmap
, i
, first
, n
))
1932 /* Try and add a lower and/or upper bound on "div" to "bmap"
1933 * based on inequality "i".
1934 * "total" is the total number of variables (excluding the divs).
1935 * "v" is a temporary object that can be used during the calculations.
1936 * If "lb" is set, then a lower bound should be constructed.
1937 * If "ub" is set, then an upper bound should be constructed.
1939 * The calling function has already checked that the inequality does not
1940 * reference "div", but we still need to check that the inequality is
1941 * of the right form. We'll consider the case where we want to construct
1942 * a lower bound. The construction of upper bounds is similar.
1944 * Let "div" be of the form
1946 * q = floor((a + f(x))/d)
1948 * We essentially check if constraint "i" is of the form
1952 * so that we can use it to derive a lower bound on "div".
1953 * However, we allow a slightly more general form
1957 * with the condition that the coefficients of g(x) - f(x) are all
1959 * Rewriting this constraint as
1963 * adding a + f(x) to both sides and dividing by d, we obtain
1965 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
1967 * Taking the floor on both sides, we obtain
1969 * q >= floor((a-b)/d) + (f(x)-g(x))/d
1973 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
1975 * In the case of an upper bound, we construct the constraint
1977 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
1980 static __isl_give isl_basic_map
*insert_bounds_on_div_from_ineq(
1981 __isl_take isl_basic_map
*bmap
, int div
, int i
,
1982 unsigned total
, isl_int v
, int lb
, int ub
)
1986 for (j
= 0; (lb
|| ub
) && j
< total
+ bmap
->n_div
; ++j
) {
1988 isl_int_sub(v
, bmap
->ineq
[i
][1 + j
],
1989 bmap
->div
[div
][1 + 1 + j
]);
1990 lb
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
1993 isl_int_add(v
, bmap
->ineq
[i
][1 + j
],
1994 bmap
->div
[div
][1 + 1 + j
]);
1995 ub
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
2001 bmap
= isl_basic_map_cow(bmap
);
2002 bmap
= isl_basic_map_extend_constraints(bmap
, 0, lb
+ ub
);
2004 int k
= isl_basic_map_alloc_inequality(bmap
);
2007 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2008 isl_int_sub(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2009 bmap
->div
[div
][1 + j
]);
2010 isl_int_cdiv_q(bmap
->ineq
[k
][j
],
2011 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2013 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], 1);
2016 int k
= isl_basic_map_alloc_inequality(bmap
);
2019 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2020 isl_int_add(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2021 bmap
->div
[div
][1 + j
]);
2022 isl_int_fdiv_q(bmap
->ineq
[k
][j
],
2023 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2025 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], -1);
2028 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2031 isl_basic_map_free(bmap
);
2035 /* This function is called right before "div" is eliminated from "bmap"
2036 * using Fourier-Motzkin.
2037 * Look through the constraints of "bmap" for constraints on the argument
2038 * of the integer division and use them to construct constraints on the
2039 * integer division itself. These constraints can then be combined
2040 * during the Fourier-Motzkin elimination.
2041 * Note that it is only useful to introduce lower bounds on "div"
2042 * if "bmap" already contains upper bounds on "div" as the newly
2043 * introduce lower bounds can then be combined with the pre-existing
2044 * upper bounds. Similarly for upper bounds.
2045 * We therefore first check if "bmap" contains any lower and/or upper bounds
2048 * It is interesting to note that the introduction of these constraints
2049 * can indeed lead to more accurate results, even when compared to
2050 * deriving constraints on the argument of "div" from constraints on "div".
2051 * Consider, for example, the set
2053 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2055 * The second constraint can be rewritten as
2057 * 2 * [(-i-2j+3)/4] + k >= 0
2059 * from which we can derive
2061 * -i - 2j + 3 >= -2k
2067 * Combined with the first constraint, we obtain
2069 * -3 <= 3 + 2k or k >= -3
2071 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2072 * the first constraint, we obtain
2074 * [(i + 2j)/4] >= [-3/4] = -1
2076 * Combining this constraint with the second constraint, we obtain
2080 static __isl_give isl_basic_map
*insert_bounds_on_div(
2081 __isl_take isl_basic_map
*bmap
, int div
)
2084 int check_lb
, check_ub
;
2091 if (isl_int_is_zero(bmap
->div
[div
][0]))
2094 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
2098 for (i
= 0; (!check_lb
|| !check_ub
) && i
< bmap
->n_ineq
; ++i
) {
2099 int s
= isl_int_sgn(bmap
->ineq
[i
][1 + total
+ div
]);
2106 if (!check_lb
&& !check_ub
)
2111 for (i
= 0; bmap
&& i
< bmap
->n_ineq
; ++i
) {
2112 if (!isl_int_is_zero(bmap
->ineq
[i
][1 + total
+ div
]))
2115 bmap
= insert_bounds_on_div_from_ineq(bmap
, div
, i
, total
, v
,
2116 check_lb
, check_ub
);
2124 /* Remove all divs (recursively) involving any of the given dimensions
2125 * in their definitions.
2127 __isl_give isl_basic_map
*isl_basic_map_remove_divs_involving_dims(
2128 __isl_take isl_basic_map
*bmap
,
2129 enum isl_dim_type type
, unsigned first
, unsigned n
)
2135 isl_assert(bmap
->ctx
, first
+ n
<= isl_basic_map_dim(bmap
, type
),
2137 first
+= isl_basic_map_offset(bmap
, type
);
2139 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2140 if (!div_involves_vars(bmap
, i
, first
, n
))
2142 bmap
= insert_bounds_on_div(bmap
, i
);
2143 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
2151 isl_basic_map_free(bmap
);
2155 __isl_give isl_basic_set
*isl_basic_set_remove_divs_involving_dims(
2156 __isl_take isl_basic_set
*bset
,
2157 enum isl_dim_type type
, unsigned first
, unsigned n
)
2159 return isl_basic_map_remove_divs_involving_dims(bset
, type
, first
, n
);
2162 __isl_give isl_map
*isl_map_remove_divs_involving_dims(__isl_take isl_map
*map
,
2163 enum isl_dim_type type
, unsigned first
, unsigned n
)
2172 map
= isl_map_cow(map
);
2176 for (i
= 0; i
< map
->n
; ++i
) {
2177 map
->p
[i
] = isl_basic_map_remove_divs_involving_dims(map
->p
[i
],
2188 __isl_give isl_set
*isl_set_remove_divs_involving_dims(__isl_take isl_set
*set
,
2189 enum isl_dim_type type
, unsigned first
, unsigned n
)
2191 return (isl_set
*)isl_map_remove_divs_involving_dims((isl_map
*)set
,
2195 /* Does the desciption of "bmap" depend on the specified dimensions?
2196 * We also check whether the dimensions appear in any of the div definitions.
2197 * In principle there is no need for this check. If the dimensions appear
2198 * in a div definition, they also appear in the defining constraints of that
2201 isl_bool
isl_basic_map_involves_dims(__isl_keep isl_basic_map
*bmap
,
2202 enum isl_dim_type type
, unsigned first
, unsigned n
)
2207 return isl_bool_error
;
2209 if (first
+ n
> isl_basic_map_dim(bmap
, type
))
2210 isl_die(bmap
->ctx
, isl_error_invalid
,
2211 "index out of bounds", return isl_bool_error
);
2213 first
+= isl_basic_map_offset(bmap
, type
);
2214 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2215 if (isl_seq_first_non_zero(bmap
->eq
[i
] + first
, n
) >= 0)
2216 return isl_bool_true
;
2217 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2218 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + first
, n
) >= 0)
2219 return isl_bool_true
;
2220 for (i
= 0; i
< bmap
->n_div
; ++i
) {
2221 if (isl_int_is_zero(bmap
->div
[i
][0]))
2223 if (isl_seq_first_non_zero(bmap
->div
[i
] + 1 + first
, n
) >= 0)
2224 return isl_bool_true
;
2227 return isl_bool_false
;
2230 isl_bool
isl_map_involves_dims(__isl_keep isl_map
*map
,
2231 enum isl_dim_type type
, unsigned first
, unsigned n
)
2236 return isl_bool_error
;
2238 if (first
+ n
> isl_map_dim(map
, type
))
2239 isl_die(map
->ctx
, isl_error_invalid
,
2240 "index out of bounds", return isl_bool_error
);
2242 for (i
= 0; i
< map
->n
; ++i
) {
2243 isl_bool involves
= isl_basic_map_involves_dims(map
->p
[i
],
2245 if (involves
< 0 || involves
)
2249 return isl_bool_false
;
2252 isl_bool
isl_basic_set_involves_dims(__isl_keep isl_basic_set
*bset
,
2253 enum isl_dim_type type
, unsigned first
, unsigned n
)
2255 return isl_basic_map_involves_dims(bset
, type
, first
, n
);
2258 isl_bool
isl_set_involves_dims(__isl_keep isl_set
*set
,
2259 enum isl_dim_type type
, unsigned first
, unsigned n
)
2261 return isl_map_involves_dims(set
, type
, first
, n
);
2264 /* Return true if the definition of the given div is unknown or depends
2267 static int div_is_unknown(__isl_keep isl_basic_map
*bmap
, int div
)
2270 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
2272 if (isl_int_is_zero(bmap
->div
[div
][0]))
2275 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2276 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
2278 if (div_is_unknown(bmap
, i
))
2285 /* Remove all divs that are unknown or defined in terms of unknown divs.
2287 __isl_give isl_basic_map
*isl_basic_map_remove_unknown_divs(
2288 __isl_take isl_basic_map
*bmap
)
2295 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2296 if (!div_is_unknown(bmap
, i
))
2298 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
2307 /* Remove all divs that are unknown or defined in terms of unknown divs.
2309 __isl_give isl_basic_set
*isl_basic_set_remove_unknown_divs(
2310 __isl_take isl_basic_set
*bset
)
2312 return isl_basic_map_remove_unknown_divs(bset
);
2315 __isl_give isl_map
*isl_map_remove_unknown_divs(__isl_take isl_map
*map
)
2324 map
= isl_map_cow(map
);
2328 for (i
= 0; i
< map
->n
; ++i
) {
2329 map
->p
[i
] = isl_basic_map_remove_unknown_divs(map
->p
[i
]);
2339 __isl_give isl_set
*isl_set_remove_unknown_divs(__isl_take isl_set
*set
)
2341 return (isl_set
*)isl_map_remove_unknown_divs((isl_map
*)set
);
2344 __isl_give isl_basic_set
*isl_basic_set_remove_dims(
2345 __isl_take isl_basic_set
*bset
,
2346 enum isl_dim_type type
, unsigned first
, unsigned n
)
2348 return (isl_basic_set
*)
2349 isl_basic_map_remove_dims((isl_basic_map
*)bset
, type
, first
, n
);
2352 struct isl_map
*isl_map_remove_dims(struct isl_map
*map
,
2353 enum isl_dim_type type
, unsigned first
, unsigned n
)
2360 map
= isl_map_cow(map
);
2363 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
2365 for (i
= 0; i
< map
->n
; ++i
) {
2366 map
->p
[i
] = isl_basic_map_eliminate_vars(map
->p
[i
],
2367 isl_basic_map_offset(map
->p
[i
], type
) - 1 + first
, n
);
2371 map
= isl_map_drop(map
, type
, first
, n
);
2378 __isl_give isl_set
*isl_set_remove_dims(__isl_take isl_set
*bset
,
2379 enum isl_dim_type type
, unsigned first
, unsigned n
)
2381 return (isl_set
*)isl_map_remove_dims((isl_map
*)bset
, type
, first
, n
);
2384 /* Project out n inputs starting at first using Fourier-Motzkin */
2385 struct isl_map
*isl_map_remove_inputs(struct isl_map
*map
,
2386 unsigned first
, unsigned n
)
2388 return isl_map_remove_dims(map
, isl_dim_in
, first
, n
);
2391 static void dump_term(struct isl_basic_map
*bmap
,
2392 isl_int c
, int pos
, FILE *out
)
2395 unsigned in
= isl_basic_map_n_in(bmap
);
2396 unsigned dim
= in
+ isl_basic_map_n_out(bmap
);
2397 unsigned nparam
= isl_basic_map_n_param(bmap
);
2399 isl_int_print(out
, c
, 0);
2401 if (!isl_int_is_one(c
))
2402 isl_int_print(out
, c
, 0);
2403 if (pos
< 1 + nparam
) {
2404 name
= isl_space_get_dim_name(bmap
->dim
,
2405 isl_dim_param
, pos
- 1);
2407 fprintf(out
, "%s", name
);
2409 fprintf(out
, "p%d", pos
- 1);
2410 } else if (pos
< 1 + nparam
+ in
)
2411 fprintf(out
, "i%d", pos
- 1 - nparam
);
2412 else if (pos
< 1 + nparam
+ dim
)
2413 fprintf(out
, "o%d", pos
- 1 - nparam
- in
);
2415 fprintf(out
, "e%d", pos
- 1 - nparam
- dim
);
2419 static void dump_constraint_sign(struct isl_basic_map
*bmap
, isl_int
*c
,
2420 int sign
, FILE *out
)
2424 unsigned len
= 1 + isl_basic_map_total_dim(bmap
);
2428 for (i
= 0, first
= 1; i
< len
; ++i
) {
2429 if (isl_int_sgn(c
[i
]) * sign
<= 0)
2432 fprintf(out
, " + ");
2434 isl_int_abs(v
, c
[i
]);
2435 dump_term(bmap
, v
, i
, out
);
2442 static void dump_constraint(struct isl_basic_map
*bmap
, isl_int
*c
,
2443 const char *op
, FILE *out
, int indent
)
2447 fprintf(out
, "%*s", indent
, "");
2449 dump_constraint_sign(bmap
, c
, 1, out
);
2450 fprintf(out
, " %s ", op
);
2451 dump_constraint_sign(bmap
, c
, -1, out
);
2455 for (i
= bmap
->n_div
; i
< bmap
->extra
; ++i
) {
2456 if (isl_int_is_zero(c
[1+isl_space_dim(bmap
->dim
, isl_dim_all
)+i
]))
2458 fprintf(out
, "%*s", indent
, "");
2459 fprintf(out
, "ERROR: unused div coefficient not zero\n");
2464 static void dump_constraints(struct isl_basic_map
*bmap
,
2465 isl_int
**c
, unsigned n
,
2466 const char *op
, FILE *out
, int indent
)
2470 for (i
= 0; i
< n
; ++i
)
2471 dump_constraint(bmap
, c
[i
], op
, out
, indent
);
2474 static void dump_affine(struct isl_basic_map
*bmap
, isl_int
*exp
, FILE *out
)
2478 unsigned total
= isl_basic_map_total_dim(bmap
);
2480 for (j
= 0; j
< 1 + total
; ++j
) {
2481 if (isl_int_is_zero(exp
[j
]))
2483 if (!first
&& isl_int_is_pos(exp
[j
]))
2485 dump_term(bmap
, exp
[j
], j
, out
);
2490 static void dump(struct isl_basic_map
*bmap
, FILE *out
, int indent
)
2494 dump_constraints(bmap
, bmap
->eq
, bmap
->n_eq
, "=", out
, indent
);
2495 dump_constraints(bmap
, bmap
->ineq
, bmap
->n_ineq
, ">=", out
, indent
);
2497 for (i
= 0; i
< bmap
->n_div
; ++i
) {
2498 fprintf(out
, "%*s", indent
, "");
2499 fprintf(out
, "e%d = [(", i
);
2500 dump_affine(bmap
, bmap
->div
[i
]+1, out
);
2502 isl_int_print(out
, bmap
->div
[i
][0], 0);
2503 fprintf(out
, "]\n");
2507 void isl_basic_set_print_internal(struct isl_basic_set
*bset
,
2508 FILE *out
, int indent
)
2511 fprintf(out
, "null basic set\n");
2515 fprintf(out
, "%*s", indent
, "");
2516 fprintf(out
, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
2517 bset
->ref
, bset
->dim
->nparam
, bset
->dim
->n_out
,
2518 bset
->extra
, bset
->flags
);
2519 dump((struct isl_basic_map
*)bset
, out
, indent
);
2522 void isl_basic_map_print_internal(struct isl_basic_map
*bmap
,
2523 FILE *out
, int indent
)
2526 fprintf(out
, "null basic map\n");
2530 fprintf(out
, "%*s", indent
, "");
2531 fprintf(out
, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
2532 "flags: %x, n_name: %d\n",
2534 bmap
->dim
->nparam
, bmap
->dim
->n_in
, bmap
->dim
->n_out
,
2535 bmap
->extra
, bmap
->flags
, bmap
->dim
->n_id
);
2536 dump(bmap
, out
, indent
);
2539 int isl_inequality_negate(struct isl_basic_map
*bmap
, unsigned pos
)
2544 total
= isl_basic_map_total_dim(bmap
);
2545 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
2546 isl_seq_neg(bmap
->ineq
[pos
], bmap
->ineq
[pos
], 1 + total
);
2547 isl_int_sub_ui(bmap
->ineq
[pos
][0], bmap
->ineq
[pos
][0], 1);
2548 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2552 __isl_give isl_set
*isl_set_alloc_space(__isl_take isl_space
*dim
, int n
,
2555 struct isl_set
*set
;
2559 isl_assert(dim
->ctx
, dim
->n_in
== 0, goto error
);
2560 isl_assert(dim
->ctx
, n
>= 0, goto error
);
2561 set
= isl_alloc(dim
->ctx
, struct isl_set
,
2562 sizeof(struct isl_set
) +
2563 (n
- 1) * sizeof(struct isl_basic_set
*));
2567 set
->ctx
= dim
->ctx
;
2568 isl_ctx_ref(set
->ctx
);
2576 isl_space_free(dim
);
2580 struct isl_set
*isl_set_alloc(struct isl_ctx
*ctx
,
2581 unsigned nparam
, unsigned dim
, int n
, unsigned flags
)
2583 struct isl_set
*set
;
2586 dims
= isl_space_alloc(ctx
, nparam
, 0, dim
);
2590 set
= isl_set_alloc_space(dims
, n
, flags
);
2594 /* Make sure "map" has room for at least "n" more basic maps.
2596 struct isl_map
*isl_map_grow(struct isl_map
*map
, int n
)
2599 struct isl_map
*grown
= NULL
;
2603 isl_assert(map
->ctx
, n
>= 0, goto error
);
2604 if (map
->n
+ n
<= map
->size
)
2606 grown
= isl_map_alloc_space(isl_map_get_space(map
), map
->n
+ n
, map
->flags
);
2609 for (i
= 0; i
< map
->n
; ++i
) {
2610 grown
->p
[i
] = isl_basic_map_copy(map
->p
[i
]);
2618 isl_map_free(grown
);
2623 /* Make sure "set" has room for at least "n" more basic sets.
2625 struct isl_set
*isl_set_grow(struct isl_set
*set
, int n
)
2627 return (struct isl_set
*)isl_map_grow((struct isl_map
*)set
, n
);
2630 struct isl_set
*isl_set_dup(struct isl_set
*set
)
2633 struct isl_set
*dup
;
2638 dup
= isl_set_alloc_space(isl_space_copy(set
->dim
), set
->n
, set
->flags
);
2641 for (i
= 0; i
< set
->n
; ++i
)
2642 dup
= isl_set_add_basic_set(dup
, isl_basic_set_copy(set
->p
[i
]));
2646 struct isl_set
*isl_set_from_basic_set(struct isl_basic_set
*bset
)
2648 return isl_map_from_basic_map(bset
);
2651 struct isl_map
*isl_map_from_basic_map(struct isl_basic_map
*bmap
)
2653 struct isl_map
*map
;
2658 map
= isl_map_alloc_space(isl_space_copy(bmap
->dim
), 1, ISL_MAP_DISJOINT
);
2659 return isl_map_add_basic_map(map
, bmap
);
2662 __isl_give isl_set
*isl_set_add_basic_set(__isl_take isl_set
*set
,
2663 __isl_take isl_basic_set
*bset
)
2665 return (struct isl_set
*)isl_map_add_basic_map((struct isl_map
*)set
,
2666 (struct isl_basic_map
*)bset
);
2669 __isl_null isl_set
*isl_set_free(__isl_take isl_set
*set
)
2679 isl_ctx_deref(set
->ctx
);
2680 for (i
= 0; i
< set
->n
; ++i
)
2681 isl_basic_set_free(set
->p
[i
]);
2682 isl_space_free(set
->dim
);
2688 void isl_set_print_internal(struct isl_set
*set
, FILE *out
, int indent
)
2693 fprintf(out
, "null set\n");
2697 fprintf(out
, "%*s", indent
, "");
2698 fprintf(out
, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
2699 set
->ref
, set
->n
, set
->dim
->nparam
, set
->dim
->n_out
,
2701 for (i
= 0; i
< set
->n
; ++i
) {
2702 fprintf(out
, "%*s", indent
, "");
2703 fprintf(out
, "basic set %d:\n", i
);
2704 isl_basic_set_print_internal(set
->p
[i
], out
, indent
+4);
2708 void isl_map_print_internal(struct isl_map
*map
, FILE *out
, int indent
)
2713 fprintf(out
, "null map\n");
2717 fprintf(out
, "%*s", indent
, "");
2718 fprintf(out
, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
2719 "flags: %x, n_name: %d\n",
2720 map
->ref
, map
->n
, map
->dim
->nparam
, map
->dim
->n_in
,
2721 map
->dim
->n_out
, map
->flags
, map
->dim
->n_id
);
2722 for (i
= 0; i
< map
->n
; ++i
) {
2723 fprintf(out
, "%*s", indent
, "");
2724 fprintf(out
, "basic map %d:\n", i
);
2725 isl_basic_map_print_internal(map
->p
[i
], out
, indent
+4);
2729 struct isl_basic_map
*isl_basic_map_intersect_domain(
2730 struct isl_basic_map
*bmap
, struct isl_basic_set
*bset
)
2732 struct isl_basic_map
*bmap_domain
;
2737 isl_assert(bset
->ctx
, isl_space_match(bmap
->dim
, isl_dim_param
,
2738 bset
->dim
, isl_dim_param
), goto error
);
2740 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0)
2741 isl_assert(bset
->ctx
,
2742 isl_basic_map_compatible_domain(bmap
, bset
), goto error
);
2744 bmap
= isl_basic_map_cow(bmap
);
2747 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
2748 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
2749 bmap_domain
= isl_basic_map_from_domain(bset
);
2750 bmap
= add_constraints(bmap
, bmap_domain
, 0, 0);
2752 bmap
= isl_basic_map_simplify(bmap
);
2753 return isl_basic_map_finalize(bmap
);
2755 isl_basic_map_free(bmap
);
2756 isl_basic_set_free(bset
);
2760 struct isl_basic_map
*isl_basic_map_intersect_range(
2761 struct isl_basic_map
*bmap
, struct isl_basic_set
*bset
)
2763 struct isl_basic_map
*bmap_range
;
2768 isl_assert(bset
->ctx
, isl_space_match(bmap
->dim
, isl_dim_param
,
2769 bset
->dim
, isl_dim_param
), goto error
);
2771 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0)
2772 isl_assert(bset
->ctx
,
2773 isl_basic_map_compatible_range(bmap
, bset
), goto error
);
2775 if (isl_basic_set_is_universe(bset
)) {
2776 isl_basic_set_free(bset
);
2780 bmap
= isl_basic_map_cow(bmap
);
2783 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
2784 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
2785 bmap_range
= isl_basic_map_from_basic_set(bset
, isl_space_copy(bset
->dim
));
2786 bmap
= add_constraints(bmap
, bmap_range
, 0, 0);
2788 bmap
= isl_basic_map_simplify(bmap
);
2789 return isl_basic_map_finalize(bmap
);
2791 isl_basic_map_free(bmap
);
2792 isl_basic_set_free(bset
);
2796 isl_bool
isl_basic_map_contains(__isl_keep isl_basic_map
*bmap
,
2797 __isl_keep isl_vec
*vec
)
2804 return isl_bool_error
;
2806 total
= 1 + isl_basic_map_total_dim(bmap
);
2807 if (total
!= vec
->size
)
2808 return isl_bool_error
;
2812 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
2813 isl_seq_inner_product(vec
->el
, bmap
->eq
[i
], total
, &s
);
2814 if (!isl_int_is_zero(s
)) {
2816 return isl_bool_false
;
2820 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
2821 isl_seq_inner_product(vec
->el
, bmap
->ineq
[i
], total
, &s
);
2822 if (isl_int_is_neg(s
)) {
2824 return isl_bool_false
;
2830 return isl_bool_true
;
2833 isl_bool
isl_basic_set_contains(__isl_keep isl_basic_set
*bset
,
2834 __isl_keep isl_vec
*vec
)
2836 return isl_basic_map_contains((struct isl_basic_map
*)bset
, vec
);
2839 struct isl_basic_map
*isl_basic_map_intersect(
2840 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
2842 struct isl_vec
*sample
= NULL
;
2844 if (!bmap1
|| !bmap2
)
2847 isl_assert(bmap1
->ctx
, isl_space_match(bmap1
->dim
, isl_dim_param
,
2848 bmap2
->dim
, isl_dim_param
), goto error
);
2849 if (isl_space_dim(bmap1
->dim
, isl_dim_all
) ==
2850 isl_space_dim(bmap1
->dim
, isl_dim_param
) &&
2851 isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
2852 isl_space_dim(bmap2
->dim
, isl_dim_param
))
2853 return isl_basic_map_intersect(bmap2
, bmap1
);
2855 if (isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
2856 isl_space_dim(bmap2
->dim
, isl_dim_param
))
2857 isl_assert(bmap1
->ctx
,
2858 isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
2860 if (bmap1
->sample
&&
2861 isl_basic_map_contains(bmap1
, bmap1
->sample
) > 0 &&
2862 isl_basic_map_contains(bmap2
, bmap1
->sample
) > 0)
2863 sample
= isl_vec_copy(bmap1
->sample
);
2864 else if (bmap2
->sample
&&
2865 isl_basic_map_contains(bmap1
, bmap2
->sample
) > 0 &&
2866 isl_basic_map_contains(bmap2
, bmap2
->sample
) > 0)
2867 sample
= isl_vec_copy(bmap2
->sample
);
2869 bmap1
= isl_basic_map_cow(bmap1
);
2872 bmap1
= isl_basic_map_extend_space(bmap1
, isl_space_copy(bmap1
->dim
),
2873 bmap2
->n_div
, bmap2
->n_eq
, bmap2
->n_ineq
);
2874 bmap1
= add_constraints(bmap1
, bmap2
, 0, 0);
2877 isl_vec_free(sample
);
2879 isl_vec_free(bmap1
->sample
);
2880 bmap1
->sample
= sample
;
2883 bmap1
= isl_basic_map_simplify(bmap1
);
2884 return isl_basic_map_finalize(bmap1
);
2887 isl_vec_free(sample
);
2888 isl_basic_map_free(bmap1
);
2889 isl_basic_map_free(bmap2
);
2893 struct isl_basic_set
*isl_basic_set_intersect(
2894 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
2896 return (struct isl_basic_set
*)
2897 isl_basic_map_intersect(
2898 (struct isl_basic_map
*)bset1
,
2899 (struct isl_basic_map
*)bset2
);
2902 __isl_give isl_basic_set
*isl_basic_set_intersect_params(
2903 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
2905 return isl_basic_set_intersect(bset1
, bset2
);
2908 /* Special case of isl_map_intersect, where both map1 and map2
2909 * are convex, without any divs and such that either map1 or map2
2910 * contains a single constraint. This constraint is then simply
2911 * added to the other map.
2913 static __isl_give isl_map
*map_intersect_add_constraint(
2914 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
)
2916 isl_assert(map1
->ctx
, map1
->n
== 1, goto error
);
2917 isl_assert(map2
->ctx
, map1
->n
== 1, goto error
);
2918 isl_assert(map1
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
2919 isl_assert(map2
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
2921 if (map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
!= 1)
2922 return isl_map_intersect(map2
, map1
);
2924 isl_assert(map2
->ctx
,
2925 map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
== 1, goto error
);
2927 map1
= isl_map_cow(map1
);
2930 if (isl_map_plain_is_empty(map1
)) {
2934 map1
->p
[0] = isl_basic_map_cow(map1
->p
[0]);
2935 if (map2
->p
[0]->n_eq
== 1)
2936 map1
->p
[0] = isl_basic_map_add_eq(map1
->p
[0], map2
->p
[0]->eq
[0]);
2938 map1
->p
[0] = isl_basic_map_add_ineq(map1
->p
[0],
2939 map2
->p
[0]->ineq
[0]);
2941 map1
->p
[0] = isl_basic_map_simplify(map1
->p
[0]);
2942 map1
->p
[0] = isl_basic_map_finalize(map1
->p
[0]);
2946 if (isl_basic_map_plain_is_empty(map1
->p
[0])) {
2947 isl_basic_map_free(map1
->p
[0]);
2960 /* map2 may be either a parameter domain or a map living in the same
2963 static __isl_give isl_map
*map_intersect_internal(__isl_take isl_map
*map1
,
2964 __isl_take isl_map
*map2
)
2973 if ((isl_map_plain_is_empty(map1
) ||
2974 isl_map_plain_is_universe(map2
)) &&
2975 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
2979 if ((isl_map_plain_is_empty(map2
) ||
2980 isl_map_plain_is_universe(map1
)) &&
2981 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
2986 if (map1
->n
== 1 && map2
->n
== 1 &&
2987 map1
->p
[0]->n_div
== 0 && map2
->p
[0]->n_div
== 0 &&
2988 isl_space_is_equal(map1
->dim
, map2
->dim
) &&
2989 (map1
->p
[0]->n_eq
+ map1
->p
[0]->n_ineq
== 1 ||
2990 map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
== 1))
2991 return map_intersect_add_constraint(map1
, map2
);
2993 if (isl_space_dim(map2
->dim
, isl_dim_all
) !=
2994 isl_space_dim(map2
->dim
, isl_dim_param
))
2995 isl_assert(map1
->ctx
,
2996 isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
2998 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
2999 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
3000 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
3002 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
3003 map1
->n
* map2
->n
, flags
);
3006 for (i
= 0; i
< map1
->n
; ++i
)
3007 for (j
= 0; j
< map2
->n
; ++j
) {
3008 struct isl_basic_map
*part
;
3009 part
= isl_basic_map_intersect(
3010 isl_basic_map_copy(map1
->p
[i
]),
3011 isl_basic_map_copy(map2
->p
[j
]));
3012 if (isl_basic_map_is_empty(part
) < 0)
3013 part
= isl_basic_map_free(part
);
3014 result
= isl_map_add_basic_map(result
, part
);
3027 static __isl_give isl_map
*map_intersect(__isl_take isl_map
*map1
,
3028 __isl_take isl_map
*map2
)
3032 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
3033 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
3034 "spaces don't match", goto error
);
3035 return map_intersect_internal(map1
, map2
);
3042 __isl_give isl_map
*isl_map_intersect(__isl_take isl_map
*map1
,
3043 __isl_take isl_map
*map2
)
3045 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect
);
3048 struct isl_set
*isl_set_intersect(struct isl_set
*set1
, struct isl_set
*set2
)
3050 return (struct isl_set
*)
3051 isl_map_intersect((struct isl_map
*)set1
,
3052 (struct isl_map
*)set2
);
3055 /* map_intersect_internal accepts intersections
3056 * with parameter domains, so we can just call that function.
3058 static __isl_give isl_map
*map_intersect_params(__isl_take isl_map
*map
,
3059 __isl_take isl_set
*params
)
3061 return map_intersect_internal(map
, params
);
3064 __isl_give isl_map
*isl_map_intersect_params(__isl_take isl_map
*map1
,
3065 __isl_take isl_map
*map2
)
3067 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect_params
);
3070 __isl_give isl_set
*isl_set_intersect_params(__isl_take isl_set
*set
,
3071 __isl_take isl_set
*params
)
3073 return isl_map_intersect_params(set
, params
);
3076 struct isl_basic_map
*isl_basic_map_reverse(struct isl_basic_map
*bmap
)
3079 unsigned pos
, n1
, n2
;
3083 bmap
= isl_basic_map_cow(bmap
);
3086 space
= isl_space_reverse(isl_space_copy(bmap
->dim
));
3087 pos
= isl_basic_map_offset(bmap
, isl_dim_in
);
3088 n1
= isl_basic_map_dim(bmap
, isl_dim_in
);
3089 n2
= isl_basic_map_dim(bmap
, isl_dim_out
);
3090 bmap
= isl_basic_map_swap_vars(bmap
, pos
, n1
, n2
);
3091 return isl_basic_map_reset_space(bmap
, space
);
3094 static __isl_give isl_basic_map
*basic_map_space_reset(
3095 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
)
3101 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
3104 space
= isl_basic_map_get_space(bmap
);
3105 space
= isl_space_reset(space
, type
);
3106 bmap
= isl_basic_map_reset_space(bmap
, space
);
3110 __isl_give isl_basic_map
*isl_basic_map_insert_dims(
3111 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
3112 unsigned pos
, unsigned n
)
3115 struct isl_basic_map
*res
;
3116 struct isl_dim_map
*dim_map
;
3117 unsigned total
, off
;
3118 enum isl_dim_type t
;
3121 return basic_map_space_reset(bmap
, type
);
3126 res_dim
= isl_space_insert_dims(isl_basic_map_get_space(bmap
), type
, pos
, n
);
3128 total
= isl_basic_map_total_dim(bmap
) + n
;
3129 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3131 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3133 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3135 unsigned size
= isl_basic_map_dim(bmap
, t
);
3136 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3138 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3139 pos
, size
- pos
, off
+ pos
+ n
);
3141 off
+= isl_space_dim(res_dim
, t
);
3143 isl_dim_map_div(dim_map
, bmap
, off
);
3145 res
= isl_basic_map_alloc_space(res_dim
,
3146 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3147 if (isl_basic_map_is_rational(bmap
))
3148 res
= isl_basic_map_set_rational(res
);
3149 if (isl_basic_map_plain_is_empty(bmap
)) {
3150 isl_basic_map_free(bmap
);
3152 return isl_basic_map_set_to_empty(res
);
3154 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3155 return isl_basic_map_finalize(res
);
3158 __isl_give isl_basic_set
*isl_basic_set_insert_dims(
3159 __isl_take isl_basic_set
*bset
,
3160 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3162 return isl_basic_map_insert_dims(bset
, type
, pos
, n
);
3165 __isl_give isl_basic_map
*isl_basic_map_add_dims(__isl_take isl_basic_map
*bmap
,
3166 enum isl_dim_type type
, unsigned n
)
3170 return isl_basic_map_insert_dims(bmap
, type
,
3171 isl_basic_map_dim(bmap
, type
), n
);
3174 __isl_give isl_basic_set
*isl_basic_set_add_dims(__isl_take isl_basic_set
*bset
,
3175 enum isl_dim_type type
, unsigned n
)
3179 isl_assert(bset
->ctx
, type
!= isl_dim_in
, goto error
);
3180 return isl_basic_map_add_dims(bset
, type
, n
);
3182 isl_basic_set_free(bset
);
3186 static __isl_give isl_map
*map_space_reset(__isl_take isl_map
*map
,
3187 enum isl_dim_type type
)
3191 if (!map
|| !isl_space_is_named_or_nested(map
->dim
, type
))
3194 space
= isl_map_get_space(map
);
3195 space
= isl_space_reset(space
, type
);
3196 map
= isl_map_reset_space(map
, space
);
3200 __isl_give isl_map
*isl_map_insert_dims(__isl_take isl_map
*map
,
3201 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3206 return map_space_reset(map
, type
);
3208 map
= isl_map_cow(map
);
3212 map
->dim
= isl_space_insert_dims(map
->dim
, type
, pos
, n
);
3216 for (i
= 0; i
< map
->n
; ++i
) {
3217 map
->p
[i
] = isl_basic_map_insert_dims(map
->p
[i
], type
, pos
, n
);
3228 __isl_give isl_set
*isl_set_insert_dims(__isl_take isl_set
*set
,
3229 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3231 return isl_map_insert_dims(set
, type
, pos
, n
);
3234 __isl_give isl_map
*isl_map_add_dims(__isl_take isl_map
*map
,
3235 enum isl_dim_type type
, unsigned n
)
3239 return isl_map_insert_dims(map
, type
, isl_map_dim(map
, type
), n
);
3242 __isl_give isl_set
*isl_set_add_dims(__isl_take isl_set
*set
,
3243 enum isl_dim_type type
, unsigned n
)
3247 isl_assert(set
->ctx
, type
!= isl_dim_in
, goto error
);
3248 return (isl_set
*)isl_map_add_dims((isl_map
*)set
, type
, n
);
3254 __isl_give isl_basic_map
*isl_basic_map_move_dims(
3255 __isl_take isl_basic_map
*bmap
,
3256 enum isl_dim_type dst_type
, unsigned dst_pos
,
3257 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3259 struct isl_dim_map
*dim_map
;
3260 struct isl_basic_map
*res
;
3261 enum isl_dim_type t
;
3262 unsigned total
, off
;
3269 isl_assert(bmap
->ctx
, src_pos
+ n
<= isl_basic_map_dim(bmap
, src_type
),
3272 if (dst_type
== src_type
&& dst_pos
== src_pos
)
3275 isl_assert(bmap
->ctx
, dst_type
!= src_type
, goto error
);
3277 if (pos(bmap
->dim
, dst_type
) + dst_pos
==
3278 pos(bmap
->dim
, src_type
) + src_pos
+
3279 ((src_type
< dst_type
) ? n
: 0)) {
3280 bmap
= isl_basic_map_cow(bmap
);
3284 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
3285 src_type
, src_pos
, n
);
3289 bmap
= isl_basic_map_finalize(bmap
);
3294 total
= isl_basic_map_total_dim(bmap
);
3295 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3298 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3299 unsigned size
= isl_space_dim(bmap
->dim
, t
);
3300 if (t
== dst_type
) {
3301 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3304 isl_dim_map_dim_range(dim_map
, bmap
->dim
, src_type
,
3307 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3308 dst_pos
, size
- dst_pos
, off
);
3309 off
+= size
- dst_pos
;
3310 } else if (t
== src_type
) {
3311 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3314 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3315 src_pos
+ n
, size
- src_pos
- n
, off
);
3316 off
+= size
- src_pos
- n
;
3318 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3322 isl_dim_map_div(dim_map
, bmap
, off
);
3324 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
3325 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3326 bmap
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3330 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
3331 src_type
, src_pos
, n
);
3335 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
3336 bmap
= isl_basic_map_gauss(bmap
, NULL
);
3337 bmap
= isl_basic_map_finalize(bmap
);
3341 isl_basic_map_free(bmap
);
3345 __isl_give isl_basic_set
*isl_basic_set_move_dims(__isl_take isl_basic_set
*bset
,
3346 enum isl_dim_type dst_type
, unsigned dst_pos
,
3347 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3349 return (isl_basic_set
*)isl_basic_map_move_dims(
3350 (isl_basic_map
*)bset
, dst_type
, dst_pos
, src_type
, src_pos
, n
);
3353 __isl_give isl_set
*isl_set_move_dims(__isl_take isl_set
*set
,
3354 enum isl_dim_type dst_type
, unsigned dst_pos
,
3355 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3359 isl_assert(set
->ctx
, dst_type
!= isl_dim_in
, goto error
);
3360 return (isl_set
*)isl_map_move_dims((isl_map
*)set
, dst_type
, dst_pos
,
3361 src_type
, src_pos
, n
);
3367 __isl_give isl_map
*isl_map_move_dims(__isl_take isl_map
*map
,
3368 enum isl_dim_type dst_type
, unsigned dst_pos
,
3369 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3378 isl_assert(map
->ctx
, src_pos
+ n
<= isl_map_dim(map
, src_type
),
3381 if (dst_type
== src_type
&& dst_pos
== src_pos
)
3384 isl_assert(map
->ctx
, dst_type
!= src_type
, goto error
);
3386 map
= isl_map_cow(map
);
3390 map
->dim
= isl_space_move_dims(map
->dim
, dst_type
, dst_pos
, src_type
, src_pos
, n
);
3394 for (i
= 0; i
< map
->n
; ++i
) {
3395 map
->p
[i
] = isl_basic_map_move_dims(map
->p
[i
],
3397 src_type
, src_pos
, n
);
3408 /* Move the specified dimensions to the last columns right before
3409 * the divs. Don't change the dimension specification of bmap.
3410 * That's the responsibility of the caller.
3412 static __isl_give isl_basic_map
*move_last(__isl_take isl_basic_map
*bmap
,
3413 enum isl_dim_type type
, unsigned first
, unsigned n
)
3415 struct isl_dim_map
*dim_map
;
3416 struct isl_basic_map
*res
;
3417 enum isl_dim_type t
;
3418 unsigned total
, off
;
3422 if (pos(bmap
->dim
, type
) + first
+ n
==
3423 1 + isl_space_dim(bmap
->dim
, isl_dim_all
))
3426 total
= isl_basic_map_total_dim(bmap
);
3427 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3430 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3431 unsigned size
= isl_space_dim(bmap
->dim
, t
);
3433 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3436 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3437 first
, n
, total
- bmap
->n_div
- n
);
3438 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3439 first
+ n
, size
- (first
+ n
), off
);
3440 off
+= size
- (first
+ n
);
3442 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3446 isl_dim_map_div(dim_map
, bmap
, off
+ n
);
3448 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
3449 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3450 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3454 /* Insert "n" rows in the divs of "bmap".
3456 * The number of columns is not changed, which means that the last
3457 * dimensions of "bmap" are being reintepreted as the new divs.
3458 * The space of "bmap" is not adjusted, however, which means
3459 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
3460 * from the space of "bmap" is the responsibility of the caller.
3462 static __isl_give isl_basic_map
*insert_div_rows(__isl_take isl_basic_map
*bmap
,
3470 bmap
= isl_basic_map_cow(bmap
);
3474 row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + bmap
->extra
;
3475 old
= bmap
->block2
.data
;
3476 bmap
->block2
= isl_blk_extend(bmap
->ctx
, bmap
->block2
,
3477 (bmap
->extra
+ n
) * (1 + row_size
));
3478 if (!bmap
->block2
.data
)
3479 return isl_basic_map_free(bmap
);
3480 new_div
= isl_alloc_array(bmap
->ctx
, isl_int
*, bmap
->extra
+ n
);
3482 return isl_basic_map_free(bmap
);
3483 for (i
= 0; i
< n
; ++i
) {
3484 new_div
[i
] = bmap
->block2
.data
+
3485 (bmap
->extra
+ i
) * (1 + row_size
);
3486 isl_seq_clr(new_div
[i
], 1 + row_size
);
3488 for (i
= 0; i
< bmap
->extra
; ++i
)
3489 new_div
[n
+ i
] = bmap
->block2
.data
+ (bmap
->div
[i
] - old
);
3491 bmap
->div
= new_div
;
3498 /* Turn the n dimensions of type type, starting at first
3499 * into existentially quantified variables.
3501 __isl_give isl_basic_map
*isl_basic_map_project_out(
3502 __isl_take isl_basic_map
*bmap
,
3503 enum isl_dim_type type
, unsigned first
, unsigned n
)
3506 return basic_map_space_reset(bmap
, type
);
3511 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
3512 return isl_basic_map_remove_dims(bmap
, type
, first
, n
);
3514 isl_assert(bmap
->ctx
, first
+ n
<= isl_basic_map_dim(bmap
, type
),
3517 bmap
= move_last(bmap
, type
, first
, n
);
3518 bmap
= isl_basic_map_cow(bmap
);
3519 bmap
= insert_div_rows(bmap
, n
);
3523 bmap
->dim
= isl_space_drop_dims(bmap
->dim
, type
, first
, n
);
3526 bmap
= isl_basic_map_simplify(bmap
);
3527 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
3528 return isl_basic_map_finalize(bmap
);
3530 isl_basic_map_free(bmap
);
3534 /* Turn the n dimensions of type type, starting at first
3535 * into existentially quantified variables.
3537 struct isl_basic_set
*isl_basic_set_project_out(struct isl_basic_set
*bset
,
3538 enum isl_dim_type type
, unsigned first
, unsigned n
)
3540 return (isl_basic_set
*)isl_basic_map_project_out(
3541 (isl_basic_map
*)bset
, type
, first
, n
);
3544 /* Turn the n dimensions of type type, starting at first
3545 * into existentially quantified variables.
3547 __isl_give isl_map
*isl_map_project_out(__isl_take isl_map
*map
,
3548 enum isl_dim_type type
, unsigned first
, unsigned n
)
3556 return map_space_reset(map
, type
);
3558 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
3560 map
= isl_map_cow(map
);
3564 map
->dim
= isl_space_drop_dims(map
->dim
, type
, first
, n
);
3568 for (i
= 0; i
< map
->n
; ++i
) {
3569 map
->p
[i
] = isl_basic_map_project_out(map
->p
[i
], type
, first
, n
);
3580 /* Turn the n dimensions of type type, starting at first
3581 * into existentially quantified variables.
3583 __isl_give isl_set
*isl_set_project_out(__isl_take isl_set
*set
,
3584 enum isl_dim_type type
, unsigned first
, unsigned n
)
3586 return (isl_set
*)isl_map_project_out((isl_map
*)set
, type
, first
, n
);
3589 static struct isl_basic_map
*add_divs(struct isl_basic_map
*bmap
, unsigned n
)
3593 for (i
= 0; i
< n
; ++i
) {
3594 j
= isl_basic_map_alloc_div(bmap
);
3597 isl_seq_clr(bmap
->div
[j
], 1+1+isl_basic_map_total_dim(bmap
));
3601 isl_basic_map_free(bmap
);
3605 struct isl_basic_map
*isl_basic_map_apply_range(
3606 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
3608 isl_space
*dim_result
= NULL
;
3609 struct isl_basic_map
*bmap
;
3610 unsigned n_in
, n_out
, n
, nparam
, total
, pos
;
3611 struct isl_dim_map
*dim_map1
, *dim_map2
;
3613 if (!bmap1
|| !bmap2
)
3615 if (!isl_space_match(bmap1
->dim
, isl_dim_param
,
3616 bmap2
->dim
, isl_dim_param
))
3617 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
3618 "parameters don't match", goto error
);
3619 if (!isl_space_tuple_is_equal(bmap1
->dim
, isl_dim_out
,
3620 bmap2
->dim
, isl_dim_in
))
3621 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
3622 "spaces don't match", goto error
);
3624 dim_result
= isl_space_join(isl_space_copy(bmap1
->dim
),
3625 isl_space_copy(bmap2
->dim
));
3627 n_in
= isl_basic_map_n_in(bmap1
);
3628 n_out
= isl_basic_map_n_out(bmap2
);
3629 n
= isl_basic_map_n_out(bmap1
);
3630 nparam
= isl_basic_map_n_param(bmap1
);
3632 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ n
;
3633 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
3634 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
3635 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
3636 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
3637 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
3638 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_in
);
3639 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_out
);
3640 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
3641 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
3642 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
3644 bmap
= isl_basic_map_alloc_space(dim_result
,
3645 bmap1
->n_div
+ bmap2
->n_div
+ n
,
3646 bmap1
->n_eq
+ bmap2
->n_eq
,
3647 bmap1
->n_ineq
+ bmap2
->n_ineq
);
3648 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
3649 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
3650 bmap
= add_divs(bmap
, n
);
3651 bmap
= isl_basic_map_simplify(bmap
);
3652 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
3653 return isl_basic_map_finalize(bmap
);
3655 isl_basic_map_free(bmap1
);
3656 isl_basic_map_free(bmap2
);
3660 struct isl_basic_set
*isl_basic_set_apply(
3661 struct isl_basic_set
*bset
, struct isl_basic_map
*bmap
)
3666 isl_assert(bset
->ctx
, isl_basic_map_compatible_domain(bmap
, bset
),
3669 return (struct isl_basic_set
*)
3670 isl_basic_map_apply_range((struct isl_basic_map
*)bset
, bmap
);
3672 isl_basic_set_free(bset
);
3673 isl_basic_map_free(bmap
);
3677 struct isl_basic_map
*isl_basic_map_apply_domain(
3678 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
3680 if (!bmap1
|| !bmap2
)
3683 isl_assert(bmap1
->ctx
,
3684 isl_basic_map_n_in(bmap1
) == isl_basic_map_n_in(bmap2
), goto error
);
3685 isl_assert(bmap1
->ctx
,
3686 isl_basic_map_n_param(bmap1
) == isl_basic_map_n_param(bmap2
),
3689 bmap1
= isl_basic_map_reverse(bmap1
);
3690 bmap1
= isl_basic_map_apply_range(bmap1
, bmap2
);
3691 return isl_basic_map_reverse(bmap1
);
3693 isl_basic_map_free(bmap1
);
3694 isl_basic_map_free(bmap2
);
3698 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
3699 * A \cap B -> f(A) + f(B)
3701 struct isl_basic_map
*isl_basic_map_sum(
3702 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
3704 unsigned n_in
, n_out
, nparam
, total
, pos
;
3705 struct isl_basic_map
*bmap
= NULL
;
3706 struct isl_dim_map
*dim_map1
, *dim_map2
;
3709 if (!bmap1
|| !bmap2
)
3712 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
),
3715 nparam
= isl_basic_map_n_param(bmap1
);
3716 n_in
= isl_basic_map_n_in(bmap1
);
3717 n_out
= isl_basic_map_n_out(bmap1
);
3719 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
;
3720 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
3721 dim_map2
= isl_dim_map_alloc(bmap2
->ctx
, total
);
3722 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
3723 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
);
3724 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
3725 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
3726 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_in
+ n_out
);
3727 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
3728 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
3729 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_out
);
3731 bmap
= isl_basic_map_alloc_space(isl_space_copy(bmap1
->dim
),
3732 bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
,
3733 bmap1
->n_eq
+ bmap2
->n_eq
+ n_out
,
3734 bmap1
->n_ineq
+ bmap2
->n_ineq
);
3735 for (i
= 0; i
< n_out
; ++i
) {
3736 int j
= isl_basic_map_alloc_equality(bmap
);
3739 isl_seq_clr(bmap
->eq
[j
], 1+total
);
3740 isl_int_set_si(bmap
->eq
[j
][1+nparam
+n_in
+i
], -1);
3741 isl_int_set_si(bmap
->eq
[j
][1+pos
+i
], 1);
3742 isl_int_set_si(bmap
->eq
[j
][1+pos
-n_out
+i
], 1);
3744 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
3745 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
3746 bmap
= add_divs(bmap
, 2 * n_out
);
3748 bmap
= isl_basic_map_simplify(bmap
);
3749 return isl_basic_map_finalize(bmap
);
3751 isl_basic_map_free(bmap
);
3752 isl_basic_map_free(bmap1
);
3753 isl_basic_map_free(bmap2
);
3757 /* Given two maps A -> f(A) and B -> g(B), construct a map
3758 * A \cap B -> f(A) + f(B)
3760 struct isl_map
*isl_map_sum(struct isl_map
*map1
, struct isl_map
*map2
)
3762 struct isl_map
*result
;
3768 isl_assert(map1
->ctx
, isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
3770 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
3771 map1
->n
* map2
->n
, 0);
3774 for (i
= 0; i
< map1
->n
; ++i
)
3775 for (j
= 0; j
< map2
->n
; ++j
) {
3776 struct isl_basic_map
*part
;
3777 part
= isl_basic_map_sum(
3778 isl_basic_map_copy(map1
->p
[i
]),
3779 isl_basic_map_copy(map2
->p
[j
]));
3780 if (isl_basic_map_is_empty(part
))
3781 isl_basic_map_free(part
);
3783 result
= isl_map_add_basic_map(result
, part
);
3796 __isl_give isl_set
*isl_set_sum(__isl_take isl_set
*set1
,
3797 __isl_take isl_set
*set2
)
3799 return (isl_set
*)isl_map_sum((isl_map
*)set1
, (isl_map
*)set2
);
3802 /* Given a basic map A -> f(A), construct A -> -f(A).
3804 struct isl_basic_map
*isl_basic_map_neg(struct isl_basic_map
*bmap
)
3809 bmap
= isl_basic_map_cow(bmap
);
3813 n
= isl_basic_map_dim(bmap
, isl_dim_out
);
3814 off
= isl_basic_map_offset(bmap
, isl_dim_out
);
3815 for (i
= 0; i
< bmap
->n_eq
; ++i
)
3816 for (j
= 0; j
< n
; ++j
)
3817 isl_int_neg(bmap
->eq
[i
][off
+j
], bmap
->eq
[i
][off
+j
]);
3818 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
3819 for (j
= 0; j
< n
; ++j
)
3820 isl_int_neg(bmap
->ineq
[i
][off
+j
], bmap
->ineq
[i
][off
+j
]);
3821 for (i
= 0; i
< bmap
->n_div
; ++i
)
3822 for (j
= 0; j
< n
; ++j
)
3823 isl_int_neg(bmap
->div
[i
][1+off
+j
], bmap
->div
[i
][1+off
+j
]);
3824 bmap
= isl_basic_map_gauss(bmap
, NULL
);
3825 return isl_basic_map_finalize(bmap
);
3828 __isl_give isl_basic_set
*isl_basic_set_neg(__isl_take isl_basic_set
*bset
)
3830 return isl_basic_map_neg(bset
);
3833 /* Given a map A -> f(A), construct A -> -f(A).
3835 struct isl_map
*isl_map_neg(struct isl_map
*map
)
3839 map
= isl_map_cow(map
);
3843 for (i
= 0; i
< map
->n
; ++i
) {
3844 map
->p
[i
] = isl_basic_map_neg(map
->p
[i
]);
3855 __isl_give isl_set
*isl_set_neg(__isl_take isl_set
*set
)
3857 return (isl_set
*)isl_map_neg((isl_map
*)set
);
3860 /* Given a basic map A -> f(A) and an integer d, construct a basic map
3861 * A -> floor(f(A)/d).
3863 struct isl_basic_map
*isl_basic_map_floordiv(struct isl_basic_map
*bmap
,
3866 unsigned n_in
, n_out
, nparam
, total
, pos
;
3867 struct isl_basic_map
*result
= NULL
;
3868 struct isl_dim_map
*dim_map
;
3874 nparam
= isl_basic_map_n_param(bmap
);
3875 n_in
= isl_basic_map_n_in(bmap
);
3876 n_out
= isl_basic_map_n_out(bmap
);
3878 total
= nparam
+ n_in
+ n_out
+ bmap
->n_div
+ n_out
;
3879 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3880 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_param
, pos
= 0);
3881 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_in
, pos
+= nparam
);
3882 isl_dim_map_div(dim_map
, bmap
, pos
+= n_in
+ n_out
);
3883 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_out
, pos
+= bmap
->n_div
);
3885 result
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
3886 bmap
->n_div
+ n_out
,
3887 bmap
->n_eq
, bmap
->n_ineq
+ 2 * n_out
);
3888 result
= isl_basic_map_add_constraints_dim_map(result
, bmap
, dim_map
);
3889 result
= add_divs(result
, n_out
);
3890 for (i
= 0; i
< n_out
; ++i
) {
3892 j
= isl_basic_map_alloc_inequality(result
);
3895 isl_seq_clr(result
->ineq
[j
], 1+total
);
3896 isl_int_neg(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
3897 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], 1);
3898 j
= isl_basic_map_alloc_inequality(result
);
3901 isl_seq_clr(result
->ineq
[j
], 1+total
);
3902 isl_int_set(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
3903 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], -1);
3904 isl_int_sub_ui(result
->ineq
[j
][0], d
, 1);
3907 result
= isl_basic_map_simplify(result
);
3908 return isl_basic_map_finalize(result
);
3910 isl_basic_map_free(result
);
3914 /* Given a map A -> f(A) and an integer d, construct a map
3915 * A -> floor(f(A)/d).
3917 struct isl_map
*isl_map_floordiv(struct isl_map
*map
, isl_int d
)
3921 map
= isl_map_cow(map
);
3925 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
3926 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
3927 for (i
= 0; i
< map
->n
; ++i
) {
3928 map
->p
[i
] = isl_basic_map_floordiv(map
->p
[i
], d
);
3939 /* Given a map A -> f(A) and an integer d, construct a map
3940 * A -> floor(f(A)/d).
3942 __isl_give isl_map
*isl_map_floordiv_val(__isl_take isl_map
*map
,
3943 __isl_take isl_val
*d
)
3947 if (!isl_val_is_int(d
))
3948 isl_die(isl_val_get_ctx(d
), isl_error_invalid
,
3949 "expecting integer denominator", goto error
);
3950 map
= isl_map_floordiv(map
, d
->n
);
3959 static struct isl_basic_map
*var_equal(struct isl_basic_map
*bmap
, unsigned pos
)
3965 i
= isl_basic_map_alloc_equality(bmap
);
3968 nparam
= isl_basic_map_n_param(bmap
);
3969 n_in
= isl_basic_map_n_in(bmap
);
3970 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
3971 isl_int_set_si(bmap
->eq
[i
][1+nparam
+pos
], -1);
3972 isl_int_set_si(bmap
->eq
[i
][1+nparam
+n_in
+pos
], 1);
3973 return isl_basic_map_finalize(bmap
);
3975 isl_basic_map_free(bmap
);
3979 /* Add a constraints to "bmap" expressing i_pos < o_pos
3981 static struct isl_basic_map
*var_less(struct isl_basic_map
*bmap
, unsigned pos
)
3987 i
= isl_basic_map_alloc_inequality(bmap
);
3990 nparam
= isl_basic_map_n_param(bmap
);
3991 n_in
= isl_basic_map_n_in(bmap
);
3992 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
3993 isl_int_set_si(bmap
->ineq
[i
][0], -1);
3994 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
3995 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
3996 return isl_basic_map_finalize(bmap
);
3998 isl_basic_map_free(bmap
);
4002 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4004 static __isl_give isl_basic_map
*var_less_or_equal(
4005 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4011 i
= isl_basic_map_alloc_inequality(bmap
);
4014 nparam
= isl_basic_map_n_param(bmap
);
4015 n_in
= isl_basic_map_n_in(bmap
);
4016 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4017 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
4018 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
4019 return isl_basic_map_finalize(bmap
);
4021 isl_basic_map_free(bmap
);
4025 /* Add a constraints to "bmap" expressing i_pos > o_pos
4027 static struct isl_basic_map
*var_more(struct isl_basic_map
*bmap
, unsigned pos
)
4033 i
= isl_basic_map_alloc_inequality(bmap
);
4036 nparam
= isl_basic_map_n_param(bmap
);
4037 n_in
= isl_basic_map_n_in(bmap
);
4038 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4039 isl_int_set_si(bmap
->ineq
[i
][0], -1);
4040 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4041 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4042 return isl_basic_map_finalize(bmap
);
4044 isl_basic_map_free(bmap
);
4048 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4050 static __isl_give isl_basic_map
*var_more_or_equal(
4051 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4057 i
= isl_basic_map_alloc_inequality(bmap
);
4060 nparam
= isl_basic_map_n_param(bmap
);
4061 n_in
= isl_basic_map_n_in(bmap
);
4062 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4063 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4064 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4065 return isl_basic_map_finalize(bmap
);
4067 isl_basic_map_free(bmap
);
4071 __isl_give isl_basic_map
*isl_basic_map_equal(
4072 __isl_take isl_space
*dim
, unsigned n_equal
)
4075 struct isl_basic_map
*bmap
;
4076 bmap
= isl_basic_map_alloc_space(dim
, 0, n_equal
, 0);
4079 for (i
= 0; i
< n_equal
&& bmap
; ++i
)
4080 bmap
= var_equal(bmap
, i
);
4081 return isl_basic_map_finalize(bmap
);
4084 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4086 __isl_give isl_basic_map
*isl_basic_map_less_at(__isl_take isl_space
*dim
,
4090 struct isl_basic_map
*bmap
;
4091 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4094 for (i
= 0; i
< pos
&& bmap
; ++i
)
4095 bmap
= var_equal(bmap
, i
);
4097 bmap
= var_less(bmap
, pos
);
4098 return isl_basic_map_finalize(bmap
);
4101 /* Return a relation on of dimension "dim" expressing i_[0..pos] <<= o_[0..pos]
4103 __isl_give isl_basic_map
*isl_basic_map_less_or_equal_at(
4104 __isl_take isl_space
*dim
, unsigned pos
)
4107 isl_basic_map
*bmap
;
4109 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4110 for (i
= 0; i
< pos
; ++i
)
4111 bmap
= var_equal(bmap
, i
);
4112 bmap
= var_less_or_equal(bmap
, pos
);
4113 return isl_basic_map_finalize(bmap
);
4116 /* Return a relation on pairs of sets of dimension "dim" expressing i_pos > o_pos
4118 __isl_give isl_basic_map
*isl_basic_map_more_at(__isl_take isl_space
*dim
,
4122 struct isl_basic_map
*bmap
;
4123 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4126 for (i
= 0; i
< pos
&& bmap
; ++i
)
4127 bmap
= var_equal(bmap
, i
);
4129 bmap
= var_more(bmap
, pos
);
4130 return isl_basic_map_finalize(bmap
);
4133 /* Return a relation on of dimension "dim" expressing i_[0..pos] >>= o_[0..pos]
4135 __isl_give isl_basic_map
*isl_basic_map_more_or_equal_at(
4136 __isl_take isl_space
*dim
, unsigned pos
)
4139 isl_basic_map
*bmap
;
4141 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4142 for (i
= 0; i
< pos
; ++i
)
4143 bmap
= var_equal(bmap
, i
);
4144 bmap
= var_more_or_equal(bmap
, pos
);
4145 return isl_basic_map_finalize(bmap
);
4148 static __isl_give isl_map
*map_lex_lte_first(__isl_take isl_space
*dims
,
4149 unsigned n
, int equal
)
4151 struct isl_map
*map
;
4154 if (n
== 0 && equal
)
4155 return isl_map_universe(dims
);
4157 map
= isl_map_alloc_space(isl_space_copy(dims
), n
, ISL_MAP_DISJOINT
);
4159 for (i
= 0; i
+ 1 < n
; ++i
)
4160 map
= isl_map_add_basic_map(map
,
4161 isl_basic_map_less_at(isl_space_copy(dims
), i
));
4164 map
= isl_map_add_basic_map(map
,
4165 isl_basic_map_less_or_equal_at(dims
, n
- 1));
4167 map
= isl_map_add_basic_map(map
,
4168 isl_basic_map_less_at(dims
, n
- 1));
4170 isl_space_free(dims
);
4175 static __isl_give isl_map
*map_lex_lte(__isl_take isl_space
*dims
, int equal
)
4179 return map_lex_lte_first(dims
, dims
->n_out
, equal
);
4182 __isl_give isl_map
*isl_map_lex_lt_first(__isl_take isl_space
*dim
, unsigned n
)
4184 return map_lex_lte_first(dim
, n
, 0);
4187 __isl_give isl_map
*isl_map_lex_le_first(__isl_take isl_space
*dim
, unsigned n
)
4189 return map_lex_lte_first(dim
, n
, 1);
4192 __isl_give isl_map
*isl_map_lex_lt(__isl_take isl_space
*set_dim
)
4194 return map_lex_lte(isl_space_map_from_set(set_dim
), 0);
4197 __isl_give isl_map
*isl_map_lex_le(__isl_take isl_space
*set_dim
)
4199 return map_lex_lte(isl_space_map_from_set(set_dim
), 1);
4202 static __isl_give isl_map
*map_lex_gte_first(__isl_take isl_space
*dims
,
4203 unsigned n
, int equal
)
4205 struct isl_map
*map
;
4208 if (n
== 0 && equal
)
4209 return isl_map_universe(dims
);
4211 map
= isl_map_alloc_space(isl_space_copy(dims
), n
, ISL_MAP_DISJOINT
);
4213 for (i
= 0; i
+ 1 < n
; ++i
)
4214 map
= isl_map_add_basic_map(map
,
4215 isl_basic_map_more_at(isl_space_copy(dims
), i
));
4218 map
= isl_map_add_basic_map(map
,
4219 isl_basic_map_more_or_equal_at(dims
, n
- 1));
4221 map
= isl_map_add_basic_map(map
,
4222 isl_basic_map_more_at(dims
, n
- 1));
4224 isl_space_free(dims
);
4229 static __isl_give isl_map
*map_lex_gte(__isl_take isl_space
*dims
, int equal
)
4233 return map_lex_gte_first(dims
, dims
->n_out
, equal
);
4236 __isl_give isl_map
*isl_map_lex_gt_first(__isl_take isl_space
*dim
, unsigned n
)
4238 return map_lex_gte_first(dim
, n
, 0);
4241 __isl_give isl_map
*isl_map_lex_ge_first(__isl_take isl_space
*dim
, unsigned n
)
4243 return map_lex_gte_first(dim
, n
, 1);
4246 __isl_give isl_map
*isl_map_lex_gt(__isl_take isl_space
*set_dim
)
4248 return map_lex_gte(isl_space_map_from_set(set_dim
), 0);
4251 __isl_give isl_map
*isl_map_lex_ge(__isl_take isl_space
*set_dim
)
4253 return map_lex_gte(isl_space_map_from_set(set_dim
), 1);
4256 __isl_give isl_map
*isl_set_lex_le_set(__isl_take isl_set
*set1
,
4257 __isl_take isl_set
*set2
)
4260 map
= isl_map_lex_le(isl_set_get_space(set1
));
4261 map
= isl_map_intersect_domain(map
, set1
);
4262 map
= isl_map_intersect_range(map
, set2
);
4266 __isl_give isl_map
*isl_set_lex_lt_set(__isl_take isl_set
*set1
,
4267 __isl_take isl_set
*set2
)
4270 map
= isl_map_lex_lt(isl_set_get_space(set1
));
4271 map
= isl_map_intersect_domain(map
, set1
);
4272 map
= isl_map_intersect_range(map
, set2
);
4276 __isl_give isl_map
*isl_set_lex_ge_set(__isl_take isl_set
*set1
,
4277 __isl_take isl_set
*set2
)
4280 map
= isl_map_lex_ge(isl_set_get_space(set1
));
4281 map
= isl_map_intersect_domain(map
, set1
);
4282 map
= isl_map_intersect_range(map
, set2
);
4286 __isl_give isl_map
*isl_set_lex_gt_set(__isl_take isl_set
*set1
,
4287 __isl_take isl_set
*set2
)
4290 map
= isl_map_lex_gt(isl_set_get_space(set1
));
4291 map
= isl_map_intersect_domain(map
, set1
);
4292 map
= isl_map_intersect_range(map
, set2
);
4296 __isl_give isl_map
*isl_map_lex_le_map(__isl_take isl_map
*map1
,
4297 __isl_take isl_map
*map2
)
4300 map
= isl_map_lex_le(isl_space_range(isl_map_get_space(map1
)));
4301 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4302 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4306 __isl_give isl_map
*isl_map_lex_lt_map(__isl_take isl_map
*map1
,
4307 __isl_take isl_map
*map2
)
4310 map
= isl_map_lex_lt(isl_space_range(isl_map_get_space(map1
)));
4311 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4312 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4316 __isl_give isl_map
*isl_map_lex_ge_map(__isl_take isl_map
*map1
,
4317 __isl_take isl_map
*map2
)
4320 map
= isl_map_lex_ge(isl_space_range(isl_map_get_space(map1
)));
4321 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4322 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4326 __isl_give isl_map
*isl_map_lex_gt_map(__isl_take isl_map
*map1
,
4327 __isl_take isl_map
*map2
)
4330 map
= isl_map_lex_gt(isl_space_range(isl_map_get_space(map1
)));
4331 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4332 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4336 __isl_give isl_basic_map
*isl_basic_map_from_basic_set(
4337 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*dim
)
4339 struct isl_basic_map
*bmap
;
4341 bset
= isl_basic_set_cow(bset
);
4345 isl_assert(bset
->ctx
, isl_space_compatible(bset
->dim
, dim
), goto error
);
4346 isl_space_free(bset
->dim
);
4347 bmap
= (struct isl_basic_map
*) bset
;
4349 return isl_basic_map_finalize(bmap
);
4351 isl_basic_set_free(bset
);
4352 isl_space_free(dim
);
4356 /* For a div d = floor(f/m), add the constraint
4360 static int add_upper_div_constraint(__isl_keep isl_basic_map
*bmap
,
4361 unsigned pos
, isl_int
*div
)
4364 unsigned total
= isl_basic_map_total_dim(bmap
);
4366 i
= isl_basic_map_alloc_inequality(bmap
);
4369 isl_seq_cpy(bmap
->ineq
[i
], div
+ 1, 1 + total
);
4370 isl_int_neg(bmap
->ineq
[i
][1 + pos
], div
[0]);
4375 /* For a div d = floor(f/m), add the constraint
4377 * -(f-(n-1)) + m d >= 0
4379 static int add_lower_div_constraint(__isl_keep isl_basic_map
*bmap
,
4380 unsigned pos
, isl_int
*div
)
4383 unsigned total
= isl_basic_map_total_dim(bmap
);
4385 i
= isl_basic_map_alloc_inequality(bmap
);
4388 isl_seq_neg(bmap
->ineq
[i
], div
+ 1, 1 + total
);
4389 isl_int_set(bmap
->ineq
[i
][1 + pos
], div
[0]);
4390 isl_int_add(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], bmap
->ineq
[i
][1 + pos
]);
4391 isl_int_sub_ui(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], 1);
4396 /* For a div d = floor(f/m), add the constraints
4399 * -(f-(n-1)) + m d >= 0
4401 * Note that the second constraint is the negation of
4405 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map
*bmap
,
4406 unsigned pos
, isl_int
*div
)
4408 if (add_upper_div_constraint(bmap
, pos
, div
) < 0)
4410 if (add_lower_div_constraint(bmap
, pos
, div
) < 0)
4415 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set
*bset
,
4416 unsigned pos
, isl_int
*div
)
4418 return isl_basic_map_add_div_constraints_var((isl_basic_map
*)bset
,
4422 int isl_basic_map_add_div_constraints(struct isl_basic_map
*bmap
, unsigned div
)
4424 unsigned total
= isl_basic_map_total_dim(bmap
);
4425 unsigned div_pos
= total
- bmap
->n_div
+ div
;
4427 return isl_basic_map_add_div_constraints_var(bmap
, div_pos
,
4431 /* For each known div d = floor(f/m), add the constraints
4434 * -(f-(n-1)) + m d >= 0
4436 __isl_give isl_basic_map
*isl_basic_map_add_known_div_constraints(
4437 __isl_take isl_basic_map
*bmap
)
4444 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
4447 bmap
= isl_basic_map_cow(bmap
);
4448 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 2 * n_div
);
4451 for (i
= 0; i
< n_div
; ++i
) {
4452 if (isl_int_is_zero(bmap
->div
[i
][0]))
4454 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
4455 return isl_basic_map_free(bmap
);
4458 bmap
= isl_basic_map_remove_duplicate_constraints(bmap
, NULL
, 0);
4459 bmap
= isl_basic_map_finalize(bmap
);
4463 /* Add the div constraint of sign "sign" for div "div" of "bmap".
4465 * In particular, if this div is of the form d = floor(f/m),
4466 * then add the constraint
4470 * if sign < 0 or the constraint
4472 * -(f-(n-1)) + m d >= 0
4476 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map
*bmap
,
4477 unsigned div
, int sign
)
4485 total
= isl_basic_map_total_dim(bmap
);
4486 div_pos
= total
- bmap
->n_div
+ div
;
4489 return add_upper_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
4491 return add_lower_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
4494 int isl_basic_set_add_div_constraints(struct isl_basic_set
*bset
, unsigned div
)
4496 return isl_basic_map_add_div_constraints(bset
, div
);
4499 struct isl_basic_set
*isl_basic_map_underlying_set(
4500 struct isl_basic_map
*bmap
)
4504 if (bmap
->dim
->nparam
== 0 && bmap
->dim
->n_in
== 0 &&
4506 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_in
) &&
4507 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_out
))
4508 return (struct isl_basic_set
*)bmap
;
4509 bmap
= isl_basic_map_cow(bmap
);
4512 bmap
->dim
= isl_space_underlying(bmap
->dim
, bmap
->n_div
);
4515 bmap
->extra
-= bmap
->n_div
;
4517 bmap
= isl_basic_map_finalize(bmap
);
4518 return (struct isl_basic_set
*)bmap
;
4520 isl_basic_map_free(bmap
);
4524 __isl_give isl_basic_set
*isl_basic_set_underlying_set(
4525 __isl_take isl_basic_set
*bset
)
4527 return isl_basic_map_underlying_set((isl_basic_map
*)bset
);
4530 /* Replace each element in "list" by the result of applying
4531 * isl_basic_map_underlying_set to the element.
4533 __isl_give isl_basic_set_list
*isl_basic_map_list_underlying_set(
4534 __isl_take isl_basic_map_list
*list
)
4541 n
= isl_basic_map_list_n_basic_map(list
);
4542 for (i
= 0; i
< n
; ++i
) {
4543 isl_basic_map
*bmap
;
4544 isl_basic_set
*bset
;
4546 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
4547 bset
= isl_basic_set_underlying_set(bmap
);
4548 list
= isl_basic_set_list_set_basic_set(list
, i
, bset
);
4554 struct isl_basic_map
*isl_basic_map_overlying_set(
4555 struct isl_basic_set
*bset
, struct isl_basic_map
*like
)
4557 struct isl_basic_map
*bmap
;
4558 struct isl_ctx
*ctx
;
4565 isl_assert(ctx
, bset
->n_div
== 0, goto error
);
4566 isl_assert(ctx
, isl_basic_set_n_param(bset
) == 0, goto error
);
4567 isl_assert(ctx
, bset
->dim
->n_out
== isl_basic_map_total_dim(like
),
4569 if (isl_space_is_equal(bset
->dim
, like
->dim
) && like
->n_div
== 0) {
4570 isl_basic_map_free(like
);
4571 return (struct isl_basic_map
*)bset
;
4573 bset
= isl_basic_set_cow(bset
);
4576 total
= bset
->dim
->n_out
+ bset
->extra
;
4577 bmap
= (struct isl_basic_map
*)bset
;
4578 isl_space_free(bmap
->dim
);
4579 bmap
->dim
= isl_space_copy(like
->dim
);
4582 bmap
->n_div
= like
->n_div
;
4583 bmap
->extra
+= like
->n_div
;
4587 ltotal
= total
- bmap
->extra
+ like
->extra
;
4590 bmap
->block2
= isl_blk_extend(ctx
, bmap
->block2
,
4591 bmap
->extra
* (1 + 1 + total
));
4592 if (isl_blk_is_error(bmap
->block2
))
4594 div
= isl_realloc_array(ctx
, bmap
->div
, isl_int
*, bmap
->extra
);
4598 for (i
= 0; i
< bmap
->extra
; ++i
)
4599 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + 1 + total
);
4600 for (i
= 0; i
< like
->n_div
; ++i
) {
4601 isl_seq_cpy(bmap
->div
[i
], like
->div
[i
], 1 + 1 + ltotal
);
4602 isl_seq_clr(bmap
->div
[i
]+1+1+ltotal
, total
- ltotal
);
4604 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
4606 isl_basic_map_free(like
);
4607 bmap
= isl_basic_map_simplify(bmap
);
4608 bmap
= isl_basic_map_finalize(bmap
);
4611 isl_basic_map_free(like
);
4612 isl_basic_set_free(bset
);
4616 struct isl_basic_set
*isl_basic_set_from_underlying_set(
4617 struct isl_basic_set
*bset
, struct isl_basic_set
*like
)
4619 return (struct isl_basic_set
*)
4620 isl_basic_map_overlying_set(bset
, (struct isl_basic_map
*)like
);
4623 struct isl_set
*isl_set_from_underlying_set(
4624 struct isl_set
*set
, struct isl_basic_set
*like
)
4630 isl_assert(set
->ctx
, set
->dim
->n_out
== isl_basic_set_total_dim(like
),
4632 if (isl_space_is_equal(set
->dim
, like
->dim
) && like
->n_div
== 0) {
4633 isl_basic_set_free(like
);
4636 set
= isl_set_cow(set
);
4639 for (i
= 0; i
< set
->n
; ++i
) {
4640 set
->p
[i
] = isl_basic_set_from_underlying_set(set
->p
[i
],
4641 isl_basic_set_copy(like
));
4645 isl_space_free(set
->dim
);
4646 set
->dim
= isl_space_copy(like
->dim
);
4649 isl_basic_set_free(like
);
4652 isl_basic_set_free(like
);
4657 struct isl_set
*isl_map_underlying_set(struct isl_map
*map
)
4661 map
= isl_map_cow(map
);
4664 map
->dim
= isl_space_cow(map
->dim
);
4668 for (i
= 1; i
< map
->n
; ++i
)
4669 isl_assert(map
->ctx
, map
->p
[0]->n_div
== map
->p
[i
]->n_div
,
4671 for (i
= 0; i
< map
->n
; ++i
) {
4672 map
->p
[i
] = (struct isl_basic_map
*)
4673 isl_basic_map_underlying_set(map
->p
[i
]);
4678 map
->dim
= isl_space_underlying(map
->dim
, 0);
4680 isl_space_free(map
->dim
);
4681 map
->dim
= isl_space_copy(map
->p
[0]->dim
);
4685 return (struct isl_set
*)map
;
4691 struct isl_set
*isl_set_to_underlying_set(struct isl_set
*set
)
4693 return (struct isl_set
*)isl_map_underlying_set((struct isl_map
*)set
);
4696 __isl_give isl_basic_map
*isl_basic_map_reset_space(
4697 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*space
)
4703 equal
= isl_space_is_equal(bmap
->dim
, space
);
4707 isl_space_free(space
);
4710 bmap
= isl_basic_map_cow(bmap
);
4711 if (!bmap
|| !space
)
4714 isl_space_free(bmap
->dim
);
4717 bmap
= isl_basic_map_finalize(bmap
);
4721 isl_basic_map_free(bmap
);
4722 isl_space_free(space
);
4726 __isl_give isl_basic_set
*isl_basic_set_reset_space(
4727 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*dim
)
4729 return (isl_basic_set
*)isl_basic_map_reset_space((isl_basic_map
*)bset
,
4733 __isl_give isl_map
*isl_map_reset_space(__isl_take isl_map
*map
,
4734 __isl_take isl_space
*dim
)
4738 map
= isl_map_cow(map
);
4742 for (i
= 0; i
< map
->n
; ++i
) {
4743 map
->p
[i
] = isl_basic_map_reset_space(map
->p
[i
],
4744 isl_space_copy(dim
));
4748 isl_space_free(map
->dim
);
4754 isl_space_free(dim
);
4758 __isl_give isl_set
*isl_set_reset_space(__isl_take isl_set
*set
,
4759 __isl_take isl_space
*dim
)
4761 return (struct isl_set
*) isl_map_reset_space((struct isl_map
*)set
, dim
);
4764 /* Compute the parameter domain of the given basic set.
4766 __isl_give isl_basic_set
*isl_basic_set_params(__isl_take isl_basic_set
*bset
)
4771 if (isl_basic_set_is_params(bset
))
4774 n
= isl_basic_set_dim(bset
, isl_dim_set
);
4775 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
4776 space
= isl_basic_set_get_space(bset
);
4777 space
= isl_space_params(space
);
4778 bset
= isl_basic_set_reset_space(bset
, space
);
4782 /* Construct a zero-dimensional basic set with the given parameter domain.
4784 __isl_give isl_basic_set
*isl_basic_set_from_params(
4785 __isl_take isl_basic_set
*bset
)
4788 space
= isl_basic_set_get_space(bset
);
4789 space
= isl_space_set_from_params(space
);
4790 bset
= isl_basic_set_reset_space(bset
, space
);
4794 /* Compute the parameter domain of the given set.
4796 __isl_give isl_set
*isl_set_params(__isl_take isl_set
*set
)
4801 if (isl_set_is_params(set
))
4804 n
= isl_set_dim(set
, isl_dim_set
);
4805 set
= isl_set_project_out(set
, isl_dim_set
, 0, n
);
4806 space
= isl_set_get_space(set
);
4807 space
= isl_space_params(space
);
4808 set
= isl_set_reset_space(set
, space
);
4812 /* Construct a zero-dimensional set with the given parameter domain.
4814 __isl_give isl_set
*isl_set_from_params(__isl_take isl_set
*set
)
4817 space
= isl_set_get_space(set
);
4818 space
= isl_space_set_from_params(space
);
4819 set
= isl_set_reset_space(set
, space
);
4823 /* Compute the parameter domain of the given map.
4825 __isl_give isl_set
*isl_map_params(__isl_take isl_map
*map
)
4830 n
= isl_map_dim(map
, isl_dim_in
);
4831 map
= isl_map_project_out(map
, isl_dim_in
, 0, n
);
4832 n
= isl_map_dim(map
, isl_dim_out
);
4833 map
= isl_map_project_out(map
, isl_dim_out
, 0, n
);
4834 space
= isl_map_get_space(map
);
4835 space
= isl_space_params(space
);
4836 map
= isl_map_reset_space(map
, space
);
4840 struct isl_basic_set
*isl_basic_map_domain(struct isl_basic_map
*bmap
)
4847 space
= isl_space_domain(isl_basic_map_get_space(bmap
));
4849 n_out
= isl_basic_map_n_out(bmap
);
4850 bmap
= isl_basic_map_project_out(bmap
, isl_dim_out
, 0, n_out
);
4852 return isl_basic_map_reset_space(bmap
, space
);
4855 int isl_basic_map_may_be_set(__isl_keep isl_basic_map
*bmap
)
4859 return isl_space_may_be_set(bmap
->dim
);
4862 /* Is this basic map actually a set?
4863 * Users should never call this function. Outside of isl,
4864 * the type should indicate whether something is a set or a map.
4866 int isl_basic_map_is_set(__isl_keep isl_basic_map
*bmap
)
4870 return isl_space_is_set(bmap
->dim
);
4873 struct isl_basic_set
*isl_basic_map_range(struct isl_basic_map
*bmap
)
4877 if (isl_basic_map_is_set(bmap
))
4879 return isl_basic_map_domain(isl_basic_map_reverse(bmap
));
4882 __isl_give isl_basic_map
*isl_basic_map_domain_map(
4883 __isl_take isl_basic_map
*bmap
)
4887 isl_basic_map
*domain
;
4888 int nparam
, n_in
, n_out
;
4891 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4892 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4893 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
4895 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
4896 domain
= isl_basic_map_universe(dim
);
4898 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
4899 bmap
= isl_basic_map_apply_range(bmap
, domain
);
4900 bmap
= isl_basic_map_extend_constraints(bmap
, n_in
, 0);
4902 total
= isl_basic_map_total_dim(bmap
);
4904 for (i
= 0; i
< n_in
; ++i
) {
4905 k
= isl_basic_map_alloc_equality(bmap
);
4908 isl_seq_clr(bmap
->eq
[k
], 1 + total
);
4909 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ i
], -1);
4910 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n_in
+ n_out
+ i
], 1);
4913 bmap
= isl_basic_map_gauss(bmap
, NULL
);
4914 return isl_basic_map_finalize(bmap
);
4916 isl_basic_map_free(bmap
);
4920 __isl_give isl_basic_map
*isl_basic_map_range_map(
4921 __isl_take isl_basic_map
*bmap
)
4925 isl_basic_map
*range
;
4926 int nparam
, n_in
, n_out
;
4929 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4930 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4931 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
4933 dim
= isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap
)));
4934 range
= isl_basic_map_universe(dim
);
4936 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
4937 bmap
= isl_basic_map_apply_range(bmap
, range
);
4938 bmap
= isl_basic_map_extend_constraints(bmap
, n_out
, 0);
4940 total
= isl_basic_map_total_dim(bmap
);
4942 for (i
= 0; i
< n_out
; ++i
) {
4943 k
= isl_basic_map_alloc_equality(bmap
);
4946 isl_seq_clr(bmap
->eq
[k
], 1 + total
);
4947 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n_in
+ i
], -1);
4948 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n_in
+ n_out
+ i
], 1);
4951 bmap
= isl_basic_map_gauss(bmap
, NULL
);
4952 return isl_basic_map_finalize(bmap
);
4954 isl_basic_map_free(bmap
);
4958 int isl_map_may_be_set(__isl_keep isl_map
*map
)
4962 return isl_space_may_be_set(map
->dim
);
4965 /* Is this map actually a set?
4966 * Users should never call this function. Outside of isl,
4967 * the type should indicate whether something is a set or a map.
4969 int isl_map_is_set(__isl_keep isl_map
*map
)
4973 return isl_space_is_set(map
->dim
);
4976 struct isl_set
*isl_map_range(struct isl_map
*map
)
4979 struct isl_set
*set
;
4983 if (isl_map_is_set(map
))
4984 return (isl_set
*)map
;
4986 map
= isl_map_cow(map
);
4990 set
= (struct isl_set
*) map
;
4991 set
->dim
= isl_space_range(set
->dim
);
4994 for (i
= 0; i
< map
->n
; ++i
) {
4995 set
->p
[i
] = isl_basic_map_range(map
->p
[i
]);
4999 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
5000 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
5007 __isl_give isl_map
*isl_map_domain_map(__isl_take isl_map
*map
)
5011 map
= isl_map_cow(map
);
5015 map
->dim
= isl_space_domain_map(map
->dim
);
5018 for (i
= 0; i
< map
->n
; ++i
) {
5019 map
->p
[i
] = isl_basic_map_domain_map(map
->p
[i
]);
5023 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5024 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5031 __isl_give isl_map
*isl_map_range_map(__isl_take isl_map
*map
)
5034 isl_space
*range_dim
;
5036 map
= isl_map_cow(map
);
5040 range_dim
= isl_space_range(isl_map_get_space(map
));
5041 range_dim
= isl_space_from_range(range_dim
);
5042 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
5043 map
->dim
= isl_space_join(map
->dim
, range_dim
);
5046 for (i
= 0; i
< map
->n
; ++i
) {
5047 map
->p
[i
] = isl_basic_map_range_map(map
->p
[i
]);
5051 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5052 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5059 /* Given a wrapped map of the form A[B -> C],
5060 * return the map A[B -> C] -> B.
5062 __isl_give isl_map
*isl_set_wrapped_domain_map(__isl_take isl_set
*set
)
5069 if (!isl_set_has_tuple_id(set
))
5070 return isl_map_domain_map(isl_set_unwrap(set
));
5072 id
= isl_set_get_tuple_id(set
);
5073 map
= isl_map_domain_map(isl_set_unwrap(set
));
5074 map
= isl_map_set_tuple_id(map
, isl_dim_in
, id
);
5079 __isl_give isl_map
*isl_map_from_set(__isl_take isl_set
*set
,
5080 __isl_take isl_space
*dim
)
5083 struct isl_map
*map
= NULL
;
5085 set
= isl_set_cow(set
);
5088 isl_assert(set
->ctx
, isl_space_compatible(set
->dim
, dim
), goto error
);
5089 map
= (struct isl_map
*)set
;
5090 for (i
= 0; i
< set
->n
; ++i
) {
5091 map
->p
[i
] = isl_basic_map_from_basic_set(
5092 set
->p
[i
], isl_space_copy(dim
));
5096 isl_space_free(map
->dim
);
5100 isl_space_free(dim
);
5105 __isl_give isl_basic_map
*isl_basic_map_from_domain(
5106 __isl_take isl_basic_set
*bset
)
5108 return isl_basic_map_reverse(isl_basic_map_from_range(bset
));
5111 __isl_give isl_basic_map
*isl_basic_map_from_range(
5112 __isl_take isl_basic_set
*bset
)
5115 space
= isl_basic_set_get_space(bset
);
5116 space
= isl_space_from_range(space
);
5117 bset
= isl_basic_set_reset_space(bset
, space
);
5118 return (isl_basic_map
*)bset
;
5121 /* Create a relation with the given set as range.
5122 * The domain of the created relation is a zero-dimensional
5123 * flat anonymous space.
5125 __isl_give isl_map
*isl_map_from_range(__isl_take isl_set
*set
)
5128 space
= isl_set_get_space(set
);
5129 space
= isl_space_from_range(space
);
5130 set
= isl_set_reset_space(set
, space
);
5131 return (struct isl_map
*)set
;
5134 /* Create a relation with the given set as domain.
5135 * The range of the created relation is a zero-dimensional
5136 * flat anonymous space.
5138 __isl_give isl_map
*isl_map_from_domain(__isl_take isl_set
*set
)
5140 return isl_map_reverse(isl_map_from_range(set
));
5143 __isl_give isl_basic_map
*isl_basic_map_from_domain_and_range(
5144 __isl_take isl_basic_set
*domain
, __isl_take isl_basic_set
*range
)
5146 return isl_basic_map_apply_range(isl_basic_map_reverse(domain
), range
);
5149 __isl_give isl_map
*isl_map_from_domain_and_range(__isl_take isl_set
*domain
,
5150 __isl_take isl_set
*range
)
5152 return isl_map_apply_range(isl_map_reverse(domain
), range
);
5155 __isl_give isl_map
*isl_map_alloc_space(__isl_take isl_space
*dim
, int n
,
5158 struct isl_map
*map
;
5163 isl_die(dim
->ctx
, isl_error_internal
,
5164 "negative number of basic maps", goto error
);
5165 map
= isl_alloc(dim
->ctx
, struct isl_map
,
5166 sizeof(struct isl_map
) +
5167 (n
- 1) * sizeof(struct isl_basic_map
*));
5171 map
->ctx
= dim
->ctx
;
5172 isl_ctx_ref(map
->ctx
);
5180 isl_space_free(dim
);
5184 struct isl_map
*isl_map_alloc(struct isl_ctx
*ctx
,
5185 unsigned nparam
, unsigned in
, unsigned out
, int n
,
5188 struct isl_map
*map
;
5191 dims
= isl_space_alloc(ctx
, nparam
, in
, out
);
5195 map
= isl_map_alloc_space(dims
, n
, flags
);
5199 __isl_give isl_basic_map
*isl_basic_map_empty(__isl_take isl_space
*dim
)
5201 struct isl_basic_map
*bmap
;
5202 bmap
= isl_basic_map_alloc_space(dim
, 0, 1, 0);
5203 bmap
= isl_basic_map_set_to_empty(bmap
);
5207 __isl_give isl_basic_set
*isl_basic_set_empty(__isl_take isl_space
*dim
)
5209 struct isl_basic_set
*bset
;
5210 bset
= isl_basic_set_alloc_space(dim
, 0, 1, 0);
5211 bset
= isl_basic_set_set_to_empty(bset
);
5215 __isl_give isl_basic_map
*isl_basic_map_universe(__isl_take isl_space
*dim
)
5217 struct isl_basic_map
*bmap
;
5218 bmap
= isl_basic_map_alloc_space(dim
, 0, 0, 0);
5219 bmap
= isl_basic_map_finalize(bmap
);
5223 __isl_give isl_basic_set
*isl_basic_set_universe(__isl_take isl_space
*dim
)
5225 struct isl_basic_set
*bset
;
5226 bset
= isl_basic_set_alloc_space(dim
, 0, 0, 0);
5227 bset
= isl_basic_set_finalize(bset
);
5231 __isl_give isl_basic_map
*isl_basic_map_nat_universe(__isl_take isl_space
*dim
)
5234 unsigned total
= isl_space_dim(dim
, isl_dim_all
);
5235 isl_basic_map
*bmap
;
5237 bmap
= isl_basic_map_alloc_space(dim
, 0, 0, total
);
5238 for (i
= 0; i
< total
; ++i
) {
5239 int k
= isl_basic_map_alloc_inequality(bmap
);
5242 isl_seq_clr(bmap
->ineq
[k
], 1 + total
);
5243 isl_int_set_si(bmap
->ineq
[k
][1 + i
], 1);
5247 isl_basic_map_free(bmap
);
5251 __isl_give isl_basic_set
*isl_basic_set_nat_universe(__isl_take isl_space
*dim
)
5253 return isl_basic_map_nat_universe(dim
);
5256 __isl_give isl_map
*isl_map_nat_universe(__isl_take isl_space
*dim
)
5258 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim
));
5261 __isl_give isl_set
*isl_set_nat_universe(__isl_take isl_space
*dim
)
5263 return isl_map_nat_universe(dim
);
5266 __isl_give isl_map
*isl_map_empty(__isl_take isl_space
*dim
)
5268 return isl_map_alloc_space(dim
, 0, ISL_MAP_DISJOINT
);
5271 __isl_give isl_set
*isl_set_empty(__isl_take isl_space
*dim
)
5273 return isl_set_alloc_space(dim
, 0, ISL_MAP_DISJOINT
);
5276 __isl_give isl_map
*isl_map_universe(__isl_take isl_space
*dim
)
5278 struct isl_map
*map
;
5281 map
= isl_map_alloc_space(isl_space_copy(dim
), 1, ISL_MAP_DISJOINT
);
5282 map
= isl_map_add_basic_map(map
, isl_basic_map_universe(dim
));
5286 __isl_give isl_set
*isl_set_universe(__isl_take isl_space
*dim
)
5288 struct isl_set
*set
;
5291 set
= isl_set_alloc_space(isl_space_copy(dim
), 1, ISL_MAP_DISJOINT
);
5292 set
= isl_set_add_basic_set(set
, isl_basic_set_universe(dim
));
5296 struct isl_map
*isl_map_dup(struct isl_map
*map
)
5299 struct isl_map
*dup
;
5303 dup
= isl_map_alloc_space(isl_space_copy(map
->dim
), map
->n
, map
->flags
);
5304 for (i
= 0; i
< map
->n
; ++i
)
5305 dup
= isl_map_add_basic_map(dup
, isl_basic_map_copy(map
->p
[i
]));
5309 __isl_give isl_map
*isl_map_add_basic_map(__isl_take isl_map
*map
,
5310 __isl_take isl_basic_map
*bmap
)
5314 if (isl_basic_map_plain_is_empty(bmap
)) {
5315 isl_basic_map_free(bmap
);
5318 isl_assert(map
->ctx
, isl_space_is_equal(map
->dim
, bmap
->dim
), goto error
);
5319 isl_assert(map
->ctx
, map
->n
< map
->size
, goto error
);
5320 map
->p
[map
->n
] = bmap
;
5322 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5328 isl_basic_map_free(bmap
);
5332 __isl_null isl_map
*isl_map_free(__isl_take isl_map
*map
)
5342 isl_ctx_deref(map
->ctx
);
5343 for (i
= 0; i
< map
->n
; ++i
)
5344 isl_basic_map_free(map
->p
[i
]);
5345 isl_space_free(map
->dim
);
5351 static struct isl_basic_map
*isl_basic_map_fix_pos_si(
5352 struct isl_basic_map
*bmap
, unsigned pos
, int value
)
5356 bmap
= isl_basic_map_cow(bmap
);
5357 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
5358 j
= isl_basic_map_alloc_equality(bmap
);
5361 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
5362 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
5363 isl_int_set_si(bmap
->eq
[j
][0], value
);
5364 bmap
= isl_basic_map_simplify(bmap
);
5365 return isl_basic_map_finalize(bmap
);
5367 isl_basic_map_free(bmap
);
5371 static __isl_give isl_basic_map
*isl_basic_map_fix_pos(
5372 __isl_take isl_basic_map
*bmap
, unsigned pos
, isl_int value
)
5376 bmap
= isl_basic_map_cow(bmap
);
5377 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
5378 j
= isl_basic_map_alloc_equality(bmap
);
5381 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
5382 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
5383 isl_int_set(bmap
->eq
[j
][0], value
);
5384 bmap
= isl_basic_map_simplify(bmap
);
5385 return isl_basic_map_finalize(bmap
);
5387 isl_basic_map_free(bmap
);
5391 struct isl_basic_map
*isl_basic_map_fix_si(struct isl_basic_map
*bmap
,
5392 enum isl_dim_type type
, unsigned pos
, int value
)
5396 isl_assert(bmap
->ctx
, pos
< isl_basic_map_dim(bmap
, type
), goto error
);
5397 return isl_basic_map_fix_pos_si(bmap
,
5398 isl_basic_map_offset(bmap
, type
) + pos
, value
);
5400 isl_basic_map_free(bmap
);
5404 __isl_give isl_basic_map
*isl_basic_map_fix(__isl_take isl_basic_map
*bmap
,
5405 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5409 isl_assert(bmap
->ctx
, pos
< isl_basic_map_dim(bmap
, type
), goto error
);
5410 return isl_basic_map_fix_pos(bmap
,
5411 isl_basic_map_offset(bmap
, type
) + pos
, value
);
5413 isl_basic_map_free(bmap
);
5417 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
5418 * to be equal to "v".
5420 __isl_give isl_basic_map
*isl_basic_map_fix_val(__isl_take isl_basic_map
*bmap
,
5421 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5425 if (!isl_val_is_int(v
))
5426 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
5427 "expecting integer value", goto error
);
5428 if (pos
>= isl_basic_map_dim(bmap
, type
))
5429 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
5430 "index out of bounds", goto error
);
5431 pos
+= isl_basic_map_offset(bmap
, type
);
5432 bmap
= isl_basic_map_fix_pos(bmap
, pos
, v
->n
);
5436 isl_basic_map_free(bmap
);
5441 /* Fix the value of the variable at position "pos" of type "type" of "bset"
5442 * to be equal to "v".
5444 __isl_give isl_basic_set
*isl_basic_set_fix_val(__isl_take isl_basic_set
*bset
,
5445 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5447 return isl_basic_map_fix_val(bset
, type
, pos
, v
);
5450 struct isl_basic_set
*isl_basic_set_fix_si(struct isl_basic_set
*bset
,
5451 enum isl_dim_type type
, unsigned pos
, int value
)
5453 return (struct isl_basic_set
*)
5454 isl_basic_map_fix_si((struct isl_basic_map
*)bset
,
5458 __isl_give isl_basic_set
*isl_basic_set_fix(__isl_take isl_basic_set
*bset
,
5459 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5461 return (struct isl_basic_set
*)
5462 isl_basic_map_fix((struct isl_basic_map
*)bset
,
5466 struct isl_basic_map
*isl_basic_map_fix_input_si(struct isl_basic_map
*bmap
,
5467 unsigned input
, int value
)
5469 return isl_basic_map_fix_si(bmap
, isl_dim_in
, input
, value
);
5472 struct isl_basic_set
*isl_basic_set_fix_dim_si(struct isl_basic_set
*bset
,
5473 unsigned dim
, int value
)
5475 return (struct isl_basic_set
*)
5476 isl_basic_map_fix_si((struct isl_basic_map
*)bset
,
5477 isl_dim_set
, dim
, value
);
5480 static int remove_if_empty(__isl_keep isl_map
*map
, int i
)
5482 int empty
= isl_basic_map_plain_is_empty(map
->p
[i
]);
5489 isl_basic_map_free(map
->p
[i
]);
5490 if (i
!= map
->n
- 1) {
5491 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5492 map
->p
[i
] = map
->p
[map
->n
- 1];
5499 /* Perform "fn" on each basic map of "map", where we may not be holding
5500 * the only reference to "map".
5501 * In particular, "fn" should be a semantics preserving operation
5502 * that we want to apply to all copies of "map". We therefore need
5503 * to be careful not to modify "map" in a way that breaks "map"
5504 * in case anything goes wrong.
5506 __isl_give isl_map
*isl_map_inline_foreach_basic_map(__isl_take isl_map
*map
,
5507 __isl_give isl_basic_map
*(*fn
)(__isl_take isl_basic_map
*bmap
))
5509 struct isl_basic_map
*bmap
;
5515 for (i
= map
->n
- 1; i
>= 0; --i
) {
5516 bmap
= isl_basic_map_copy(map
->p
[i
]);
5520 isl_basic_map_free(map
->p
[i
]);
5522 if (remove_if_empty(map
, i
) < 0)
5532 struct isl_map
*isl_map_fix_si(struct isl_map
*map
,
5533 enum isl_dim_type type
, unsigned pos
, int value
)
5537 map
= isl_map_cow(map
);
5541 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
5542 for (i
= map
->n
- 1; i
>= 0; --i
) {
5543 map
->p
[i
] = isl_basic_map_fix_si(map
->p
[i
], type
, pos
, value
);
5544 if (remove_if_empty(map
, i
) < 0)
5547 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5554 __isl_give isl_set
*isl_set_fix_si(__isl_take isl_set
*set
,
5555 enum isl_dim_type type
, unsigned pos
, int value
)
5557 return (struct isl_set
*)
5558 isl_map_fix_si((struct isl_map
*)set
, type
, pos
, value
);
5561 __isl_give isl_map
*isl_map_fix(__isl_take isl_map
*map
,
5562 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5566 map
= isl_map_cow(map
);
5570 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
5571 for (i
= 0; i
< map
->n
; ++i
) {
5572 map
->p
[i
] = isl_basic_map_fix(map
->p
[i
], type
, pos
, value
);
5576 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5583 __isl_give isl_set
*isl_set_fix(__isl_take isl_set
*set
,
5584 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5586 return (struct isl_set
*)isl_map_fix((isl_map
*)set
, type
, pos
, value
);
5589 /* Fix the value of the variable at position "pos" of type "type" of "map"
5590 * to be equal to "v".
5592 __isl_give isl_map
*isl_map_fix_val(__isl_take isl_map
*map
,
5593 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5597 map
= isl_map_cow(map
);
5601 if (!isl_val_is_int(v
))
5602 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
5603 "expecting integer value", goto error
);
5604 if (pos
>= isl_map_dim(map
, type
))
5605 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
5606 "index out of bounds", goto error
);
5607 for (i
= map
->n
- 1; i
>= 0; --i
) {
5608 map
->p
[i
] = isl_basic_map_fix_val(map
->p
[i
], type
, pos
,
5610 if (remove_if_empty(map
, i
) < 0)
5613 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5622 /* Fix the value of the variable at position "pos" of type "type" of "set"
5623 * to be equal to "v".
5625 __isl_give isl_set
*isl_set_fix_val(__isl_take isl_set
*set
,
5626 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5628 return isl_map_fix_val(set
, type
, pos
, v
);
5631 struct isl_map
*isl_map_fix_input_si(struct isl_map
*map
,
5632 unsigned input
, int value
)
5634 return isl_map_fix_si(map
, isl_dim_in
, input
, value
);
5637 struct isl_set
*isl_set_fix_dim_si(struct isl_set
*set
, unsigned dim
, int value
)
5639 return (struct isl_set
*)
5640 isl_map_fix_si((struct isl_map
*)set
, isl_dim_set
, dim
, value
);
5643 static __isl_give isl_basic_map
*basic_map_bound_si(
5644 __isl_take isl_basic_map
*bmap
,
5645 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
5651 isl_assert(bmap
->ctx
, pos
< isl_basic_map_dim(bmap
, type
), goto error
);
5652 pos
+= isl_basic_map_offset(bmap
, type
);
5653 bmap
= isl_basic_map_cow(bmap
);
5654 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
5655 j
= isl_basic_map_alloc_inequality(bmap
);
5658 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
5660 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
5661 isl_int_set_si(bmap
->ineq
[j
][0], value
);
5663 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
5664 isl_int_set_si(bmap
->ineq
[j
][0], -value
);
5666 bmap
= isl_basic_map_simplify(bmap
);
5667 return isl_basic_map_finalize(bmap
);
5669 isl_basic_map_free(bmap
);
5673 __isl_give isl_basic_map
*isl_basic_map_lower_bound_si(
5674 __isl_take isl_basic_map
*bmap
,
5675 enum isl_dim_type type
, unsigned pos
, int value
)
5677 return basic_map_bound_si(bmap
, type
, pos
, value
, 0);
5680 /* Constrain the values of the given dimension to be no greater than "value".
5682 __isl_give isl_basic_map
*isl_basic_map_upper_bound_si(
5683 __isl_take isl_basic_map
*bmap
,
5684 enum isl_dim_type type
, unsigned pos
, int value
)
5686 return basic_map_bound_si(bmap
, type
, pos
, value
, 1);
5689 struct isl_basic_set
*isl_basic_set_lower_bound_dim(struct isl_basic_set
*bset
,
5690 unsigned dim
, isl_int value
)
5694 bset
= isl_basic_set_cow(bset
);
5695 bset
= isl_basic_set_extend_constraints(bset
, 0, 1);
5696 j
= isl_basic_set_alloc_inequality(bset
);
5699 isl_seq_clr(bset
->ineq
[j
], 1 + isl_basic_set_total_dim(bset
));
5700 isl_int_set_si(bset
->ineq
[j
][1 + isl_basic_set_n_param(bset
) + dim
], 1);
5701 isl_int_neg(bset
->ineq
[j
][0], value
);
5702 bset
= isl_basic_set_simplify(bset
);
5703 return isl_basic_set_finalize(bset
);
5705 isl_basic_set_free(bset
);
5709 static __isl_give isl_map
*map_bound_si(__isl_take isl_map
*map
,
5710 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
5714 map
= isl_map_cow(map
);
5718 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
5719 for (i
= 0; i
< map
->n
; ++i
) {
5720 map
->p
[i
] = basic_map_bound_si(map
->p
[i
],
5721 type
, pos
, value
, upper
);
5725 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5732 __isl_give isl_map
*isl_map_lower_bound_si(__isl_take isl_map
*map
,
5733 enum isl_dim_type type
, unsigned pos
, int value
)
5735 return map_bound_si(map
, type
, pos
, value
, 0);
5738 __isl_give isl_map
*isl_map_upper_bound_si(__isl_take isl_map
*map
,
5739 enum isl_dim_type type
, unsigned pos
, int value
)
5741 return map_bound_si(map
, type
, pos
, value
, 1);
5744 __isl_give isl_set
*isl_set_lower_bound_si(__isl_take isl_set
*set
,
5745 enum isl_dim_type type
, unsigned pos
, int value
)
5747 return (struct isl_set
*)
5748 isl_map_lower_bound_si((struct isl_map
*)set
, type
, pos
, value
);
5751 __isl_give isl_set
*isl_set_upper_bound_si(__isl_take isl_set
*set
,
5752 enum isl_dim_type type
, unsigned pos
, int value
)
5754 return isl_map_upper_bound_si(set
, type
, pos
, value
);
5757 /* Bound the given variable of "bmap" from below (or above is "upper"
5758 * is set) to "value".
5760 static __isl_give isl_basic_map
*basic_map_bound(
5761 __isl_take isl_basic_map
*bmap
,
5762 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
5768 if (pos
>= isl_basic_map_dim(bmap
, type
))
5769 isl_die(bmap
->ctx
, isl_error_invalid
,
5770 "index out of bounds", goto error
);
5771 pos
+= isl_basic_map_offset(bmap
, type
);
5772 bmap
= isl_basic_map_cow(bmap
);
5773 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
5774 j
= isl_basic_map_alloc_inequality(bmap
);
5777 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
5779 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
5780 isl_int_set(bmap
->ineq
[j
][0], value
);
5782 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
5783 isl_int_neg(bmap
->ineq
[j
][0], value
);
5785 bmap
= isl_basic_map_simplify(bmap
);
5786 return isl_basic_map_finalize(bmap
);
5788 isl_basic_map_free(bmap
);
5792 /* Bound the given variable of "map" from below (or above is "upper"
5793 * is set) to "value".
5795 static __isl_give isl_map
*map_bound(__isl_take isl_map
*map
,
5796 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
5800 map
= isl_map_cow(map
);
5804 if (pos
>= isl_map_dim(map
, type
))
5805 isl_die(map
->ctx
, isl_error_invalid
,
5806 "index out of bounds", goto error
);
5807 for (i
= map
->n
- 1; i
>= 0; --i
) {
5808 map
->p
[i
] = basic_map_bound(map
->p
[i
], type
, pos
, value
, upper
);
5809 if (remove_if_empty(map
, i
) < 0)
5812 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5819 __isl_give isl_map
*isl_map_lower_bound(__isl_take isl_map
*map
,
5820 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5822 return map_bound(map
, type
, pos
, value
, 0);
5825 __isl_give isl_map
*isl_map_upper_bound(__isl_take isl_map
*map
,
5826 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5828 return map_bound(map
, type
, pos
, value
, 1);
5831 __isl_give isl_set
*isl_set_lower_bound(__isl_take isl_set
*set
,
5832 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5834 return isl_map_lower_bound(set
, type
, pos
, value
);
5837 __isl_give isl_set
*isl_set_upper_bound(__isl_take isl_set
*set
,
5838 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5840 return isl_map_upper_bound(set
, type
, pos
, value
);
5843 /* Force the values of the variable at position "pos" of type "type" of "set"
5844 * to be no smaller than "value".
5846 __isl_give isl_set
*isl_set_lower_bound_val(__isl_take isl_set
*set
,
5847 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
5851 if (!isl_val_is_int(value
))
5852 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
5853 "expecting integer value", goto error
);
5854 set
= isl_set_lower_bound(set
, type
, pos
, value
->n
);
5855 isl_val_free(value
);
5858 isl_val_free(value
);
5863 /* Force the values of the variable at position "pos" of type "type" of "set"
5864 * to be no greater than "value".
5866 __isl_give isl_set
*isl_set_upper_bound_val(__isl_take isl_set
*set
,
5867 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
5871 if (!isl_val_is_int(value
))
5872 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
5873 "expecting integer value", goto error
);
5874 set
= isl_set_upper_bound(set
, type
, pos
, value
->n
);
5875 isl_val_free(value
);
5878 isl_val_free(value
);
5883 struct isl_set
*isl_set_lower_bound_dim(struct isl_set
*set
, unsigned dim
,
5888 set
= isl_set_cow(set
);
5892 isl_assert(set
->ctx
, dim
< isl_set_n_dim(set
), goto error
);
5893 for (i
= 0; i
< set
->n
; ++i
) {
5894 set
->p
[i
] = isl_basic_set_lower_bound_dim(set
->p
[i
], dim
, value
);
5904 struct isl_map
*isl_map_reverse(struct isl_map
*map
)
5908 map
= isl_map_cow(map
);
5912 map
->dim
= isl_space_reverse(map
->dim
);
5915 for (i
= 0; i
< map
->n
; ++i
) {
5916 map
->p
[i
] = isl_basic_map_reverse(map
->p
[i
]);
5920 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5927 static struct isl_map
*isl_basic_map_partial_lexopt(
5928 struct isl_basic_map
*bmap
, struct isl_basic_set
*dom
,
5929 struct isl_set
**empty
, int max
)
5931 return isl_tab_basic_map_partial_lexopt(bmap
, dom
, empty
, max
);
5934 struct isl_map
*isl_basic_map_partial_lexmax(
5935 struct isl_basic_map
*bmap
, struct isl_basic_set
*dom
,
5936 struct isl_set
**empty
)
5938 return isl_basic_map_partial_lexopt(bmap
, dom
, empty
, 1);
5941 struct isl_map
*isl_basic_map_partial_lexmin(
5942 struct isl_basic_map
*bmap
, struct isl_basic_set
*dom
,
5943 struct isl_set
**empty
)
5945 return isl_basic_map_partial_lexopt(bmap
, dom
, empty
, 0);
5948 struct isl_set
*isl_basic_set_partial_lexmin(
5949 struct isl_basic_set
*bset
, struct isl_basic_set
*dom
,
5950 struct isl_set
**empty
)
5952 return (struct isl_set
*)
5953 isl_basic_map_partial_lexmin((struct isl_basic_map
*)bset
,
5957 struct isl_set
*isl_basic_set_partial_lexmax(
5958 struct isl_basic_set
*bset
, struct isl_basic_set
*dom
,
5959 struct isl_set
**empty
)
5961 return (struct isl_set
*)
5962 isl_basic_map_partial_lexmax((struct isl_basic_map
*)bset
,
5966 __isl_give isl_pw_multi_aff
*isl_basic_map_partial_lexmin_pw_multi_aff(
5967 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
5968 __isl_give isl_set
**empty
)
5970 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap
, dom
, empty
, 0);
5973 __isl_give isl_pw_multi_aff
*isl_basic_map_partial_lexmax_pw_multi_aff(
5974 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
5975 __isl_give isl_set
**empty
)
5977 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap
, dom
, empty
, 1);
5980 __isl_give isl_pw_multi_aff
*isl_basic_set_partial_lexmin_pw_multi_aff(
5981 __isl_take isl_basic_set
*bset
, __isl_take isl_basic_set
*dom
,
5982 __isl_give isl_set
**empty
)
5984 return isl_basic_map_partial_lexmin_pw_multi_aff(bset
, dom
, empty
);
5987 __isl_give isl_pw_multi_aff
*isl_basic_set_partial_lexmax_pw_multi_aff(
5988 __isl_take isl_basic_set
*bset
, __isl_take isl_basic_set
*dom
,
5989 __isl_give isl_set
**empty
)
5991 return isl_basic_map_partial_lexmax_pw_multi_aff(bset
, dom
, empty
);
5994 __isl_give isl_pw_multi_aff
*isl_basic_map_lexopt_pw_multi_aff(
5995 __isl_take isl_basic_map
*bmap
, int max
)
5997 isl_basic_set
*dom
= NULL
;
5998 isl_space
*dom_space
;
6002 dom_space
= isl_space_domain(isl_space_copy(bmap
->dim
));
6003 dom
= isl_basic_set_universe(dom_space
);
6004 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap
, dom
, NULL
, max
);
6006 isl_basic_map_free(bmap
);
6010 __isl_give isl_pw_multi_aff
*isl_basic_map_lexmin_pw_multi_aff(
6011 __isl_take isl_basic_map
*bmap
)
6013 return isl_basic_map_lexopt_pw_multi_aff(bmap
, 0);
6017 #define TYPE isl_pw_multi_aff
6019 #define SUFFIX _pw_multi_aff
6021 #define EMPTY isl_pw_multi_aff_empty
6023 #define ADD isl_pw_multi_aff_union_add
6024 #include "isl_map_lexopt_templ.c"
6026 /* Given a map "map", compute the lexicographically minimal
6027 * (or maximal) image element for each domain element in dom,
6028 * in the form of an isl_pw_multi_aff.
6029 * Set *empty to those elements in dom that do not have an image element.
6031 * We first compute the lexicographically minimal or maximal element
6032 * in the first basic map. This results in a partial solution "res"
6033 * and a subset "todo" of dom that still need to be handled.
6034 * We then consider each of the remaining maps in "map" and successively
6035 * update both "res" and "todo".
6037 static __isl_give isl_pw_multi_aff
*isl_map_partial_lexopt_aligned_pw_multi_aff(
6038 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6039 __isl_give isl_set
**empty
, int max
)
6042 isl_pw_multi_aff
*res
;
6048 if (isl_map_plain_is_empty(map
)) {
6053 return isl_pw_multi_aff_from_map(map
);
6056 res
= basic_map_partial_lexopt_pw_multi_aff(
6057 isl_basic_map_copy(map
->p
[0]),
6058 isl_set_copy(dom
), &todo
, max
);
6060 for (i
= 1; i
< map
->n
; ++i
) {
6061 isl_pw_multi_aff
*res_i
;
6064 res_i
= basic_map_partial_lexopt_pw_multi_aff(
6065 isl_basic_map_copy(map
->p
[i
]),
6066 isl_set_copy(dom
), &todo_i
, max
);
6069 res
= isl_pw_multi_aff_union_lexmax(res
, res_i
);
6071 res
= isl_pw_multi_aff_union_lexmin(res
, res_i
);
6073 todo
= isl_set_intersect(todo
, todo_i
);
6094 #define TYPE isl_map
6098 #define EMPTY isl_map_empty
6100 #define ADD isl_map_union_disjoint
6101 #include "isl_map_lexopt_templ.c"
6103 /* Given a map "map", compute the lexicographically minimal
6104 * (or maximal) image element for each domain element in dom.
6105 * Set *empty to those elements in dom that do not have an image element.
6107 * We first compute the lexicographically minimal or maximal element
6108 * in the first basic map. This results in a partial solution "res"
6109 * and a subset "todo" of dom that still need to be handled.
6110 * We then consider each of the remaining maps in "map" and successively
6111 * update both "res" and "todo".
6113 * Let res^k and todo^k be the results after k steps and let i = k + 1.
6114 * Assume we are computing the lexicographical maximum.
6115 * We first compute the lexicographically maximal element in basic map i.
6116 * This results in a partial solution res_i and a subset todo_i.
6117 * Then we combine these results with those obtain for the first k basic maps
6118 * to obtain a result that is valid for the first k+1 basic maps.
6119 * In particular, the set where there is no solution is the set where
6120 * there is no solution for the first k basic maps and also no solution
6121 * for the ith basic map, i.e.,
6123 * todo^i = todo^k * todo_i
6125 * On dom(res^k) * dom(res_i), we need to pick the larger of the two
6126 * solutions, arbitrarily breaking ties in favor of res^k.
6127 * That is, when res^k(a) >= res_i(a), we pick res^k and
6128 * when res^k(a) < res_i(a), we pick res_i. (Here, ">=" and "<" denote
6129 * the lexicographic order.)
6130 * In practice, we compute
6132 * res^k * (res_i . "<=")
6136 * res_i * (res^k . "<")
6138 * Finally, we consider the symmetric difference of dom(res^k) and dom(res_i),
6139 * where only one of res^k and res_i provides a solution and we simply pick
6146 * Note that we only compute these intersections when dom(res^k) intersects
6147 * dom(res_i). Otherwise, the only effect of these intersections is to
6148 * potentially break up res^k and res_i into smaller pieces.
6149 * We want to avoid such splintering as much as possible.
6150 * In fact, an earlier implementation of this function would look for
6151 * better results in the domain of res^k and for extra results in todo^k,
6152 * but this would always result in a splintering according to todo^k,
6153 * even when the domain of basic map i is disjoint from the domains of
6154 * the previous basic maps.
6156 static __isl_give isl_map
*isl_map_partial_lexopt_aligned(
6157 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6158 __isl_give isl_set
**empty
, int max
)
6161 struct isl_map
*res
;
6162 struct isl_set
*todo
;
6167 if (isl_map_plain_is_empty(map
)) {
6175 res
= basic_map_partial_lexopt(isl_basic_map_copy(map
->p
[0]),
6176 isl_set_copy(dom
), &todo
, max
);
6178 for (i
= 1; i
< map
->n
; ++i
) {
6182 isl_space
*dim
= isl_space_range(isl_map_get_space(res
));
6184 res_i
= basic_map_partial_lexopt(isl_basic_map_copy(map
->p
[i
]),
6185 isl_set_copy(dom
), &todo_i
, max
);
6188 lt
= isl_map_lex_lt(isl_space_copy(dim
));
6189 le
= isl_map_lex_le(dim
);
6191 lt
= isl_map_lex_gt(isl_space_copy(dim
));
6192 le
= isl_map_lex_ge(dim
);
6194 lt
= isl_map_apply_range(isl_map_copy(res
), lt
);
6195 lt
= isl_map_intersect(lt
, isl_map_copy(res_i
));
6196 le
= isl_map_apply_range(isl_map_copy(res_i
), le
);
6197 le
= isl_map_intersect(le
, isl_map_copy(res
));
6199 if (!isl_map_is_empty(lt
) || !isl_map_is_empty(le
)) {
6200 res
= isl_map_intersect_domain(res
,
6201 isl_set_copy(todo_i
));
6202 res_i
= isl_map_intersect_domain(res_i
,
6203 isl_set_copy(todo
));
6206 res
= isl_map_union_disjoint(res
, res_i
);
6207 res
= isl_map_union_disjoint(res
, lt
);
6208 res
= isl_map_union_disjoint(res
, le
);
6210 todo
= isl_set_intersect(todo
, todo_i
);
6230 __isl_give isl_map
*isl_map_partial_lexmax(
6231 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6232 __isl_give isl_set
**empty
)
6234 return isl_map_partial_lexopt(map
, dom
, empty
, 1);
6237 __isl_give isl_map
*isl_map_partial_lexmin(
6238 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6239 __isl_give isl_set
**empty
)
6241 return isl_map_partial_lexopt(map
, dom
, empty
, 0);
6244 __isl_give isl_set
*isl_set_partial_lexmin(
6245 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6246 __isl_give isl_set
**empty
)
6248 return (struct isl_set
*)
6249 isl_map_partial_lexmin((struct isl_map
*)set
,
6253 __isl_give isl_set
*isl_set_partial_lexmax(
6254 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6255 __isl_give isl_set
**empty
)
6257 return (struct isl_set
*)
6258 isl_map_partial_lexmax((struct isl_map
*)set
,
6262 /* Compute the lexicographic minimum (or maximum if "max" is set)
6263 * of "bmap" over its domain.
6265 * Since we are not interested in the part of the domain space where
6266 * there is no solution, we initialize the domain to those constraints
6267 * of "bmap" that only involve the parameters and the input dimensions.
6268 * This relieves the parametric programming engine from detecting those
6269 * inequalities and transferring them to the context. More importantly,
6270 * it ensures that those inequalities are transferred first and not
6271 * intermixed with inequalities that actually split the domain.
6273 __isl_give isl_map
*isl_basic_map_lexopt(__isl_take isl_basic_map
*bmap
, int max
)
6277 isl_basic_map
*copy
;
6280 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
6281 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
6282 copy
= isl_basic_map_copy(bmap
);
6283 copy
= isl_basic_map_drop_constraints_involving_dims(copy
,
6284 isl_dim_div
, 0, n_div
);
6285 copy
= isl_basic_map_drop_constraints_involving_dims(copy
,
6286 isl_dim_out
, 0, n_out
);
6287 dom
= isl_basic_map_domain(copy
);
6288 return isl_basic_map_partial_lexopt(bmap
, dom
, NULL
, max
);
6291 __isl_give isl_map
*isl_basic_map_lexmin(__isl_take isl_basic_map
*bmap
)
6293 return isl_basic_map_lexopt(bmap
, 0);
6296 __isl_give isl_map
*isl_basic_map_lexmax(__isl_take isl_basic_map
*bmap
)
6298 return isl_basic_map_lexopt(bmap
, 1);
6301 __isl_give isl_set
*isl_basic_set_lexmin(__isl_take isl_basic_set
*bset
)
6303 return (isl_set
*)isl_basic_map_lexmin((isl_basic_map
*)bset
);
6306 __isl_give isl_set
*isl_basic_set_lexmax(__isl_take isl_basic_set
*bset
)
6308 return (isl_set
*)isl_basic_map_lexmax((isl_basic_map
*)bset
);
6311 /* Extract the first and only affine expression from list
6312 * and then add it to *pwaff with the given dom.
6313 * This domain is known to be disjoint from other domains
6314 * because of the way isl_basic_map_foreach_lexmax works.
6316 static int update_dim_opt(__isl_take isl_basic_set
*dom
,
6317 __isl_take isl_aff_list
*list
, void *user
)
6319 isl_ctx
*ctx
= isl_basic_set_get_ctx(dom
);
6321 isl_pw_aff
**pwaff
= user
;
6322 isl_pw_aff
*pwaff_i
;
6326 if (isl_aff_list_n_aff(list
) != 1)
6327 isl_die(ctx
, isl_error_internal
,
6328 "expecting single element list", goto error
);
6330 aff
= isl_aff_list_get_aff(list
, 0);
6331 pwaff_i
= isl_pw_aff_alloc(isl_set_from_basic_set(dom
), aff
);
6333 *pwaff
= isl_pw_aff_add_disjoint(*pwaff
, pwaff_i
);
6335 isl_aff_list_free(list
);
6339 isl_basic_set_free(dom
);
6340 isl_aff_list_free(list
);
6344 /* Given a basic map with one output dimension, compute the minimum or
6345 * maximum of that dimension as an isl_pw_aff.
6347 * The isl_pw_aff is constructed by having isl_basic_map_foreach_lexopt
6348 * call update_dim_opt on each leaf of the result.
6350 static __isl_give isl_pw_aff
*basic_map_dim_opt(__isl_keep isl_basic_map
*bmap
,
6353 isl_space
*dim
= isl_basic_map_get_space(bmap
);
6357 dim
= isl_space_from_domain(isl_space_domain(dim
));
6358 dim
= isl_space_add_dims(dim
, isl_dim_out
, 1);
6359 pwaff
= isl_pw_aff_empty(dim
);
6361 r
= isl_basic_map_foreach_lexopt(bmap
, max
, &update_dim_opt
, &pwaff
);
6363 return isl_pw_aff_free(pwaff
);
6368 /* Compute the minimum or maximum of the given output dimension
6369 * as a function of the parameters and the input dimensions,
6370 * but independently of the other output dimensions.
6372 * We first project out the other output dimension and then compute
6373 * the "lexicographic" maximum in each basic map, combining the results
6374 * using isl_pw_aff_union_max.
6376 static __isl_give isl_pw_aff
*map_dim_opt(__isl_take isl_map
*map
, int pos
,
6383 n_out
= isl_map_dim(map
, isl_dim_out
);
6384 map
= isl_map_project_out(map
, isl_dim_out
, pos
+ 1, n_out
- (pos
+ 1));
6385 map
= isl_map_project_out(map
, isl_dim_out
, 0, pos
);
6390 isl_space
*dim
= isl_map_get_space(map
);
6392 return isl_pw_aff_empty(dim
);
6395 pwaff
= basic_map_dim_opt(map
->p
[0], max
);
6396 for (i
= 1; i
< map
->n
; ++i
) {
6397 isl_pw_aff
*pwaff_i
;
6399 pwaff_i
= basic_map_dim_opt(map
->p
[i
], max
);
6400 pwaff
= isl_pw_aff_union_opt(pwaff
, pwaff_i
, max
);
6408 /* Compute the maximum of the given output dimension as a function of the
6409 * parameters and input dimensions, but independently of
6410 * the other output dimensions.
6412 __isl_give isl_pw_aff
*isl_map_dim_max(__isl_take isl_map
*map
, int pos
)
6414 return map_dim_opt(map
, pos
, 1);
6417 /* Compute the minimum or maximum of the given set dimension
6418 * as a function of the parameters,
6419 * but independently of the other set dimensions.
6421 static __isl_give isl_pw_aff
*set_dim_opt(__isl_take isl_set
*set
, int pos
,
6424 return map_dim_opt(set
, pos
, max
);
6427 /* Compute the maximum of the given set dimension as a function of the
6428 * parameters, but independently of the other set dimensions.
6430 __isl_give isl_pw_aff
*isl_set_dim_max(__isl_take isl_set
*set
, int pos
)
6432 return set_dim_opt(set
, pos
, 1);
6435 /* Compute the minimum of the given set dimension as a function of the
6436 * parameters, but independently of the other set dimensions.
6438 __isl_give isl_pw_aff
*isl_set_dim_min(__isl_take isl_set
*set
, int pos
)
6440 return set_dim_opt(set
, pos
, 0);
6443 /* Apply a preimage specified by "mat" on the parameters of "bset".
6444 * bset is assumed to have only parameters and divs.
6446 static struct isl_basic_set
*basic_set_parameter_preimage(
6447 struct isl_basic_set
*bset
, struct isl_mat
*mat
)
6454 bset
->dim
= isl_space_cow(bset
->dim
);
6458 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6460 isl_assert(bset
->ctx
, mat
->n_row
== 1 + nparam
, goto error
);
6462 bset
->dim
->nparam
= 0;
6463 bset
->dim
->n_out
= nparam
;
6464 bset
= isl_basic_set_preimage(bset
, mat
);
6466 bset
->dim
->nparam
= bset
->dim
->n_out
;
6467 bset
->dim
->n_out
= 0;
6472 isl_basic_set_free(bset
);
6476 /* Apply a preimage specified by "mat" on the parameters of "set".
6477 * set is assumed to have only parameters and divs.
6479 static struct isl_set
*set_parameter_preimage(
6480 struct isl_set
*set
, struct isl_mat
*mat
)
6482 isl_space
*dim
= NULL
;
6488 dim
= isl_space_copy(set
->dim
);
6489 dim
= isl_space_cow(dim
);
6493 nparam
= isl_set_dim(set
, isl_dim_param
);
6495 isl_assert(set
->ctx
, mat
->n_row
== 1 + nparam
, goto error
);
6498 dim
->n_out
= nparam
;
6499 isl_set_reset_space(set
, dim
);
6500 set
= isl_set_preimage(set
, mat
);
6503 dim
= isl_space_copy(set
->dim
);
6504 dim
= isl_space_cow(dim
);
6507 dim
->nparam
= dim
->n_out
;
6509 isl_set_reset_space(set
, dim
);
6512 isl_space_free(dim
);
6519 /* Intersect the basic set "bset" with the affine space specified by the
6520 * equalities in "eq".
6522 static struct isl_basic_set
*basic_set_append_equalities(
6523 struct isl_basic_set
*bset
, struct isl_mat
*eq
)
6531 bset
= isl_basic_set_extend_space(bset
, isl_space_copy(bset
->dim
), 0,
6536 len
= 1 + isl_space_dim(bset
->dim
, isl_dim_all
) + bset
->extra
;
6537 for (i
= 0; i
< eq
->n_row
; ++i
) {
6538 k
= isl_basic_set_alloc_equality(bset
);
6541 isl_seq_cpy(bset
->eq
[k
], eq
->row
[i
], eq
->n_col
);
6542 isl_seq_clr(bset
->eq
[k
] + eq
->n_col
, len
- eq
->n_col
);
6546 bset
= isl_basic_set_gauss(bset
, NULL
);
6547 bset
= isl_basic_set_finalize(bset
);
6552 isl_basic_set_free(bset
);
6556 /* Intersect the set "set" with the affine space specified by the
6557 * equalities in "eq".
6559 static struct isl_set
*set_append_equalities(struct isl_set
*set
,
6567 for (i
= 0; i
< set
->n
; ++i
) {
6568 set
->p
[i
] = basic_set_append_equalities(set
->p
[i
],
6581 /* Given a basic set "bset" that only involves parameters and existentially
6582 * quantified variables, return the index of the first equality
6583 * that only involves parameters. If there is no such equality then
6584 * return bset->n_eq.
6586 * This function assumes that isl_basic_set_gauss has been called on "bset".
6588 static int first_parameter_equality(__isl_keep isl_basic_set
*bset
)
6591 unsigned nparam
, n_div
;
6596 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6597 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
6599 for (i
= 0, j
= n_div
- 1; i
< bset
->n_eq
&& j
>= 0; --j
) {
6600 if (!isl_int_is_zero(bset
->eq
[i
][1 + nparam
+ j
]))
6607 /* Compute an explicit representation for the existentially quantified
6608 * variables in "bset" by computing the "minimal value" of the set
6609 * variables. Since there are no set variables, the computation of
6610 * the minimal value essentially computes an explicit representation
6611 * of the non-empty part(s) of "bset".
6613 * The input only involves parameters and existentially quantified variables.
6614 * All equalities among parameters have been removed.
6616 * Since the existentially quantified variables in the result are in general
6617 * going to be different from those in the input, we first replace
6618 * them by the minimal number of variables based on their equalities.
6619 * This should simplify the parametric integer programming.
6621 static __isl_give isl_set
*base_compute_divs(__isl_take isl_basic_set
*bset
)
6623 isl_morph
*morph1
, *morph2
;
6629 if (bset
->n_eq
== 0)
6630 return isl_basic_set_lexmin(bset
);
6632 morph1
= isl_basic_set_parameter_compression(bset
);
6633 bset
= isl_morph_basic_set(isl_morph_copy(morph1
), bset
);
6634 bset
= isl_basic_set_lift(bset
);
6635 morph2
= isl_basic_set_variable_compression(bset
, isl_dim_set
);
6636 bset
= isl_morph_basic_set(morph2
, bset
);
6637 n
= isl_basic_set_dim(bset
, isl_dim_set
);
6638 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
6640 set
= isl_basic_set_lexmin(bset
);
6642 set
= isl_morph_set(isl_morph_inverse(morph1
), set
);
6647 /* Project the given basic set onto its parameter domain, possibly introducing
6648 * new, explicit, existential variables in the constraints.
6649 * The input has parameters and (possibly implicit) existential variables.
6650 * The output has the same parameters, but only
6651 * explicit existentially quantified variables.
6653 * The actual projection is performed by pip, but pip doesn't seem
6654 * to like equalities very much, so we first remove the equalities
6655 * among the parameters by performing a variable compression on
6656 * the parameters. Afterward, an inverse transformation is performed
6657 * and the equalities among the parameters are inserted back in.
6659 * The variable compression on the parameters may uncover additional
6660 * equalities that were only implicit before. We therefore check
6661 * if there are any new parameter equalities in the result and
6662 * if so recurse. The removal of parameter equalities is required
6663 * for the parameter compression performed by base_compute_divs.
6665 static struct isl_set
*parameter_compute_divs(struct isl_basic_set
*bset
)
6669 struct isl_mat
*T
, *T2
;
6670 struct isl_set
*set
;
6673 bset
= isl_basic_set_cow(bset
);
6677 if (bset
->n_eq
== 0)
6678 return base_compute_divs(bset
);
6680 bset
= isl_basic_set_gauss(bset
, NULL
);
6683 if (isl_basic_set_plain_is_empty(bset
))
6684 return isl_set_from_basic_set(bset
);
6686 i
= first_parameter_equality(bset
);
6687 if (i
== bset
->n_eq
)
6688 return base_compute_divs(bset
);
6690 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6691 eq
= isl_mat_sub_alloc6(bset
->ctx
, bset
->eq
, i
, bset
->n_eq
- i
,
6693 eq
= isl_mat_cow(eq
);
6694 T
= isl_mat_variable_compression(isl_mat_copy(eq
), &T2
);
6695 if (T
&& T
->n_col
== 0) {
6699 bset
= isl_basic_set_set_to_empty(bset
);
6700 return isl_set_from_basic_set(bset
);
6702 bset
= basic_set_parameter_preimage(bset
, T
);
6704 i
= first_parameter_equality(bset
);
6707 else if (i
== bset
->n_eq
)
6708 set
= base_compute_divs(bset
);
6710 set
= parameter_compute_divs(bset
);
6711 set
= set_parameter_preimage(set
, T2
);
6712 set
= set_append_equalities(set
, eq
);
6716 /* Insert the divs from "ls" before those of "bmap".
6718 * The number of columns is not changed, which means that the last
6719 * dimensions of "bmap" are being reintepreted as the divs from "ls".
6720 * The caller is responsible for removing the same number of dimensions
6721 * from the space of "bmap".
6723 static __isl_give isl_basic_map
*insert_divs_from_local_space(
6724 __isl_take isl_basic_map
*bmap
, __isl_keep isl_local_space
*ls
)
6730 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
6734 old_n_div
= bmap
->n_div
;
6735 bmap
= insert_div_rows(bmap
, n_div
);
6739 for (i
= 0; i
< n_div
; ++i
) {
6740 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], ls
->div
->n_col
);
6741 isl_seq_clr(bmap
->div
[i
] + ls
->div
->n_col
, old_n_div
);
6747 /* Replace the space of "bmap" by the space and divs of "ls".
6749 * If "ls" has any divs, then we simplify the result since we may
6750 * have discovered some additional equalities that could simplify
6751 * the div expressions.
6753 static __isl_give isl_basic_map
*basic_replace_space_by_local_space(
6754 __isl_take isl_basic_map
*bmap
, __isl_take isl_local_space
*ls
)
6758 bmap
= isl_basic_map_cow(bmap
);
6762 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
6763 bmap
= insert_divs_from_local_space(bmap
, ls
);
6767 isl_space_free(bmap
->dim
);
6768 bmap
->dim
= isl_local_space_get_space(ls
);
6772 isl_local_space_free(ls
);
6774 bmap
= isl_basic_map_simplify(bmap
);
6775 bmap
= isl_basic_map_finalize(bmap
);
6778 isl_basic_map_free(bmap
);
6779 isl_local_space_free(ls
);
6783 /* Replace the space of "map" by the space and divs of "ls".
6785 static __isl_give isl_map
*replace_space_by_local_space(__isl_take isl_map
*map
,
6786 __isl_take isl_local_space
*ls
)
6790 map
= isl_map_cow(map
);
6794 for (i
= 0; i
< map
->n
; ++i
) {
6795 map
->p
[i
] = basic_replace_space_by_local_space(map
->p
[i
],
6796 isl_local_space_copy(ls
));
6800 isl_space_free(map
->dim
);
6801 map
->dim
= isl_local_space_get_space(ls
);
6805 isl_local_space_free(ls
);
6808 isl_local_space_free(ls
);
6813 /* Compute an explicit representation for the existentially
6814 * quantified variables for which do not know any explicit representation yet.
6816 * We first sort the existentially quantified variables so that the
6817 * existentially quantified variables for which we already have an explicit
6818 * representation are placed before those for which we do not.
6819 * The input dimensions, the output dimensions and the existentially
6820 * quantified variables for which we already have an explicit
6821 * representation are then turned into parameters.
6822 * compute_divs returns a map with the same parameters and
6823 * no input or output dimensions and the dimension specification
6824 * is reset to that of the input, including the existentially quantified
6825 * variables for which we already had an explicit representation.
6827 static struct isl_map
*compute_divs(struct isl_basic_map
*bmap
)
6829 struct isl_basic_set
*bset
;
6830 struct isl_set
*set
;
6831 struct isl_map
*map
;
6833 isl_local_space
*ls
;
6840 bmap
= isl_basic_map_sort_divs(bmap
);
6841 bmap
= isl_basic_map_cow(bmap
);
6845 for (n_known
= 0; n_known
< bmap
->n_div
; ++n_known
)
6846 if (isl_int_is_zero(bmap
->div
[n_known
][0]))
6849 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
6850 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
6851 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
6852 dim
= isl_space_set_alloc(bmap
->ctx
,
6853 nparam
+ n_in
+ n_out
+ n_known
, 0);
6857 ls
= isl_basic_map_get_local_space(bmap
);
6858 ls
= isl_local_space_drop_dims(ls
, isl_dim_div
,
6859 n_known
, bmap
->n_div
- n_known
);
6861 for (i
= n_known
; i
< bmap
->n_div
; ++i
)
6862 swap_div(bmap
, i
- n_known
, i
);
6863 bmap
->n_div
-= n_known
;
6864 bmap
->extra
-= n_known
;
6866 bmap
= isl_basic_map_reset_space(bmap
, dim
);
6867 bset
= (struct isl_basic_set
*)bmap
;
6869 set
= parameter_compute_divs(bset
);
6870 map
= (struct isl_map
*)set
;
6871 map
= replace_space_by_local_space(map
, ls
);
6875 isl_basic_map_free(bmap
);
6879 int isl_basic_map_divs_known(__isl_keep isl_basic_map
*bmap
)
6887 off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
6888 for (i
= 0; i
< bmap
->n_div
; ++i
) {
6889 if (isl_int_is_zero(bmap
->div
[i
][0]))
6891 isl_assert(bmap
->ctx
, isl_int_is_zero(bmap
->div
[i
][1+1+off
+i
]),
6897 static int map_divs_known(__isl_keep isl_map
*map
)
6904 for (i
= 0; i
< map
->n
; ++i
) {
6905 int known
= isl_basic_map_divs_known(map
->p
[i
]);
6913 /* If bmap contains any unknown divs, then compute explicit
6914 * expressions for them. However, this computation may be
6915 * quite expensive, so first try to remove divs that aren't
6918 struct isl_map
*isl_basic_map_compute_divs(struct isl_basic_map
*bmap
)
6921 struct isl_map
*map
;
6923 known
= isl_basic_map_divs_known(bmap
);
6927 return isl_map_from_basic_map(bmap
);
6929 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
6931 known
= isl_basic_map_divs_known(bmap
);
6935 return isl_map_from_basic_map(bmap
);
6937 map
= compute_divs(bmap
);
6940 isl_basic_map_free(bmap
);
6944 struct isl_map
*isl_map_compute_divs(struct isl_map
*map
)
6948 struct isl_map
*res
;
6955 known
= map_divs_known(map
);
6963 res
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[0]));
6964 for (i
= 1 ; i
< map
->n
; ++i
) {
6966 r2
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[i
]));
6967 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
))
6968 res
= isl_map_union_disjoint(res
, r2
);
6970 res
= isl_map_union(res
, r2
);
6977 struct isl_set
*isl_basic_set_compute_divs(struct isl_basic_set
*bset
)
6979 return (struct isl_set
*)
6980 isl_basic_map_compute_divs((struct isl_basic_map
*)bset
);
6983 struct isl_set
*isl_set_compute_divs(struct isl_set
*set
)
6985 return (struct isl_set
*)
6986 isl_map_compute_divs((struct isl_map
*)set
);
6989 struct isl_set
*isl_map_domain(struct isl_map
*map
)
6992 struct isl_set
*set
;
6997 map
= isl_map_cow(map
);
7001 set
= (struct isl_set
*)map
;
7002 set
->dim
= isl_space_domain(set
->dim
);
7005 for (i
= 0; i
< map
->n
; ++i
) {
7006 set
->p
[i
] = isl_basic_map_domain(map
->p
[i
]);
7010 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
7011 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
7018 /* Return the union of "map1" and "map2", where we assume for now that
7019 * "map1" and "map2" are disjoint. Note that the basic maps inside
7020 * "map1" or "map2" may not be disjoint from each other.
7021 * Also note that this function is also called from isl_map_union,
7022 * which takes care of handling the situation where "map1" and "map2"
7023 * may not be disjoint.
7025 * If one of the inputs is empty, we can simply return the other input.
7026 * Similarly, if one of the inputs is universal, then it is equal to the union.
7028 static __isl_give isl_map
*map_union_disjoint(__isl_take isl_map
*map1
,
7029 __isl_take isl_map
*map2
)
7033 struct isl_map
*map
= NULL
;
7039 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
7040 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
7041 "spaces don't match", goto error
);
7052 is_universe
= isl_map_plain_is_universe(map1
);
7053 if (is_universe
< 0)
7060 is_universe
= isl_map_plain_is_universe(map2
);
7061 if (is_universe
< 0)
7068 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
7069 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
7070 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7072 map
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
7073 map1
->n
+ map2
->n
, flags
);
7076 for (i
= 0; i
< map1
->n
; ++i
) {
7077 map
= isl_map_add_basic_map(map
,
7078 isl_basic_map_copy(map1
->p
[i
]));
7082 for (i
= 0; i
< map2
->n
; ++i
) {
7083 map
= isl_map_add_basic_map(map
,
7084 isl_basic_map_copy(map2
->p
[i
]));
7098 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7099 * guaranteed to be disjoint by the caller.
7101 * Note that this functions is called from within isl_map_make_disjoint,
7102 * so we have to be careful not to touch the constraints of the inputs
7105 __isl_give isl_map
*isl_map_union_disjoint(__isl_take isl_map
*map1
,
7106 __isl_take isl_map
*map2
)
7108 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_disjoint
);
7111 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7112 * not be disjoint. The parameters are assumed to have been aligned.
7114 * We currently simply call map_union_disjoint, the internal operation
7115 * of which does not really depend on the inputs being disjoint.
7116 * If the result contains more than one basic map, then we clear
7117 * the disjoint flag since the result may contain basic maps from
7118 * both inputs and these are not guaranteed to be disjoint.
7120 * As a special case, if "map1" and "map2" are obviously equal,
7121 * then we simply return "map1".
7123 static __isl_give isl_map
*map_union_aligned(__isl_take isl_map
*map1
,
7124 __isl_take isl_map
*map2
)
7131 equal
= isl_map_plain_is_equal(map1
, map2
);
7139 map1
= map_union_disjoint(map1
, map2
);
7143 ISL_F_CLR(map1
, ISL_MAP_DISJOINT
);
7151 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7154 __isl_give isl_map
*isl_map_union(__isl_take isl_map
*map1
,
7155 __isl_take isl_map
*map2
)
7157 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_aligned
);
7160 struct isl_set
*isl_set_union_disjoint(
7161 struct isl_set
*set1
, struct isl_set
*set2
)
7163 return (struct isl_set
*)
7164 isl_map_union_disjoint(
7165 (struct isl_map
*)set1
, (struct isl_map
*)set2
);
7168 struct isl_set
*isl_set_union(struct isl_set
*set1
, struct isl_set
*set2
)
7170 return (struct isl_set
*)
7171 isl_map_union((struct isl_map
*)set1
, (struct isl_map
*)set2
);
7174 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7177 * "map" and "set" are assumed to be compatible and non-NULL.
7179 static __isl_give isl_map
*map_intersect_set(__isl_take isl_map
*map
,
7180 __isl_take isl_set
*set
,
7181 __isl_give isl_basic_map
*fn(__isl_take isl_basic_map
*bmap
,
7182 __isl_take isl_basic_set
*bset
))
7185 struct isl_map
*result
;
7188 if (isl_set_plain_is_universe(set
)) {
7193 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
) &&
7194 ISL_F_ISSET(set
, ISL_MAP_DISJOINT
))
7195 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7197 result
= isl_map_alloc_space(isl_space_copy(map
->dim
),
7198 map
->n
* set
->n
, flags
);
7199 for (i
= 0; result
&& i
< map
->n
; ++i
)
7200 for (j
= 0; j
< set
->n
; ++j
) {
7201 result
= isl_map_add_basic_map(result
,
7202 fn(isl_basic_map_copy(map
->p
[i
]),
7203 isl_basic_set_copy(set
->p
[j
])));
7213 static __isl_give isl_map
*map_intersect_range(__isl_take isl_map
*map
,
7214 __isl_take isl_set
*set
)
7219 if (!isl_map_compatible_range(map
, set
))
7220 isl_die(set
->ctx
, isl_error_invalid
,
7221 "incompatible spaces", goto error
);
7223 return map_intersect_set(map
, set
, &isl_basic_map_intersect_range
);
7230 __isl_give isl_map
*isl_map_intersect_range(__isl_take isl_map
*map
,
7231 __isl_take isl_set
*set
)
7233 return isl_map_align_params_map_map_and(map
, set
, &map_intersect_range
);
7236 static __isl_give isl_map
*map_intersect_domain(__isl_take isl_map
*map
,
7237 __isl_take isl_set
*set
)
7242 if (!isl_map_compatible_domain(map
, set
))
7243 isl_die(set
->ctx
, isl_error_invalid
,
7244 "incompatible spaces", goto error
);
7246 return map_intersect_set(map
, set
, &isl_basic_map_intersect_domain
);
7253 __isl_give isl_map
*isl_map_intersect_domain(__isl_take isl_map
*map
,
7254 __isl_take isl_set
*set
)
7256 return isl_map_align_params_map_map_and(map
, set
,
7257 &map_intersect_domain
);
7260 static __isl_give isl_map
*map_apply_domain(__isl_take isl_map
*map1
,
7261 __isl_take isl_map
*map2
)
7265 map1
= isl_map_reverse(map1
);
7266 map1
= isl_map_apply_range(map1
, map2
);
7267 return isl_map_reverse(map1
);
7274 __isl_give isl_map
*isl_map_apply_domain(__isl_take isl_map
*map1
,
7275 __isl_take isl_map
*map2
)
7277 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_domain
);
7280 static __isl_give isl_map
*map_apply_range(__isl_take isl_map
*map1
,
7281 __isl_take isl_map
*map2
)
7283 isl_space
*dim_result
;
7284 struct isl_map
*result
;
7290 dim_result
= isl_space_join(isl_space_copy(map1
->dim
),
7291 isl_space_copy(map2
->dim
));
7293 result
= isl_map_alloc_space(dim_result
, map1
->n
* map2
->n
, 0);
7296 for (i
= 0; i
< map1
->n
; ++i
)
7297 for (j
= 0; j
< map2
->n
; ++j
) {
7298 result
= isl_map_add_basic_map(result
,
7299 isl_basic_map_apply_range(
7300 isl_basic_map_copy(map1
->p
[i
]),
7301 isl_basic_map_copy(map2
->p
[j
])));
7307 if (result
&& result
->n
<= 1)
7308 ISL_F_SET(result
, ISL_MAP_DISJOINT
);
7316 __isl_give isl_map
*isl_map_apply_range(__isl_take isl_map
*map1
,
7317 __isl_take isl_map
*map2
)
7319 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_range
);
7323 * returns range - domain
7325 struct isl_basic_set
*isl_basic_map_deltas(struct isl_basic_map
*bmap
)
7327 isl_space
*target_space
;
7328 struct isl_basic_set
*bset
;
7335 isl_assert(bmap
->ctx
, isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
7336 bmap
->dim
, isl_dim_out
),
7338 target_space
= isl_space_domain(isl_basic_map_get_space(bmap
));
7339 dim
= isl_basic_map_n_in(bmap
);
7340 nparam
= isl_basic_map_n_param(bmap
);
7341 bmap
= isl_basic_map_from_range(isl_basic_map_wrap(bmap
));
7342 bmap
= isl_basic_map_add_dims(bmap
, isl_dim_in
, dim
);
7343 bmap
= isl_basic_map_extend_constraints(bmap
, dim
, 0);
7344 for (i
= 0; i
< dim
; ++i
) {
7345 int j
= isl_basic_map_alloc_equality(bmap
);
7347 bmap
= isl_basic_map_free(bmap
);
7350 isl_seq_clr(bmap
->eq
[j
], 1 + isl_basic_map_total_dim(bmap
));
7351 isl_int_set_si(bmap
->eq
[j
][1+nparam
+i
], 1);
7352 isl_int_set_si(bmap
->eq
[j
][1+nparam
+dim
+i
], 1);
7353 isl_int_set_si(bmap
->eq
[j
][1+nparam
+2*dim
+i
], -1);
7355 bset
= isl_basic_map_domain(bmap
);
7356 bset
= isl_basic_set_reset_space(bset
, target_space
);
7359 isl_basic_map_free(bmap
);
7364 * returns range - domain
7366 __isl_give isl_set
*isl_map_deltas(__isl_take isl_map
*map
)
7370 struct isl_set
*result
;
7375 isl_assert(map
->ctx
, isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
7376 map
->dim
, isl_dim_out
),
7378 dim
= isl_map_get_space(map
);
7379 dim
= isl_space_domain(dim
);
7380 result
= isl_set_alloc_space(dim
, map
->n
, 0);
7383 for (i
= 0; i
< map
->n
; ++i
)
7384 result
= isl_set_add_basic_set(result
,
7385 isl_basic_map_deltas(isl_basic_map_copy(map
->p
[i
])));
7394 * returns [domain -> range] -> range - domain
7396 __isl_give isl_basic_map
*isl_basic_map_deltas_map(
7397 __isl_take isl_basic_map
*bmap
)
7401 isl_basic_map
*domain
;
7405 if (!isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
7406 bmap
->dim
, isl_dim_out
))
7407 isl_die(bmap
->ctx
, isl_error_invalid
,
7408 "domain and range don't match", goto error
);
7410 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
7411 n
= isl_basic_map_dim(bmap
, isl_dim_in
);
7413 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
7414 domain
= isl_basic_map_universe(dim
);
7416 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
7417 bmap
= isl_basic_map_apply_range(bmap
, domain
);
7418 bmap
= isl_basic_map_extend_constraints(bmap
, n
, 0);
7420 total
= isl_basic_map_total_dim(bmap
);
7422 for (i
= 0; i
< n
; ++i
) {
7423 k
= isl_basic_map_alloc_equality(bmap
);
7426 isl_seq_clr(bmap
->eq
[k
], 1 + total
);
7427 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ i
], 1);
7428 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ i
], -1);
7429 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ n
+ i
], 1);
7432 bmap
= isl_basic_map_gauss(bmap
, NULL
);
7433 return isl_basic_map_finalize(bmap
);
7435 isl_basic_map_free(bmap
);
7440 * returns [domain -> range] -> range - domain
7442 __isl_give isl_map
*isl_map_deltas_map(__isl_take isl_map
*map
)
7445 isl_space
*domain_dim
;
7450 if (!isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
7451 map
->dim
, isl_dim_out
))
7452 isl_die(map
->ctx
, isl_error_invalid
,
7453 "domain and range don't match", goto error
);
7455 map
= isl_map_cow(map
);
7459 domain_dim
= isl_space_from_range(isl_space_domain(isl_map_get_space(map
)));
7460 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
7461 map
->dim
= isl_space_join(map
->dim
, domain_dim
);
7464 for (i
= 0; i
< map
->n
; ++i
) {
7465 map
->p
[i
] = isl_basic_map_deltas_map(map
->p
[i
]);
7469 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
7476 static __isl_give isl_basic_map
*basic_map_identity(__isl_take isl_space
*dims
)
7478 struct isl_basic_map
*bmap
;
7486 nparam
= dims
->nparam
;
7488 bmap
= isl_basic_map_alloc_space(dims
, 0, dim
, 0);
7492 for (i
= 0; i
< dim
; ++i
) {
7493 int j
= isl_basic_map_alloc_equality(bmap
);
7496 isl_seq_clr(bmap
->eq
[j
], 1 + isl_basic_map_total_dim(bmap
));
7497 isl_int_set_si(bmap
->eq
[j
][1+nparam
+i
], 1);
7498 isl_int_set_si(bmap
->eq
[j
][1+nparam
+dim
+i
], -1);
7500 return isl_basic_map_finalize(bmap
);
7502 isl_basic_map_free(bmap
);
7506 __isl_give isl_basic_map
*isl_basic_map_identity(__isl_take isl_space
*dim
)
7510 if (dim
->n_in
!= dim
->n_out
)
7511 isl_die(dim
->ctx
, isl_error_invalid
,
7512 "number of input and output dimensions needs to be "
7513 "the same", goto error
);
7514 return basic_map_identity(dim
);
7516 isl_space_free(dim
);
7520 __isl_give isl_map
*isl_map_identity(__isl_take isl_space
*dim
)
7522 return isl_map_from_basic_map(isl_basic_map_identity(dim
));
7525 __isl_give isl_map
*isl_set_identity(__isl_take isl_set
*set
)
7527 isl_space
*dim
= isl_set_get_space(set
);
7529 id
= isl_map_identity(isl_space_map_from_set(dim
));
7530 return isl_map_intersect_range(id
, set
);
7533 /* Construct a basic set with all set dimensions having only non-negative
7536 __isl_give isl_basic_set
*isl_basic_set_positive_orthant(
7537 __isl_take isl_space
*space
)
7542 struct isl_basic_set
*bset
;
7546 nparam
= space
->nparam
;
7548 bset
= isl_basic_set_alloc_space(space
, 0, 0, dim
);
7551 for (i
= 0; i
< dim
; ++i
) {
7552 int k
= isl_basic_set_alloc_inequality(bset
);
7555 isl_seq_clr(bset
->ineq
[k
], 1 + isl_basic_set_total_dim(bset
));
7556 isl_int_set_si(bset
->ineq
[k
][1 + nparam
+ i
], 1);
7560 isl_basic_set_free(bset
);
7564 /* Construct the half-space x_pos >= 0.
7566 static __isl_give isl_basic_set
*nonneg_halfspace(__isl_take isl_space
*dim
,
7570 isl_basic_set
*nonneg
;
7572 nonneg
= isl_basic_set_alloc_space(dim
, 0, 0, 1);
7573 k
= isl_basic_set_alloc_inequality(nonneg
);
7576 isl_seq_clr(nonneg
->ineq
[k
], 1 + isl_basic_set_total_dim(nonneg
));
7577 isl_int_set_si(nonneg
->ineq
[k
][pos
], 1);
7579 return isl_basic_set_finalize(nonneg
);
7581 isl_basic_set_free(nonneg
);
7585 /* Construct the half-space x_pos <= -1.
7587 static __isl_give isl_basic_set
*neg_halfspace(__isl_take isl_space
*dim
, int pos
)
7592 neg
= isl_basic_set_alloc_space(dim
, 0, 0, 1);
7593 k
= isl_basic_set_alloc_inequality(neg
);
7596 isl_seq_clr(neg
->ineq
[k
], 1 + isl_basic_set_total_dim(neg
));
7597 isl_int_set_si(neg
->ineq
[k
][0], -1);
7598 isl_int_set_si(neg
->ineq
[k
][pos
], -1);
7600 return isl_basic_set_finalize(neg
);
7602 isl_basic_set_free(neg
);
7606 __isl_give isl_set
*isl_set_split_dims(__isl_take isl_set
*set
,
7607 enum isl_dim_type type
, unsigned first
, unsigned n
)
7611 isl_basic_set
*nonneg
;
7619 isl_assert(set
->ctx
, first
+ n
<= isl_set_dim(set
, type
), goto error
);
7621 offset
= pos(set
->dim
, type
);
7622 for (i
= 0; i
< n
; ++i
) {
7623 nonneg
= nonneg_halfspace(isl_set_get_space(set
),
7624 offset
+ first
+ i
);
7625 neg
= neg_halfspace(isl_set_get_space(set
), offset
+ first
+ i
);
7627 set
= isl_set_intersect(set
, isl_basic_set_union(nonneg
, neg
));
7636 static int foreach_orthant(__isl_take isl_set
*set
, int *signs
, int first
,
7637 int len
, int (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
7644 if (isl_set_plain_is_empty(set
)) {
7649 return fn(set
, signs
, user
);
7652 half
= isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set
),
7654 half
= isl_set_intersect(half
, isl_set_copy(set
));
7655 if (foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
) < 0)
7659 half
= isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set
),
7661 half
= isl_set_intersect(half
, set
);
7662 return foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
);
7668 /* Call "fn" on the intersections of "set" with each of the orthants
7669 * (except for obviously empty intersections). The orthant is identified
7670 * by the signs array, with each entry having value 1 or -1 according
7671 * to the sign of the corresponding variable.
7673 int isl_set_foreach_orthant(__isl_keep isl_set
*set
,
7674 int (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
7684 if (isl_set_plain_is_empty(set
))
7687 nparam
= isl_set_dim(set
, isl_dim_param
);
7688 nvar
= isl_set_dim(set
, isl_dim_set
);
7690 signs
= isl_alloc_array(set
->ctx
, int, nparam
+ nvar
);
7692 r
= foreach_orthant(isl_set_copy(set
), signs
, 0, nparam
+ nvar
,
7700 isl_bool
isl_set_is_equal(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
7702 return isl_map_is_equal((struct isl_map
*)set1
, (struct isl_map
*)set2
);
7705 isl_bool
isl_basic_map_is_subset(__isl_keep isl_basic_map
*bmap1
,
7706 __isl_keep isl_basic_map
*bmap2
)
7709 struct isl_map
*map1
;
7710 struct isl_map
*map2
;
7712 if (!bmap1
|| !bmap2
)
7713 return isl_bool_error
;
7715 map1
= isl_map_from_basic_map(isl_basic_map_copy(bmap1
));
7716 map2
= isl_map_from_basic_map(isl_basic_map_copy(bmap2
));
7718 is_subset
= isl_map_is_subset(map1
, map2
);
7726 isl_bool
isl_basic_set_is_subset(__isl_keep isl_basic_set
*bset1
,
7727 __isl_keep isl_basic_set
*bset2
)
7729 return isl_basic_map_is_subset(bset1
, bset2
);
7732 isl_bool
isl_basic_map_is_equal(__isl_keep isl_basic_map
*bmap1
,
7733 __isl_keep isl_basic_map
*bmap2
)
7737 if (!bmap1
|| !bmap2
)
7738 return isl_bool_error
;
7739 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
7740 if (is_subset
!= isl_bool_true
)
7742 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
7746 isl_bool
isl_basic_set_is_equal(__isl_keep isl_basic_set
*bset1
,
7747 __isl_keep isl_basic_set
*bset2
)
7749 return isl_basic_map_is_equal(
7750 (struct isl_basic_map
*)bset1
, (struct isl_basic_map
*)bset2
);
7753 isl_bool
isl_map_is_empty(__isl_keep isl_map
*map
)
7759 return isl_bool_error
;
7760 for (i
= 0; i
< map
->n
; ++i
) {
7761 is_empty
= isl_basic_map_is_empty(map
->p
[i
]);
7763 return isl_bool_error
;
7765 return isl_bool_false
;
7767 return isl_bool_true
;
7770 isl_bool
isl_map_plain_is_empty(__isl_keep isl_map
*map
)
7772 return map
? map
->n
== 0 : isl_bool_error
;
7775 isl_bool
isl_set_plain_is_empty(__isl_keep isl_set
*set
)
7777 return set
? set
->n
== 0 : isl_bool_error
;
7780 isl_bool
isl_set_is_empty(__isl_keep isl_set
*set
)
7782 return isl_map_is_empty((struct isl_map
*)set
);
7785 int isl_map_has_equal_space(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
7790 return isl_space_is_equal(map1
->dim
, map2
->dim
);
7793 int isl_set_has_equal_space(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
7798 return isl_space_is_equal(set1
->dim
, set2
->dim
);
7801 static isl_bool
map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
7806 return isl_bool_error
;
7807 is_subset
= isl_map_is_subset(map1
, map2
);
7808 if (is_subset
!= isl_bool_true
)
7810 is_subset
= isl_map_is_subset(map2
, map1
);
7814 isl_bool
isl_map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
7816 return isl_map_align_params_map_map_and_test(map1
, map2
, &map_is_equal
);
7819 isl_bool
isl_basic_map_is_strict_subset(
7820 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
7824 if (!bmap1
|| !bmap2
)
7825 return isl_bool_error
;
7826 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
7827 if (is_subset
!= isl_bool_true
)
7829 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
7830 if (is_subset
== isl_bool_error
)
7835 isl_bool
isl_map_is_strict_subset(__isl_keep isl_map
*map1
,
7836 __isl_keep isl_map
*map2
)
7841 return isl_bool_error
;
7842 is_subset
= isl_map_is_subset(map1
, map2
);
7843 if (is_subset
!= isl_bool_true
)
7845 is_subset
= isl_map_is_subset(map2
, map1
);
7846 if (is_subset
== isl_bool_error
)
7851 isl_bool
isl_set_is_strict_subset(__isl_keep isl_set
*set1
,
7852 __isl_keep isl_set
*set2
)
7854 return isl_map_is_strict_subset((isl_map
*)set1
, (isl_map
*)set2
);
7857 isl_bool
isl_basic_map_is_universe(__isl_keep isl_basic_map
*bmap
)
7860 return isl_bool_error
;
7861 return bmap
->n_eq
== 0 && bmap
->n_ineq
== 0;
7864 isl_bool
isl_basic_set_is_universe(__isl_keep isl_basic_set
*bset
)
7867 return isl_bool_error
;
7868 return bset
->n_eq
== 0 && bset
->n_ineq
== 0;
7871 isl_bool
isl_map_plain_is_universe(__isl_keep isl_map
*map
)
7876 return isl_bool_error
;
7878 for (i
= 0; i
< map
->n
; ++i
) {
7879 isl_bool r
= isl_basic_map_is_universe(map
->p
[i
]);
7884 return isl_bool_false
;
7887 isl_bool
isl_set_plain_is_universe(__isl_keep isl_set
*set
)
7889 return isl_map_plain_is_universe((isl_map
*) set
);
7892 isl_bool
isl_basic_map_is_empty(__isl_keep isl_basic_map
*bmap
)
7894 struct isl_basic_set
*bset
= NULL
;
7895 struct isl_vec
*sample
= NULL
;
7900 return isl_bool_error
;
7902 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
7903 return isl_bool_true
;
7905 if (isl_basic_map_is_universe(bmap
))
7906 return isl_bool_false
;
7908 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
)) {
7909 struct isl_basic_map
*copy
= isl_basic_map_copy(bmap
);
7910 copy
= isl_basic_map_remove_redundancies(copy
);
7911 empty
= isl_basic_map_plain_is_empty(copy
);
7912 isl_basic_map_free(copy
);
7916 total
= 1 + isl_basic_map_total_dim(bmap
);
7917 if (bmap
->sample
&& bmap
->sample
->size
== total
) {
7918 int contains
= isl_basic_map_contains(bmap
, bmap
->sample
);
7920 return isl_bool_error
;
7922 return isl_bool_false
;
7924 isl_vec_free(bmap
->sample
);
7925 bmap
->sample
= NULL
;
7926 bset
= isl_basic_map_underlying_set(isl_basic_map_copy(bmap
));
7928 return isl_bool_error
;
7929 sample
= isl_basic_set_sample_vec(bset
);
7931 return isl_bool_error
;
7932 empty
= sample
->size
== 0;
7933 isl_vec_free(bmap
->sample
);
7934 bmap
->sample
= sample
;
7936 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
7941 isl_bool
isl_basic_map_plain_is_empty(__isl_keep isl_basic_map
*bmap
)
7944 return isl_bool_error
;
7945 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
);
7948 isl_bool
isl_basic_set_plain_is_empty(__isl_keep isl_basic_set
*bset
)
7951 return isl_bool_error
;
7952 return ISL_F_ISSET(bset
, ISL_BASIC_SET_EMPTY
);
7955 isl_bool
isl_basic_set_is_empty(__isl_keep isl_basic_set
*bset
)
7957 return isl_basic_map_is_empty((struct isl_basic_map
*)bset
);
7960 struct isl_map
*isl_basic_map_union(
7961 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
7963 struct isl_map
*map
;
7964 if (!bmap1
|| !bmap2
)
7967 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
7969 map
= isl_map_alloc_space(isl_space_copy(bmap1
->dim
), 2, 0);
7972 map
= isl_map_add_basic_map(map
, bmap1
);
7973 map
= isl_map_add_basic_map(map
, bmap2
);
7976 isl_basic_map_free(bmap1
);
7977 isl_basic_map_free(bmap2
);
7981 struct isl_set
*isl_basic_set_union(
7982 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
7984 return (struct isl_set
*)isl_basic_map_union(
7985 (struct isl_basic_map
*)bset1
,
7986 (struct isl_basic_map
*)bset2
);
7989 /* Order divs such that any div only depends on previous divs */
7990 struct isl_basic_map
*isl_basic_map_order_divs(struct isl_basic_map
*bmap
)
7998 off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
8000 for (i
= 0; i
< bmap
->n_div
; ++i
) {
8002 if (isl_int_is_zero(bmap
->div
[i
][0]))
8004 pos
= isl_seq_first_non_zero(bmap
->div
[i
]+1+1+off
+i
,
8008 isl_basic_map_swap_div(bmap
, i
, i
+ pos
);
8014 struct isl_basic_set
*isl_basic_set_order_divs(struct isl_basic_set
*bset
)
8016 return (struct isl_basic_set
*)
8017 isl_basic_map_order_divs((struct isl_basic_map
*)bset
);
8020 __isl_give isl_map
*isl_map_order_divs(__isl_take isl_map
*map
)
8027 for (i
= 0; i
< map
->n
; ++i
) {
8028 map
->p
[i
] = isl_basic_map_order_divs(map
->p
[i
]);
8039 /* Apply the expansion computed by isl_merge_divs.
8040 * The expansion itself is given by "exp" while the resulting
8041 * list of divs is given by "div".
8043 __isl_give isl_basic_set
*isl_basic_set_expand_divs(
8044 __isl_take isl_basic_set
*bset
, __isl_take isl_mat
*div
, int *exp
)
8049 bset
= isl_basic_set_cow(bset
);
8053 if (div
->n_row
< bset
->n_div
)
8054 isl_die(isl_mat_get_ctx(div
), isl_error_invalid
,
8055 "not an expansion", goto error
);
8057 n_div
= bset
->n_div
;
8058 bset
= isl_basic_map_extend_space(bset
, isl_space_copy(bset
->dim
),
8059 div
->n_row
- n_div
, 0,
8060 2 * (div
->n_row
- n_div
));
8062 for (i
= n_div
; i
< div
->n_row
; ++i
)
8063 if (isl_basic_set_alloc_div(bset
) < 0)
8067 for (i
= div
->n_row
- 1; i
>= 0; --i
) {
8068 if (j
>= 0 && exp
[j
] == i
) {
8070 isl_basic_map_swap_div(bset
, i
, j
);
8073 isl_seq_cpy(bset
->div
[i
], div
->row
[i
], div
->n_col
);
8074 if (isl_basic_map_add_div_constraints(bset
, i
) < 0)
8082 isl_basic_set_free(bset
);
8087 /* Look for a div in dst that corresponds to the div "div" in src.
8088 * The divs before "div" in src and dst are assumed to be the same.
8090 * Returns -1 if no corresponding div was found and the position
8091 * of the corresponding div in dst otherwise.
8093 static int find_div(struct isl_basic_map
*dst
,
8094 struct isl_basic_map
*src
, unsigned div
)
8098 unsigned total
= isl_space_dim(src
->dim
, isl_dim_all
);
8100 isl_assert(dst
->ctx
, div
<= dst
->n_div
, return -1);
8101 for (i
= div
; i
< dst
->n_div
; ++i
)
8102 if (isl_seq_eq(dst
->div
[i
], src
->div
[div
], 1+1+total
+div
) &&
8103 isl_seq_first_non_zero(dst
->div
[i
]+1+1+total
+div
,
8104 dst
->n_div
- div
) == -1)
8109 /* Align the divs of "dst" to those of "src", adding divs from "src"
8110 * if needed. That is, make sure that the first src->n_div divs
8111 * of the result are equal to those of src.
8113 * The result is not finalized as by design it will have redundant
8114 * divs if any divs from "src" were copied.
8116 __isl_give isl_basic_map
*isl_basic_map_align_divs(
8117 __isl_take isl_basic_map
*dst
, __isl_keep isl_basic_map
*src
)
8120 int known
, extended
;
8124 return isl_basic_map_free(dst
);
8126 if (src
->n_div
== 0)
8129 known
= isl_basic_map_divs_known(src
);
8131 return isl_basic_map_free(dst
);
8133 isl_die(isl_basic_map_get_ctx(src
), isl_error_invalid
,
8134 "some src divs are unknown",
8135 return isl_basic_map_free(dst
));
8137 src
= isl_basic_map_order_divs(src
);
8140 total
= isl_space_dim(src
->dim
, isl_dim_all
);
8141 for (i
= 0; i
< src
->n_div
; ++i
) {
8142 int j
= find_div(dst
, src
, i
);
8145 int extra
= src
->n_div
- i
;
8146 dst
= isl_basic_map_cow(dst
);
8149 dst
= isl_basic_map_extend_space(dst
,
8150 isl_space_copy(dst
->dim
),
8151 extra
, 0, 2 * extra
);
8154 j
= isl_basic_map_alloc_div(dst
);
8156 return isl_basic_map_free(dst
);
8157 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
+i
);
8158 isl_seq_clr(dst
->div
[j
]+1+1+total
+i
, dst
->n_div
- i
);
8159 if (isl_basic_map_add_div_constraints(dst
, j
) < 0)
8160 return isl_basic_map_free(dst
);
8163 isl_basic_map_swap_div(dst
, i
, j
);
8168 struct isl_basic_set
*isl_basic_set_align_divs(
8169 struct isl_basic_set
*dst
, struct isl_basic_set
*src
)
8171 return (struct isl_basic_set
*)isl_basic_map_align_divs(
8172 (struct isl_basic_map
*)dst
, (struct isl_basic_map
*)src
);
8175 struct isl_map
*isl_map_align_divs(struct isl_map
*map
)
8183 map
= isl_map_compute_divs(map
);
8184 map
= isl_map_cow(map
);
8188 for (i
= 1; i
< map
->n
; ++i
)
8189 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], map
->p
[i
]);
8190 for (i
= 1; i
< map
->n
; ++i
) {
8191 map
->p
[i
] = isl_basic_map_align_divs(map
->p
[i
], map
->p
[0]);
8193 return isl_map_free(map
);
8196 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
8200 struct isl_set
*isl_set_align_divs(struct isl_set
*set
)
8202 return (struct isl_set
*)isl_map_align_divs((struct isl_map
*)set
);
8205 /* Align the divs of the basic maps in "map" to those
8206 * of the basic maps in "list", as well as to the other basic maps in "map".
8207 * The elements in "list" are assumed to have known divs.
8209 __isl_give isl_map
*isl_map_align_divs_to_basic_map_list(
8210 __isl_take isl_map
*map
, __isl_keep isl_basic_map_list
*list
)
8214 map
= isl_map_compute_divs(map
);
8215 map
= isl_map_cow(map
);
8217 return isl_map_free(map
);
8221 n
= isl_basic_map_list_n_basic_map(list
);
8222 for (i
= 0; i
< n
; ++i
) {
8223 isl_basic_map
*bmap
;
8225 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
8226 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], bmap
);
8227 isl_basic_map_free(bmap
);
8230 return isl_map_free(map
);
8232 return isl_map_align_divs(map
);
8235 /* Align the divs of each element of "list" to those of "bmap".
8236 * Both "bmap" and the elements of "list" are assumed to have known divs.
8238 __isl_give isl_basic_map_list
*isl_basic_map_list_align_divs_to_basic_map(
8239 __isl_take isl_basic_map_list
*list
, __isl_keep isl_basic_map
*bmap
)
8244 return isl_basic_map_list_free(list
);
8246 n
= isl_basic_map_list_n_basic_map(list
);
8247 for (i
= 0; i
< n
; ++i
) {
8248 isl_basic_map
*bmap_i
;
8250 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
8251 bmap_i
= isl_basic_map_align_divs(bmap_i
, bmap
);
8252 list
= isl_basic_map_list_set_basic_map(list
, i
, bmap_i
);
8258 static __isl_give isl_set
*set_apply( __isl_take isl_set
*set
,
8259 __isl_take isl_map
*map
)
8263 isl_assert(set
->ctx
, isl_map_compatible_domain(map
, set
), goto error
);
8264 map
= isl_map_intersect_domain(map
, set
);
8265 set
= isl_map_range(map
);
8273 __isl_give isl_set
*isl_set_apply( __isl_take isl_set
*set
,
8274 __isl_take isl_map
*map
)
8276 return isl_map_align_params_map_map_and(set
, map
, &set_apply
);
8279 /* There is no need to cow as removing empty parts doesn't change
8280 * the meaning of the set.
8282 struct isl_map
*isl_map_remove_empty_parts(struct isl_map
*map
)
8289 for (i
= map
->n
- 1; i
>= 0; --i
)
8290 remove_if_empty(map
, i
);
8295 struct isl_set
*isl_set_remove_empty_parts(struct isl_set
*set
)
8297 return (struct isl_set
*)
8298 isl_map_remove_empty_parts((struct isl_map
*)set
);
8301 struct isl_basic_map
*isl_map_copy_basic_map(struct isl_map
*map
)
8303 struct isl_basic_map
*bmap
;
8304 if (!map
|| map
->n
== 0)
8306 bmap
= map
->p
[map
->n
-1];
8307 isl_assert(map
->ctx
, ISL_F_ISSET(bmap
, ISL_BASIC_SET_FINAL
), return NULL
);
8308 return isl_basic_map_copy(bmap
);
8311 struct isl_basic_set
*isl_set_copy_basic_set(struct isl_set
*set
)
8313 return (struct isl_basic_set
*)
8314 isl_map_copy_basic_map((struct isl_map
*)set
);
8317 __isl_give isl_map
*isl_map_drop_basic_map(__isl_take isl_map
*map
,
8318 __isl_keep isl_basic_map
*bmap
)
8324 for (i
= map
->n
-1; i
>= 0; --i
) {
8325 if (map
->p
[i
] != bmap
)
8327 map
= isl_map_cow(map
);
8330 isl_basic_map_free(map
->p
[i
]);
8331 if (i
!= map
->n
-1) {
8332 ISL_F_CLR(map
, ISL_SET_NORMALIZED
);
8333 map
->p
[i
] = map
->p
[map
->n
-1];
8344 struct isl_set
*isl_set_drop_basic_set(struct isl_set
*set
,
8345 struct isl_basic_set
*bset
)
8347 return (struct isl_set
*)isl_map_drop_basic_map((struct isl_map
*)set
,
8348 (struct isl_basic_map
*)bset
);
8351 /* Given two basic sets bset1 and bset2, compute the maximal difference
8352 * between the values of dimension pos in bset1 and those in bset2
8353 * for any common value of the parameters and dimensions preceding pos.
8355 static enum isl_lp_result
basic_set_maximal_difference_at(
8356 __isl_keep isl_basic_set
*bset1
, __isl_keep isl_basic_set
*bset2
,
8357 int pos
, isl_int
*opt
)
8360 struct isl_basic_map
*bmap1
= NULL
;
8361 struct isl_basic_map
*bmap2
= NULL
;
8362 struct isl_ctx
*ctx
;
8363 struct isl_vec
*obj
;
8366 unsigned dim1
, dim2
;
8367 enum isl_lp_result res
;
8369 if (!bset1
|| !bset2
)
8370 return isl_lp_error
;
8372 nparam
= isl_basic_set_n_param(bset1
);
8373 dim1
= isl_basic_set_n_dim(bset1
);
8374 dim2
= isl_basic_set_n_dim(bset2
);
8375 dims
= isl_space_alloc(bset1
->ctx
, nparam
, pos
, dim1
- pos
);
8376 bmap1
= isl_basic_map_from_basic_set(isl_basic_set_copy(bset1
), dims
);
8377 dims
= isl_space_alloc(bset2
->ctx
, nparam
, pos
, dim2
- pos
);
8378 bmap2
= isl_basic_map_from_basic_set(isl_basic_set_copy(bset2
), dims
);
8379 if (!bmap1
|| !bmap2
)
8381 bmap1
= isl_basic_map_cow(bmap1
);
8382 bmap1
= isl_basic_map_extend(bmap1
, nparam
,
8383 pos
, (dim1
- pos
) + (dim2
- pos
),
8384 bmap2
->n_div
, bmap2
->n_eq
, bmap2
->n_ineq
);
8385 bmap1
= add_constraints(bmap1
, bmap2
, 0, dim1
- pos
);
8388 total
= isl_basic_map_total_dim(bmap1
);
8390 obj
= isl_vec_alloc(ctx
, 1 + total
);
8393 isl_seq_clr(obj
->block
.data
, 1 + total
);
8394 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
], 1);
8395 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
+(dim1
-pos
)], -1);
8396 res
= isl_basic_map_solve_lp(bmap1
, 1, obj
->block
.data
, ctx
->one
,
8398 isl_basic_map_free(bmap1
);
8402 isl_basic_map_free(bmap2
);
8404 isl_basic_map_free(bmap1
);
8405 return isl_lp_error
;
8408 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
8409 * for any common value of the parameters and dimensions preceding pos
8410 * in both basic sets, the values of dimension pos in bset1 are
8411 * smaller or larger than those in bset2.
8414 * 1 if bset1 follows bset2
8415 * -1 if bset1 precedes bset2
8416 * 0 if bset1 and bset2 are incomparable
8417 * -2 if some error occurred.
8419 int isl_basic_set_compare_at(struct isl_basic_set
*bset1
,
8420 struct isl_basic_set
*bset2
, int pos
)
8423 enum isl_lp_result res
;
8428 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
8430 if (res
== isl_lp_empty
)
8432 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
8433 res
== isl_lp_unbounded
)
8435 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
8444 /* Given two basic sets bset1 and bset2, check whether
8445 * for any common value of the parameters and dimensions preceding pos
8446 * there is a value of dimension pos in bset1 that is larger
8447 * than a value of the same dimension in bset2.
8450 * 1 if there exists such a pair
8451 * 0 if there is no such pair, but there is a pair of equal values
8453 * -2 if some error occurred.
8455 int isl_basic_set_follows_at(__isl_keep isl_basic_set
*bset1
,
8456 __isl_keep isl_basic_set
*bset2
, int pos
)
8459 enum isl_lp_result res
;
8464 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
8466 if (res
== isl_lp_empty
)
8468 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
8469 res
== isl_lp_unbounded
)
8471 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
8473 else if (res
== isl_lp_ok
)
8482 /* Given two sets set1 and set2, check whether
8483 * for any common value of the parameters and dimensions preceding pos
8484 * there is a value of dimension pos in set1 that is larger
8485 * than a value of the same dimension in set2.
8488 * 1 if there exists such a pair
8489 * 0 if there is no such pair, but there is a pair of equal values
8491 * -2 if some error occurred.
8493 int isl_set_follows_at(__isl_keep isl_set
*set1
,
8494 __isl_keep isl_set
*set2
, int pos
)
8502 for (i
= 0; i
< set1
->n
; ++i
)
8503 for (j
= 0; j
< set2
->n
; ++j
) {
8505 f
= isl_basic_set_follows_at(set1
->p
[i
], set2
->p
[j
], pos
);
8506 if (f
== 1 || f
== -2)
8515 static int isl_basic_map_plain_has_fixed_var(__isl_keep isl_basic_map
*bmap
,
8516 unsigned pos
, isl_int
*val
)
8524 total
= isl_basic_map_total_dim(bmap
);
8525 for (i
= 0, d
= total
-1; i
< bmap
->n_eq
&& d
+1 > pos
; ++i
) {
8526 for (; d
+1 > pos
; --d
)
8527 if (!isl_int_is_zero(bmap
->eq
[i
][1+d
]))
8531 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1, d
) != -1)
8533 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1+d
+1, total
-d
-1) != -1)
8535 if (!isl_int_is_one(bmap
->eq
[i
][1+d
]))
8538 isl_int_neg(*val
, bmap
->eq
[i
][0]);
8544 static int isl_map_plain_has_fixed_var(__isl_keep isl_map
*map
,
8545 unsigned pos
, isl_int
*val
)
8557 return isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, val
);
8560 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, &v
);
8561 for (i
= 1; fixed
== 1 && i
< map
->n
; ++i
) {
8562 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[i
], pos
, &tmp
);
8563 if (fixed
== 1 && isl_int_ne(tmp
, v
))
8567 isl_int_set(*val
, v
);
8573 static int isl_basic_set_plain_has_fixed_var(__isl_keep isl_basic_set
*bset
,
8574 unsigned pos
, isl_int
*val
)
8576 return isl_basic_map_plain_has_fixed_var((struct isl_basic_map
*)bset
,
8580 static int isl_set_plain_has_fixed_var(__isl_keep isl_set
*set
, unsigned pos
,
8583 return isl_map_plain_has_fixed_var((struct isl_map
*)set
, pos
, val
);
8586 int isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map
*bmap
,
8587 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
8589 if (pos
>= isl_basic_map_dim(bmap
, type
))
8591 return isl_basic_map_plain_has_fixed_var(bmap
,
8592 isl_basic_map_offset(bmap
, type
) - 1 + pos
, val
);
8595 /* If "bmap" obviously lies on a hyperplane where the given dimension
8596 * has a fixed value, then return that value.
8597 * Otherwise return NaN.
8599 __isl_give isl_val
*isl_basic_map_plain_get_val_if_fixed(
8600 __isl_keep isl_basic_map
*bmap
,
8601 enum isl_dim_type type
, unsigned pos
)
8609 ctx
= isl_basic_map_get_ctx(bmap
);
8610 v
= isl_val_alloc(ctx
);
8613 fixed
= isl_basic_map_plain_is_fixed(bmap
, type
, pos
, &v
->n
);
8615 return isl_val_free(v
);
8617 isl_int_set_si(v
->d
, 1);
8621 return isl_val_nan(ctx
);
8624 int isl_map_plain_is_fixed(__isl_keep isl_map
*map
,
8625 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
8627 if (pos
>= isl_map_dim(map
, type
))
8629 return isl_map_plain_has_fixed_var(map
,
8630 map_offset(map
, type
) - 1 + pos
, val
);
8633 /* If "map" obviously lies on a hyperplane where the given dimension
8634 * has a fixed value, then return that value.
8635 * Otherwise return NaN.
8637 __isl_give isl_val
*isl_map_plain_get_val_if_fixed(__isl_keep isl_map
*map
,
8638 enum isl_dim_type type
, unsigned pos
)
8646 ctx
= isl_map_get_ctx(map
);
8647 v
= isl_val_alloc(ctx
);
8650 fixed
= isl_map_plain_is_fixed(map
, type
, pos
, &v
->n
);
8652 return isl_val_free(v
);
8654 isl_int_set_si(v
->d
, 1);
8658 return isl_val_nan(ctx
);
8661 /* If "set" obviously lies on a hyperplane where the given dimension
8662 * has a fixed value, then return that value.
8663 * Otherwise return NaN.
8665 __isl_give isl_val
*isl_set_plain_get_val_if_fixed(__isl_keep isl_set
*set
,
8666 enum isl_dim_type type
, unsigned pos
)
8668 return isl_map_plain_get_val_if_fixed(set
, type
, pos
);
8671 int isl_set_plain_is_fixed(__isl_keep isl_set
*set
,
8672 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
8674 return isl_map_plain_is_fixed(set
, type
, pos
, val
);
8677 /* Check if dimension dim has fixed value and if so and if val is not NULL,
8678 * then return this fixed value in *val.
8680 int isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set
*bset
,
8681 unsigned dim
, isl_int
*val
)
8683 return isl_basic_set_plain_has_fixed_var(bset
,
8684 isl_basic_set_n_param(bset
) + dim
, val
);
8687 /* Check if dimension dim has fixed value and if so and if val is not NULL,
8688 * then return this fixed value in *val.
8690 int isl_set_plain_dim_is_fixed(__isl_keep isl_set
*set
,
8691 unsigned dim
, isl_int
*val
)
8693 return isl_set_plain_has_fixed_var(set
, isl_set_n_param(set
) + dim
, val
);
8696 /* Check if input variable in has fixed value and if so and if val is not NULL,
8697 * then return this fixed value in *val.
8699 int isl_map_plain_input_is_fixed(__isl_keep isl_map
*map
,
8700 unsigned in
, isl_int
*val
)
8702 return isl_map_plain_has_fixed_var(map
, isl_map_n_param(map
) + in
, val
);
8705 /* Check if dimension dim has an (obvious) fixed lower bound and if so
8706 * and if val is not NULL, then return this lower bound in *val.
8708 int isl_basic_set_plain_dim_has_fixed_lower_bound(
8709 __isl_keep isl_basic_set
*bset
, unsigned dim
, isl_int
*val
)
8711 int i
, i_eq
= -1, i_ineq
= -1;
8718 total
= isl_basic_set_total_dim(bset
);
8719 nparam
= isl_basic_set_n_param(bset
);
8720 for (i
= 0; i
< bset
->n_eq
; ++i
) {
8721 if (isl_int_is_zero(bset
->eq
[i
][1+nparam
+dim
]))
8727 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
8728 if (!isl_int_is_pos(bset
->ineq
[i
][1+nparam
+dim
]))
8730 if (i_eq
!= -1 || i_ineq
!= -1)
8734 if (i_eq
== -1 && i_ineq
== -1)
8736 c
= i_eq
!= -1 ? bset
->eq
[i_eq
] : bset
->ineq
[i_ineq
];
8737 /* The coefficient should always be one due to normalization. */
8738 if (!isl_int_is_one(c
[1+nparam
+dim
]))
8740 if (isl_seq_first_non_zero(c
+1, nparam
+dim
) != -1)
8742 if (isl_seq_first_non_zero(c
+1+nparam
+dim
+1,
8743 total
- nparam
- dim
- 1) != -1)
8746 isl_int_neg(*val
, c
[0]);
8750 int isl_set_plain_dim_has_fixed_lower_bound(__isl_keep isl_set
*set
,
8751 unsigned dim
, isl_int
*val
)
8763 return isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[0],
8767 fixed
= isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[0],
8769 for (i
= 1; fixed
== 1 && i
< set
->n
; ++i
) {
8770 fixed
= isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[i
],
8772 if (fixed
== 1 && isl_int_ne(tmp
, v
))
8776 isl_int_set(*val
, v
);
8782 /* uset_gist depends on constraints without existentially quantified
8783 * variables sorting first.
8785 static int sort_constraint_cmp(const void *p1
, const void *p2
, void *arg
)
8787 isl_int
**c1
= (isl_int
**) p1
;
8788 isl_int
**c2
= (isl_int
**) p2
;
8790 unsigned size
= *(unsigned *) arg
;
8792 l1
= isl_seq_last_non_zero(*c1
+ 1, size
);
8793 l2
= isl_seq_last_non_zero(*c2
+ 1, size
);
8798 return isl_seq_cmp(*c1
+ 1, *c2
+ 1, size
);
8801 static struct isl_basic_map
*isl_basic_map_sort_constraints(
8802 struct isl_basic_map
*bmap
)
8808 if (bmap
->n_ineq
== 0)
8810 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NORMALIZED
))
8812 total
= isl_basic_map_total_dim(bmap
);
8813 if (isl_sort(bmap
->ineq
, bmap
->n_ineq
, sizeof(isl_int
*),
8814 &sort_constraint_cmp
, &total
) < 0)
8815 return isl_basic_map_free(bmap
);
8819 __isl_give isl_basic_set
*isl_basic_set_sort_constraints(
8820 __isl_take isl_basic_set
*bset
)
8822 return (struct isl_basic_set
*)isl_basic_map_sort_constraints(
8823 (struct isl_basic_map
*)bset
);
8826 struct isl_basic_map
*isl_basic_map_normalize(struct isl_basic_map
*bmap
)
8830 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NORMALIZED
))
8832 bmap
= isl_basic_map_remove_redundancies(bmap
);
8833 bmap
= isl_basic_map_sort_constraints(bmap
);
8835 ISL_F_SET(bmap
, ISL_BASIC_MAP_NORMALIZED
);
8839 struct isl_basic_set
*isl_basic_set_normalize(struct isl_basic_set
*bset
)
8841 return (struct isl_basic_set
*)isl_basic_map_normalize(
8842 (struct isl_basic_map
*)bset
);
8845 int isl_basic_map_plain_cmp(const __isl_keep isl_basic_map
*bmap1
,
8846 const __isl_keep isl_basic_map
*bmap2
)
8851 if (!bmap1
|| !bmap2
)
8856 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) !=
8857 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_RATIONAL
))
8858 return ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) ? -1 : 1;
8859 if (isl_basic_map_n_param(bmap1
) != isl_basic_map_n_param(bmap2
))
8860 return isl_basic_map_n_param(bmap1
) - isl_basic_map_n_param(bmap2
);
8861 if (isl_basic_map_n_in(bmap1
) != isl_basic_map_n_in(bmap2
))
8862 return isl_basic_map_n_out(bmap1
) - isl_basic_map_n_out(bmap2
);
8863 if (isl_basic_map_n_out(bmap1
) != isl_basic_map_n_out(bmap2
))
8864 return isl_basic_map_n_out(bmap1
) - isl_basic_map_n_out(bmap2
);
8865 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
) &&
8866 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
8868 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
))
8870 if (ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
8872 if (bmap1
->n_eq
!= bmap2
->n_eq
)
8873 return bmap1
->n_eq
- bmap2
->n_eq
;
8874 if (bmap1
->n_ineq
!= bmap2
->n_ineq
)
8875 return bmap1
->n_ineq
- bmap2
->n_ineq
;
8876 if (bmap1
->n_div
!= bmap2
->n_div
)
8877 return bmap1
->n_div
- bmap2
->n_div
;
8878 total
= isl_basic_map_total_dim(bmap1
);
8879 for (i
= 0; i
< bmap1
->n_eq
; ++i
) {
8880 cmp
= isl_seq_cmp(bmap1
->eq
[i
], bmap2
->eq
[i
], 1+total
);
8884 for (i
= 0; i
< bmap1
->n_ineq
; ++i
) {
8885 cmp
= isl_seq_cmp(bmap1
->ineq
[i
], bmap2
->ineq
[i
], 1+total
);
8889 for (i
= 0; i
< bmap1
->n_div
; ++i
) {
8890 cmp
= isl_seq_cmp(bmap1
->div
[i
], bmap2
->div
[i
], 1+1+total
);
8897 int isl_basic_set_plain_cmp(const __isl_keep isl_basic_set
*bset1
,
8898 const __isl_keep isl_basic_set
*bset2
)
8900 return isl_basic_map_plain_cmp(bset1
, bset2
);
8903 int isl_set_plain_cmp(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
8909 if (set1
->n
!= set2
->n
)
8910 return set1
->n
- set2
->n
;
8912 for (i
= 0; i
< set1
->n
; ++i
) {
8913 cmp
= isl_basic_set_plain_cmp(set1
->p
[i
], set2
->p
[i
]);
8921 isl_bool
isl_basic_map_plain_is_equal(__isl_keep isl_basic_map
*bmap1
,
8922 __isl_keep isl_basic_map
*bmap2
)
8924 if (!bmap1
|| !bmap2
)
8925 return isl_bool_error
;
8926 return isl_basic_map_plain_cmp(bmap1
, bmap2
) == 0;
8929 isl_bool
isl_basic_set_plain_is_equal(__isl_keep isl_basic_set
*bset1
,
8930 __isl_keep isl_basic_set
*bset2
)
8932 return isl_basic_map_plain_is_equal((isl_basic_map
*)bset1
,
8933 (isl_basic_map
*)bset2
);
8936 static int qsort_bmap_cmp(const void *p1
, const void *p2
)
8938 const struct isl_basic_map
*bmap1
= *(const struct isl_basic_map
**)p1
;
8939 const struct isl_basic_map
*bmap2
= *(const struct isl_basic_map
**)p2
;
8941 return isl_basic_map_plain_cmp(bmap1
, bmap2
);
8944 /* Sort the basic maps of "map" and remove duplicate basic maps.
8946 * While removing basic maps, we make sure that the basic maps remain
8947 * sorted because isl_map_normalize expects the basic maps of the result
8950 static __isl_give isl_map
*sort_and_remove_duplicates(__isl_take isl_map
*map
)
8954 map
= isl_map_remove_empty_parts(map
);
8957 qsort(map
->p
, map
->n
, sizeof(struct isl_basic_map
*), qsort_bmap_cmp
);
8958 for (i
= map
->n
- 1; i
>= 1; --i
) {
8959 if (!isl_basic_map_plain_is_equal(map
->p
[i
- 1], map
->p
[i
]))
8961 isl_basic_map_free(map
->p
[i
-1]);
8962 for (j
= i
; j
< map
->n
; ++j
)
8963 map
->p
[j
- 1] = map
->p
[j
];
8970 /* Remove obvious duplicates among the basic maps of "map".
8972 * Unlike isl_map_normalize, this function does not remove redundant
8973 * constraints and only removes duplicates that have exactly the same
8974 * constraints in the input. It does sort the constraints and
8975 * the basic maps to ease the detection of duplicates.
8977 * If "map" has already been normalized or if the basic maps are
8978 * disjoint, then there can be no duplicates.
8980 __isl_give isl_map
*isl_map_remove_obvious_duplicates(__isl_take isl_map
*map
)
8983 isl_basic_map
*bmap
;
8989 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
| ISL_MAP_DISJOINT
))
8991 for (i
= 0; i
< map
->n
; ++i
) {
8992 bmap
= isl_basic_map_copy(map
->p
[i
]);
8993 bmap
= isl_basic_map_sort_constraints(bmap
);
8995 return isl_map_free(map
);
8996 isl_basic_map_free(map
->p
[i
]);
9000 map
= sort_and_remove_duplicates(map
);
9004 /* We normalize in place, but if anything goes wrong we need
9005 * to return NULL, so we need to make sure we don't change the
9006 * meaning of any possible other copies of map.
9008 __isl_give isl_map
*isl_map_normalize(__isl_take isl_map
*map
)
9011 struct isl_basic_map
*bmap
;
9015 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
))
9017 for (i
= 0; i
< map
->n
; ++i
) {
9018 bmap
= isl_basic_map_normalize(isl_basic_map_copy(map
->p
[i
]));
9021 isl_basic_map_free(map
->p
[i
]);
9025 map
= sort_and_remove_duplicates(map
);
9027 ISL_F_SET(map
, ISL_MAP_NORMALIZED
);
9034 struct isl_set
*isl_set_normalize(struct isl_set
*set
)
9036 return (struct isl_set
*)isl_map_normalize((struct isl_map
*)set
);
9039 isl_bool
isl_map_plain_is_equal(__isl_keep isl_map
*map1
,
9040 __isl_keep isl_map
*map2
)
9046 return isl_bool_error
;
9049 return isl_bool_true
;
9050 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
9051 return isl_bool_false
;
9053 map1
= isl_map_copy(map1
);
9054 map2
= isl_map_copy(map2
);
9055 map1
= isl_map_normalize(map1
);
9056 map2
= isl_map_normalize(map2
);
9059 equal
= map1
->n
== map2
->n
;
9060 for (i
= 0; equal
&& i
< map1
->n
; ++i
) {
9061 equal
= isl_basic_map_plain_is_equal(map1
->p
[i
], map2
->p
[i
]);
9071 return isl_bool_error
;
9074 isl_bool
isl_set_plain_is_equal(__isl_keep isl_set
*set1
,
9075 __isl_keep isl_set
*set2
)
9077 return isl_map_plain_is_equal((struct isl_map
*)set1
,
9078 (struct isl_map
*)set2
);
9081 /* Return an interval that ranges from min to max (inclusive)
9083 struct isl_basic_set
*isl_basic_set_interval(struct isl_ctx
*ctx
,
9084 isl_int min
, isl_int max
)
9087 struct isl_basic_set
*bset
= NULL
;
9089 bset
= isl_basic_set_alloc(ctx
, 0, 1, 0, 0, 2);
9093 k
= isl_basic_set_alloc_inequality(bset
);
9096 isl_int_set_si(bset
->ineq
[k
][1], 1);
9097 isl_int_neg(bset
->ineq
[k
][0], min
);
9099 k
= isl_basic_set_alloc_inequality(bset
);
9102 isl_int_set_si(bset
->ineq
[k
][1], -1);
9103 isl_int_set(bset
->ineq
[k
][0], max
);
9107 isl_basic_set_free(bset
);
9111 /* Return the basic maps in "map" as a list.
9113 __isl_give isl_basic_map_list
*isl_map_get_basic_map_list(
9114 __isl_keep isl_map
*map
)
9118 isl_basic_map_list
*list
;
9122 ctx
= isl_map_get_ctx(map
);
9123 list
= isl_basic_map_list_alloc(ctx
, map
->n
);
9125 for (i
= 0; i
< map
->n
; ++i
) {
9126 isl_basic_map
*bmap
;
9128 bmap
= isl_basic_map_copy(map
->p
[i
]);
9129 list
= isl_basic_map_list_add(list
, bmap
);
9135 /* Return the intersection of the elements in the non-empty list "list".
9136 * All elements are assumed to live in the same space.
9138 __isl_give isl_basic_map
*isl_basic_map_list_intersect(
9139 __isl_take isl_basic_map_list
*list
)
9142 isl_basic_map
*bmap
;
9146 n
= isl_basic_map_list_n_basic_map(list
);
9148 isl_die(isl_basic_map_list_get_ctx(list
), isl_error_invalid
,
9149 "expecting non-empty list", goto error
);
9151 bmap
= isl_basic_map_list_get_basic_map(list
, 0);
9152 for (i
= 1; i
< n
; ++i
) {
9153 isl_basic_map
*bmap_i
;
9155 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
9156 bmap
= isl_basic_map_intersect(bmap
, bmap_i
);
9159 isl_basic_map_list_free(list
);
9162 isl_basic_map_list_free(list
);
9166 /* Return the intersection of the elements in the non-empty list "list".
9167 * All elements are assumed to live in the same space.
9169 __isl_give isl_basic_set
*isl_basic_set_list_intersect(
9170 __isl_take isl_basic_set_list
*list
)
9172 return isl_basic_map_list_intersect(list
);
9175 /* Return the Cartesian product of the basic sets in list (in the given order).
9177 __isl_give isl_basic_set
*isl_basic_set_list_product(
9178 __isl_take
struct isl_basic_set_list
*list
)
9186 struct isl_basic_set
*product
= NULL
;
9190 isl_assert(list
->ctx
, list
->n
> 0, goto error
);
9191 isl_assert(list
->ctx
, list
->p
[0], goto error
);
9192 nparam
= isl_basic_set_n_param(list
->p
[0]);
9193 dim
= isl_basic_set_n_dim(list
->p
[0]);
9194 extra
= list
->p
[0]->n_div
;
9195 n_eq
= list
->p
[0]->n_eq
;
9196 n_ineq
= list
->p
[0]->n_ineq
;
9197 for (i
= 1; i
< list
->n
; ++i
) {
9198 isl_assert(list
->ctx
, list
->p
[i
], goto error
);
9199 isl_assert(list
->ctx
,
9200 nparam
== isl_basic_set_n_param(list
->p
[i
]), goto error
);
9201 dim
+= isl_basic_set_n_dim(list
->p
[i
]);
9202 extra
+= list
->p
[i
]->n_div
;
9203 n_eq
+= list
->p
[i
]->n_eq
;
9204 n_ineq
+= list
->p
[i
]->n_ineq
;
9206 product
= isl_basic_set_alloc(list
->ctx
, nparam
, dim
, extra
,
9211 for (i
= 0; i
< list
->n
; ++i
) {
9212 isl_basic_set_add_constraints(product
,
9213 isl_basic_set_copy(list
->p
[i
]), dim
);
9214 dim
+= isl_basic_set_n_dim(list
->p
[i
]);
9216 isl_basic_set_list_free(list
);
9219 isl_basic_set_free(product
);
9220 isl_basic_set_list_free(list
);
9224 struct isl_basic_map
*isl_basic_map_product(
9225 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
9227 isl_space
*dim_result
= NULL
;
9228 struct isl_basic_map
*bmap
;
9229 unsigned in1
, in2
, out1
, out2
, nparam
, total
, pos
;
9230 struct isl_dim_map
*dim_map1
, *dim_map2
;
9232 if (!bmap1
|| !bmap2
)
9235 isl_assert(bmap1
->ctx
, isl_space_match(bmap1
->dim
, isl_dim_param
,
9236 bmap2
->dim
, isl_dim_param
), goto error
);
9237 dim_result
= isl_space_product(isl_space_copy(bmap1
->dim
),
9238 isl_space_copy(bmap2
->dim
));
9240 in1
= isl_basic_map_n_in(bmap1
);
9241 in2
= isl_basic_map_n_in(bmap2
);
9242 out1
= isl_basic_map_n_out(bmap1
);
9243 out2
= isl_basic_map_n_out(bmap2
);
9244 nparam
= isl_basic_map_n_param(bmap1
);
9246 total
= nparam
+ in1
+ in2
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
9247 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9248 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9249 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9250 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9251 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9252 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
9253 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
9254 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
9255 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
9256 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9258 bmap
= isl_basic_map_alloc_space(dim_result
,
9259 bmap1
->n_div
+ bmap2
->n_div
,
9260 bmap1
->n_eq
+ bmap2
->n_eq
,
9261 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9262 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9263 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9264 bmap
= isl_basic_map_simplify(bmap
);
9265 return isl_basic_map_finalize(bmap
);
9267 isl_basic_map_free(bmap1
);
9268 isl_basic_map_free(bmap2
);
9272 __isl_give isl_basic_map
*isl_basic_map_flat_product(
9273 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9275 isl_basic_map
*prod
;
9277 prod
= isl_basic_map_product(bmap1
, bmap2
);
9278 prod
= isl_basic_map_flatten(prod
);
9282 __isl_give isl_basic_set
*isl_basic_set_flat_product(
9283 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
9285 return isl_basic_map_flat_range_product(bset1
, bset2
);
9288 __isl_give isl_basic_map
*isl_basic_map_domain_product(
9289 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9291 isl_space
*space_result
= NULL
;
9292 isl_basic_map
*bmap
;
9293 unsigned in1
, in2
, out
, nparam
, total
, pos
;
9294 struct isl_dim_map
*dim_map1
, *dim_map2
;
9296 if (!bmap1
|| !bmap2
)
9299 space_result
= isl_space_domain_product(isl_space_copy(bmap1
->dim
),
9300 isl_space_copy(bmap2
->dim
));
9302 in1
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9303 in2
= isl_basic_map_dim(bmap2
, isl_dim_in
);
9304 out
= isl_basic_map_dim(bmap1
, isl_dim_out
);
9305 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
9307 total
= nparam
+ in1
+ in2
+ out
+ bmap1
->n_div
+ bmap2
->n_div
;
9308 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9309 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9310 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9311 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9312 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9313 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
9314 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
9315 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
);
9316 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out
);
9317 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9319 bmap
= isl_basic_map_alloc_space(space_result
,
9320 bmap1
->n_div
+ bmap2
->n_div
,
9321 bmap1
->n_eq
+ bmap2
->n_eq
,
9322 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9323 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9324 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9325 bmap
= isl_basic_map_simplify(bmap
);
9326 return isl_basic_map_finalize(bmap
);
9328 isl_basic_map_free(bmap1
);
9329 isl_basic_map_free(bmap2
);
9333 __isl_give isl_basic_map
*isl_basic_map_range_product(
9334 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9336 isl_space
*dim_result
= NULL
;
9337 isl_basic_map
*bmap
;
9338 unsigned in
, out1
, out2
, nparam
, total
, pos
;
9339 struct isl_dim_map
*dim_map1
, *dim_map2
;
9341 if (!bmap1
|| !bmap2
)
9344 if (!isl_space_match(bmap1
->dim
, isl_dim_param
,
9345 bmap2
->dim
, isl_dim_param
))
9346 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
9347 "parameters don't match", goto error
);
9349 dim_result
= isl_space_range_product(isl_space_copy(bmap1
->dim
),
9350 isl_space_copy(bmap2
->dim
));
9352 in
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9353 out1
= isl_basic_map_n_out(bmap1
);
9354 out2
= isl_basic_map_n_out(bmap2
);
9355 nparam
= isl_basic_map_n_param(bmap1
);
9357 total
= nparam
+ in
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
9358 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9359 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9360 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9361 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9362 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9363 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
9364 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in
);
9365 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
9366 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
9367 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9369 bmap
= isl_basic_map_alloc_space(dim_result
,
9370 bmap1
->n_div
+ bmap2
->n_div
,
9371 bmap1
->n_eq
+ bmap2
->n_eq
,
9372 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9373 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9374 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9375 bmap
= isl_basic_map_simplify(bmap
);
9376 return isl_basic_map_finalize(bmap
);
9378 isl_basic_map_free(bmap1
);
9379 isl_basic_map_free(bmap2
);
9383 __isl_give isl_basic_map
*isl_basic_map_flat_range_product(
9384 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9386 isl_basic_map
*prod
;
9388 prod
= isl_basic_map_range_product(bmap1
, bmap2
);
9389 prod
= isl_basic_map_flatten_range(prod
);
9393 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
9394 * and collect the results.
9395 * The result live in the space obtained by calling "space_product"
9396 * on the spaces of "map1" and "map2".
9397 * If "remove_duplicates" is set then the result may contain duplicates
9398 * (even if the inputs do not) and so we try and remove the obvious
9401 static __isl_give isl_map
*map_product(__isl_take isl_map
*map1
,
9402 __isl_take isl_map
*map2
,
9403 __isl_give isl_space
*(*space_product
)(__isl_take isl_space
*left
,
9404 __isl_take isl_space
*right
),
9405 __isl_give isl_basic_map
*(*basic_map_product
)(
9406 __isl_take isl_basic_map
*left
,
9407 __isl_take isl_basic_map
*right
),
9408 int remove_duplicates
)
9411 struct isl_map
*result
;
9417 isl_assert(map1
->ctx
, isl_space_match(map1
->dim
, isl_dim_param
,
9418 map2
->dim
, isl_dim_param
), goto error
);
9420 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
9421 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
9422 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
9424 result
= isl_map_alloc_space(space_product(isl_space_copy(map1
->dim
),
9425 isl_space_copy(map2
->dim
)),
9426 map1
->n
* map2
->n
, flags
);
9429 for (i
= 0; i
< map1
->n
; ++i
)
9430 for (j
= 0; j
< map2
->n
; ++j
) {
9431 struct isl_basic_map
*part
;
9432 part
= basic_map_product(isl_basic_map_copy(map1
->p
[i
]),
9433 isl_basic_map_copy(map2
->p
[j
]));
9434 if (isl_basic_map_is_empty(part
))
9435 isl_basic_map_free(part
);
9437 result
= isl_map_add_basic_map(result
, part
);
9441 if (remove_duplicates
)
9442 result
= isl_map_remove_obvious_duplicates(result
);
9452 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
9454 static __isl_give isl_map
*map_product_aligned(__isl_take isl_map
*map1
,
9455 __isl_take isl_map
*map2
)
9457 return map_product(map1
, map2
, &isl_space_product
,
9458 &isl_basic_map_product
, 0);
9461 __isl_give isl_map
*isl_map_product(__isl_take isl_map
*map1
,
9462 __isl_take isl_map
*map2
)
9464 return isl_map_align_params_map_map_and(map1
, map2
, &map_product_aligned
);
9467 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
9469 __isl_give isl_map
*isl_map_flat_product(__isl_take isl_map
*map1
,
9470 __isl_take isl_map
*map2
)
9474 prod
= isl_map_product(map1
, map2
);
9475 prod
= isl_map_flatten(prod
);
9479 /* Given two set A and B, construct its Cartesian product A x B.
9481 struct isl_set
*isl_set_product(struct isl_set
*set1
, struct isl_set
*set2
)
9483 return isl_map_range_product(set1
, set2
);
9486 __isl_give isl_set
*isl_set_flat_product(__isl_take isl_set
*set1
,
9487 __isl_take isl_set
*set2
)
9489 return isl_map_flat_range_product(set1
, set2
);
9492 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
9494 static __isl_give isl_map
*map_domain_product_aligned(__isl_take isl_map
*map1
,
9495 __isl_take isl_map
*map2
)
9497 return map_product(map1
, map2
, &isl_space_domain_product
,
9498 &isl_basic_map_domain_product
, 1);
9501 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
9503 static __isl_give isl_map
*map_range_product_aligned(__isl_take isl_map
*map1
,
9504 __isl_take isl_map
*map2
)
9506 return map_product(map1
, map2
, &isl_space_range_product
,
9507 &isl_basic_map_range_product
, 1);
9510 __isl_give isl_map
*isl_map_domain_product(__isl_take isl_map
*map1
,
9511 __isl_take isl_map
*map2
)
9513 return isl_map_align_params_map_map_and(map1
, map2
,
9514 &map_domain_product_aligned
);
9517 __isl_give isl_map
*isl_map_range_product(__isl_take isl_map
*map1
,
9518 __isl_take isl_map
*map2
)
9520 return isl_map_align_params_map_map_and(map1
, map2
,
9521 &map_range_product_aligned
);
9524 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
9526 __isl_give isl_map
*isl_map_factor_domain(__isl_take isl_map
*map
)
9529 int total1
, keep1
, total2
, keep2
;
9533 if (!isl_space_domain_is_wrapping(map
->dim
) ||
9534 !isl_space_range_is_wrapping(map
->dim
))
9535 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9536 "not a product", return isl_map_free(map
));
9538 space
= isl_map_get_space(map
);
9539 total1
= isl_space_dim(space
, isl_dim_in
);
9540 total2
= isl_space_dim(space
, isl_dim_out
);
9541 space
= isl_space_factor_domain(space
);
9542 keep1
= isl_space_dim(space
, isl_dim_in
);
9543 keep2
= isl_space_dim(space
, isl_dim_out
);
9544 map
= isl_map_project_out(map
, isl_dim_in
, keep1
, total1
- keep1
);
9545 map
= isl_map_project_out(map
, isl_dim_out
, keep2
, total2
- keep2
);
9546 map
= isl_map_reset_space(map
, space
);
9551 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
9553 __isl_give isl_map
*isl_map_factor_range(__isl_take isl_map
*map
)
9556 int total1
, keep1
, total2
, keep2
;
9560 if (!isl_space_domain_is_wrapping(map
->dim
) ||
9561 !isl_space_range_is_wrapping(map
->dim
))
9562 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9563 "not a product", return isl_map_free(map
));
9565 space
= isl_map_get_space(map
);
9566 total1
= isl_space_dim(space
, isl_dim_in
);
9567 total2
= isl_space_dim(space
, isl_dim_out
);
9568 space
= isl_space_factor_range(space
);
9569 keep1
= isl_space_dim(space
, isl_dim_in
);
9570 keep2
= isl_space_dim(space
, isl_dim_out
);
9571 map
= isl_map_project_out(map
, isl_dim_in
, 0, total1
- keep1
);
9572 map
= isl_map_project_out(map
, isl_dim_out
, 0, total2
- keep2
);
9573 map
= isl_map_reset_space(map
, space
);
9578 /* Given a map of the form [A -> B] -> C, return the map A -> C.
9580 __isl_give isl_map
*isl_map_domain_factor_domain(__isl_take isl_map
*map
)
9587 if (!isl_space_domain_is_wrapping(map
->dim
))
9588 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9589 "domain is not a product", return isl_map_free(map
));
9591 space
= isl_map_get_space(map
);
9592 total
= isl_space_dim(space
, isl_dim_in
);
9593 space
= isl_space_domain_factor_domain(space
);
9594 keep
= isl_space_dim(space
, isl_dim_in
);
9595 map
= isl_map_project_out(map
, isl_dim_in
, keep
, total
- keep
);
9596 map
= isl_map_reset_space(map
, space
);
9601 /* Given a map of the form [A -> B] -> C, return the map B -> C.
9603 __isl_give isl_map
*isl_map_domain_factor_range(__isl_take isl_map
*map
)
9610 if (!isl_space_domain_is_wrapping(map
->dim
))
9611 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9612 "domain is not a product", return isl_map_free(map
));
9614 space
= isl_map_get_space(map
);
9615 total
= isl_space_dim(space
, isl_dim_in
);
9616 space
= isl_space_domain_factor_range(space
);
9617 keep
= isl_space_dim(space
, isl_dim_in
);
9618 map
= isl_map_project_out(map
, isl_dim_in
, 0, total
- keep
);
9619 map
= isl_map_reset_space(map
, space
);
9624 /* Given a map A -> [B -> C], extract the map A -> B.
9626 __isl_give isl_map
*isl_map_range_factor_domain(__isl_take isl_map
*map
)
9633 if (!isl_space_range_is_wrapping(map
->dim
))
9634 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9635 "range is not a product", return isl_map_free(map
));
9637 space
= isl_map_get_space(map
);
9638 total
= isl_space_dim(space
, isl_dim_out
);
9639 space
= isl_space_range_factor_domain(space
);
9640 keep
= isl_space_dim(space
, isl_dim_out
);
9641 map
= isl_map_project_out(map
, isl_dim_out
, keep
, total
- keep
);
9642 map
= isl_map_reset_space(map
, space
);
9647 /* Given a map A -> [B -> C], extract the map A -> C.
9649 __isl_give isl_map
*isl_map_range_factor_range(__isl_take isl_map
*map
)
9656 if (!isl_space_range_is_wrapping(map
->dim
))
9657 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9658 "range is not a product", return isl_map_free(map
));
9660 space
= isl_map_get_space(map
);
9661 total
= isl_space_dim(space
, isl_dim_out
);
9662 space
= isl_space_range_factor_range(space
);
9663 keep
= isl_space_dim(space
, isl_dim_out
);
9664 map
= isl_map_project_out(map
, isl_dim_out
, 0, total
- keep
);
9665 map
= isl_map_reset_space(map
, space
);
9670 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
9672 __isl_give isl_map
*isl_map_flat_domain_product(__isl_take isl_map
*map1
,
9673 __isl_take isl_map
*map2
)
9677 prod
= isl_map_domain_product(map1
, map2
);
9678 prod
= isl_map_flatten_domain(prod
);
9682 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
9684 __isl_give isl_map
*isl_map_flat_range_product(__isl_take isl_map
*map1
,
9685 __isl_take isl_map
*map2
)
9689 prod
= isl_map_range_product(map1
, map2
);
9690 prod
= isl_map_flatten_range(prod
);
9694 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map
*bmap
)
9697 uint32_t hash
= isl_hash_init();
9702 bmap
= isl_basic_map_copy(bmap
);
9703 bmap
= isl_basic_map_normalize(bmap
);
9706 total
= isl_basic_map_total_dim(bmap
);
9707 isl_hash_byte(hash
, bmap
->n_eq
& 0xFF);
9708 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
9710 c_hash
= isl_seq_get_hash(bmap
->eq
[i
], 1 + total
);
9711 isl_hash_hash(hash
, c_hash
);
9713 isl_hash_byte(hash
, bmap
->n_ineq
& 0xFF);
9714 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
9716 c_hash
= isl_seq_get_hash(bmap
->ineq
[i
], 1 + total
);
9717 isl_hash_hash(hash
, c_hash
);
9719 isl_hash_byte(hash
, bmap
->n_div
& 0xFF);
9720 for (i
= 0; i
< bmap
->n_div
; ++i
) {
9722 if (isl_int_is_zero(bmap
->div
[i
][0]))
9724 isl_hash_byte(hash
, i
& 0xFF);
9725 c_hash
= isl_seq_get_hash(bmap
->div
[i
], 1 + 1 + total
);
9726 isl_hash_hash(hash
, c_hash
);
9728 isl_basic_map_free(bmap
);
9732 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set
*bset
)
9734 return isl_basic_map_get_hash((isl_basic_map
*)bset
);
9737 uint32_t isl_map_get_hash(__isl_keep isl_map
*map
)
9744 map
= isl_map_copy(map
);
9745 map
= isl_map_normalize(map
);
9749 hash
= isl_hash_init();
9750 for (i
= 0; i
< map
->n
; ++i
) {
9752 bmap_hash
= isl_basic_map_get_hash(map
->p
[i
]);
9753 isl_hash_hash(hash
, bmap_hash
);
9761 uint32_t isl_set_get_hash(__isl_keep isl_set
*set
)
9763 return isl_map_get_hash((isl_map
*)set
);
9766 /* Check if the value for dimension dim is completely determined
9767 * by the values of the other parameters and variables.
9768 * That is, check if dimension dim is involved in an equality.
9770 int isl_basic_set_dim_is_unique(struct isl_basic_set
*bset
, unsigned dim
)
9777 nparam
= isl_basic_set_n_param(bset
);
9778 for (i
= 0; i
< bset
->n_eq
; ++i
)
9779 if (!isl_int_is_zero(bset
->eq
[i
][1 + nparam
+ dim
]))
9784 /* Check if the value for dimension dim is completely determined
9785 * by the values of the other parameters and variables.
9786 * That is, check if dimension dim is involved in an equality
9787 * for each of the subsets.
9789 int isl_set_dim_is_unique(struct isl_set
*set
, unsigned dim
)
9795 for (i
= 0; i
< set
->n
; ++i
) {
9797 unique
= isl_basic_set_dim_is_unique(set
->p
[i
], dim
);
9804 /* Return the number of basic maps in the (current) representation of "map".
9806 int isl_map_n_basic_map(__isl_keep isl_map
*map
)
9808 return map
? map
->n
: 0;
9811 int isl_set_n_basic_set(__isl_keep isl_set
*set
)
9813 return set
? set
->n
: 0;
9816 isl_stat
isl_map_foreach_basic_map(__isl_keep isl_map
*map
,
9817 isl_stat (*fn
)(__isl_take isl_basic_map
*bmap
, void *user
), void *user
)
9822 return isl_stat_error
;
9824 for (i
= 0; i
< map
->n
; ++i
)
9825 if (fn(isl_basic_map_copy(map
->p
[i
]), user
) < 0)
9826 return isl_stat_error
;
9831 isl_stat
isl_set_foreach_basic_set(__isl_keep isl_set
*set
,
9832 isl_stat (*fn
)(__isl_take isl_basic_set
*bset
, void *user
), void *user
)
9837 return isl_stat_error
;
9839 for (i
= 0; i
< set
->n
; ++i
)
9840 if (fn(isl_basic_set_copy(set
->p
[i
]), user
) < 0)
9841 return isl_stat_error
;
9846 /* Return a list of basic sets, the union of which is equal to "set".
9848 __isl_give isl_basic_set_list
*isl_set_get_basic_set_list(
9849 __isl_keep isl_set
*set
)
9852 isl_basic_set_list
*list
;
9857 list
= isl_basic_set_list_alloc(isl_set_get_ctx(set
), set
->n
);
9858 for (i
= 0; i
< set
->n
; ++i
) {
9859 isl_basic_set
*bset
;
9861 bset
= isl_basic_set_copy(set
->p
[i
]);
9862 list
= isl_basic_set_list_add(list
, bset
);
9868 __isl_give isl_basic_set
*isl_basic_set_lift(__isl_take isl_basic_set
*bset
)
9875 bset
= isl_basic_set_cow(bset
);
9879 dim
= isl_basic_set_get_space(bset
);
9880 dim
= isl_space_lift(dim
, bset
->n_div
);
9883 isl_space_free(bset
->dim
);
9885 bset
->extra
-= bset
->n_div
;
9888 bset
= isl_basic_set_finalize(bset
);
9892 isl_basic_set_free(bset
);
9896 __isl_give isl_set
*isl_set_lift(__isl_take isl_set
*set
)
9902 set
= isl_set_align_divs(set
);
9907 set
= isl_set_cow(set
);
9911 n_div
= set
->p
[0]->n_div
;
9912 dim
= isl_set_get_space(set
);
9913 dim
= isl_space_lift(dim
, n_div
);
9916 isl_space_free(set
->dim
);
9919 for (i
= 0; i
< set
->n
; ++i
) {
9920 set
->p
[i
] = isl_basic_set_lift(set
->p
[i
]);
9931 __isl_give isl_map
*isl_set_lifting(__isl_take isl_set
*set
)
9934 struct isl_basic_map
*bmap
;
9941 set
= isl_set_align_divs(set
);
9946 dim
= isl_set_get_space(set
);
9947 if (set
->n
== 0 || set
->p
[0]->n_div
== 0) {
9949 return isl_map_identity(isl_space_map_from_set(dim
));
9952 n_div
= set
->p
[0]->n_div
;
9953 dim
= isl_space_map_from_set(dim
);
9954 n_param
= isl_space_dim(dim
, isl_dim_param
);
9955 n_set
= isl_space_dim(dim
, isl_dim_in
);
9956 dim
= isl_space_extend(dim
, n_param
, n_set
, n_set
+ n_div
);
9957 bmap
= isl_basic_map_alloc_space(dim
, 0, n_set
, 2 * n_div
);
9958 for (i
= 0; i
< n_set
; ++i
)
9959 bmap
= var_equal(bmap
, i
);
9961 total
= n_param
+ n_set
+ n_set
+ n_div
;
9962 for (i
= 0; i
< n_div
; ++i
) {
9963 k
= isl_basic_map_alloc_inequality(bmap
);
9966 isl_seq_cpy(bmap
->ineq
[k
], set
->p
[0]->div
[i
]+1, 1+n_param
);
9967 isl_seq_clr(bmap
->ineq
[k
]+1+n_param
, n_set
);
9968 isl_seq_cpy(bmap
->ineq
[k
]+1+n_param
+n_set
,
9969 set
->p
[0]->div
[i
]+1+1+n_param
, n_set
+ n_div
);
9970 isl_int_neg(bmap
->ineq
[k
][1+n_param
+n_set
+n_set
+i
],
9971 set
->p
[0]->div
[i
][0]);
9973 l
= isl_basic_map_alloc_inequality(bmap
);
9976 isl_seq_neg(bmap
->ineq
[l
], bmap
->ineq
[k
], 1 + total
);
9977 isl_int_add(bmap
->ineq
[l
][0], bmap
->ineq
[l
][0],
9978 set
->p
[0]->div
[i
][0]);
9979 isl_int_sub_ui(bmap
->ineq
[l
][0], bmap
->ineq
[l
][0], 1);
9983 bmap
= isl_basic_map_simplify(bmap
);
9984 bmap
= isl_basic_map_finalize(bmap
);
9985 return isl_map_from_basic_map(bmap
);
9988 isl_basic_map_free(bmap
);
9992 int isl_basic_set_size(__isl_keep isl_basic_set
*bset
)
10000 dim
= isl_basic_set_total_dim(bset
);
10001 size
+= bset
->n_eq
* (1 + dim
);
10002 size
+= bset
->n_ineq
* (1 + dim
);
10003 size
+= bset
->n_div
* (2 + dim
);
10008 int isl_set_size(__isl_keep isl_set
*set
)
10016 for (i
= 0; i
< set
->n
; ++i
)
10017 size
+= isl_basic_set_size(set
->p
[i
]);
10022 /* Check if there is any lower bound (if lower == 0) and/or upper
10023 * bound (if upper == 0) on the specified dim.
10025 static isl_bool
basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10026 enum isl_dim_type type
, unsigned pos
, int lower
, int upper
)
10031 return isl_bool_error
;
10033 isl_assert(bmap
->ctx
, pos
< isl_basic_map_dim(bmap
, type
),
10034 return isl_bool_error
);
10036 pos
+= isl_basic_map_offset(bmap
, type
);
10038 for (i
= 0; i
< bmap
->n_div
; ++i
) {
10039 if (isl_int_is_zero(bmap
->div
[i
][0]))
10041 if (!isl_int_is_zero(bmap
->div
[i
][1 + pos
]))
10042 return isl_bool_true
;
10045 for (i
= 0; i
< bmap
->n_eq
; ++i
)
10046 if (!isl_int_is_zero(bmap
->eq
[i
][pos
]))
10047 return isl_bool_true
;
10049 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10050 int sgn
= isl_int_sgn(bmap
->ineq
[i
][pos
]);
10057 return lower
&& upper
;
10060 int isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10061 enum isl_dim_type type
, unsigned pos
)
10063 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 0);
10066 isl_bool
isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map
*bmap
,
10067 enum isl_dim_type type
, unsigned pos
)
10069 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 1);
10072 isl_bool
isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map
*bmap
,
10073 enum isl_dim_type type
, unsigned pos
)
10075 return basic_map_dim_is_bounded(bmap
, type
, pos
, 1, 0);
10078 int isl_map_dim_is_bounded(__isl_keep isl_map
*map
,
10079 enum isl_dim_type type
, unsigned pos
)
10086 for (i
= 0; i
< map
->n
; ++i
) {
10088 bounded
= isl_basic_map_dim_is_bounded(map
->p
[i
], type
, pos
);
10089 if (bounded
< 0 || !bounded
)
10096 /* Return 1 if the specified dim is involved in both an upper bound
10097 * and a lower bound.
10099 int isl_set_dim_is_bounded(__isl_keep isl_set
*set
,
10100 enum isl_dim_type type
, unsigned pos
)
10102 return isl_map_dim_is_bounded((isl_map
*)set
, type
, pos
);
10105 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10107 static isl_bool
has_any_bound(__isl_keep isl_map
*map
,
10108 enum isl_dim_type type
, unsigned pos
,
10109 isl_bool (*fn
)(__isl_keep isl_basic_map
*bmap
,
10110 enum isl_dim_type type
, unsigned pos
))
10115 return isl_bool_error
;
10117 for (i
= 0; i
< map
->n
; ++i
) {
10119 bounded
= fn(map
->p
[i
], type
, pos
);
10120 if (bounded
< 0 || bounded
)
10124 return isl_bool_false
;
10127 /* Return 1 if the specified dim is involved in any lower bound.
10129 isl_bool
isl_set_dim_has_any_lower_bound(__isl_keep isl_set
*set
,
10130 enum isl_dim_type type
, unsigned pos
)
10132 return has_any_bound(set
, type
, pos
,
10133 &isl_basic_map_dim_has_lower_bound
);
10136 /* Return 1 if the specified dim is involved in any upper bound.
10138 isl_bool
isl_set_dim_has_any_upper_bound(__isl_keep isl_set
*set
,
10139 enum isl_dim_type type
, unsigned pos
)
10141 return has_any_bound(set
, type
, pos
,
10142 &isl_basic_map_dim_has_upper_bound
);
10145 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10147 static isl_bool
has_bound(__isl_keep isl_map
*map
,
10148 enum isl_dim_type type
, unsigned pos
,
10149 isl_bool (*fn
)(__isl_keep isl_basic_map
*bmap
,
10150 enum isl_dim_type type
, unsigned pos
))
10155 return isl_bool_error
;
10157 for (i
= 0; i
< map
->n
; ++i
) {
10159 bounded
= fn(map
->p
[i
], type
, pos
);
10160 if (bounded
< 0 || !bounded
)
10164 return isl_bool_true
;
10167 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10169 isl_bool
isl_set_dim_has_lower_bound(__isl_keep isl_set
*set
,
10170 enum isl_dim_type type
, unsigned pos
)
10172 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_lower_bound
);
10175 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10177 isl_bool
isl_set_dim_has_upper_bound(__isl_keep isl_set
*set
,
10178 enum isl_dim_type type
, unsigned pos
)
10180 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_upper_bound
);
10183 /* For each of the "n" variables starting at "first", determine
10184 * the sign of the variable and put the results in the first "n"
10185 * elements of the array "signs".
10187 * 1 means that the variable is non-negative
10188 * -1 means that the variable is non-positive
10189 * 0 means the variable attains both positive and negative values.
10191 int isl_basic_set_vars_get_sign(__isl_keep isl_basic_set
*bset
,
10192 unsigned first
, unsigned n
, int *signs
)
10194 isl_vec
*bound
= NULL
;
10195 struct isl_tab
*tab
= NULL
;
10196 struct isl_tab_undo
*snap
;
10199 if (!bset
|| !signs
)
10202 bound
= isl_vec_alloc(bset
->ctx
, 1 + isl_basic_set_total_dim(bset
));
10203 tab
= isl_tab_from_basic_set(bset
, 0);
10204 if (!bound
|| !tab
)
10207 isl_seq_clr(bound
->el
, bound
->size
);
10208 isl_int_set_si(bound
->el
[0], -1);
10210 snap
= isl_tab_snap(tab
);
10211 for (i
= 0; i
< n
; ++i
) {
10214 isl_int_set_si(bound
->el
[1 + first
+ i
], -1);
10215 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10217 empty
= tab
->empty
;
10218 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10219 if (isl_tab_rollback(tab
, snap
) < 0)
10227 isl_int_set_si(bound
->el
[1 + first
+ i
], 1);
10228 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10230 empty
= tab
->empty
;
10231 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10232 if (isl_tab_rollback(tab
, snap
) < 0)
10235 signs
[i
] = empty
? -1 : 0;
10239 isl_vec_free(bound
);
10243 isl_vec_free(bound
);
10247 int isl_basic_set_dims_get_sign(__isl_keep isl_basic_set
*bset
,
10248 enum isl_dim_type type
, unsigned first
, unsigned n
, int *signs
)
10250 if (!bset
|| !signs
)
10252 isl_assert(bset
->ctx
, first
+ n
<= isl_basic_set_dim(bset
, type
),
10255 first
+= pos(bset
->dim
, type
) - 1;
10256 return isl_basic_set_vars_get_sign(bset
, first
, n
, signs
);
10259 /* Is it possible for the integer division "div" to depend (possibly
10260 * indirectly) on any output dimensions?
10262 * If the div is undefined, then we conservatively assume that it
10263 * may depend on them.
10264 * Otherwise, we check if it actually depends on them or on any integer
10265 * divisions that may depend on them.
10267 static int div_may_involve_output(__isl_keep isl_basic_map
*bmap
, int div
)
10270 unsigned n_out
, o_out
;
10271 unsigned n_div
, o_div
;
10273 if (isl_int_is_zero(bmap
->div
[div
][0]))
10276 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10277 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10279 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + o_out
, n_out
) != -1)
10282 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10283 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10285 for (i
= 0; i
< n_div
; ++i
) {
10286 if (isl_int_is_zero(bmap
->div
[div
][1 + o_div
+ i
]))
10288 if (div_may_involve_output(bmap
, i
))
10295 /* Return the index of the equality of "bmap" that defines
10296 * the output dimension "pos" in terms of earlier dimensions.
10297 * The equality may also involve integer divisions, as long
10298 * as those integer divisions are defined in terms of
10299 * parameters or input dimensions.
10300 * Return bmap->n_eq if there is no such equality.
10301 * Return -1 on error.
10303 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map
*bmap
,
10307 unsigned n_out
, o_out
;
10308 unsigned n_div
, o_div
;
10313 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10314 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10315 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10316 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10318 for (j
= 0; j
< bmap
->n_eq
; ++j
) {
10319 if (isl_int_is_zero(bmap
->eq
[j
][o_out
+ pos
]))
10321 if (isl_seq_first_non_zero(bmap
->eq
[j
] + o_out
+ pos
+ 1,
10322 n_out
- (pos
+ 1)) != -1)
10324 for (k
= 0; k
< n_div
; ++k
) {
10325 if (isl_int_is_zero(bmap
->eq
[j
][o_div
+ k
]))
10327 if (div_may_involve_output(bmap
, k
))
10337 /* Check if the given basic map is obviously single-valued.
10338 * In particular, for each output dimension, check that there is
10339 * an equality that defines the output dimension in terms of
10340 * earlier dimensions.
10342 isl_bool
isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map
*bmap
)
10348 return isl_bool_error
;
10350 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10352 for (i
= 0; i
< n_out
; ++i
) {
10355 eq
= isl_basic_map_output_defining_equality(bmap
, i
);
10357 return isl_bool_error
;
10358 if (eq
>= bmap
->n_eq
)
10359 return isl_bool_false
;
10362 return isl_bool_true
;
10365 /* Check if the given basic map is single-valued.
10366 * We simply compute
10370 * and check if the result is a subset of the identity mapping.
10372 isl_bool
isl_basic_map_is_single_valued(__isl_keep isl_basic_map
*bmap
)
10375 isl_basic_map
*test
;
10379 sv
= isl_basic_map_plain_is_single_valued(bmap
);
10383 test
= isl_basic_map_reverse(isl_basic_map_copy(bmap
));
10384 test
= isl_basic_map_apply_range(test
, isl_basic_map_copy(bmap
));
10386 space
= isl_basic_map_get_space(bmap
);
10387 space
= isl_space_map_from_set(isl_space_range(space
));
10388 id
= isl_basic_map_identity(space
);
10390 sv
= isl_basic_map_is_subset(test
, id
);
10392 isl_basic_map_free(test
);
10393 isl_basic_map_free(id
);
10398 /* Check if the given map is obviously single-valued.
10400 isl_bool
isl_map_plain_is_single_valued(__isl_keep isl_map
*map
)
10403 return isl_bool_error
;
10405 return isl_bool_true
;
10407 return isl_bool_false
;
10409 return isl_basic_map_plain_is_single_valued(map
->p
[0]);
10412 /* Check if the given map is single-valued.
10413 * We simply compute
10417 * and check if the result is a subset of the identity mapping.
10419 isl_bool
isl_map_is_single_valued(__isl_keep isl_map
*map
)
10426 sv
= isl_map_plain_is_single_valued(map
);
10430 test
= isl_map_reverse(isl_map_copy(map
));
10431 test
= isl_map_apply_range(test
, isl_map_copy(map
));
10433 dim
= isl_space_map_from_set(isl_space_range(isl_map_get_space(map
)));
10434 id
= isl_map_identity(dim
);
10436 sv
= isl_map_is_subset(test
, id
);
10438 isl_map_free(test
);
10444 isl_bool
isl_map_is_injective(__isl_keep isl_map
*map
)
10448 map
= isl_map_copy(map
);
10449 map
= isl_map_reverse(map
);
10450 in
= isl_map_is_single_valued(map
);
10456 /* Check if the given map is obviously injective.
10458 isl_bool
isl_map_plain_is_injective(__isl_keep isl_map
*map
)
10462 map
= isl_map_copy(map
);
10463 map
= isl_map_reverse(map
);
10464 in
= isl_map_plain_is_single_valued(map
);
10470 isl_bool
isl_map_is_bijective(__isl_keep isl_map
*map
)
10474 sv
= isl_map_is_single_valued(map
);
10478 return isl_map_is_injective(map
);
10481 isl_bool
isl_set_is_singleton(__isl_keep isl_set
*set
)
10483 return isl_map_is_single_valued((isl_map
*)set
);
10486 int isl_map_is_translation(__isl_keep isl_map
*map
)
10491 delta
= isl_map_deltas(isl_map_copy(map
));
10492 ok
= isl_set_is_singleton(delta
);
10493 isl_set_free(delta
);
10498 static int unique(isl_int
*p
, unsigned pos
, unsigned len
)
10500 if (isl_seq_first_non_zero(p
, pos
) != -1)
10502 if (isl_seq_first_non_zero(p
+ pos
+ 1, len
- pos
- 1) != -1)
10507 int isl_basic_set_is_box(__isl_keep isl_basic_set
*bset
)
10516 if (isl_basic_set_dim(bset
, isl_dim_div
) != 0)
10519 nvar
= isl_basic_set_dim(bset
, isl_dim_set
);
10520 ovar
= isl_space_offset(bset
->dim
, isl_dim_set
);
10521 for (j
= 0; j
< nvar
; ++j
) {
10522 int lower
= 0, upper
= 0;
10523 for (i
= 0; i
< bset
->n_eq
; ++i
) {
10524 if (isl_int_is_zero(bset
->eq
[i
][1 + ovar
+ j
]))
10526 if (!unique(bset
->eq
[i
] + 1 + ovar
, j
, nvar
))
10530 if (i
< bset
->n_eq
)
10532 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
10533 if (isl_int_is_zero(bset
->ineq
[i
][1 + ovar
+ j
]))
10535 if (!unique(bset
->ineq
[i
] + 1 + ovar
, j
, nvar
))
10537 if (isl_int_is_pos(bset
->ineq
[i
][1 + ovar
+ j
]))
10542 if (!lower
|| !upper
)
10549 int isl_set_is_box(__isl_keep isl_set
*set
)
10556 return isl_basic_set_is_box(set
->p
[0]);
10559 isl_bool
isl_basic_set_is_wrapping(__isl_keep isl_basic_set
*bset
)
10562 return isl_bool_error
;
10564 return isl_space_is_wrapping(bset
->dim
);
10567 isl_bool
isl_set_is_wrapping(__isl_keep isl_set
*set
)
10570 return isl_bool_error
;
10572 return isl_space_is_wrapping(set
->dim
);
10575 /* Is the domain of "map" a wrapped relation?
10577 isl_bool
isl_map_domain_is_wrapping(__isl_keep isl_map
*map
)
10580 return isl_bool_error
;
10582 return isl_space_domain_is_wrapping(map
->dim
);
10585 /* Is the range of "map" a wrapped relation?
10587 isl_bool
isl_map_range_is_wrapping(__isl_keep isl_map
*map
)
10590 return isl_bool_error
;
10592 return isl_space_range_is_wrapping(map
->dim
);
10595 __isl_give isl_basic_set
*isl_basic_map_wrap(__isl_take isl_basic_map
*bmap
)
10597 bmap
= isl_basic_map_cow(bmap
);
10601 bmap
->dim
= isl_space_wrap(bmap
->dim
);
10605 bmap
= isl_basic_map_finalize(bmap
);
10607 return (isl_basic_set
*)bmap
;
10609 isl_basic_map_free(bmap
);
10613 __isl_give isl_set
*isl_map_wrap(__isl_take isl_map
*map
)
10617 map
= isl_map_cow(map
);
10621 for (i
= 0; i
< map
->n
; ++i
) {
10622 map
->p
[i
] = (isl_basic_map
*)isl_basic_map_wrap(map
->p
[i
]);
10626 map
->dim
= isl_space_wrap(map
->dim
);
10630 return (isl_set
*)map
;
10636 __isl_give isl_basic_map
*isl_basic_set_unwrap(__isl_take isl_basic_set
*bset
)
10638 bset
= isl_basic_set_cow(bset
);
10642 bset
->dim
= isl_space_unwrap(bset
->dim
);
10646 bset
= isl_basic_set_finalize(bset
);
10648 return (isl_basic_map
*)bset
;
10650 isl_basic_set_free(bset
);
10654 __isl_give isl_map
*isl_set_unwrap(__isl_take isl_set
*set
)
10661 if (!isl_set_is_wrapping(set
))
10662 isl_die(set
->ctx
, isl_error_invalid
, "not a wrapping set",
10665 set
= isl_set_cow(set
);
10669 for (i
= 0; i
< set
->n
; ++i
) {
10670 set
->p
[i
] = (isl_basic_set
*)isl_basic_set_unwrap(set
->p
[i
]);
10675 set
->dim
= isl_space_unwrap(set
->dim
);
10679 return (isl_map
*)set
;
10685 __isl_give isl_basic_map
*isl_basic_map_reset(__isl_take isl_basic_map
*bmap
,
10686 enum isl_dim_type type
)
10691 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
10694 bmap
= isl_basic_map_cow(bmap
);
10698 bmap
->dim
= isl_space_reset(bmap
->dim
, type
);
10702 bmap
= isl_basic_map_finalize(bmap
);
10706 isl_basic_map_free(bmap
);
10710 __isl_give isl_map
*isl_map_reset(__isl_take isl_map
*map
,
10711 enum isl_dim_type type
)
10718 if (!isl_space_is_named_or_nested(map
->dim
, type
))
10721 map
= isl_map_cow(map
);
10725 for (i
= 0; i
< map
->n
; ++i
) {
10726 map
->p
[i
] = isl_basic_map_reset(map
->p
[i
], type
);
10730 map
->dim
= isl_space_reset(map
->dim
, type
);
10740 __isl_give isl_basic_map
*isl_basic_map_flatten(__isl_take isl_basic_map
*bmap
)
10745 if (!bmap
->dim
->nested
[0] && !bmap
->dim
->nested
[1])
10748 bmap
= isl_basic_map_cow(bmap
);
10752 bmap
->dim
= isl_space_flatten(bmap
->dim
);
10756 bmap
= isl_basic_map_finalize(bmap
);
10760 isl_basic_map_free(bmap
);
10764 __isl_give isl_basic_set
*isl_basic_set_flatten(__isl_take isl_basic_set
*bset
)
10766 return (isl_basic_set
*)isl_basic_map_flatten((isl_basic_map
*)bset
);
10769 __isl_give isl_basic_map
*isl_basic_map_flatten_domain(
10770 __isl_take isl_basic_map
*bmap
)
10775 if (!bmap
->dim
->nested
[0])
10778 bmap
= isl_basic_map_cow(bmap
);
10782 bmap
->dim
= isl_space_flatten_domain(bmap
->dim
);
10786 bmap
= isl_basic_map_finalize(bmap
);
10790 isl_basic_map_free(bmap
);
10794 __isl_give isl_basic_map
*isl_basic_map_flatten_range(
10795 __isl_take isl_basic_map
*bmap
)
10800 if (!bmap
->dim
->nested
[1])
10803 bmap
= isl_basic_map_cow(bmap
);
10807 bmap
->dim
= isl_space_flatten_range(bmap
->dim
);
10811 bmap
= isl_basic_map_finalize(bmap
);
10815 isl_basic_map_free(bmap
);
10819 __isl_give isl_map
*isl_map_flatten(__isl_take isl_map
*map
)
10826 if (!map
->dim
->nested
[0] && !map
->dim
->nested
[1])
10829 map
= isl_map_cow(map
);
10833 for (i
= 0; i
< map
->n
; ++i
) {
10834 map
->p
[i
] = isl_basic_map_flatten(map
->p
[i
]);
10838 map
->dim
= isl_space_flatten(map
->dim
);
10848 __isl_give isl_set
*isl_set_flatten(__isl_take isl_set
*set
)
10850 return (isl_set
*)isl_map_flatten((isl_map
*)set
);
10853 __isl_give isl_map
*isl_set_flatten_map(__isl_take isl_set
*set
)
10855 isl_space
*dim
, *flat_dim
;
10858 dim
= isl_set_get_space(set
);
10859 flat_dim
= isl_space_flatten(isl_space_copy(dim
));
10860 map
= isl_map_identity(isl_space_join(isl_space_reverse(dim
), flat_dim
));
10861 map
= isl_map_intersect_domain(map
, set
);
10866 __isl_give isl_map
*isl_map_flatten_domain(__isl_take isl_map
*map
)
10873 if (!map
->dim
->nested
[0])
10876 map
= isl_map_cow(map
);
10880 for (i
= 0; i
< map
->n
; ++i
) {
10881 map
->p
[i
] = isl_basic_map_flatten_domain(map
->p
[i
]);
10885 map
->dim
= isl_space_flatten_domain(map
->dim
);
10895 __isl_give isl_map
*isl_map_flatten_range(__isl_take isl_map
*map
)
10902 if (!map
->dim
->nested
[1])
10905 map
= isl_map_cow(map
);
10909 for (i
= 0; i
< map
->n
; ++i
) {
10910 map
->p
[i
] = isl_basic_map_flatten_range(map
->p
[i
]);
10914 map
->dim
= isl_space_flatten_range(map
->dim
);
10924 /* Reorder the dimensions of "bmap" according to the given dim_map
10925 * and set the dimension specification to "dim".
10927 __isl_give isl_basic_map
*isl_basic_map_realign(__isl_take isl_basic_map
*bmap
,
10928 __isl_take isl_space
*dim
, __isl_take
struct isl_dim_map
*dim_map
)
10930 isl_basic_map
*res
;
10933 bmap
= isl_basic_map_cow(bmap
);
10934 if (!bmap
|| !dim
|| !dim_map
)
10937 flags
= bmap
->flags
;
10938 ISL_FL_CLR(flags
, ISL_BASIC_MAP_FINAL
);
10939 ISL_FL_CLR(flags
, ISL_BASIC_MAP_NORMALIZED
);
10940 ISL_FL_CLR(flags
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
10941 res
= isl_basic_map_alloc_space(dim
,
10942 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
10943 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
10945 res
->flags
= flags
;
10946 res
= isl_basic_map_finalize(res
);
10950 isl_basic_map_free(bmap
);
10951 isl_space_free(dim
);
10955 /* Reorder the dimensions of "map" according to given reordering.
10957 __isl_give isl_map
*isl_map_realign(__isl_take isl_map
*map
,
10958 __isl_take isl_reordering
*r
)
10961 struct isl_dim_map
*dim_map
;
10963 map
= isl_map_cow(map
);
10964 dim_map
= isl_dim_map_from_reordering(r
);
10965 if (!map
|| !r
|| !dim_map
)
10968 for (i
= 0; i
< map
->n
; ++i
) {
10969 struct isl_dim_map
*dim_map_i
;
10971 dim_map_i
= isl_dim_map_extend(dim_map
, map
->p
[i
]);
10973 map
->p
[i
] = isl_basic_map_realign(map
->p
[i
],
10974 isl_space_copy(r
->dim
), dim_map_i
);
10980 map
= isl_map_reset_space(map
, isl_space_copy(r
->dim
));
10982 isl_reordering_free(r
);
10988 isl_reordering_free(r
);
10992 __isl_give isl_set
*isl_set_realign(__isl_take isl_set
*set
,
10993 __isl_take isl_reordering
*r
)
10995 return (isl_set
*)isl_map_realign((isl_map
*)set
, r
);
10998 __isl_give isl_map
*isl_map_align_params(__isl_take isl_map
*map
,
10999 __isl_take isl_space
*model
)
11003 if (!map
|| !model
)
11006 ctx
= isl_space_get_ctx(model
);
11007 if (!isl_space_has_named_params(model
))
11008 isl_die(ctx
, isl_error_invalid
,
11009 "model has unnamed parameters", goto error
);
11010 if (!isl_space_has_named_params(map
->dim
))
11011 isl_die(ctx
, isl_error_invalid
,
11012 "relation has unnamed parameters", goto error
);
11013 if (!isl_space_match(map
->dim
, isl_dim_param
, model
, isl_dim_param
)) {
11014 isl_reordering
*exp
;
11016 model
= isl_space_drop_dims(model
, isl_dim_in
,
11017 0, isl_space_dim(model
, isl_dim_in
));
11018 model
= isl_space_drop_dims(model
, isl_dim_out
,
11019 0, isl_space_dim(model
, isl_dim_out
));
11020 exp
= isl_parameter_alignment_reordering(map
->dim
, model
);
11021 exp
= isl_reordering_extend_space(exp
, isl_map_get_space(map
));
11022 map
= isl_map_realign(map
, exp
);
11025 isl_space_free(model
);
11028 isl_space_free(model
);
11033 __isl_give isl_set
*isl_set_align_params(__isl_take isl_set
*set
,
11034 __isl_take isl_space
*model
)
11036 return isl_map_align_params(set
, model
);
11039 /* Align the parameters of "bmap" to those of "model", introducing
11040 * additional parameters if needed.
11042 __isl_give isl_basic_map
*isl_basic_map_align_params(
11043 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*model
)
11047 if (!bmap
|| !model
)
11050 ctx
= isl_space_get_ctx(model
);
11051 if (!isl_space_has_named_params(model
))
11052 isl_die(ctx
, isl_error_invalid
,
11053 "model has unnamed parameters", goto error
);
11054 if (!isl_space_has_named_params(bmap
->dim
))
11055 isl_die(ctx
, isl_error_invalid
,
11056 "relation has unnamed parameters", goto error
);
11057 if (!isl_space_match(bmap
->dim
, isl_dim_param
, model
, isl_dim_param
)) {
11058 isl_reordering
*exp
;
11059 struct isl_dim_map
*dim_map
;
11061 model
= isl_space_drop_dims(model
, isl_dim_in
,
11062 0, isl_space_dim(model
, isl_dim_in
));
11063 model
= isl_space_drop_dims(model
, isl_dim_out
,
11064 0, isl_space_dim(model
, isl_dim_out
));
11065 exp
= isl_parameter_alignment_reordering(bmap
->dim
, model
);
11066 exp
= isl_reordering_extend_space(exp
,
11067 isl_basic_map_get_space(bmap
));
11068 dim_map
= isl_dim_map_from_reordering(exp
);
11069 bmap
= isl_basic_map_realign(bmap
,
11070 exp
? isl_space_copy(exp
->dim
) : NULL
,
11071 isl_dim_map_extend(dim_map
, bmap
));
11072 isl_reordering_free(exp
);
11076 isl_space_free(model
);
11079 isl_space_free(model
);
11080 isl_basic_map_free(bmap
);
11084 /* Align the parameters of "bset" to those of "model", introducing
11085 * additional parameters if needed.
11087 __isl_give isl_basic_set
*isl_basic_set_align_params(
11088 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*model
)
11090 return isl_basic_map_align_params(bset
, model
);
11093 __isl_give isl_mat
*isl_basic_map_equalities_matrix(
11094 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11095 enum isl_dim_type c2
, enum isl_dim_type c3
,
11096 enum isl_dim_type c4
, enum isl_dim_type c5
)
11098 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11099 struct isl_mat
*mat
;
11105 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_eq
,
11106 isl_basic_map_total_dim(bmap
) + 1);
11109 for (i
= 0; i
< bmap
->n_eq
; ++i
)
11110 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11111 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11112 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11113 isl_int_set(mat
->row
[i
][pos
],
11114 bmap
->eq
[i
][off
+ k
]);
11122 __isl_give isl_mat
*isl_basic_map_inequalities_matrix(
11123 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11124 enum isl_dim_type c2
, enum isl_dim_type c3
,
11125 enum isl_dim_type c4
, enum isl_dim_type c5
)
11127 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11128 struct isl_mat
*mat
;
11134 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_ineq
,
11135 isl_basic_map_total_dim(bmap
) + 1);
11138 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
11139 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11140 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11141 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11142 isl_int_set(mat
->row
[i
][pos
],
11143 bmap
->ineq
[i
][off
+ k
]);
11151 __isl_give isl_basic_map
*isl_basic_map_from_constraint_matrices(
11152 __isl_take isl_space
*dim
,
11153 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
11154 enum isl_dim_type c2
, enum isl_dim_type c3
,
11155 enum isl_dim_type c4
, enum isl_dim_type c5
)
11157 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11158 isl_basic_map
*bmap
;
11164 if (!dim
|| !eq
|| !ineq
)
11167 if (eq
->n_col
!= ineq
->n_col
)
11168 isl_die(dim
->ctx
, isl_error_invalid
,
11169 "equalities and inequalities matrices should have "
11170 "same number of columns", goto error
);
11172 total
= 1 + isl_space_dim(dim
, isl_dim_all
);
11174 if (eq
->n_col
< total
)
11175 isl_die(dim
->ctx
, isl_error_invalid
,
11176 "number of columns too small", goto error
);
11178 extra
= eq
->n_col
- total
;
11180 bmap
= isl_basic_map_alloc_space(isl_space_copy(dim
), extra
,
11181 eq
->n_row
, ineq
->n_row
);
11184 for (i
= 0; i
< extra
; ++i
) {
11185 k
= isl_basic_map_alloc_div(bmap
);
11188 isl_int_set_si(bmap
->div
[k
][0], 0);
11190 for (i
= 0; i
< eq
->n_row
; ++i
) {
11191 l
= isl_basic_map_alloc_equality(bmap
);
11194 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11195 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11196 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11197 isl_int_set(bmap
->eq
[l
][off
+ k
],
11203 for (i
= 0; i
< ineq
->n_row
; ++i
) {
11204 l
= isl_basic_map_alloc_inequality(bmap
);
11207 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11208 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11209 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11210 isl_int_set(bmap
->ineq
[l
][off
+ k
],
11211 ineq
->row
[i
][pos
]);
11217 isl_space_free(dim
);
11219 isl_mat_free(ineq
);
11221 bmap
= isl_basic_map_simplify(bmap
);
11222 return isl_basic_map_finalize(bmap
);
11224 isl_space_free(dim
);
11226 isl_mat_free(ineq
);
11230 __isl_give isl_mat
*isl_basic_set_equalities_matrix(
11231 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
11232 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11234 return isl_basic_map_equalities_matrix((isl_basic_map
*)bset
,
11235 c1
, c2
, c3
, c4
, isl_dim_in
);
11238 __isl_give isl_mat
*isl_basic_set_inequalities_matrix(
11239 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
11240 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11242 return isl_basic_map_inequalities_matrix((isl_basic_map
*)bset
,
11243 c1
, c2
, c3
, c4
, isl_dim_in
);
11246 __isl_give isl_basic_set
*isl_basic_set_from_constraint_matrices(
11247 __isl_take isl_space
*dim
,
11248 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
11249 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11251 return (isl_basic_set
*)
11252 isl_basic_map_from_constraint_matrices(dim
, eq
, ineq
,
11253 c1
, c2
, c3
, c4
, isl_dim_in
);
11256 isl_bool
isl_basic_map_can_zip(__isl_keep isl_basic_map
*bmap
)
11259 return isl_bool_error
;
11261 return isl_space_can_zip(bmap
->dim
);
11264 isl_bool
isl_map_can_zip(__isl_keep isl_map
*map
)
11267 return isl_bool_error
;
11269 return isl_space_can_zip(map
->dim
);
11272 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
11273 * (A -> C) -> (B -> D).
11275 __isl_give isl_basic_map
*isl_basic_map_zip(__isl_take isl_basic_map
*bmap
)
11284 if (!isl_basic_map_can_zip(bmap
))
11285 isl_die(bmap
->ctx
, isl_error_invalid
,
11286 "basic map cannot be zipped", goto error
);
11287 pos
= isl_basic_map_offset(bmap
, isl_dim_in
) +
11288 isl_space_dim(bmap
->dim
->nested
[0], isl_dim_in
);
11289 n1
= isl_space_dim(bmap
->dim
->nested
[0], isl_dim_out
);
11290 n2
= isl_space_dim(bmap
->dim
->nested
[1], isl_dim_in
);
11291 bmap
= isl_basic_map_cow(bmap
);
11292 bmap
= isl_basic_map_swap_vars(bmap
, pos
, n1
, n2
);
11295 bmap
->dim
= isl_space_zip(bmap
->dim
);
11300 isl_basic_map_free(bmap
);
11304 /* Given a map (A -> B) -> (C -> D), return the corresponding map
11305 * (A -> C) -> (B -> D).
11307 __isl_give isl_map
*isl_map_zip(__isl_take isl_map
*map
)
11314 if (!isl_map_can_zip(map
))
11315 isl_die(map
->ctx
, isl_error_invalid
, "map cannot be zipped",
11318 map
= isl_map_cow(map
);
11322 for (i
= 0; i
< map
->n
; ++i
) {
11323 map
->p
[i
] = isl_basic_map_zip(map
->p
[i
]);
11328 map
->dim
= isl_space_zip(map
->dim
);
11338 /* Can we apply isl_basic_map_curry to "bmap"?
11339 * That is, does it have a nested relation in its domain?
11341 isl_bool
isl_basic_map_can_curry(__isl_keep isl_basic_map
*bmap
)
11344 return isl_bool_error
;
11346 return isl_space_can_curry(bmap
->dim
);
11349 /* Can we apply isl_map_curry to "map"?
11350 * That is, does it have a nested relation in its domain?
11352 isl_bool
isl_map_can_curry(__isl_keep isl_map
*map
)
11355 return isl_bool_error
;
11357 return isl_space_can_curry(map
->dim
);
11360 /* Given a basic map (A -> B) -> C, return the corresponding basic map
11363 __isl_give isl_basic_map
*isl_basic_map_curry(__isl_take isl_basic_map
*bmap
)
11369 if (!isl_basic_map_can_curry(bmap
))
11370 isl_die(bmap
->ctx
, isl_error_invalid
,
11371 "basic map cannot be curried", goto error
);
11372 bmap
= isl_basic_map_cow(bmap
);
11375 bmap
->dim
= isl_space_curry(bmap
->dim
);
11380 isl_basic_map_free(bmap
);
11384 /* Given a map (A -> B) -> C, return the corresponding map
11387 __isl_give isl_map
*isl_map_curry(__isl_take isl_map
*map
)
11394 if (!isl_map_can_curry(map
))
11395 isl_die(map
->ctx
, isl_error_invalid
, "map cannot be curried",
11398 map
= isl_map_cow(map
);
11402 for (i
= 0; i
< map
->n
; ++i
) {
11403 map
->p
[i
] = isl_basic_map_curry(map
->p
[i
]);
11408 map
->dim
= isl_space_curry(map
->dim
);
11418 /* Can we apply isl_basic_map_uncurry to "bmap"?
11419 * That is, does it have a nested relation in its domain?
11421 isl_bool
isl_basic_map_can_uncurry(__isl_keep isl_basic_map
*bmap
)
11424 return isl_bool_error
;
11426 return isl_space_can_uncurry(bmap
->dim
);
11429 /* Can we apply isl_map_uncurry to "map"?
11430 * That is, does it have a nested relation in its domain?
11432 isl_bool
isl_map_can_uncurry(__isl_keep isl_map
*map
)
11435 return isl_bool_error
;
11437 return isl_space_can_uncurry(map
->dim
);
11440 /* Given a basic map A -> (B -> C), return the corresponding basic map
11443 __isl_give isl_basic_map
*isl_basic_map_uncurry(__isl_take isl_basic_map
*bmap
)
11449 if (!isl_basic_map_can_uncurry(bmap
))
11450 isl_die(bmap
->ctx
, isl_error_invalid
,
11451 "basic map cannot be uncurried",
11452 return isl_basic_map_free(bmap
));
11453 bmap
= isl_basic_map_cow(bmap
);
11456 bmap
->dim
= isl_space_uncurry(bmap
->dim
);
11458 return isl_basic_map_free(bmap
);
11462 /* Given a map A -> (B -> C), return the corresponding map
11465 __isl_give isl_map
*isl_map_uncurry(__isl_take isl_map
*map
)
11472 if (!isl_map_can_uncurry(map
))
11473 isl_die(map
->ctx
, isl_error_invalid
, "map cannot be uncurried",
11474 return isl_map_free(map
));
11476 map
= isl_map_cow(map
);
11480 for (i
= 0; i
< map
->n
; ++i
) {
11481 map
->p
[i
] = isl_basic_map_uncurry(map
->p
[i
]);
11483 return isl_map_free(map
);
11486 map
->dim
= isl_space_uncurry(map
->dim
);
11488 return isl_map_free(map
);
11493 /* Construct a basic map mapping the domain of the affine expression
11494 * to a one-dimensional range prescribed by the affine expression.
11496 __isl_give isl_basic_map
*isl_basic_map_from_aff(__isl_take isl_aff
*aff
)
11500 isl_local_space
*ls
;
11501 isl_basic_map
*bmap
;
11506 ls
= isl_aff_get_local_space(aff
);
11507 bmap
= isl_basic_map_from_local_space(ls
);
11508 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
11509 k
= isl_basic_map_alloc_equality(bmap
);
11513 pos
= isl_basic_map_offset(bmap
, isl_dim_out
);
11514 isl_seq_cpy(bmap
->eq
[k
], aff
->v
->el
+ 1, pos
);
11515 isl_int_neg(bmap
->eq
[k
][pos
], aff
->v
->el
[0]);
11516 isl_seq_cpy(bmap
->eq
[k
] + pos
+ 1, aff
->v
->el
+ 1 + pos
,
11517 aff
->v
->size
- (pos
+ 1));
11520 bmap
= isl_basic_map_finalize(bmap
);
11524 isl_basic_map_free(bmap
);
11528 /* Construct a map mapping the domain of the affine expression
11529 * to a one-dimensional range prescribed by the affine expression.
11531 __isl_give isl_map
*isl_map_from_aff(__isl_take isl_aff
*aff
)
11533 isl_basic_map
*bmap
;
11535 bmap
= isl_basic_map_from_aff(aff
);
11536 return isl_map_from_basic_map(bmap
);
11539 /* Construct a basic map mapping the domain the multi-affine expression
11540 * to its range, with each dimension in the range equated to the
11541 * corresponding affine expression.
11543 __isl_give isl_basic_map
*isl_basic_map_from_multi_aff(
11544 __isl_take isl_multi_aff
*maff
)
11548 isl_basic_map
*bmap
;
11553 if (isl_space_dim(maff
->space
, isl_dim_out
) != maff
->n
)
11554 isl_die(isl_multi_aff_get_ctx(maff
), isl_error_internal
,
11555 "invalid space", goto error
);
11557 space
= isl_space_domain(isl_multi_aff_get_space(maff
));
11558 bmap
= isl_basic_map_universe(isl_space_from_domain(space
));
11560 for (i
= 0; i
< maff
->n
; ++i
) {
11562 isl_basic_map
*bmap_i
;
11564 aff
= isl_aff_copy(maff
->p
[i
]);
11565 bmap_i
= isl_basic_map_from_aff(aff
);
11567 bmap
= isl_basic_map_flat_range_product(bmap
, bmap_i
);
11570 bmap
= isl_basic_map_reset_space(bmap
, isl_multi_aff_get_space(maff
));
11572 isl_multi_aff_free(maff
);
11575 isl_multi_aff_free(maff
);
11579 /* Construct a map mapping the domain the multi-affine expression
11580 * to its range, with each dimension in the range equated to the
11581 * corresponding affine expression.
11583 __isl_give isl_map
*isl_map_from_multi_aff(__isl_take isl_multi_aff
*maff
)
11585 isl_basic_map
*bmap
;
11587 bmap
= isl_basic_map_from_multi_aff(maff
);
11588 return isl_map_from_basic_map(bmap
);
11591 /* Construct a basic map mapping a domain in the given space to
11592 * to an n-dimensional range, with n the number of elements in the list,
11593 * where each coordinate in the range is prescribed by the
11594 * corresponding affine expression.
11595 * The domains of all affine expressions in the list are assumed to match
11598 __isl_give isl_basic_map
*isl_basic_map_from_aff_list(
11599 __isl_take isl_space
*domain_dim
, __isl_take isl_aff_list
*list
)
11603 isl_basic_map
*bmap
;
11608 dim
= isl_space_from_domain(domain_dim
);
11609 bmap
= isl_basic_map_universe(dim
);
11611 for (i
= 0; i
< list
->n
; ++i
) {
11613 isl_basic_map
*bmap_i
;
11615 aff
= isl_aff_copy(list
->p
[i
]);
11616 bmap_i
= isl_basic_map_from_aff(aff
);
11618 bmap
= isl_basic_map_flat_range_product(bmap
, bmap_i
);
11621 isl_aff_list_free(list
);
11625 __isl_give isl_set
*isl_set_equate(__isl_take isl_set
*set
,
11626 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11628 return isl_map_equate(set
, type1
, pos1
, type2
, pos2
);
11631 /* Construct a basic map where the given dimensions are equal to each other.
11633 static __isl_give isl_basic_map
*equator(__isl_take isl_space
*space
,
11634 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11636 isl_basic_map
*bmap
= NULL
;
11642 if (pos1
>= isl_space_dim(space
, type1
))
11643 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
11644 "index out of bounds", goto error
);
11645 if (pos2
>= isl_space_dim(space
, type2
))
11646 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
11647 "index out of bounds", goto error
);
11649 if (type1
== type2
&& pos1
== pos2
)
11650 return isl_basic_map_universe(space
);
11652 bmap
= isl_basic_map_alloc_space(isl_space_copy(space
), 0, 1, 0);
11653 i
= isl_basic_map_alloc_equality(bmap
);
11656 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
11657 pos1
+= isl_basic_map_offset(bmap
, type1
);
11658 pos2
+= isl_basic_map_offset(bmap
, type2
);
11659 isl_int_set_si(bmap
->eq
[i
][pos1
], -1);
11660 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
11661 bmap
= isl_basic_map_finalize(bmap
);
11662 isl_space_free(space
);
11665 isl_space_free(space
);
11666 isl_basic_map_free(bmap
);
11670 /* Add a constraint imposing that the given two dimensions are equal.
11672 __isl_give isl_basic_map
*isl_basic_map_equate(__isl_take isl_basic_map
*bmap
,
11673 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11677 eq
= equator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
11679 bmap
= isl_basic_map_intersect(bmap
, eq
);
11684 /* Add a constraint imposing that the given two dimensions are equal.
11686 __isl_give isl_map
*isl_map_equate(__isl_take isl_map
*map
,
11687 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11689 isl_basic_map
*bmap
;
11691 bmap
= equator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
11693 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
11698 /* Add a constraint imposing that the given two dimensions have opposite values.
11700 __isl_give isl_map
*isl_map_oppose(__isl_take isl_map
*map
,
11701 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11703 isl_basic_map
*bmap
= NULL
;
11709 if (pos1
>= isl_map_dim(map
, type1
))
11710 isl_die(map
->ctx
, isl_error_invalid
,
11711 "index out of bounds", goto error
);
11712 if (pos2
>= isl_map_dim(map
, type2
))
11713 isl_die(map
->ctx
, isl_error_invalid
,
11714 "index out of bounds", goto error
);
11716 bmap
= isl_basic_map_alloc_space(isl_map_get_space(map
), 0, 1, 0);
11717 i
= isl_basic_map_alloc_equality(bmap
);
11720 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
11721 pos1
+= isl_basic_map_offset(bmap
, type1
);
11722 pos2
+= isl_basic_map_offset(bmap
, type2
);
11723 isl_int_set_si(bmap
->eq
[i
][pos1
], 1);
11724 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
11725 bmap
= isl_basic_map_finalize(bmap
);
11727 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
11731 isl_basic_map_free(bmap
);
11736 /* Construct a constraint imposing that the value of the first dimension is
11737 * greater than or equal to that of the second.
11739 static __isl_give isl_constraint
*constraint_order_ge(
11740 __isl_take isl_space
*space
, enum isl_dim_type type1
, int pos1
,
11741 enum isl_dim_type type2
, int pos2
)
11748 c
= isl_constraint_alloc_inequality(isl_local_space_from_space(space
));
11750 if (pos1
>= isl_constraint_dim(c
, type1
))
11751 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
11752 "index out of bounds", return isl_constraint_free(c
));
11753 if (pos2
>= isl_constraint_dim(c
, type2
))
11754 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
11755 "index out of bounds", return isl_constraint_free(c
));
11757 if (type1
== type2
&& pos1
== pos2
)
11760 c
= isl_constraint_set_coefficient_si(c
, type1
, pos1
, 1);
11761 c
= isl_constraint_set_coefficient_si(c
, type2
, pos2
, -1);
11766 /* Add a constraint imposing that the value of the first dimension is
11767 * greater than or equal to that of the second.
11769 __isl_give isl_basic_map
*isl_basic_map_order_ge(__isl_take isl_basic_map
*bmap
,
11770 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11775 if (type1
== type2
&& pos1
== pos2
)
11777 space
= isl_basic_map_get_space(bmap
);
11778 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
11779 bmap
= isl_basic_map_add_constraint(bmap
, c
);
11784 /* Add a constraint imposing that the value of the first dimension is
11785 * greater than or equal to that of the second.
11787 __isl_give isl_map
*isl_map_order_ge(__isl_take isl_map
*map
,
11788 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11793 if (type1
== type2
&& pos1
== pos2
)
11795 space
= isl_map_get_space(map
);
11796 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
11797 map
= isl_map_add_constraint(map
, c
);
11802 /* Add a constraint imposing that the value of the first dimension is
11803 * less than or equal to that of the second.
11805 __isl_give isl_map
*isl_map_order_le(__isl_take isl_map
*map
,
11806 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11808 return isl_map_order_ge(map
, type2
, pos2
, type1
, pos1
);
11811 /* Construct a basic map where the value of the first dimension is
11812 * greater than that of the second.
11814 static __isl_give isl_basic_map
*greator(__isl_take isl_space
*space
,
11815 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11817 isl_basic_map
*bmap
= NULL
;
11823 if (pos1
>= isl_space_dim(space
, type1
))
11824 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
11825 "index out of bounds", goto error
);
11826 if (pos2
>= isl_space_dim(space
, type2
))
11827 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
11828 "index out of bounds", goto error
);
11830 if (type1
== type2
&& pos1
== pos2
)
11831 return isl_basic_map_empty(space
);
11833 bmap
= isl_basic_map_alloc_space(space
, 0, 0, 1);
11834 i
= isl_basic_map_alloc_inequality(bmap
);
11836 return isl_basic_map_free(bmap
);
11837 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
11838 pos1
+= isl_basic_map_offset(bmap
, type1
);
11839 pos2
+= isl_basic_map_offset(bmap
, type2
);
11840 isl_int_set_si(bmap
->ineq
[i
][pos1
], 1);
11841 isl_int_set_si(bmap
->ineq
[i
][pos2
], -1);
11842 isl_int_set_si(bmap
->ineq
[i
][0], -1);
11843 bmap
= isl_basic_map_finalize(bmap
);
11847 isl_space_free(space
);
11848 isl_basic_map_free(bmap
);
11852 /* Add a constraint imposing that the value of the first dimension is
11853 * greater than that of the second.
11855 __isl_give isl_basic_map
*isl_basic_map_order_gt(__isl_take isl_basic_map
*bmap
,
11856 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11860 gt
= greator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
11862 bmap
= isl_basic_map_intersect(bmap
, gt
);
11867 /* Add a constraint imposing that the value of the first dimension is
11868 * greater than that of the second.
11870 __isl_give isl_map
*isl_map_order_gt(__isl_take isl_map
*map
,
11871 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11873 isl_basic_map
*bmap
;
11875 bmap
= greator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
11877 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
11882 /* Add a constraint imposing that the value of the first dimension is
11883 * smaller than that of the second.
11885 __isl_give isl_map
*isl_map_order_lt(__isl_take isl_map
*map
,
11886 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11888 return isl_map_order_gt(map
, type2
, pos2
, type1
, pos1
);
11891 __isl_give isl_aff
*isl_basic_map_get_div(__isl_keep isl_basic_map
*bmap
,
11895 isl_local_space
*ls
;
11900 if (!isl_basic_map_divs_known(bmap
))
11901 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
11902 "some divs are unknown", return NULL
);
11904 ls
= isl_basic_map_get_local_space(bmap
);
11905 div
= isl_local_space_get_div(ls
, pos
);
11906 isl_local_space_free(ls
);
11911 __isl_give isl_aff
*isl_basic_set_get_div(__isl_keep isl_basic_set
*bset
,
11914 return isl_basic_map_get_div(bset
, pos
);
11917 /* Plug in "subs" for dimension "type", "pos" of "bset".
11919 * Let i be the dimension to replace and let "subs" be of the form
11923 * Any integer division with a non-zero coefficient for i,
11925 * floor((a i + g)/m)
11929 * floor((a f + d g)/(m d))
11931 * Constraints of the form
11939 * We currently require that "subs" is an integral expression.
11940 * Handling rational expressions may require us to add stride constraints
11941 * as we do in isl_basic_set_preimage_multi_aff.
11943 __isl_give isl_basic_set
*isl_basic_set_substitute(
11944 __isl_take isl_basic_set
*bset
,
11945 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
11951 if (bset
&& isl_basic_set_plain_is_empty(bset
))
11954 bset
= isl_basic_set_cow(bset
);
11955 if (!bset
|| !subs
)
11958 ctx
= isl_basic_set_get_ctx(bset
);
11959 if (!isl_space_is_equal(bset
->dim
, subs
->ls
->dim
))
11960 isl_die(ctx
, isl_error_invalid
,
11961 "spaces don't match", goto error
);
11962 if (isl_local_space_dim(subs
->ls
, isl_dim_div
) != 0)
11963 isl_die(ctx
, isl_error_unsupported
,
11964 "cannot handle divs yet", goto error
);
11965 if (!isl_int_is_one(subs
->v
->el
[0]))
11966 isl_die(ctx
, isl_error_invalid
,
11967 "can only substitute integer expressions", goto error
);
11969 pos
+= isl_basic_set_offset(bset
, type
);
11973 for (i
= 0; i
< bset
->n_eq
; ++i
) {
11974 if (isl_int_is_zero(bset
->eq
[i
][pos
]))
11976 isl_int_set(v
, bset
->eq
[i
][pos
]);
11977 isl_int_set_si(bset
->eq
[i
][pos
], 0);
11978 isl_seq_combine(bset
->eq
[i
], subs
->v
->el
[0], bset
->eq
[i
],
11979 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
11982 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
11983 if (isl_int_is_zero(bset
->ineq
[i
][pos
]))
11985 isl_int_set(v
, bset
->ineq
[i
][pos
]);
11986 isl_int_set_si(bset
->ineq
[i
][pos
], 0);
11987 isl_seq_combine(bset
->ineq
[i
], subs
->v
->el
[0], bset
->ineq
[i
],
11988 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
11991 for (i
= 0; i
< bset
->n_div
; ++i
) {
11992 if (isl_int_is_zero(bset
->div
[i
][1 + pos
]))
11994 isl_int_set(v
, bset
->div
[i
][1 + pos
]);
11995 isl_int_set_si(bset
->div
[i
][1 + pos
], 0);
11996 isl_seq_combine(bset
->div
[i
] + 1,
11997 subs
->v
->el
[0], bset
->div
[i
] + 1,
11998 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
11999 isl_int_mul(bset
->div
[i
][0], bset
->div
[i
][0], subs
->v
->el
[0]);
12004 bset
= isl_basic_set_simplify(bset
);
12005 return isl_basic_set_finalize(bset
);
12007 isl_basic_set_free(bset
);
12011 /* Plug in "subs" for dimension "type", "pos" of "set".
12013 __isl_give isl_set
*isl_set_substitute(__isl_take isl_set
*set
,
12014 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
12018 if (set
&& isl_set_plain_is_empty(set
))
12021 set
= isl_set_cow(set
);
12025 for (i
= set
->n
- 1; i
>= 0; --i
) {
12026 set
->p
[i
] = isl_basic_set_substitute(set
->p
[i
], type
, pos
, subs
);
12027 if (remove_if_empty(set
, i
) < 0)
12037 /* Check if the range of "ma" is compatible with the domain or range
12038 * (depending on "type") of "bmap".
12039 * Return -1 if anything is wrong.
12041 static int check_basic_map_compatible_range_multi_aff(
12042 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type type
,
12043 __isl_keep isl_multi_aff
*ma
)
12046 isl_space
*ma_space
;
12048 ma_space
= isl_multi_aff_get_space(ma
);
12050 m
= isl_space_match(bmap
->dim
, isl_dim_param
, ma_space
, isl_dim_param
);
12054 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12055 "parameters don't match", goto error
);
12056 m
= isl_space_tuple_is_equal(bmap
->dim
, type
, ma_space
, isl_dim_out
);
12060 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12061 "spaces don't match", goto error
);
12063 isl_space_free(ma_space
);
12066 isl_space_free(ma_space
);
12070 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12071 * coefficients before the transformed range of dimensions,
12072 * the "n_after" coefficients after the transformed range of dimensions
12073 * and the coefficients of the other divs in "bmap".
12075 static int set_ma_divs(__isl_keep isl_basic_map
*bmap
,
12076 __isl_keep isl_multi_aff
*ma
, int n_before
, int n_after
, int n_div
)
12081 isl_local_space
*ls
;
12086 ls
= isl_aff_get_domain_local_space(ma
->p
[0]);
12090 n_param
= isl_local_space_dim(ls
, isl_dim_param
);
12091 n_set
= isl_local_space_dim(ls
, isl_dim_set
);
12092 for (i
= 0; i
< n_div
; ++i
) {
12093 int o_bmap
= 0, o_ls
= 0;
12095 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], 1 + 1 + n_param
);
12096 o_bmap
+= 1 + 1 + n_param
;
12097 o_ls
+= 1 + 1 + n_param
;
12098 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_before
);
12099 o_bmap
+= n_before
;
12100 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12101 ls
->div
->row
[i
] + o_ls
, n_set
);
12104 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_after
);
12106 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12107 ls
->div
->row
[i
] + o_ls
, n_div
);
12110 isl_seq_clr(bmap
->div
[i
] + o_bmap
, bmap
->n_div
- n_div
);
12111 if (isl_basic_set_add_div_constraints(bmap
, i
) < 0)
12115 isl_local_space_free(ls
);
12118 isl_local_space_free(ls
);
12122 /* How many stride constraints does "ma" enforce?
12123 * That is, how many of the affine expressions have a denominator
12124 * different from one?
12126 static int multi_aff_strides(__isl_keep isl_multi_aff
*ma
)
12131 for (i
= 0; i
< ma
->n
; ++i
)
12132 if (!isl_int_is_one(ma
->p
[i
]->v
->el
[0]))
12138 /* For each affine expression in ma of the form
12140 * x_i = (f_i y + h_i)/m_i
12142 * with m_i different from one, add a constraint to "bmap"
12145 * f_i y + h_i = m_i alpha_i
12147 * with alpha_i an additional existentially quantified variable.
12149 static __isl_give isl_basic_map
*add_ma_strides(
12150 __isl_take isl_basic_map
*bmap
, __isl_keep isl_multi_aff
*ma
,
12151 int n_before
, int n_after
)
12160 total
= isl_basic_map_total_dim(bmap
);
12161 n_param
= isl_multi_aff_dim(ma
, isl_dim_param
);
12162 n_in
= isl_multi_aff_dim(ma
, isl_dim_in
);
12163 n_div
= isl_multi_aff_dim(ma
, isl_dim_div
);
12164 for (i
= 0; i
< ma
->n
; ++i
) {
12165 int o_bmap
= 0, o_ma
= 1;
12167 if (isl_int_is_one(ma
->p
[i
]->v
->el
[0]))
12169 div
= isl_basic_map_alloc_div(bmap
);
12170 k
= isl_basic_map_alloc_equality(bmap
);
12171 if (div
< 0 || k
< 0)
12173 isl_int_set_si(bmap
->div
[div
][0], 0);
12174 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12175 ma
->p
[i
]->v
->el
+ o_ma
, 1 + n_param
);
12176 o_bmap
+= 1 + n_param
;
12177 o_ma
+= 1 + n_param
;
12178 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_before
);
12179 o_bmap
+= n_before
;
12180 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12181 ma
->p
[i
]->v
->el
+ o_ma
, n_in
);
12184 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_after
);
12186 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12187 ma
->p
[i
]->v
->el
+ o_ma
, n_div
);
12190 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, 1 + total
- o_bmap
);
12191 isl_int_neg(bmap
->eq
[k
][1 + total
], ma
->p
[i
]->v
->el
[0]);
12197 isl_basic_map_free(bmap
);
12201 /* Replace the domain or range space (depending on "type) of "space" by "set".
12203 static __isl_give isl_space
*isl_space_set(__isl_take isl_space
*space
,
12204 enum isl_dim_type type
, __isl_take isl_space
*set
)
12206 if (type
== isl_dim_in
) {
12207 space
= isl_space_range(space
);
12208 space
= isl_space_map_from_domain_and_range(set
, space
);
12210 space
= isl_space_domain(space
);
12211 space
= isl_space_map_from_domain_and_range(space
, set
);
12217 /* Compute the preimage of the domain or range (depending on "type")
12218 * of "bmap" under the function represented by "ma".
12219 * In other words, plug in "ma" in the domain or range of "bmap".
12220 * The result is a basic map that lives in the same space as "bmap"
12221 * except that the domain or range has been replaced by
12222 * the domain space of "ma".
12224 * If bmap is represented by
12226 * A(p) + S u + B x + T v + C(divs) >= 0,
12228 * where u and x are input and output dimensions if type == isl_dim_out
12229 * while x and v are input and output dimensions if type == isl_dim_in,
12230 * and ma is represented by
12232 * x = D(p) + F(y) + G(divs')
12234 * then the result is
12236 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12238 * The divs in the input set are similarly adjusted.
12241 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12245 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12246 * B_i G(divs') + c_i(divs))/n_i)
12248 * If bmap is not a rational map and if F(y) involves any denominators
12250 * x_i = (f_i y + h_i)/m_i
12252 * then additional constraints are added to ensure that we only
12253 * map back integer points. That is we enforce
12255 * f_i y + h_i = m_i alpha_i
12257 * with alpha_i an additional existentially quantified variable.
12259 * We first copy over the divs from "ma".
12260 * Then we add the modified constraints and divs from "bmap".
12261 * Finally, we add the stride constraints, if needed.
12263 __isl_give isl_basic_map
*isl_basic_map_preimage_multi_aff(
12264 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
12265 __isl_take isl_multi_aff
*ma
)
12269 isl_basic_map
*res
= NULL
;
12270 int n_before
, n_after
, n_div_bmap
, n_div_ma
;
12271 isl_int f
, c1
, c2
, g
;
12272 int rational
, strides
;
12279 ma
= isl_multi_aff_align_divs(ma
);
12282 if (check_basic_map_compatible_range_multi_aff(bmap
, type
, ma
) < 0)
12285 if (type
== isl_dim_in
) {
12287 n_after
= isl_basic_map_dim(bmap
, isl_dim_out
);
12289 n_before
= isl_basic_map_dim(bmap
, isl_dim_in
);
12292 n_div_bmap
= isl_basic_map_dim(bmap
, isl_dim_div
);
12293 n_div_ma
= ma
->n
? isl_aff_dim(ma
->p
[0], isl_dim_div
) : 0;
12295 space
= isl_multi_aff_get_domain_space(ma
);
12296 space
= isl_space_set(isl_basic_map_get_space(bmap
), type
, space
);
12297 rational
= isl_basic_map_is_rational(bmap
);
12298 strides
= rational
? 0 : multi_aff_strides(ma
);
12299 res
= isl_basic_map_alloc_space(space
, n_div_ma
+ n_div_bmap
+ strides
,
12300 bmap
->n_eq
+ strides
, bmap
->n_ineq
+ 2 * n_div_ma
);
12302 res
= isl_basic_map_set_rational(res
);
12304 for (i
= 0; i
< n_div_ma
+ n_div_bmap
; ++i
)
12305 if (isl_basic_map_alloc_div(res
) < 0)
12308 if (set_ma_divs(res
, ma
, n_before
, n_after
, n_div_ma
) < 0)
12311 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
12312 k
= isl_basic_map_alloc_equality(res
);
12315 isl_seq_preimage(res
->eq
[k
], bmap
->eq
[i
], ma
, n_before
,
12316 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
12319 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
12320 k
= isl_basic_map_alloc_inequality(res
);
12323 isl_seq_preimage(res
->ineq
[k
], bmap
->ineq
[i
], ma
, n_before
,
12324 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
12327 for (i
= 0; i
< bmap
->n_div
; ++i
) {
12328 if (isl_int_is_zero(bmap
->div
[i
][0])) {
12329 isl_int_set_si(res
->div
[n_div_ma
+ i
][0], 0);
12332 isl_seq_preimage(res
->div
[n_div_ma
+ i
], bmap
->div
[i
], ma
,
12333 n_before
, n_after
, n_div_ma
, n_div_bmap
,
12338 res
= add_ma_strides(res
, ma
, n_before
, n_after
);
12344 isl_basic_map_free(bmap
);
12345 isl_multi_aff_free(ma
);
12346 res
= isl_basic_set_simplify(res
);
12347 return isl_basic_map_finalize(res
);
12353 isl_basic_map_free(bmap
);
12354 isl_multi_aff_free(ma
);
12355 isl_basic_map_free(res
);
12359 /* Compute the preimage of "bset" under the function represented by "ma".
12360 * In other words, plug in "ma" in "bset". The result is a basic set
12361 * that lives in the domain space of "ma".
12363 __isl_give isl_basic_set
*isl_basic_set_preimage_multi_aff(
12364 __isl_take isl_basic_set
*bset
, __isl_take isl_multi_aff
*ma
)
12366 return isl_basic_map_preimage_multi_aff(bset
, isl_dim_set
, ma
);
12369 /* Compute the preimage of the domain of "bmap" under the function
12370 * represented by "ma".
12371 * In other words, plug in "ma" in the domain of "bmap".
12372 * The result is a basic map that lives in the same space as "bmap"
12373 * except that the domain has been replaced by the domain space of "ma".
12375 __isl_give isl_basic_map
*isl_basic_map_preimage_domain_multi_aff(
12376 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
12378 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_in
, ma
);
12381 /* Compute the preimage of the range of "bmap" under the function
12382 * represented by "ma".
12383 * In other words, plug in "ma" in the range of "bmap".
12384 * The result is a basic map that lives in the same space as "bmap"
12385 * except that the range has been replaced by the domain space of "ma".
12387 __isl_give isl_basic_map
*isl_basic_map_preimage_range_multi_aff(
12388 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
12390 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_out
, ma
);
12393 /* Check if the range of "ma" is compatible with the domain or range
12394 * (depending on "type") of "map".
12395 * Return -1 if anything is wrong.
12397 static int check_map_compatible_range_multi_aff(
12398 __isl_keep isl_map
*map
, enum isl_dim_type type
,
12399 __isl_keep isl_multi_aff
*ma
)
12402 isl_space
*ma_space
;
12404 ma_space
= isl_multi_aff_get_space(ma
);
12405 m
= isl_space_tuple_is_equal(map
->dim
, type
, ma_space
, isl_dim_out
);
12406 isl_space_free(ma_space
);
12408 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
12409 "spaces don't match", return -1);
12413 /* Compute the preimage of the domain or range (depending on "type")
12414 * of "map" under the function represented by "ma".
12415 * In other words, plug in "ma" in the domain or range of "map".
12416 * The result is a map that lives in the same space as "map"
12417 * except that the domain or range has been replaced by
12418 * the domain space of "ma".
12420 * The parameters are assumed to have been aligned.
12422 static __isl_give isl_map
*map_preimage_multi_aff(__isl_take isl_map
*map
,
12423 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
12428 map
= isl_map_cow(map
);
12429 ma
= isl_multi_aff_align_divs(ma
);
12432 if (check_map_compatible_range_multi_aff(map
, type
, ma
) < 0)
12435 for (i
= 0; i
< map
->n
; ++i
) {
12436 map
->p
[i
] = isl_basic_map_preimage_multi_aff(map
->p
[i
], type
,
12437 isl_multi_aff_copy(ma
));
12442 space
= isl_multi_aff_get_domain_space(ma
);
12443 space
= isl_space_set(isl_map_get_space(map
), type
, space
);
12445 isl_space_free(map
->dim
);
12450 isl_multi_aff_free(ma
);
12452 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
12453 ISL_F_CLR(map
, ISL_SET_NORMALIZED
);
12456 isl_multi_aff_free(ma
);
12461 /* Compute the preimage of the domain or range (depending on "type")
12462 * of "map" under the function represented by "ma".
12463 * In other words, plug in "ma" in the domain or range of "map".
12464 * The result is a map that lives in the same space as "map"
12465 * except that the domain or range has been replaced by
12466 * the domain space of "ma".
12468 __isl_give isl_map
*isl_map_preimage_multi_aff(__isl_take isl_map
*map
,
12469 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
12474 if (isl_space_match(map
->dim
, isl_dim_param
, ma
->space
, isl_dim_param
))
12475 return map_preimage_multi_aff(map
, type
, ma
);
12477 if (!isl_space_has_named_params(map
->dim
) ||
12478 !isl_space_has_named_params(ma
->space
))
12479 isl_die(map
->ctx
, isl_error_invalid
,
12480 "unaligned unnamed parameters", goto error
);
12481 map
= isl_map_align_params(map
, isl_multi_aff_get_space(ma
));
12482 ma
= isl_multi_aff_align_params(ma
, isl_map_get_space(map
));
12484 return map_preimage_multi_aff(map
, type
, ma
);
12486 isl_multi_aff_free(ma
);
12487 return isl_map_free(map
);
12490 /* Compute the preimage of "set" under the function represented by "ma".
12491 * In other words, plug in "ma" in "set". The result is a set
12492 * that lives in the domain space of "ma".
12494 __isl_give isl_set
*isl_set_preimage_multi_aff(__isl_take isl_set
*set
,
12495 __isl_take isl_multi_aff
*ma
)
12497 return isl_map_preimage_multi_aff(set
, isl_dim_set
, ma
);
12500 /* Compute the preimage of the domain of "map" under the function
12501 * represented by "ma".
12502 * In other words, plug in "ma" in the domain of "map".
12503 * The result is a map that lives in the same space as "map"
12504 * except that the domain has been replaced by the domain space of "ma".
12506 __isl_give isl_map
*isl_map_preimage_domain_multi_aff(__isl_take isl_map
*map
,
12507 __isl_take isl_multi_aff
*ma
)
12509 return isl_map_preimage_multi_aff(map
, isl_dim_in
, ma
);
12512 /* Compute the preimage of the range of "map" under the function
12513 * represented by "ma".
12514 * In other words, plug in "ma" in the range of "map".
12515 * The result is a map that lives in the same space as "map"
12516 * except that the range has been replaced by the domain space of "ma".
12518 __isl_give isl_map
*isl_map_preimage_range_multi_aff(__isl_take isl_map
*map
,
12519 __isl_take isl_multi_aff
*ma
)
12521 return isl_map_preimage_multi_aff(map
, isl_dim_out
, ma
);
12524 /* Compute the preimage of "map" under the function represented by "pma".
12525 * In other words, plug in "pma" in the domain or range of "map".
12526 * The result is a map that lives in the same space as "map",
12527 * except that the space of type "type" has been replaced by
12528 * the domain space of "pma".
12530 * The parameters of "map" and "pma" are assumed to have been aligned.
12532 static __isl_give isl_map
*isl_map_preimage_pw_multi_aff_aligned(
12533 __isl_take isl_map
*map
, enum isl_dim_type type
,
12534 __isl_take isl_pw_multi_aff
*pma
)
12543 isl_pw_multi_aff_free(pma
);
12544 res
= isl_map_empty(isl_map_get_space(map
));
12549 res
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
12550 isl_multi_aff_copy(pma
->p
[0].maff
));
12551 if (type
== isl_dim_in
)
12552 res
= isl_map_intersect_domain(res
,
12553 isl_map_copy(pma
->p
[0].set
));
12555 res
= isl_map_intersect_range(res
,
12556 isl_map_copy(pma
->p
[0].set
));
12558 for (i
= 1; i
< pma
->n
; ++i
) {
12561 res_i
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
12562 isl_multi_aff_copy(pma
->p
[i
].maff
));
12563 if (type
== isl_dim_in
)
12564 res_i
= isl_map_intersect_domain(res_i
,
12565 isl_map_copy(pma
->p
[i
].set
));
12567 res_i
= isl_map_intersect_range(res_i
,
12568 isl_map_copy(pma
->p
[i
].set
));
12569 res
= isl_map_union(res
, res_i
);
12572 isl_pw_multi_aff_free(pma
);
12576 isl_pw_multi_aff_free(pma
);
12581 /* Compute the preimage of "map" under the function represented by "pma".
12582 * In other words, plug in "pma" in the domain or range of "map".
12583 * The result is a map that lives in the same space as "map",
12584 * except that the space of type "type" has been replaced by
12585 * the domain space of "pma".
12587 __isl_give isl_map
*isl_map_preimage_pw_multi_aff(__isl_take isl_map
*map
,
12588 enum isl_dim_type type
, __isl_take isl_pw_multi_aff
*pma
)
12593 if (isl_space_match(map
->dim
, isl_dim_param
, pma
->dim
, isl_dim_param
))
12594 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
12596 if (!isl_space_has_named_params(map
->dim
) ||
12597 !isl_space_has_named_params(pma
->dim
))
12598 isl_die(map
->ctx
, isl_error_invalid
,
12599 "unaligned unnamed parameters", goto error
);
12600 map
= isl_map_align_params(map
, isl_pw_multi_aff_get_space(pma
));
12601 pma
= isl_pw_multi_aff_align_params(pma
, isl_map_get_space(map
));
12603 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
12605 isl_pw_multi_aff_free(pma
);
12606 return isl_map_free(map
);
12609 /* Compute the preimage of "set" under the function represented by "pma".
12610 * In other words, plug in "pma" in "set". The result is a set
12611 * that lives in the domain space of "pma".
12613 __isl_give isl_set
*isl_set_preimage_pw_multi_aff(__isl_take isl_set
*set
,
12614 __isl_take isl_pw_multi_aff
*pma
)
12616 return isl_map_preimage_pw_multi_aff(set
, isl_dim_set
, pma
);
12619 /* Compute the preimage of the domain of "map" under the function
12620 * represented by "pma".
12621 * In other words, plug in "pma" in the domain of "map".
12622 * The result is a map that lives in the same space as "map",
12623 * except that domain space has been replaced by the domain space of "pma".
12625 __isl_give isl_map
*isl_map_preimage_domain_pw_multi_aff(
12626 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
12628 return isl_map_preimage_pw_multi_aff(map
, isl_dim_in
, pma
);
12631 /* Compute the preimage of the range of "map" under the function
12632 * represented by "pma".
12633 * In other words, plug in "pma" in the range of "map".
12634 * The result is a map that lives in the same space as "map",
12635 * except that range space has been replaced by the domain space of "pma".
12637 __isl_give isl_map
*isl_map_preimage_range_pw_multi_aff(
12638 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
12640 return isl_map_preimage_pw_multi_aff(map
, isl_dim_out
, pma
);
12643 /* Compute the preimage of "map" under the function represented by "mpa".
12644 * In other words, plug in "mpa" in the domain or range of "map".
12645 * The result is a map that lives in the same space as "map",
12646 * except that the space of type "type" has been replaced by
12647 * the domain space of "mpa".
12649 * If the map does not involve any constraints that refer to the
12650 * dimensions of the substituted space, then the only possible
12651 * effect of "mpa" on the map is to map the space to a different space.
12652 * We create a separate isl_multi_aff to effectuate this change
12653 * in order to avoid spurious splitting of the map along the pieces
12656 __isl_give isl_map
*isl_map_preimage_multi_pw_aff(__isl_take isl_map
*map
,
12657 enum isl_dim_type type
, __isl_take isl_multi_pw_aff
*mpa
)
12660 isl_pw_multi_aff
*pma
;
12665 n
= isl_map_dim(map
, type
);
12666 if (!isl_map_involves_dims(map
, type
, 0, n
)) {
12670 space
= isl_multi_pw_aff_get_space(mpa
);
12671 isl_multi_pw_aff_free(mpa
);
12672 ma
= isl_multi_aff_zero(space
);
12673 return isl_map_preimage_multi_aff(map
, type
, ma
);
12676 pma
= isl_pw_multi_aff_from_multi_pw_aff(mpa
);
12677 return isl_map_preimage_pw_multi_aff(map
, type
, pma
);
12680 isl_multi_pw_aff_free(mpa
);
12684 /* Compute the preimage of "map" under the function represented by "mpa".
12685 * In other words, plug in "mpa" in the domain "map".
12686 * The result is a map that lives in the same space as "map",
12687 * except that domain space has been replaced by the domain space of "mpa".
12689 __isl_give isl_map
*isl_map_preimage_domain_multi_pw_aff(
12690 __isl_take isl_map
*map
, __isl_take isl_multi_pw_aff
*mpa
)
12692 return isl_map_preimage_multi_pw_aff(map
, isl_dim_in
, mpa
);
12695 /* Compute the preimage of "set" by the function represented by "mpa".
12696 * In other words, plug in "mpa" in "set".
12698 __isl_give isl_set
*isl_set_preimage_multi_pw_aff(__isl_take isl_set
*set
,
12699 __isl_take isl_multi_pw_aff
*mpa
)
12701 return isl_map_preimage_multi_pw_aff(set
, isl_dim_set
, mpa
);