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 int 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
) : -1;
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 int 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
) : -1;
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 int 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 int isl_set_has_tuple_name(__isl_keep isl_set
*set
)
539 return set
? isl_space_has_tuple_name(set
->dim
, isl_dim_set
) : -1;
543 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set
*bset
)
545 return bset
? isl_space_get_tuple_name(bset
->dim
, isl_dim_set
) : NULL
;
548 const char *isl_set_get_tuple_name(__isl_keep isl_set
*set
)
550 return set
? isl_space_get_tuple_name(set
->dim
, isl_dim_set
) : NULL
;
553 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map
*bmap
,
554 enum isl_dim_type type
, unsigned pos
)
556 return bmap
? isl_space_get_dim_name(bmap
->dim
, type
, pos
) : NULL
;
559 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set
*bset
,
560 enum isl_dim_type type
, unsigned pos
)
562 return bset
? isl_space_get_dim_name(bset
->dim
, type
, pos
) : NULL
;
565 /* Does the given dimension have a name?
567 int isl_map_has_dim_name(__isl_keep isl_map
*map
,
568 enum isl_dim_type type
, unsigned pos
)
570 return map
? isl_space_has_dim_name(map
->dim
, type
, pos
) : -1;
573 const char *isl_map_get_dim_name(__isl_keep isl_map
*map
,
574 enum isl_dim_type type
, unsigned pos
)
576 return map
? isl_space_get_dim_name(map
->dim
, type
, pos
) : NULL
;
579 const char *isl_set_get_dim_name(__isl_keep isl_set
*set
,
580 enum isl_dim_type type
, unsigned pos
)
582 return set
? isl_space_get_dim_name(set
->dim
, type
, pos
) : NULL
;
585 /* Does the given dimension have a name?
587 int isl_set_has_dim_name(__isl_keep isl_set
*set
,
588 enum isl_dim_type type
, unsigned pos
)
590 return set
? isl_space_has_dim_name(set
->dim
, type
, pos
) : -1;
593 __isl_give isl_basic_map
*isl_basic_map_set_dim_name(
594 __isl_take isl_basic_map
*bmap
,
595 enum isl_dim_type type
, unsigned pos
, const char *s
)
597 bmap
= isl_basic_map_cow(bmap
);
600 bmap
->dim
= isl_space_set_dim_name(bmap
->dim
, type
, pos
, s
);
603 return isl_basic_map_finalize(bmap
);
605 isl_basic_map_free(bmap
);
609 __isl_give isl_map
*isl_map_set_dim_name(__isl_take isl_map
*map
,
610 enum isl_dim_type type
, unsigned pos
, const char *s
)
614 map
= isl_map_cow(map
);
618 map
->dim
= isl_space_set_dim_name(map
->dim
, type
, pos
, s
);
622 for (i
= 0; i
< map
->n
; ++i
) {
623 map
->p
[i
] = isl_basic_map_set_dim_name(map
->p
[i
], type
, pos
, s
);
634 __isl_give isl_basic_set
*isl_basic_set_set_dim_name(
635 __isl_take isl_basic_set
*bset
,
636 enum isl_dim_type type
, unsigned pos
, const char *s
)
638 return (isl_basic_set
*)isl_basic_map_set_dim_name(
639 (isl_basic_map
*)bset
, type
, pos
, s
);
642 __isl_give isl_set
*isl_set_set_dim_name(__isl_take isl_set
*set
,
643 enum isl_dim_type type
, unsigned pos
, const char *s
)
645 return (isl_set
*)isl_map_set_dim_name((isl_map
*)set
, type
, pos
, s
);
648 int isl_basic_map_has_dim_id(__isl_keep isl_basic_map
*bmap
,
649 enum isl_dim_type type
, unsigned pos
)
651 return bmap
? isl_space_has_dim_id(bmap
->dim
, type
, pos
) : -1;
654 __isl_give isl_id
*isl_basic_set_get_dim_id(__isl_keep isl_basic_set
*bset
,
655 enum isl_dim_type type
, unsigned pos
)
657 return bset
? isl_space_get_dim_id(bset
->dim
, type
, pos
) : NULL
;
660 int isl_map_has_dim_id(__isl_keep isl_map
*map
,
661 enum isl_dim_type type
, unsigned pos
)
663 return map
? isl_space_has_dim_id(map
->dim
, type
, pos
) : -1;
666 __isl_give isl_id
*isl_map_get_dim_id(__isl_keep isl_map
*map
,
667 enum isl_dim_type type
, unsigned pos
)
669 return map
? isl_space_get_dim_id(map
->dim
, type
, pos
) : NULL
;
672 int isl_set_has_dim_id(__isl_keep isl_set
*set
,
673 enum isl_dim_type type
, unsigned pos
)
675 return isl_map_has_dim_id(set
, type
, pos
);
678 __isl_give isl_id
*isl_set_get_dim_id(__isl_keep isl_set
*set
,
679 enum isl_dim_type type
, unsigned pos
)
681 return isl_map_get_dim_id(set
, type
, pos
);
684 __isl_give isl_map
*isl_map_set_dim_id(__isl_take isl_map
*map
,
685 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
687 map
= isl_map_cow(map
);
691 map
->dim
= isl_space_set_dim_id(map
->dim
, type
, pos
, id
);
693 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
699 __isl_give isl_set
*isl_set_set_dim_id(__isl_take isl_set
*set
,
700 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
702 return isl_map_set_dim_id(set
, type
, pos
, id
);
705 int isl_map_find_dim_by_id(__isl_keep isl_map
*map
, enum isl_dim_type type
,
706 __isl_keep isl_id
*id
)
710 return isl_space_find_dim_by_id(map
->dim
, type
, id
);
713 int isl_set_find_dim_by_id(__isl_keep isl_set
*set
, enum isl_dim_type type
,
714 __isl_keep isl_id
*id
)
716 return isl_map_find_dim_by_id(set
, type
, id
);
719 /* Return the position of the dimension of the given type and name
721 * Return -1 if no such dimension can be found.
723 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map
*bmap
,
724 enum isl_dim_type type
, const char *name
)
728 return isl_space_find_dim_by_name(bmap
->dim
, type
, name
);
731 int isl_map_find_dim_by_name(__isl_keep isl_map
*map
, enum isl_dim_type type
,
736 return isl_space_find_dim_by_name(map
->dim
, type
, name
);
739 int isl_set_find_dim_by_name(__isl_keep isl_set
*set
, enum isl_dim_type type
,
742 return isl_map_find_dim_by_name(set
, type
, name
);
745 /* Reset the user pointer on all identifiers of parameters and tuples
746 * of the space of "map".
748 __isl_give isl_map
*isl_map_reset_user(__isl_take isl_map
*map
)
752 space
= isl_map_get_space(map
);
753 space
= isl_space_reset_user(space
);
754 map
= isl_map_reset_space(map
, space
);
759 /* Reset the user pointer on all identifiers of parameters and tuples
760 * of the space of "set".
762 __isl_give isl_set
*isl_set_reset_user(__isl_take isl_set
*set
)
764 return isl_map_reset_user(set
);
767 int isl_basic_map_is_rational(__isl_keep isl_basic_map
*bmap
)
771 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
774 int isl_basic_set_is_rational(__isl_keep isl_basic_set
*bset
)
776 return isl_basic_map_is_rational(bset
);
779 /* Does "bmap" contain any rational points?
781 * If "bmap" has an equality for each dimension, equating the dimension
782 * to an integer constant, then it has no rational points, even if it
783 * is marked as rational.
785 int isl_basic_map_has_rational(__isl_keep isl_basic_map
*bmap
)
787 int has_rational
= 1;
792 if (isl_basic_map_plain_is_empty(bmap
))
794 if (!isl_basic_map_is_rational(bmap
))
796 bmap
= isl_basic_map_copy(bmap
);
797 bmap
= isl_basic_map_implicit_equalities(bmap
);
800 total
= isl_basic_map_total_dim(bmap
);
801 if (bmap
->n_eq
== total
) {
803 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
804 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1, total
);
807 if (!isl_int_is_one(bmap
->eq
[i
][1 + j
]) &&
808 !isl_int_is_negone(bmap
->eq
[i
][1 + j
]))
810 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + j
+ 1,
818 isl_basic_map_free(bmap
);
823 /* Does "map" contain any rational points?
825 int isl_map_has_rational(__isl_keep isl_map
*map
)
832 for (i
= 0; i
< map
->n
; ++i
) {
833 has_rational
= isl_basic_map_has_rational(map
->p
[i
]);
834 if (has_rational
< 0)
842 /* Does "set" contain any rational points?
844 int isl_set_has_rational(__isl_keep isl_set
*set
)
846 return isl_map_has_rational(set
);
849 /* Is this basic set a parameter domain?
851 int isl_basic_set_is_params(__isl_keep isl_basic_set
*bset
)
855 return isl_space_is_params(bset
->dim
);
858 /* Is this set a parameter domain?
860 int isl_set_is_params(__isl_keep isl_set
*set
)
864 return isl_space_is_params(set
->dim
);
867 /* Is this map actually a parameter domain?
868 * Users should never call this function. Outside of isl,
869 * a map can never be a parameter domain.
871 int isl_map_is_params(__isl_keep isl_map
*map
)
875 return isl_space_is_params(map
->dim
);
878 static struct isl_basic_map
*basic_map_init(struct isl_ctx
*ctx
,
879 struct isl_basic_map
*bmap
, unsigned extra
,
880 unsigned n_eq
, unsigned n_ineq
)
883 size_t row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + extra
;
888 bmap
->block
= isl_blk_alloc(ctx
, (n_ineq
+ n_eq
) * row_size
);
889 if (isl_blk_is_error(bmap
->block
))
892 bmap
->ineq
= isl_alloc_array(ctx
, isl_int
*, n_ineq
+ n_eq
);
893 if ((n_ineq
+ n_eq
) && !bmap
->ineq
)
897 bmap
->block2
= isl_blk_empty();
900 bmap
->block2
= isl_blk_alloc(ctx
, extra
* (1 + row_size
));
901 if (isl_blk_is_error(bmap
->block2
))
904 bmap
->div
= isl_alloc_array(ctx
, isl_int
*, extra
);
909 for (i
= 0; i
< n_ineq
+ n_eq
; ++i
)
910 bmap
->ineq
[i
] = bmap
->block
.data
+ i
* row_size
;
912 for (i
= 0; i
< extra
; ++i
)
913 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + row_size
);
917 bmap
->c_size
= n_eq
+ n_ineq
;
918 bmap
->eq
= bmap
->ineq
+ n_ineq
;
927 isl_basic_map_free(bmap
);
931 struct isl_basic_set
*isl_basic_set_alloc(struct isl_ctx
*ctx
,
932 unsigned nparam
, unsigned dim
, unsigned extra
,
933 unsigned n_eq
, unsigned n_ineq
)
935 struct isl_basic_map
*bmap
;
938 space
= isl_space_set_alloc(ctx
, nparam
, dim
);
942 bmap
= isl_basic_map_alloc_space(space
, extra
, n_eq
, n_ineq
);
943 return (struct isl_basic_set
*)bmap
;
946 struct isl_basic_set
*isl_basic_set_alloc_space(__isl_take isl_space
*dim
,
947 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
949 struct isl_basic_map
*bmap
;
952 isl_assert(dim
->ctx
, dim
->n_in
== 0, goto error
);
953 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
954 return (struct isl_basic_set
*)bmap
;
960 struct isl_basic_map
*isl_basic_map_alloc_space(__isl_take isl_space
*dim
,
961 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
963 struct isl_basic_map
*bmap
;
967 bmap
= isl_calloc_type(dim
->ctx
, struct isl_basic_map
);
972 return basic_map_init(dim
->ctx
, bmap
, extra
, n_eq
, n_ineq
);
978 struct isl_basic_map
*isl_basic_map_alloc(struct isl_ctx
*ctx
,
979 unsigned nparam
, unsigned in
, unsigned out
, unsigned extra
,
980 unsigned n_eq
, unsigned n_ineq
)
982 struct isl_basic_map
*bmap
;
985 dim
= isl_space_alloc(ctx
, nparam
, in
, out
);
989 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
993 static void dup_constraints(
994 struct isl_basic_map
*dst
, struct isl_basic_map
*src
)
997 unsigned total
= isl_basic_map_total_dim(src
);
999 for (i
= 0; i
< src
->n_eq
; ++i
) {
1000 int j
= isl_basic_map_alloc_equality(dst
);
1001 isl_seq_cpy(dst
->eq
[j
], src
->eq
[i
], 1+total
);
1004 for (i
= 0; i
< src
->n_ineq
; ++i
) {
1005 int j
= isl_basic_map_alloc_inequality(dst
);
1006 isl_seq_cpy(dst
->ineq
[j
], src
->ineq
[i
], 1+total
);
1009 for (i
= 0; i
< src
->n_div
; ++i
) {
1010 int j
= isl_basic_map_alloc_div(dst
);
1011 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
);
1013 ISL_F_SET(dst
, ISL_BASIC_SET_FINAL
);
1016 struct isl_basic_map
*isl_basic_map_dup(struct isl_basic_map
*bmap
)
1018 struct isl_basic_map
*dup
;
1022 dup
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
1023 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
1026 dup_constraints(dup
, bmap
);
1027 dup
->flags
= bmap
->flags
;
1028 dup
->sample
= isl_vec_copy(bmap
->sample
);
1032 struct isl_basic_set
*isl_basic_set_dup(struct isl_basic_set
*bset
)
1034 struct isl_basic_map
*dup
;
1036 dup
= isl_basic_map_dup((struct isl_basic_map
*)bset
);
1037 return (struct isl_basic_set
*)dup
;
1040 struct isl_basic_set
*isl_basic_set_copy(struct isl_basic_set
*bset
)
1045 if (ISL_F_ISSET(bset
, ISL_BASIC_SET_FINAL
)) {
1049 return isl_basic_set_dup(bset
);
1052 struct isl_set
*isl_set_copy(struct isl_set
*set
)
1061 struct isl_basic_map
*isl_basic_map_copy(struct isl_basic_map
*bmap
)
1066 if (ISL_F_ISSET(bmap
, ISL_BASIC_SET_FINAL
)) {
1070 bmap
= isl_basic_map_dup(bmap
);
1072 ISL_F_SET(bmap
, ISL_BASIC_SET_FINAL
);
1076 struct isl_map
*isl_map_copy(struct isl_map
*map
)
1085 __isl_null isl_basic_map
*isl_basic_map_free(__isl_take isl_basic_map
*bmap
)
1090 if (--bmap
->ref
> 0)
1093 isl_ctx_deref(bmap
->ctx
);
1095 isl_blk_free(bmap
->ctx
, bmap
->block2
);
1097 isl_blk_free(bmap
->ctx
, bmap
->block
);
1098 isl_vec_free(bmap
->sample
);
1099 isl_space_free(bmap
->dim
);
1105 __isl_null isl_basic_set
*isl_basic_set_free(__isl_take isl_basic_set
*bset
)
1107 return isl_basic_map_free((struct isl_basic_map
*)bset
);
1110 static int room_for_con(struct isl_basic_map
*bmap
, unsigned n
)
1112 return bmap
->n_eq
+ bmap
->n_ineq
+ n
<= bmap
->c_size
;
1115 __isl_give isl_map
*isl_map_align_params_map_map_and(
1116 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
,
1117 __isl_give isl_map
*(*fn
)(__isl_take isl_map
*map1
,
1118 __isl_take isl_map
*map2
))
1122 if (isl_space_match(map1
->dim
, isl_dim_param
, map2
->dim
, isl_dim_param
))
1123 return fn(map1
, map2
);
1124 if (!isl_space_has_named_params(map1
->dim
) ||
1125 !isl_space_has_named_params(map2
->dim
))
1126 isl_die(map1
->ctx
, isl_error_invalid
,
1127 "unaligned unnamed parameters", goto error
);
1128 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1129 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1130 return fn(map1
, map2
);
1137 int isl_map_align_params_map_map_and_test(__isl_keep isl_map
*map1
,
1138 __isl_keep isl_map
*map2
,
1139 int (*fn
)(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
))
1145 if (isl_space_match(map1
->dim
, isl_dim_param
, map2
->dim
, isl_dim_param
))
1146 return fn(map1
, map2
);
1147 if (!isl_space_has_named_params(map1
->dim
) ||
1148 !isl_space_has_named_params(map2
->dim
))
1149 isl_die(map1
->ctx
, isl_error_invalid
,
1150 "unaligned unnamed parameters", return -1);
1151 map1
= isl_map_copy(map1
);
1152 map2
= isl_map_copy(map2
);
1153 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1154 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1161 int isl_basic_map_alloc_equality(struct isl_basic_map
*bmap
)
1163 struct isl_ctx
*ctx
;
1167 isl_assert(ctx
, room_for_con(bmap
, 1), return -1);
1168 isl_assert(ctx
, (bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
<= bmap
->c_size
,
1170 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1171 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1172 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1173 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1174 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1175 if ((bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
== bmap
->c_size
) {
1177 int j
= isl_basic_map_alloc_inequality(bmap
);
1181 bmap
->ineq
[j
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1182 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1189 isl_seq_clr(bmap
->eq
[bmap
->n_eq
] + 1 + isl_basic_map_total_dim(bmap
),
1190 bmap
->extra
- bmap
->n_div
);
1191 return bmap
->n_eq
++;
1194 int isl_basic_set_alloc_equality(struct isl_basic_set
*bset
)
1196 return isl_basic_map_alloc_equality((struct isl_basic_map
*)bset
);
1199 int isl_basic_map_free_equality(struct isl_basic_map
*bmap
, unsigned n
)
1203 isl_assert(bmap
->ctx
, n
<= bmap
->n_eq
, return -1);
1208 int isl_basic_set_free_equality(struct isl_basic_set
*bset
, unsigned n
)
1210 return isl_basic_map_free_equality((struct isl_basic_map
*)bset
, n
);
1213 int isl_basic_map_drop_equality(struct isl_basic_map
*bmap
, unsigned pos
)
1218 isl_assert(bmap
->ctx
, pos
< bmap
->n_eq
, return -1);
1220 if (pos
!= bmap
->n_eq
- 1) {
1222 bmap
->eq
[pos
] = bmap
->eq
[bmap
->n_eq
- 1];
1223 bmap
->eq
[bmap
->n_eq
- 1] = t
;
1229 int isl_basic_set_drop_equality(struct isl_basic_set
*bset
, unsigned pos
)
1231 return isl_basic_map_drop_equality((struct isl_basic_map
*)bset
, pos
);
1234 /* Turn inequality "pos" of "bmap" into an equality.
1236 * In particular, we move the inequality in front of the equalities
1237 * and move the last inequality in the position of the moved inequality.
1238 * Note that isl_tab_make_equalities_explicit depends on this particular
1239 * change in the ordering of the constraints.
1241 void isl_basic_map_inequality_to_equality(
1242 struct isl_basic_map
*bmap
, unsigned pos
)
1246 t
= bmap
->ineq
[pos
];
1247 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1248 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1253 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1254 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1255 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1256 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1259 static int room_for_ineq(struct isl_basic_map
*bmap
, unsigned n
)
1261 return bmap
->n_ineq
+ n
<= bmap
->eq
- bmap
->ineq
;
1264 int isl_basic_map_alloc_inequality(struct isl_basic_map
*bmap
)
1266 struct isl_ctx
*ctx
;
1270 isl_assert(ctx
, room_for_ineq(bmap
, 1), return -1);
1271 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1272 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1273 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1274 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1275 isl_seq_clr(bmap
->ineq
[bmap
->n_ineq
] +
1276 1 + isl_basic_map_total_dim(bmap
),
1277 bmap
->extra
- bmap
->n_div
);
1278 return bmap
->n_ineq
++;
1281 int isl_basic_set_alloc_inequality(struct isl_basic_set
*bset
)
1283 return isl_basic_map_alloc_inequality((struct isl_basic_map
*)bset
);
1286 int isl_basic_map_free_inequality(struct isl_basic_map
*bmap
, unsigned n
)
1290 isl_assert(bmap
->ctx
, n
<= bmap
->n_ineq
, return -1);
1295 int isl_basic_set_free_inequality(struct isl_basic_set
*bset
, unsigned n
)
1297 return isl_basic_map_free_inequality((struct isl_basic_map
*)bset
, n
);
1300 int isl_basic_map_drop_inequality(struct isl_basic_map
*bmap
, unsigned pos
)
1305 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
1307 if (pos
!= bmap
->n_ineq
- 1) {
1308 t
= bmap
->ineq
[pos
];
1309 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1310 bmap
->ineq
[bmap
->n_ineq
- 1] = t
;
1311 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1317 int isl_basic_set_drop_inequality(struct isl_basic_set
*bset
, unsigned pos
)
1319 return isl_basic_map_drop_inequality((struct isl_basic_map
*)bset
, pos
);
1322 __isl_give isl_basic_map
*isl_basic_map_add_eq(__isl_take isl_basic_map
*bmap
,
1327 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
1330 k
= isl_basic_map_alloc_equality(bmap
);
1333 isl_seq_cpy(bmap
->eq
[k
], eq
, 1 + isl_basic_map_total_dim(bmap
));
1336 isl_basic_map_free(bmap
);
1340 __isl_give isl_basic_set
*isl_basic_set_add_eq(__isl_take isl_basic_set
*bset
,
1343 return (isl_basic_set
*)
1344 isl_basic_map_add_eq((isl_basic_map
*)bset
, eq
);
1347 __isl_give isl_basic_map
*isl_basic_map_add_ineq(__isl_take isl_basic_map
*bmap
,
1352 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
1355 k
= isl_basic_map_alloc_inequality(bmap
);
1358 isl_seq_cpy(bmap
->ineq
[k
], ineq
, 1 + isl_basic_map_total_dim(bmap
));
1361 isl_basic_map_free(bmap
);
1365 __isl_give isl_basic_set
*isl_basic_set_add_ineq(__isl_take isl_basic_set
*bset
,
1368 return (isl_basic_set
*)
1369 isl_basic_map_add_ineq((isl_basic_map
*)bset
, ineq
);
1372 int isl_basic_map_alloc_div(struct isl_basic_map
*bmap
)
1376 isl_assert(bmap
->ctx
, bmap
->n_div
< bmap
->extra
, return -1);
1377 isl_seq_clr(bmap
->div
[bmap
->n_div
] +
1378 1 + 1 + isl_basic_map_total_dim(bmap
),
1379 bmap
->extra
- bmap
->n_div
);
1380 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1381 return bmap
->n_div
++;
1384 int isl_basic_set_alloc_div(struct isl_basic_set
*bset
)
1386 return isl_basic_map_alloc_div((struct isl_basic_map
*)bset
);
1389 int isl_basic_map_free_div(struct isl_basic_map
*bmap
, unsigned n
)
1393 isl_assert(bmap
->ctx
, n
<= bmap
->n_div
, return -1);
1398 int isl_basic_set_free_div(struct isl_basic_set
*bset
, unsigned n
)
1400 return isl_basic_map_free_div((struct isl_basic_map
*)bset
, n
);
1403 /* Copy constraint from src to dst, putting the vars of src at offset
1404 * dim_off in dst and the divs of src at offset div_off in dst.
1405 * If both sets are actually map, then dim_off applies to the input
1408 static void copy_constraint(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1409 struct isl_basic_map
*src_map
, isl_int
*src
,
1410 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1412 unsigned src_nparam
= isl_basic_map_n_param(src_map
);
1413 unsigned dst_nparam
= isl_basic_map_n_param(dst_map
);
1414 unsigned src_in
= isl_basic_map_n_in(src_map
);
1415 unsigned dst_in
= isl_basic_map_n_in(dst_map
);
1416 unsigned src_out
= isl_basic_map_n_out(src_map
);
1417 unsigned dst_out
= isl_basic_map_n_out(dst_map
);
1418 isl_int_set(dst
[0], src
[0]);
1419 isl_seq_cpy(dst
+1, src
+1, isl_min(dst_nparam
, src_nparam
));
1420 if (dst_nparam
> src_nparam
)
1421 isl_seq_clr(dst
+1+src_nparam
,
1422 dst_nparam
- src_nparam
);
1423 isl_seq_clr(dst
+1+dst_nparam
, in_off
);
1424 isl_seq_cpy(dst
+1+dst_nparam
+in_off
,
1426 isl_min(dst_in
-in_off
, src_in
));
1427 if (dst_in
-in_off
> src_in
)
1428 isl_seq_clr(dst
+1+dst_nparam
+in_off
+src_in
,
1429 dst_in
- in_off
- src_in
);
1430 isl_seq_clr(dst
+1+dst_nparam
+dst_in
, out_off
);
1431 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+out_off
,
1432 src
+1+src_nparam
+src_in
,
1433 isl_min(dst_out
-out_off
, src_out
));
1434 if (dst_out
-out_off
> src_out
)
1435 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+out_off
+src_out
,
1436 dst_out
- out_off
- src_out
);
1437 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
, div_off
);
1438 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+dst_out
+div_off
,
1439 src
+1+src_nparam
+src_in
+src_out
,
1440 isl_min(dst_map
->extra
-div_off
, src_map
->n_div
));
1441 if (dst_map
->n_div
-div_off
> src_map
->n_div
)
1442 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
+
1443 div_off
+src_map
->n_div
,
1444 dst_map
->n_div
- div_off
- src_map
->n_div
);
1447 static void copy_div(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1448 struct isl_basic_map
*src_map
, isl_int
*src
,
1449 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1451 isl_int_set(dst
[0], src
[0]);
1452 copy_constraint(dst_map
, dst
+1, src_map
, src
+1, in_off
, out_off
, div_off
);
1455 static struct isl_basic_map
*add_constraints(struct isl_basic_map
*bmap1
,
1456 struct isl_basic_map
*bmap2
, unsigned i_pos
, unsigned o_pos
)
1461 if (!bmap1
|| !bmap2
)
1464 div_off
= bmap1
->n_div
;
1466 for (i
= 0; i
< bmap2
->n_eq
; ++i
) {
1467 int i1
= isl_basic_map_alloc_equality(bmap1
);
1470 copy_constraint(bmap1
, bmap1
->eq
[i1
], bmap2
, bmap2
->eq
[i
],
1471 i_pos
, o_pos
, div_off
);
1474 for (i
= 0; i
< bmap2
->n_ineq
; ++i
) {
1475 int i1
= isl_basic_map_alloc_inequality(bmap1
);
1478 copy_constraint(bmap1
, bmap1
->ineq
[i1
], bmap2
, bmap2
->ineq
[i
],
1479 i_pos
, o_pos
, div_off
);
1482 for (i
= 0; i
< bmap2
->n_div
; ++i
) {
1483 int i1
= isl_basic_map_alloc_div(bmap1
);
1486 copy_div(bmap1
, bmap1
->div
[i1
], bmap2
, bmap2
->div
[i
],
1487 i_pos
, o_pos
, div_off
);
1490 isl_basic_map_free(bmap2
);
1495 isl_basic_map_free(bmap1
);
1496 isl_basic_map_free(bmap2
);
1500 struct isl_basic_set
*isl_basic_set_add_constraints(struct isl_basic_set
*bset1
,
1501 struct isl_basic_set
*bset2
, unsigned pos
)
1503 return (struct isl_basic_set
*)
1504 add_constraints((struct isl_basic_map
*)bset1
,
1505 (struct isl_basic_map
*)bset2
, 0, pos
);
1508 struct isl_basic_map
*isl_basic_map_extend_space(struct isl_basic_map
*base
,
1509 __isl_take isl_space
*dim
, unsigned extra
,
1510 unsigned n_eq
, unsigned n_ineq
)
1512 struct isl_basic_map
*ext
;
1522 dims_ok
= isl_space_is_equal(base
->dim
, dim
) &&
1523 base
->extra
>= base
->n_div
+ extra
;
1525 if (dims_ok
&& room_for_con(base
, n_eq
+ n_ineq
) &&
1526 room_for_ineq(base
, n_ineq
)) {
1527 isl_space_free(dim
);
1531 isl_assert(base
->ctx
, base
->dim
->nparam
<= dim
->nparam
, goto error
);
1532 isl_assert(base
->ctx
, base
->dim
->n_in
<= dim
->n_in
, goto error
);
1533 isl_assert(base
->ctx
, base
->dim
->n_out
<= dim
->n_out
, goto error
);
1534 extra
+= base
->extra
;
1536 n_ineq
+= base
->n_ineq
;
1538 ext
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1544 ext
->sample
= isl_vec_copy(base
->sample
);
1545 flags
= base
->flags
;
1546 ext
= add_constraints(ext
, base
, 0, 0);
1549 ISL_F_CLR(ext
, ISL_BASIC_SET_FINAL
);
1555 isl_space_free(dim
);
1556 isl_basic_map_free(base
);
1560 struct isl_basic_set
*isl_basic_set_extend_space(struct isl_basic_set
*base
,
1561 __isl_take isl_space
*dim
, unsigned extra
,
1562 unsigned n_eq
, unsigned n_ineq
)
1564 return (struct isl_basic_set
*)
1565 isl_basic_map_extend_space((struct isl_basic_map
*)base
, dim
,
1566 extra
, n_eq
, n_ineq
);
1569 struct isl_basic_map
*isl_basic_map_extend_constraints(
1570 struct isl_basic_map
*base
, unsigned n_eq
, unsigned n_ineq
)
1574 return isl_basic_map_extend_space(base
, isl_space_copy(base
->dim
),
1578 struct isl_basic_map
*isl_basic_map_extend(struct isl_basic_map
*base
,
1579 unsigned nparam
, unsigned n_in
, unsigned n_out
, unsigned extra
,
1580 unsigned n_eq
, unsigned n_ineq
)
1582 struct isl_basic_map
*bmap
;
1587 dim
= isl_space_alloc(base
->ctx
, nparam
, n_in
, n_out
);
1591 bmap
= isl_basic_map_extend_space(base
, dim
, extra
, n_eq
, n_ineq
);
1594 isl_basic_map_free(base
);
1598 struct isl_basic_set
*isl_basic_set_extend(struct isl_basic_set
*base
,
1599 unsigned nparam
, unsigned dim
, unsigned extra
,
1600 unsigned n_eq
, unsigned n_ineq
)
1602 return (struct isl_basic_set
*)
1603 isl_basic_map_extend((struct isl_basic_map
*)base
,
1604 nparam
, 0, dim
, extra
, n_eq
, n_ineq
);
1607 struct isl_basic_set
*isl_basic_set_extend_constraints(
1608 struct isl_basic_set
*base
, unsigned n_eq
, unsigned n_ineq
)
1610 return (struct isl_basic_set
*)
1611 isl_basic_map_extend_constraints((struct isl_basic_map
*)base
,
1615 struct isl_basic_set
*isl_basic_set_cow(struct isl_basic_set
*bset
)
1617 return (struct isl_basic_set
*)
1618 isl_basic_map_cow((struct isl_basic_map
*)bset
);
1621 struct isl_basic_map
*isl_basic_map_cow(struct isl_basic_map
*bmap
)
1626 if (bmap
->ref
> 1) {
1628 bmap
= isl_basic_map_dup(bmap
);
1631 ISL_F_CLR(bmap
, ISL_BASIC_SET_FINAL
);
1632 ISL_F_CLR(bmap
, ISL_BASIC_MAP_REDUCED_COEFFICIENTS
);
1637 struct isl_set
*isl_set_cow(struct isl_set
*set
)
1645 return isl_set_dup(set
);
1648 struct isl_map
*isl_map_cow(struct isl_map
*map
)
1656 return isl_map_dup(map
);
1659 static void swap_vars(struct isl_blk blk
, isl_int
*a
,
1660 unsigned a_len
, unsigned b_len
)
1662 isl_seq_cpy(blk
.data
, a
+a_len
, b_len
);
1663 isl_seq_cpy(blk
.data
+b_len
, a
, a_len
);
1664 isl_seq_cpy(a
, blk
.data
, b_len
+a_len
);
1667 static __isl_give isl_basic_map
*isl_basic_map_swap_vars(
1668 __isl_take isl_basic_map
*bmap
, unsigned pos
, unsigned n1
, unsigned n2
)
1676 isl_assert(bmap
->ctx
,
1677 pos
+ n1
+ n2
<= 1 + isl_basic_map_total_dim(bmap
), goto error
);
1679 if (n1
== 0 || n2
== 0)
1682 bmap
= isl_basic_map_cow(bmap
);
1686 blk
= isl_blk_alloc(bmap
->ctx
, n1
+ n2
);
1687 if (isl_blk_is_error(blk
))
1690 for (i
= 0; i
< bmap
->n_eq
; ++i
)
1692 bmap
->eq
[i
] + pos
, n1
, n2
);
1694 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
1696 bmap
->ineq
[i
] + pos
, n1
, n2
);
1698 for (i
= 0; i
< bmap
->n_div
; ++i
)
1700 bmap
->div
[i
]+1 + pos
, n1
, n2
);
1702 isl_blk_free(bmap
->ctx
, blk
);
1704 ISL_F_CLR(bmap
, ISL_BASIC_SET_NORMALIZED
);
1705 bmap
= isl_basic_map_gauss(bmap
, NULL
);
1706 return isl_basic_map_finalize(bmap
);
1708 isl_basic_map_free(bmap
);
1712 static __isl_give isl_basic_set
*isl_basic_set_swap_vars(
1713 __isl_take isl_basic_set
*bset
, unsigned n
)
1721 nparam
= isl_basic_set_n_param(bset
);
1722 dim
= isl_basic_set_n_dim(bset
);
1723 isl_assert(bset
->ctx
, n
<= dim
, goto error
);
1725 return isl_basic_map_swap_vars(bset
, 1 + nparam
, n
, dim
- n
);
1727 isl_basic_set_free(bset
);
1731 struct isl_basic_map
*isl_basic_map_set_to_empty(struct isl_basic_map
*bmap
)
1737 total
= isl_basic_map_total_dim(bmap
);
1738 isl_basic_map_free_div(bmap
, bmap
->n_div
);
1739 isl_basic_map_free_inequality(bmap
, bmap
->n_ineq
);
1741 isl_basic_map_free_equality(bmap
, bmap
->n_eq
-1);
1743 i
= isl_basic_map_alloc_equality(bmap
);
1747 isl_int_set_si(bmap
->eq
[i
][0], 1);
1748 isl_seq_clr(bmap
->eq
[i
]+1, total
);
1749 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
1750 isl_vec_free(bmap
->sample
);
1751 bmap
->sample
= NULL
;
1752 return isl_basic_map_finalize(bmap
);
1754 isl_basic_map_free(bmap
);
1758 struct isl_basic_set
*isl_basic_set_set_to_empty(struct isl_basic_set
*bset
)
1760 return (struct isl_basic_set
*)
1761 isl_basic_map_set_to_empty((struct isl_basic_map
*)bset
);
1764 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
1767 static void swap_div(__isl_keep isl_basic_map
*bmap
, int a
, int b
)
1769 isl_int
*t
= bmap
->div
[a
];
1770 bmap
->div
[a
] = bmap
->div
[b
];
1774 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
1775 * div definitions accordingly.
1777 void isl_basic_map_swap_div(struct isl_basic_map
*bmap
, int a
, int b
)
1780 unsigned off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
1782 swap_div(bmap
, a
, b
);
1784 for (i
= 0; i
< bmap
->n_eq
; ++i
)
1785 isl_int_swap(bmap
->eq
[i
][1+off
+a
], bmap
->eq
[i
][1+off
+b
]);
1787 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
1788 isl_int_swap(bmap
->ineq
[i
][1+off
+a
], bmap
->ineq
[i
][1+off
+b
]);
1790 for (i
= 0; i
< bmap
->n_div
; ++i
)
1791 isl_int_swap(bmap
->div
[i
][1+1+off
+a
], bmap
->div
[i
][1+1+off
+b
]);
1792 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1795 /* Eliminate the specified n dimensions starting at first from the
1796 * constraints, without removing the dimensions from the space.
1797 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1799 __isl_give isl_map
*isl_map_eliminate(__isl_take isl_map
*map
,
1800 enum isl_dim_type type
, unsigned first
, unsigned n
)
1809 if (first
+ n
> isl_map_dim(map
, type
) || first
+ n
< first
)
1810 isl_die(map
->ctx
, isl_error_invalid
,
1811 "index out of bounds", goto error
);
1813 map
= isl_map_cow(map
);
1817 for (i
= 0; i
< map
->n
; ++i
) {
1818 map
->p
[i
] = isl_basic_map_eliminate(map
->p
[i
], type
, first
, n
);
1828 /* Eliminate the specified n dimensions starting at first from the
1829 * constraints, without removing the dimensions from the space.
1830 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1832 __isl_give isl_set
*isl_set_eliminate(__isl_take isl_set
*set
,
1833 enum isl_dim_type type
, unsigned first
, unsigned n
)
1835 return (isl_set
*)isl_map_eliminate((isl_map
*)set
, type
, first
, n
);
1838 /* Eliminate the specified n dimensions starting at first from the
1839 * constraints, without removing the dimensions from the space.
1840 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1842 __isl_give isl_set
*isl_set_eliminate_dims(__isl_take isl_set
*set
,
1843 unsigned first
, unsigned n
)
1845 return isl_set_eliminate(set
, isl_dim_set
, first
, n
);
1848 __isl_give isl_basic_map
*isl_basic_map_remove_divs(
1849 __isl_take isl_basic_map
*bmap
)
1853 bmap
= isl_basic_map_eliminate_vars(bmap
,
1854 isl_space_dim(bmap
->dim
, isl_dim_all
), bmap
->n_div
);
1858 return isl_basic_map_finalize(bmap
);
1861 __isl_give isl_basic_set
*isl_basic_set_remove_divs(
1862 __isl_take isl_basic_set
*bset
)
1864 return (struct isl_basic_set
*)isl_basic_map_remove_divs(
1865 (struct isl_basic_map
*)bset
);
1868 __isl_give isl_map
*isl_map_remove_divs(__isl_take isl_map
*map
)
1877 map
= isl_map_cow(map
);
1881 for (i
= 0; i
< map
->n
; ++i
) {
1882 map
->p
[i
] = isl_basic_map_remove_divs(map
->p
[i
]);
1892 __isl_give isl_set
*isl_set_remove_divs(__isl_take isl_set
*set
)
1894 return isl_map_remove_divs(set
);
1897 struct isl_basic_map
*isl_basic_map_remove_dims(struct isl_basic_map
*bmap
,
1898 enum isl_dim_type type
, unsigned first
, unsigned n
)
1902 isl_assert(bmap
->ctx
, first
+ n
<= isl_basic_map_dim(bmap
, type
),
1904 if (n
== 0 && !isl_space_is_named_or_nested(bmap
->dim
, type
))
1906 bmap
= isl_basic_map_eliminate_vars(bmap
,
1907 isl_basic_map_offset(bmap
, type
) - 1 + first
, n
);
1910 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
) && type
== isl_dim_div
)
1912 bmap
= isl_basic_map_drop(bmap
, type
, first
, n
);
1915 isl_basic_map_free(bmap
);
1919 /* Return true if the definition of the given div (recursively) involves
1920 * any of the given variables.
1922 static int div_involves_vars(__isl_keep isl_basic_map
*bmap
, int div
,
1923 unsigned first
, unsigned n
)
1926 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
1928 if (isl_int_is_zero(bmap
->div
[div
][0]))
1930 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + first
, n
) >= 0)
1933 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
1934 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
1936 if (div_involves_vars(bmap
, i
, first
, n
))
1943 /* Try and add a lower and/or upper bound on "div" to "bmap"
1944 * based on inequality "i".
1945 * "total" is the total number of variables (excluding the divs).
1946 * "v" is a temporary object that can be used during the calculations.
1947 * If "lb" is set, then a lower bound should be constructed.
1948 * If "ub" is set, then an upper bound should be constructed.
1950 * The calling function has already checked that the inequality does not
1951 * reference "div", but we still need to check that the inequality is
1952 * of the right form. We'll consider the case where we want to construct
1953 * a lower bound. The construction of upper bounds is similar.
1955 * Let "div" be of the form
1957 * q = floor((a + f(x))/d)
1959 * We essentially check if constraint "i" is of the form
1963 * so that we can use it to derive a lower bound on "div".
1964 * However, we allow a slightly more general form
1968 * with the condition that the coefficients of g(x) - f(x) are all
1970 * Rewriting this constraint as
1974 * adding a + f(x) to both sides and dividing by d, we obtain
1976 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
1978 * Taking the floor on both sides, we obtain
1980 * q >= floor((a-b)/d) + (f(x)-g(x))/d
1984 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
1986 * In the case of an upper bound, we construct the constraint
1988 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
1991 static __isl_give isl_basic_map
*insert_bounds_on_div_from_ineq(
1992 __isl_take isl_basic_map
*bmap
, int div
, int i
,
1993 unsigned total
, isl_int v
, int lb
, int ub
)
1997 for (j
= 0; (lb
|| ub
) && j
< total
+ bmap
->n_div
; ++j
) {
1999 isl_int_sub(v
, bmap
->ineq
[i
][1 + j
],
2000 bmap
->div
[div
][1 + 1 + j
]);
2001 lb
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
2004 isl_int_add(v
, bmap
->ineq
[i
][1 + j
],
2005 bmap
->div
[div
][1 + 1 + j
]);
2006 ub
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
2012 bmap
= isl_basic_map_cow(bmap
);
2013 bmap
= isl_basic_map_extend_constraints(bmap
, 0, lb
+ ub
);
2015 int k
= isl_basic_map_alloc_inequality(bmap
);
2018 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2019 isl_int_sub(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2020 bmap
->div
[div
][1 + j
]);
2021 isl_int_cdiv_q(bmap
->ineq
[k
][j
],
2022 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2024 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], 1);
2027 int k
= isl_basic_map_alloc_inequality(bmap
);
2030 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2031 isl_int_add(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2032 bmap
->div
[div
][1 + j
]);
2033 isl_int_fdiv_q(bmap
->ineq
[k
][j
],
2034 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2036 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], -1);
2039 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2042 isl_basic_map_free(bmap
);
2046 /* This function is called right before "div" is eliminated from "bmap"
2047 * using Fourier-Motzkin.
2048 * Look through the constraints of "bmap" for constraints on the argument
2049 * of the integer division and use them to construct constraints on the
2050 * integer division itself. These constraints can then be combined
2051 * during the Fourier-Motzkin elimination.
2052 * Note that it is only useful to introduce lower bounds on "div"
2053 * if "bmap" already contains upper bounds on "div" as the newly
2054 * introduce lower bounds can then be combined with the pre-existing
2055 * upper bounds. Similarly for upper bounds.
2056 * We therefore first check if "bmap" contains any lower and/or upper bounds
2059 * It is interesting to note that the introduction of these constraints
2060 * can indeed lead to more accurate results, even when compared to
2061 * deriving constraints on the argument of "div" from constraints on "div".
2062 * Consider, for example, the set
2064 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2066 * The second constraint can be rewritten as
2068 * 2 * [(-i-2j+3)/4] + k >= 0
2070 * from which we can derive
2072 * -i - 2j + 3 >= -2k
2078 * Combined with the first constraint, we obtain
2080 * -3 <= 3 + 2k or k >= -3
2082 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2083 * the first constraint, we obtain
2085 * [(i + 2j)/4] >= [-3/4] = -1
2087 * Combining this constraint with the second constraint, we obtain
2091 static __isl_give isl_basic_map
*insert_bounds_on_div(
2092 __isl_take isl_basic_map
*bmap
, int div
)
2095 int check_lb
, check_ub
;
2102 if (isl_int_is_zero(bmap
->div
[div
][0]))
2105 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
2109 for (i
= 0; (!check_lb
|| !check_ub
) && i
< bmap
->n_ineq
; ++i
) {
2110 int s
= isl_int_sgn(bmap
->ineq
[i
][1 + total
+ div
]);
2117 if (!check_lb
&& !check_ub
)
2122 for (i
= 0; bmap
&& i
< bmap
->n_ineq
; ++i
) {
2123 if (!isl_int_is_zero(bmap
->ineq
[i
][1 + total
+ div
]))
2126 bmap
= insert_bounds_on_div_from_ineq(bmap
, div
, i
, total
, v
,
2127 check_lb
, check_ub
);
2135 /* Remove all divs (recursively) involving any of the given dimensions
2136 * in their definitions.
2138 __isl_give isl_basic_map
*isl_basic_map_remove_divs_involving_dims(
2139 __isl_take isl_basic_map
*bmap
,
2140 enum isl_dim_type type
, unsigned first
, unsigned n
)
2146 isl_assert(bmap
->ctx
, first
+ n
<= isl_basic_map_dim(bmap
, type
),
2148 first
+= isl_basic_map_offset(bmap
, type
);
2150 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2151 if (!div_involves_vars(bmap
, i
, first
, n
))
2153 bmap
= insert_bounds_on_div(bmap
, i
);
2154 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
2162 isl_basic_map_free(bmap
);
2166 __isl_give isl_basic_set
*isl_basic_set_remove_divs_involving_dims(
2167 __isl_take isl_basic_set
*bset
,
2168 enum isl_dim_type type
, unsigned first
, unsigned n
)
2170 return isl_basic_map_remove_divs_involving_dims(bset
, type
, first
, n
);
2173 __isl_give isl_map
*isl_map_remove_divs_involving_dims(__isl_take isl_map
*map
,
2174 enum isl_dim_type type
, unsigned first
, unsigned n
)
2183 map
= isl_map_cow(map
);
2187 for (i
= 0; i
< map
->n
; ++i
) {
2188 map
->p
[i
] = isl_basic_map_remove_divs_involving_dims(map
->p
[i
],
2199 __isl_give isl_set
*isl_set_remove_divs_involving_dims(__isl_take isl_set
*set
,
2200 enum isl_dim_type type
, unsigned first
, unsigned n
)
2202 return (isl_set
*)isl_map_remove_divs_involving_dims((isl_map
*)set
,
2206 /* Does the desciption of "bmap" depend on the specified dimensions?
2207 * We also check whether the dimensions appear in any of the div definitions.
2208 * In principle there is no need for this check. If the dimensions appear
2209 * in a div definition, they also appear in the defining constraints of that
2212 int isl_basic_map_involves_dims(__isl_keep isl_basic_map
*bmap
,
2213 enum isl_dim_type type
, unsigned first
, unsigned n
)
2220 if (first
+ n
> isl_basic_map_dim(bmap
, type
))
2221 isl_die(bmap
->ctx
, isl_error_invalid
,
2222 "index out of bounds", return -1);
2224 first
+= isl_basic_map_offset(bmap
, type
);
2225 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2226 if (isl_seq_first_non_zero(bmap
->eq
[i
] + first
, n
) >= 0)
2228 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2229 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + first
, n
) >= 0)
2231 for (i
= 0; i
< bmap
->n_div
; ++i
) {
2232 if (isl_int_is_zero(bmap
->div
[i
][0]))
2234 if (isl_seq_first_non_zero(bmap
->div
[i
] + 1 + first
, n
) >= 0)
2241 int isl_map_involves_dims(__isl_keep isl_map
*map
,
2242 enum isl_dim_type type
, unsigned first
, unsigned n
)
2249 if (first
+ n
> isl_map_dim(map
, type
))
2250 isl_die(map
->ctx
, isl_error_invalid
,
2251 "index out of bounds", return -1);
2253 for (i
= 0; i
< map
->n
; ++i
) {
2254 int involves
= isl_basic_map_involves_dims(map
->p
[i
],
2256 if (involves
< 0 || involves
)
2263 int isl_basic_set_involves_dims(__isl_keep isl_basic_set
*bset
,
2264 enum isl_dim_type type
, unsigned first
, unsigned n
)
2266 return isl_basic_map_involves_dims(bset
, type
, first
, n
);
2269 int isl_set_involves_dims(__isl_keep isl_set
*set
,
2270 enum isl_dim_type type
, unsigned first
, unsigned n
)
2272 return isl_map_involves_dims(set
, type
, first
, n
);
2275 /* Return true if the definition of the given div is unknown or depends
2278 static int div_is_unknown(__isl_keep isl_basic_map
*bmap
, int div
)
2281 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
2283 if (isl_int_is_zero(bmap
->div
[div
][0]))
2286 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2287 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
2289 if (div_is_unknown(bmap
, i
))
2296 /* Remove all divs that are unknown or defined in terms of unknown divs.
2298 __isl_give isl_basic_map
*isl_basic_map_remove_unknown_divs(
2299 __isl_take isl_basic_map
*bmap
)
2306 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2307 if (!div_is_unknown(bmap
, i
))
2309 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
2318 /* Remove all divs that are unknown or defined in terms of unknown divs.
2320 __isl_give isl_basic_set
*isl_basic_set_remove_unknown_divs(
2321 __isl_take isl_basic_set
*bset
)
2323 return isl_basic_map_remove_unknown_divs(bset
);
2326 __isl_give isl_map
*isl_map_remove_unknown_divs(__isl_take isl_map
*map
)
2335 map
= isl_map_cow(map
);
2339 for (i
= 0; i
< map
->n
; ++i
) {
2340 map
->p
[i
] = isl_basic_map_remove_unknown_divs(map
->p
[i
]);
2350 __isl_give isl_set
*isl_set_remove_unknown_divs(__isl_take isl_set
*set
)
2352 return (isl_set
*)isl_map_remove_unknown_divs((isl_map
*)set
);
2355 __isl_give isl_basic_set
*isl_basic_set_remove_dims(
2356 __isl_take isl_basic_set
*bset
,
2357 enum isl_dim_type type
, unsigned first
, unsigned n
)
2359 return (isl_basic_set
*)
2360 isl_basic_map_remove_dims((isl_basic_map
*)bset
, type
, first
, n
);
2363 struct isl_map
*isl_map_remove_dims(struct isl_map
*map
,
2364 enum isl_dim_type type
, unsigned first
, unsigned n
)
2371 map
= isl_map_cow(map
);
2374 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
2376 for (i
= 0; i
< map
->n
; ++i
) {
2377 map
->p
[i
] = isl_basic_map_eliminate_vars(map
->p
[i
],
2378 isl_basic_map_offset(map
->p
[i
], type
) - 1 + first
, n
);
2382 map
= isl_map_drop(map
, type
, first
, n
);
2389 __isl_give isl_set
*isl_set_remove_dims(__isl_take isl_set
*bset
,
2390 enum isl_dim_type type
, unsigned first
, unsigned n
)
2392 return (isl_set
*)isl_map_remove_dims((isl_map
*)bset
, type
, first
, n
);
2395 /* Project out n inputs starting at first using Fourier-Motzkin */
2396 struct isl_map
*isl_map_remove_inputs(struct isl_map
*map
,
2397 unsigned first
, unsigned n
)
2399 return isl_map_remove_dims(map
, isl_dim_in
, first
, n
);
2402 static void dump_term(struct isl_basic_map
*bmap
,
2403 isl_int c
, int pos
, FILE *out
)
2406 unsigned in
= isl_basic_map_n_in(bmap
);
2407 unsigned dim
= in
+ isl_basic_map_n_out(bmap
);
2408 unsigned nparam
= isl_basic_map_n_param(bmap
);
2410 isl_int_print(out
, c
, 0);
2412 if (!isl_int_is_one(c
))
2413 isl_int_print(out
, c
, 0);
2414 if (pos
< 1 + nparam
) {
2415 name
= isl_space_get_dim_name(bmap
->dim
,
2416 isl_dim_param
, pos
- 1);
2418 fprintf(out
, "%s", name
);
2420 fprintf(out
, "p%d", pos
- 1);
2421 } else if (pos
< 1 + nparam
+ in
)
2422 fprintf(out
, "i%d", pos
- 1 - nparam
);
2423 else if (pos
< 1 + nparam
+ dim
)
2424 fprintf(out
, "o%d", pos
- 1 - nparam
- in
);
2426 fprintf(out
, "e%d", pos
- 1 - nparam
- dim
);
2430 static void dump_constraint_sign(struct isl_basic_map
*bmap
, isl_int
*c
,
2431 int sign
, FILE *out
)
2435 unsigned len
= 1 + isl_basic_map_total_dim(bmap
);
2439 for (i
= 0, first
= 1; i
< len
; ++i
) {
2440 if (isl_int_sgn(c
[i
]) * sign
<= 0)
2443 fprintf(out
, " + ");
2445 isl_int_abs(v
, c
[i
]);
2446 dump_term(bmap
, v
, i
, out
);
2453 static void dump_constraint(struct isl_basic_map
*bmap
, isl_int
*c
,
2454 const char *op
, FILE *out
, int indent
)
2458 fprintf(out
, "%*s", indent
, "");
2460 dump_constraint_sign(bmap
, c
, 1, out
);
2461 fprintf(out
, " %s ", op
);
2462 dump_constraint_sign(bmap
, c
, -1, out
);
2466 for (i
= bmap
->n_div
; i
< bmap
->extra
; ++i
) {
2467 if (isl_int_is_zero(c
[1+isl_space_dim(bmap
->dim
, isl_dim_all
)+i
]))
2469 fprintf(out
, "%*s", indent
, "");
2470 fprintf(out
, "ERROR: unused div coefficient not zero\n");
2475 static void dump_constraints(struct isl_basic_map
*bmap
,
2476 isl_int
**c
, unsigned n
,
2477 const char *op
, FILE *out
, int indent
)
2481 for (i
= 0; i
< n
; ++i
)
2482 dump_constraint(bmap
, c
[i
], op
, out
, indent
);
2485 static void dump_affine(struct isl_basic_map
*bmap
, isl_int
*exp
, FILE *out
)
2489 unsigned total
= isl_basic_map_total_dim(bmap
);
2491 for (j
= 0; j
< 1 + total
; ++j
) {
2492 if (isl_int_is_zero(exp
[j
]))
2494 if (!first
&& isl_int_is_pos(exp
[j
]))
2496 dump_term(bmap
, exp
[j
], j
, out
);
2501 static void dump(struct isl_basic_map
*bmap
, FILE *out
, int indent
)
2505 dump_constraints(bmap
, bmap
->eq
, bmap
->n_eq
, "=", out
, indent
);
2506 dump_constraints(bmap
, bmap
->ineq
, bmap
->n_ineq
, ">=", out
, indent
);
2508 for (i
= 0; i
< bmap
->n_div
; ++i
) {
2509 fprintf(out
, "%*s", indent
, "");
2510 fprintf(out
, "e%d = [(", i
);
2511 dump_affine(bmap
, bmap
->div
[i
]+1, out
);
2513 isl_int_print(out
, bmap
->div
[i
][0], 0);
2514 fprintf(out
, "]\n");
2518 void isl_basic_set_print_internal(struct isl_basic_set
*bset
,
2519 FILE *out
, int indent
)
2522 fprintf(out
, "null basic set\n");
2526 fprintf(out
, "%*s", indent
, "");
2527 fprintf(out
, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
2528 bset
->ref
, bset
->dim
->nparam
, bset
->dim
->n_out
,
2529 bset
->extra
, bset
->flags
);
2530 dump((struct isl_basic_map
*)bset
, out
, indent
);
2533 void isl_basic_map_print_internal(struct isl_basic_map
*bmap
,
2534 FILE *out
, int indent
)
2537 fprintf(out
, "null basic map\n");
2541 fprintf(out
, "%*s", indent
, "");
2542 fprintf(out
, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
2543 "flags: %x, n_name: %d\n",
2545 bmap
->dim
->nparam
, bmap
->dim
->n_in
, bmap
->dim
->n_out
,
2546 bmap
->extra
, bmap
->flags
, bmap
->dim
->n_id
);
2547 dump(bmap
, out
, indent
);
2550 int isl_inequality_negate(struct isl_basic_map
*bmap
, unsigned pos
)
2555 total
= isl_basic_map_total_dim(bmap
);
2556 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
2557 isl_seq_neg(bmap
->ineq
[pos
], bmap
->ineq
[pos
], 1 + total
);
2558 isl_int_sub_ui(bmap
->ineq
[pos
][0], bmap
->ineq
[pos
][0], 1);
2559 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2563 __isl_give isl_set
*isl_set_alloc_space(__isl_take isl_space
*dim
, int n
,
2566 struct isl_set
*set
;
2570 isl_assert(dim
->ctx
, dim
->n_in
== 0, goto error
);
2571 isl_assert(dim
->ctx
, n
>= 0, goto error
);
2572 set
= isl_alloc(dim
->ctx
, struct isl_set
,
2573 sizeof(struct isl_set
) +
2574 (n
- 1) * sizeof(struct isl_basic_set
*));
2578 set
->ctx
= dim
->ctx
;
2579 isl_ctx_ref(set
->ctx
);
2587 isl_space_free(dim
);
2591 struct isl_set
*isl_set_alloc(struct isl_ctx
*ctx
,
2592 unsigned nparam
, unsigned dim
, int n
, unsigned flags
)
2594 struct isl_set
*set
;
2597 dims
= isl_space_alloc(ctx
, nparam
, 0, dim
);
2601 set
= isl_set_alloc_space(dims
, n
, flags
);
2605 /* Make sure "map" has room for at least "n" more basic maps.
2607 struct isl_map
*isl_map_grow(struct isl_map
*map
, int n
)
2610 struct isl_map
*grown
= NULL
;
2614 isl_assert(map
->ctx
, n
>= 0, goto error
);
2615 if (map
->n
+ n
<= map
->size
)
2617 grown
= isl_map_alloc_space(isl_map_get_space(map
), map
->n
+ n
, map
->flags
);
2620 for (i
= 0; i
< map
->n
; ++i
) {
2621 grown
->p
[i
] = isl_basic_map_copy(map
->p
[i
]);
2629 isl_map_free(grown
);
2634 /* Make sure "set" has room for at least "n" more basic sets.
2636 struct isl_set
*isl_set_grow(struct isl_set
*set
, int n
)
2638 return (struct isl_set
*)isl_map_grow((struct isl_map
*)set
, n
);
2641 struct isl_set
*isl_set_dup(struct isl_set
*set
)
2644 struct isl_set
*dup
;
2649 dup
= isl_set_alloc_space(isl_space_copy(set
->dim
), set
->n
, set
->flags
);
2652 for (i
= 0; i
< set
->n
; ++i
)
2653 dup
= isl_set_add_basic_set(dup
, isl_basic_set_copy(set
->p
[i
]));
2657 struct isl_set
*isl_set_from_basic_set(struct isl_basic_set
*bset
)
2659 return isl_map_from_basic_map(bset
);
2662 struct isl_map
*isl_map_from_basic_map(struct isl_basic_map
*bmap
)
2664 struct isl_map
*map
;
2669 map
= isl_map_alloc_space(isl_space_copy(bmap
->dim
), 1, ISL_MAP_DISJOINT
);
2670 return isl_map_add_basic_map(map
, bmap
);
2673 __isl_give isl_set
*isl_set_add_basic_set(__isl_take isl_set
*set
,
2674 __isl_take isl_basic_set
*bset
)
2676 return (struct isl_set
*)isl_map_add_basic_map((struct isl_map
*)set
,
2677 (struct isl_basic_map
*)bset
);
2680 __isl_null isl_set
*isl_set_free(__isl_take isl_set
*set
)
2690 isl_ctx_deref(set
->ctx
);
2691 for (i
= 0; i
< set
->n
; ++i
)
2692 isl_basic_set_free(set
->p
[i
]);
2693 isl_space_free(set
->dim
);
2699 void isl_set_print_internal(struct isl_set
*set
, FILE *out
, int indent
)
2704 fprintf(out
, "null set\n");
2708 fprintf(out
, "%*s", indent
, "");
2709 fprintf(out
, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
2710 set
->ref
, set
->n
, set
->dim
->nparam
, set
->dim
->n_out
,
2712 for (i
= 0; i
< set
->n
; ++i
) {
2713 fprintf(out
, "%*s", indent
, "");
2714 fprintf(out
, "basic set %d:\n", i
);
2715 isl_basic_set_print_internal(set
->p
[i
], out
, indent
+4);
2719 void isl_map_print_internal(struct isl_map
*map
, FILE *out
, int indent
)
2724 fprintf(out
, "null map\n");
2728 fprintf(out
, "%*s", indent
, "");
2729 fprintf(out
, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
2730 "flags: %x, n_name: %d\n",
2731 map
->ref
, map
->n
, map
->dim
->nparam
, map
->dim
->n_in
,
2732 map
->dim
->n_out
, map
->flags
, map
->dim
->n_id
);
2733 for (i
= 0; i
< map
->n
; ++i
) {
2734 fprintf(out
, "%*s", indent
, "");
2735 fprintf(out
, "basic map %d:\n", i
);
2736 isl_basic_map_print_internal(map
->p
[i
], out
, indent
+4);
2740 struct isl_basic_map
*isl_basic_map_intersect_domain(
2741 struct isl_basic_map
*bmap
, struct isl_basic_set
*bset
)
2743 struct isl_basic_map
*bmap_domain
;
2748 isl_assert(bset
->ctx
, isl_space_match(bmap
->dim
, isl_dim_param
,
2749 bset
->dim
, isl_dim_param
), goto error
);
2751 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0)
2752 isl_assert(bset
->ctx
,
2753 isl_basic_map_compatible_domain(bmap
, bset
), goto error
);
2755 bmap
= isl_basic_map_cow(bmap
);
2758 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
2759 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
2760 bmap_domain
= isl_basic_map_from_domain(bset
);
2761 bmap
= add_constraints(bmap
, bmap_domain
, 0, 0);
2763 bmap
= isl_basic_map_simplify(bmap
);
2764 return isl_basic_map_finalize(bmap
);
2766 isl_basic_map_free(bmap
);
2767 isl_basic_set_free(bset
);
2771 struct isl_basic_map
*isl_basic_map_intersect_range(
2772 struct isl_basic_map
*bmap
, struct isl_basic_set
*bset
)
2774 struct isl_basic_map
*bmap_range
;
2779 isl_assert(bset
->ctx
, isl_space_match(bmap
->dim
, isl_dim_param
,
2780 bset
->dim
, isl_dim_param
), goto error
);
2782 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0)
2783 isl_assert(bset
->ctx
,
2784 isl_basic_map_compatible_range(bmap
, bset
), goto error
);
2786 if (isl_basic_set_is_universe(bset
)) {
2787 isl_basic_set_free(bset
);
2791 bmap
= isl_basic_map_cow(bmap
);
2794 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
2795 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
2796 bmap_range
= isl_basic_map_from_basic_set(bset
, isl_space_copy(bset
->dim
));
2797 bmap
= add_constraints(bmap
, bmap_range
, 0, 0);
2799 bmap
= isl_basic_map_simplify(bmap
);
2800 return isl_basic_map_finalize(bmap
);
2802 isl_basic_map_free(bmap
);
2803 isl_basic_set_free(bset
);
2807 int isl_basic_map_contains(struct isl_basic_map
*bmap
, struct isl_vec
*vec
)
2816 total
= 1 + isl_basic_map_total_dim(bmap
);
2817 if (total
!= vec
->size
)
2822 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
2823 isl_seq_inner_product(vec
->el
, bmap
->eq
[i
], total
, &s
);
2824 if (!isl_int_is_zero(s
)) {
2830 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
2831 isl_seq_inner_product(vec
->el
, bmap
->ineq
[i
], total
, &s
);
2832 if (isl_int_is_neg(s
)) {
2843 int isl_basic_set_contains(struct isl_basic_set
*bset
, struct isl_vec
*vec
)
2845 return isl_basic_map_contains((struct isl_basic_map
*)bset
, vec
);
2848 struct isl_basic_map
*isl_basic_map_intersect(
2849 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
2851 struct isl_vec
*sample
= NULL
;
2853 if (!bmap1
|| !bmap2
)
2856 isl_assert(bmap1
->ctx
, isl_space_match(bmap1
->dim
, isl_dim_param
,
2857 bmap2
->dim
, isl_dim_param
), goto error
);
2858 if (isl_space_dim(bmap1
->dim
, isl_dim_all
) ==
2859 isl_space_dim(bmap1
->dim
, isl_dim_param
) &&
2860 isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
2861 isl_space_dim(bmap2
->dim
, isl_dim_param
))
2862 return isl_basic_map_intersect(bmap2
, bmap1
);
2864 if (isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
2865 isl_space_dim(bmap2
->dim
, isl_dim_param
))
2866 isl_assert(bmap1
->ctx
,
2867 isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
2869 if (bmap1
->sample
&&
2870 isl_basic_map_contains(bmap1
, bmap1
->sample
) > 0 &&
2871 isl_basic_map_contains(bmap2
, bmap1
->sample
) > 0)
2872 sample
= isl_vec_copy(bmap1
->sample
);
2873 else if (bmap2
->sample
&&
2874 isl_basic_map_contains(bmap1
, bmap2
->sample
) > 0 &&
2875 isl_basic_map_contains(bmap2
, bmap2
->sample
) > 0)
2876 sample
= isl_vec_copy(bmap2
->sample
);
2878 bmap1
= isl_basic_map_cow(bmap1
);
2881 bmap1
= isl_basic_map_extend_space(bmap1
, isl_space_copy(bmap1
->dim
),
2882 bmap2
->n_div
, bmap2
->n_eq
, bmap2
->n_ineq
);
2883 bmap1
= add_constraints(bmap1
, bmap2
, 0, 0);
2886 isl_vec_free(sample
);
2888 isl_vec_free(bmap1
->sample
);
2889 bmap1
->sample
= sample
;
2892 bmap1
= isl_basic_map_simplify(bmap1
);
2893 return isl_basic_map_finalize(bmap1
);
2896 isl_vec_free(sample
);
2897 isl_basic_map_free(bmap1
);
2898 isl_basic_map_free(bmap2
);
2902 struct isl_basic_set
*isl_basic_set_intersect(
2903 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
2905 return (struct isl_basic_set
*)
2906 isl_basic_map_intersect(
2907 (struct isl_basic_map
*)bset1
,
2908 (struct isl_basic_map
*)bset2
);
2911 __isl_give isl_basic_set
*isl_basic_set_intersect_params(
2912 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
2914 return isl_basic_set_intersect(bset1
, bset2
);
2917 /* Special case of isl_map_intersect, where both map1 and map2
2918 * are convex, without any divs and such that either map1 or map2
2919 * contains a single constraint. This constraint is then simply
2920 * added to the other map.
2922 static __isl_give isl_map
*map_intersect_add_constraint(
2923 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
)
2925 isl_assert(map1
->ctx
, map1
->n
== 1, goto error
);
2926 isl_assert(map2
->ctx
, map1
->n
== 1, goto error
);
2927 isl_assert(map1
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
2928 isl_assert(map2
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
2930 if (map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
!= 1)
2931 return isl_map_intersect(map2
, map1
);
2933 isl_assert(map2
->ctx
,
2934 map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
== 1, goto error
);
2936 map1
= isl_map_cow(map1
);
2939 if (isl_map_plain_is_empty(map1
)) {
2943 map1
->p
[0] = isl_basic_map_cow(map1
->p
[0]);
2944 if (map2
->p
[0]->n_eq
== 1)
2945 map1
->p
[0] = isl_basic_map_add_eq(map1
->p
[0], map2
->p
[0]->eq
[0]);
2947 map1
->p
[0] = isl_basic_map_add_ineq(map1
->p
[0],
2948 map2
->p
[0]->ineq
[0]);
2950 map1
->p
[0] = isl_basic_map_simplify(map1
->p
[0]);
2951 map1
->p
[0] = isl_basic_map_finalize(map1
->p
[0]);
2955 if (isl_basic_map_plain_is_empty(map1
->p
[0])) {
2956 isl_basic_map_free(map1
->p
[0]);
2969 /* map2 may be either a parameter domain or a map living in the same
2972 static __isl_give isl_map
*map_intersect_internal(__isl_take isl_map
*map1
,
2973 __isl_take isl_map
*map2
)
2982 if ((isl_map_plain_is_empty(map1
) ||
2983 isl_map_plain_is_universe(map2
)) &&
2984 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
2988 if ((isl_map_plain_is_empty(map2
) ||
2989 isl_map_plain_is_universe(map1
)) &&
2990 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
2995 if (map1
->n
== 1 && map2
->n
== 1 &&
2996 map1
->p
[0]->n_div
== 0 && map2
->p
[0]->n_div
== 0 &&
2997 isl_space_is_equal(map1
->dim
, map2
->dim
) &&
2998 (map1
->p
[0]->n_eq
+ map1
->p
[0]->n_ineq
== 1 ||
2999 map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
== 1))
3000 return map_intersect_add_constraint(map1
, map2
);
3002 if (isl_space_dim(map2
->dim
, isl_dim_all
) !=
3003 isl_space_dim(map2
->dim
, isl_dim_param
))
3004 isl_assert(map1
->ctx
,
3005 isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
3007 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
3008 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
3009 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
3011 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
3012 map1
->n
* map2
->n
, flags
);
3015 for (i
= 0; i
< map1
->n
; ++i
)
3016 for (j
= 0; j
< map2
->n
; ++j
) {
3017 struct isl_basic_map
*part
;
3018 part
= isl_basic_map_intersect(
3019 isl_basic_map_copy(map1
->p
[i
]),
3020 isl_basic_map_copy(map2
->p
[j
]));
3021 if (isl_basic_map_is_empty(part
) < 0)
3022 part
= isl_basic_map_free(part
);
3023 result
= isl_map_add_basic_map(result
, part
);
3036 static __isl_give isl_map
*map_intersect(__isl_take isl_map
*map1
,
3037 __isl_take isl_map
*map2
)
3041 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
3042 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
3043 "spaces don't match", goto error
);
3044 return map_intersect_internal(map1
, map2
);
3051 __isl_give isl_map
*isl_map_intersect(__isl_take isl_map
*map1
,
3052 __isl_take isl_map
*map2
)
3054 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect
);
3057 struct isl_set
*isl_set_intersect(struct isl_set
*set1
, struct isl_set
*set2
)
3059 return (struct isl_set
*)
3060 isl_map_intersect((struct isl_map
*)set1
,
3061 (struct isl_map
*)set2
);
3064 /* map_intersect_internal accepts intersections
3065 * with parameter domains, so we can just call that function.
3067 static __isl_give isl_map
*map_intersect_params(__isl_take isl_map
*map
,
3068 __isl_take isl_set
*params
)
3070 return map_intersect_internal(map
, params
);
3073 __isl_give isl_map
*isl_map_intersect_params(__isl_take isl_map
*map1
,
3074 __isl_take isl_map
*map2
)
3076 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect_params
);
3079 __isl_give isl_set
*isl_set_intersect_params(__isl_take isl_set
*set
,
3080 __isl_take isl_set
*params
)
3082 return isl_map_intersect_params(set
, params
);
3085 struct isl_basic_map
*isl_basic_map_reverse(struct isl_basic_map
*bmap
)
3088 struct isl_basic_set
*bset
;
3093 bmap
= isl_basic_map_cow(bmap
);
3096 dim
= isl_space_reverse(isl_space_copy(bmap
->dim
));
3097 in
= isl_basic_map_n_in(bmap
);
3098 bset
= isl_basic_set_from_basic_map(bmap
);
3099 bset
= isl_basic_set_swap_vars(bset
, in
);
3100 return isl_basic_map_from_basic_set(bset
, dim
);
3103 static __isl_give isl_basic_map
*basic_map_space_reset(
3104 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
)
3110 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
3113 space
= isl_basic_map_get_space(bmap
);
3114 space
= isl_space_reset(space
, type
);
3115 bmap
= isl_basic_map_reset_space(bmap
, space
);
3119 __isl_give isl_basic_map
*isl_basic_map_insert_dims(
3120 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
3121 unsigned pos
, unsigned n
)
3124 struct isl_basic_map
*res
;
3125 struct isl_dim_map
*dim_map
;
3126 unsigned total
, off
;
3127 enum isl_dim_type t
;
3130 return basic_map_space_reset(bmap
, type
);
3135 res_dim
= isl_space_insert_dims(isl_basic_map_get_space(bmap
), type
, pos
, n
);
3137 total
= isl_basic_map_total_dim(bmap
) + n
;
3138 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3140 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3142 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3144 unsigned size
= isl_basic_map_dim(bmap
, t
);
3145 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3147 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3148 pos
, size
- pos
, off
+ pos
+ n
);
3150 off
+= isl_space_dim(res_dim
, t
);
3152 isl_dim_map_div(dim_map
, bmap
, off
);
3154 res
= isl_basic_map_alloc_space(res_dim
,
3155 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3156 if (isl_basic_map_is_rational(bmap
))
3157 res
= isl_basic_map_set_rational(res
);
3158 if (isl_basic_map_plain_is_empty(bmap
)) {
3159 isl_basic_map_free(bmap
);
3161 return isl_basic_map_set_to_empty(res
);
3163 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3164 return isl_basic_map_finalize(res
);
3167 __isl_give isl_basic_set
*isl_basic_set_insert_dims(
3168 __isl_take isl_basic_set
*bset
,
3169 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3171 return isl_basic_map_insert_dims(bset
, type
, pos
, n
);
3174 __isl_give isl_basic_map
*isl_basic_map_add_dims(__isl_take isl_basic_map
*bmap
,
3175 enum isl_dim_type type
, unsigned n
)
3179 return isl_basic_map_insert_dims(bmap
, type
,
3180 isl_basic_map_dim(bmap
, type
), n
);
3183 __isl_give isl_basic_set
*isl_basic_set_add_dims(__isl_take isl_basic_set
*bset
,
3184 enum isl_dim_type type
, unsigned n
)
3188 isl_assert(bset
->ctx
, type
!= isl_dim_in
, goto error
);
3189 return isl_basic_map_add_dims(bset
, type
, n
);
3191 isl_basic_set_free(bset
);
3195 static __isl_give isl_map
*map_space_reset(__isl_take isl_map
*map
,
3196 enum isl_dim_type type
)
3200 if (!map
|| !isl_space_is_named_or_nested(map
->dim
, type
))
3203 space
= isl_map_get_space(map
);
3204 space
= isl_space_reset(space
, type
);
3205 map
= isl_map_reset_space(map
, space
);
3209 __isl_give isl_map
*isl_map_insert_dims(__isl_take isl_map
*map
,
3210 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3215 return map_space_reset(map
, type
);
3217 map
= isl_map_cow(map
);
3221 map
->dim
= isl_space_insert_dims(map
->dim
, type
, pos
, n
);
3225 for (i
= 0; i
< map
->n
; ++i
) {
3226 map
->p
[i
] = isl_basic_map_insert_dims(map
->p
[i
], type
, pos
, n
);
3237 __isl_give isl_set
*isl_set_insert_dims(__isl_take isl_set
*set
,
3238 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3240 return isl_map_insert_dims(set
, type
, pos
, n
);
3243 __isl_give isl_map
*isl_map_add_dims(__isl_take isl_map
*map
,
3244 enum isl_dim_type type
, unsigned n
)
3248 return isl_map_insert_dims(map
, type
, isl_map_dim(map
, type
), n
);
3251 __isl_give isl_set
*isl_set_add_dims(__isl_take isl_set
*set
,
3252 enum isl_dim_type type
, unsigned n
)
3256 isl_assert(set
->ctx
, type
!= isl_dim_in
, goto error
);
3257 return (isl_set
*)isl_map_add_dims((isl_map
*)set
, type
, n
);
3263 __isl_give isl_basic_map
*isl_basic_map_move_dims(
3264 __isl_take isl_basic_map
*bmap
,
3265 enum isl_dim_type dst_type
, unsigned dst_pos
,
3266 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3268 struct isl_dim_map
*dim_map
;
3269 struct isl_basic_map
*res
;
3270 enum isl_dim_type t
;
3271 unsigned total
, off
;
3278 isl_assert(bmap
->ctx
, src_pos
+ n
<= isl_basic_map_dim(bmap
, src_type
),
3281 if (dst_type
== src_type
&& dst_pos
== src_pos
)
3284 isl_assert(bmap
->ctx
, dst_type
!= src_type
, goto error
);
3286 if (pos(bmap
->dim
, dst_type
) + dst_pos
==
3287 pos(bmap
->dim
, src_type
) + src_pos
+
3288 ((src_type
< dst_type
) ? n
: 0)) {
3289 bmap
= isl_basic_map_cow(bmap
);
3293 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
3294 src_type
, src_pos
, n
);
3298 bmap
= isl_basic_map_finalize(bmap
);
3303 total
= isl_basic_map_total_dim(bmap
);
3304 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3307 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3308 unsigned size
= isl_space_dim(bmap
->dim
, t
);
3309 if (t
== dst_type
) {
3310 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3313 isl_dim_map_dim_range(dim_map
, bmap
->dim
, src_type
,
3316 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3317 dst_pos
, size
- dst_pos
, off
);
3318 off
+= size
- dst_pos
;
3319 } else if (t
== src_type
) {
3320 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3323 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3324 src_pos
+ n
, size
- src_pos
- n
, off
);
3325 off
+= size
- src_pos
- n
;
3327 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3331 isl_dim_map_div(dim_map
, bmap
, off
);
3333 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
3334 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3335 bmap
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3339 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
3340 src_type
, src_pos
, n
);
3344 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
3345 bmap
= isl_basic_map_gauss(bmap
, NULL
);
3346 bmap
= isl_basic_map_finalize(bmap
);
3350 isl_basic_map_free(bmap
);
3354 __isl_give isl_basic_set
*isl_basic_set_move_dims(__isl_take isl_basic_set
*bset
,
3355 enum isl_dim_type dst_type
, unsigned dst_pos
,
3356 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3358 return (isl_basic_set
*)isl_basic_map_move_dims(
3359 (isl_basic_map
*)bset
, dst_type
, dst_pos
, src_type
, src_pos
, n
);
3362 __isl_give isl_set
*isl_set_move_dims(__isl_take isl_set
*set
,
3363 enum isl_dim_type dst_type
, unsigned dst_pos
,
3364 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3368 isl_assert(set
->ctx
, dst_type
!= isl_dim_in
, goto error
);
3369 return (isl_set
*)isl_map_move_dims((isl_map
*)set
, dst_type
, dst_pos
,
3370 src_type
, src_pos
, n
);
3376 __isl_give isl_map
*isl_map_move_dims(__isl_take isl_map
*map
,
3377 enum isl_dim_type dst_type
, unsigned dst_pos
,
3378 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3387 isl_assert(map
->ctx
, src_pos
+ n
<= isl_map_dim(map
, src_type
),
3390 if (dst_type
== src_type
&& dst_pos
== src_pos
)
3393 isl_assert(map
->ctx
, dst_type
!= src_type
, goto error
);
3395 map
= isl_map_cow(map
);
3399 map
->dim
= isl_space_move_dims(map
->dim
, dst_type
, dst_pos
, src_type
, src_pos
, n
);
3403 for (i
= 0; i
< map
->n
; ++i
) {
3404 map
->p
[i
] = isl_basic_map_move_dims(map
->p
[i
],
3406 src_type
, src_pos
, n
);
3417 /* Move the specified dimensions to the last columns right before
3418 * the divs. Don't change the dimension specification of bmap.
3419 * That's the responsibility of the caller.
3421 static __isl_give isl_basic_map
*move_last(__isl_take isl_basic_map
*bmap
,
3422 enum isl_dim_type type
, unsigned first
, unsigned n
)
3424 struct isl_dim_map
*dim_map
;
3425 struct isl_basic_map
*res
;
3426 enum isl_dim_type t
;
3427 unsigned total
, off
;
3431 if (pos(bmap
->dim
, type
) + first
+ n
==
3432 1 + isl_space_dim(bmap
->dim
, isl_dim_all
))
3435 total
= isl_basic_map_total_dim(bmap
);
3436 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3439 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3440 unsigned size
= isl_space_dim(bmap
->dim
, t
);
3442 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3445 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3446 first
, n
, total
- bmap
->n_div
- n
);
3447 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3448 first
+ n
, size
- (first
+ n
), off
);
3449 off
+= size
- (first
+ n
);
3451 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3455 isl_dim_map_div(dim_map
, bmap
, off
+ n
);
3457 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
3458 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3459 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3463 /* Insert "n" rows in the divs of "bmap".
3465 * The number of columns is not changed, which means that the last
3466 * dimensions of "bmap" are being reintepreted as the new divs.
3467 * The space of "bmap" is not adjusted, however, which means
3468 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
3469 * from the space of "bmap" is the responsibility of the caller.
3471 static __isl_give isl_basic_map
*insert_div_rows(__isl_take isl_basic_map
*bmap
,
3479 bmap
= isl_basic_map_cow(bmap
);
3483 row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + bmap
->extra
;
3484 old
= bmap
->block2
.data
;
3485 bmap
->block2
= isl_blk_extend(bmap
->ctx
, bmap
->block2
,
3486 (bmap
->extra
+ n
) * (1 + row_size
));
3487 if (!bmap
->block2
.data
)
3488 return isl_basic_map_free(bmap
);
3489 new_div
= isl_alloc_array(bmap
->ctx
, isl_int
*, bmap
->extra
+ n
);
3491 return isl_basic_map_free(bmap
);
3492 for (i
= 0; i
< n
; ++i
) {
3493 new_div
[i
] = bmap
->block2
.data
+
3494 (bmap
->extra
+ i
) * (1 + row_size
);
3495 isl_seq_clr(new_div
[i
], 1 + row_size
);
3497 for (i
= 0; i
< bmap
->extra
; ++i
)
3498 new_div
[n
+ i
] = bmap
->block2
.data
+ (bmap
->div
[i
] - old
);
3500 bmap
->div
= new_div
;
3507 /* Turn the n dimensions of type type, starting at first
3508 * into existentially quantified variables.
3510 __isl_give isl_basic_map
*isl_basic_map_project_out(
3511 __isl_take isl_basic_map
*bmap
,
3512 enum isl_dim_type type
, unsigned first
, unsigned n
)
3515 return basic_map_space_reset(bmap
, type
);
3520 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
3521 return isl_basic_map_remove_dims(bmap
, type
, first
, n
);
3523 isl_assert(bmap
->ctx
, first
+ n
<= isl_basic_map_dim(bmap
, type
),
3526 bmap
= move_last(bmap
, type
, first
, n
);
3527 bmap
= isl_basic_map_cow(bmap
);
3528 bmap
= insert_div_rows(bmap
, n
);
3532 bmap
->dim
= isl_space_drop_dims(bmap
->dim
, type
, first
, n
);
3535 bmap
= isl_basic_map_simplify(bmap
);
3536 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
3537 return isl_basic_map_finalize(bmap
);
3539 isl_basic_map_free(bmap
);
3543 /* Turn the n dimensions of type type, starting at first
3544 * into existentially quantified variables.
3546 struct isl_basic_set
*isl_basic_set_project_out(struct isl_basic_set
*bset
,
3547 enum isl_dim_type type
, unsigned first
, unsigned n
)
3549 return (isl_basic_set
*)isl_basic_map_project_out(
3550 (isl_basic_map
*)bset
, type
, first
, n
);
3553 /* Turn the n dimensions of type type, starting at first
3554 * into existentially quantified variables.
3556 __isl_give isl_map
*isl_map_project_out(__isl_take isl_map
*map
,
3557 enum isl_dim_type type
, unsigned first
, unsigned n
)
3565 return map_space_reset(map
, type
);
3567 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
3569 map
= isl_map_cow(map
);
3573 map
->dim
= isl_space_drop_dims(map
->dim
, type
, first
, n
);
3577 for (i
= 0; i
< map
->n
; ++i
) {
3578 map
->p
[i
] = isl_basic_map_project_out(map
->p
[i
], type
, first
, n
);
3589 /* Turn the n dimensions of type type, starting at first
3590 * into existentially quantified variables.
3592 __isl_give isl_set
*isl_set_project_out(__isl_take isl_set
*set
,
3593 enum isl_dim_type type
, unsigned first
, unsigned n
)
3595 return (isl_set
*)isl_map_project_out((isl_map
*)set
, type
, first
, n
);
3598 static struct isl_basic_map
*add_divs(struct isl_basic_map
*bmap
, unsigned n
)
3602 for (i
= 0; i
< n
; ++i
) {
3603 j
= isl_basic_map_alloc_div(bmap
);
3606 isl_seq_clr(bmap
->div
[j
], 1+1+isl_basic_map_total_dim(bmap
));
3610 isl_basic_map_free(bmap
);
3614 struct isl_basic_map
*isl_basic_map_apply_range(
3615 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
3617 isl_space
*dim_result
= NULL
;
3618 struct isl_basic_map
*bmap
;
3619 unsigned n_in
, n_out
, n
, nparam
, total
, pos
;
3620 struct isl_dim_map
*dim_map1
, *dim_map2
;
3622 if (!bmap1
|| !bmap2
)
3624 if (!isl_space_match(bmap1
->dim
, isl_dim_param
,
3625 bmap2
->dim
, isl_dim_param
))
3626 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
3627 "parameters don't match", goto error
);
3628 if (!isl_space_tuple_is_equal(bmap1
->dim
, isl_dim_out
,
3629 bmap2
->dim
, isl_dim_in
))
3630 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
3631 "spaces don't match", goto error
);
3633 dim_result
= isl_space_join(isl_space_copy(bmap1
->dim
),
3634 isl_space_copy(bmap2
->dim
));
3636 n_in
= isl_basic_map_n_in(bmap1
);
3637 n_out
= isl_basic_map_n_out(bmap2
);
3638 n
= isl_basic_map_n_out(bmap1
);
3639 nparam
= isl_basic_map_n_param(bmap1
);
3641 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ n
;
3642 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
3643 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
3644 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
3645 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
3646 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
3647 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_in
);
3648 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_out
);
3649 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
3650 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
3651 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
3653 bmap
= isl_basic_map_alloc_space(dim_result
,
3654 bmap1
->n_div
+ bmap2
->n_div
+ n
,
3655 bmap1
->n_eq
+ bmap2
->n_eq
,
3656 bmap1
->n_ineq
+ bmap2
->n_ineq
);
3657 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
3658 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
3659 bmap
= add_divs(bmap
, n
);
3660 bmap
= isl_basic_map_simplify(bmap
);
3661 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
3662 return isl_basic_map_finalize(bmap
);
3664 isl_basic_map_free(bmap1
);
3665 isl_basic_map_free(bmap2
);
3669 struct isl_basic_set
*isl_basic_set_apply(
3670 struct isl_basic_set
*bset
, struct isl_basic_map
*bmap
)
3675 isl_assert(bset
->ctx
, isl_basic_map_compatible_domain(bmap
, bset
),
3678 return (struct isl_basic_set
*)
3679 isl_basic_map_apply_range((struct isl_basic_map
*)bset
, bmap
);
3681 isl_basic_set_free(bset
);
3682 isl_basic_map_free(bmap
);
3686 struct isl_basic_map
*isl_basic_map_apply_domain(
3687 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
3689 if (!bmap1
|| !bmap2
)
3692 isl_assert(bmap1
->ctx
,
3693 isl_basic_map_n_in(bmap1
) == isl_basic_map_n_in(bmap2
), goto error
);
3694 isl_assert(bmap1
->ctx
,
3695 isl_basic_map_n_param(bmap1
) == isl_basic_map_n_param(bmap2
),
3698 bmap1
= isl_basic_map_reverse(bmap1
);
3699 bmap1
= isl_basic_map_apply_range(bmap1
, bmap2
);
3700 return isl_basic_map_reverse(bmap1
);
3702 isl_basic_map_free(bmap1
);
3703 isl_basic_map_free(bmap2
);
3707 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
3708 * A \cap B -> f(A) + f(B)
3710 struct isl_basic_map
*isl_basic_map_sum(
3711 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
3713 unsigned n_in
, n_out
, nparam
, total
, pos
;
3714 struct isl_basic_map
*bmap
= NULL
;
3715 struct isl_dim_map
*dim_map1
, *dim_map2
;
3718 if (!bmap1
|| !bmap2
)
3721 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
),
3724 nparam
= isl_basic_map_n_param(bmap1
);
3725 n_in
= isl_basic_map_n_in(bmap1
);
3726 n_out
= isl_basic_map_n_out(bmap1
);
3728 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
;
3729 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
3730 dim_map2
= isl_dim_map_alloc(bmap2
->ctx
, total
);
3731 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
3732 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
);
3733 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
3734 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
3735 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_in
+ n_out
);
3736 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
3737 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
3738 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_out
);
3740 bmap
= isl_basic_map_alloc_space(isl_space_copy(bmap1
->dim
),
3741 bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
,
3742 bmap1
->n_eq
+ bmap2
->n_eq
+ n_out
,
3743 bmap1
->n_ineq
+ bmap2
->n_ineq
);
3744 for (i
= 0; i
< n_out
; ++i
) {
3745 int j
= isl_basic_map_alloc_equality(bmap
);
3748 isl_seq_clr(bmap
->eq
[j
], 1+total
);
3749 isl_int_set_si(bmap
->eq
[j
][1+nparam
+n_in
+i
], -1);
3750 isl_int_set_si(bmap
->eq
[j
][1+pos
+i
], 1);
3751 isl_int_set_si(bmap
->eq
[j
][1+pos
-n_out
+i
], 1);
3753 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
3754 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
3755 bmap
= add_divs(bmap
, 2 * n_out
);
3757 bmap
= isl_basic_map_simplify(bmap
);
3758 return isl_basic_map_finalize(bmap
);
3760 isl_basic_map_free(bmap
);
3761 isl_basic_map_free(bmap1
);
3762 isl_basic_map_free(bmap2
);
3766 /* Given two maps A -> f(A) and B -> g(B), construct a map
3767 * A \cap B -> f(A) + f(B)
3769 struct isl_map
*isl_map_sum(struct isl_map
*map1
, struct isl_map
*map2
)
3771 struct isl_map
*result
;
3777 isl_assert(map1
->ctx
, isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
3779 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
3780 map1
->n
* map2
->n
, 0);
3783 for (i
= 0; i
< map1
->n
; ++i
)
3784 for (j
= 0; j
< map2
->n
; ++j
) {
3785 struct isl_basic_map
*part
;
3786 part
= isl_basic_map_sum(
3787 isl_basic_map_copy(map1
->p
[i
]),
3788 isl_basic_map_copy(map2
->p
[j
]));
3789 if (isl_basic_map_is_empty(part
))
3790 isl_basic_map_free(part
);
3792 result
= isl_map_add_basic_map(result
, part
);
3805 __isl_give isl_set
*isl_set_sum(__isl_take isl_set
*set1
,
3806 __isl_take isl_set
*set2
)
3808 return (isl_set
*)isl_map_sum((isl_map
*)set1
, (isl_map
*)set2
);
3811 /* Given a basic map A -> f(A), construct A -> -f(A).
3813 struct isl_basic_map
*isl_basic_map_neg(struct isl_basic_map
*bmap
)
3818 bmap
= isl_basic_map_cow(bmap
);
3822 n
= isl_basic_map_dim(bmap
, isl_dim_out
);
3823 off
= isl_basic_map_offset(bmap
, isl_dim_out
);
3824 for (i
= 0; i
< bmap
->n_eq
; ++i
)
3825 for (j
= 0; j
< n
; ++j
)
3826 isl_int_neg(bmap
->eq
[i
][off
+j
], bmap
->eq
[i
][off
+j
]);
3827 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
3828 for (j
= 0; j
< n
; ++j
)
3829 isl_int_neg(bmap
->ineq
[i
][off
+j
], bmap
->ineq
[i
][off
+j
]);
3830 for (i
= 0; i
< bmap
->n_div
; ++i
)
3831 for (j
= 0; j
< n
; ++j
)
3832 isl_int_neg(bmap
->div
[i
][1+off
+j
], bmap
->div
[i
][1+off
+j
]);
3833 bmap
= isl_basic_map_gauss(bmap
, NULL
);
3834 return isl_basic_map_finalize(bmap
);
3837 __isl_give isl_basic_set
*isl_basic_set_neg(__isl_take isl_basic_set
*bset
)
3839 return isl_basic_map_neg(bset
);
3842 /* Given a map A -> f(A), construct A -> -f(A).
3844 struct isl_map
*isl_map_neg(struct isl_map
*map
)
3848 map
= isl_map_cow(map
);
3852 for (i
= 0; i
< map
->n
; ++i
) {
3853 map
->p
[i
] = isl_basic_map_neg(map
->p
[i
]);
3864 __isl_give isl_set
*isl_set_neg(__isl_take isl_set
*set
)
3866 return (isl_set
*)isl_map_neg((isl_map
*)set
);
3869 /* Given a basic map A -> f(A) and an integer d, construct a basic map
3870 * A -> floor(f(A)/d).
3872 struct isl_basic_map
*isl_basic_map_floordiv(struct isl_basic_map
*bmap
,
3875 unsigned n_in
, n_out
, nparam
, total
, pos
;
3876 struct isl_basic_map
*result
= NULL
;
3877 struct isl_dim_map
*dim_map
;
3883 nparam
= isl_basic_map_n_param(bmap
);
3884 n_in
= isl_basic_map_n_in(bmap
);
3885 n_out
= isl_basic_map_n_out(bmap
);
3887 total
= nparam
+ n_in
+ n_out
+ bmap
->n_div
+ n_out
;
3888 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3889 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_param
, pos
= 0);
3890 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_in
, pos
+= nparam
);
3891 isl_dim_map_div(dim_map
, bmap
, pos
+= n_in
+ n_out
);
3892 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_out
, pos
+= bmap
->n_div
);
3894 result
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
3895 bmap
->n_div
+ n_out
,
3896 bmap
->n_eq
, bmap
->n_ineq
+ 2 * n_out
);
3897 result
= isl_basic_map_add_constraints_dim_map(result
, bmap
, dim_map
);
3898 result
= add_divs(result
, n_out
);
3899 for (i
= 0; i
< n_out
; ++i
) {
3901 j
= isl_basic_map_alloc_inequality(result
);
3904 isl_seq_clr(result
->ineq
[j
], 1+total
);
3905 isl_int_neg(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
3906 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], 1);
3907 j
= isl_basic_map_alloc_inequality(result
);
3910 isl_seq_clr(result
->ineq
[j
], 1+total
);
3911 isl_int_set(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
3912 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], -1);
3913 isl_int_sub_ui(result
->ineq
[j
][0], d
, 1);
3916 result
= isl_basic_map_simplify(result
);
3917 return isl_basic_map_finalize(result
);
3919 isl_basic_map_free(result
);
3923 /* Given a map A -> f(A) and an integer d, construct a map
3924 * A -> floor(f(A)/d).
3926 struct isl_map
*isl_map_floordiv(struct isl_map
*map
, isl_int d
)
3930 map
= isl_map_cow(map
);
3934 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
3935 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
3936 for (i
= 0; i
< map
->n
; ++i
) {
3937 map
->p
[i
] = isl_basic_map_floordiv(map
->p
[i
], d
);
3948 /* Given a map A -> f(A) and an integer d, construct a map
3949 * A -> floor(f(A)/d).
3951 __isl_give isl_map
*isl_map_floordiv_val(__isl_take isl_map
*map
,
3952 __isl_take isl_val
*d
)
3956 if (!isl_val_is_int(d
))
3957 isl_die(isl_val_get_ctx(d
), isl_error_invalid
,
3958 "expecting integer denominator", goto error
);
3959 map
= isl_map_floordiv(map
, d
->n
);
3968 static struct isl_basic_map
*var_equal(struct isl_basic_map
*bmap
, unsigned pos
)
3974 i
= isl_basic_map_alloc_equality(bmap
);
3977 nparam
= isl_basic_map_n_param(bmap
);
3978 n_in
= isl_basic_map_n_in(bmap
);
3979 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
3980 isl_int_set_si(bmap
->eq
[i
][1+nparam
+pos
], -1);
3981 isl_int_set_si(bmap
->eq
[i
][1+nparam
+n_in
+pos
], 1);
3982 return isl_basic_map_finalize(bmap
);
3984 isl_basic_map_free(bmap
);
3988 /* Add a constraints to "bmap" expressing i_pos < o_pos
3990 static struct isl_basic_map
*var_less(struct isl_basic_map
*bmap
, unsigned pos
)
3996 i
= isl_basic_map_alloc_inequality(bmap
);
3999 nparam
= isl_basic_map_n_param(bmap
);
4000 n_in
= isl_basic_map_n_in(bmap
);
4001 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4002 isl_int_set_si(bmap
->ineq
[i
][0], -1);
4003 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
4004 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
4005 return isl_basic_map_finalize(bmap
);
4007 isl_basic_map_free(bmap
);
4011 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4013 static __isl_give isl_basic_map
*var_less_or_equal(
4014 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4020 i
= isl_basic_map_alloc_inequality(bmap
);
4023 nparam
= isl_basic_map_n_param(bmap
);
4024 n_in
= isl_basic_map_n_in(bmap
);
4025 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4026 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
4027 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
4028 return isl_basic_map_finalize(bmap
);
4030 isl_basic_map_free(bmap
);
4034 /* Add a constraints to "bmap" expressing i_pos > o_pos
4036 static struct isl_basic_map
*var_more(struct isl_basic_map
*bmap
, unsigned pos
)
4042 i
= isl_basic_map_alloc_inequality(bmap
);
4045 nparam
= isl_basic_map_n_param(bmap
);
4046 n_in
= isl_basic_map_n_in(bmap
);
4047 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4048 isl_int_set_si(bmap
->ineq
[i
][0], -1);
4049 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4050 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4051 return isl_basic_map_finalize(bmap
);
4053 isl_basic_map_free(bmap
);
4057 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4059 static __isl_give isl_basic_map
*var_more_or_equal(
4060 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4066 i
= isl_basic_map_alloc_inequality(bmap
);
4069 nparam
= isl_basic_map_n_param(bmap
);
4070 n_in
= isl_basic_map_n_in(bmap
);
4071 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4072 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4073 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4074 return isl_basic_map_finalize(bmap
);
4076 isl_basic_map_free(bmap
);
4080 __isl_give isl_basic_map
*isl_basic_map_equal(
4081 __isl_take isl_space
*dim
, unsigned n_equal
)
4084 struct isl_basic_map
*bmap
;
4085 bmap
= isl_basic_map_alloc_space(dim
, 0, n_equal
, 0);
4088 for (i
= 0; i
< n_equal
&& bmap
; ++i
)
4089 bmap
= var_equal(bmap
, i
);
4090 return isl_basic_map_finalize(bmap
);
4093 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4095 __isl_give isl_basic_map
*isl_basic_map_less_at(__isl_take isl_space
*dim
,
4099 struct isl_basic_map
*bmap
;
4100 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4103 for (i
= 0; i
< pos
&& bmap
; ++i
)
4104 bmap
= var_equal(bmap
, i
);
4106 bmap
= var_less(bmap
, pos
);
4107 return isl_basic_map_finalize(bmap
);
4110 /* Return a relation on of dimension "dim" expressing i_[0..pos] <<= o_[0..pos]
4112 __isl_give isl_basic_map
*isl_basic_map_less_or_equal_at(
4113 __isl_take isl_space
*dim
, unsigned pos
)
4116 isl_basic_map
*bmap
;
4118 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4119 for (i
= 0; i
< pos
; ++i
)
4120 bmap
= var_equal(bmap
, i
);
4121 bmap
= var_less_or_equal(bmap
, pos
);
4122 return isl_basic_map_finalize(bmap
);
4125 /* Return a relation on pairs of sets of dimension "dim" expressing i_pos > o_pos
4127 __isl_give isl_basic_map
*isl_basic_map_more_at(__isl_take isl_space
*dim
,
4131 struct isl_basic_map
*bmap
;
4132 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4135 for (i
= 0; i
< pos
&& bmap
; ++i
)
4136 bmap
= var_equal(bmap
, i
);
4138 bmap
= var_more(bmap
, pos
);
4139 return isl_basic_map_finalize(bmap
);
4142 /* Return a relation on of dimension "dim" expressing i_[0..pos] >>= o_[0..pos]
4144 __isl_give isl_basic_map
*isl_basic_map_more_or_equal_at(
4145 __isl_take isl_space
*dim
, unsigned pos
)
4148 isl_basic_map
*bmap
;
4150 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4151 for (i
= 0; i
< pos
; ++i
)
4152 bmap
= var_equal(bmap
, i
);
4153 bmap
= var_more_or_equal(bmap
, pos
);
4154 return isl_basic_map_finalize(bmap
);
4157 static __isl_give isl_map
*map_lex_lte_first(__isl_take isl_space
*dims
,
4158 unsigned n
, int equal
)
4160 struct isl_map
*map
;
4163 if (n
== 0 && equal
)
4164 return isl_map_universe(dims
);
4166 map
= isl_map_alloc_space(isl_space_copy(dims
), n
, ISL_MAP_DISJOINT
);
4168 for (i
= 0; i
+ 1 < n
; ++i
)
4169 map
= isl_map_add_basic_map(map
,
4170 isl_basic_map_less_at(isl_space_copy(dims
), i
));
4173 map
= isl_map_add_basic_map(map
,
4174 isl_basic_map_less_or_equal_at(dims
, n
- 1));
4176 map
= isl_map_add_basic_map(map
,
4177 isl_basic_map_less_at(dims
, n
- 1));
4179 isl_space_free(dims
);
4184 static __isl_give isl_map
*map_lex_lte(__isl_take isl_space
*dims
, int equal
)
4188 return map_lex_lte_first(dims
, dims
->n_out
, equal
);
4191 __isl_give isl_map
*isl_map_lex_lt_first(__isl_take isl_space
*dim
, unsigned n
)
4193 return map_lex_lte_first(dim
, n
, 0);
4196 __isl_give isl_map
*isl_map_lex_le_first(__isl_take isl_space
*dim
, unsigned n
)
4198 return map_lex_lte_first(dim
, n
, 1);
4201 __isl_give isl_map
*isl_map_lex_lt(__isl_take isl_space
*set_dim
)
4203 return map_lex_lte(isl_space_map_from_set(set_dim
), 0);
4206 __isl_give isl_map
*isl_map_lex_le(__isl_take isl_space
*set_dim
)
4208 return map_lex_lte(isl_space_map_from_set(set_dim
), 1);
4211 static __isl_give isl_map
*map_lex_gte_first(__isl_take isl_space
*dims
,
4212 unsigned n
, int equal
)
4214 struct isl_map
*map
;
4217 if (n
== 0 && equal
)
4218 return isl_map_universe(dims
);
4220 map
= isl_map_alloc_space(isl_space_copy(dims
), n
, ISL_MAP_DISJOINT
);
4222 for (i
= 0; i
+ 1 < n
; ++i
)
4223 map
= isl_map_add_basic_map(map
,
4224 isl_basic_map_more_at(isl_space_copy(dims
), i
));
4227 map
= isl_map_add_basic_map(map
,
4228 isl_basic_map_more_or_equal_at(dims
, n
- 1));
4230 map
= isl_map_add_basic_map(map
,
4231 isl_basic_map_more_at(dims
, n
- 1));
4233 isl_space_free(dims
);
4238 static __isl_give isl_map
*map_lex_gte(__isl_take isl_space
*dims
, int equal
)
4242 return map_lex_gte_first(dims
, dims
->n_out
, equal
);
4245 __isl_give isl_map
*isl_map_lex_gt_first(__isl_take isl_space
*dim
, unsigned n
)
4247 return map_lex_gte_first(dim
, n
, 0);
4250 __isl_give isl_map
*isl_map_lex_ge_first(__isl_take isl_space
*dim
, unsigned n
)
4252 return map_lex_gte_first(dim
, n
, 1);
4255 __isl_give isl_map
*isl_map_lex_gt(__isl_take isl_space
*set_dim
)
4257 return map_lex_gte(isl_space_map_from_set(set_dim
), 0);
4260 __isl_give isl_map
*isl_map_lex_ge(__isl_take isl_space
*set_dim
)
4262 return map_lex_gte(isl_space_map_from_set(set_dim
), 1);
4265 __isl_give isl_map
*isl_set_lex_le_set(__isl_take isl_set
*set1
,
4266 __isl_take isl_set
*set2
)
4269 map
= isl_map_lex_le(isl_set_get_space(set1
));
4270 map
= isl_map_intersect_domain(map
, set1
);
4271 map
= isl_map_intersect_range(map
, set2
);
4275 __isl_give isl_map
*isl_set_lex_lt_set(__isl_take isl_set
*set1
,
4276 __isl_take isl_set
*set2
)
4279 map
= isl_map_lex_lt(isl_set_get_space(set1
));
4280 map
= isl_map_intersect_domain(map
, set1
);
4281 map
= isl_map_intersect_range(map
, set2
);
4285 __isl_give isl_map
*isl_set_lex_ge_set(__isl_take isl_set
*set1
,
4286 __isl_take isl_set
*set2
)
4289 map
= isl_map_lex_ge(isl_set_get_space(set1
));
4290 map
= isl_map_intersect_domain(map
, set1
);
4291 map
= isl_map_intersect_range(map
, set2
);
4295 __isl_give isl_map
*isl_set_lex_gt_set(__isl_take isl_set
*set1
,
4296 __isl_take isl_set
*set2
)
4299 map
= isl_map_lex_gt(isl_set_get_space(set1
));
4300 map
= isl_map_intersect_domain(map
, set1
);
4301 map
= isl_map_intersect_range(map
, set2
);
4305 __isl_give isl_map
*isl_map_lex_le_map(__isl_take isl_map
*map1
,
4306 __isl_take isl_map
*map2
)
4309 map
= isl_map_lex_le(isl_space_range(isl_map_get_space(map1
)));
4310 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4311 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4315 __isl_give isl_map
*isl_map_lex_lt_map(__isl_take isl_map
*map1
,
4316 __isl_take isl_map
*map2
)
4319 map
= isl_map_lex_lt(isl_space_range(isl_map_get_space(map1
)));
4320 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4321 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4325 __isl_give isl_map
*isl_map_lex_ge_map(__isl_take isl_map
*map1
,
4326 __isl_take isl_map
*map2
)
4329 map
= isl_map_lex_ge(isl_space_range(isl_map_get_space(map1
)));
4330 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4331 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4335 __isl_give isl_map
*isl_map_lex_gt_map(__isl_take isl_map
*map1
,
4336 __isl_take isl_map
*map2
)
4339 map
= isl_map_lex_gt(isl_space_range(isl_map_get_space(map1
)));
4340 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4341 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4345 __isl_give isl_basic_map
*isl_basic_map_from_basic_set(
4346 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*dim
)
4348 struct isl_basic_map
*bmap
;
4350 bset
= isl_basic_set_cow(bset
);
4354 isl_assert(bset
->ctx
, isl_space_compatible(bset
->dim
, dim
), goto error
);
4355 isl_space_free(bset
->dim
);
4356 bmap
= (struct isl_basic_map
*) bset
;
4358 return isl_basic_map_finalize(bmap
);
4360 isl_basic_set_free(bset
);
4361 isl_space_free(dim
);
4365 struct isl_basic_set
*isl_basic_set_from_basic_map(struct isl_basic_map
*bmap
)
4369 if (bmap
->dim
->n_in
== 0)
4370 return (struct isl_basic_set
*)bmap
;
4371 bmap
= isl_basic_map_cow(bmap
);
4374 bmap
->dim
= isl_space_as_set_space(bmap
->dim
);
4377 bmap
= isl_basic_map_finalize(bmap
);
4378 return (struct isl_basic_set
*)bmap
;
4380 isl_basic_map_free(bmap
);
4384 /* For a div d = floor(f/m), add the constraint
4388 static int add_upper_div_constraint(__isl_keep isl_basic_map
*bmap
,
4389 unsigned pos
, isl_int
*div
)
4392 unsigned total
= isl_basic_map_total_dim(bmap
);
4394 i
= isl_basic_map_alloc_inequality(bmap
);
4397 isl_seq_cpy(bmap
->ineq
[i
], div
+ 1, 1 + total
);
4398 isl_int_neg(bmap
->ineq
[i
][1 + pos
], div
[0]);
4403 /* For a div d = floor(f/m), add the constraint
4405 * -(f-(n-1)) + m d >= 0
4407 static int add_lower_div_constraint(__isl_keep isl_basic_map
*bmap
,
4408 unsigned pos
, isl_int
*div
)
4411 unsigned total
= isl_basic_map_total_dim(bmap
);
4413 i
= isl_basic_map_alloc_inequality(bmap
);
4416 isl_seq_neg(bmap
->ineq
[i
], div
+ 1, 1 + total
);
4417 isl_int_set(bmap
->ineq
[i
][1 + pos
], div
[0]);
4418 isl_int_add(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], bmap
->ineq
[i
][1 + pos
]);
4419 isl_int_sub_ui(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], 1);
4424 /* For a div d = floor(f/m), add the constraints
4427 * -(f-(n-1)) + m d >= 0
4429 * Note that the second constraint is the negation of
4433 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map
*bmap
,
4434 unsigned pos
, isl_int
*div
)
4436 if (add_upper_div_constraint(bmap
, pos
, div
) < 0)
4438 if (add_lower_div_constraint(bmap
, pos
, div
) < 0)
4443 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set
*bset
,
4444 unsigned pos
, isl_int
*div
)
4446 return isl_basic_map_add_div_constraints_var((isl_basic_map
*)bset
,
4450 int isl_basic_map_add_div_constraints(struct isl_basic_map
*bmap
, unsigned div
)
4452 unsigned total
= isl_basic_map_total_dim(bmap
);
4453 unsigned div_pos
= total
- bmap
->n_div
+ div
;
4455 return isl_basic_map_add_div_constraints_var(bmap
, div_pos
,
4459 /* For each known div d = floor(f/m), add the constraints
4462 * -(f-(n-1)) + m d >= 0
4464 __isl_give isl_basic_map
*isl_basic_map_add_known_div_constraints(
4465 __isl_take isl_basic_map
*bmap
)
4472 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
4475 bmap
= isl_basic_map_cow(bmap
);
4476 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 2 * n_div
);
4479 for (i
= 0; i
< n_div
; ++i
) {
4480 if (isl_int_is_zero(bmap
->div
[i
][0]))
4482 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
4483 return isl_basic_map_free(bmap
);
4486 bmap
= isl_basic_map_remove_duplicate_constraints(bmap
, NULL
, 0);
4487 bmap
= isl_basic_map_finalize(bmap
);
4491 /* Add the div constraint of sign "sign" for div "div" of "bmap".
4493 * In particular, if this div is of the form d = floor(f/m),
4494 * then add the constraint
4498 * if sign < 0 or the constraint
4500 * -(f-(n-1)) + m d >= 0
4504 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map
*bmap
,
4505 unsigned div
, int sign
)
4513 total
= isl_basic_map_total_dim(bmap
);
4514 div_pos
= total
- bmap
->n_div
+ div
;
4517 return add_upper_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
4519 return add_lower_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
4522 int isl_basic_set_add_div_constraints(struct isl_basic_set
*bset
, unsigned div
)
4524 return isl_basic_map_add_div_constraints(bset
, div
);
4527 struct isl_basic_set
*isl_basic_map_underlying_set(
4528 struct isl_basic_map
*bmap
)
4532 if (bmap
->dim
->nparam
== 0 && bmap
->dim
->n_in
== 0 &&
4534 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_in
) &&
4535 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_out
))
4536 return (struct isl_basic_set
*)bmap
;
4537 bmap
= isl_basic_map_cow(bmap
);
4540 bmap
->dim
= isl_space_underlying(bmap
->dim
, bmap
->n_div
);
4543 bmap
->extra
-= bmap
->n_div
;
4545 bmap
= isl_basic_map_finalize(bmap
);
4546 return (struct isl_basic_set
*)bmap
;
4548 isl_basic_map_free(bmap
);
4552 __isl_give isl_basic_set
*isl_basic_set_underlying_set(
4553 __isl_take isl_basic_set
*bset
)
4555 return isl_basic_map_underlying_set((isl_basic_map
*)bset
);
4558 /* Replace each element in "list" by the result of applying
4559 * isl_basic_map_underlying_set to the element.
4561 __isl_give isl_basic_set_list
*isl_basic_map_list_underlying_set(
4562 __isl_take isl_basic_map_list
*list
)
4569 n
= isl_basic_map_list_n_basic_map(list
);
4570 for (i
= 0; i
< n
; ++i
) {
4571 isl_basic_map
*bmap
;
4572 isl_basic_set
*bset
;
4574 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
4575 bset
= isl_basic_set_underlying_set(bmap
);
4576 list
= isl_basic_set_list_set_basic_set(list
, i
, bset
);
4582 struct isl_basic_map
*isl_basic_map_overlying_set(
4583 struct isl_basic_set
*bset
, struct isl_basic_map
*like
)
4585 struct isl_basic_map
*bmap
;
4586 struct isl_ctx
*ctx
;
4593 isl_assert(ctx
, bset
->n_div
== 0, goto error
);
4594 isl_assert(ctx
, isl_basic_set_n_param(bset
) == 0, goto error
);
4595 isl_assert(ctx
, bset
->dim
->n_out
== isl_basic_map_total_dim(like
),
4597 if (isl_space_is_equal(bset
->dim
, like
->dim
) && like
->n_div
== 0) {
4598 isl_basic_map_free(like
);
4599 return (struct isl_basic_map
*)bset
;
4601 bset
= isl_basic_set_cow(bset
);
4604 total
= bset
->dim
->n_out
+ bset
->extra
;
4605 bmap
= (struct isl_basic_map
*)bset
;
4606 isl_space_free(bmap
->dim
);
4607 bmap
->dim
= isl_space_copy(like
->dim
);
4610 bmap
->n_div
= like
->n_div
;
4611 bmap
->extra
+= like
->n_div
;
4615 ltotal
= total
- bmap
->extra
+ like
->extra
;
4618 bmap
->block2
= isl_blk_extend(ctx
, bmap
->block2
,
4619 bmap
->extra
* (1 + 1 + total
));
4620 if (isl_blk_is_error(bmap
->block2
))
4622 div
= isl_realloc_array(ctx
, bmap
->div
, isl_int
*, bmap
->extra
);
4626 for (i
= 0; i
< bmap
->extra
; ++i
)
4627 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + 1 + total
);
4628 for (i
= 0; i
< like
->n_div
; ++i
) {
4629 isl_seq_cpy(bmap
->div
[i
], like
->div
[i
], 1 + 1 + ltotal
);
4630 isl_seq_clr(bmap
->div
[i
]+1+1+ltotal
, total
- ltotal
);
4632 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
4634 isl_basic_map_free(like
);
4635 bmap
= isl_basic_map_simplify(bmap
);
4636 bmap
= isl_basic_map_finalize(bmap
);
4639 isl_basic_map_free(like
);
4640 isl_basic_set_free(bset
);
4644 struct isl_basic_set
*isl_basic_set_from_underlying_set(
4645 struct isl_basic_set
*bset
, struct isl_basic_set
*like
)
4647 return (struct isl_basic_set
*)
4648 isl_basic_map_overlying_set(bset
, (struct isl_basic_map
*)like
);
4651 struct isl_set
*isl_set_from_underlying_set(
4652 struct isl_set
*set
, struct isl_basic_set
*like
)
4658 isl_assert(set
->ctx
, set
->dim
->n_out
== isl_basic_set_total_dim(like
),
4660 if (isl_space_is_equal(set
->dim
, like
->dim
) && like
->n_div
== 0) {
4661 isl_basic_set_free(like
);
4664 set
= isl_set_cow(set
);
4667 for (i
= 0; i
< set
->n
; ++i
) {
4668 set
->p
[i
] = isl_basic_set_from_underlying_set(set
->p
[i
],
4669 isl_basic_set_copy(like
));
4673 isl_space_free(set
->dim
);
4674 set
->dim
= isl_space_copy(like
->dim
);
4677 isl_basic_set_free(like
);
4680 isl_basic_set_free(like
);
4685 struct isl_set
*isl_map_underlying_set(struct isl_map
*map
)
4689 map
= isl_map_cow(map
);
4692 map
->dim
= isl_space_cow(map
->dim
);
4696 for (i
= 1; i
< map
->n
; ++i
)
4697 isl_assert(map
->ctx
, map
->p
[0]->n_div
== map
->p
[i
]->n_div
,
4699 for (i
= 0; i
< map
->n
; ++i
) {
4700 map
->p
[i
] = (struct isl_basic_map
*)
4701 isl_basic_map_underlying_set(map
->p
[i
]);
4706 map
->dim
= isl_space_underlying(map
->dim
, 0);
4708 isl_space_free(map
->dim
);
4709 map
->dim
= isl_space_copy(map
->p
[0]->dim
);
4713 return (struct isl_set
*)map
;
4719 struct isl_set
*isl_set_to_underlying_set(struct isl_set
*set
)
4721 return (struct isl_set
*)isl_map_underlying_set((struct isl_map
*)set
);
4724 __isl_give isl_basic_map
*isl_basic_map_reset_space(
4725 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*dim
)
4727 bmap
= isl_basic_map_cow(bmap
);
4731 isl_space_free(bmap
->dim
);
4734 bmap
= isl_basic_map_finalize(bmap
);
4738 isl_basic_map_free(bmap
);
4739 isl_space_free(dim
);
4743 __isl_give isl_basic_set
*isl_basic_set_reset_space(
4744 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*dim
)
4746 return (isl_basic_set
*)isl_basic_map_reset_space((isl_basic_map
*)bset
,
4750 __isl_give isl_map
*isl_map_reset_space(__isl_take isl_map
*map
,
4751 __isl_take isl_space
*dim
)
4755 map
= isl_map_cow(map
);
4759 for (i
= 0; i
< map
->n
; ++i
) {
4760 map
->p
[i
] = isl_basic_map_reset_space(map
->p
[i
],
4761 isl_space_copy(dim
));
4765 isl_space_free(map
->dim
);
4771 isl_space_free(dim
);
4775 __isl_give isl_set
*isl_set_reset_space(__isl_take isl_set
*set
,
4776 __isl_take isl_space
*dim
)
4778 return (struct isl_set
*) isl_map_reset_space((struct isl_map
*)set
, dim
);
4781 /* Compute the parameter domain of the given basic set.
4783 __isl_give isl_basic_set
*isl_basic_set_params(__isl_take isl_basic_set
*bset
)
4788 if (isl_basic_set_is_params(bset
))
4791 n
= isl_basic_set_dim(bset
, isl_dim_set
);
4792 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
4793 space
= isl_basic_set_get_space(bset
);
4794 space
= isl_space_params(space
);
4795 bset
= isl_basic_set_reset_space(bset
, space
);
4799 /* Construct a zero-dimensional basic set with the given parameter domain.
4801 __isl_give isl_basic_set
*isl_basic_set_from_params(
4802 __isl_take isl_basic_set
*bset
)
4805 space
= isl_basic_set_get_space(bset
);
4806 space
= isl_space_set_from_params(space
);
4807 bset
= isl_basic_set_reset_space(bset
, space
);
4811 /* Compute the parameter domain of the given set.
4813 __isl_give isl_set
*isl_set_params(__isl_take isl_set
*set
)
4818 if (isl_set_is_params(set
))
4821 n
= isl_set_dim(set
, isl_dim_set
);
4822 set
= isl_set_project_out(set
, isl_dim_set
, 0, n
);
4823 space
= isl_set_get_space(set
);
4824 space
= isl_space_params(space
);
4825 set
= isl_set_reset_space(set
, space
);
4829 /* Construct a zero-dimensional set with the given parameter domain.
4831 __isl_give isl_set
*isl_set_from_params(__isl_take isl_set
*set
)
4834 space
= isl_set_get_space(set
);
4835 space
= isl_space_set_from_params(space
);
4836 set
= isl_set_reset_space(set
, space
);
4840 /* Compute the parameter domain of the given map.
4842 __isl_give isl_set
*isl_map_params(__isl_take isl_map
*map
)
4847 n
= isl_map_dim(map
, isl_dim_in
);
4848 map
= isl_map_project_out(map
, isl_dim_in
, 0, n
);
4849 n
= isl_map_dim(map
, isl_dim_out
);
4850 map
= isl_map_project_out(map
, isl_dim_out
, 0, n
);
4851 space
= isl_map_get_space(map
);
4852 space
= isl_space_params(space
);
4853 map
= isl_map_reset_space(map
, space
);
4857 struct isl_basic_set
*isl_basic_map_domain(struct isl_basic_map
*bmap
)
4860 struct isl_basic_set
*domain
;
4866 dim
= isl_space_domain(isl_basic_map_get_space(bmap
));
4868 n_in
= isl_basic_map_n_in(bmap
);
4869 n_out
= isl_basic_map_n_out(bmap
);
4870 domain
= isl_basic_set_from_basic_map(bmap
);
4871 domain
= isl_basic_set_project_out(domain
, isl_dim_set
, n_in
, n_out
);
4873 domain
= isl_basic_set_reset_space(domain
, dim
);
4878 int isl_basic_map_may_be_set(__isl_keep isl_basic_map
*bmap
)
4882 return isl_space_may_be_set(bmap
->dim
);
4885 /* Is this basic map actually a set?
4886 * Users should never call this function. Outside of isl,
4887 * the type should indicate whether something is a set or a map.
4889 int isl_basic_map_is_set(__isl_keep isl_basic_map
*bmap
)
4893 return isl_space_is_set(bmap
->dim
);
4896 struct isl_basic_set
*isl_basic_map_range(struct isl_basic_map
*bmap
)
4900 if (isl_basic_map_is_set(bmap
))
4902 return isl_basic_map_domain(isl_basic_map_reverse(bmap
));
4905 __isl_give isl_basic_map
*isl_basic_map_domain_map(
4906 __isl_take isl_basic_map
*bmap
)
4910 isl_basic_map
*domain
;
4911 int nparam
, n_in
, n_out
;
4914 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4915 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4916 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
4918 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
4919 domain
= isl_basic_map_universe(dim
);
4921 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
4922 bmap
= isl_basic_map_apply_range(bmap
, domain
);
4923 bmap
= isl_basic_map_extend_constraints(bmap
, n_in
, 0);
4925 total
= isl_basic_map_total_dim(bmap
);
4927 for (i
= 0; i
< n_in
; ++i
) {
4928 k
= isl_basic_map_alloc_equality(bmap
);
4931 isl_seq_clr(bmap
->eq
[k
], 1 + total
);
4932 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ i
], -1);
4933 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n_in
+ n_out
+ i
], 1);
4936 bmap
= isl_basic_map_gauss(bmap
, NULL
);
4937 return isl_basic_map_finalize(bmap
);
4939 isl_basic_map_free(bmap
);
4943 __isl_give isl_basic_map
*isl_basic_map_range_map(
4944 __isl_take isl_basic_map
*bmap
)
4948 isl_basic_map
*range
;
4949 int nparam
, n_in
, n_out
;
4952 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4953 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4954 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
4956 dim
= isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap
)));
4957 range
= isl_basic_map_universe(dim
);
4959 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
4960 bmap
= isl_basic_map_apply_range(bmap
, range
);
4961 bmap
= isl_basic_map_extend_constraints(bmap
, n_out
, 0);
4963 total
= isl_basic_map_total_dim(bmap
);
4965 for (i
= 0; i
< n_out
; ++i
) {
4966 k
= isl_basic_map_alloc_equality(bmap
);
4969 isl_seq_clr(bmap
->eq
[k
], 1 + total
);
4970 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n_in
+ i
], -1);
4971 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n_in
+ n_out
+ i
], 1);
4974 bmap
= isl_basic_map_gauss(bmap
, NULL
);
4975 return isl_basic_map_finalize(bmap
);
4977 isl_basic_map_free(bmap
);
4981 int isl_map_may_be_set(__isl_keep isl_map
*map
)
4985 return isl_space_may_be_set(map
->dim
);
4988 /* Is this map actually a set?
4989 * Users should never call this function. Outside of isl,
4990 * the type should indicate whether something is a set or a map.
4992 int isl_map_is_set(__isl_keep isl_map
*map
)
4996 return isl_space_is_set(map
->dim
);
4999 struct isl_set
*isl_map_range(struct isl_map
*map
)
5002 struct isl_set
*set
;
5006 if (isl_map_is_set(map
))
5007 return (isl_set
*)map
;
5009 map
= isl_map_cow(map
);
5013 set
= (struct isl_set
*) map
;
5014 set
->dim
= isl_space_range(set
->dim
);
5017 for (i
= 0; i
< map
->n
; ++i
) {
5018 set
->p
[i
] = isl_basic_map_range(map
->p
[i
]);
5022 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
5023 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
5030 __isl_give isl_map
*isl_map_domain_map(__isl_take isl_map
*map
)
5034 map
= isl_map_cow(map
);
5038 map
->dim
= isl_space_domain_map(map
->dim
);
5041 for (i
= 0; i
< map
->n
; ++i
) {
5042 map
->p
[i
] = isl_basic_map_domain_map(map
->p
[i
]);
5046 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5047 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5054 __isl_give isl_map
*isl_map_range_map(__isl_take isl_map
*map
)
5057 isl_space
*range_dim
;
5059 map
= isl_map_cow(map
);
5063 range_dim
= isl_space_range(isl_map_get_space(map
));
5064 range_dim
= isl_space_from_range(range_dim
);
5065 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
5066 map
->dim
= isl_space_join(map
->dim
, range_dim
);
5069 for (i
= 0; i
< map
->n
; ++i
) {
5070 map
->p
[i
] = isl_basic_map_range_map(map
->p
[i
]);
5074 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5075 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5082 /* Given a wrapped map of the form A[B -> C],
5083 * return the map A[B -> C] -> B.
5085 __isl_give isl_map
*isl_set_wrapped_domain_map(__isl_take isl_set
*set
)
5092 if (!isl_set_has_tuple_id(set
))
5093 return isl_map_domain_map(isl_set_unwrap(set
));
5095 id
= isl_set_get_tuple_id(set
);
5096 map
= isl_map_domain_map(isl_set_unwrap(set
));
5097 map
= isl_map_set_tuple_id(map
, isl_dim_in
, id
);
5102 __isl_give isl_map
*isl_map_from_set(__isl_take isl_set
*set
,
5103 __isl_take isl_space
*dim
)
5106 struct isl_map
*map
= NULL
;
5108 set
= isl_set_cow(set
);
5111 isl_assert(set
->ctx
, isl_space_compatible(set
->dim
, dim
), goto error
);
5112 map
= (struct isl_map
*)set
;
5113 for (i
= 0; i
< set
->n
; ++i
) {
5114 map
->p
[i
] = isl_basic_map_from_basic_set(
5115 set
->p
[i
], isl_space_copy(dim
));
5119 isl_space_free(map
->dim
);
5123 isl_space_free(dim
);
5128 __isl_give isl_basic_map
*isl_basic_map_from_domain(
5129 __isl_take isl_basic_set
*bset
)
5131 return isl_basic_map_reverse(isl_basic_map_from_range(bset
));
5134 __isl_give isl_basic_map
*isl_basic_map_from_range(
5135 __isl_take isl_basic_set
*bset
)
5138 space
= isl_basic_set_get_space(bset
);
5139 space
= isl_space_from_range(space
);
5140 bset
= isl_basic_set_reset_space(bset
, space
);
5141 return (isl_basic_map
*)bset
;
5144 /* Create a relation with the given set as range.
5145 * The domain of the created relation is a zero-dimensional
5146 * flat anonymous space.
5148 __isl_give isl_map
*isl_map_from_range(__isl_take isl_set
*set
)
5151 space
= isl_set_get_space(set
);
5152 space
= isl_space_from_range(space
);
5153 set
= isl_set_reset_space(set
, space
);
5154 return (struct isl_map
*)set
;
5157 /* Create a relation with the given set as domain.
5158 * The range of the created relation is a zero-dimensional
5159 * flat anonymous space.
5161 __isl_give isl_map
*isl_map_from_domain(__isl_take isl_set
*set
)
5163 return isl_map_reverse(isl_map_from_range(set
));
5166 __isl_give isl_basic_map
*isl_basic_map_from_domain_and_range(
5167 __isl_take isl_basic_set
*domain
, __isl_take isl_basic_set
*range
)
5169 return isl_basic_map_apply_range(isl_basic_map_reverse(domain
), range
);
5172 __isl_give isl_map
*isl_map_from_domain_and_range(__isl_take isl_set
*domain
,
5173 __isl_take isl_set
*range
)
5175 return isl_map_apply_range(isl_map_reverse(domain
), range
);
5178 struct isl_set
*isl_set_from_map(struct isl_map
*map
)
5181 struct isl_set
*set
= NULL
;
5185 map
= isl_map_cow(map
);
5188 map
->dim
= isl_space_as_set_space(map
->dim
);
5191 set
= (struct isl_set
*)map
;
5192 for (i
= 0; i
< map
->n
; ++i
) {
5193 set
->p
[i
] = isl_basic_set_from_basic_map(map
->p
[i
]);
5203 __isl_give isl_map
*isl_map_alloc_space(__isl_take isl_space
*dim
, int n
,
5206 struct isl_map
*map
;
5211 isl_die(dim
->ctx
, isl_error_internal
,
5212 "negative number of basic maps", goto error
);
5213 map
= isl_alloc(dim
->ctx
, struct isl_map
,
5214 sizeof(struct isl_map
) +
5215 (n
- 1) * sizeof(struct isl_basic_map
*));
5219 map
->ctx
= dim
->ctx
;
5220 isl_ctx_ref(map
->ctx
);
5228 isl_space_free(dim
);
5232 struct isl_map
*isl_map_alloc(struct isl_ctx
*ctx
,
5233 unsigned nparam
, unsigned in
, unsigned out
, int n
,
5236 struct isl_map
*map
;
5239 dims
= isl_space_alloc(ctx
, nparam
, in
, out
);
5243 map
= isl_map_alloc_space(dims
, n
, flags
);
5247 __isl_give isl_basic_map
*isl_basic_map_empty(__isl_take isl_space
*dim
)
5249 struct isl_basic_map
*bmap
;
5250 bmap
= isl_basic_map_alloc_space(dim
, 0, 1, 0);
5251 bmap
= isl_basic_map_set_to_empty(bmap
);
5255 __isl_give isl_basic_set
*isl_basic_set_empty(__isl_take isl_space
*dim
)
5257 struct isl_basic_set
*bset
;
5258 bset
= isl_basic_set_alloc_space(dim
, 0, 1, 0);
5259 bset
= isl_basic_set_set_to_empty(bset
);
5263 struct isl_basic_map
*isl_basic_map_empty_like(struct isl_basic_map
*model
)
5265 struct isl_basic_map
*bmap
;
5268 bmap
= isl_basic_map_alloc_space(isl_space_copy(model
->dim
), 0, 1, 0);
5269 bmap
= isl_basic_map_set_to_empty(bmap
);
5273 struct isl_basic_map
*isl_basic_map_empty_like_map(struct isl_map
*model
)
5275 struct isl_basic_map
*bmap
;
5278 bmap
= isl_basic_map_alloc_space(isl_space_copy(model
->dim
), 0, 1, 0);
5279 bmap
= isl_basic_map_set_to_empty(bmap
);
5283 struct isl_basic_set
*isl_basic_set_empty_like(struct isl_basic_set
*model
)
5285 struct isl_basic_set
*bset
;
5288 bset
= isl_basic_set_alloc_space(isl_space_copy(model
->dim
), 0, 1, 0);
5289 bset
= isl_basic_set_set_to_empty(bset
);
5293 __isl_give isl_basic_map
*isl_basic_map_universe(__isl_take isl_space
*dim
)
5295 struct isl_basic_map
*bmap
;
5296 bmap
= isl_basic_map_alloc_space(dim
, 0, 0, 0);
5297 bmap
= isl_basic_map_finalize(bmap
);
5301 __isl_give isl_basic_set
*isl_basic_set_universe(__isl_take isl_space
*dim
)
5303 struct isl_basic_set
*bset
;
5304 bset
= isl_basic_set_alloc_space(dim
, 0, 0, 0);
5305 bset
= isl_basic_set_finalize(bset
);
5309 __isl_give isl_basic_map
*isl_basic_map_nat_universe(__isl_take isl_space
*dim
)
5312 unsigned total
= isl_space_dim(dim
, isl_dim_all
);
5313 isl_basic_map
*bmap
;
5315 bmap
= isl_basic_map_alloc_space(dim
, 0, 0, total
);
5316 for (i
= 0; i
< total
; ++i
) {
5317 int k
= isl_basic_map_alloc_inequality(bmap
);
5320 isl_seq_clr(bmap
->ineq
[k
], 1 + total
);
5321 isl_int_set_si(bmap
->ineq
[k
][1 + i
], 1);
5325 isl_basic_map_free(bmap
);
5329 __isl_give isl_basic_set
*isl_basic_set_nat_universe(__isl_take isl_space
*dim
)
5331 return isl_basic_map_nat_universe(dim
);
5334 __isl_give isl_map
*isl_map_nat_universe(__isl_take isl_space
*dim
)
5336 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim
));
5339 __isl_give isl_set
*isl_set_nat_universe(__isl_take isl_space
*dim
)
5341 return isl_map_nat_universe(dim
);
5344 __isl_give isl_basic_map
*isl_basic_map_universe_like(
5345 __isl_keep isl_basic_map
*model
)
5349 return isl_basic_map_alloc_space(isl_space_copy(model
->dim
), 0, 0, 0);
5352 struct isl_basic_set
*isl_basic_set_universe_like(struct isl_basic_set
*model
)
5356 return isl_basic_set_alloc_space(isl_space_copy(model
->dim
), 0, 0, 0);
5359 __isl_give isl_basic_set
*isl_basic_set_universe_like_set(
5360 __isl_keep isl_set
*model
)
5364 return isl_basic_set_alloc_space(isl_space_copy(model
->dim
), 0, 0, 0);
5367 __isl_give isl_map
*isl_map_empty(__isl_take isl_space
*dim
)
5369 return isl_map_alloc_space(dim
, 0, ISL_MAP_DISJOINT
);
5372 struct isl_map
*isl_map_empty_like(struct isl_map
*model
)
5376 return isl_map_alloc_space(isl_space_copy(model
->dim
), 0, ISL_MAP_DISJOINT
);
5379 struct isl_map
*isl_map_empty_like_basic_map(struct isl_basic_map
*model
)
5383 return isl_map_alloc_space(isl_space_copy(model
->dim
), 0, ISL_MAP_DISJOINT
);
5386 __isl_give isl_set
*isl_set_empty(__isl_take isl_space
*dim
)
5388 return isl_set_alloc_space(dim
, 0, ISL_MAP_DISJOINT
);
5391 struct isl_set
*isl_set_empty_like(struct isl_set
*model
)
5395 return isl_set_empty(isl_space_copy(model
->dim
));
5398 __isl_give isl_map
*isl_map_universe(__isl_take isl_space
*dim
)
5400 struct isl_map
*map
;
5403 map
= isl_map_alloc_space(isl_space_copy(dim
), 1, ISL_MAP_DISJOINT
);
5404 map
= isl_map_add_basic_map(map
, isl_basic_map_universe(dim
));
5408 __isl_give isl_set
*isl_set_universe(__isl_take isl_space
*dim
)
5410 struct isl_set
*set
;
5413 set
= isl_set_alloc_space(isl_space_copy(dim
), 1, ISL_MAP_DISJOINT
);
5414 set
= isl_set_add_basic_set(set
, isl_basic_set_universe(dim
));
5418 __isl_give isl_set
*isl_set_universe_like(__isl_keep isl_set
*model
)
5422 return isl_set_universe(isl_space_copy(model
->dim
));
5425 struct isl_map
*isl_map_dup(struct isl_map
*map
)
5428 struct isl_map
*dup
;
5432 dup
= isl_map_alloc_space(isl_space_copy(map
->dim
), map
->n
, map
->flags
);
5433 for (i
= 0; i
< map
->n
; ++i
)
5434 dup
= isl_map_add_basic_map(dup
, isl_basic_map_copy(map
->p
[i
]));
5438 __isl_give isl_map
*isl_map_add_basic_map(__isl_take isl_map
*map
,
5439 __isl_take isl_basic_map
*bmap
)
5443 if (isl_basic_map_plain_is_empty(bmap
)) {
5444 isl_basic_map_free(bmap
);
5447 isl_assert(map
->ctx
, isl_space_is_equal(map
->dim
, bmap
->dim
), goto error
);
5448 isl_assert(map
->ctx
, map
->n
< map
->size
, goto error
);
5449 map
->p
[map
->n
] = bmap
;
5451 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5457 isl_basic_map_free(bmap
);
5461 __isl_null isl_map
*isl_map_free(__isl_take isl_map
*map
)
5471 isl_ctx_deref(map
->ctx
);
5472 for (i
= 0; i
< map
->n
; ++i
)
5473 isl_basic_map_free(map
->p
[i
]);
5474 isl_space_free(map
->dim
);
5480 struct isl_map
*isl_map_extend(struct isl_map
*base
,
5481 unsigned nparam
, unsigned n_in
, unsigned n_out
)
5485 base
= isl_map_cow(base
);
5489 base
->dim
= isl_space_extend(base
->dim
, nparam
, n_in
, n_out
);
5492 for (i
= 0; i
< base
->n
; ++i
) {
5493 base
->p
[i
] = isl_basic_map_extend_space(base
->p
[i
],
5494 isl_space_copy(base
->dim
), 0, 0, 0);
5504 struct isl_set
*isl_set_extend(struct isl_set
*base
,
5505 unsigned nparam
, unsigned dim
)
5507 return (struct isl_set
*)isl_map_extend((struct isl_map
*)base
,
5511 static struct isl_basic_map
*isl_basic_map_fix_pos_si(
5512 struct isl_basic_map
*bmap
, unsigned pos
, int value
)
5516 bmap
= isl_basic_map_cow(bmap
);
5517 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
5518 j
= isl_basic_map_alloc_equality(bmap
);
5521 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
5522 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
5523 isl_int_set_si(bmap
->eq
[j
][0], value
);
5524 bmap
= isl_basic_map_simplify(bmap
);
5525 return isl_basic_map_finalize(bmap
);
5527 isl_basic_map_free(bmap
);
5531 static __isl_give isl_basic_map
*isl_basic_map_fix_pos(
5532 __isl_take isl_basic_map
*bmap
, unsigned pos
, isl_int value
)
5536 bmap
= isl_basic_map_cow(bmap
);
5537 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
5538 j
= isl_basic_map_alloc_equality(bmap
);
5541 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
5542 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
5543 isl_int_set(bmap
->eq
[j
][0], value
);
5544 bmap
= isl_basic_map_simplify(bmap
);
5545 return isl_basic_map_finalize(bmap
);
5547 isl_basic_map_free(bmap
);
5551 struct isl_basic_map
*isl_basic_map_fix_si(struct isl_basic_map
*bmap
,
5552 enum isl_dim_type type
, unsigned pos
, int value
)
5556 isl_assert(bmap
->ctx
, pos
< isl_basic_map_dim(bmap
, type
), goto error
);
5557 return isl_basic_map_fix_pos_si(bmap
,
5558 isl_basic_map_offset(bmap
, type
) + pos
, value
);
5560 isl_basic_map_free(bmap
);
5564 __isl_give isl_basic_map
*isl_basic_map_fix(__isl_take isl_basic_map
*bmap
,
5565 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5569 isl_assert(bmap
->ctx
, pos
< isl_basic_map_dim(bmap
, type
), goto error
);
5570 return isl_basic_map_fix_pos(bmap
,
5571 isl_basic_map_offset(bmap
, type
) + pos
, value
);
5573 isl_basic_map_free(bmap
);
5577 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
5578 * to be equal to "v".
5580 __isl_give isl_basic_map
*isl_basic_map_fix_val(__isl_take isl_basic_map
*bmap
,
5581 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5585 if (!isl_val_is_int(v
))
5586 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
5587 "expecting integer value", goto error
);
5588 if (pos
>= isl_basic_map_dim(bmap
, type
))
5589 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
5590 "index out of bounds", goto error
);
5591 pos
+= isl_basic_map_offset(bmap
, type
);
5592 bmap
= isl_basic_map_fix_pos(bmap
, pos
, v
->n
);
5596 isl_basic_map_free(bmap
);
5601 /* Fix the value of the variable at position "pos" of type "type" of "bset"
5602 * to be equal to "v".
5604 __isl_give isl_basic_set
*isl_basic_set_fix_val(__isl_take isl_basic_set
*bset
,
5605 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5607 return isl_basic_map_fix_val(bset
, type
, pos
, v
);
5610 struct isl_basic_set
*isl_basic_set_fix_si(struct isl_basic_set
*bset
,
5611 enum isl_dim_type type
, unsigned pos
, int value
)
5613 return (struct isl_basic_set
*)
5614 isl_basic_map_fix_si((struct isl_basic_map
*)bset
,
5618 __isl_give isl_basic_set
*isl_basic_set_fix(__isl_take isl_basic_set
*bset
,
5619 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5621 return (struct isl_basic_set
*)
5622 isl_basic_map_fix((struct isl_basic_map
*)bset
,
5626 struct isl_basic_map
*isl_basic_map_fix_input_si(struct isl_basic_map
*bmap
,
5627 unsigned input
, int value
)
5629 return isl_basic_map_fix_si(bmap
, isl_dim_in
, input
, value
);
5632 struct isl_basic_set
*isl_basic_set_fix_dim_si(struct isl_basic_set
*bset
,
5633 unsigned dim
, int value
)
5635 return (struct isl_basic_set
*)
5636 isl_basic_map_fix_si((struct isl_basic_map
*)bset
,
5637 isl_dim_set
, dim
, value
);
5640 static int remove_if_empty(__isl_keep isl_map
*map
, int i
)
5642 int empty
= isl_basic_map_plain_is_empty(map
->p
[i
]);
5649 isl_basic_map_free(map
->p
[i
]);
5650 if (i
!= map
->n
- 1) {
5651 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5652 map
->p
[i
] = map
->p
[map
->n
- 1];
5659 /* Perform "fn" on each basic map of "map", where we may not be holding
5660 * the only reference to "map".
5661 * In particular, "fn" should be a semantics preserving operation
5662 * that we want to apply to all copies of "map". We therefore need
5663 * to be careful not to modify "map" in a way that breaks "map"
5664 * in case anything goes wrong.
5666 __isl_give isl_map
*isl_map_inline_foreach_basic_map(__isl_take isl_map
*map
,
5667 __isl_give isl_basic_map
*(*fn
)(__isl_take isl_basic_map
*bmap
))
5669 struct isl_basic_map
*bmap
;
5675 for (i
= map
->n
- 1; i
>= 0; --i
) {
5676 bmap
= isl_basic_map_copy(map
->p
[i
]);
5680 isl_basic_map_free(map
->p
[i
]);
5682 if (remove_if_empty(map
, i
) < 0)
5692 struct isl_map
*isl_map_fix_si(struct isl_map
*map
,
5693 enum isl_dim_type type
, unsigned pos
, int value
)
5697 map
= isl_map_cow(map
);
5701 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
5702 for (i
= map
->n
- 1; i
>= 0; --i
) {
5703 map
->p
[i
] = isl_basic_map_fix_si(map
->p
[i
], type
, pos
, value
);
5704 if (remove_if_empty(map
, i
) < 0)
5707 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5714 __isl_give isl_set
*isl_set_fix_si(__isl_take isl_set
*set
,
5715 enum isl_dim_type type
, unsigned pos
, int value
)
5717 return (struct isl_set
*)
5718 isl_map_fix_si((struct isl_map
*)set
, type
, pos
, value
);
5721 __isl_give isl_map
*isl_map_fix(__isl_take isl_map
*map
,
5722 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5726 map
= isl_map_cow(map
);
5730 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
5731 for (i
= 0; i
< map
->n
; ++i
) {
5732 map
->p
[i
] = isl_basic_map_fix(map
->p
[i
], type
, pos
, value
);
5736 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5743 __isl_give isl_set
*isl_set_fix(__isl_take isl_set
*set
,
5744 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5746 return (struct isl_set
*)isl_map_fix((isl_map
*)set
, type
, pos
, value
);
5749 /* Fix the value of the variable at position "pos" of type "type" of "map"
5750 * to be equal to "v".
5752 __isl_give isl_map
*isl_map_fix_val(__isl_take isl_map
*map
,
5753 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5757 map
= isl_map_cow(map
);
5761 if (!isl_val_is_int(v
))
5762 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
5763 "expecting integer value", goto error
);
5764 if (pos
>= isl_map_dim(map
, type
))
5765 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
5766 "index out of bounds", goto error
);
5767 for (i
= map
->n
- 1; i
>= 0; --i
) {
5768 map
->p
[i
] = isl_basic_map_fix_val(map
->p
[i
], type
, pos
,
5770 if (remove_if_empty(map
, i
) < 0)
5773 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5782 /* Fix the value of the variable at position "pos" of type "type" of "set"
5783 * to be equal to "v".
5785 __isl_give isl_set
*isl_set_fix_val(__isl_take isl_set
*set
,
5786 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5788 return isl_map_fix_val(set
, type
, pos
, v
);
5791 struct isl_map
*isl_map_fix_input_si(struct isl_map
*map
,
5792 unsigned input
, int value
)
5794 return isl_map_fix_si(map
, isl_dim_in
, input
, value
);
5797 struct isl_set
*isl_set_fix_dim_si(struct isl_set
*set
, unsigned dim
, int value
)
5799 return (struct isl_set
*)
5800 isl_map_fix_si((struct isl_map
*)set
, isl_dim_set
, dim
, value
);
5803 static __isl_give isl_basic_map
*basic_map_bound_si(
5804 __isl_take isl_basic_map
*bmap
,
5805 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
5811 isl_assert(bmap
->ctx
, pos
< isl_basic_map_dim(bmap
, type
), goto error
);
5812 pos
+= isl_basic_map_offset(bmap
, type
);
5813 bmap
= isl_basic_map_cow(bmap
);
5814 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
5815 j
= isl_basic_map_alloc_inequality(bmap
);
5818 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
5820 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
5821 isl_int_set_si(bmap
->ineq
[j
][0], value
);
5823 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
5824 isl_int_set_si(bmap
->ineq
[j
][0], -value
);
5826 bmap
= isl_basic_map_simplify(bmap
);
5827 return isl_basic_map_finalize(bmap
);
5829 isl_basic_map_free(bmap
);
5833 __isl_give isl_basic_map
*isl_basic_map_lower_bound_si(
5834 __isl_take isl_basic_map
*bmap
,
5835 enum isl_dim_type type
, unsigned pos
, int value
)
5837 return basic_map_bound_si(bmap
, type
, pos
, value
, 0);
5840 /* Constrain the values of the given dimension to be no greater than "value".
5842 __isl_give isl_basic_map
*isl_basic_map_upper_bound_si(
5843 __isl_take isl_basic_map
*bmap
,
5844 enum isl_dim_type type
, unsigned pos
, int value
)
5846 return basic_map_bound_si(bmap
, type
, pos
, value
, 1);
5849 struct isl_basic_set
*isl_basic_set_lower_bound_dim(struct isl_basic_set
*bset
,
5850 unsigned dim
, isl_int value
)
5854 bset
= isl_basic_set_cow(bset
);
5855 bset
= isl_basic_set_extend_constraints(bset
, 0, 1);
5856 j
= isl_basic_set_alloc_inequality(bset
);
5859 isl_seq_clr(bset
->ineq
[j
], 1 + isl_basic_set_total_dim(bset
));
5860 isl_int_set_si(bset
->ineq
[j
][1 + isl_basic_set_n_param(bset
) + dim
], 1);
5861 isl_int_neg(bset
->ineq
[j
][0], value
);
5862 bset
= isl_basic_set_simplify(bset
);
5863 return isl_basic_set_finalize(bset
);
5865 isl_basic_set_free(bset
);
5869 static __isl_give isl_map
*map_bound_si(__isl_take isl_map
*map
,
5870 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
5874 map
= isl_map_cow(map
);
5878 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
5879 for (i
= 0; i
< map
->n
; ++i
) {
5880 map
->p
[i
] = basic_map_bound_si(map
->p
[i
],
5881 type
, pos
, value
, upper
);
5885 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5892 __isl_give isl_map
*isl_map_lower_bound_si(__isl_take isl_map
*map
,
5893 enum isl_dim_type type
, unsigned pos
, int value
)
5895 return map_bound_si(map
, type
, pos
, value
, 0);
5898 __isl_give isl_map
*isl_map_upper_bound_si(__isl_take isl_map
*map
,
5899 enum isl_dim_type type
, unsigned pos
, int value
)
5901 return map_bound_si(map
, type
, pos
, value
, 1);
5904 __isl_give isl_set
*isl_set_lower_bound_si(__isl_take isl_set
*set
,
5905 enum isl_dim_type type
, unsigned pos
, int value
)
5907 return (struct isl_set
*)
5908 isl_map_lower_bound_si((struct isl_map
*)set
, type
, pos
, value
);
5911 __isl_give isl_set
*isl_set_upper_bound_si(__isl_take isl_set
*set
,
5912 enum isl_dim_type type
, unsigned pos
, int value
)
5914 return isl_map_upper_bound_si(set
, type
, pos
, value
);
5917 /* Bound the given variable of "bmap" from below (or above is "upper"
5918 * is set) to "value".
5920 static __isl_give isl_basic_map
*basic_map_bound(
5921 __isl_take isl_basic_map
*bmap
,
5922 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
5928 if (pos
>= isl_basic_map_dim(bmap
, type
))
5929 isl_die(bmap
->ctx
, isl_error_invalid
,
5930 "index out of bounds", goto error
);
5931 pos
+= isl_basic_map_offset(bmap
, type
);
5932 bmap
= isl_basic_map_cow(bmap
);
5933 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
5934 j
= isl_basic_map_alloc_inequality(bmap
);
5937 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
5939 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
5940 isl_int_set(bmap
->ineq
[j
][0], value
);
5942 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
5943 isl_int_neg(bmap
->ineq
[j
][0], value
);
5945 bmap
= isl_basic_map_simplify(bmap
);
5946 return isl_basic_map_finalize(bmap
);
5948 isl_basic_map_free(bmap
);
5952 /* Bound the given variable of "map" from below (or above is "upper"
5953 * is set) to "value".
5955 static __isl_give isl_map
*map_bound(__isl_take isl_map
*map
,
5956 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
5960 map
= isl_map_cow(map
);
5964 if (pos
>= isl_map_dim(map
, type
))
5965 isl_die(map
->ctx
, isl_error_invalid
,
5966 "index out of bounds", goto error
);
5967 for (i
= map
->n
- 1; i
>= 0; --i
) {
5968 map
->p
[i
] = basic_map_bound(map
->p
[i
], type
, pos
, value
, upper
);
5969 if (remove_if_empty(map
, i
) < 0)
5972 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5979 __isl_give isl_map
*isl_map_lower_bound(__isl_take isl_map
*map
,
5980 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5982 return map_bound(map
, type
, pos
, value
, 0);
5985 __isl_give isl_map
*isl_map_upper_bound(__isl_take isl_map
*map
,
5986 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5988 return map_bound(map
, type
, pos
, value
, 1);
5991 __isl_give isl_set
*isl_set_lower_bound(__isl_take isl_set
*set
,
5992 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5994 return isl_map_lower_bound(set
, type
, pos
, value
);
5997 __isl_give isl_set
*isl_set_upper_bound(__isl_take isl_set
*set
,
5998 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6000 return isl_map_upper_bound(set
, type
, pos
, value
);
6003 /* Force the values of the variable at position "pos" of type "type" of "set"
6004 * to be no smaller than "value".
6006 __isl_give isl_set
*isl_set_lower_bound_val(__isl_take isl_set
*set
,
6007 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
6011 if (!isl_val_is_int(value
))
6012 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
6013 "expecting integer value", goto error
);
6014 set
= isl_set_lower_bound(set
, type
, pos
, value
->n
);
6015 isl_val_free(value
);
6018 isl_val_free(value
);
6023 /* Force the values of the variable at position "pos" of type "type" of "set"
6024 * to be no greater than "value".
6026 __isl_give isl_set
*isl_set_upper_bound_val(__isl_take isl_set
*set
,
6027 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
6031 if (!isl_val_is_int(value
))
6032 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
6033 "expecting integer value", goto error
);
6034 set
= isl_set_upper_bound(set
, type
, pos
, value
->n
);
6035 isl_val_free(value
);
6038 isl_val_free(value
);
6043 struct isl_set
*isl_set_lower_bound_dim(struct isl_set
*set
, unsigned dim
,
6048 set
= isl_set_cow(set
);
6052 isl_assert(set
->ctx
, dim
< isl_set_n_dim(set
), goto error
);
6053 for (i
= 0; i
< set
->n
; ++i
) {
6054 set
->p
[i
] = isl_basic_set_lower_bound_dim(set
->p
[i
], dim
, value
);
6064 struct isl_map
*isl_map_reverse(struct isl_map
*map
)
6068 map
= isl_map_cow(map
);
6072 map
->dim
= isl_space_reverse(map
->dim
);
6075 for (i
= 0; i
< map
->n
; ++i
) {
6076 map
->p
[i
] = isl_basic_map_reverse(map
->p
[i
]);
6080 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6087 static struct isl_map
*isl_basic_map_partial_lexopt(
6088 struct isl_basic_map
*bmap
, struct isl_basic_set
*dom
,
6089 struct isl_set
**empty
, int max
)
6091 return isl_tab_basic_map_partial_lexopt(bmap
, dom
, empty
, max
);
6094 struct isl_map
*isl_basic_map_partial_lexmax(
6095 struct isl_basic_map
*bmap
, struct isl_basic_set
*dom
,
6096 struct isl_set
**empty
)
6098 return isl_basic_map_partial_lexopt(bmap
, dom
, empty
, 1);
6101 struct isl_map
*isl_basic_map_partial_lexmin(
6102 struct isl_basic_map
*bmap
, struct isl_basic_set
*dom
,
6103 struct isl_set
**empty
)
6105 return isl_basic_map_partial_lexopt(bmap
, dom
, empty
, 0);
6108 struct isl_set
*isl_basic_set_partial_lexmin(
6109 struct isl_basic_set
*bset
, struct isl_basic_set
*dom
,
6110 struct isl_set
**empty
)
6112 return (struct isl_set
*)
6113 isl_basic_map_partial_lexmin((struct isl_basic_map
*)bset
,
6117 struct isl_set
*isl_basic_set_partial_lexmax(
6118 struct isl_basic_set
*bset
, struct isl_basic_set
*dom
,
6119 struct isl_set
**empty
)
6121 return (struct isl_set
*)
6122 isl_basic_map_partial_lexmax((struct isl_basic_map
*)bset
,
6126 __isl_give isl_pw_multi_aff
*isl_basic_map_partial_lexmin_pw_multi_aff(
6127 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
6128 __isl_give isl_set
**empty
)
6130 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap
, dom
, empty
, 0);
6133 __isl_give isl_pw_multi_aff
*isl_basic_map_partial_lexmax_pw_multi_aff(
6134 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
6135 __isl_give isl_set
**empty
)
6137 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap
, dom
, empty
, 1);
6140 __isl_give isl_pw_multi_aff
*isl_basic_set_partial_lexmin_pw_multi_aff(
6141 __isl_take isl_basic_set
*bset
, __isl_take isl_basic_set
*dom
,
6142 __isl_give isl_set
**empty
)
6144 return isl_basic_map_partial_lexmin_pw_multi_aff(bset
, dom
, empty
);
6147 __isl_give isl_pw_multi_aff
*isl_basic_set_partial_lexmax_pw_multi_aff(
6148 __isl_take isl_basic_set
*bset
, __isl_take isl_basic_set
*dom
,
6149 __isl_give isl_set
**empty
)
6151 return isl_basic_map_partial_lexmax_pw_multi_aff(bset
, dom
, empty
);
6154 __isl_give isl_pw_multi_aff
*isl_basic_map_lexopt_pw_multi_aff(
6155 __isl_take isl_basic_map
*bmap
, int max
)
6157 isl_basic_set
*dom
= NULL
;
6158 isl_space
*dom_space
;
6162 dom_space
= isl_space_domain(isl_space_copy(bmap
->dim
));
6163 dom
= isl_basic_set_universe(dom_space
);
6164 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap
, dom
, NULL
, max
);
6166 isl_basic_map_free(bmap
);
6170 __isl_give isl_pw_multi_aff
*isl_basic_map_lexmin_pw_multi_aff(
6171 __isl_take isl_basic_map
*bmap
)
6173 return isl_basic_map_lexopt_pw_multi_aff(bmap
, 0);
6177 #define TYPE isl_pw_multi_aff
6179 #define SUFFIX _pw_multi_aff
6181 #define EMPTY isl_pw_multi_aff_empty
6183 #define ADD isl_pw_multi_aff_union_add
6184 #include "isl_map_lexopt_templ.c"
6186 /* Given a map "map", compute the lexicographically minimal
6187 * (or maximal) image element for each domain element in dom,
6188 * in the form of an isl_pw_multi_aff.
6189 * Set *empty to those elements in dom that do not have an image element.
6191 * We first compute the lexicographically minimal or maximal element
6192 * in the first basic map. This results in a partial solution "res"
6193 * and a subset "todo" of dom that still need to be handled.
6194 * We then consider each of the remaining maps in "map" and successively
6195 * update both "res" and "todo".
6197 static __isl_give isl_pw_multi_aff
*isl_map_partial_lexopt_aligned_pw_multi_aff(
6198 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6199 __isl_give isl_set
**empty
, int max
)
6202 isl_pw_multi_aff
*res
;
6208 if (isl_map_plain_is_empty(map
)) {
6213 return isl_pw_multi_aff_from_map(map
);
6216 res
= basic_map_partial_lexopt_pw_multi_aff(
6217 isl_basic_map_copy(map
->p
[0]),
6218 isl_set_copy(dom
), &todo
, max
);
6220 for (i
= 1; i
< map
->n
; ++i
) {
6221 isl_pw_multi_aff
*res_i
;
6224 res_i
= basic_map_partial_lexopt_pw_multi_aff(
6225 isl_basic_map_copy(map
->p
[i
]),
6226 isl_set_copy(dom
), &todo_i
, max
);
6229 res
= isl_pw_multi_aff_union_lexmax(res
, res_i
);
6231 res
= isl_pw_multi_aff_union_lexmin(res
, res_i
);
6233 todo
= isl_set_intersect(todo
, todo_i
);
6254 #define TYPE isl_map
6258 #define EMPTY isl_map_empty
6260 #define ADD isl_map_union_disjoint
6261 #include "isl_map_lexopt_templ.c"
6263 /* Given a map "map", compute the lexicographically minimal
6264 * (or maximal) image element for each domain element in dom.
6265 * Set *empty to those elements in dom that do not have an image element.
6267 * We first compute the lexicographically minimal or maximal element
6268 * in the first basic map. This results in a partial solution "res"
6269 * and a subset "todo" of dom that still need to be handled.
6270 * We then consider each of the remaining maps in "map" and successively
6271 * update both "res" and "todo".
6273 * Let res^k and todo^k be the results after k steps and let i = k + 1.
6274 * Assume we are computing the lexicographical maximum.
6275 * We first compute the lexicographically maximal element in basic map i.
6276 * This results in a partial solution res_i and a subset todo_i.
6277 * Then we combine these results with those obtain for the first k basic maps
6278 * to obtain a result that is valid for the first k+1 basic maps.
6279 * In particular, the set where there is no solution is the set where
6280 * there is no solution for the first k basic maps and also no solution
6281 * for the ith basic map, i.e.,
6283 * todo^i = todo^k * todo_i
6285 * On dom(res^k) * dom(res_i), we need to pick the larger of the two
6286 * solutions, arbitrarily breaking ties in favor of res^k.
6287 * That is, when res^k(a) >= res_i(a), we pick res^k and
6288 * when res^k(a) < res_i(a), we pick res_i. (Here, ">=" and "<" denote
6289 * the lexicographic order.)
6290 * In practice, we compute
6292 * res^k * (res_i . "<=")
6296 * res_i * (res^k . "<")
6298 * Finally, we consider the symmetric difference of dom(res^k) and dom(res_i),
6299 * where only one of res^k and res_i provides a solution and we simply pick
6306 * Note that we only compute these intersections when dom(res^k) intersects
6307 * dom(res_i). Otherwise, the only effect of these intersections is to
6308 * potentially break up res^k and res_i into smaller pieces.
6309 * We want to avoid such splintering as much as possible.
6310 * In fact, an earlier implementation of this function would look for
6311 * better results in the domain of res^k and for extra results in todo^k,
6312 * but this would always result in a splintering according to todo^k,
6313 * even when the domain of basic map i is disjoint from the domains of
6314 * the previous basic maps.
6316 static __isl_give isl_map
*isl_map_partial_lexopt_aligned(
6317 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6318 __isl_give isl_set
**empty
, int max
)
6321 struct isl_map
*res
;
6322 struct isl_set
*todo
;
6327 if (isl_map_plain_is_empty(map
)) {
6335 res
= basic_map_partial_lexopt(isl_basic_map_copy(map
->p
[0]),
6336 isl_set_copy(dom
), &todo
, max
);
6338 for (i
= 1; i
< map
->n
; ++i
) {
6342 isl_space
*dim
= isl_space_range(isl_map_get_space(res
));
6344 res_i
= basic_map_partial_lexopt(isl_basic_map_copy(map
->p
[i
]),
6345 isl_set_copy(dom
), &todo_i
, max
);
6348 lt
= isl_map_lex_lt(isl_space_copy(dim
));
6349 le
= isl_map_lex_le(dim
);
6351 lt
= isl_map_lex_gt(isl_space_copy(dim
));
6352 le
= isl_map_lex_ge(dim
);
6354 lt
= isl_map_apply_range(isl_map_copy(res
), lt
);
6355 lt
= isl_map_intersect(lt
, isl_map_copy(res_i
));
6356 le
= isl_map_apply_range(isl_map_copy(res_i
), le
);
6357 le
= isl_map_intersect(le
, isl_map_copy(res
));
6359 if (!isl_map_is_empty(lt
) || !isl_map_is_empty(le
)) {
6360 res
= isl_map_intersect_domain(res
,
6361 isl_set_copy(todo_i
));
6362 res_i
= isl_map_intersect_domain(res_i
,
6363 isl_set_copy(todo
));
6366 res
= isl_map_union_disjoint(res
, res_i
);
6367 res
= isl_map_union_disjoint(res
, lt
);
6368 res
= isl_map_union_disjoint(res
, le
);
6370 todo
= isl_set_intersect(todo
, todo_i
);
6390 __isl_give isl_map
*isl_map_partial_lexmax(
6391 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6392 __isl_give isl_set
**empty
)
6394 return isl_map_partial_lexopt(map
, dom
, empty
, 1);
6397 __isl_give isl_map
*isl_map_partial_lexmin(
6398 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6399 __isl_give isl_set
**empty
)
6401 return isl_map_partial_lexopt(map
, dom
, empty
, 0);
6404 __isl_give isl_set
*isl_set_partial_lexmin(
6405 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6406 __isl_give isl_set
**empty
)
6408 return (struct isl_set
*)
6409 isl_map_partial_lexmin((struct isl_map
*)set
,
6413 __isl_give isl_set
*isl_set_partial_lexmax(
6414 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6415 __isl_give isl_set
**empty
)
6417 return (struct isl_set
*)
6418 isl_map_partial_lexmax((struct isl_map
*)set
,
6422 /* Compute the lexicographic minimum (or maximum if "max" is set)
6423 * of "bmap" over its domain.
6425 * Since we are not interested in the part of the domain space where
6426 * there is no solution, we initialize the domain to those constraints
6427 * of "bmap" that only involve the parameters and the input dimensions.
6428 * This relieves the parametric programming engine from detecting those
6429 * inequalities and transferring them to the context. More importantly,
6430 * it ensures that those inequalities are transferred first and not
6431 * intermixed with inequalities that actually split the domain.
6433 __isl_give isl_map
*isl_basic_map_lexopt(__isl_take isl_basic_map
*bmap
, int max
)
6437 isl_basic_map
*copy
;
6440 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
6441 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
6442 copy
= isl_basic_map_copy(bmap
);
6443 copy
= isl_basic_map_drop_constraints_involving_dims(copy
,
6444 isl_dim_div
, 0, n_div
);
6445 copy
= isl_basic_map_drop_constraints_involving_dims(copy
,
6446 isl_dim_out
, 0, n_out
);
6447 dom
= isl_basic_map_domain(copy
);
6448 return isl_basic_map_partial_lexopt(bmap
, dom
, NULL
, max
);
6451 __isl_give isl_map
*isl_basic_map_lexmin(__isl_take isl_basic_map
*bmap
)
6453 return isl_basic_map_lexopt(bmap
, 0);
6456 __isl_give isl_map
*isl_basic_map_lexmax(__isl_take isl_basic_map
*bmap
)
6458 return isl_basic_map_lexopt(bmap
, 1);
6461 __isl_give isl_set
*isl_basic_set_lexmin(__isl_take isl_basic_set
*bset
)
6463 return (isl_set
*)isl_basic_map_lexmin((isl_basic_map
*)bset
);
6466 __isl_give isl_set
*isl_basic_set_lexmax(__isl_take isl_basic_set
*bset
)
6468 return (isl_set
*)isl_basic_map_lexmax((isl_basic_map
*)bset
);
6471 /* Extract the first and only affine expression from list
6472 * and then add it to *pwaff with the given dom.
6473 * This domain is known to be disjoint from other domains
6474 * because of the way isl_basic_map_foreach_lexmax works.
6476 static int update_dim_opt(__isl_take isl_basic_set
*dom
,
6477 __isl_take isl_aff_list
*list
, void *user
)
6479 isl_ctx
*ctx
= isl_basic_set_get_ctx(dom
);
6481 isl_pw_aff
**pwaff
= user
;
6482 isl_pw_aff
*pwaff_i
;
6486 if (isl_aff_list_n_aff(list
) != 1)
6487 isl_die(ctx
, isl_error_internal
,
6488 "expecting single element list", goto error
);
6490 aff
= isl_aff_list_get_aff(list
, 0);
6491 pwaff_i
= isl_pw_aff_alloc(isl_set_from_basic_set(dom
), aff
);
6493 *pwaff
= isl_pw_aff_add_disjoint(*pwaff
, pwaff_i
);
6495 isl_aff_list_free(list
);
6499 isl_basic_set_free(dom
);
6500 isl_aff_list_free(list
);
6504 /* Given a basic map with one output dimension, compute the minimum or
6505 * maximum of that dimension as an isl_pw_aff.
6507 * The isl_pw_aff is constructed by having isl_basic_map_foreach_lexopt
6508 * call update_dim_opt on each leaf of the result.
6510 static __isl_give isl_pw_aff
*basic_map_dim_opt(__isl_keep isl_basic_map
*bmap
,
6513 isl_space
*dim
= isl_basic_map_get_space(bmap
);
6517 dim
= isl_space_from_domain(isl_space_domain(dim
));
6518 dim
= isl_space_add_dims(dim
, isl_dim_out
, 1);
6519 pwaff
= isl_pw_aff_empty(dim
);
6521 r
= isl_basic_map_foreach_lexopt(bmap
, max
, &update_dim_opt
, &pwaff
);
6523 return isl_pw_aff_free(pwaff
);
6528 /* Compute the minimum or maximum of the given output dimension
6529 * as a function of the parameters and the input dimensions,
6530 * but independently of the other output dimensions.
6532 * We first project out the other output dimension and then compute
6533 * the "lexicographic" maximum in each basic map, combining the results
6534 * using isl_pw_aff_union_max.
6536 static __isl_give isl_pw_aff
*map_dim_opt(__isl_take isl_map
*map
, int pos
,
6543 n_out
= isl_map_dim(map
, isl_dim_out
);
6544 map
= isl_map_project_out(map
, isl_dim_out
, pos
+ 1, n_out
- (pos
+ 1));
6545 map
= isl_map_project_out(map
, isl_dim_out
, 0, pos
);
6550 isl_space
*dim
= isl_map_get_space(map
);
6552 return isl_pw_aff_empty(dim
);
6555 pwaff
= basic_map_dim_opt(map
->p
[0], max
);
6556 for (i
= 1; i
< map
->n
; ++i
) {
6557 isl_pw_aff
*pwaff_i
;
6559 pwaff_i
= basic_map_dim_opt(map
->p
[i
], max
);
6560 pwaff
= isl_pw_aff_union_opt(pwaff
, pwaff_i
, max
);
6568 /* Compute the maximum of the given output dimension as a function of the
6569 * parameters and input dimensions, but independently of
6570 * the other output dimensions.
6572 __isl_give isl_pw_aff
*isl_map_dim_max(__isl_take isl_map
*map
, int pos
)
6574 return map_dim_opt(map
, pos
, 1);
6577 /* Compute the minimum or maximum of the given set dimension
6578 * as a function of the parameters,
6579 * but independently of the other set dimensions.
6581 static __isl_give isl_pw_aff
*set_dim_opt(__isl_take isl_set
*set
, int pos
,
6584 return map_dim_opt(set
, pos
, max
);
6587 /* Compute the maximum of the given set dimension as a function of the
6588 * parameters, but independently of the other set dimensions.
6590 __isl_give isl_pw_aff
*isl_set_dim_max(__isl_take isl_set
*set
, int pos
)
6592 return set_dim_opt(set
, pos
, 1);
6595 /* Compute the minimum of the given set dimension as a function of the
6596 * parameters, but independently of the other set dimensions.
6598 __isl_give isl_pw_aff
*isl_set_dim_min(__isl_take isl_set
*set
, int pos
)
6600 return set_dim_opt(set
, pos
, 0);
6603 /* Apply a preimage specified by "mat" on the parameters of "bset".
6604 * bset is assumed to have only parameters and divs.
6606 static struct isl_basic_set
*basic_set_parameter_preimage(
6607 struct isl_basic_set
*bset
, struct isl_mat
*mat
)
6614 bset
->dim
= isl_space_cow(bset
->dim
);
6618 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6620 isl_assert(bset
->ctx
, mat
->n_row
== 1 + nparam
, goto error
);
6622 bset
->dim
->nparam
= 0;
6623 bset
->dim
->n_out
= nparam
;
6624 bset
= isl_basic_set_preimage(bset
, mat
);
6626 bset
->dim
->nparam
= bset
->dim
->n_out
;
6627 bset
->dim
->n_out
= 0;
6632 isl_basic_set_free(bset
);
6636 /* Apply a preimage specified by "mat" on the parameters of "set".
6637 * set is assumed to have only parameters and divs.
6639 static struct isl_set
*set_parameter_preimage(
6640 struct isl_set
*set
, struct isl_mat
*mat
)
6642 isl_space
*dim
= NULL
;
6648 dim
= isl_space_copy(set
->dim
);
6649 dim
= isl_space_cow(dim
);
6653 nparam
= isl_set_dim(set
, isl_dim_param
);
6655 isl_assert(set
->ctx
, mat
->n_row
== 1 + nparam
, goto error
);
6658 dim
->n_out
= nparam
;
6659 isl_set_reset_space(set
, dim
);
6660 set
= isl_set_preimage(set
, mat
);
6663 dim
= isl_space_copy(set
->dim
);
6664 dim
= isl_space_cow(dim
);
6667 dim
->nparam
= dim
->n_out
;
6669 isl_set_reset_space(set
, dim
);
6672 isl_space_free(dim
);
6679 /* Intersect the basic set "bset" with the affine space specified by the
6680 * equalities in "eq".
6682 static struct isl_basic_set
*basic_set_append_equalities(
6683 struct isl_basic_set
*bset
, struct isl_mat
*eq
)
6691 bset
= isl_basic_set_extend_space(bset
, isl_space_copy(bset
->dim
), 0,
6696 len
= 1 + isl_space_dim(bset
->dim
, isl_dim_all
) + bset
->extra
;
6697 for (i
= 0; i
< eq
->n_row
; ++i
) {
6698 k
= isl_basic_set_alloc_equality(bset
);
6701 isl_seq_cpy(bset
->eq
[k
], eq
->row
[i
], eq
->n_col
);
6702 isl_seq_clr(bset
->eq
[k
] + eq
->n_col
, len
- eq
->n_col
);
6706 bset
= isl_basic_set_gauss(bset
, NULL
);
6707 bset
= isl_basic_set_finalize(bset
);
6712 isl_basic_set_free(bset
);
6716 /* Intersect the set "set" with the affine space specified by the
6717 * equalities in "eq".
6719 static struct isl_set
*set_append_equalities(struct isl_set
*set
,
6727 for (i
= 0; i
< set
->n
; ++i
) {
6728 set
->p
[i
] = basic_set_append_equalities(set
->p
[i
],
6741 /* Given a basic set "bset" that only involves parameters and existentially
6742 * quantified variables, return the index of the first equality
6743 * that only involves parameters. If there is no such equality then
6744 * return bset->n_eq.
6746 * This function assumes that isl_basic_set_gauss has been called on "bset".
6748 static int first_parameter_equality(__isl_keep isl_basic_set
*bset
)
6751 unsigned nparam
, n_div
;
6756 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6757 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
6759 for (i
= 0, j
= n_div
- 1; i
< bset
->n_eq
&& j
>= 0; --j
) {
6760 if (!isl_int_is_zero(bset
->eq
[i
][1 + nparam
+ j
]))
6767 /* Compute an explicit representation for the existentially quantified
6768 * variables in "bset" by computing the "minimal value" of the set
6769 * variables. Since there are no set variables, the computation of
6770 * the minimal value essentially computes an explicit representation
6771 * of the non-empty part(s) of "bset".
6773 * The input only involves parameters and existentially quantified variables.
6774 * All equalities among parameters have been removed.
6776 * Since the existentially quantified variables in the result are in general
6777 * going to be different from those in the input, we first replace
6778 * them by the minimal number of variables based on their equalities.
6779 * This should simplify the parametric integer programming.
6781 static __isl_give isl_set
*base_compute_divs(__isl_take isl_basic_set
*bset
)
6783 isl_morph
*morph1
, *morph2
;
6789 if (bset
->n_eq
== 0)
6790 return isl_basic_set_lexmin(bset
);
6792 morph1
= isl_basic_set_parameter_compression(bset
);
6793 bset
= isl_morph_basic_set(isl_morph_copy(morph1
), bset
);
6794 bset
= isl_basic_set_lift(bset
);
6795 morph2
= isl_basic_set_variable_compression(bset
, isl_dim_set
);
6796 bset
= isl_morph_basic_set(morph2
, bset
);
6797 n
= isl_basic_set_dim(bset
, isl_dim_set
);
6798 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
6800 set
= isl_basic_set_lexmin(bset
);
6802 set
= isl_morph_set(isl_morph_inverse(morph1
), set
);
6807 /* Project the given basic set onto its parameter domain, possibly introducing
6808 * new, explicit, existential variables in the constraints.
6809 * The input has parameters and (possibly implicit) existential variables.
6810 * The output has the same parameters, but only
6811 * explicit existentially quantified variables.
6813 * The actual projection is performed by pip, but pip doesn't seem
6814 * to like equalities very much, so we first remove the equalities
6815 * among the parameters by performing a variable compression on
6816 * the parameters. Afterward, an inverse transformation is performed
6817 * and the equalities among the parameters are inserted back in.
6819 * The variable compression on the parameters may uncover additional
6820 * equalities that were only implicit before. We therefore check
6821 * if there are any new parameter equalities in the result and
6822 * if so recurse. The removal of parameter equalities is required
6823 * for the parameter compression performed by base_compute_divs.
6825 static struct isl_set
*parameter_compute_divs(struct isl_basic_set
*bset
)
6829 struct isl_mat
*T
, *T2
;
6830 struct isl_set
*set
;
6833 bset
= isl_basic_set_cow(bset
);
6837 if (bset
->n_eq
== 0)
6838 return base_compute_divs(bset
);
6840 bset
= isl_basic_set_gauss(bset
, NULL
);
6843 if (isl_basic_set_plain_is_empty(bset
))
6844 return isl_set_from_basic_set(bset
);
6846 i
= first_parameter_equality(bset
);
6847 if (i
== bset
->n_eq
)
6848 return base_compute_divs(bset
);
6850 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6851 eq
= isl_mat_sub_alloc6(bset
->ctx
, bset
->eq
, i
, bset
->n_eq
- i
,
6853 eq
= isl_mat_cow(eq
);
6854 T
= isl_mat_variable_compression(isl_mat_copy(eq
), &T2
);
6855 if (T
&& T
->n_col
== 0) {
6859 bset
= isl_basic_set_set_to_empty(bset
);
6860 return isl_set_from_basic_set(bset
);
6862 bset
= basic_set_parameter_preimage(bset
, T
);
6864 i
= first_parameter_equality(bset
);
6867 else if (i
== bset
->n_eq
)
6868 set
= base_compute_divs(bset
);
6870 set
= parameter_compute_divs(bset
);
6871 set
= set_parameter_preimage(set
, T2
);
6872 set
= set_append_equalities(set
, eq
);
6876 /* Insert the divs from "ls" before those of "bmap".
6878 * The number of columns is not changed, which means that the last
6879 * dimensions of "bmap" are being reintepreted as the divs from "ls".
6880 * The caller is responsible for removing the same number of dimensions
6881 * from the space of "bmap".
6883 static __isl_give isl_basic_map
*insert_divs_from_local_space(
6884 __isl_take isl_basic_map
*bmap
, __isl_keep isl_local_space
*ls
)
6890 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
6894 old_n_div
= bmap
->n_div
;
6895 bmap
= insert_div_rows(bmap
, n_div
);
6899 for (i
= 0; i
< n_div
; ++i
) {
6900 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], ls
->div
->n_col
);
6901 isl_seq_clr(bmap
->div
[i
] + ls
->div
->n_col
, old_n_div
);
6907 /* Replace the space of "bmap" by the space and divs of "ls".
6909 * If "ls" has any divs, then we simplify the result since we may
6910 * have discovered some additional equalities that could simplify
6911 * the div expressions.
6913 static __isl_give isl_basic_map
*basic_replace_space_by_local_space(
6914 __isl_take isl_basic_map
*bmap
, __isl_take isl_local_space
*ls
)
6918 bmap
= isl_basic_map_cow(bmap
);
6922 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
6923 bmap
= insert_divs_from_local_space(bmap
, ls
);
6927 isl_space_free(bmap
->dim
);
6928 bmap
->dim
= isl_local_space_get_space(ls
);
6932 isl_local_space_free(ls
);
6934 bmap
= isl_basic_map_simplify(bmap
);
6935 bmap
= isl_basic_map_finalize(bmap
);
6938 isl_basic_map_free(bmap
);
6939 isl_local_space_free(ls
);
6943 /* Replace the space of "map" by the space and divs of "ls".
6945 static __isl_give isl_map
*replace_space_by_local_space(__isl_take isl_map
*map
,
6946 __isl_take isl_local_space
*ls
)
6950 map
= isl_map_cow(map
);
6954 for (i
= 0; i
< map
->n
; ++i
) {
6955 map
->p
[i
] = basic_replace_space_by_local_space(map
->p
[i
],
6956 isl_local_space_copy(ls
));
6960 isl_space_free(map
->dim
);
6961 map
->dim
= isl_local_space_get_space(ls
);
6965 isl_local_space_free(ls
);
6968 isl_local_space_free(ls
);
6973 /* Compute an explicit representation for the existentially
6974 * quantified variables for which do not know any explicit representation yet.
6976 * We first sort the existentially quantified variables so that the
6977 * existentially quantified variables for which we already have an explicit
6978 * representation are placed before those for which we do not.
6979 * The input dimensions, the output dimensions and the existentially
6980 * quantified variables for which we already have an explicit
6981 * representation are then turned into parameters.
6982 * compute_divs returns a map with the same parameters and
6983 * no input or output dimensions and the dimension specification
6984 * is reset to that of the input, including the existentially quantified
6985 * variables for which we already had an explicit representation.
6987 static struct isl_map
*compute_divs(struct isl_basic_map
*bmap
)
6989 struct isl_basic_set
*bset
;
6990 struct isl_set
*set
;
6991 struct isl_map
*map
;
6993 isl_local_space
*ls
;
7000 bmap
= isl_basic_map_sort_divs(bmap
);
7001 bmap
= isl_basic_map_cow(bmap
);
7005 for (n_known
= 0; n_known
< bmap
->n_div
; ++n_known
)
7006 if (isl_int_is_zero(bmap
->div
[n_known
][0]))
7009 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
7010 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
7011 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
7012 dim
= isl_space_set_alloc(bmap
->ctx
,
7013 nparam
+ n_in
+ n_out
+ n_known
, 0);
7017 ls
= isl_basic_map_get_local_space(bmap
);
7018 ls
= isl_local_space_drop_dims(ls
, isl_dim_div
,
7019 n_known
, bmap
->n_div
- n_known
);
7021 for (i
= n_known
; i
< bmap
->n_div
; ++i
)
7022 swap_div(bmap
, i
- n_known
, i
);
7023 bmap
->n_div
-= n_known
;
7024 bmap
->extra
-= n_known
;
7026 bmap
= isl_basic_map_reset_space(bmap
, dim
);
7027 bset
= (struct isl_basic_set
*)bmap
;
7029 set
= parameter_compute_divs(bset
);
7030 map
= (struct isl_map
*)set
;
7031 map
= replace_space_by_local_space(map
, ls
);
7035 isl_basic_map_free(bmap
);
7039 int isl_basic_map_divs_known(__isl_keep isl_basic_map
*bmap
)
7047 off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
7048 for (i
= 0; i
< bmap
->n_div
; ++i
) {
7049 if (isl_int_is_zero(bmap
->div
[i
][0]))
7051 isl_assert(bmap
->ctx
, isl_int_is_zero(bmap
->div
[i
][1+1+off
+i
]),
7057 static int map_divs_known(__isl_keep isl_map
*map
)
7064 for (i
= 0; i
< map
->n
; ++i
) {
7065 int known
= isl_basic_map_divs_known(map
->p
[i
]);
7073 /* If bmap contains any unknown divs, then compute explicit
7074 * expressions for them. However, this computation may be
7075 * quite expensive, so first try to remove divs that aren't
7078 struct isl_map
*isl_basic_map_compute_divs(struct isl_basic_map
*bmap
)
7081 struct isl_map
*map
;
7083 known
= isl_basic_map_divs_known(bmap
);
7087 return isl_map_from_basic_map(bmap
);
7089 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
7091 known
= isl_basic_map_divs_known(bmap
);
7095 return isl_map_from_basic_map(bmap
);
7097 map
= compute_divs(bmap
);
7100 isl_basic_map_free(bmap
);
7104 struct isl_map
*isl_map_compute_divs(struct isl_map
*map
)
7108 struct isl_map
*res
;
7115 known
= map_divs_known(map
);
7123 res
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[0]));
7124 for (i
= 1 ; i
< map
->n
; ++i
) {
7126 r2
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[i
]));
7127 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
))
7128 res
= isl_map_union_disjoint(res
, r2
);
7130 res
= isl_map_union(res
, r2
);
7137 struct isl_set
*isl_basic_set_compute_divs(struct isl_basic_set
*bset
)
7139 return (struct isl_set
*)
7140 isl_basic_map_compute_divs((struct isl_basic_map
*)bset
);
7143 struct isl_set
*isl_set_compute_divs(struct isl_set
*set
)
7145 return (struct isl_set
*)
7146 isl_map_compute_divs((struct isl_map
*)set
);
7149 struct isl_set
*isl_map_domain(struct isl_map
*map
)
7152 struct isl_set
*set
;
7157 map
= isl_map_cow(map
);
7161 set
= (struct isl_set
*)map
;
7162 set
->dim
= isl_space_domain(set
->dim
);
7165 for (i
= 0; i
< map
->n
; ++i
) {
7166 set
->p
[i
] = isl_basic_map_domain(map
->p
[i
]);
7170 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
7171 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
7178 /* Return the union of "map1" and "map2", where we assume for now that
7179 * "map1" and "map2" are disjoint. Note that the basic maps inside
7180 * "map1" or "map2" may not be disjoint from each other.
7181 * Also note that this function is also called from isl_map_union,
7182 * which takes care of handling the situation where "map1" and "map2"
7183 * may not be disjoint.
7185 * If one of the inputs is empty, we can simply return the other input.
7186 * Similarly, if one of the inputs is universal, then it is equal to the union.
7188 static __isl_give isl_map
*map_union_disjoint(__isl_take isl_map
*map1
,
7189 __isl_take isl_map
*map2
)
7193 struct isl_map
*map
= NULL
;
7199 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
7200 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
7201 "spaces don't match", goto error
);
7212 is_universe
= isl_map_plain_is_universe(map1
);
7213 if (is_universe
< 0)
7220 is_universe
= isl_map_plain_is_universe(map2
);
7221 if (is_universe
< 0)
7228 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
7229 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
7230 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7232 map
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
7233 map1
->n
+ map2
->n
, flags
);
7236 for (i
= 0; i
< map1
->n
; ++i
) {
7237 map
= isl_map_add_basic_map(map
,
7238 isl_basic_map_copy(map1
->p
[i
]));
7242 for (i
= 0; i
< map2
->n
; ++i
) {
7243 map
= isl_map_add_basic_map(map
,
7244 isl_basic_map_copy(map2
->p
[i
]));
7258 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7259 * guaranteed to be disjoint by the caller.
7261 * Note that this functions is called from within isl_map_make_disjoint,
7262 * so we have to be careful not to touch the constraints of the inputs
7265 __isl_give isl_map
*isl_map_union_disjoint(__isl_take isl_map
*map1
,
7266 __isl_take isl_map
*map2
)
7268 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_disjoint
);
7271 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7272 * not be disjoint. The parameters are assumed to have been aligned.
7274 * We currently simply call map_union_disjoint, the internal operation
7275 * of which does not really depend on the inputs being disjoint.
7276 * If the result contains more than one basic map, then we clear
7277 * the disjoint flag since the result may contain basic maps from
7278 * both inputs and these are not guaranteed to be disjoint.
7280 * As a special case, if "map1" and "map2" are obviously equal,
7281 * then we simply return "map1".
7283 static __isl_give isl_map
*map_union_aligned(__isl_take isl_map
*map1
,
7284 __isl_take isl_map
*map2
)
7291 equal
= isl_map_plain_is_equal(map1
, map2
);
7299 map1
= map_union_disjoint(map1
, map2
);
7303 ISL_F_CLR(map1
, ISL_MAP_DISJOINT
);
7311 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7314 __isl_give isl_map
*isl_map_union(__isl_take isl_map
*map1
,
7315 __isl_take isl_map
*map2
)
7317 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_aligned
);
7320 struct isl_set
*isl_set_union_disjoint(
7321 struct isl_set
*set1
, struct isl_set
*set2
)
7323 return (struct isl_set
*)
7324 isl_map_union_disjoint(
7325 (struct isl_map
*)set1
, (struct isl_map
*)set2
);
7328 struct isl_set
*isl_set_union(struct isl_set
*set1
, struct isl_set
*set2
)
7330 return (struct isl_set
*)
7331 isl_map_union((struct isl_map
*)set1
, (struct isl_map
*)set2
);
7334 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7337 * "map" and "set" are assumed to be compatible and non-NULL.
7339 static __isl_give isl_map
*map_intersect_set(__isl_take isl_map
*map
,
7340 __isl_take isl_set
*set
,
7341 __isl_give isl_basic_map
*fn(__isl_take isl_basic_map
*bmap
,
7342 __isl_take isl_basic_set
*bset
))
7345 struct isl_map
*result
;
7348 if (isl_set_plain_is_universe(set
)) {
7353 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
) &&
7354 ISL_F_ISSET(set
, ISL_MAP_DISJOINT
))
7355 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7357 result
= isl_map_alloc_space(isl_space_copy(map
->dim
),
7358 map
->n
* set
->n
, flags
);
7359 for (i
= 0; result
&& i
< map
->n
; ++i
)
7360 for (j
= 0; j
< set
->n
; ++j
) {
7361 result
= isl_map_add_basic_map(result
,
7362 fn(isl_basic_map_copy(map
->p
[i
]),
7363 isl_basic_set_copy(set
->p
[j
])));
7373 static __isl_give isl_map
*map_intersect_range(__isl_take isl_map
*map
,
7374 __isl_take isl_set
*set
)
7379 if (!isl_map_compatible_range(map
, set
))
7380 isl_die(set
->ctx
, isl_error_invalid
,
7381 "incompatible spaces", goto error
);
7383 return map_intersect_set(map
, set
, &isl_basic_map_intersect_range
);
7390 __isl_give isl_map
*isl_map_intersect_range(__isl_take isl_map
*map
,
7391 __isl_take isl_set
*set
)
7393 return isl_map_align_params_map_map_and(map
, set
, &map_intersect_range
);
7396 static __isl_give isl_map
*map_intersect_domain(__isl_take isl_map
*map
,
7397 __isl_take isl_set
*set
)
7402 if (!isl_map_compatible_domain(map
, set
))
7403 isl_die(set
->ctx
, isl_error_invalid
,
7404 "incompatible spaces", goto error
);
7406 return map_intersect_set(map
, set
, &isl_basic_map_intersect_domain
);
7413 __isl_give isl_map
*isl_map_intersect_domain(__isl_take isl_map
*map
,
7414 __isl_take isl_set
*set
)
7416 return isl_map_align_params_map_map_and(map
, set
,
7417 &map_intersect_domain
);
7420 static __isl_give isl_map
*map_apply_domain(__isl_take isl_map
*map1
,
7421 __isl_take isl_map
*map2
)
7425 map1
= isl_map_reverse(map1
);
7426 map1
= isl_map_apply_range(map1
, map2
);
7427 return isl_map_reverse(map1
);
7434 __isl_give isl_map
*isl_map_apply_domain(__isl_take isl_map
*map1
,
7435 __isl_take isl_map
*map2
)
7437 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_domain
);
7440 static __isl_give isl_map
*map_apply_range(__isl_take isl_map
*map1
,
7441 __isl_take isl_map
*map2
)
7443 isl_space
*dim_result
;
7444 struct isl_map
*result
;
7450 dim_result
= isl_space_join(isl_space_copy(map1
->dim
),
7451 isl_space_copy(map2
->dim
));
7453 result
= isl_map_alloc_space(dim_result
, map1
->n
* map2
->n
, 0);
7456 for (i
= 0; i
< map1
->n
; ++i
)
7457 for (j
= 0; j
< map2
->n
; ++j
) {
7458 result
= isl_map_add_basic_map(result
,
7459 isl_basic_map_apply_range(
7460 isl_basic_map_copy(map1
->p
[i
]),
7461 isl_basic_map_copy(map2
->p
[j
])));
7467 if (result
&& result
->n
<= 1)
7468 ISL_F_SET(result
, ISL_MAP_DISJOINT
);
7476 __isl_give isl_map
*isl_map_apply_range(__isl_take isl_map
*map1
,
7477 __isl_take isl_map
*map2
)
7479 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_range
);
7483 * returns range - domain
7485 struct isl_basic_set
*isl_basic_map_deltas(struct isl_basic_map
*bmap
)
7487 isl_space
*dims
, *target_dim
;
7488 struct isl_basic_set
*bset
;
7495 isl_assert(bmap
->ctx
, isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
7496 bmap
->dim
, isl_dim_out
),
7498 target_dim
= isl_space_domain(isl_basic_map_get_space(bmap
));
7499 dim
= isl_basic_map_n_in(bmap
);
7500 nparam
= isl_basic_map_n_param(bmap
);
7501 bset
= isl_basic_set_from_basic_map(bmap
);
7502 bset
= isl_basic_set_cow(bset
);
7503 dims
= isl_basic_set_get_space(bset
);
7504 dims
= isl_space_add_dims(dims
, isl_dim_set
, dim
);
7505 bset
= isl_basic_set_extend_space(bset
, dims
, 0, dim
, 0);
7506 bset
= isl_basic_set_swap_vars(bset
, 2*dim
);
7507 for (i
= 0; i
< dim
; ++i
) {
7508 int j
= isl_basic_map_alloc_equality(
7509 (struct isl_basic_map
*)bset
);
7511 bset
= isl_basic_set_free(bset
);
7514 isl_seq_clr(bset
->eq
[j
], 1 + isl_basic_set_total_dim(bset
));
7515 isl_int_set_si(bset
->eq
[j
][1+nparam
+i
], 1);
7516 isl_int_set_si(bset
->eq
[j
][1+nparam
+dim
+i
], 1);
7517 isl_int_set_si(bset
->eq
[j
][1+nparam
+2*dim
+i
], -1);
7519 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, dim
, 2*dim
);
7520 bset
= isl_basic_set_reset_space(bset
, target_dim
);
7523 isl_basic_map_free(bmap
);
7528 * returns range - domain
7530 __isl_give isl_set
*isl_map_deltas(__isl_take isl_map
*map
)
7534 struct isl_set
*result
;
7539 isl_assert(map
->ctx
, isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
7540 map
->dim
, isl_dim_out
),
7542 dim
= isl_map_get_space(map
);
7543 dim
= isl_space_domain(dim
);
7544 result
= isl_set_alloc_space(dim
, map
->n
, 0);
7547 for (i
= 0; i
< map
->n
; ++i
)
7548 result
= isl_set_add_basic_set(result
,
7549 isl_basic_map_deltas(isl_basic_map_copy(map
->p
[i
])));
7558 * returns [domain -> range] -> range - domain
7560 __isl_give isl_basic_map
*isl_basic_map_deltas_map(
7561 __isl_take isl_basic_map
*bmap
)
7565 isl_basic_map
*domain
;
7569 if (!isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
7570 bmap
->dim
, isl_dim_out
))
7571 isl_die(bmap
->ctx
, isl_error_invalid
,
7572 "domain and range don't match", goto error
);
7574 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
7575 n
= isl_basic_map_dim(bmap
, isl_dim_in
);
7577 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
7578 domain
= isl_basic_map_universe(dim
);
7580 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
7581 bmap
= isl_basic_map_apply_range(bmap
, domain
);
7582 bmap
= isl_basic_map_extend_constraints(bmap
, n
, 0);
7584 total
= isl_basic_map_total_dim(bmap
);
7586 for (i
= 0; i
< n
; ++i
) {
7587 k
= isl_basic_map_alloc_equality(bmap
);
7590 isl_seq_clr(bmap
->eq
[k
], 1 + total
);
7591 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ i
], 1);
7592 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ i
], -1);
7593 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ n
+ i
], 1);
7596 bmap
= isl_basic_map_gauss(bmap
, NULL
);
7597 return isl_basic_map_finalize(bmap
);
7599 isl_basic_map_free(bmap
);
7604 * returns [domain -> range] -> range - domain
7606 __isl_give isl_map
*isl_map_deltas_map(__isl_take isl_map
*map
)
7609 isl_space
*domain_dim
;
7614 if (!isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
7615 map
->dim
, isl_dim_out
))
7616 isl_die(map
->ctx
, isl_error_invalid
,
7617 "domain and range don't match", goto error
);
7619 map
= isl_map_cow(map
);
7623 domain_dim
= isl_space_from_range(isl_space_domain(isl_map_get_space(map
)));
7624 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
7625 map
->dim
= isl_space_join(map
->dim
, domain_dim
);
7628 for (i
= 0; i
< map
->n
; ++i
) {
7629 map
->p
[i
] = isl_basic_map_deltas_map(map
->p
[i
]);
7633 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
7640 static __isl_give isl_basic_map
*basic_map_identity(__isl_take isl_space
*dims
)
7642 struct isl_basic_map
*bmap
;
7650 nparam
= dims
->nparam
;
7652 bmap
= isl_basic_map_alloc_space(dims
, 0, dim
, 0);
7656 for (i
= 0; i
< dim
; ++i
) {
7657 int j
= isl_basic_map_alloc_equality(bmap
);
7660 isl_seq_clr(bmap
->eq
[j
], 1 + isl_basic_map_total_dim(bmap
));
7661 isl_int_set_si(bmap
->eq
[j
][1+nparam
+i
], 1);
7662 isl_int_set_si(bmap
->eq
[j
][1+nparam
+dim
+i
], -1);
7664 return isl_basic_map_finalize(bmap
);
7666 isl_basic_map_free(bmap
);
7670 __isl_give isl_basic_map
*isl_basic_map_identity(__isl_take isl_space
*dim
)
7674 if (dim
->n_in
!= dim
->n_out
)
7675 isl_die(dim
->ctx
, isl_error_invalid
,
7676 "number of input and output dimensions needs to be "
7677 "the same", goto error
);
7678 return basic_map_identity(dim
);
7680 isl_space_free(dim
);
7684 struct isl_basic_map
*isl_basic_map_identity_like(struct isl_basic_map
*model
)
7686 if (!model
|| !model
->dim
)
7688 return isl_basic_map_identity(isl_space_copy(model
->dim
));
7691 __isl_give isl_map
*isl_map_identity(__isl_take isl_space
*dim
)
7693 return isl_map_from_basic_map(isl_basic_map_identity(dim
));
7696 struct isl_map
*isl_map_identity_like(struct isl_map
*model
)
7698 if (!model
|| !model
->dim
)
7700 return isl_map_identity(isl_space_copy(model
->dim
));
7703 struct isl_map
*isl_map_identity_like_basic_map(struct isl_basic_map
*model
)
7705 if (!model
|| !model
->dim
)
7707 return isl_map_identity(isl_space_copy(model
->dim
));
7710 __isl_give isl_map
*isl_set_identity(__isl_take isl_set
*set
)
7712 isl_space
*dim
= isl_set_get_space(set
);
7714 id
= isl_map_identity(isl_space_map_from_set(dim
));
7715 return isl_map_intersect_range(id
, set
);
7718 /* Construct a basic set with all set dimensions having only non-negative
7721 __isl_give isl_basic_set
*isl_basic_set_positive_orthant(
7722 __isl_take isl_space
*space
)
7727 struct isl_basic_set
*bset
;
7731 nparam
= space
->nparam
;
7733 bset
= isl_basic_set_alloc_space(space
, 0, 0, dim
);
7736 for (i
= 0; i
< dim
; ++i
) {
7737 int k
= isl_basic_set_alloc_inequality(bset
);
7740 isl_seq_clr(bset
->ineq
[k
], 1 + isl_basic_set_total_dim(bset
));
7741 isl_int_set_si(bset
->ineq
[k
][1 + nparam
+ i
], 1);
7745 isl_basic_set_free(bset
);
7749 /* Construct the half-space x_pos >= 0.
7751 static __isl_give isl_basic_set
*nonneg_halfspace(__isl_take isl_space
*dim
,
7755 isl_basic_set
*nonneg
;
7757 nonneg
= isl_basic_set_alloc_space(dim
, 0, 0, 1);
7758 k
= isl_basic_set_alloc_inequality(nonneg
);
7761 isl_seq_clr(nonneg
->ineq
[k
], 1 + isl_basic_set_total_dim(nonneg
));
7762 isl_int_set_si(nonneg
->ineq
[k
][pos
], 1);
7764 return isl_basic_set_finalize(nonneg
);
7766 isl_basic_set_free(nonneg
);
7770 /* Construct the half-space x_pos <= -1.
7772 static __isl_give isl_basic_set
*neg_halfspace(__isl_take isl_space
*dim
, int pos
)
7777 neg
= isl_basic_set_alloc_space(dim
, 0, 0, 1);
7778 k
= isl_basic_set_alloc_inequality(neg
);
7781 isl_seq_clr(neg
->ineq
[k
], 1 + isl_basic_set_total_dim(neg
));
7782 isl_int_set_si(neg
->ineq
[k
][0], -1);
7783 isl_int_set_si(neg
->ineq
[k
][pos
], -1);
7785 return isl_basic_set_finalize(neg
);
7787 isl_basic_set_free(neg
);
7791 __isl_give isl_set
*isl_set_split_dims(__isl_take isl_set
*set
,
7792 enum isl_dim_type type
, unsigned first
, unsigned n
)
7796 isl_basic_set
*nonneg
;
7804 isl_assert(set
->ctx
, first
+ n
<= isl_set_dim(set
, type
), goto error
);
7806 offset
= pos(set
->dim
, type
);
7807 for (i
= 0; i
< n
; ++i
) {
7808 nonneg
= nonneg_halfspace(isl_set_get_space(set
),
7809 offset
+ first
+ i
);
7810 neg
= neg_halfspace(isl_set_get_space(set
), offset
+ first
+ i
);
7812 set
= isl_set_intersect(set
, isl_basic_set_union(nonneg
, neg
));
7821 static int foreach_orthant(__isl_take isl_set
*set
, int *signs
, int first
,
7822 int len
, int (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
7829 if (isl_set_plain_is_empty(set
)) {
7834 return fn(set
, signs
, user
);
7837 half
= isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set
),
7839 half
= isl_set_intersect(half
, isl_set_copy(set
));
7840 if (foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
) < 0)
7844 half
= isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set
),
7846 half
= isl_set_intersect(half
, set
);
7847 return foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
);
7853 /* Call "fn" on the intersections of "set" with each of the orthants
7854 * (except for obviously empty intersections). The orthant is identified
7855 * by the signs array, with each entry having value 1 or -1 according
7856 * to the sign of the corresponding variable.
7858 int isl_set_foreach_orthant(__isl_keep isl_set
*set
,
7859 int (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
7869 if (isl_set_plain_is_empty(set
))
7872 nparam
= isl_set_dim(set
, isl_dim_param
);
7873 nvar
= isl_set_dim(set
, isl_dim_set
);
7875 signs
= isl_alloc_array(set
->ctx
, int, nparam
+ nvar
);
7877 r
= foreach_orthant(isl_set_copy(set
), signs
, 0, nparam
+ nvar
,
7885 int isl_set_is_equal(struct isl_set
*set1
, struct isl_set
*set2
)
7887 return isl_map_is_equal((struct isl_map
*)set1
, (struct isl_map
*)set2
);
7890 int isl_basic_map_is_subset(
7891 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
7894 struct isl_map
*map1
;
7895 struct isl_map
*map2
;
7897 if (!bmap1
|| !bmap2
)
7900 map1
= isl_map_from_basic_map(isl_basic_map_copy(bmap1
));
7901 map2
= isl_map_from_basic_map(isl_basic_map_copy(bmap2
));
7903 is_subset
= isl_map_is_subset(map1
, map2
);
7911 int isl_basic_set_is_subset(__isl_keep isl_basic_set
*bset1
,
7912 __isl_keep isl_basic_set
*bset2
)
7914 return isl_basic_map_is_subset(bset1
, bset2
);
7917 int isl_basic_map_is_equal(
7918 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
7922 if (!bmap1
|| !bmap2
)
7924 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
7927 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
7931 int isl_basic_set_is_equal(
7932 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
7934 return isl_basic_map_is_equal(
7935 (struct isl_basic_map
*)bset1
, (struct isl_basic_map
*)bset2
);
7938 int isl_map_is_empty(struct isl_map
*map
)
7945 for (i
= 0; i
< map
->n
; ++i
) {
7946 is_empty
= isl_basic_map_is_empty(map
->p
[i
]);
7955 int isl_map_plain_is_empty(__isl_keep isl_map
*map
)
7957 return map
? map
->n
== 0 : -1;
7960 int isl_set_plain_is_empty(struct isl_set
*set
)
7962 return set
? set
->n
== 0 : -1;
7965 int isl_set_is_empty(struct isl_set
*set
)
7967 return isl_map_is_empty((struct isl_map
*)set
);
7970 int isl_map_has_equal_space(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
7975 return isl_space_is_equal(map1
->dim
, map2
->dim
);
7978 int isl_set_has_equal_space(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
7983 return isl_space_is_equal(set1
->dim
, set2
->dim
);
7986 static int map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
7992 is_subset
= isl_map_is_subset(map1
, map2
);
7995 is_subset
= isl_map_is_subset(map2
, map1
);
7999 int isl_map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
8001 return isl_map_align_params_map_map_and_test(map1
, map2
, &map_is_equal
);
8004 int isl_basic_map_is_strict_subset(
8005 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
8009 if (!bmap1
|| !bmap2
)
8011 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
8014 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
8015 if (is_subset
== -1)
8020 int isl_map_is_strict_subset(struct isl_map
*map1
, struct isl_map
*map2
)
8026 is_subset
= isl_map_is_subset(map1
, map2
);
8029 is_subset
= isl_map_is_subset(map2
, map1
);
8030 if (is_subset
== -1)
8035 int isl_set_is_strict_subset(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
8037 return isl_map_is_strict_subset((isl_map
*)set1
, (isl_map
*)set2
);
8040 int isl_basic_map_is_universe(struct isl_basic_map
*bmap
)
8044 return bmap
->n_eq
== 0 && bmap
->n_ineq
== 0;
8047 int isl_basic_set_is_universe(struct isl_basic_set
*bset
)
8051 return bset
->n_eq
== 0 && bset
->n_ineq
== 0;
8054 int isl_map_plain_is_universe(__isl_keep isl_map
*map
)
8061 for (i
= 0; i
< map
->n
; ++i
) {
8062 int r
= isl_basic_map_is_universe(map
->p
[i
]);
8070 int isl_set_plain_is_universe(__isl_keep isl_set
*set
)
8072 return isl_map_plain_is_universe((isl_map
*) set
);
8075 int isl_basic_map_is_empty(struct isl_basic_map
*bmap
)
8077 struct isl_basic_set
*bset
= NULL
;
8078 struct isl_vec
*sample
= NULL
;
8085 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
8088 if (isl_basic_map_is_universe(bmap
))
8091 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
)) {
8092 struct isl_basic_map
*copy
= isl_basic_map_copy(bmap
);
8093 copy
= isl_basic_map_remove_redundancies(copy
);
8094 empty
= isl_basic_map_plain_is_empty(copy
);
8095 isl_basic_map_free(copy
);
8099 total
= 1 + isl_basic_map_total_dim(bmap
);
8100 if (bmap
->sample
&& bmap
->sample
->size
== total
) {
8101 int contains
= isl_basic_map_contains(bmap
, bmap
->sample
);
8107 isl_vec_free(bmap
->sample
);
8108 bmap
->sample
= NULL
;
8109 bset
= isl_basic_map_underlying_set(isl_basic_map_copy(bmap
));
8112 sample
= isl_basic_set_sample_vec(bset
);
8115 empty
= sample
->size
== 0;
8116 isl_vec_free(bmap
->sample
);
8117 bmap
->sample
= sample
;
8119 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
8124 int isl_basic_map_plain_is_empty(__isl_keep isl_basic_map
*bmap
)
8128 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
);
8131 int isl_basic_set_plain_is_empty(__isl_keep isl_basic_set
*bset
)
8135 return ISL_F_ISSET(bset
, ISL_BASIC_SET_EMPTY
);
8138 int isl_basic_set_is_empty(struct isl_basic_set
*bset
)
8140 return isl_basic_map_is_empty((struct isl_basic_map
*)bset
);
8143 struct isl_map
*isl_basic_map_union(
8144 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
8146 struct isl_map
*map
;
8147 if (!bmap1
|| !bmap2
)
8150 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
8152 map
= isl_map_alloc_space(isl_space_copy(bmap1
->dim
), 2, 0);
8155 map
= isl_map_add_basic_map(map
, bmap1
);
8156 map
= isl_map_add_basic_map(map
, bmap2
);
8159 isl_basic_map_free(bmap1
);
8160 isl_basic_map_free(bmap2
);
8164 struct isl_set
*isl_basic_set_union(
8165 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
8167 return (struct isl_set
*)isl_basic_map_union(
8168 (struct isl_basic_map
*)bset1
,
8169 (struct isl_basic_map
*)bset2
);
8172 /* Order divs such that any div only depends on previous divs */
8173 struct isl_basic_map
*isl_basic_map_order_divs(struct isl_basic_map
*bmap
)
8181 off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
8183 for (i
= 0; i
< bmap
->n_div
; ++i
) {
8185 if (isl_int_is_zero(bmap
->div
[i
][0]))
8187 pos
= isl_seq_first_non_zero(bmap
->div
[i
]+1+1+off
+i
,
8191 isl_basic_map_swap_div(bmap
, i
, i
+ pos
);
8197 struct isl_basic_set
*isl_basic_set_order_divs(struct isl_basic_set
*bset
)
8199 return (struct isl_basic_set
*)
8200 isl_basic_map_order_divs((struct isl_basic_map
*)bset
);
8203 __isl_give isl_map
*isl_map_order_divs(__isl_take isl_map
*map
)
8210 for (i
= 0; i
< map
->n
; ++i
) {
8211 map
->p
[i
] = isl_basic_map_order_divs(map
->p
[i
]);
8222 /* Apply the expansion computed by isl_merge_divs.
8223 * The expansion itself is given by "exp" while the resulting
8224 * list of divs is given by "div".
8226 __isl_give isl_basic_set
*isl_basic_set_expand_divs(
8227 __isl_take isl_basic_set
*bset
, __isl_take isl_mat
*div
, int *exp
)
8232 bset
= isl_basic_set_cow(bset
);
8236 if (div
->n_row
< bset
->n_div
)
8237 isl_die(isl_mat_get_ctx(div
), isl_error_invalid
,
8238 "not an expansion", goto error
);
8240 n_div
= bset
->n_div
;
8241 bset
= isl_basic_map_extend_space(bset
, isl_space_copy(bset
->dim
),
8242 div
->n_row
- n_div
, 0,
8243 2 * (div
->n_row
- n_div
));
8245 for (i
= n_div
; i
< div
->n_row
; ++i
)
8246 if (isl_basic_set_alloc_div(bset
) < 0)
8250 for (i
= div
->n_row
- 1; i
>= 0; --i
) {
8251 if (j
>= 0 && exp
[j
] == i
) {
8253 isl_basic_map_swap_div(bset
, i
, j
);
8256 isl_seq_cpy(bset
->div
[i
], div
->row
[i
], div
->n_col
);
8257 if (isl_basic_map_add_div_constraints(bset
, i
) < 0)
8265 isl_basic_set_free(bset
);
8270 /* Look for a div in dst that corresponds to the div "div" in src.
8271 * The divs before "div" in src and dst are assumed to be the same.
8273 * Returns -1 if no corresponding div was found and the position
8274 * of the corresponding div in dst otherwise.
8276 static int find_div(struct isl_basic_map
*dst
,
8277 struct isl_basic_map
*src
, unsigned div
)
8281 unsigned total
= isl_space_dim(src
->dim
, isl_dim_all
);
8283 isl_assert(dst
->ctx
, div
<= dst
->n_div
, return -1);
8284 for (i
= div
; i
< dst
->n_div
; ++i
)
8285 if (isl_seq_eq(dst
->div
[i
], src
->div
[div
], 1+1+total
+div
) &&
8286 isl_seq_first_non_zero(dst
->div
[i
]+1+1+total
+div
,
8287 dst
->n_div
- div
) == -1)
8292 /* Align the divs of "dst" to those of "src", adding divs from "src"
8293 * if needed. That is, make sure that the first src->n_div divs
8294 * of the result are equal to those of src.
8296 * The result is not finalized as by design it will have redundant
8297 * divs if any divs from "src" were copied.
8299 __isl_give isl_basic_map
*isl_basic_map_align_divs(
8300 __isl_take isl_basic_map
*dst
, __isl_keep isl_basic_map
*src
)
8303 int known
, extended
;
8307 return isl_basic_map_free(dst
);
8309 if (src
->n_div
== 0)
8312 known
= isl_basic_map_divs_known(src
);
8314 return isl_basic_map_free(dst
);
8316 isl_die(isl_basic_map_get_ctx(src
), isl_error_invalid
,
8317 "some src divs are unknown",
8318 return isl_basic_map_free(dst
));
8320 src
= isl_basic_map_order_divs(src
);
8323 total
= isl_space_dim(src
->dim
, isl_dim_all
);
8324 for (i
= 0; i
< src
->n_div
; ++i
) {
8325 int j
= find_div(dst
, src
, i
);
8328 int extra
= src
->n_div
- i
;
8329 dst
= isl_basic_map_cow(dst
);
8332 dst
= isl_basic_map_extend_space(dst
,
8333 isl_space_copy(dst
->dim
),
8334 extra
, 0, 2 * extra
);
8337 j
= isl_basic_map_alloc_div(dst
);
8339 return isl_basic_map_free(dst
);
8340 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
+i
);
8341 isl_seq_clr(dst
->div
[j
]+1+1+total
+i
, dst
->n_div
- i
);
8342 if (isl_basic_map_add_div_constraints(dst
, j
) < 0)
8343 return isl_basic_map_free(dst
);
8346 isl_basic_map_swap_div(dst
, i
, j
);
8351 struct isl_basic_set
*isl_basic_set_align_divs(
8352 struct isl_basic_set
*dst
, struct isl_basic_set
*src
)
8354 return (struct isl_basic_set
*)isl_basic_map_align_divs(
8355 (struct isl_basic_map
*)dst
, (struct isl_basic_map
*)src
);
8358 struct isl_map
*isl_map_align_divs(struct isl_map
*map
)
8366 map
= isl_map_compute_divs(map
);
8367 map
= isl_map_cow(map
);
8371 for (i
= 1; i
< map
->n
; ++i
)
8372 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], map
->p
[i
]);
8373 for (i
= 1; i
< map
->n
; ++i
) {
8374 map
->p
[i
] = isl_basic_map_align_divs(map
->p
[i
], map
->p
[0]);
8376 return isl_map_free(map
);
8379 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
8383 struct isl_set
*isl_set_align_divs(struct isl_set
*set
)
8385 return (struct isl_set
*)isl_map_align_divs((struct isl_map
*)set
);
8388 /* Align the divs of the basic maps in "map" to those
8389 * of the basic maps in "list", as well as to the other basic maps in "map".
8390 * The elements in "list" are assumed to have known divs.
8392 __isl_give isl_map
*isl_map_align_divs_to_basic_map_list(
8393 __isl_take isl_map
*map
, __isl_keep isl_basic_map_list
*list
)
8397 map
= isl_map_compute_divs(map
);
8398 map
= isl_map_cow(map
);
8400 return isl_map_free(map
);
8404 n
= isl_basic_map_list_n_basic_map(list
);
8405 for (i
= 0; i
< n
; ++i
) {
8406 isl_basic_map
*bmap
;
8408 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
8409 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], bmap
);
8410 isl_basic_map_free(bmap
);
8413 return isl_map_free(map
);
8415 return isl_map_align_divs(map
);
8418 /* Align the divs of each element of "list" to those of "bmap".
8419 * Both "bmap" and the elements of "list" are assumed to have known divs.
8421 __isl_give isl_basic_map_list
*isl_basic_map_list_align_divs_to_basic_map(
8422 __isl_take isl_basic_map_list
*list
, __isl_keep isl_basic_map
*bmap
)
8427 return isl_basic_map_list_free(list
);
8429 n
= isl_basic_map_list_n_basic_map(list
);
8430 for (i
= 0; i
< n
; ++i
) {
8431 isl_basic_map
*bmap_i
;
8433 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
8434 bmap_i
= isl_basic_map_align_divs(bmap_i
, bmap
);
8435 list
= isl_basic_map_list_set_basic_map(list
, i
, bmap_i
);
8441 static __isl_give isl_set
*set_apply( __isl_take isl_set
*set
,
8442 __isl_take isl_map
*map
)
8446 isl_assert(set
->ctx
, isl_map_compatible_domain(map
, set
), goto error
);
8447 map
= isl_map_intersect_domain(map
, set
);
8448 set
= isl_map_range(map
);
8456 __isl_give isl_set
*isl_set_apply( __isl_take isl_set
*set
,
8457 __isl_take isl_map
*map
)
8459 return isl_map_align_params_map_map_and(set
, map
, &set_apply
);
8462 /* There is no need to cow as removing empty parts doesn't change
8463 * the meaning of the set.
8465 struct isl_map
*isl_map_remove_empty_parts(struct isl_map
*map
)
8472 for (i
= map
->n
- 1; i
>= 0; --i
)
8473 remove_if_empty(map
, i
);
8478 struct isl_set
*isl_set_remove_empty_parts(struct isl_set
*set
)
8480 return (struct isl_set
*)
8481 isl_map_remove_empty_parts((struct isl_map
*)set
);
8484 struct isl_basic_map
*isl_map_copy_basic_map(struct isl_map
*map
)
8486 struct isl_basic_map
*bmap
;
8487 if (!map
|| map
->n
== 0)
8489 bmap
= map
->p
[map
->n
-1];
8490 isl_assert(map
->ctx
, ISL_F_ISSET(bmap
, ISL_BASIC_SET_FINAL
), return NULL
);
8491 return isl_basic_map_copy(bmap
);
8494 struct isl_basic_set
*isl_set_copy_basic_set(struct isl_set
*set
)
8496 return (struct isl_basic_set
*)
8497 isl_map_copy_basic_map((struct isl_map
*)set
);
8500 __isl_give isl_map
*isl_map_drop_basic_map(__isl_take isl_map
*map
,
8501 __isl_keep isl_basic_map
*bmap
)
8507 for (i
= map
->n
-1; i
>= 0; --i
) {
8508 if (map
->p
[i
] != bmap
)
8510 map
= isl_map_cow(map
);
8513 isl_basic_map_free(map
->p
[i
]);
8514 if (i
!= map
->n
-1) {
8515 ISL_F_CLR(map
, ISL_SET_NORMALIZED
);
8516 map
->p
[i
] = map
->p
[map
->n
-1];
8527 struct isl_set
*isl_set_drop_basic_set(struct isl_set
*set
,
8528 struct isl_basic_set
*bset
)
8530 return (struct isl_set
*)isl_map_drop_basic_map((struct isl_map
*)set
,
8531 (struct isl_basic_map
*)bset
);
8534 /* Given two basic sets bset1 and bset2, compute the maximal difference
8535 * between the values of dimension pos in bset1 and those in bset2
8536 * for any common value of the parameters and dimensions preceding pos.
8538 static enum isl_lp_result
basic_set_maximal_difference_at(
8539 __isl_keep isl_basic_set
*bset1
, __isl_keep isl_basic_set
*bset2
,
8540 int pos
, isl_int
*opt
)
8543 struct isl_basic_map
*bmap1
= NULL
;
8544 struct isl_basic_map
*bmap2
= NULL
;
8545 struct isl_ctx
*ctx
;
8546 struct isl_vec
*obj
;
8549 unsigned dim1
, dim2
;
8550 enum isl_lp_result res
;
8552 if (!bset1
|| !bset2
)
8553 return isl_lp_error
;
8555 nparam
= isl_basic_set_n_param(bset1
);
8556 dim1
= isl_basic_set_n_dim(bset1
);
8557 dim2
= isl_basic_set_n_dim(bset2
);
8558 dims
= isl_space_alloc(bset1
->ctx
, nparam
, pos
, dim1
- pos
);
8559 bmap1
= isl_basic_map_from_basic_set(isl_basic_set_copy(bset1
), dims
);
8560 dims
= isl_space_alloc(bset2
->ctx
, nparam
, pos
, dim2
- pos
);
8561 bmap2
= isl_basic_map_from_basic_set(isl_basic_set_copy(bset2
), dims
);
8562 if (!bmap1
|| !bmap2
)
8564 bmap1
= isl_basic_map_cow(bmap1
);
8565 bmap1
= isl_basic_map_extend(bmap1
, nparam
,
8566 pos
, (dim1
- pos
) + (dim2
- pos
),
8567 bmap2
->n_div
, bmap2
->n_eq
, bmap2
->n_ineq
);
8568 bmap1
= add_constraints(bmap1
, bmap2
, 0, dim1
- pos
);
8571 total
= isl_basic_map_total_dim(bmap1
);
8573 obj
= isl_vec_alloc(ctx
, 1 + total
);
8576 isl_seq_clr(obj
->block
.data
, 1 + total
);
8577 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
], 1);
8578 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
+(dim1
-pos
)], -1);
8579 res
= isl_basic_map_solve_lp(bmap1
, 1, obj
->block
.data
, ctx
->one
,
8581 isl_basic_map_free(bmap1
);
8585 isl_basic_map_free(bmap2
);
8587 isl_basic_map_free(bmap1
);
8588 return isl_lp_error
;
8591 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
8592 * for any common value of the parameters and dimensions preceding pos
8593 * in both basic sets, the values of dimension pos in bset1 are
8594 * smaller or larger than those in bset2.
8597 * 1 if bset1 follows bset2
8598 * -1 if bset1 precedes bset2
8599 * 0 if bset1 and bset2 are incomparable
8600 * -2 if some error occurred.
8602 int isl_basic_set_compare_at(struct isl_basic_set
*bset1
,
8603 struct isl_basic_set
*bset2
, int pos
)
8606 enum isl_lp_result res
;
8611 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
8613 if (res
== isl_lp_empty
)
8615 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
8616 res
== isl_lp_unbounded
)
8618 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
8627 /* Given two basic sets bset1 and bset2, check whether
8628 * for any common value of the parameters and dimensions preceding pos
8629 * there is a value of dimension pos in bset1 that is larger
8630 * than a value of the same dimension in bset2.
8633 * 1 if there exists such a pair
8634 * 0 if there is no such pair, but there is a pair of equal values
8636 * -2 if some error occurred.
8638 int isl_basic_set_follows_at(__isl_keep isl_basic_set
*bset1
,
8639 __isl_keep isl_basic_set
*bset2
, int pos
)
8642 enum isl_lp_result res
;
8647 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
8649 if (res
== isl_lp_empty
)
8651 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
8652 res
== isl_lp_unbounded
)
8654 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
8656 else if (res
== isl_lp_ok
)
8665 /* Given two sets set1 and set2, check whether
8666 * for any common value of the parameters and dimensions preceding pos
8667 * there is a value of dimension pos in set1 that is larger
8668 * than a value of the same dimension in set2.
8671 * 1 if there exists such a pair
8672 * 0 if there is no such pair, but there is a pair of equal values
8674 * -2 if some error occurred.
8676 int isl_set_follows_at(__isl_keep isl_set
*set1
,
8677 __isl_keep isl_set
*set2
, int pos
)
8685 for (i
= 0; i
< set1
->n
; ++i
)
8686 for (j
= 0; j
< set2
->n
; ++j
) {
8688 f
= isl_basic_set_follows_at(set1
->p
[i
], set2
->p
[j
], pos
);
8689 if (f
== 1 || f
== -2)
8698 static int isl_basic_map_plain_has_fixed_var(__isl_keep isl_basic_map
*bmap
,
8699 unsigned pos
, isl_int
*val
)
8707 total
= isl_basic_map_total_dim(bmap
);
8708 for (i
= 0, d
= total
-1; i
< bmap
->n_eq
&& d
+1 > pos
; ++i
) {
8709 for (; d
+1 > pos
; --d
)
8710 if (!isl_int_is_zero(bmap
->eq
[i
][1+d
]))
8714 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1, d
) != -1)
8716 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1+d
+1, total
-d
-1) != -1)
8718 if (!isl_int_is_one(bmap
->eq
[i
][1+d
]))
8721 isl_int_neg(*val
, bmap
->eq
[i
][0]);
8727 static int isl_map_plain_has_fixed_var(__isl_keep isl_map
*map
,
8728 unsigned pos
, isl_int
*val
)
8740 return isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, val
);
8743 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, &v
);
8744 for (i
= 1; fixed
== 1 && i
< map
->n
; ++i
) {
8745 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[i
], pos
, &tmp
);
8746 if (fixed
== 1 && isl_int_ne(tmp
, v
))
8750 isl_int_set(*val
, v
);
8756 static int isl_basic_set_plain_has_fixed_var(__isl_keep isl_basic_set
*bset
,
8757 unsigned pos
, isl_int
*val
)
8759 return isl_basic_map_plain_has_fixed_var((struct isl_basic_map
*)bset
,
8763 static int isl_set_plain_has_fixed_var(__isl_keep isl_set
*set
, unsigned pos
,
8766 return isl_map_plain_has_fixed_var((struct isl_map
*)set
, pos
, val
);
8769 int isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map
*bmap
,
8770 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
8772 if (pos
>= isl_basic_map_dim(bmap
, type
))
8774 return isl_basic_map_plain_has_fixed_var(bmap
,
8775 isl_basic_map_offset(bmap
, type
) - 1 + pos
, val
);
8778 /* If "bmap" obviously lies on a hyperplane where the given dimension
8779 * has a fixed value, then return that value.
8780 * Otherwise return NaN.
8782 __isl_give isl_val
*isl_basic_map_plain_get_val_if_fixed(
8783 __isl_keep isl_basic_map
*bmap
,
8784 enum isl_dim_type type
, unsigned pos
)
8792 ctx
= isl_basic_map_get_ctx(bmap
);
8793 v
= isl_val_alloc(ctx
);
8796 fixed
= isl_basic_map_plain_is_fixed(bmap
, type
, pos
, &v
->n
);
8798 return isl_val_free(v
);
8800 isl_int_set_si(v
->d
, 1);
8804 return isl_val_nan(ctx
);
8807 int isl_map_plain_is_fixed(__isl_keep isl_map
*map
,
8808 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
8810 if (pos
>= isl_map_dim(map
, type
))
8812 return isl_map_plain_has_fixed_var(map
,
8813 map_offset(map
, type
) - 1 + pos
, val
);
8816 /* If "map" obviously lies on a hyperplane where the given dimension
8817 * has a fixed value, then return that value.
8818 * Otherwise return NaN.
8820 __isl_give isl_val
*isl_map_plain_get_val_if_fixed(__isl_keep isl_map
*map
,
8821 enum isl_dim_type type
, unsigned pos
)
8829 ctx
= isl_map_get_ctx(map
);
8830 v
= isl_val_alloc(ctx
);
8833 fixed
= isl_map_plain_is_fixed(map
, type
, pos
, &v
->n
);
8835 return isl_val_free(v
);
8837 isl_int_set_si(v
->d
, 1);
8841 return isl_val_nan(ctx
);
8844 /* If "set" obviously lies on a hyperplane where the given dimension
8845 * has a fixed value, then return that value.
8846 * Otherwise return NaN.
8848 __isl_give isl_val
*isl_set_plain_get_val_if_fixed(__isl_keep isl_set
*set
,
8849 enum isl_dim_type type
, unsigned pos
)
8851 return isl_map_plain_get_val_if_fixed(set
, type
, pos
);
8854 int isl_set_plain_is_fixed(__isl_keep isl_set
*set
,
8855 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
8857 return isl_map_plain_is_fixed(set
, type
, pos
, val
);
8860 /* Check if dimension dim has fixed value and if so and if val is not NULL,
8861 * then return this fixed value in *val.
8863 int isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set
*bset
,
8864 unsigned dim
, isl_int
*val
)
8866 return isl_basic_set_plain_has_fixed_var(bset
,
8867 isl_basic_set_n_param(bset
) + dim
, val
);
8870 /* Check if dimension dim has fixed value and if so and if val is not NULL,
8871 * then return this fixed value in *val.
8873 int isl_set_plain_dim_is_fixed(__isl_keep isl_set
*set
,
8874 unsigned dim
, isl_int
*val
)
8876 return isl_set_plain_has_fixed_var(set
, isl_set_n_param(set
) + dim
, val
);
8879 /* Check if input variable in has fixed value and if so and if val is not NULL,
8880 * then return this fixed value in *val.
8882 int isl_map_plain_input_is_fixed(__isl_keep isl_map
*map
,
8883 unsigned in
, isl_int
*val
)
8885 return isl_map_plain_has_fixed_var(map
, isl_map_n_param(map
) + in
, val
);
8888 /* Check if dimension dim has an (obvious) fixed lower bound and if so
8889 * and if val is not NULL, then return this lower bound in *val.
8891 int isl_basic_set_plain_dim_has_fixed_lower_bound(
8892 __isl_keep isl_basic_set
*bset
, unsigned dim
, isl_int
*val
)
8894 int i
, i_eq
= -1, i_ineq
= -1;
8901 total
= isl_basic_set_total_dim(bset
);
8902 nparam
= isl_basic_set_n_param(bset
);
8903 for (i
= 0; i
< bset
->n_eq
; ++i
) {
8904 if (isl_int_is_zero(bset
->eq
[i
][1+nparam
+dim
]))
8910 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
8911 if (!isl_int_is_pos(bset
->ineq
[i
][1+nparam
+dim
]))
8913 if (i_eq
!= -1 || i_ineq
!= -1)
8917 if (i_eq
== -1 && i_ineq
== -1)
8919 c
= i_eq
!= -1 ? bset
->eq
[i_eq
] : bset
->ineq
[i_ineq
];
8920 /* The coefficient should always be one due to normalization. */
8921 if (!isl_int_is_one(c
[1+nparam
+dim
]))
8923 if (isl_seq_first_non_zero(c
+1, nparam
+dim
) != -1)
8925 if (isl_seq_first_non_zero(c
+1+nparam
+dim
+1,
8926 total
- nparam
- dim
- 1) != -1)
8929 isl_int_neg(*val
, c
[0]);
8933 int isl_set_plain_dim_has_fixed_lower_bound(__isl_keep isl_set
*set
,
8934 unsigned dim
, isl_int
*val
)
8946 return isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[0],
8950 fixed
= isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[0],
8952 for (i
= 1; fixed
== 1 && i
< set
->n
; ++i
) {
8953 fixed
= isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[i
],
8955 if (fixed
== 1 && isl_int_ne(tmp
, v
))
8959 isl_int_set(*val
, v
);
8965 /* uset_gist depends on constraints without existentially quantified
8966 * variables sorting first.
8968 static int sort_constraint_cmp(const void *p1
, const void *p2
, void *arg
)
8970 isl_int
**c1
= (isl_int
**) p1
;
8971 isl_int
**c2
= (isl_int
**) p2
;
8973 unsigned size
= *(unsigned *) arg
;
8975 l1
= isl_seq_last_non_zero(*c1
+ 1, size
);
8976 l2
= isl_seq_last_non_zero(*c2
+ 1, size
);
8981 return isl_seq_cmp(*c1
+ 1, *c2
+ 1, size
);
8984 static struct isl_basic_map
*isl_basic_map_sort_constraints(
8985 struct isl_basic_map
*bmap
)
8991 if (bmap
->n_ineq
== 0)
8993 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NORMALIZED
))
8995 total
= isl_basic_map_total_dim(bmap
);
8996 if (isl_sort(bmap
->ineq
, bmap
->n_ineq
, sizeof(isl_int
*),
8997 &sort_constraint_cmp
, &total
) < 0)
8998 return isl_basic_map_free(bmap
);
9002 __isl_give isl_basic_set
*isl_basic_set_sort_constraints(
9003 __isl_take isl_basic_set
*bset
)
9005 return (struct isl_basic_set
*)isl_basic_map_sort_constraints(
9006 (struct isl_basic_map
*)bset
);
9009 struct isl_basic_map
*isl_basic_map_normalize(struct isl_basic_map
*bmap
)
9013 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NORMALIZED
))
9015 bmap
= isl_basic_map_remove_redundancies(bmap
);
9016 bmap
= isl_basic_map_sort_constraints(bmap
);
9018 ISL_F_SET(bmap
, ISL_BASIC_MAP_NORMALIZED
);
9022 struct isl_basic_set
*isl_basic_set_normalize(struct isl_basic_set
*bset
)
9024 return (struct isl_basic_set
*)isl_basic_map_normalize(
9025 (struct isl_basic_map
*)bset
);
9028 int isl_basic_map_plain_cmp(const __isl_keep isl_basic_map
*bmap1
,
9029 const __isl_keep isl_basic_map
*bmap2
)
9034 if (!bmap1
|| !bmap2
)
9039 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) !=
9040 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_RATIONAL
))
9041 return ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) ? -1 : 1;
9042 if (isl_basic_map_n_param(bmap1
) != isl_basic_map_n_param(bmap2
))
9043 return isl_basic_map_n_param(bmap1
) - isl_basic_map_n_param(bmap2
);
9044 if (isl_basic_map_n_in(bmap1
) != isl_basic_map_n_in(bmap2
))
9045 return isl_basic_map_n_out(bmap1
) - isl_basic_map_n_out(bmap2
);
9046 if (isl_basic_map_n_out(bmap1
) != isl_basic_map_n_out(bmap2
))
9047 return isl_basic_map_n_out(bmap1
) - isl_basic_map_n_out(bmap2
);
9048 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
) &&
9049 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
9051 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
))
9053 if (ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
9055 if (bmap1
->n_eq
!= bmap2
->n_eq
)
9056 return bmap1
->n_eq
- bmap2
->n_eq
;
9057 if (bmap1
->n_ineq
!= bmap2
->n_ineq
)
9058 return bmap1
->n_ineq
- bmap2
->n_ineq
;
9059 if (bmap1
->n_div
!= bmap2
->n_div
)
9060 return bmap1
->n_div
- bmap2
->n_div
;
9061 total
= isl_basic_map_total_dim(bmap1
);
9062 for (i
= 0; i
< bmap1
->n_eq
; ++i
) {
9063 cmp
= isl_seq_cmp(bmap1
->eq
[i
], bmap2
->eq
[i
], 1+total
);
9067 for (i
= 0; i
< bmap1
->n_ineq
; ++i
) {
9068 cmp
= isl_seq_cmp(bmap1
->ineq
[i
], bmap2
->ineq
[i
], 1+total
);
9072 for (i
= 0; i
< bmap1
->n_div
; ++i
) {
9073 cmp
= isl_seq_cmp(bmap1
->div
[i
], bmap2
->div
[i
], 1+1+total
);
9080 int isl_basic_set_plain_cmp(const __isl_keep isl_basic_set
*bset1
,
9081 const __isl_keep isl_basic_set
*bset2
)
9083 return isl_basic_map_plain_cmp(bset1
, bset2
);
9086 int isl_set_plain_cmp(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
9092 if (set1
->n
!= set2
->n
)
9093 return set1
->n
- set2
->n
;
9095 for (i
= 0; i
< set1
->n
; ++i
) {
9096 cmp
= isl_basic_set_plain_cmp(set1
->p
[i
], set2
->p
[i
]);
9104 int isl_basic_map_plain_is_equal(__isl_keep isl_basic_map
*bmap1
,
9105 __isl_keep isl_basic_map
*bmap2
)
9107 if (!bmap1
|| !bmap2
)
9109 return isl_basic_map_plain_cmp(bmap1
, bmap2
) == 0;
9112 int isl_basic_set_plain_is_equal(__isl_keep isl_basic_set
*bset1
,
9113 __isl_keep isl_basic_set
*bset2
)
9115 return isl_basic_map_plain_is_equal((isl_basic_map
*)bset1
,
9116 (isl_basic_map
*)bset2
);
9119 static int qsort_bmap_cmp(const void *p1
, const void *p2
)
9121 const struct isl_basic_map
*bmap1
= *(const struct isl_basic_map
**)p1
;
9122 const struct isl_basic_map
*bmap2
= *(const struct isl_basic_map
**)p2
;
9124 return isl_basic_map_plain_cmp(bmap1
, bmap2
);
9127 /* Sort the basic maps of "map" and remove duplicate basic maps.
9129 * While removing basic maps, we make sure that the basic maps remain
9130 * sorted because isl_map_normalize expects the basic maps of the result
9133 static __isl_give isl_map
*sort_and_remove_duplicates(__isl_take isl_map
*map
)
9137 map
= isl_map_remove_empty_parts(map
);
9140 qsort(map
->p
, map
->n
, sizeof(struct isl_basic_map
*), qsort_bmap_cmp
);
9141 for (i
= map
->n
- 1; i
>= 1; --i
) {
9142 if (!isl_basic_map_plain_is_equal(map
->p
[i
- 1], map
->p
[i
]))
9144 isl_basic_map_free(map
->p
[i
-1]);
9145 for (j
= i
; j
< map
->n
; ++j
)
9146 map
->p
[j
- 1] = map
->p
[j
];
9153 /* Remove obvious duplicates among the basic maps of "map".
9155 * Unlike isl_map_normalize, this function does not remove redundant
9156 * constraints and only removes duplicates that have exactly the same
9157 * constraints in the input. It does sort the constraints and
9158 * the basic maps to ease the detection of duplicates.
9160 * If "map" has already been normalized or if the basic maps are
9161 * disjoint, then there can be no duplicates.
9163 __isl_give isl_map
*isl_map_remove_obvious_duplicates(__isl_take isl_map
*map
)
9166 isl_basic_map
*bmap
;
9172 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
| ISL_MAP_DISJOINT
))
9174 for (i
= 0; i
< map
->n
; ++i
) {
9175 bmap
= isl_basic_map_copy(map
->p
[i
]);
9176 bmap
= isl_basic_map_sort_constraints(bmap
);
9178 return isl_map_free(map
);
9179 isl_basic_map_free(map
->p
[i
]);
9183 map
= sort_and_remove_duplicates(map
);
9187 /* We normalize in place, but if anything goes wrong we need
9188 * to return NULL, so we need to make sure we don't change the
9189 * meaning of any possible other copies of map.
9191 __isl_give isl_map
*isl_map_normalize(__isl_take isl_map
*map
)
9194 struct isl_basic_map
*bmap
;
9198 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
))
9200 for (i
= 0; i
< map
->n
; ++i
) {
9201 bmap
= isl_basic_map_normalize(isl_basic_map_copy(map
->p
[i
]));
9204 isl_basic_map_free(map
->p
[i
]);
9208 map
= sort_and_remove_duplicates(map
);
9210 ISL_F_SET(map
, ISL_MAP_NORMALIZED
);
9217 struct isl_set
*isl_set_normalize(struct isl_set
*set
)
9219 return (struct isl_set
*)isl_map_normalize((struct isl_map
*)set
);
9222 int isl_map_plain_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
9232 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
9235 map1
= isl_map_copy(map1
);
9236 map2
= isl_map_copy(map2
);
9237 map1
= isl_map_normalize(map1
);
9238 map2
= isl_map_normalize(map2
);
9241 equal
= map1
->n
== map2
->n
;
9242 for (i
= 0; equal
&& i
< map1
->n
; ++i
) {
9243 equal
= isl_basic_map_plain_is_equal(map1
->p
[i
], map2
->p
[i
]);
9256 int isl_set_plain_is_equal(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
9258 return isl_map_plain_is_equal((struct isl_map
*)set1
,
9259 (struct isl_map
*)set2
);
9262 /* Return an interval that ranges from min to max (inclusive)
9264 struct isl_basic_set
*isl_basic_set_interval(struct isl_ctx
*ctx
,
9265 isl_int min
, isl_int max
)
9268 struct isl_basic_set
*bset
= NULL
;
9270 bset
= isl_basic_set_alloc(ctx
, 0, 1, 0, 0, 2);
9274 k
= isl_basic_set_alloc_inequality(bset
);
9277 isl_int_set_si(bset
->ineq
[k
][1], 1);
9278 isl_int_neg(bset
->ineq
[k
][0], min
);
9280 k
= isl_basic_set_alloc_inequality(bset
);
9283 isl_int_set_si(bset
->ineq
[k
][1], -1);
9284 isl_int_set(bset
->ineq
[k
][0], max
);
9288 isl_basic_set_free(bset
);
9292 /* Return the basic maps in "map" as a list.
9294 __isl_give isl_basic_map_list
*isl_map_get_basic_map_list(
9295 __isl_keep isl_map
*map
)
9299 isl_basic_map_list
*list
;
9303 ctx
= isl_map_get_ctx(map
);
9304 list
= isl_basic_map_list_alloc(ctx
, map
->n
);
9306 for (i
= 0; i
< map
->n
; ++i
) {
9307 isl_basic_map
*bmap
;
9309 bmap
= isl_basic_map_copy(map
->p
[i
]);
9310 list
= isl_basic_map_list_add(list
, bmap
);
9316 /* Return the intersection of the elements in the non-empty list "list".
9317 * All elements are assumed to live in the same space.
9319 __isl_give isl_basic_map
*isl_basic_map_list_intersect(
9320 __isl_take isl_basic_map_list
*list
)
9323 isl_basic_map
*bmap
;
9327 n
= isl_basic_map_list_n_basic_map(list
);
9329 isl_die(isl_basic_map_list_get_ctx(list
), isl_error_invalid
,
9330 "expecting non-empty list", goto error
);
9332 bmap
= isl_basic_map_list_get_basic_map(list
, 0);
9333 for (i
= 1; i
< n
; ++i
) {
9334 isl_basic_map
*bmap_i
;
9336 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
9337 bmap
= isl_basic_map_intersect(bmap
, bmap_i
);
9340 isl_basic_map_list_free(list
);
9343 isl_basic_map_list_free(list
);
9347 /* Return the intersection of the elements in the non-empty list "list".
9348 * All elements are assumed to live in the same space.
9350 __isl_give isl_basic_set
*isl_basic_set_list_intersect(
9351 __isl_take isl_basic_set_list
*list
)
9353 return isl_basic_map_list_intersect(list
);
9356 /* Return the Cartesian product of the basic sets in list (in the given order).
9358 __isl_give isl_basic_set
*isl_basic_set_list_product(
9359 __isl_take
struct isl_basic_set_list
*list
)
9367 struct isl_basic_set
*product
= NULL
;
9371 isl_assert(list
->ctx
, list
->n
> 0, goto error
);
9372 isl_assert(list
->ctx
, list
->p
[0], goto error
);
9373 nparam
= isl_basic_set_n_param(list
->p
[0]);
9374 dim
= isl_basic_set_n_dim(list
->p
[0]);
9375 extra
= list
->p
[0]->n_div
;
9376 n_eq
= list
->p
[0]->n_eq
;
9377 n_ineq
= list
->p
[0]->n_ineq
;
9378 for (i
= 1; i
< list
->n
; ++i
) {
9379 isl_assert(list
->ctx
, list
->p
[i
], goto error
);
9380 isl_assert(list
->ctx
,
9381 nparam
== isl_basic_set_n_param(list
->p
[i
]), goto error
);
9382 dim
+= isl_basic_set_n_dim(list
->p
[i
]);
9383 extra
+= list
->p
[i
]->n_div
;
9384 n_eq
+= list
->p
[i
]->n_eq
;
9385 n_ineq
+= list
->p
[i
]->n_ineq
;
9387 product
= isl_basic_set_alloc(list
->ctx
, nparam
, dim
, extra
,
9392 for (i
= 0; i
< list
->n
; ++i
) {
9393 isl_basic_set_add_constraints(product
,
9394 isl_basic_set_copy(list
->p
[i
]), dim
);
9395 dim
+= isl_basic_set_n_dim(list
->p
[i
]);
9397 isl_basic_set_list_free(list
);
9400 isl_basic_set_free(product
);
9401 isl_basic_set_list_free(list
);
9405 struct isl_basic_map
*isl_basic_map_product(
9406 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
9408 isl_space
*dim_result
= NULL
;
9409 struct isl_basic_map
*bmap
;
9410 unsigned in1
, in2
, out1
, out2
, nparam
, total
, pos
;
9411 struct isl_dim_map
*dim_map1
, *dim_map2
;
9413 if (!bmap1
|| !bmap2
)
9416 isl_assert(bmap1
->ctx
, isl_space_match(bmap1
->dim
, isl_dim_param
,
9417 bmap2
->dim
, isl_dim_param
), goto error
);
9418 dim_result
= isl_space_product(isl_space_copy(bmap1
->dim
),
9419 isl_space_copy(bmap2
->dim
));
9421 in1
= isl_basic_map_n_in(bmap1
);
9422 in2
= isl_basic_map_n_in(bmap2
);
9423 out1
= isl_basic_map_n_out(bmap1
);
9424 out2
= isl_basic_map_n_out(bmap2
);
9425 nparam
= isl_basic_map_n_param(bmap1
);
9427 total
= nparam
+ in1
+ in2
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
9428 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9429 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9430 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9431 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9432 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9433 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
9434 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
9435 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
9436 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
9437 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9439 bmap
= isl_basic_map_alloc_space(dim_result
,
9440 bmap1
->n_div
+ bmap2
->n_div
,
9441 bmap1
->n_eq
+ bmap2
->n_eq
,
9442 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9443 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9444 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9445 bmap
= isl_basic_map_simplify(bmap
);
9446 return isl_basic_map_finalize(bmap
);
9448 isl_basic_map_free(bmap1
);
9449 isl_basic_map_free(bmap2
);
9453 __isl_give isl_basic_map
*isl_basic_map_flat_product(
9454 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9456 isl_basic_map
*prod
;
9458 prod
= isl_basic_map_product(bmap1
, bmap2
);
9459 prod
= isl_basic_map_flatten(prod
);
9463 __isl_give isl_basic_set
*isl_basic_set_flat_product(
9464 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
9466 return isl_basic_map_flat_range_product(bset1
, bset2
);
9469 __isl_give isl_basic_map
*isl_basic_map_domain_product(
9470 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9472 isl_space
*space_result
= NULL
;
9473 isl_basic_map
*bmap
;
9474 unsigned in1
, in2
, out
, nparam
, total
, pos
;
9475 struct isl_dim_map
*dim_map1
, *dim_map2
;
9477 if (!bmap1
|| !bmap2
)
9480 space_result
= isl_space_domain_product(isl_space_copy(bmap1
->dim
),
9481 isl_space_copy(bmap2
->dim
));
9483 in1
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9484 in2
= isl_basic_map_dim(bmap2
, isl_dim_in
);
9485 out
= isl_basic_map_dim(bmap1
, isl_dim_out
);
9486 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
9488 total
= nparam
+ in1
+ in2
+ out
+ bmap1
->n_div
+ bmap2
->n_div
;
9489 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9490 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9491 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9492 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9493 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9494 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
9495 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
9496 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
);
9497 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out
);
9498 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9500 bmap
= isl_basic_map_alloc_space(space_result
,
9501 bmap1
->n_div
+ bmap2
->n_div
,
9502 bmap1
->n_eq
+ bmap2
->n_eq
,
9503 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9504 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9505 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9506 bmap
= isl_basic_map_simplify(bmap
);
9507 return isl_basic_map_finalize(bmap
);
9509 isl_basic_map_free(bmap1
);
9510 isl_basic_map_free(bmap2
);
9514 __isl_give isl_basic_map
*isl_basic_map_range_product(
9515 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9517 isl_space
*dim_result
= NULL
;
9518 isl_basic_map
*bmap
;
9519 unsigned in
, out1
, out2
, nparam
, total
, pos
;
9520 struct isl_dim_map
*dim_map1
, *dim_map2
;
9522 if (!bmap1
|| !bmap2
)
9525 if (!isl_space_match(bmap1
->dim
, isl_dim_param
,
9526 bmap2
->dim
, isl_dim_param
))
9527 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
9528 "parameters don't match", goto error
);
9530 dim_result
= isl_space_range_product(isl_space_copy(bmap1
->dim
),
9531 isl_space_copy(bmap2
->dim
));
9533 in
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9534 out1
= isl_basic_map_n_out(bmap1
);
9535 out2
= isl_basic_map_n_out(bmap2
);
9536 nparam
= isl_basic_map_n_param(bmap1
);
9538 total
= nparam
+ in
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
9539 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9540 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9541 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9542 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9543 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9544 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
9545 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in
);
9546 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
9547 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
9548 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9550 bmap
= isl_basic_map_alloc_space(dim_result
,
9551 bmap1
->n_div
+ bmap2
->n_div
,
9552 bmap1
->n_eq
+ bmap2
->n_eq
,
9553 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9554 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9555 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9556 bmap
= isl_basic_map_simplify(bmap
);
9557 return isl_basic_map_finalize(bmap
);
9559 isl_basic_map_free(bmap1
);
9560 isl_basic_map_free(bmap2
);
9564 __isl_give isl_basic_map
*isl_basic_map_flat_range_product(
9565 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9567 isl_basic_map
*prod
;
9569 prod
= isl_basic_map_range_product(bmap1
, bmap2
);
9570 prod
= isl_basic_map_flatten_range(prod
);
9574 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
9575 * and collect the results.
9576 * The result live in the space obtained by calling "space_product"
9577 * on the spaces of "map1" and "map2".
9578 * If "remove_duplicates" is set then the result may contain duplicates
9579 * (even if the inputs do not) and so we try and remove the obvious
9582 static __isl_give isl_map
*map_product(__isl_take isl_map
*map1
,
9583 __isl_take isl_map
*map2
,
9584 __isl_give isl_space
*(*space_product
)(__isl_take isl_space
*left
,
9585 __isl_take isl_space
*right
),
9586 __isl_give isl_basic_map
*(*basic_map_product
)(
9587 __isl_take isl_basic_map
*left
,
9588 __isl_take isl_basic_map
*right
),
9589 int remove_duplicates
)
9592 struct isl_map
*result
;
9598 isl_assert(map1
->ctx
, isl_space_match(map1
->dim
, isl_dim_param
,
9599 map2
->dim
, isl_dim_param
), goto error
);
9601 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
9602 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
9603 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
9605 result
= isl_map_alloc_space(space_product(isl_space_copy(map1
->dim
),
9606 isl_space_copy(map2
->dim
)),
9607 map1
->n
* map2
->n
, flags
);
9610 for (i
= 0; i
< map1
->n
; ++i
)
9611 for (j
= 0; j
< map2
->n
; ++j
) {
9612 struct isl_basic_map
*part
;
9613 part
= basic_map_product(isl_basic_map_copy(map1
->p
[i
]),
9614 isl_basic_map_copy(map2
->p
[j
]));
9615 if (isl_basic_map_is_empty(part
))
9616 isl_basic_map_free(part
);
9618 result
= isl_map_add_basic_map(result
, part
);
9622 if (remove_duplicates
)
9623 result
= isl_map_remove_obvious_duplicates(result
);
9633 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
9635 static __isl_give isl_map
*map_product_aligned(__isl_take isl_map
*map1
,
9636 __isl_take isl_map
*map2
)
9638 return map_product(map1
, map2
, &isl_space_product
,
9639 &isl_basic_map_product
, 0);
9642 __isl_give isl_map
*isl_map_product(__isl_take isl_map
*map1
,
9643 __isl_take isl_map
*map2
)
9645 return isl_map_align_params_map_map_and(map1
, map2
, &map_product_aligned
);
9648 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
9650 __isl_give isl_map
*isl_map_flat_product(__isl_take isl_map
*map1
,
9651 __isl_take isl_map
*map2
)
9655 prod
= isl_map_product(map1
, map2
);
9656 prod
= isl_map_flatten(prod
);
9660 /* Given two set A and B, construct its Cartesian product A x B.
9662 struct isl_set
*isl_set_product(struct isl_set
*set1
, struct isl_set
*set2
)
9664 return isl_map_range_product(set1
, set2
);
9667 __isl_give isl_set
*isl_set_flat_product(__isl_take isl_set
*set1
,
9668 __isl_take isl_set
*set2
)
9670 return isl_map_flat_range_product(set1
, set2
);
9673 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
9675 static __isl_give isl_map
*map_domain_product_aligned(__isl_take isl_map
*map1
,
9676 __isl_take isl_map
*map2
)
9678 return map_product(map1
, map2
, &isl_space_domain_product
,
9679 &isl_basic_map_domain_product
, 1);
9682 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
9684 static __isl_give isl_map
*map_range_product_aligned(__isl_take isl_map
*map1
,
9685 __isl_take isl_map
*map2
)
9687 return map_product(map1
, map2
, &isl_space_range_product
,
9688 &isl_basic_map_range_product
, 1);
9691 __isl_give isl_map
*isl_map_domain_product(__isl_take isl_map
*map1
,
9692 __isl_take isl_map
*map2
)
9694 return isl_map_align_params_map_map_and(map1
, map2
,
9695 &map_domain_product_aligned
);
9698 __isl_give isl_map
*isl_map_range_product(__isl_take isl_map
*map1
,
9699 __isl_take isl_map
*map2
)
9701 return isl_map_align_params_map_map_and(map1
, map2
,
9702 &map_range_product_aligned
);
9705 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
9707 __isl_give isl_map
*isl_map_factor_domain(__isl_take isl_map
*map
)
9710 int total1
, keep1
, total2
, keep2
;
9714 if (!isl_space_domain_is_wrapping(map
->dim
) ||
9715 !isl_space_range_is_wrapping(map
->dim
))
9716 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9717 "not a product", return isl_map_free(map
));
9719 space
= isl_map_get_space(map
);
9720 total1
= isl_space_dim(space
, isl_dim_in
);
9721 total2
= isl_space_dim(space
, isl_dim_out
);
9722 space
= isl_space_factor_domain(space
);
9723 keep1
= isl_space_dim(space
, isl_dim_in
);
9724 keep2
= isl_space_dim(space
, isl_dim_out
);
9725 map
= isl_map_project_out(map
, isl_dim_in
, keep1
, total1
- keep1
);
9726 map
= isl_map_project_out(map
, isl_dim_out
, keep2
, total2
- keep2
);
9727 map
= isl_map_reset_space(map
, space
);
9732 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
9734 __isl_give isl_map
*isl_map_factor_range(__isl_take isl_map
*map
)
9737 int total1
, keep1
, total2
, keep2
;
9741 if (!isl_space_domain_is_wrapping(map
->dim
) ||
9742 !isl_space_range_is_wrapping(map
->dim
))
9743 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9744 "not a product", return isl_map_free(map
));
9746 space
= isl_map_get_space(map
);
9747 total1
= isl_space_dim(space
, isl_dim_in
);
9748 total2
= isl_space_dim(space
, isl_dim_out
);
9749 space
= isl_space_factor_range(space
);
9750 keep1
= isl_space_dim(space
, isl_dim_in
);
9751 keep2
= isl_space_dim(space
, isl_dim_out
);
9752 map
= isl_map_project_out(map
, isl_dim_in
, 0, total1
- keep1
);
9753 map
= isl_map_project_out(map
, isl_dim_out
, 0, total2
- keep2
);
9754 map
= isl_map_reset_space(map
, space
);
9759 /* Given a map of the form [A -> B] -> C, return the map A -> C.
9761 __isl_give isl_map
*isl_map_domain_factor_domain(__isl_take isl_map
*map
)
9768 if (!isl_space_domain_is_wrapping(map
->dim
))
9769 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9770 "domain is not a product", return isl_map_free(map
));
9772 space
= isl_map_get_space(map
);
9773 total
= isl_space_dim(space
, isl_dim_in
);
9774 space
= isl_space_domain_factor_domain(space
);
9775 keep
= isl_space_dim(space
, isl_dim_in
);
9776 map
= isl_map_project_out(map
, isl_dim_in
, keep
, total
- keep
);
9777 map
= isl_map_reset_space(map
, space
);
9782 /* Given a map of the form [A -> B] -> C, return the map B -> C.
9784 __isl_give isl_map
*isl_map_domain_factor_range(__isl_take isl_map
*map
)
9791 if (!isl_space_domain_is_wrapping(map
->dim
))
9792 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9793 "domain is not a product", return isl_map_free(map
));
9795 space
= isl_map_get_space(map
);
9796 total
= isl_space_dim(space
, isl_dim_in
);
9797 space
= isl_space_domain_factor_range(space
);
9798 keep
= isl_space_dim(space
, isl_dim_in
);
9799 map
= isl_map_project_out(map
, isl_dim_in
, 0, total
- keep
);
9800 map
= isl_map_reset_space(map
, space
);
9805 /* Given a map A -> [B -> C], extract the map A -> B.
9807 __isl_give isl_map
*isl_map_range_factor_domain(__isl_take isl_map
*map
)
9814 if (!isl_space_range_is_wrapping(map
->dim
))
9815 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9816 "range is not a product", return isl_map_free(map
));
9818 space
= isl_map_get_space(map
);
9819 total
= isl_space_dim(space
, isl_dim_out
);
9820 space
= isl_space_range_factor_domain(space
);
9821 keep
= isl_space_dim(space
, isl_dim_out
);
9822 map
= isl_map_project_out(map
, isl_dim_out
, keep
, total
- keep
);
9823 map
= isl_map_reset_space(map
, space
);
9828 /* Given a map A -> [B -> C], extract the map A -> C.
9830 __isl_give isl_map
*isl_map_range_factor_range(__isl_take isl_map
*map
)
9837 if (!isl_space_range_is_wrapping(map
->dim
))
9838 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9839 "range is not a product", return isl_map_free(map
));
9841 space
= isl_map_get_space(map
);
9842 total
= isl_space_dim(space
, isl_dim_out
);
9843 space
= isl_space_range_factor_range(space
);
9844 keep
= isl_space_dim(space
, isl_dim_out
);
9845 map
= isl_map_project_out(map
, isl_dim_out
, 0, total
- keep
);
9846 map
= isl_map_reset_space(map
, space
);
9851 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
9853 __isl_give isl_map
*isl_map_flat_domain_product(__isl_take isl_map
*map1
,
9854 __isl_take isl_map
*map2
)
9858 prod
= isl_map_domain_product(map1
, map2
);
9859 prod
= isl_map_flatten_domain(prod
);
9863 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
9865 __isl_give isl_map
*isl_map_flat_range_product(__isl_take isl_map
*map1
,
9866 __isl_take isl_map
*map2
)
9870 prod
= isl_map_range_product(map1
, map2
);
9871 prod
= isl_map_flatten_range(prod
);
9875 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map
*bmap
)
9878 uint32_t hash
= isl_hash_init();
9883 bmap
= isl_basic_map_copy(bmap
);
9884 bmap
= isl_basic_map_normalize(bmap
);
9887 total
= isl_basic_map_total_dim(bmap
);
9888 isl_hash_byte(hash
, bmap
->n_eq
& 0xFF);
9889 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
9891 c_hash
= isl_seq_get_hash(bmap
->eq
[i
], 1 + total
);
9892 isl_hash_hash(hash
, c_hash
);
9894 isl_hash_byte(hash
, bmap
->n_ineq
& 0xFF);
9895 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
9897 c_hash
= isl_seq_get_hash(bmap
->ineq
[i
], 1 + total
);
9898 isl_hash_hash(hash
, c_hash
);
9900 isl_hash_byte(hash
, bmap
->n_div
& 0xFF);
9901 for (i
= 0; i
< bmap
->n_div
; ++i
) {
9903 if (isl_int_is_zero(bmap
->div
[i
][0]))
9905 isl_hash_byte(hash
, i
& 0xFF);
9906 c_hash
= isl_seq_get_hash(bmap
->div
[i
], 1 + 1 + total
);
9907 isl_hash_hash(hash
, c_hash
);
9909 isl_basic_map_free(bmap
);
9913 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set
*bset
)
9915 return isl_basic_map_get_hash((isl_basic_map
*)bset
);
9918 uint32_t isl_map_get_hash(__isl_keep isl_map
*map
)
9925 map
= isl_map_copy(map
);
9926 map
= isl_map_normalize(map
);
9930 hash
= isl_hash_init();
9931 for (i
= 0; i
< map
->n
; ++i
) {
9933 bmap_hash
= isl_basic_map_get_hash(map
->p
[i
]);
9934 isl_hash_hash(hash
, bmap_hash
);
9942 uint32_t isl_set_get_hash(__isl_keep isl_set
*set
)
9944 return isl_map_get_hash((isl_map
*)set
);
9947 /* Check if the value for dimension dim is completely determined
9948 * by the values of the other parameters and variables.
9949 * That is, check if dimension dim is involved in an equality.
9951 int isl_basic_set_dim_is_unique(struct isl_basic_set
*bset
, unsigned dim
)
9958 nparam
= isl_basic_set_n_param(bset
);
9959 for (i
= 0; i
< bset
->n_eq
; ++i
)
9960 if (!isl_int_is_zero(bset
->eq
[i
][1 + nparam
+ dim
]))
9965 /* Check if the value for dimension dim is completely determined
9966 * by the values of the other parameters and variables.
9967 * That is, check if dimension dim is involved in an equality
9968 * for each of the subsets.
9970 int isl_set_dim_is_unique(struct isl_set
*set
, unsigned dim
)
9976 for (i
= 0; i
< set
->n
; ++i
) {
9978 unique
= isl_basic_set_dim_is_unique(set
->p
[i
], dim
);
9985 /* Return the number of basic maps in the (current) representation of "map".
9987 int isl_map_n_basic_map(__isl_keep isl_map
*map
)
9989 return map
? map
->n
: 0;
9992 int isl_set_n_basic_set(__isl_keep isl_set
*set
)
9994 return set
? set
->n
: 0;
9997 int isl_map_foreach_basic_map(__isl_keep isl_map
*map
,
9998 int (*fn
)(__isl_take isl_basic_map
*bmap
, void *user
), void *user
)
10005 for (i
= 0; i
< map
->n
; ++i
)
10006 if (fn(isl_basic_map_copy(map
->p
[i
]), user
) < 0)
10012 int isl_set_foreach_basic_set(__isl_keep isl_set
*set
,
10013 int (*fn
)(__isl_take isl_basic_set
*bset
, void *user
), void *user
)
10020 for (i
= 0; i
< set
->n
; ++i
)
10021 if (fn(isl_basic_set_copy(set
->p
[i
]), user
) < 0)
10027 __isl_give isl_basic_set
*isl_basic_set_lift(__isl_take isl_basic_set
*bset
)
10034 bset
= isl_basic_set_cow(bset
);
10038 dim
= isl_basic_set_get_space(bset
);
10039 dim
= isl_space_lift(dim
, bset
->n_div
);
10042 isl_space_free(bset
->dim
);
10044 bset
->extra
-= bset
->n_div
;
10047 bset
= isl_basic_set_finalize(bset
);
10051 isl_basic_set_free(bset
);
10055 __isl_give isl_set
*isl_set_lift(__isl_take isl_set
*set
)
10061 set
= isl_set_align_divs(set
);
10066 set
= isl_set_cow(set
);
10070 n_div
= set
->p
[0]->n_div
;
10071 dim
= isl_set_get_space(set
);
10072 dim
= isl_space_lift(dim
, n_div
);
10075 isl_space_free(set
->dim
);
10078 for (i
= 0; i
< set
->n
; ++i
) {
10079 set
->p
[i
] = isl_basic_set_lift(set
->p
[i
]);
10090 __isl_give isl_map
*isl_set_lifting(__isl_take isl_set
*set
)
10093 struct isl_basic_map
*bmap
;
10100 set
= isl_set_align_divs(set
);
10105 dim
= isl_set_get_space(set
);
10106 if (set
->n
== 0 || set
->p
[0]->n_div
== 0) {
10108 return isl_map_identity(isl_space_map_from_set(dim
));
10111 n_div
= set
->p
[0]->n_div
;
10112 dim
= isl_space_map_from_set(dim
);
10113 n_param
= isl_space_dim(dim
, isl_dim_param
);
10114 n_set
= isl_space_dim(dim
, isl_dim_in
);
10115 dim
= isl_space_extend(dim
, n_param
, n_set
, n_set
+ n_div
);
10116 bmap
= isl_basic_map_alloc_space(dim
, 0, n_set
, 2 * n_div
);
10117 for (i
= 0; i
< n_set
; ++i
)
10118 bmap
= var_equal(bmap
, i
);
10120 total
= n_param
+ n_set
+ n_set
+ n_div
;
10121 for (i
= 0; i
< n_div
; ++i
) {
10122 k
= isl_basic_map_alloc_inequality(bmap
);
10125 isl_seq_cpy(bmap
->ineq
[k
], set
->p
[0]->div
[i
]+1, 1+n_param
);
10126 isl_seq_clr(bmap
->ineq
[k
]+1+n_param
, n_set
);
10127 isl_seq_cpy(bmap
->ineq
[k
]+1+n_param
+n_set
,
10128 set
->p
[0]->div
[i
]+1+1+n_param
, n_set
+ n_div
);
10129 isl_int_neg(bmap
->ineq
[k
][1+n_param
+n_set
+n_set
+i
],
10130 set
->p
[0]->div
[i
][0]);
10132 l
= isl_basic_map_alloc_inequality(bmap
);
10135 isl_seq_neg(bmap
->ineq
[l
], bmap
->ineq
[k
], 1 + total
);
10136 isl_int_add(bmap
->ineq
[l
][0], bmap
->ineq
[l
][0],
10137 set
->p
[0]->div
[i
][0]);
10138 isl_int_sub_ui(bmap
->ineq
[l
][0], bmap
->ineq
[l
][0], 1);
10142 bmap
= isl_basic_map_simplify(bmap
);
10143 bmap
= isl_basic_map_finalize(bmap
);
10144 return isl_map_from_basic_map(bmap
);
10147 isl_basic_map_free(bmap
);
10151 int isl_basic_set_size(__isl_keep isl_basic_set
*bset
)
10159 dim
= isl_basic_set_total_dim(bset
);
10160 size
+= bset
->n_eq
* (1 + dim
);
10161 size
+= bset
->n_ineq
* (1 + dim
);
10162 size
+= bset
->n_div
* (2 + dim
);
10167 int isl_set_size(__isl_keep isl_set
*set
)
10175 for (i
= 0; i
< set
->n
; ++i
)
10176 size
+= isl_basic_set_size(set
->p
[i
]);
10181 /* Check if there is any lower bound (if lower == 0) and/or upper
10182 * bound (if upper == 0) on the specified dim.
10184 static int basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10185 enum isl_dim_type type
, unsigned pos
, int lower
, int upper
)
10192 isl_assert(bmap
->ctx
, pos
< isl_basic_map_dim(bmap
, type
), return -1);
10194 pos
+= isl_basic_map_offset(bmap
, type
);
10196 for (i
= 0; i
< bmap
->n_div
; ++i
) {
10197 if (isl_int_is_zero(bmap
->div
[i
][0]))
10199 if (!isl_int_is_zero(bmap
->div
[i
][1 + pos
]))
10203 for (i
= 0; i
< bmap
->n_eq
; ++i
)
10204 if (!isl_int_is_zero(bmap
->eq
[i
][pos
]))
10207 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10208 int sgn
= isl_int_sgn(bmap
->ineq
[i
][pos
]);
10215 return lower
&& upper
;
10218 int isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10219 enum isl_dim_type type
, unsigned pos
)
10221 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 0);
10224 int isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map
*bmap
,
10225 enum isl_dim_type type
, unsigned pos
)
10227 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 1);
10230 int isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map
*bmap
,
10231 enum isl_dim_type type
, unsigned pos
)
10233 return basic_map_dim_is_bounded(bmap
, type
, pos
, 1, 0);
10236 int isl_map_dim_is_bounded(__isl_keep isl_map
*map
,
10237 enum isl_dim_type type
, unsigned pos
)
10244 for (i
= 0; i
< map
->n
; ++i
) {
10246 bounded
= isl_basic_map_dim_is_bounded(map
->p
[i
], type
, pos
);
10247 if (bounded
< 0 || !bounded
)
10254 /* Return 1 if the specified dim is involved in both an upper bound
10255 * and a lower bound.
10257 int isl_set_dim_is_bounded(__isl_keep isl_set
*set
,
10258 enum isl_dim_type type
, unsigned pos
)
10260 return isl_map_dim_is_bounded((isl_map
*)set
, type
, pos
);
10263 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10265 static int has_any_bound(__isl_keep isl_map
*map
,
10266 enum isl_dim_type type
, unsigned pos
,
10267 int (*fn
)(__isl_keep isl_basic_map
*bmap
,
10268 enum isl_dim_type type
, unsigned pos
))
10275 for (i
= 0; i
< map
->n
; ++i
) {
10277 bounded
= fn(map
->p
[i
], type
, pos
);
10278 if (bounded
< 0 || bounded
)
10285 /* Return 1 if the specified dim is involved in any lower bound.
10287 int isl_set_dim_has_any_lower_bound(__isl_keep isl_set
*set
,
10288 enum isl_dim_type type
, unsigned pos
)
10290 return has_any_bound(set
, type
, pos
,
10291 &isl_basic_map_dim_has_lower_bound
);
10294 /* Return 1 if the specified dim is involved in any upper bound.
10296 int isl_set_dim_has_any_upper_bound(__isl_keep isl_set
*set
,
10297 enum isl_dim_type type
, unsigned pos
)
10299 return has_any_bound(set
, type
, pos
,
10300 &isl_basic_map_dim_has_upper_bound
);
10303 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10305 static int has_bound(__isl_keep isl_map
*map
,
10306 enum isl_dim_type type
, unsigned pos
,
10307 int (*fn
)(__isl_keep isl_basic_map
*bmap
,
10308 enum isl_dim_type type
, unsigned pos
))
10315 for (i
= 0; i
< map
->n
; ++i
) {
10317 bounded
= fn(map
->p
[i
], type
, pos
);
10318 if (bounded
< 0 || !bounded
)
10325 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10327 int isl_set_dim_has_lower_bound(__isl_keep isl_set
*set
,
10328 enum isl_dim_type type
, unsigned pos
)
10330 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_lower_bound
);
10333 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10335 int isl_set_dim_has_upper_bound(__isl_keep isl_set
*set
,
10336 enum isl_dim_type type
, unsigned pos
)
10338 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_upper_bound
);
10341 /* For each of the "n" variables starting at "first", determine
10342 * the sign of the variable and put the results in the first "n"
10343 * elements of the array "signs".
10345 * 1 means that the variable is non-negative
10346 * -1 means that the variable is non-positive
10347 * 0 means the variable attains both positive and negative values.
10349 int isl_basic_set_vars_get_sign(__isl_keep isl_basic_set
*bset
,
10350 unsigned first
, unsigned n
, int *signs
)
10352 isl_vec
*bound
= NULL
;
10353 struct isl_tab
*tab
= NULL
;
10354 struct isl_tab_undo
*snap
;
10357 if (!bset
|| !signs
)
10360 bound
= isl_vec_alloc(bset
->ctx
, 1 + isl_basic_set_total_dim(bset
));
10361 tab
= isl_tab_from_basic_set(bset
, 0);
10362 if (!bound
|| !tab
)
10365 isl_seq_clr(bound
->el
, bound
->size
);
10366 isl_int_set_si(bound
->el
[0], -1);
10368 snap
= isl_tab_snap(tab
);
10369 for (i
= 0; i
< n
; ++i
) {
10372 isl_int_set_si(bound
->el
[1 + first
+ i
], -1);
10373 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10375 empty
= tab
->empty
;
10376 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10377 if (isl_tab_rollback(tab
, snap
) < 0)
10385 isl_int_set_si(bound
->el
[1 + first
+ i
], 1);
10386 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10388 empty
= tab
->empty
;
10389 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10390 if (isl_tab_rollback(tab
, snap
) < 0)
10393 signs
[i
] = empty
? -1 : 0;
10397 isl_vec_free(bound
);
10401 isl_vec_free(bound
);
10405 int isl_basic_set_dims_get_sign(__isl_keep isl_basic_set
*bset
,
10406 enum isl_dim_type type
, unsigned first
, unsigned n
, int *signs
)
10408 if (!bset
|| !signs
)
10410 isl_assert(bset
->ctx
, first
+ n
<= isl_basic_set_dim(bset
, type
),
10413 first
+= pos(bset
->dim
, type
) - 1;
10414 return isl_basic_set_vars_get_sign(bset
, first
, n
, signs
);
10417 /* Is it possible for the integer division "div" to depend (possibly
10418 * indirectly) on any output dimensions?
10420 * If the div is undefined, then we conservatively assume that it
10421 * may depend on them.
10422 * Otherwise, we check if it actually depends on them or on any integer
10423 * divisions that may depend on them.
10425 static int div_may_involve_output(__isl_keep isl_basic_map
*bmap
, int div
)
10428 unsigned n_out
, o_out
;
10429 unsigned n_div
, o_div
;
10431 if (isl_int_is_zero(bmap
->div
[div
][0]))
10434 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10435 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10437 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + o_out
, n_out
) != -1)
10440 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10441 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10443 for (i
= 0; i
< n_div
; ++i
) {
10444 if (isl_int_is_zero(bmap
->div
[div
][1 + o_div
+ i
]))
10446 if (div_may_involve_output(bmap
, i
))
10453 /* Return the index of the equality of "bmap" that defines
10454 * the output dimension "pos" in terms of earlier dimensions.
10455 * The equality may also involve integer divisions, as long
10456 * as those integer divisions are defined in terms of
10457 * parameters or input dimensions.
10458 * Return bmap->n_eq if there is no such equality.
10459 * Return -1 on error.
10461 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map
*bmap
,
10465 unsigned n_out
, o_out
;
10466 unsigned n_div
, o_div
;
10471 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10472 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10473 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10474 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10476 for (j
= 0; j
< bmap
->n_eq
; ++j
) {
10477 if (isl_int_is_zero(bmap
->eq
[j
][o_out
+ pos
]))
10479 if (isl_seq_first_non_zero(bmap
->eq
[j
] + o_out
+ pos
+ 1,
10480 n_out
- (pos
+ 1)) != -1)
10482 for (k
= 0; k
< n_div
; ++k
) {
10483 if (isl_int_is_zero(bmap
->eq
[j
][o_div
+ k
]))
10485 if (div_may_involve_output(bmap
, k
))
10495 /* Check if the given basic map is obviously single-valued.
10496 * In particular, for each output dimension, check that there is
10497 * an equality that defines the output dimension in terms of
10498 * earlier dimensions.
10500 int isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map
*bmap
)
10508 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10510 for (i
= 0; i
< n_out
; ++i
) {
10513 eq
= isl_basic_map_output_defining_equality(bmap
, i
);
10516 if (eq
>= bmap
->n_eq
)
10523 /* Check if the given basic map is single-valued.
10524 * We simply compute
10528 * and check if the result is a subset of the identity mapping.
10530 int isl_basic_map_is_single_valued(__isl_keep isl_basic_map
*bmap
)
10533 isl_basic_map
*test
;
10537 sv
= isl_basic_map_plain_is_single_valued(bmap
);
10541 test
= isl_basic_map_reverse(isl_basic_map_copy(bmap
));
10542 test
= isl_basic_map_apply_range(test
, isl_basic_map_copy(bmap
));
10544 space
= isl_basic_map_get_space(bmap
);
10545 space
= isl_space_map_from_set(isl_space_range(space
));
10546 id
= isl_basic_map_identity(space
);
10548 sv
= isl_basic_map_is_subset(test
, id
);
10550 isl_basic_map_free(test
);
10551 isl_basic_map_free(id
);
10556 /* Check if the given map is obviously single-valued.
10558 int isl_map_plain_is_single_valued(__isl_keep isl_map
*map
)
10567 return isl_basic_map_plain_is_single_valued(map
->p
[0]);
10570 /* Check if the given map is single-valued.
10571 * We simply compute
10575 * and check if the result is a subset of the identity mapping.
10577 int isl_map_is_single_valued(__isl_keep isl_map
*map
)
10584 sv
= isl_map_plain_is_single_valued(map
);
10588 test
= isl_map_reverse(isl_map_copy(map
));
10589 test
= isl_map_apply_range(test
, isl_map_copy(map
));
10591 dim
= isl_space_map_from_set(isl_space_range(isl_map_get_space(map
)));
10592 id
= isl_map_identity(dim
);
10594 sv
= isl_map_is_subset(test
, id
);
10596 isl_map_free(test
);
10602 int isl_map_is_injective(__isl_keep isl_map
*map
)
10606 map
= isl_map_copy(map
);
10607 map
= isl_map_reverse(map
);
10608 in
= isl_map_is_single_valued(map
);
10614 /* Check if the given map is obviously injective.
10616 int isl_map_plain_is_injective(__isl_keep isl_map
*map
)
10620 map
= isl_map_copy(map
);
10621 map
= isl_map_reverse(map
);
10622 in
= isl_map_plain_is_single_valued(map
);
10628 int isl_map_is_bijective(__isl_keep isl_map
*map
)
10632 sv
= isl_map_is_single_valued(map
);
10636 return isl_map_is_injective(map
);
10639 int isl_set_is_singleton(__isl_keep isl_set
*set
)
10641 return isl_map_is_single_valued((isl_map
*)set
);
10644 int isl_map_is_translation(__isl_keep isl_map
*map
)
10649 delta
= isl_map_deltas(isl_map_copy(map
));
10650 ok
= isl_set_is_singleton(delta
);
10651 isl_set_free(delta
);
10656 static int unique(isl_int
*p
, unsigned pos
, unsigned len
)
10658 if (isl_seq_first_non_zero(p
, pos
) != -1)
10660 if (isl_seq_first_non_zero(p
+ pos
+ 1, len
- pos
- 1) != -1)
10665 int isl_basic_set_is_box(__isl_keep isl_basic_set
*bset
)
10674 if (isl_basic_set_dim(bset
, isl_dim_div
) != 0)
10677 nvar
= isl_basic_set_dim(bset
, isl_dim_set
);
10678 ovar
= isl_space_offset(bset
->dim
, isl_dim_set
);
10679 for (j
= 0; j
< nvar
; ++j
) {
10680 int lower
= 0, upper
= 0;
10681 for (i
= 0; i
< bset
->n_eq
; ++i
) {
10682 if (isl_int_is_zero(bset
->eq
[i
][1 + ovar
+ j
]))
10684 if (!unique(bset
->eq
[i
] + 1 + ovar
, j
, nvar
))
10688 if (i
< bset
->n_eq
)
10690 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
10691 if (isl_int_is_zero(bset
->ineq
[i
][1 + ovar
+ j
]))
10693 if (!unique(bset
->ineq
[i
] + 1 + ovar
, j
, nvar
))
10695 if (isl_int_is_pos(bset
->ineq
[i
][1 + ovar
+ j
]))
10700 if (!lower
|| !upper
)
10707 int isl_set_is_box(__isl_keep isl_set
*set
)
10714 return isl_basic_set_is_box(set
->p
[0]);
10717 int isl_basic_set_is_wrapping(__isl_keep isl_basic_set
*bset
)
10722 return isl_space_is_wrapping(bset
->dim
);
10725 int isl_set_is_wrapping(__isl_keep isl_set
*set
)
10730 return isl_space_is_wrapping(set
->dim
);
10733 /* Is the domain of "map" a wrapped relation?
10735 int isl_map_domain_is_wrapping(__isl_keep isl_map
*map
)
10740 return isl_space_domain_is_wrapping(map
->dim
);
10743 /* Is the range of "map" a wrapped relation?
10745 int isl_map_range_is_wrapping(__isl_keep isl_map
*map
)
10750 return isl_space_range_is_wrapping(map
->dim
);
10753 __isl_give isl_basic_set
*isl_basic_map_wrap(__isl_take isl_basic_map
*bmap
)
10755 bmap
= isl_basic_map_cow(bmap
);
10759 bmap
->dim
= isl_space_wrap(bmap
->dim
);
10763 bmap
= isl_basic_map_finalize(bmap
);
10765 return (isl_basic_set
*)bmap
;
10767 isl_basic_map_free(bmap
);
10771 __isl_give isl_set
*isl_map_wrap(__isl_take isl_map
*map
)
10775 map
= isl_map_cow(map
);
10779 for (i
= 0; i
< map
->n
; ++i
) {
10780 map
->p
[i
] = (isl_basic_map
*)isl_basic_map_wrap(map
->p
[i
]);
10784 map
->dim
= isl_space_wrap(map
->dim
);
10788 return (isl_set
*)map
;
10794 __isl_give isl_basic_map
*isl_basic_set_unwrap(__isl_take isl_basic_set
*bset
)
10796 bset
= isl_basic_set_cow(bset
);
10800 bset
->dim
= isl_space_unwrap(bset
->dim
);
10804 bset
= isl_basic_set_finalize(bset
);
10806 return (isl_basic_map
*)bset
;
10808 isl_basic_set_free(bset
);
10812 __isl_give isl_map
*isl_set_unwrap(__isl_take isl_set
*set
)
10819 if (!isl_set_is_wrapping(set
))
10820 isl_die(set
->ctx
, isl_error_invalid
, "not a wrapping set",
10823 set
= isl_set_cow(set
);
10827 for (i
= 0; i
< set
->n
; ++i
) {
10828 set
->p
[i
] = (isl_basic_set
*)isl_basic_set_unwrap(set
->p
[i
]);
10833 set
->dim
= isl_space_unwrap(set
->dim
);
10837 return (isl_map
*)set
;
10843 __isl_give isl_basic_map
*isl_basic_map_reset(__isl_take isl_basic_map
*bmap
,
10844 enum isl_dim_type type
)
10849 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
10852 bmap
= isl_basic_map_cow(bmap
);
10856 bmap
->dim
= isl_space_reset(bmap
->dim
, type
);
10860 bmap
= isl_basic_map_finalize(bmap
);
10864 isl_basic_map_free(bmap
);
10868 __isl_give isl_map
*isl_map_reset(__isl_take isl_map
*map
,
10869 enum isl_dim_type type
)
10876 if (!isl_space_is_named_or_nested(map
->dim
, type
))
10879 map
= isl_map_cow(map
);
10883 for (i
= 0; i
< map
->n
; ++i
) {
10884 map
->p
[i
] = isl_basic_map_reset(map
->p
[i
], type
);
10888 map
->dim
= isl_space_reset(map
->dim
, type
);
10898 __isl_give isl_basic_map
*isl_basic_map_flatten(__isl_take isl_basic_map
*bmap
)
10903 if (!bmap
->dim
->nested
[0] && !bmap
->dim
->nested
[1])
10906 bmap
= isl_basic_map_cow(bmap
);
10910 bmap
->dim
= isl_space_flatten(bmap
->dim
);
10914 bmap
= isl_basic_map_finalize(bmap
);
10918 isl_basic_map_free(bmap
);
10922 __isl_give isl_basic_set
*isl_basic_set_flatten(__isl_take isl_basic_set
*bset
)
10924 return (isl_basic_set
*)isl_basic_map_flatten((isl_basic_map
*)bset
);
10927 __isl_give isl_basic_map
*isl_basic_map_flatten_domain(
10928 __isl_take isl_basic_map
*bmap
)
10933 if (!bmap
->dim
->nested
[0])
10936 bmap
= isl_basic_map_cow(bmap
);
10940 bmap
->dim
= isl_space_flatten_domain(bmap
->dim
);
10944 bmap
= isl_basic_map_finalize(bmap
);
10948 isl_basic_map_free(bmap
);
10952 __isl_give isl_basic_map
*isl_basic_map_flatten_range(
10953 __isl_take isl_basic_map
*bmap
)
10958 if (!bmap
->dim
->nested
[1])
10961 bmap
= isl_basic_map_cow(bmap
);
10965 bmap
->dim
= isl_space_flatten_range(bmap
->dim
);
10969 bmap
= isl_basic_map_finalize(bmap
);
10973 isl_basic_map_free(bmap
);
10977 __isl_give isl_map
*isl_map_flatten(__isl_take isl_map
*map
)
10984 if (!map
->dim
->nested
[0] && !map
->dim
->nested
[1])
10987 map
= isl_map_cow(map
);
10991 for (i
= 0; i
< map
->n
; ++i
) {
10992 map
->p
[i
] = isl_basic_map_flatten(map
->p
[i
]);
10996 map
->dim
= isl_space_flatten(map
->dim
);
11006 __isl_give isl_set
*isl_set_flatten(__isl_take isl_set
*set
)
11008 return (isl_set
*)isl_map_flatten((isl_map
*)set
);
11011 __isl_give isl_map
*isl_set_flatten_map(__isl_take isl_set
*set
)
11013 isl_space
*dim
, *flat_dim
;
11016 dim
= isl_set_get_space(set
);
11017 flat_dim
= isl_space_flatten(isl_space_copy(dim
));
11018 map
= isl_map_identity(isl_space_join(isl_space_reverse(dim
), flat_dim
));
11019 map
= isl_map_intersect_domain(map
, set
);
11024 __isl_give isl_map
*isl_map_flatten_domain(__isl_take isl_map
*map
)
11031 if (!map
->dim
->nested
[0])
11034 map
= isl_map_cow(map
);
11038 for (i
= 0; i
< map
->n
; ++i
) {
11039 map
->p
[i
] = isl_basic_map_flatten_domain(map
->p
[i
]);
11043 map
->dim
= isl_space_flatten_domain(map
->dim
);
11053 __isl_give isl_map
*isl_map_flatten_range(__isl_take isl_map
*map
)
11060 if (!map
->dim
->nested
[1])
11063 map
= isl_map_cow(map
);
11067 for (i
= 0; i
< map
->n
; ++i
) {
11068 map
->p
[i
] = isl_basic_map_flatten_range(map
->p
[i
]);
11072 map
->dim
= isl_space_flatten_range(map
->dim
);
11082 /* Reorder the dimensions of "bmap" according to the given dim_map
11083 * and set the dimension specification to "dim".
11085 __isl_give isl_basic_map
*isl_basic_map_realign(__isl_take isl_basic_map
*bmap
,
11086 __isl_take isl_space
*dim
, __isl_take
struct isl_dim_map
*dim_map
)
11088 isl_basic_map
*res
;
11091 bmap
= isl_basic_map_cow(bmap
);
11092 if (!bmap
|| !dim
|| !dim_map
)
11095 flags
= bmap
->flags
;
11096 ISL_FL_CLR(flags
, ISL_BASIC_MAP_FINAL
);
11097 ISL_FL_CLR(flags
, ISL_BASIC_MAP_NORMALIZED
);
11098 ISL_FL_CLR(flags
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
11099 res
= isl_basic_map_alloc_space(dim
,
11100 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
11101 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
11103 res
->flags
= flags
;
11104 res
= isl_basic_map_finalize(res
);
11108 isl_basic_map_free(bmap
);
11109 isl_space_free(dim
);
11113 /* Reorder the dimensions of "map" according to given reordering.
11115 __isl_give isl_map
*isl_map_realign(__isl_take isl_map
*map
,
11116 __isl_take isl_reordering
*r
)
11119 struct isl_dim_map
*dim_map
;
11121 map
= isl_map_cow(map
);
11122 dim_map
= isl_dim_map_from_reordering(r
);
11123 if (!map
|| !r
|| !dim_map
)
11126 for (i
= 0; i
< map
->n
; ++i
) {
11127 struct isl_dim_map
*dim_map_i
;
11129 dim_map_i
= isl_dim_map_extend(dim_map
, map
->p
[i
]);
11131 map
->p
[i
] = isl_basic_map_realign(map
->p
[i
],
11132 isl_space_copy(r
->dim
), dim_map_i
);
11138 map
= isl_map_reset_space(map
, isl_space_copy(r
->dim
));
11140 isl_reordering_free(r
);
11146 isl_reordering_free(r
);
11150 __isl_give isl_set
*isl_set_realign(__isl_take isl_set
*set
,
11151 __isl_take isl_reordering
*r
)
11153 return (isl_set
*)isl_map_realign((isl_map
*)set
, r
);
11156 __isl_give isl_map
*isl_map_align_params(__isl_take isl_map
*map
,
11157 __isl_take isl_space
*model
)
11161 if (!map
|| !model
)
11164 ctx
= isl_space_get_ctx(model
);
11165 if (!isl_space_has_named_params(model
))
11166 isl_die(ctx
, isl_error_invalid
,
11167 "model has unnamed parameters", goto error
);
11168 if (!isl_space_has_named_params(map
->dim
))
11169 isl_die(ctx
, isl_error_invalid
,
11170 "relation has unnamed parameters", goto error
);
11171 if (!isl_space_match(map
->dim
, isl_dim_param
, model
, isl_dim_param
)) {
11172 isl_reordering
*exp
;
11174 model
= isl_space_drop_dims(model
, isl_dim_in
,
11175 0, isl_space_dim(model
, isl_dim_in
));
11176 model
= isl_space_drop_dims(model
, isl_dim_out
,
11177 0, isl_space_dim(model
, isl_dim_out
));
11178 exp
= isl_parameter_alignment_reordering(map
->dim
, model
);
11179 exp
= isl_reordering_extend_space(exp
, isl_map_get_space(map
));
11180 map
= isl_map_realign(map
, exp
);
11183 isl_space_free(model
);
11186 isl_space_free(model
);
11191 __isl_give isl_set
*isl_set_align_params(__isl_take isl_set
*set
,
11192 __isl_take isl_space
*model
)
11194 return isl_map_align_params(set
, model
);
11197 /* Align the parameters of "bmap" to those of "model", introducing
11198 * additional parameters if needed.
11200 __isl_give isl_basic_map
*isl_basic_map_align_params(
11201 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*model
)
11205 if (!bmap
|| !model
)
11208 ctx
= isl_space_get_ctx(model
);
11209 if (!isl_space_has_named_params(model
))
11210 isl_die(ctx
, isl_error_invalid
,
11211 "model has unnamed parameters", goto error
);
11212 if (!isl_space_has_named_params(bmap
->dim
))
11213 isl_die(ctx
, isl_error_invalid
,
11214 "relation has unnamed parameters", goto error
);
11215 if (!isl_space_match(bmap
->dim
, isl_dim_param
, model
, isl_dim_param
)) {
11216 isl_reordering
*exp
;
11217 struct isl_dim_map
*dim_map
;
11219 model
= isl_space_drop_dims(model
, isl_dim_in
,
11220 0, isl_space_dim(model
, isl_dim_in
));
11221 model
= isl_space_drop_dims(model
, isl_dim_out
,
11222 0, isl_space_dim(model
, isl_dim_out
));
11223 exp
= isl_parameter_alignment_reordering(bmap
->dim
, model
);
11224 exp
= isl_reordering_extend_space(exp
,
11225 isl_basic_map_get_space(bmap
));
11226 dim_map
= isl_dim_map_from_reordering(exp
);
11227 bmap
= isl_basic_map_realign(bmap
,
11228 exp
? isl_space_copy(exp
->dim
) : NULL
,
11229 isl_dim_map_extend(dim_map
, bmap
));
11230 isl_reordering_free(exp
);
11234 isl_space_free(model
);
11237 isl_space_free(model
);
11238 isl_basic_map_free(bmap
);
11242 /* Align the parameters of "bset" to those of "model", introducing
11243 * additional parameters if needed.
11245 __isl_give isl_basic_set
*isl_basic_set_align_params(
11246 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*model
)
11248 return isl_basic_map_align_params(bset
, model
);
11251 __isl_give isl_mat
*isl_basic_map_equalities_matrix(
11252 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11253 enum isl_dim_type c2
, enum isl_dim_type c3
,
11254 enum isl_dim_type c4
, enum isl_dim_type c5
)
11256 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11257 struct isl_mat
*mat
;
11263 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_eq
,
11264 isl_basic_map_total_dim(bmap
) + 1);
11267 for (i
= 0; i
< bmap
->n_eq
; ++i
)
11268 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11269 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11270 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11271 isl_int_set(mat
->row
[i
][pos
],
11272 bmap
->eq
[i
][off
+ k
]);
11280 __isl_give isl_mat
*isl_basic_map_inequalities_matrix(
11281 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11282 enum isl_dim_type c2
, enum isl_dim_type c3
,
11283 enum isl_dim_type c4
, enum isl_dim_type c5
)
11285 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11286 struct isl_mat
*mat
;
11292 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_ineq
,
11293 isl_basic_map_total_dim(bmap
) + 1);
11296 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
11297 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11298 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11299 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11300 isl_int_set(mat
->row
[i
][pos
],
11301 bmap
->ineq
[i
][off
+ k
]);
11309 __isl_give isl_basic_map
*isl_basic_map_from_constraint_matrices(
11310 __isl_take isl_space
*dim
,
11311 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
11312 enum isl_dim_type c2
, enum isl_dim_type c3
,
11313 enum isl_dim_type c4
, enum isl_dim_type c5
)
11315 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11316 isl_basic_map
*bmap
;
11322 if (!dim
|| !eq
|| !ineq
)
11325 if (eq
->n_col
!= ineq
->n_col
)
11326 isl_die(dim
->ctx
, isl_error_invalid
,
11327 "equalities and inequalities matrices should have "
11328 "same number of columns", goto error
);
11330 total
= 1 + isl_space_dim(dim
, isl_dim_all
);
11332 if (eq
->n_col
< total
)
11333 isl_die(dim
->ctx
, isl_error_invalid
,
11334 "number of columns too small", goto error
);
11336 extra
= eq
->n_col
- total
;
11338 bmap
= isl_basic_map_alloc_space(isl_space_copy(dim
), extra
,
11339 eq
->n_row
, ineq
->n_row
);
11342 for (i
= 0; i
< extra
; ++i
) {
11343 k
= isl_basic_map_alloc_div(bmap
);
11346 isl_int_set_si(bmap
->div
[k
][0], 0);
11348 for (i
= 0; i
< eq
->n_row
; ++i
) {
11349 l
= isl_basic_map_alloc_equality(bmap
);
11352 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11353 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11354 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11355 isl_int_set(bmap
->eq
[l
][off
+ k
],
11361 for (i
= 0; i
< ineq
->n_row
; ++i
) {
11362 l
= isl_basic_map_alloc_inequality(bmap
);
11365 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11366 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11367 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11368 isl_int_set(bmap
->ineq
[l
][off
+ k
],
11369 ineq
->row
[i
][pos
]);
11375 isl_space_free(dim
);
11377 isl_mat_free(ineq
);
11379 bmap
= isl_basic_map_simplify(bmap
);
11380 return isl_basic_map_finalize(bmap
);
11382 isl_space_free(dim
);
11384 isl_mat_free(ineq
);
11388 __isl_give isl_mat
*isl_basic_set_equalities_matrix(
11389 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
11390 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11392 return isl_basic_map_equalities_matrix((isl_basic_map
*)bset
,
11393 c1
, c2
, c3
, c4
, isl_dim_in
);
11396 __isl_give isl_mat
*isl_basic_set_inequalities_matrix(
11397 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
11398 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11400 return isl_basic_map_inequalities_matrix((isl_basic_map
*)bset
,
11401 c1
, c2
, c3
, c4
, isl_dim_in
);
11404 __isl_give isl_basic_set
*isl_basic_set_from_constraint_matrices(
11405 __isl_take isl_space
*dim
,
11406 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
11407 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11409 return (isl_basic_set
*)
11410 isl_basic_map_from_constraint_matrices(dim
, eq
, ineq
,
11411 c1
, c2
, c3
, c4
, isl_dim_in
);
11414 int isl_basic_map_can_zip(__isl_keep isl_basic_map
*bmap
)
11419 return isl_space_can_zip(bmap
->dim
);
11422 int isl_map_can_zip(__isl_keep isl_map
*map
)
11427 return isl_space_can_zip(map
->dim
);
11430 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
11431 * (A -> C) -> (B -> D).
11433 __isl_give isl_basic_map
*isl_basic_map_zip(__isl_take isl_basic_map
*bmap
)
11442 if (!isl_basic_map_can_zip(bmap
))
11443 isl_die(bmap
->ctx
, isl_error_invalid
,
11444 "basic map cannot be zipped", goto error
);
11445 pos
= isl_basic_map_offset(bmap
, isl_dim_in
) +
11446 isl_space_dim(bmap
->dim
->nested
[0], isl_dim_in
);
11447 n1
= isl_space_dim(bmap
->dim
->nested
[0], isl_dim_out
);
11448 n2
= isl_space_dim(bmap
->dim
->nested
[1], isl_dim_in
);
11449 bmap
= isl_basic_map_cow(bmap
);
11450 bmap
= isl_basic_map_swap_vars(bmap
, pos
, n1
, n2
);
11453 bmap
->dim
= isl_space_zip(bmap
->dim
);
11458 isl_basic_map_free(bmap
);
11462 /* Given a map (A -> B) -> (C -> D), return the corresponding map
11463 * (A -> C) -> (B -> D).
11465 __isl_give isl_map
*isl_map_zip(__isl_take isl_map
*map
)
11472 if (!isl_map_can_zip(map
))
11473 isl_die(map
->ctx
, isl_error_invalid
, "map cannot be zipped",
11476 map
= isl_map_cow(map
);
11480 for (i
= 0; i
< map
->n
; ++i
) {
11481 map
->p
[i
] = isl_basic_map_zip(map
->p
[i
]);
11486 map
->dim
= isl_space_zip(map
->dim
);
11496 /* Can we apply isl_basic_map_curry to "bmap"?
11497 * That is, does it have a nested relation in its domain?
11499 int isl_basic_map_can_curry(__isl_keep isl_basic_map
*bmap
)
11504 return isl_space_can_curry(bmap
->dim
);
11507 /* Can we apply isl_map_curry to "map"?
11508 * That is, does it have a nested relation in its domain?
11510 int isl_map_can_curry(__isl_keep isl_map
*map
)
11515 return isl_space_can_curry(map
->dim
);
11518 /* Given a basic map (A -> B) -> C, return the corresponding basic map
11521 __isl_give isl_basic_map
*isl_basic_map_curry(__isl_take isl_basic_map
*bmap
)
11527 if (!isl_basic_map_can_curry(bmap
))
11528 isl_die(bmap
->ctx
, isl_error_invalid
,
11529 "basic map cannot be curried", goto error
);
11530 bmap
= isl_basic_map_cow(bmap
);
11533 bmap
->dim
= isl_space_curry(bmap
->dim
);
11538 isl_basic_map_free(bmap
);
11542 /* Given a map (A -> B) -> C, return the corresponding map
11545 __isl_give isl_map
*isl_map_curry(__isl_take isl_map
*map
)
11552 if (!isl_map_can_curry(map
))
11553 isl_die(map
->ctx
, isl_error_invalid
, "map cannot be curried",
11556 map
= isl_map_cow(map
);
11560 for (i
= 0; i
< map
->n
; ++i
) {
11561 map
->p
[i
] = isl_basic_map_curry(map
->p
[i
]);
11566 map
->dim
= isl_space_curry(map
->dim
);
11576 /* Can we apply isl_basic_map_uncurry to "bmap"?
11577 * That is, does it have a nested relation in its domain?
11579 int isl_basic_map_can_uncurry(__isl_keep isl_basic_map
*bmap
)
11584 return isl_space_can_uncurry(bmap
->dim
);
11587 /* Can we apply isl_map_uncurry to "map"?
11588 * That is, does it have a nested relation in its domain?
11590 int isl_map_can_uncurry(__isl_keep isl_map
*map
)
11595 return isl_space_can_uncurry(map
->dim
);
11598 /* Given a basic map A -> (B -> C), return the corresponding basic map
11601 __isl_give isl_basic_map
*isl_basic_map_uncurry(__isl_take isl_basic_map
*bmap
)
11607 if (!isl_basic_map_can_uncurry(bmap
))
11608 isl_die(bmap
->ctx
, isl_error_invalid
,
11609 "basic map cannot be uncurried",
11610 return isl_basic_map_free(bmap
));
11611 bmap
= isl_basic_map_cow(bmap
);
11614 bmap
->dim
= isl_space_uncurry(bmap
->dim
);
11616 return isl_basic_map_free(bmap
);
11620 /* Given a map A -> (B -> C), return the corresponding map
11623 __isl_give isl_map
*isl_map_uncurry(__isl_take isl_map
*map
)
11630 if (!isl_map_can_uncurry(map
))
11631 isl_die(map
->ctx
, isl_error_invalid
, "map cannot be uncurried",
11632 return isl_map_free(map
));
11634 map
= isl_map_cow(map
);
11638 for (i
= 0; i
< map
->n
; ++i
) {
11639 map
->p
[i
] = isl_basic_map_uncurry(map
->p
[i
]);
11641 return isl_map_free(map
);
11644 map
->dim
= isl_space_uncurry(map
->dim
);
11646 return isl_map_free(map
);
11651 /* Construct a basic map mapping the domain of the affine expression
11652 * to a one-dimensional range prescribed by the affine expression.
11654 __isl_give isl_basic_map
*isl_basic_map_from_aff(__isl_take isl_aff
*aff
)
11658 isl_local_space
*ls
;
11659 isl_basic_map
*bmap
;
11664 ls
= isl_aff_get_local_space(aff
);
11665 bmap
= isl_basic_map_from_local_space(ls
);
11666 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
11667 k
= isl_basic_map_alloc_equality(bmap
);
11671 pos
= isl_basic_map_offset(bmap
, isl_dim_out
);
11672 isl_seq_cpy(bmap
->eq
[k
], aff
->v
->el
+ 1, pos
);
11673 isl_int_neg(bmap
->eq
[k
][pos
], aff
->v
->el
[0]);
11674 isl_seq_cpy(bmap
->eq
[k
] + pos
+ 1, aff
->v
->el
+ 1 + pos
,
11675 aff
->v
->size
- (pos
+ 1));
11678 bmap
= isl_basic_map_finalize(bmap
);
11682 isl_basic_map_free(bmap
);
11686 /* Construct a map mapping the domain of the affine expression
11687 * to a one-dimensional range prescribed by the affine expression.
11689 __isl_give isl_map
*isl_map_from_aff(__isl_take isl_aff
*aff
)
11691 isl_basic_map
*bmap
;
11693 bmap
= isl_basic_map_from_aff(aff
);
11694 return isl_map_from_basic_map(bmap
);
11697 /* Construct a basic map mapping the domain the multi-affine expression
11698 * to its range, with each dimension in the range equated to the
11699 * corresponding affine expression.
11701 __isl_give isl_basic_map
*isl_basic_map_from_multi_aff(
11702 __isl_take isl_multi_aff
*maff
)
11706 isl_basic_map
*bmap
;
11711 if (isl_space_dim(maff
->space
, isl_dim_out
) != maff
->n
)
11712 isl_die(isl_multi_aff_get_ctx(maff
), isl_error_internal
,
11713 "invalid space", goto error
);
11715 space
= isl_space_domain(isl_multi_aff_get_space(maff
));
11716 bmap
= isl_basic_map_universe(isl_space_from_domain(space
));
11718 for (i
= 0; i
< maff
->n
; ++i
) {
11720 isl_basic_map
*bmap_i
;
11722 aff
= isl_aff_copy(maff
->p
[i
]);
11723 bmap_i
= isl_basic_map_from_aff(aff
);
11725 bmap
= isl_basic_map_flat_range_product(bmap
, bmap_i
);
11728 bmap
= isl_basic_map_reset_space(bmap
, isl_multi_aff_get_space(maff
));
11730 isl_multi_aff_free(maff
);
11733 isl_multi_aff_free(maff
);
11737 /* Construct a map mapping the domain the multi-affine expression
11738 * to its range, with each dimension in the range equated to the
11739 * corresponding affine expression.
11741 __isl_give isl_map
*isl_map_from_multi_aff(__isl_take isl_multi_aff
*maff
)
11743 isl_basic_map
*bmap
;
11745 bmap
= isl_basic_map_from_multi_aff(maff
);
11746 return isl_map_from_basic_map(bmap
);
11749 /* Construct a basic map mapping a domain in the given space to
11750 * to an n-dimensional range, with n the number of elements in the list,
11751 * where each coordinate in the range is prescribed by the
11752 * corresponding affine expression.
11753 * The domains of all affine expressions in the list are assumed to match
11756 __isl_give isl_basic_map
*isl_basic_map_from_aff_list(
11757 __isl_take isl_space
*domain_dim
, __isl_take isl_aff_list
*list
)
11761 isl_basic_map
*bmap
;
11766 dim
= isl_space_from_domain(domain_dim
);
11767 bmap
= isl_basic_map_universe(dim
);
11769 for (i
= 0; i
< list
->n
; ++i
) {
11771 isl_basic_map
*bmap_i
;
11773 aff
= isl_aff_copy(list
->p
[i
]);
11774 bmap_i
= isl_basic_map_from_aff(aff
);
11776 bmap
= isl_basic_map_flat_range_product(bmap
, bmap_i
);
11779 isl_aff_list_free(list
);
11783 __isl_give isl_set
*isl_set_equate(__isl_take isl_set
*set
,
11784 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11786 return isl_map_equate(set
, type1
, pos1
, type2
, pos2
);
11789 /* Construct a basic map where the given dimensions are equal to each other.
11791 static __isl_give isl_basic_map
*equator(__isl_take isl_space
*space
,
11792 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11794 isl_basic_map
*bmap
= NULL
;
11800 if (pos1
>= isl_space_dim(space
, type1
))
11801 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
11802 "index out of bounds", goto error
);
11803 if (pos2
>= isl_space_dim(space
, type2
))
11804 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
11805 "index out of bounds", goto error
);
11807 if (type1
== type2
&& pos1
== pos2
)
11808 return isl_basic_map_universe(space
);
11810 bmap
= isl_basic_map_alloc_space(isl_space_copy(space
), 0, 1, 0);
11811 i
= isl_basic_map_alloc_equality(bmap
);
11814 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
11815 pos1
+= isl_basic_map_offset(bmap
, type1
);
11816 pos2
+= isl_basic_map_offset(bmap
, type2
);
11817 isl_int_set_si(bmap
->eq
[i
][pos1
], -1);
11818 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
11819 bmap
= isl_basic_map_finalize(bmap
);
11820 isl_space_free(space
);
11823 isl_space_free(space
);
11824 isl_basic_map_free(bmap
);
11828 /* Add a constraint imposing that the given two dimensions are equal.
11830 __isl_give isl_basic_map
*isl_basic_map_equate(__isl_take isl_basic_map
*bmap
,
11831 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11835 eq
= equator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
11837 bmap
= isl_basic_map_intersect(bmap
, eq
);
11842 /* Add a constraint imposing that the given two dimensions are equal.
11844 __isl_give isl_map
*isl_map_equate(__isl_take isl_map
*map
,
11845 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11847 isl_basic_map
*bmap
;
11849 bmap
= equator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
11851 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
11856 /* Add a constraint imposing that the given two dimensions have opposite values.
11858 __isl_give isl_map
*isl_map_oppose(__isl_take isl_map
*map
,
11859 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11861 isl_basic_map
*bmap
= NULL
;
11867 if (pos1
>= isl_map_dim(map
, type1
))
11868 isl_die(map
->ctx
, isl_error_invalid
,
11869 "index out of bounds", goto error
);
11870 if (pos2
>= isl_map_dim(map
, type2
))
11871 isl_die(map
->ctx
, isl_error_invalid
,
11872 "index out of bounds", goto error
);
11874 bmap
= isl_basic_map_alloc_space(isl_map_get_space(map
), 0, 1, 0);
11875 i
= isl_basic_map_alloc_equality(bmap
);
11878 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
11879 pos1
+= isl_basic_map_offset(bmap
, type1
);
11880 pos2
+= isl_basic_map_offset(bmap
, type2
);
11881 isl_int_set_si(bmap
->eq
[i
][pos1
], 1);
11882 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
11883 bmap
= isl_basic_map_finalize(bmap
);
11885 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
11889 isl_basic_map_free(bmap
);
11894 /* Construct a constraint imposing that the value of the first dimension is
11895 * greater than or equal to that of the second.
11897 static __isl_give isl_constraint
*constraint_order_ge(
11898 __isl_take isl_space
*space
, enum isl_dim_type type1
, int pos1
,
11899 enum isl_dim_type type2
, int pos2
)
11906 c
= isl_inequality_alloc(isl_local_space_from_space(space
));
11908 if (pos1
>= isl_constraint_dim(c
, type1
))
11909 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
11910 "index out of bounds", return isl_constraint_free(c
));
11911 if (pos2
>= isl_constraint_dim(c
, type2
))
11912 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
11913 "index out of bounds", return isl_constraint_free(c
));
11915 if (type1
== type2
&& pos1
== pos2
)
11918 c
= isl_constraint_set_coefficient_si(c
, type1
, pos1
, 1);
11919 c
= isl_constraint_set_coefficient_si(c
, type2
, pos2
, -1);
11924 /* Add a constraint imposing that the value of the first dimension is
11925 * greater than or equal to that of the second.
11927 __isl_give isl_basic_map
*isl_basic_map_order_ge(__isl_take isl_basic_map
*bmap
,
11928 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11933 if (type1
== type2
&& pos1
== pos2
)
11935 space
= isl_basic_map_get_space(bmap
);
11936 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
11937 bmap
= isl_basic_map_add_constraint(bmap
, c
);
11942 /* Add a constraint imposing that the value of the first dimension is
11943 * greater than or equal to that of the second.
11945 __isl_give isl_map
*isl_map_order_ge(__isl_take isl_map
*map
,
11946 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11951 if (type1
== type2
&& pos1
== pos2
)
11953 space
= isl_map_get_space(map
);
11954 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
11955 map
= isl_map_add_constraint(map
, c
);
11960 /* Add a constraint imposing that the value of the first dimension is
11961 * less than or equal to that of the second.
11963 __isl_give isl_map
*isl_map_order_le(__isl_take isl_map
*map
,
11964 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11966 return isl_map_order_ge(map
, type2
, pos2
, type1
, pos1
);
11969 /* Construct a basic map where the value of the first dimension is
11970 * greater than that of the second.
11972 static __isl_give isl_basic_map
*greator(__isl_take isl_space
*space
,
11973 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
11975 isl_basic_map
*bmap
= NULL
;
11981 if (pos1
>= isl_space_dim(space
, type1
))
11982 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
11983 "index out of bounds", goto error
);
11984 if (pos2
>= isl_space_dim(space
, type2
))
11985 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
11986 "index out of bounds", goto error
);
11988 if (type1
== type2
&& pos1
== pos2
)
11989 return isl_basic_map_empty(space
);
11991 bmap
= isl_basic_map_alloc_space(space
, 0, 0, 1);
11992 i
= isl_basic_map_alloc_inequality(bmap
);
11994 return isl_basic_map_free(bmap
);
11995 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
11996 pos1
+= isl_basic_map_offset(bmap
, type1
);
11997 pos2
+= isl_basic_map_offset(bmap
, type2
);
11998 isl_int_set_si(bmap
->ineq
[i
][pos1
], 1);
11999 isl_int_set_si(bmap
->ineq
[i
][pos2
], -1);
12000 isl_int_set_si(bmap
->ineq
[i
][0], -1);
12001 bmap
= isl_basic_map_finalize(bmap
);
12005 isl_space_free(space
);
12006 isl_basic_map_free(bmap
);
12010 /* Add a constraint imposing that the value of the first dimension is
12011 * greater than that of the second.
12013 __isl_give isl_basic_map
*isl_basic_map_order_gt(__isl_take isl_basic_map
*bmap
,
12014 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12018 gt
= greator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
12020 bmap
= isl_basic_map_intersect(bmap
, gt
);
12025 /* Add a constraint imposing that the value of the first dimension is
12026 * greater than that of the second.
12028 __isl_give isl_map
*isl_map_order_gt(__isl_take isl_map
*map
,
12029 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12031 isl_basic_map
*bmap
;
12033 bmap
= greator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
12035 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12040 /* Add a constraint imposing that the value of the first dimension is
12041 * smaller than that of the second.
12043 __isl_give isl_map
*isl_map_order_lt(__isl_take isl_map
*map
,
12044 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12046 return isl_map_order_gt(map
, type2
, pos2
, type1
, pos1
);
12049 __isl_give isl_aff
*isl_basic_map_get_div(__isl_keep isl_basic_map
*bmap
,
12053 isl_local_space
*ls
;
12058 if (!isl_basic_map_divs_known(bmap
))
12059 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12060 "some divs are unknown", return NULL
);
12062 ls
= isl_basic_map_get_local_space(bmap
);
12063 div
= isl_local_space_get_div(ls
, pos
);
12064 isl_local_space_free(ls
);
12069 __isl_give isl_aff
*isl_basic_set_get_div(__isl_keep isl_basic_set
*bset
,
12072 return isl_basic_map_get_div(bset
, pos
);
12075 /* Plug in "subs" for dimension "type", "pos" of "bset".
12077 * Let i be the dimension to replace and let "subs" be of the form
12081 * Any integer division with a non-zero coefficient for i,
12083 * floor((a i + g)/m)
12087 * floor((a f + d g)/(m d))
12089 * Constraints of the form
12097 * We currently require that "subs" is an integral expression.
12098 * Handling rational expressions may require us to add stride constraints
12099 * as we do in isl_basic_set_preimage_multi_aff.
12101 __isl_give isl_basic_set
*isl_basic_set_substitute(
12102 __isl_take isl_basic_set
*bset
,
12103 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
12109 if (bset
&& isl_basic_set_plain_is_empty(bset
))
12112 bset
= isl_basic_set_cow(bset
);
12113 if (!bset
|| !subs
)
12116 ctx
= isl_basic_set_get_ctx(bset
);
12117 if (!isl_space_is_equal(bset
->dim
, subs
->ls
->dim
))
12118 isl_die(ctx
, isl_error_invalid
,
12119 "spaces don't match", goto error
);
12120 if (isl_local_space_dim(subs
->ls
, isl_dim_div
) != 0)
12121 isl_die(ctx
, isl_error_unsupported
,
12122 "cannot handle divs yet", goto error
);
12123 if (!isl_int_is_one(subs
->v
->el
[0]))
12124 isl_die(ctx
, isl_error_invalid
,
12125 "can only substitute integer expressions", goto error
);
12127 pos
+= isl_basic_set_offset(bset
, type
);
12131 for (i
= 0; i
< bset
->n_eq
; ++i
) {
12132 if (isl_int_is_zero(bset
->eq
[i
][pos
]))
12134 isl_int_set(v
, bset
->eq
[i
][pos
]);
12135 isl_int_set_si(bset
->eq
[i
][pos
], 0);
12136 isl_seq_combine(bset
->eq
[i
], subs
->v
->el
[0], bset
->eq
[i
],
12137 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12140 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
12141 if (isl_int_is_zero(bset
->ineq
[i
][pos
]))
12143 isl_int_set(v
, bset
->ineq
[i
][pos
]);
12144 isl_int_set_si(bset
->ineq
[i
][pos
], 0);
12145 isl_seq_combine(bset
->ineq
[i
], subs
->v
->el
[0], bset
->ineq
[i
],
12146 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12149 for (i
= 0; i
< bset
->n_div
; ++i
) {
12150 if (isl_int_is_zero(bset
->div
[i
][1 + pos
]))
12152 isl_int_set(v
, bset
->div
[i
][1 + pos
]);
12153 isl_int_set_si(bset
->div
[i
][1 + pos
], 0);
12154 isl_seq_combine(bset
->div
[i
] + 1,
12155 subs
->v
->el
[0], bset
->div
[i
] + 1,
12156 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12157 isl_int_mul(bset
->div
[i
][0], bset
->div
[i
][0], subs
->v
->el
[0]);
12162 bset
= isl_basic_set_simplify(bset
);
12163 return isl_basic_set_finalize(bset
);
12165 isl_basic_set_free(bset
);
12169 /* Plug in "subs" for dimension "type", "pos" of "set".
12171 __isl_give isl_set
*isl_set_substitute(__isl_take isl_set
*set
,
12172 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
12176 if (set
&& isl_set_plain_is_empty(set
))
12179 set
= isl_set_cow(set
);
12183 for (i
= set
->n
- 1; i
>= 0; --i
) {
12184 set
->p
[i
] = isl_basic_set_substitute(set
->p
[i
], type
, pos
, subs
);
12185 if (remove_if_empty(set
, i
) < 0)
12195 /* Check if the range of "ma" is compatible with the domain or range
12196 * (depending on "type") of "bmap".
12197 * Return -1 if anything is wrong.
12199 static int check_basic_map_compatible_range_multi_aff(
12200 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type type
,
12201 __isl_keep isl_multi_aff
*ma
)
12204 isl_space
*ma_space
;
12206 ma_space
= isl_multi_aff_get_space(ma
);
12208 m
= isl_space_match(bmap
->dim
, isl_dim_param
, ma_space
, isl_dim_param
);
12212 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12213 "parameters don't match", goto error
);
12214 m
= isl_space_tuple_is_equal(bmap
->dim
, type
, ma_space
, isl_dim_out
);
12218 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12219 "spaces don't match", goto error
);
12221 isl_space_free(ma_space
);
12224 isl_space_free(ma_space
);
12228 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12229 * coefficients before the transformed range of dimensions,
12230 * the "n_after" coefficients after the transformed range of dimensions
12231 * and the coefficients of the other divs in "bmap".
12233 static int set_ma_divs(__isl_keep isl_basic_map
*bmap
,
12234 __isl_keep isl_multi_aff
*ma
, int n_before
, int n_after
, int n_div
)
12239 isl_local_space
*ls
;
12244 ls
= isl_aff_get_domain_local_space(ma
->p
[0]);
12248 n_param
= isl_local_space_dim(ls
, isl_dim_param
);
12249 n_set
= isl_local_space_dim(ls
, isl_dim_set
);
12250 for (i
= 0; i
< n_div
; ++i
) {
12251 int o_bmap
= 0, o_ls
= 0;
12253 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], 1 + 1 + n_param
);
12254 o_bmap
+= 1 + 1 + n_param
;
12255 o_ls
+= 1 + 1 + n_param
;
12256 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_before
);
12257 o_bmap
+= n_before
;
12258 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12259 ls
->div
->row
[i
] + o_ls
, n_set
);
12262 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_after
);
12264 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12265 ls
->div
->row
[i
] + o_ls
, n_div
);
12268 isl_seq_clr(bmap
->div
[i
] + o_bmap
, bmap
->n_div
- n_div
);
12269 if (isl_basic_set_add_div_constraints(bmap
, i
) < 0)
12273 isl_local_space_free(ls
);
12276 isl_local_space_free(ls
);
12280 /* How many stride constraints does "ma" enforce?
12281 * That is, how many of the affine expressions have a denominator
12282 * different from one?
12284 static int multi_aff_strides(__isl_keep isl_multi_aff
*ma
)
12289 for (i
= 0; i
< ma
->n
; ++i
)
12290 if (!isl_int_is_one(ma
->p
[i
]->v
->el
[0]))
12296 /* For each affine expression in ma of the form
12298 * x_i = (f_i y + h_i)/m_i
12300 * with m_i different from one, add a constraint to "bmap"
12303 * f_i y + h_i = m_i alpha_i
12305 * with alpha_i an additional existentially quantified variable.
12307 static __isl_give isl_basic_map
*add_ma_strides(
12308 __isl_take isl_basic_map
*bmap
, __isl_keep isl_multi_aff
*ma
,
12309 int n_before
, int n_after
)
12318 total
= isl_basic_map_total_dim(bmap
);
12319 n_param
= isl_multi_aff_dim(ma
, isl_dim_param
);
12320 n_in
= isl_multi_aff_dim(ma
, isl_dim_in
);
12321 n_div
= isl_multi_aff_dim(ma
, isl_dim_div
);
12322 for (i
= 0; i
< ma
->n
; ++i
) {
12323 int o_bmap
= 0, o_ma
= 1;
12325 if (isl_int_is_one(ma
->p
[i
]->v
->el
[0]))
12327 div
= isl_basic_map_alloc_div(bmap
);
12328 k
= isl_basic_map_alloc_equality(bmap
);
12329 if (div
< 0 || k
< 0)
12331 isl_int_set_si(bmap
->div
[div
][0], 0);
12332 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12333 ma
->p
[i
]->v
->el
+ o_ma
, 1 + n_param
);
12334 o_bmap
+= 1 + n_param
;
12335 o_ma
+= 1 + n_param
;
12336 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_before
);
12337 o_bmap
+= n_before
;
12338 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12339 ma
->p
[i
]->v
->el
+ o_ma
, n_in
);
12342 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_after
);
12344 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12345 ma
->p
[i
]->v
->el
+ o_ma
, n_div
);
12348 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, 1 + total
- o_bmap
);
12349 isl_int_neg(bmap
->eq
[k
][1 + total
], ma
->p
[i
]->v
->el
[0]);
12355 isl_basic_map_free(bmap
);
12359 /* Replace the domain or range space (depending on "type) of "space" by "set".
12361 static __isl_give isl_space
*isl_space_set(__isl_take isl_space
*space
,
12362 enum isl_dim_type type
, __isl_take isl_space
*set
)
12364 if (type
== isl_dim_in
) {
12365 space
= isl_space_range(space
);
12366 space
= isl_space_map_from_domain_and_range(set
, space
);
12368 space
= isl_space_domain(space
);
12369 space
= isl_space_map_from_domain_and_range(space
, set
);
12375 /* Compute the preimage of the domain or range (depending on "type")
12376 * of "bmap" under the function represented by "ma".
12377 * In other words, plug in "ma" in the domain or range of "bmap".
12378 * The result is a basic map that lives in the same space as "bmap"
12379 * except that the domain or range has been replaced by
12380 * the domain space of "ma".
12382 * If bmap is represented by
12384 * A(p) + S u + B x + T v + C(divs) >= 0,
12386 * where u and x are input and output dimensions if type == isl_dim_out
12387 * while x and v are input and output dimensions if type == isl_dim_in,
12388 * and ma is represented by
12390 * x = D(p) + F(y) + G(divs')
12392 * then the result is
12394 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12396 * The divs in the input set are similarly adjusted.
12399 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12403 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12404 * B_i G(divs') + c_i(divs))/n_i)
12406 * If bmap is not a rational map and if F(y) involves any denominators
12408 * x_i = (f_i y + h_i)/m_i
12410 * then additional constraints are added to ensure that we only
12411 * map back integer points. That is we enforce
12413 * f_i y + h_i = m_i alpha_i
12415 * with alpha_i an additional existentially quantified variable.
12417 * We first copy over the divs from "ma".
12418 * Then we add the modified constraints and divs from "bmap".
12419 * Finally, we add the stride constraints, if needed.
12421 __isl_give isl_basic_map
*isl_basic_map_preimage_multi_aff(
12422 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
12423 __isl_take isl_multi_aff
*ma
)
12427 isl_basic_map
*res
= NULL
;
12428 int n_before
, n_after
, n_div_bmap
, n_div_ma
;
12429 isl_int f
, c1
, c2
, g
;
12430 int rational
, strides
;
12437 ma
= isl_multi_aff_align_divs(ma
);
12440 if (check_basic_map_compatible_range_multi_aff(bmap
, type
, ma
) < 0)
12443 if (type
== isl_dim_in
) {
12445 n_after
= isl_basic_map_dim(bmap
, isl_dim_out
);
12447 n_before
= isl_basic_map_dim(bmap
, isl_dim_in
);
12450 n_div_bmap
= isl_basic_map_dim(bmap
, isl_dim_div
);
12451 n_div_ma
= ma
->n
? isl_aff_dim(ma
->p
[0], isl_dim_div
) : 0;
12453 space
= isl_multi_aff_get_domain_space(ma
);
12454 space
= isl_space_set(isl_basic_map_get_space(bmap
), type
, space
);
12455 rational
= isl_basic_map_is_rational(bmap
);
12456 strides
= rational
? 0 : multi_aff_strides(ma
);
12457 res
= isl_basic_map_alloc_space(space
, n_div_ma
+ n_div_bmap
+ strides
,
12458 bmap
->n_eq
+ strides
, bmap
->n_ineq
+ 2 * n_div_ma
);
12460 res
= isl_basic_map_set_rational(res
);
12462 for (i
= 0; i
< n_div_ma
+ n_div_bmap
; ++i
)
12463 if (isl_basic_map_alloc_div(res
) < 0)
12466 if (set_ma_divs(res
, ma
, n_before
, n_after
, n_div_ma
) < 0)
12469 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
12470 k
= isl_basic_map_alloc_equality(res
);
12473 isl_seq_preimage(res
->eq
[k
], bmap
->eq
[i
], ma
, n_before
,
12474 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
12477 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
12478 k
= isl_basic_map_alloc_inequality(res
);
12481 isl_seq_preimage(res
->ineq
[k
], bmap
->ineq
[i
], ma
, n_before
,
12482 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
12485 for (i
= 0; i
< bmap
->n_div
; ++i
) {
12486 if (isl_int_is_zero(bmap
->div
[i
][0])) {
12487 isl_int_set_si(res
->div
[n_div_ma
+ i
][0], 0);
12490 isl_seq_preimage(res
->div
[n_div_ma
+ i
], bmap
->div
[i
], ma
,
12491 n_before
, n_after
, n_div_ma
, n_div_bmap
,
12496 res
= add_ma_strides(res
, ma
, n_before
, n_after
);
12502 isl_basic_map_free(bmap
);
12503 isl_multi_aff_free(ma
);
12504 res
= isl_basic_set_simplify(res
);
12505 return isl_basic_map_finalize(res
);
12511 isl_basic_map_free(bmap
);
12512 isl_multi_aff_free(ma
);
12513 isl_basic_map_free(res
);
12517 /* Compute the preimage of "bset" under the function represented by "ma".
12518 * In other words, plug in "ma" in "bset". The result is a basic set
12519 * that lives in the domain space of "ma".
12521 __isl_give isl_basic_set
*isl_basic_set_preimage_multi_aff(
12522 __isl_take isl_basic_set
*bset
, __isl_take isl_multi_aff
*ma
)
12524 return isl_basic_map_preimage_multi_aff(bset
, isl_dim_set
, ma
);
12527 /* Compute the preimage of the domain of "bmap" under the function
12528 * represented by "ma".
12529 * In other words, plug in "ma" in the domain of "bmap".
12530 * The result is a basic map that lives in the same space as "bmap"
12531 * except that the domain has been replaced by the domain space of "ma".
12533 __isl_give isl_basic_map
*isl_basic_map_preimage_domain_multi_aff(
12534 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
12536 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_in
, ma
);
12539 /* Compute the preimage of the range of "bmap" under the function
12540 * represented by "ma".
12541 * In other words, plug in "ma" in the range of "bmap".
12542 * The result is a basic map that lives in the same space as "bmap"
12543 * except that the range has been replaced by the domain space of "ma".
12545 __isl_give isl_basic_map
*isl_basic_map_preimage_range_multi_aff(
12546 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
12548 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_out
, ma
);
12551 /* Check if the range of "ma" is compatible with the domain or range
12552 * (depending on "type") of "map".
12553 * Return -1 if anything is wrong.
12555 static int check_map_compatible_range_multi_aff(
12556 __isl_keep isl_map
*map
, enum isl_dim_type type
,
12557 __isl_keep isl_multi_aff
*ma
)
12560 isl_space
*ma_space
;
12562 ma_space
= isl_multi_aff_get_space(ma
);
12563 m
= isl_space_tuple_is_equal(map
->dim
, type
, ma_space
, isl_dim_out
);
12564 isl_space_free(ma_space
);
12566 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
12567 "spaces don't match", return -1);
12571 /* Compute the preimage of the domain or range (depending on "type")
12572 * of "map" under the function represented by "ma".
12573 * In other words, plug in "ma" in the domain or range of "map".
12574 * The result is a map that lives in the same space as "map"
12575 * except that the domain or range has been replaced by
12576 * the domain space of "ma".
12578 * The parameters are assumed to have been aligned.
12580 static __isl_give isl_map
*map_preimage_multi_aff(__isl_take isl_map
*map
,
12581 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
12586 map
= isl_map_cow(map
);
12587 ma
= isl_multi_aff_align_divs(ma
);
12590 if (check_map_compatible_range_multi_aff(map
, type
, ma
) < 0)
12593 for (i
= 0; i
< map
->n
; ++i
) {
12594 map
->p
[i
] = isl_basic_map_preimage_multi_aff(map
->p
[i
], type
,
12595 isl_multi_aff_copy(ma
));
12600 space
= isl_multi_aff_get_domain_space(ma
);
12601 space
= isl_space_set(isl_map_get_space(map
), type
, space
);
12603 isl_space_free(map
->dim
);
12608 isl_multi_aff_free(ma
);
12610 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
12611 ISL_F_CLR(map
, ISL_SET_NORMALIZED
);
12614 isl_multi_aff_free(ma
);
12619 /* Compute the preimage of the domain or range (depending on "type")
12620 * of "map" under the function represented by "ma".
12621 * In other words, plug in "ma" in the domain or range of "map".
12622 * The result is a map that lives in the same space as "map"
12623 * except that the domain or range has been replaced by
12624 * the domain space of "ma".
12626 __isl_give isl_map
*isl_map_preimage_multi_aff(__isl_take isl_map
*map
,
12627 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
12632 if (isl_space_match(map
->dim
, isl_dim_param
, ma
->space
, isl_dim_param
))
12633 return map_preimage_multi_aff(map
, type
, ma
);
12635 if (!isl_space_has_named_params(map
->dim
) ||
12636 !isl_space_has_named_params(ma
->space
))
12637 isl_die(map
->ctx
, isl_error_invalid
,
12638 "unaligned unnamed parameters", goto error
);
12639 map
= isl_map_align_params(map
, isl_multi_aff_get_space(ma
));
12640 ma
= isl_multi_aff_align_params(ma
, isl_map_get_space(map
));
12642 return map_preimage_multi_aff(map
, type
, ma
);
12644 isl_multi_aff_free(ma
);
12645 return isl_map_free(map
);
12648 /* Compute the preimage of "set" under the function represented by "ma".
12649 * In other words, plug in "ma" in "set". The result is a set
12650 * that lives in the domain space of "ma".
12652 __isl_give isl_set
*isl_set_preimage_multi_aff(__isl_take isl_set
*set
,
12653 __isl_take isl_multi_aff
*ma
)
12655 return isl_map_preimage_multi_aff(set
, isl_dim_set
, ma
);
12658 /* Compute the preimage of the domain of "map" under the function
12659 * represented by "ma".
12660 * In other words, plug in "ma" in the domain of "map".
12661 * The result is a map that lives in the same space as "map"
12662 * except that the domain has been replaced by the domain space of "ma".
12664 __isl_give isl_map
*isl_map_preimage_domain_multi_aff(__isl_take isl_map
*map
,
12665 __isl_take isl_multi_aff
*ma
)
12667 return isl_map_preimage_multi_aff(map
, isl_dim_in
, ma
);
12670 /* Compute the preimage of the range of "map" under the function
12671 * represented by "ma".
12672 * In other words, plug in "ma" in the range of "map".
12673 * The result is a map that lives in the same space as "map"
12674 * except that the range has been replaced by the domain space of "ma".
12676 __isl_give isl_map
*isl_map_preimage_range_multi_aff(__isl_take isl_map
*map
,
12677 __isl_take isl_multi_aff
*ma
)
12679 return isl_map_preimage_multi_aff(map
, isl_dim_out
, ma
);
12682 /* Compute the preimage of "map" under the function represented by "pma".
12683 * In other words, plug in "pma" in the domain or range of "map".
12684 * The result is a map that lives in the same space as "map",
12685 * except that the space of type "type" has been replaced by
12686 * the domain space of "pma".
12688 * The parameters of "map" and "pma" are assumed to have been aligned.
12690 static __isl_give isl_map
*isl_map_preimage_pw_multi_aff_aligned(
12691 __isl_take isl_map
*map
, enum isl_dim_type type
,
12692 __isl_take isl_pw_multi_aff
*pma
)
12701 isl_pw_multi_aff_free(pma
);
12702 res
= isl_map_empty(isl_map_get_space(map
));
12707 res
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
12708 isl_multi_aff_copy(pma
->p
[0].maff
));
12709 if (type
== isl_dim_in
)
12710 res
= isl_map_intersect_domain(res
,
12711 isl_map_copy(pma
->p
[0].set
));
12713 res
= isl_map_intersect_range(res
,
12714 isl_map_copy(pma
->p
[0].set
));
12716 for (i
= 1; i
< pma
->n
; ++i
) {
12719 res_i
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
12720 isl_multi_aff_copy(pma
->p
[i
].maff
));
12721 if (type
== isl_dim_in
)
12722 res_i
= isl_map_intersect_domain(res_i
,
12723 isl_map_copy(pma
->p
[i
].set
));
12725 res_i
= isl_map_intersect_range(res_i
,
12726 isl_map_copy(pma
->p
[i
].set
));
12727 res
= isl_map_union(res
, res_i
);
12730 isl_pw_multi_aff_free(pma
);
12734 isl_pw_multi_aff_free(pma
);
12739 /* Compute the preimage of "map" under the function represented by "pma".
12740 * In other words, plug in "pma" in the domain or range of "map".
12741 * The result is a map that lives in the same space as "map",
12742 * except that the space of type "type" has been replaced by
12743 * the domain space of "pma".
12745 __isl_give isl_map
*isl_map_preimage_pw_multi_aff(__isl_take isl_map
*map
,
12746 enum isl_dim_type type
, __isl_take isl_pw_multi_aff
*pma
)
12751 if (isl_space_match(map
->dim
, isl_dim_param
, pma
->dim
, isl_dim_param
))
12752 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
12754 if (!isl_space_has_named_params(map
->dim
) ||
12755 !isl_space_has_named_params(pma
->dim
))
12756 isl_die(map
->ctx
, isl_error_invalid
,
12757 "unaligned unnamed parameters", goto error
);
12758 map
= isl_map_align_params(map
, isl_pw_multi_aff_get_space(pma
));
12759 pma
= isl_pw_multi_aff_align_params(pma
, isl_map_get_space(map
));
12761 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
12763 isl_pw_multi_aff_free(pma
);
12764 return isl_map_free(map
);
12767 /* Compute the preimage of "set" under the function represented by "pma".
12768 * In other words, plug in "pma" in "set". The result is a set
12769 * that lives in the domain space of "pma".
12771 __isl_give isl_set
*isl_set_preimage_pw_multi_aff(__isl_take isl_set
*set
,
12772 __isl_take isl_pw_multi_aff
*pma
)
12774 return isl_map_preimage_pw_multi_aff(set
, isl_dim_set
, pma
);
12777 /* Compute the preimage of the domain of "map" under the function
12778 * represented by "pma".
12779 * In other words, plug in "pma" in the domain of "map".
12780 * The result is a map that lives in the same space as "map",
12781 * except that domain space has been replaced by the domain space of "pma".
12783 __isl_give isl_map
*isl_map_preimage_domain_pw_multi_aff(
12784 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
12786 return isl_map_preimage_pw_multi_aff(map
, isl_dim_in
, pma
);
12789 /* Compute the preimage of the range of "map" under the function
12790 * represented by "pma".
12791 * In other words, plug in "pma" in the range of "map".
12792 * The result is a map that lives in the same space as "map",
12793 * except that range space has been replaced by the domain space of "pma".
12795 __isl_give isl_map
*isl_map_preimage_range_pw_multi_aff(
12796 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
12798 return isl_map_preimage_pw_multi_aff(map
, isl_dim_out
, pma
);
12801 /* Compute the preimage of "map" under the function represented by "mpa".
12802 * In other words, plug in "mpa" in the domain or range of "map".
12803 * The result is a map that lives in the same space as "map",
12804 * except that the space of type "type" has been replaced by
12805 * the domain space of "mpa".
12807 * If the map does not involve any constraints that refer to the
12808 * dimensions of the substituted space, then the only possible
12809 * effect of "mpa" on the map is to map the space to a different space.
12810 * We create a separate isl_multi_aff to effectuate this change
12811 * in order to avoid spurious splitting of the map along the pieces
12814 __isl_give isl_map
*isl_map_preimage_multi_pw_aff(__isl_take isl_map
*map
,
12815 enum isl_dim_type type
, __isl_take isl_multi_pw_aff
*mpa
)
12818 isl_pw_multi_aff
*pma
;
12823 n
= isl_map_dim(map
, type
);
12824 if (!isl_map_involves_dims(map
, type
, 0, n
)) {
12828 space
= isl_multi_pw_aff_get_space(mpa
);
12829 isl_multi_pw_aff_free(mpa
);
12830 ma
= isl_multi_aff_zero(space
);
12831 return isl_map_preimage_multi_aff(map
, type
, ma
);
12834 pma
= isl_pw_multi_aff_from_multi_pw_aff(mpa
);
12835 return isl_map_preimage_pw_multi_aff(map
, type
, pma
);
12838 isl_multi_pw_aff_free(mpa
);
12842 /* Compute the preimage of "map" under the function represented by "mpa".
12843 * In other words, plug in "mpa" in the domain "map".
12844 * The result is a map that lives in the same space as "map",
12845 * except that domain space has been replaced by the domain space of "mpa".
12847 __isl_give isl_map
*isl_map_preimage_domain_multi_pw_aff(
12848 __isl_take isl_map
*map
, __isl_take isl_multi_pw_aff
*mpa
)
12850 return isl_map_preimage_multi_pw_aff(map
, isl_dim_in
, mpa
);
12853 /* Compute the preimage of "set" by the function represented by "mpa".
12854 * In other words, plug in "mpa" in "set".
12856 __isl_give isl_set
*isl_set_preimage_multi_pw_aff(__isl_take isl_set
*set
,
12857 __isl_take isl_multi_pw_aff
*mpa
)
12859 return isl_map_preimage_multi_pw_aff(set
, isl_dim_set
, mpa
);